/* ============================================
   Sammys New York Bagels — Stylesheet
   Classic & Elegant · Plum + Amber
   ============================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
    --color-plum: #722F37;
    --color-plum-dark: #5A242C;
    --color-plum-deep: #3D1A20;
    --color-plum-light: #8B3A44;
    --color-plum-muted: #A04652;
    --color-amber: #D4A853;
    --color-amber-light: #E8C47A;
    --color-amber-dark: #B8912E;
    --color-cream: #FAF6F1;
    --color-warm-white: #FDF9F4;
    --color-warm-gray: #F5F0EB;
    --color-text: #2C1810;
    --color-text-light: #5C4033;
    --color-text-muted: #8B7355;
    --color-border: #E8DDD4;
    --color-border-light: #F0E8E0;

    --font-serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
    --font-sans: 'Lato', 'Helvetica Neue', Arial, sans-serif;

    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
    --space-3xl: 6rem;
    --space-4xl: 8rem;

    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;

    --shadow-sm: 0 1px 3px rgba(44, 24, 16, 0.08);
    --shadow-md: 0 4px 16px rgba(44, 24, 16, 0.1);
    --shadow-lg: 0 8px 32px rgba(44, 24, 16, 0.12);
    --shadow-xl: 0 16px 48px rgba(44, 24, 16, 0.15);

    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;

    --header-height: 80px;
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
}

body {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text);
    background-color: var(--color-cream);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--color-plum);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--color-amber-dark);
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

ul {
    list-style: none;
}

/* ---------- Utilities ---------- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.text-center { text-align: center; }
.text-amber { color: var(--color-amber); }

.skip-link {
    position: absolute;
    top: -100%;
    left: var(--space-md);
    background: var(--color-plum);
    color: #fff;
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-sm);
    z-index: 1000;
    font-weight: 700;
}

.skip-link:focus {
    top: var(--space-md);
}

/* ---------- Section Eyebrow ---------- */
.section-eyebrow {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-amber-dark);
    margin-bottom: var(--space-md);
}

/* ---------- Section Title ---------- */
.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 600;
    line-height: 1.15;
    color: var(--color-plum-dark);
    margin-bottom: var(--space-lg);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--color-text-light);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 14px 32px;
    border-radius: var(--radius-sm);
    transition: all var(--transition-base);
    white-space: nowrap;
}

.btn-primary {
    background: var(--color-plum);
    color: #fff;
    border: 2px solid var(--color-plum);
}

.btn-primary:hover {
    background: var(--color-plum-dark);
    border-color: var(--color-plum-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background: transparent;
    color: var(--color-plum);
    border: 2px solid var(--color-plum);
}

.btn-outline:hover {
    background: var(--color-plum);
    color: #fff;
    transform: translateY(-2px);
}

.btn-outline-light {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.6);
}

.btn-outline-light:hover {
    background: #fff;
    color: var(--color-plum);
    border-color: #fff;
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
}

/* ---------- Header ---------- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(250, 246, 241, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--color-border-light);
    transition: all var(--transition-base);
}

.header.scrolled {
    box-shadow: var(--shadow-sm);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
}

/* ---------- Logo ---------- */
.logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--color-plum);
    text-decoration: none;
}

.logo:hover { color: var(--color-plum); }

.logo-icon {
    color: var(--color-amber);
    flex-shrink: 0;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-name {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--color-plum);
}

.logo-tagline {
    font-family: var(--font-sans);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-amber-dark);
}

.logo-light .logo-name { color: #fff; }
.logo-light .logo-tagline { color: var(--color-amber-light); }
.logo-light .logo-icon { color: var(--color-amber-light); }

/* ---------- Navigation ---------- */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: var(--space-sm);
    z-index: 101;
}

.nav-toggle-bar {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-plum);
    border-radius: 2px;
    transition: all var(--transition-base);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
}

.nav-link {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text-light);
    position: relative;
    padding: var(--space-xs) 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-amber);
    transition: width var(--transition-base);
}

.nav-link:hover { color: var(--color-plum); }
.nav-link:hover::after { width: 100%; }

.nav-cta {
    background: var(--color-plum);
    color: #fff !important;
    padding: 10px 24px;
    border-radius: var(--radius-sm);
}

.nav-cta::after { display: none; }

.nav-cta:hover {
    background: var(--color-plum-dark);
    color: #fff !important;
}

/* Mobile nav */
@media (max-width: 768px) {
    .nav-toggle { display: flex; }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--color-cream);
        flex-direction: column;
        align-items: flex-start;
        padding: calc(var(--header-height) + var(--space-xl)) var(--space-xl) var(--space-xl);
        gap: var(--space-lg);
        box-shadow: var(--shadow-xl);
        transition: right var(--transition-base);
        border-left: 1px solid var(--color-border);
    }

    .nav-menu.open { right: 0; }

    .nav-menu::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(44, 24, 16, 0.4);
        opacity: 0;
        pointer-events: none;
        transition: opacity var(--transition-base);
        z-index: -1;
    }

    .nav-menu.open::before { opacity: 1; pointer-events: all; }

    .nav-link { font-size: 1rem; }
    .nav-cta { width: 100%; text-align: center; }
}

/* ---------- Hero ---------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--color-plum-deep);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(61, 26, 32, 0.92) 0%,
        rgba(114, 47, 55, 0.85) 50%,
        rgba(90, 36, 44, 0.78) 100%
    );
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
    padding-top: var(--header-height);
}

.hero-content { padding: var(--space-3xl) 0; }

.hero-eyebrow {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--color-amber);
    margin-bottom: var(--space-lg);
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 600;
    line-height: 1.05;
    color: #fff;
    margin-bottom: var(--space-lg);
}

.hero-title .text-amber {
    color: var(--color-amber);
    font-style: italic;
}

.hero-subtitle {
    font-size: 1.15rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--space-xl);
    max-width: 480px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    margin-bottom: var(--space-2xl);
}

.hero-actions .btn-outline {
    border-color: rgba(255, 255, 255, 0.5);
    color: #fff;
}

.hero-actions .btn-outline:hover {
    background: #fff;
    color: var(--color-plum);
    border-color: #fff;
}

.hero-details {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.hero-detail {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.hero-detail a {
    color: rgba(255, 255, 255, 0.7);
}

.hero-detail a:hover { color: var(--color-amber); }

.hero-detail-icon {
    width: 20px;
    height: 20px;
    color: var(--color-amber);
    flex-shrink: 0;
}

/* Hero Image */
.hero-image {
    position: relative;
    height: 100%;
    max-height: 85vh;
}

.hero-image-wrapper {
    position: relative;
    height: 100%;
}

.hero-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

.hero-image-accent {
    position: absolute;
    bottom: -20px;
    left: -20px;
    right: -20px;
    top: 40px;
    border: 2px solid var(--color-amber);
    border-radius: var(--radius-lg);
    z-index: -1;
    opacity: 0.5;
}

/* Hero Scroll Indicator */
.hero-scroll {
    position: absolute;
    bottom: var(--space-xl);
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    animation: float 2s ease-in-out infinite;
}

.hero-scroll svg {
    color: var(--color-amber);
}

@keyframes float {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

@media (max-width: 900px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content { padding: var(--space-2xl) 0; }

    .hero-subtitle { margin-left: auto; margin-right: auto; }

    .hero-actions { justify-content: center; }

    .hero-details { align-items: center; }

    .hero-image {
        max-height: 50vh;
        order: -1;
    }

    .hero-image-wrapper img {
        border-radius: var(--radius-md);
    }

    .hero-image-accent { display: none; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 2rem; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; }
}

/* ---------- Divider ---------- */
.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-xl) 0;
}

.divider-icon {
    width: 48px;
    height: 48px;
    color: var(--color-amber);
    opacity: 0.5;
}

/* ---------- About ---------- */
.about {
    padding: var(--space-4xl) 0;
    background: var(--color-warm-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.about-images {
    position: relative;
}

.about-img-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-img-secondary {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 55%;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--color-warm-white);
}

.about-img-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-experience-badge {
    position: absolute;
    top: -20px;
    right: 40px;
    background: var(--color-plum);
    color: #fff;
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-md);
}

.badge-number {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-amber);
    line-height: 1;
}

.badge-text {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: var(--space-xs);
}

.about-content { padding: var(--space-lg) 0; }

.about-content > p {
    font-size: 1.05rem;
    color: var(--color-text-light);
    margin-bottom: var(--space-md);
    line-height: 1.8;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

.about-feature {
    display: flex;
    gap: var(--space-md);
    align-items: flex-start;
}

.feature-icon {
    width: 24px;
    height: 24px;
    color: var(--color-amber);
    flex-shrink: 0;
    margin-top: 2px;
}

.about-feature h3 {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-plum-dark);
    margin-bottom: var(--space-xs);
}

.about-feature p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-images {
        max-width: 500px;
        margin: 0 auto;
    }

    .about-img-secondary {
        right: -10px;
        bottom: -20px;
    }
}

@media (max-width: 480px) {
    .about-img-secondary {
        width: 65%;
        right: -10px;
        bottom: -15px;
    }
}

/* ---------- Menu ---------- */
.menu {
    padding: var(--space-4xl) 0;
    background: var(--color-cream);
}

.menu-categories {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin: var(--space-2xl) 0 var(--space-xl);
}

.menu-tab {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 12px 28px;
    border-radius: 50px;
    color: var(--color-text-light);
    background: var(--color-warm-white);
    border: 1px solid var(--color-border);
    transition: all var(--transition-base);
}

.menu-tab:hover {
    color: var(--color-plum);
    border-color: var(--color-plum);
}

.menu-tab.active {
    background: var(--color-plum);
    color: #fff;
    border-color: var(--color-plum);
}

.menu-grid {
    display: none;
}

.menu-grid.active {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
    max-width: 900px;
    margin: 0 auto;
}

.menu-item {
    padding: var(--space-lg);
    background: var(--color-warm-white);
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border-light);
    transition: all var(--transition-base);
}

.menu-item:hover {
    border-color: var(--color-amber);
    box-shadow: var(--shadow-sm);
    transform: translateY(-2px);
}

.menu-item-header {
    display: flex;
    align-items: baseline;
    gap: var(--space-xs);
    margin-bottom: var(--space-sm);
}

.menu-item-name {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--color-plum-dark);
}

.menu-item-dots {
    flex: 1;
    height: 1px;
    background: repeating-linear-gradient(
        to right,
        var(--color-border) 0px,
        var(--color-border) 4px,
        transparent 4px,
        transparent 8px
    );
}

.menu-item-desc {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

.menu-note {
    text-align: center;
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-top: var(--space-2xl);
    font-style: italic;
}

@media (max-width: 600px) {
    .menu-grid.active {
        grid-template-columns: 1fr;
    }
}

/* ---------- Specials ---------- */
.specials {
    padding: var(--space-4xl) 0;
    background: var(--color-plum-deep);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.specials::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 168, 83, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.specials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.specials-content .section-eyebrow { color: var(--color-amber-light); }
.specials-content .section-title { color: #fff; }

.specials-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
}

.special-item {
    display: flex;
    gap: var(--space-lg);
    align-items: flex-start;
}

.special-number {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-amber);
    line-height: 1;
    opacity: 0.6;
    flex-shrink: 0;
    width: 50px;
}

.special-item h3 {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: var(--space-xs);
}

.special-item p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

.specials-image {
    position: relative;
}

.specials-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

.specials-image-frame {
    position: absolute;
    inset: 16px;
    border: 1px solid rgba(212, 168, 83, 0.3);
    border-radius: var(--radius-md);
    pointer-events: none;
}

@media (max-width: 900px) {
    .specials-grid {
        grid-template-columns: 1fr;
    }

    .specials-image { order: -1; max-height: 400px; }
}

/* ---------- Visit ---------- */
.visit {
    padding: var(--space-4xl) 0;
    background: var(--color-warm-white);
}

.visit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: start;
}

.visit-info { padding: var(--space-lg) 0; }

.visit-details {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
    margin: var(--space-2xl) 0;
}

.visit-detail {
    display: flex;
    gap: var(--space-md);
    align-items: flex-start;
}

.visit-icon {
    width: 24px;
    height: 24px;
    color: var(--color-amber);
    flex-shrink: 0;
    margin-top: 2px;
}

.visit-detail h3 {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-plum-dark);
    margin-bottom: var(--space-xs);
}

.visit-detail p {
    font-size: 0.95rem;
    color: var(--color-text-light);
    line-height: 1.7;
}

.visit-detail a {
    color: var(--color-text-light);
}

.visit-detail a:hover { color: var(--color-amber-dark); }

.hours-day {
    display: block;
    font-weight: 700;
    color: var(--color-text);
}

.hours-time {
    display: block;
    color: var(--color-text-muted);
}

.visit-cta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
}

.visit-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    min-height: 450px;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    min-height: 450px;
}

.map-placeholder iframe {
    width: 100%;
    height: 100%;
    min-height: 450px;
}

@media (max-width: 900px) {
    .visit-grid {
        grid-template-columns: 1fr;
    }

    .visit-map { order: -1; }
}

/* ---------- Contact ---------- */
.contact {
    padding: var(--space-4xl) 0;
    background: var(--color-cream);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: start;
}

.contact-content { padding: var(--space-lg) 0; }

.contact-intro {
    font-size: 1.05rem;
    color: var(--color-text-light);
    line-height: 1.8;
    margin-bottom: var(--space-xl);
}

.contact-form-wrapper {
    background: var(--color-warm-white);
    padding: var(--space-2xl);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.form-group label {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-text-light);
}

.form-group input,
.form-group textarea {
    font-family: var(--font-sans);
    font-size: 1rem;
    padding: 12px 16px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    background: var(--color-cream);
    color: var(--color-text);
    transition: all var(--transition-fast);
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--color-plum);
    box-shadow: 0 0 0 3px rgba(114, 47, 55, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--color-text-muted);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-success {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md);
    background: rgba(114, 47, 55, 0.08);
    border-radius: var(--radius-sm);
    color: var(--color-plum-dark);
    font-size: 0.9rem;
    margin-top: var(--space-sm);
}

.form-success svg {
    width: 20px;
    height: 20px;
    color: var(--color-plum);
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

/* ---------- Footer ---------- */
.footer {
    background: var(--color-plum-deep);
    color: #fff;
    padding: var(--space-3xl) 0 var(--space-lg);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: var(--space-2xl);
    padding-bottom: var(--space-2xl);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-top: var(--space-md);
    max-width: 300px;
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-amber);
    margin-bottom: var(--space-md);
}

.footer-links ul,
.footer-contact ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer-links a,
.footer-contact a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    transition: color var(--transition-fast);
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--color-amber);
}

.footer-icon {
    width: 16px;
    height: 16px;
    color: var(--color-amber);
    flex-shrink: 0;
    margin-top: 3px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-md);
    padding-top: var(--space-lg);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* ---------- Scroll Animations ---------- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
