/* =========================================
   THE GOAN TOTE — by Irwin Antao
   Goa-inspired colour palette & typography
   ========================================= */

/* ===== DESIGN TOKENS ===== */
:root {
    /* Goan colour palette */
    --terracotta:     #B5451B;   /* laterite stone / church walls */
    --terracotta-lt:  #D4613A;
    --saffron:        #E8A838;   /* Goan festival gold */
    --teal:           #1B7A6E;   /* Arabian Sea */
    --teal-lt:        #2A9D8F;
    --cream:          #FDF6ED;   /* warm paper/canvas */
    --cream-alt:      #F7EDE0;
    --ink:            #2C3E50;   /* deep navy ink */
    --ink-muted:      #637074;
    --border:         #E5D4BF;
    --white:          #FFFFFF;

    /* Typography */
    --font-serif:  'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-sans:   'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Spacing & Shape */
    --radius:    12px;
    --radius-lg: 20px;
    --radius-xl: 32px;
    --max-w:     1160px;
    --section-py: 100px;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(44,62,80,0.07);
    --shadow:    0 6px 24px rgba(44,62,80,0.10);
    --shadow-md: 0 12px 40px rgba(44,62,80,0.14);
    --shadow-lg: 0 20px 60px rgba(44,62,80,0.18);

    --ease: 0.3s ease;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font-sans); background: var(--cream); color: var(--ink); line-height: 1.7; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; }

/* ===== UTILITIES ===== */
.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 28px;
}

.section-label {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--terracotta);
    margin-bottom: 10px;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-header h2 {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--ink);
    margin-bottom: 12px;
    line-height: 1.15;
}

.section-header p {
    font-size: 1.05rem;
    color: var(--ink-muted);
    max-width: 520px;
    margin: 0 auto;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.88rem;
    letter-spacing: 0.04em;
    border: 2px solid transparent;
    transition: all var(--ease);
    cursor: pointer;
    white-space: nowrap;
}

.btn-primary {
    background: var(--terracotta);
    color: var(--white);
}
.btn-primary:hover {
    background: var(--terracotta-lt);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(181,69,27,0.35);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.55);
}
.btn-outline:hover {
    background: rgba(255,255,255,0.12);
    border-color: var(--white);
}

.btn-small {
    padding: 8px 18px;
    font-size: 0.78rem;
    background: var(--teal);
    color: var(--white);
}
.btn-small:hover {
    background: var(--teal-lt);
    transform: translateY(-1px);
}

.btn-primary-sm {
    background: var(--terracotta) !important;
}
.btn-primary-sm:hover {
    background: var(--terracotta-lt) !important;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 0;
    transition: background var(--ease), box-shadow var(--ease);
}

.navbar.scrolled {
    background: rgba(253,246,237,0.96);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 2px 24px rgba(44,62,80,0.09);
}

.nav-container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 22px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.nav-logo {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
    flex-shrink: 0;
}

.logo-main {
    font-family: var(--font-serif);
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--white);
    transition: color var(--ease);
}
.navbar.scrolled .logo-main { color: var(--terracotta); }

.logo-sub {
    font-size: 0.68rem;
    font-weight: 400;
    color: rgba(255,255,255,0.75);
    letter-spacing: 0.08em;
    transition: color var(--ease);
}
.navbar.scrolled .logo-sub { color: var(--ink-muted); }

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: rgba(255,255,255,0.88);
    transition: color var(--ease);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0; right: 0;
    height: 2px;
    background: var(--saffron);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--ease);
}
.nav-links a:hover::after { transform: scaleX(1); }
.navbar.scrolled .nav-links a { color: var(--ink); }

.nav-cta {
    background: var(--terracotta);
    color: var(--white) !important;
    padding: 9px 22px;
    border-radius: 50px;
    transition: background var(--ease), box-shadow var(--ease) !important;
}
.nav-cta:hover {
    background: var(--terracotta-lt) !important;
    box-shadow: 0 4px 16px rgba(181,69,27,0.3);
}
.nav-cta::after { display: none !important; }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}
.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all var(--ease);
}
.navbar.scrolled .nav-toggle span { background: var(--ink); }

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    /* Goa-sunset gradient: terracotta → deep teal */
    background: linear-gradient(150deg,
        #7A2000 0%,
        #B5451B 30%,
        #C84B31 50%,
        #1B4F72 75%,
        #0E2A40 100%);
}

/* Portuguese azulejo tile-inspired mesh */
.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(0deg,
            rgba(255,255,255,0.025) 0px,
            rgba(255,255,255,0.025) 1px,
            transparent 1px, transparent 40px),
        repeating-linear-gradient(90deg,
            rgba(255,255,255,0.025) 0px,
            rgba(255,255,255,0.025) 1px,
            transparent 1px, transparent 40px);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 70%,
        rgba(232,168,56,0.18) 0%, transparent 60%),
        radial-gradient(ellipse at 75% 25%,
        rgba(27,122,110,0.2) 0%, transparent 55%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 130px 28px 100px;
    max-width: 820px;
}

.hero-eyebrow {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--saffron);
    margin-bottom: 22px;
    opacity: 0.9;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(3.5rem, 9vw, 7rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.0;
    margin-bottom: 28px;
    text-shadow: 0 4px 32px rgba(0,0,0,0.25);
}

.hero-title em {
    font-style: italic;
    color: var(--saffron);
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.18rem);
    color: rgba(255,255,255,0.82);
    max-width: 620px;
    margin: 0 auto 32px;
    line-height: 1.85;
}

.hero-subtitle strong {
    color: var(--saffron);
    font-weight: 700;
}

.hero-badges {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.22);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    color: rgba(255,255,255,0.9);
    letter-spacing: 0.04em;
    backdrop-filter: blur(6px);
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Scroll indicator */
.hero-scroll {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 2;
}

.scroll-label {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
}

.scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.45), transparent);
    animation: scrollAnim 2s ease-in-out infinite;
}

@keyframes scrollAnim {
    0%, 100% { opacity: 0.4; transform: scaleY(1); }
    50%       { opacity: 1;   transform: scaleY(1.15); }
}

/* Corner motifs */
.corner-motif {
    position: absolute;
    z-index: 2;
    color: rgba(232,168,56,0.25);
    font-size: 1.8rem;
    line-height: 1;
}
.corner-tl { top: 24px;    left: 28px; }
.corner-tr { top: 24px;    right: 28px; }
.corner-bl { bottom: 24px; left: 28px; }
.corner-br { bottom: 24px; right: 28px; }

/* ===== ABOUT ===== */
.about {
    padding: var(--section-py) 0;
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 80px;
    align-items: center;
}

.portrait-card {
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
}

.portrait-placeholder {
    height: 300px;
    background: linear-gradient(135deg, var(--cream-alt) 0%, var(--border) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.portrait-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(45deg,
            rgba(181,69,27,0.04) 0, rgba(181,69,27,0.04) 1px,
            transparent 1px, transparent 18px);
}

.portrait-emoji { font-size: 6rem; position: relative; z-index: 1; }

.portrait-label {
    padding: 20px 24px 16px;
    border-top: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.portrait-label strong {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    color: var(--ink);
}
.portrait-label span {
    font-size: 0.8rem;
    color: var(--ink-muted);
}

.watch-pill {
    margin: 0 20px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    background: var(--terracotta);
    color: var(--white);
    border-radius: var(--radius);
    font-size: 0.82rem;
    font-weight: 700;
    transition: all var(--ease);
}
.watch-pill:hover {
    background: var(--terracotta-lt);
    transform: translateY(-1px);
    box-shadow: var(--shadow-sm);
}
.play-icon {
    width: 28px;
    height: 28px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    flex-shrink: 0;
}

.portrait-tag {
    text-align: center;
    padding: 10px 20px 20px;
    font-size: 0.72rem;
    color: var(--ink-muted);
    font-style: italic;
    letter-spacing: 0.04em;
}

/* About text */
.about-text h2 {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    color: var(--ink);
    margin-bottom: 6px;
    line-height: 1.15;
}

.about-role {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--terracotta);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 28px;
}

.about-text p {
    font-size: 1.02rem;
    color: var(--ink-muted);
    margin-bottom: 16px;
    line-height: 1.8;
}

.about-stats {
    display: flex;
    gap: 24px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.stat {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: 50px;
}

.stat-icon { font-size: 1.1rem; }

.stat-text {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--ink);
    white-space: nowrap;
}

/* ===== CULTURAL THEMES ===== */
.themes {
    padding: var(--section-py) 0;
    background: var(--cream);
    position: relative;
}

.themes::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.themes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.theme-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    transition: all var(--ease);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(28px);
}

.theme-card.visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease, transform 0.6s ease, box-shadow var(--ease), border-color var(--ease);
}

.theme-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--card-color, var(--terracotta)), var(--saffron));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--ease);
}

.theme-card:hover {
    transform: translateY(-6px) !important;
    box-shadow: var(--shadow-md);
    border-color: transparent;
}
.theme-card:hover::after { transform: scaleX(1); }

.theme-icon-wrap {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 20px;
    background: color-mix(in srgb, var(--card-color, var(--terracotta)) 12%, white);
}

.theme-card h3 {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    color: var(--ink);
    margin-bottom: 10px;
}

.theme-card p {
    font-size: 0.9rem;
    color: var(--ink-muted);
    line-height: 1.75;
}

/* ===== GALLERY ===== */
.gallery {
    padding: var(--section-py) 0;
    background: var(--cream-alt);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 32px;
}

.gallery-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--ease);
    opacity: 0;
    transform: translateY(28px);
}

.gallery-card.visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease, transform 0.6s ease, box-shadow var(--ease);
}

.gallery-card:hover {
    transform: translateY(-8px) !important;
    box-shadow: var(--shadow-lg);
}

/* Gallery thumbnails — gradient placeholders */
.gallery-thumb {
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4.5rem;
    position: relative;
    overflow: hidden;
}

.gallery-thumb span { position: relative; z-index: 1; filter: drop-shadow(0 4px 10px rgba(0,0,0,0.18)); }

.thumb-label {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 8px 14px;
    background: rgba(0,0,0,0.35);
    color: var(--white);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    backdrop-filter: blur(4px);
}

.church-bg   { background: linear-gradient(135deg, #f5ede0 0%, #d9bb8e 100%); }
.beach-bg    { background: linear-gradient(135deg, #c8e8f5 0%, #70c4e8 55%, #f8d77a 100%); }
.wildlife-bg { background: linear-gradient(135deg, #d0f0de 0%, #68d49a 60%, #a5e887 100%); }
.festival-bg { background: linear-gradient(135deg, #fef3c7 0%, #f6b93b 50%, #e95454 100%); }
.fisher-bg   { background: linear-gradient(135deg, #daf0fc 0%, #3db4e8 55%, #0d4f7c 100%); }
.custom-bg   { background: linear-gradient(135deg, var(--cream-alt) 0%, var(--border) 100%); }

.gallery-body { padding: 20px 22px 22px; }

.gallery-body h3 {
    font-family: var(--font-serif);
    font-size: 1.08rem;
    color: var(--ink);
    margin-bottom: 5px;
}

.gallery-body p {
    font-size: 0.85rem;
    color: var(--ink-muted);
    margin-bottom: 14px;
    line-height: 1.6;
}

.gallery-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.price-tag {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--terracotta);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.gallery-note {
    text-align: center;
    font-size: 0.88rem;
    color: var(--ink-muted);
    font-style: italic;
    padding: 18px 24px;
    background: rgba(255,255,255,0.65);
    border-radius: var(--radius);
    border: 1px dashed var(--border);
    max-width: 640px;
    margin: 0 auto;
}

/* ===== ORDER ===== */
.order {
    padding: var(--section-py) 0;
    background: var(--white);
}

/* Steps */
.steps-row {
    display: flex;
    align-items: flex-start;
    gap: 0;
    margin-bottom: 72px;
    position: relative;
}

.step {
    flex: 1;
    text-align: center;
    padding: 0 24px;
    opacity: 0;
    transform: translateY(24px);
}

.step.visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.step-num {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--terracotta), var(--terracotta-lt));
    color: var(--white);
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 4px 18px rgba(181,69,27,0.35);
    position: relative;
    z-index: 1;
}

.step h3 {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    color: var(--ink);
    margin-bottom: 10px;
}

.step p {
    font-size: 0.9rem;
    color: var(--ink-muted);
    line-height: 1.75;
    max-width: 240px;
    margin: 0 auto;
}

.step-connector {
    flex: 0 0 auto;
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, var(--border), var(--terracotta), var(--border));
    margin-top: 30px;
    opacity: 0.5;
}

/* Contact card */
.contact-card {
    background: linear-gradient(135deg, var(--cream) 0%, var(--cream-alt) 100%);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 52px 48px;
    max-width: 780px;
    margin: 0 auto;
    box-shadow: var(--shadow);
    opacity: 0;
    transform: translateY(24px);
}

.contact-card.visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.contact-header {
    text-align: center;
    margin-bottom: 40px;
}

.contact-header h3 {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--ink);
    margin-bottom: 8px;
}

.contact-header p {
    font-size: 0.95rem;
    color: var(--ink-muted);
    max-width: 400px;
    margin: 0 auto;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 36px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all var(--ease);
}

.contact-item:hover {
    border-color: var(--terracotta);
    box-shadow: var(--shadow-sm);
    transform: translateX(5px);
}

.contact-icon-wrap {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.whatsapp-icon { background: #e8f9ee; }
.email-icon    { background: #eef2ff; }
.youtube-icon  { background: #fff0f0; font-size: 0.9rem; font-weight: 900; color: #FF0000; }

.contact-detail {
    flex: 1;
}

.contact-detail strong {
    display: block;
    font-size: 0.9rem;
    color: var(--ink);
    font-weight: 700;
    margin-bottom: 2px;
}

.contact-detail span {
    font-size: 0.82rem;
    color: var(--ink-muted);
}

.contact-arrow {
    font-size: 1.1rem;
    color: var(--ink-muted);
    transition: transform var(--ease), color var(--ease);
}
.contact-item:hover .contact-arrow {
    transform: translateX(4px);
    color: var(--terracotta);
}

/* Shipping grid */
.shipping-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 24px;
    padding-top: 28px;
    border-top: 1px solid var(--border);
}

.shipping-item {
    font-size: 0.88rem;
    color: var(--ink-muted);
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--ink);
    color: rgba(255,255,255,0.75);
    padding: 72px 0 36px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 56px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.09);
    margin-bottom: 32px;
}

.footer-brand h3 {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 10px;
}

.footer-brand p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.6;
    margin-bottom: 4px;
}

.footer-by {
    color: var(--saffron) !important;
    font-style: italic;
    margin-bottom: 20px !important;
}

.footer-badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.footer-badges span {
    font-size: 0.72rem;
    font-weight: 700;
    padding: 5px 12px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50px;
    color: rgba(255,255,255,0.55);
    letter-spacing: 0.04em;
}

.footer-nav h4,
.footer-connect h4 {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--saffron);
    margin-bottom: 20px;
}

.footer-nav ul li { margin-bottom: 12px; }

.footer-nav ul li a,
.footer-connect a {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.55);
    transition: color var(--ease);
    display: block;
    margin-bottom: 12px;
}

.footer-nav ul li a:hover,
.footer-connect a:hover {
    color: var(--white);
}

.footer-bottom {
    text-align: center;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.3);
}

/* ===== SCROLL ANIMATIONS ===== */
[data-animate] {
    opacity: 0;
    transform: translateY(28px);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 320px 1fr;
        gap: 56px;
    }

    .themes-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
    :root { --section-py: 72px; }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .about-visual { display: flex; justify-content: center; }
    .portrait-card { max-width: 340px; }

    .about-stats { justify-content: center; }

    .steps-row {
        flex-direction: column;
        align-items: center;
    }
    .step-connector {
        width: 2px;
        height: 40px;
        background: linear-gradient(to bottom, var(--border), var(--terracotta), var(--border));
    }

    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: 1 / -1; }

    .shipping-grid { grid-template-columns: 1fr; }

    .contact-card { padding: 36px 28px; }
}

@media (max-width: 640px) {
    :root { --section-py: 60px; }

    .themes-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    /* Mobile nav */
    .nav-toggle { display: flex; }

    .nav-links {
        position: fixed;
        top: 0; right: -100%; bottom: 0;
        width: 280px;
        background: var(--white);
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        padding: 48px 32px;
        gap: 28px;
        box-shadow: -8px 0 40px rgba(0,0,0,0.12);
        transition: right var(--ease);
    }

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

    .nav-links a {
        color: var(--ink) !important;
        font-size: 1.05rem;
    }

    .nav-cta {
        background: var(--terracotta) !important;
        color: var(--white) !important;
        padding: 10px 24px;
    }

    .hero-cta { flex-direction: column; align-items: center; }

    .corner-motif { display: none; }

    .footer-grid { grid-template-columns: 1fr; gap: 36px; }

    .contact-card { padding: 28px 20px; }

    .gallery-thumb { height: 200px; }
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation: none !important; transition: none !important; }
    [data-animate], .theme-card, .gallery-card, .step, .contact-card { opacity: 1 !important; transform: none !important; }
}
