/* ABOUTME: Main stylesheet for Boursot Wine Collection — warm editorial redesign. */
/* ABOUTME: Cormorant Garamond + Libre Franklin + Caveat fonts, ivory/wine-red palette, paper grain texture. */

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
    --ivory: #f9f6f0;
    --cream: #f0ebe2;
    --parchment: #e8e0d4;
    --wine: #6b1c23;
    --wine-deep: #4a0e15;
    --wine-light: #8a3540;
    --charcoal: #2c2420;
    --text: #3d3530;
    --text-light: #7a6f65;
    --gold: #b8943c;
    --gold-muted: #c4a85e;
    --sage: #7a8c6c;
    --white: #fefdfb;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }

body {
    font-family: 'Libre Franklin', sans-serif;
    font-weight: 400;
    color: var(--text);
    background: var(--ivory);
    line-height: 1.75;
    -webkit-font-smoothing: antialiased;
}
/* Subtle paper grain */
body::before {
    content: '';
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.025;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--wine); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--wine-deep); }

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 36px;
}

h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', serif;
    color: var(--charcoal);
    font-weight: 400;
    line-height: 1.2;
}

.handwritten {
    font-family: 'Caveat', cursive;
}

/* Fade-in animation */
.fade-section {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================================
   TOP BAR
   ============================================================ */
.top-bar {
    background: var(--wine-deep);
    color: rgba(255,255,255,0.9);
    text-align: center;
    padding: 9px 20px;
    font-size: 0.8rem;
    letter-spacing: 0.03em;
}
.top-bar .handwritten {
    color: var(--gold-muted);
    font-size: 1rem;
    font-weight: 500;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
    background: var(--ivory);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--parchment);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 36px;
    max-width: 1140px;
    margin: 0 auto;
}
.header-logo {
    text-decoration: none;
}
.header-logo .logo-main {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    font-size: 1.7rem;
    color: var(--charcoal);
    letter-spacing: 0.06em;
    display: block;
    line-height: 1;
}
.header-logo .logo-sub {
    font-family: 'Libre Franklin', sans-serif;
    font-size: 0.62rem;
    font-weight: 400;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-top: 3px;
    display: block;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}
.header-nav a {
    font-family: 'Libre Franklin', sans-serif;
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--text);
    text-decoration: none;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 4px 0;
    position: relative;
}
.header-nav a:hover { color: var(--wine); }
.header-nav a::after {
    content: '';
    position: absolute;
    bottom: -3px; left: 0;
    width: 0; height: 1px;
    background: var(--wine);
    transition: width 0.3s ease;
}
.header-nav a:hover::after { width: 100%; }
.header-nav a.active-nav::after { width: 100%; }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown .dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 8px); left: -16px;
    background: var(--white);
    border: 1px solid var(--parchment);
    min-width: 200px;
    padding: 10px 0;
    box-shadow: 0 12px 36px rgba(44,36,32,0.1);
    z-index: 200;
}
.nav-dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu a {
    display: block;
    padding: 7px 22px;
    font-size: 0.78rem;
    text-transform: none;
    letter-spacing: 0.01em;
    color: var(--text);
}
.dropdown-menu a:hover { background: var(--cream); color: var(--wine); }
.dropdown-menu a::after { display: none; }

.header-cart {
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--text);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
}
.header-cart:hover { color: var(--wine); }

/* Hamburger */
.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}
.hamburger-line {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--charcoal);
    margin: 5px 0;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
    padding: 80px 0 60px;
    background: var(--ivory);
}
.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.hero-text .hero-eyebrow {
    font-family: 'Libre Franklin', sans-serif;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--wine);
    margin-bottom: 16px;
}
.hero-text h1 {
    font-size: 3.2rem;
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--charcoal);
}
.hero-text h1 em {
    font-style: italic;
    font-weight: 400;
}
.hero-text .hero-body {
    font-size: 1.02rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 10px;
    max-width: 460px;
}
.hero-text .hero-quote {
    font-family: 'Caveat', cursive;
    font-size: 1.35rem;
    color: var(--wine);
    margin: 28px 0;
    line-height: 1.4;
}
.hero-text .hero-quote .sig {
    font-size: 1.1rem;
    color: var(--text-light);
    display: block;
    margin-top: 4px;
}
.hero-photo {
    position: relative;
}
.hero-photo-main {
    height: 520px;
    background: linear-gradient(160deg, #c4b09a 0%, #8a7560 40%, #5c4a3a 100%);
    position: relative;
    overflow: hidden;
}
.hero-photo-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-photo-main .photo-label {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(transparent, rgba(44,36,32,0.7));
    padding: 40px 24px 20px;
    color: rgba(255,255,255,0.85);
    font-size: 0.78rem;
    font-style: italic;
}
.hero-photo-accent {
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 200px;
    height: 200px;
    border: 1px solid var(--parchment);
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    text-align: center;
}
.hero-photo-accent .accent-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.92rem;
    font-style: italic;
    color: var(--text);
    line-height: 1.5;
}
.hero-photo-accent .accent-text strong {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    font-weight: 400;
    color: var(--wine);
    margin-bottom: 4px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    margin-top: 32px;
}

/* Buttons */
.btn {
    display: inline-block;
    font-family: 'Libre Franklin', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 14px 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}
.btn:hover { text-decoration: none; }
.btn-wine {
    background: var(--wine);
    color: #fff;
    border: 1.5px solid var(--wine);
}
.btn-wine:hover { background: var(--wine-deep); border-color: var(--wine-deep); color: #fff; }
.btn-outline {
    background: transparent;
    color: var(--charcoal);
    border: 1.5px solid var(--charcoal);
}
.btn-outline:hover { background: var(--charcoal); color: var(--ivory); }
.btn-gold {
    background: transparent;
    color: var(--gold);
    border: 1.5px solid var(--gold);
}
.btn-gold:hover { background: var(--gold); color: #fff; }

/* ============================================================
   ARDRES STRIP
   ============================================================ */
.ardres-strip {
    background: var(--cream);
    padding: 24px 0;
    border-top: 1px solid var(--parchment);
    border-bottom: 1px solid var(--parchment);
}
.ardres-strip-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    text-align: center;
}
.ardres-point {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--text);
}
.ardres-point .point-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--parchment);
    background: var(--ivory);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    flex-shrink: 0;
}
.ardres-point strong { color: var(--wine); font-weight: 600; }

/* ============================================================
   SECTION BASE
   ============================================================ */
.section { padding: 80px 0; }
.section-label {
    font-family: 'Libre Franklin', sans-serif;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--wine);
    margin-bottom: 12px;
}
.section-title {
    font-size: 2.4rem;
    font-weight: 300;
    margin-bottom: 16px;
}
.section-subtitle {
    font-size: 1rem;
    color: var(--text-light);
    max-width: 540px;
    line-height: 1.75;
}

/* ============================================================
   GUY'S PICKS — editorial wine recommendations
   ============================================================ */
.picks-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 50px;
}
.picks-featured {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 24px;
}
.pick-card {
    background: var(--white);
    border: 1px solid var(--parchment);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}
.pick-card:hover {
    box-shadow: 0 8px 30px rgba(44,36,32,0.08);
    transform: translateY(-3px);
}
.pick-card.featured {
    grid-row: span 2;
}
.pick-card-img {
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}
.pick-card.featured .pick-card-img { height: 100%; min-height: 380px; }
.pick-card:not(.featured) .pick-card-img { height: 220px; }

/* Dynamic product images from Shopify */
.pick-card-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.pick-card-no-img {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Placeholder bottles */
.bottle-shape {
    width: 40px;
    position: relative;
}
.bottle-shape .bottle-body {
    width: 40px;
    height: 140px;
    border-radius: 5px 5px 2px 2px;
    background: var(--wine);
}
.bottle-shape .bottle-neck {
    width: 12px;
    height: 24px;
    background: var(--wine-deep);
    border-radius: 3px 3px 0 0;
    margin: 0 auto -1px;
}
.bottle-shape.white .bottle-body { background: #c9b96a; }
.bottle-shape.white .bottle-neck { background: #a89540; }
.bottle-shape.rose .bottle-body { background: #d4a0a0; }
.bottle-shape.rose .bottle-neck { background: #c47070; }
.bottle-shape.champagne .bottle-body { background: #a08850; }
.bottle-shape.champagne .bottle-neck { background: #8a7040; }

.pick-card.featured .bottle-shape .bottle-body { height: 200px; width: 52px; }
.pick-card.featured .bottle-shape .bottle-neck { width: 16px; height: 30px; }
.pick-card.featured .bottle-shape { width: 52px; }

.pick-badge {
    position: absolute;
    top: 14px; left: 14px;
    font-family: 'Caveat', cursive;
    font-size: 0.88rem;
    color: var(--wine);
    background: var(--ivory);
    padding: 3px 12px;
    border: 1px solid var(--parchment);
}

.pick-card-body {
    padding: 20px;
}
.pick-card.featured .pick-card-body { padding: 24px; }
.pick-card-body h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--charcoal);
    margin-bottom: 4px;
    line-height: 1.3;
}
.pick-card.featured .pick-card-body h4 { font-size: 1.4rem; }
.pick-card-body .pick-meta {
    font-size: 0.75rem;
    color: var(--text-light);
    margin-bottom: 10px;
    letter-spacing: 0.02em;
}
.pick-card-body .pick-note {
    font-family: 'Caveat', cursive;
    font-size: 1rem;
    color: var(--text);
    line-height: 1.45;
    margin-bottom: 12px;
    padding-left: 12px;
    border-left: 2px solid var(--gold-muted);
}
.pick-card.featured .pick-card-body .pick-note { font-size: 1.1rem; }
.pick-card-body .pick-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--charcoal);
}
.pick-card-body .pick-enquire {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--wine);
    margin-top: 12px;
    display: inline-block;
    border-bottom: 1px solid var(--wine);
    padding-bottom: 1px;
}
.pick-card-body .pick-enquire:hover { color: var(--wine-deep); }

/* ============================================================
   HERITAGE TIMELINE
   ============================================================ */
.heritage {
    background: var(--charcoal);
    color: rgba(255,255,255,0.85);
    overflow: hidden;
    position: relative;
}
.heritage::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(ellipse at 20% 50%, rgba(107,28,35,0.2), transparent 70%);
    pointer-events: none;
}
.heritage .section-label { color: var(--gold-muted); }
.heritage .section-title { color: #fff; }
.heritage .section-subtitle { color: rgba(255,255,255,0.55); }

.heritage-timeline {
    margin-top: 56px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
}
/* Connecting line */
.heritage-timeline::before {
    content: '';
    position: absolute;
    top: 38px;
    left: 5%;
    right: 5%;
    height: 1px;
    background: rgba(255,255,255,0.15);
}
.timeline-item {
    text-align: center;
    padding: 0 20px;
    position: relative;
}
.timeline-item .tl-year {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.6rem;
    font-weight: 300;
    color: var(--gold-muted);
    line-height: 1;
    margin-bottom: 6px;
}
.timeline-item .tl-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gold-muted);
    margin: 16px auto;
}
.timeline-item .tl-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem;
    font-weight: 500;
    color: #fff;
    margin-bottom: 8px;
    line-height: 1.3;
}
.timeline-item .tl-text {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.6;
}

.heritage-cta {
    text-align: center;
    margin-top: 56px;
}

/* ============================================================
   THE EXPERIENCE
   ============================================================ */
.experience {
    background: var(--white);
}
.exp-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    margin-top: 50px;
    border: 1px solid var(--parchment);
}
.exp-card {
    padding: 44px 40px;
    border-right: 1px solid var(--parchment);
    border-bottom: 1px solid var(--parchment);
    transition: background 0.3s ease;
}
.exp-card:nth-child(2n) { border-right: none; }
.exp-card:nth-child(n+3) { border-bottom: none; }
.exp-card:hover { background: var(--cream); }

.exp-card .exp-icon {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: var(--wine);
    margin-bottom: 14px;
    font-style: italic;
}
.exp-card h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}
.exp-card p {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 14px;
}
.exp-card .exp-detail {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--charcoal);
}
.exp-card .exp-link {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--wine);
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s;
    display: inline-block;
    margin-top: 8px;
}
.exp-card .exp-link:hover { border-bottom-color: var(--wine); }

/* ============================================================
   EVENTS — personal invitations
   ============================================================ */
.events-section { background: var(--ivory); }
.events-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 44px;
}
.invitation {
    background: var(--white);
    border: 1px solid var(--parchment);
    padding: 36px;
    position: relative;
}
.invitation::before {
    content: '';
    position: absolute;
    top: 12px; left: 12px; right: 12px; bottom: 12px;
    border: 1px solid var(--parchment);
    pointer-events: none;
}
.invitation .inv-date {
    font-family: 'Libre Franklin', sans-serif;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--wine);
    margin-bottom: 14px;
}
.invitation h4 {
    font-size: 1.5rem;
    font-style: italic;
    margin-bottom: 14px;
    line-height: 1.25;
}
.invitation p {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 10px;
}
.invitation .inv-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--charcoal);
    margin-top: 16px;
}
.invitation .inv-note {
    font-family: 'Caveat', cursive;
    font-size: 1rem;
    color: var(--text);
    margin-top: 12px;
}

/* ============================================================
   WEDDING
   ============================================================ */
.wedding-section {
    background: var(--cream);
    border-top: 1px solid var(--parchment);
    border-bottom: 1px solid var(--parchment);
}
.wedding-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.wedding-photo {
    height: 400px;
    background: linear-gradient(160deg, #d4c5b3 0%, #a8937a 60%, #7a6555 100%);
    position: relative;
    overflow: hidden;
}
.wedding-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.wedding-photo .photo-label {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(transparent, rgba(44,36,32,0.6));
    padding: 30px 20px 16px;
    font-size: 0.78rem;
    font-style: italic;
    color: rgba(255,255,255,0.8);
}

/* ============================================================
   GUY'S SIGN-OFF
   ============================================================ */
.signoff {
    text-align: center;
    background: var(--ivory);
    padding: 70px 0;
}
.signoff-content {
    max-width: 580px;
    margin: 0 auto;
}
.signoff-photo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, #c4b09a, #8a7560);
    margin: 0 auto 24px;
    border: 3px solid var(--parchment);
    overflow: hidden;
}
.signoff-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.signoff-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-style: italic;
    color: var(--charcoal);
    line-height: 1.5;
    margin-bottom: 20px;
}
.signoff-sig {
    font-family: 'Caveat', cursive;
    font-size: 1.8rem;
    color: var(--wine);
}
.signoff-title {
    font-size: 0.78rem;
    color: var(--text-light);
    margin-top: 4px;
}

/* ============================================================
   NEWSLETTER
   ============================================================ */
.newsletter {
    background: var(--charcoal);
    padding: 50px 0;
    text-align: center;
}
.newsletter h3 {
    font-size: 1.6rem;
    color: #fff;
    margin-bottom: 8px;
}
.newsletter p {
    color: rgba(255,255,255,0.5);
    font-size: 0.88rem;
    margin-bottom: 24px;
}
.newsletter-form {
    display: flex;
    max-width: 440px;
    margin: 0 auto;
}
.newsletter-form input {
    flex: 1;
    font-family: 'Libre Franklin', sans-serif;
    font-size: 0.85rem;
    padding: 13px 16px;
    border: 1px solid rgba(255,255,255,0.15);
    border-right: none;
    background: rgba(255,255,255,0.06);
    color: #fff;
    outline: none;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.3); }
.newsletter-form input:focus { border-color: var(--gold-muted); }
.newsletter-form button {
    font-family: 'Libre Franklin', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 13px 24px;
    background: var(--wine);
    color: #fff;
    border: 1px solid var(--wine);
    cursor: pointer;
    transition: background 0.2s;
}
.newsletter-form button:hover { background: var(--wine-deep); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
    background: #1a1612;
    color: rgba(255,255,255,0.45);
    padding: 56px 0 28px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.3fr;
    gap: 40px;
    margin-bottom: 40px;
}
.footer-col h5 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    font-weight: 500;
    color: rgba(255,255,255,0.8);
    margin-bottom: 14px;
}
.footer-col p, .footer-col li {
    font-size: 0.82rem;
    line-height: 1.75;
}
.footer-col a { color: rgba(255,255,255,0.55); }
.footer-col a:hover { color: #fff; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 5px; }

.footer-brand {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 500;
    color: rgba(255,255,255,0.8);
    margin-bottom: 10px;
}

.footer-hours-badge {
    display: inline-block;
    border: 1px solid rgba(255,255,255,0.15);
    padding: 12px 18px;
    margin-top: 8px;
    font-size: 0.82rem;
    line-height: 1.6;
}
.footer-hours-badge strong {
    color: rgba(255,255,255,0.7);
    display: block;
    font-weight: 500;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}
.footer-social a {
    width: 32px;
    height: 32px;
    border: 1px solid rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.4);
    transition: all 0.2s;
}
.footer-social a:hover { border-color: rgba(255,255,255,0.5); color: #fff; text-decoration: none; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    font-size: 0.72rem;
    color: rgba(255,255,255,0.25);
}

/* ============================================================
   SHOP PAGE
   ============================================================ */
.page { display: none; }
.page.active { display: block; }

.shop-intro {
    padding: 50px 0 10px;
}
.shop-intro .guy-note {
    font-family: 'Caveat', cursive;
    font-size: 1.15rem;
    color: var(--text);
    max-width: 600px;
    margin-top: 16px;
    line-height: 1.5;
    padding-left: 16px;
    border-left: 2px solid var(--gold-muted);
}

.shop-filter-bar {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 0;
    border-bottom: 1px solid var(--parchment);
    margin-bottom: 30px;
    flex-wrap: wrap;
}
.filter-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-light);
}
.filter-btn {
    font-family: 'Libre Franklin', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 8px 18px;
    border: 1px solid var(--parchment);
    background: var(--white);
    color: var(--text);
    cursor: pointer;
    transition: all 0.2s;
}
.filter-btn.active {
    background: var(--wine);
    color: #fff;
    border-color: var(--wine);
}
.filter-btn:hover {
    border-color: var(--wine);
    color: var(--wine);
}
.shop-filter-bar select {
    font-family: 'Libre Franklin', sans-serif;
    font-size: 0.82rem;
    padding: 8px 30px 8px 12px;
    border: 1px solid var(--parchment);
    background: var(--white);
    color: var(--text);
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%237a6f65'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    cursor: pointer;
}
.shop-count {
    margin-left: auto;
    font-size: 0.82rem;
    color: var(--text-light);
}
.shop-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}
.shop-grid .pick-card-body .pick-note { display: none; }

/* Product loading state */
.product-loading {
    text-align: center;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    color: var(--text-light);
    padding: 60px 0;
    font-size: 1.1rem;
}

/* ============================================================
   PRODUCT DETAIL OVERLAY
   ============================================================ */
.product-detail-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(44, 36, 32, 0.75);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.product-detail-inner {
    position: relative;
    background: var(--white);
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 36px;
    border: 1px solid var(--parchment);
}

.product-detail-close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    font-size: 28px;
    color: var(--text);
    cursor: pointer;
    line-height: 1;
    font-family: 'Cormorant Garamond', serif;
}
.product-detail-close:hover {
    color: var(--wine);
}

.product-detail-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 32px;
    align-items: start;
}

.product-detail-img img {
    width: 100%;
    height: auto;
    border: 1px solid var(--parchment);
}

.product-detail-text h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--charcoal);
    text-align: left;
    margin: 0 0 8px;
    line-height: 1.2;
}

.product-detail-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--charcoal);
    margin: 0 0 16px;
}

.product-detail-desc {
    font-size: 0.9rem;
    line-height: 1.75;
    color: var(--text);
    margin-bottom: 16px;
}

.product-detail-tags {
    font-size: 0.78rem;
    color: var(--text-light);
    margin-bottom: 16px;
}

.product-detail-order {
    font-size: 0.88rem;
    padding: 16px;
    background: var(--cream);
    border: 1px solid var(--parchment);
    line-height: 1.6;
}

/* ============================================================
   STORY PAGE
   ============================================================ */
.story-hero {
    background: var(--cream);
    padding: 70px 0;
    text-align: center;
    border-bottom: 1px solid var(--parchment);
}
.story-hero .section-title { font-size: 2.8rem; }
.story-hero p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    font-style: italic;
    color: var(--text-light);
    max-width: 500px;
    margin: 10px auto 0;
}

.story-body {
    max-width: 700px;
    margin: 0 auto;
    padding: 60px 30px;
}
.story-body h2 {
    font-size: 1.8rem;
    margin: 48px 0 18px;
}
.story-body h2:first-of-type { margin-top: 0; }
.story-body h3 {
    font-size: 1.2rem;
    color: var(--wine);
    margin: 32px 0 12px;
}
.story-body p {
    margin-bottom: 16px;
    color: var(--text);
    font-size: 0.95rem;
    line-height: 1.8;
}
.story-body blockquote {
    border-left: 2px solid var(--gold-muted);
    padding: 20px 28px;
    margin: 32px 0;
    background: var(--cream);
}
.story-body blockquote p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-style: italic;
    color: var(--charcoal);
    margin-bottom: 6px;
    line-height: 1.5;
}
.story-body blockquote cite {
    font-family: 'Libre Franklin', sans-serif;
    font-style: normal;
    font-size: 0.78rem;
    color: var(--text-light);
}
.story-body .story-img {
    margin: 32px 0;
}
.story-body .story-img img {
    border: 1px solid var(--parchment);
}
.story-body .story-img figcaption {
    font-size: 0.78rem;
    color: var(--text-light);
    font-style: italic;
    margin-top: 8px;
}

/* ============================================================
   EXPERIENCES PAGE
   ============================================================ */
.exp-page-hero {
    padding: 60px 0;
    text-align: center;
    border-bottom: 1px solid var(--parchment);
}
.exp-page-hero .section-title { font-size: 2.8rem; }
.exp-page-hero p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    font-style: italic;
    color: var(--text-light);
    max-width: 500px;
    margin: 10px auto 0;
}

.exp-page-section {
    padding: 44px 0;
    border-bottom: 1px solid var(--parchment);
}
.exp-page-section:last-child { border-bottom: none; }
.exp-page-section h3 {
    font-size: 1.6rem;
    margin-bottom: 16px;
}
.exp-page-section p {
    color: var(--text);
    margin-bottom: 12px;
    font-size: 0.95rem;
    max-width: 700px;
    line-height: 1.8;
}
.exp-page-section .exp-page-img {
    margin: 24px 0;
    max-width: 500px;
}
.exp-page-section .exp-page-img img {
    border: 1px solid var(--parchment);
}

/* ============================================================
   VISIT ARDRES PAGE
   ============================================================ */
.ardres-page-hero {
    background: linear-gradient(135deg, var(--sage) 0%, #5a6b4a 100%);
    padding: 60px 0;
    text-align: center;
}
.ardres-page-hero h1 { color: #fff; font-size: 2.4rem; margin-bottom: 8px; }
.ardres-page-hero p {
    font-family: 'Cormorant Garamond', serif;
    color: rgba(255,255,255,0.7);
    font-size: 1.1rem;
    font-style: italic;
}
.ardres-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    padding: 50px 0;
}
.ardres-grid h3 {
    font-size: 1.2rem;
    color: var(--wine);
    margin-bottom: 14px;
}
.ardres-grid p {
    color: var(--text);
    margin-bottom: 12px;
    font-size: 0.95rem;
    line-height: 1.8;
}
.ardres-grid ul { list-style: none; }
.ardres-grid li { padding: 6px 0; font-size: 0.95rem; }
.ardres-grid li strong { color: var(--charcoal); }
.ardres-grid .ardres-img {
    margin: 24px 0 0;
}
.ardres-grid .ardres-img img {
    border: 1px solid var(--parchment);
}
.map-placeholder {
    background: var(--cream);
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.95rem;
    font-style: italic;
    border: 1px solid var(--parchment);
    margin-top: 24px;
    overflow: hidden;
}
.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hotel-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    padding-bottom: 60px;
}
.hotel-card {
    background: var(--white);
    border: 1px solid var(--parchment);
    padding: 28px;
}
.hotel-card h4 {
    font-size: 1.15rem;
    margin-bottom: 8px;
}
.hotel-card p { font-size: 0.85rem; color: var(--text-light); line-height: 1.65; }
.hotel-card .hotel-badge {
    display: inline-block;
    margin-top: 12px;
    font-family: 'Caveat', cursive;
    font-size: 0.95rem;
    color: var(--wine);
}

/* ============================================================
   MOBILE NAV
   ============================================================ */
.mobile-nav {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: var(--ivory);
    z-index: 999;
    padding: 80px 36px 36px;
    overflow-y: auto;
}
.mobile-nav.open { display: block; }
.mobile-nav a {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: var(--charcoal);
    padding: 14px 0;
    border-bottom: 1px solid var(--parchment);
    text-decoration: none;
}
.mobile-nav a:hover { color: var(--wine); }
.mobile-close {
    position: absolute;
    top: 22px; right: 24px;
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--charcoal);
    font-family: 'Cormorant Garamond', serif;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .hero-inner { gap: 40px; }
    .hero-text h1 { font-size: 2.6rem; }
    .picks-featured { grid-template-columns: 1fr 1fr; }
    .picks-featured .pick-card.featured { grid-row: auto; }
    .heritage-timeline { grid-template-columns: repeat(2, 1fr); gap: 32px; }
    .heritage-timeline::before { display: none; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .hotel-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    html { font-size: 15px; }
    .container { padding: 0 24px; }
    .header-nav { display: none; }
    .hamburger { display: block; }

    .hero { padding: 50px 0 40px; }
    .hero-inner { grid-template-columns: 1fr; }
    .hero-text h1 { font-size: 2.4rem; }
    .hero-photo { display: none; }

    .ardres-strip-inner { gap: 20px; }
    .picks-featured { grid-template-columns: 1fr; }
    .picks-intro { grid-template-columns: 1fr; }
    .exp-grid { grid-template-columns: 1fr; }
    .exp-card { border-right: none; border-bottom: 1px solid var(--parchment); }
    .exp-card:last-child { border-bottom: none; }
    .events-layout { grid-template-columns: 1fr; }
    .wedding-inner { grid-template-columns: 1fr; }
    .wedding-photo { height: 280px; }
    .heritage-timeline { grid-template-columns: 1fr 1fr; }
    .ardres-grid { grid-template-columns: 1fr; }
    .hotel-grid { grid-template-columns: 1fr; }
    .shop-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
    .footer-bottom { flex-direction: column; gap: 6px; }

    .section { padding: 60px 0; }
    .section-title { font-size: 2rem; }

    .newsletter-form { flex-direction: column; gap: 8px; }
    .newsletter-form input { border-right: 1px solid rgba(255,255,255,0.15); }

    .product-detail-layout {
        grid-template-columns: 1fr;
    }
    .product-detail-img {
        max-width: 250px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .shop-grid { grid-template-columns: 1fr; }
    .heritage-timeline { grid-template-columns: 1fr; }
    .hero-text h1 { font-size: 2rem; }
    .hero-actions { flex-direction: column; }
    .ardres-strip-inner { flex-direction: column; gap: 14px; }
}
