*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --cream:   #f5f0e8;
    --ivory:   #faf7f2;
    --sand:    #e8dfd0;
    --taupe:   #c4b49a;
    --umber:   #8c7660;
    --espresso:#3a2e24;
    --gold:    #b8975a;
    --gold-lt: #d4b87a;
    --text:    #3a2e24;
    --muted:   #7a6e62;
    --serif:   'Cormorant Garamond', Georgia, serif;
    --sans:    'Jost', sans-serif;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--sans);
    background: var(--ivory);
    color: var(--text);
    overflow-x: hidden;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--taupe); border-radius: 2px; }

/* ── NAV ── */
nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 1.4rem 5vw;
    transition: background .4s, box-shadow .4s;
}
nav.scrolled {
    background: rgba(250,247,242,.92);
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 0 var(--sand);
}
.nav-logo {
    font-family: var(--serif);
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: .12em;
    color: var(--espresso);
    text-decoration: none;
}
.nav-logo span { color: var(--gold); }
.nav-links { display: flex; gap: 2.4rem; list-style: none; }
.nav-links a {
    font-family: var(--sans);
    font-size: .72rem;
    font-weight: 300;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--espresso);
    text-decoration: none;
    position: relative;
}
.nav-links a::after {
    content: '';
    position: absolute; bottom: -3px; left: 0; right: 0;
    height: 1px; background: var(--gold);
    transform: scaleX(0); transition: transform .3s;
}
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta {
    font-size: .72rem; letter-spacing: .18em; text-transform: uppercase;
    padding: .55rem 1.4rem;
    border: 1px solid var(--gold);
    color: var(--espresso);
    text-decoration: none;
    transition: background .3s, color .3s;
}
.nav-cta:hover { background: var(--gold); color: var(--ivory); }

/* hamburger */
.hamburger {
    display: none; flex-direction: column; gap: 5px;
    cursor: pointer; background: none; border: none; padding: 4px;
}
.hamburger span {
    display: block; width: 24px; height: 1px;
    background: var(--espresso); transition: .3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.mobile-menu {
    display: none; position: fixed; inset: 0; z-index: 99;
    background: var(--ivory);
    flex-direction: column; align-items: center; justify-content: center;
    gap: 2.5rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
    font-family: var(--serif); font-size: 2rem; font-weight: 300;
    letter-spacing: .08em; color: var(--espresso); text-decoration: none;
}
.mobile-menu a:hover { color: var(--gold); }

/* ── HERO ── */
#hero {
    min-height: 100vh;
    display: grid; grid-template-columns: 1fr 1fr;
    align-items: center;
    padding-top: 80px;
    background: linear-gradient(135deg, var(--cream) 60%, var(--sand) 100%);
    position: relative; overflow: hidden;
}
#hero::before {
    content: '';
    position: absolute; top: -100px; right: -100px;
    width: 600px; height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(184,151,90,.12) 0%, transparent 70%);
    pointer-events: none;
}
.hero-text {
    padding: 6vw 5vw 6vw 8vw;
    animation: fadeUp .9s ease both;
}
.hero-eyebrow {
    font-size: .7rem; letter-spacing: .28em; text-transform: uppercase;
    color: var(--gold); font-weight: 300; margin-bottom: 1.2rem;
}
.hero-title {
    font-family: var(--serif); font-size: clamp(3rem, 5.5vw, 5.5rem);
    font-weight: 300; line-height: 1.05; color: var(--espresso);
    margin-bottom: 1.6rem;
}
.hero-title em { font-style: italic; color: var(--umber); }
.hero-sub {
    font-size: .9rem; font-weight: 300; line-height: 1.9;
    color: var(--muted); max-width: 420px; margin-bottom: 2.8rem;
}
.btn-primary {
    display: inline-block;
    padding: .85rem 2.4rem;
    background: var(--espresso);
    color: var(--ivory);
    font-size: .72rem; letter-spacing: .2em; text-transform: uppercase;
    text-decoration: none; transition: background .3s, transform .2s;
}
.btn-primary:hover { background: var(--umber); transform: translateY(-1px); }
.btn-secondary {
    display: inline-block; margin-left: 1.2rem;
    padding: .85rem 2.4rem;
    border: 1px solid var(--taupe);
    color: var(--espresso);
    font-size: .72rem; letter-spacing: .2em; text-transform: uppercase;
    text-decoration: none; transition: border-color .3s, color .3s;
}
.btn-secondary:hover { border-color: var(--gold); color: var(--gold); }

.hero-image {
    display: flex; align-items: center; justify-content: center;
    padding: 4rem 6vw 4rem 2vw;
    animation: fadeIn 1.2s ease both;
}
.bottle-wrap {
    position: relative;
    width: min(340px, 80vw);
}
.bottle-wrap::before {
    content: '';
    position: absolute; bottom: -40px; left: 50%; transform: translateX(-50%);
    width: 200px; height: 40px;
    background: radial-gradient(ellipse, rgba(58,46,36,.18) 0%, transparent 70%);
}
.bottle-svg { width: 100%; filter: drop-shadow(0 30px 50px rgba(58,46,36,.18)); }

/* ── RIBBON ── */
.ribbon {
    background: var(--espresso); color: var(--gold-lt);
    display: flex; align-items: center; gap: 3rem;
    padding: 1rem 0; overflow: hidden; white-space: nowrap;
}
.ribbon-track {
    display: flex; gap: 3rem; animation: ticker 18s linear infinite;
}
.ribbon-item {
    font-size: .68rem; letter-spacing: .22em; text-transform: uppercase;
    display: flex; align-items: center; gap: .8rem; flex-shrink: 0;
}
.ribbon-item::before { content: '◆'; font-size: .5rem; color: var(--gold); }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── SECTION BASE ── */
section { padding: 7rem 5vw; }
.section-eyebrow {
    font-size: .68rem; letter-spacing: .28em; text-transform: uppercase;
    color: var(--gold); font-weight: 300; margin-bottom: 1rem;
    display: block;
}
.section-title {
    font-family: var(--serif); font-size: clamp(2rem, 3.5vw, 3.2rem);
    font-weight: 300; line-height: 1.15; color: var(--espresso);
    margin-bottom: 1.2rem;
}
.section-lead {
    font-size: .9rem; font-weight: 300; line-height: 1.9; color: var(--muted);
    max-width: 480px;
}

/* ── FEATURED ── */
#featured { background: var(--ivory); }
.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem; margin-top: 4rem;
}
.card {
    background: var(--cream);
    padding: 2.4rem 2rem 2rem;
    position: relative; overflow: hidden;
    transition: transform .35s, box-shadow .35s;
    cursor: pointer;
}
.card:hover { transform: translateY(-6px); box-shadow: 0 24px 48px rgba(58,46,36,.1); }
.card-badge {
    position: absolute; top: 1.2rem; right: 1.2rem;
    font-size: .6rem; letter-spacing: .18em; text-transform: uppercase;
    background: var(--gold); color: var(--ivory);
    padding: .3rem .7rem;
}
.card-icon {
    margin-bottom: 1.6rem;
    display: flex; align-items: center; justify-content: center;
    height: 140px;
}
.card-icon svg { height: 120px; filter: drop-shadow(0 8px 16px rgba(58,46,36,.12)); }
.card-name {
    font-family: var(--serif); font-size: 1.4rem; font-weight: 400;
    color: var(--espresso); margin-bottom: .3rem;
}
.card-family {
    font-size: .68rem; letter-spacing: .2em; text-transform: uppercase;
    color: var(--taupe); margin-bottom: 1rem;
}
.card-notes { font-size: .82rem; line-height: 1.7; color: var(--muted); margin-bottom: 1.4rem; }
.card-footer { display: flex; align-items: center; justify-content: space-between; }
.card-price {
    font-family: var(--serif); font-size: 1.3rem; color: var(--espresso);
}
.card-btn {
    font-size: .65rem; letter-spacing: .18em; text-transform: uppercase;
    padding: .5rem 1.1rem; border: 1px solid var(--espresso);
    color: var(--espresso); cursor: pointer; background: none;
    transition: background .3s, color .3s;
}
.card-btn:hover { background: var(--espresso); color: var(--ivory); }

/* ── STORY ── */
#story {
    background: var(--espresso); color: var(--cream);
    display: grid; grid-template-columns: 1fr 1fr; gap: 5rem;
    align-items: center;
}
#story .section-title { color: var(--cream); }
#story .section-lead { color: rgba(245,240,232,.7); max-width: 420px; }
#story .section-eyebrow { color: var(--gold-lt); }
.story-visual {
    display: flex; align-items: center; justify-content: center;
}
.story-ring {
    width: min(340px, 70vw); height: min(340px, 70vw);
    border: 1px solid rgba(184,151,90,.3);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    position: relative;
}
.story-ring::before {
    content: '';
    position: absolute; inset: 20px;
    border: 1px solid rgba(184,151,90,.15);
    border-radius: 50%;
}
.story-ring svg { width: 55%; opacity: .9; }
.story-stats {
    display: flex; gap: 3rem; margin-top: 3rem;
}
.stat-num {
    font-family: var(--serif); font-size: 2.4rem; font-weight: 300;
    color: var(--gold-lt); display: block;
}
.stat-label {
    font-size: .68rem; letter-spacing: .18em; text-transform: uppercase;
    color: rgba(245,240,232,.5);
}

/* ── COLLECTIONS ── */
#collections { background: var(--cream); }
.collections-header {
    display: flex; align-items: flex-end; justify-content: space-between;
    margin-bottom: 3.5rem; flex-wrap: wrap; gap: 1rem;
}
.collections-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 1.2rem;
}
.col-card {
    background: var(--sand);
    padding: 2.4rem 2rem;
    display: flex; flex-direction: column; justify-content: flex-end;
    min-height: 200px;
    position: relative; overflow: hidden;
    transition: opacity .3s;
    cursor: pointer;
}
.col-card:hover { opacity: .88; }
.col-card.tall { grid-row: span 2; min-height: 420px; }
.col-card-bg {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    opacity: .18;
}
.col-card-bg svg { width: 60%; }
.col-tag {
    font-size: .6rem; letter-spacing: .22em; text-transform: uppercase;
    color: var(--umber); margin-bottom: .5rem;
}
.col-name {
    font-family: var(--serif); font-size: 1.6rem; font-weight: 300;
    color: var(--espresso); line-height: 1.1;
}

/* ── PROCESS ── */
#process { background: var(--ivory); }
.process-steps {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem; margin-top: 4rem;
}
.step { position: relative; }
.step-num {
    font-family: var(--serif); font-size: 3.5rem; font-weight: 300;
    color: var(--sand); line-height: 1; margin-bottom: .8rem;
}
.step-line {
    width: 32px; height: 1px; background: var(--gold);
    margin-bottom: 1rem;
}
.step-title {
    font-family: var(--serif); font-size: 1.15rem;
    color: var(--espresso); margin-bottom: .6rem;
}
.step-desc { font-size: .82rem; line-height: 1.8; color: var(--muted); }

/* ── TESTIMONIALS ── */
#testimonials { background: var(--cream); text-align: center; }
.testimonials-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem; margin-top: 4rem;
}
.testimonial {
    background: var(--ivory); padding: 2.4rem 2rem;
    border-bottom: 2px solid var(--gold);
    text-align: left;
}
.testimonial-stars { color: var(--gold); letter-spacing: .1em; margin-bottom: 1.2rem; font-size: .9rem; }
.testimonial-text {
    font-family: var(--serif); font-size: 1.05rem; font-style: italic;
    line-height: 1.75; color: var(--espresso); margin-bottom: 1.4rem;
}
.testimonial-author { font-size: .7rem; letter-spacing: .18em; text-transform: uppercase; color: var(--taupe); }

/* ── CONTACT ── */
#contact {
    background: var(--espresso);
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 5rem; align-items: start;
}
#contact .section-title { color: var(--cream); }
#contact .section-lead { color: rgba(245,240,232,.65); margin-bottom: 2rem; }
#contact .section-eyebrow { color: var(--gold-lt); }
.contact-info { display: flex; flex-direction: column; gap: 1.4rem; margin-top: 2rem; }
.contact-item {
    display: flex; align-items: flex-start; gap: 1rem;
}
.contact-icon { color: var(--gold); font-size: 1rem; margin-top: .1rem; flex-shrink: 0; }
.contact-detail { font-size: .85rem; line-height: 1.6; color: rgba(245,240,232,.65); }
.contact-detail strong { color: var(--cream); font-weight: 400; display: block; margin-bottom: .1rem; }

/* form */
.form { display: flex; flex-direction: column; gap: 1.2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: .45rem; }
label {
    font-size: .65rem; letter-spacing: .2em; text-transform: uppercase;
    color: rgba(245,240,232,.5);
}
input, textarea, select {
    background: rgba(245,240,232,.06);
    border: 1px solid rgba(245,240,232,.15);
    color: var(--cream); padding: .75rem 1rem;
    font-family: var(--sans); font-size: .85rem; font-weight: 300;
    outline: none; transition: border-color .3s;
    width: 100%;
}
input::placeholder, textarea::placeholder { color: rgba(245,240,232,.3); }
input:focus, textarea:focus, select:focus { border-color: var(--gold); }
select option { background: var(--espresso); color: var(--cream); }
textarea { resize: vertical; min-height: 100px; }
.btn-submit {
    background: var(--gold); color: var(--espresso);
    border: none; padding: .9rem 2rem;
    font-family: var(--sans); font-size: .72rem;
    letter-spacing: .2em; text-transform: uppercase;
    cursor: pointer; transition: background .3s, transform .2s;
    align-self: flex-start;
}
.btn-submit:hover { background: var(--gold-lt); transform: translateY(-1px); }
.form-success {
    display: none;
    background: rgba(184,151,90,.15); border: 1px solid var(--gold);
    padding: 1.2rem 1.4rem;
    font-size: .85rem; color: var(--gold-lt); line-height: 1.6;
}

/* ── FOOTER ── */
footer {
    background: #251d16; color: rgba(245,240,232,.45);
    padding: 3rem 5vw;
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 1.5rem;
}
.footer-logo {
    font-family: var(--serif); font-size: 1.3rem; font-weight: 300;
    color: var(--cream); letter-spacing: .1em;
}
.footer-logo span { color: var(--gold); }
.footer-links { display: flex; gap: 2rem; flex-wrap: wrap; }
.footer-links a {
    font-size: .68rem; letter-spacing: .16em; text-transform: uppercase;
    color: rgba(245,240,232,.45); text-decoration: none;
    transition: color .3s;
}
.footer-links a:hover { color: var(--gold); }
.footer-copy { font-size: .7rem; }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
    from { opacity: 0; } to { opacity: 1; }
}
.reveal {
    opacity: 0; transform: translateY(24px);
    transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
    #hero { grid-template-columns: 1fr; text-align: center; }
    .hero-text { padding: 5rem 6vw 3rem; }
    .hero-text .section-lead { margin: 0 auto 2.8rem; }
    .hero-image { padding: 2rem 10vw 4rem; }

    #story, #contact { grid-template-columns: 1fr; gap: 3rem; }
    .story-visual { order: -1; }

    .collections-grid { grid-template-columns: 1fr 1fr; }
    .col-card.tall { grid-row: span 1; min-height: 200px; }

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

    .nav-links, .nav-cta { display: none; }
    .hamburger { display: flex; }
}

@media (max-width: 540px) {
    section { padding: 5rem 5vw; }
    .hero-title { font-size: 2.8rem; }
    .collections-grid { grid-template-columns: 1fr; }
    .story-stats { gap: 1.8rem; }
    footer { flex-direction: column; text-align: center; }
    .footer-links { justify-content: center; }
    .btn-primary, .btn-secondary { display: block; margin: 0 0 .8rem; text-align: center; }
}