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

:root {
    --charcoal:    #2D2D2D;
    --charcoal-deep: #1A1A1A;
    --coral:       #F97583;
    --coral-dark:  #E05A6A;
    --coral-light: #FDE2E5;
    --neutral:     #F5F3F0;
    --neutral-mid: #E8E4DF;
    --white:       #FFFFFF;
    --text:        #2D2D2D;
    --text-light:  #6B6560;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body:    'Inter', -apple-system, sans-serif;
    --radius:      8px;
    --radius-lg:   16px;
    --shadow-sm:   0 2px 8px rgba(0,0,0,.08);
    --shadow-md:   0 8px 32px rgba(0,0,0,.12);
    --shadow-lg:   0 16px 64px rgba(0,0,0,.16);
    --transition:  0.3s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--neutral);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

.skip-link {
    position: absolute; top: -100%; left: 1rem;
    background: var(--coral); color: var(--white);
    padding: .5rem 1rem; border-radius: var(--radius);
    z-index: 9999; font-weight: 600;
}
.skip-link:focus { top: 1rem; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

/* ── Typography ───────────────────────────────────── */
.section-eyebrow {
    font-family: var(--font-body);
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--coral);
    margin-bottom: .75rem;
}
.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--charcoal);
    margin-bottom: 1rem;
}
.section-sub {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 560px;
    line-height: 1.7;
}

/* ── Buttons ──────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    font-weight: 600;
    border-radius: var(--radius);
    transition: var(--transition);
    white-space: nowrap;
}
.btn-coral {
    background: var(--coral);
    color: var(--white);
    padding: .875rem 2rem;
    font-size: .95rem;
}
.btn-coral:hover { background: var(--coral-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline-light {
    border: 2px solid rgba(255,255,255,.6);
    color: var(--white);
    padding: .813rem 1.875rem;
    font-size: .95rem;
}
.btn-outline-light:hover { background: rgba(255,255,255,.12); border-color: var(--white); }
.btn-sm { padding: .5rem 1.25rem; font-size: .85rem; }
.btn-lg { padding: 1rem 2.25rem; font-size: 1rem; width: 100%; }

/* ── Header ───────────────────────────────────────── */
.header {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(26,26,26,.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,.06);
    transition: var(--transition);
}
.header.scrolled { background: rgba(26,26,26,.97); box-shadow: 0 4px 24px rgba(0,0,0,.3); }
.header-inner {
    display: flex; align-items: center;
    height: 72px;
}
.logo {
    display: flex; align-items: center; gap: .75rem;
    color: var(--white);
    font-family: var(--font-display);
}
.logo-mark {
    display: grid; place-items: center;
    width: 40px; height: 40px;
    background: var(--coral);
    color: var(--white);
    font-family: var(--font-body);
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: .05em;
    border-radius: var(--radius);
    flex-shrink: 0;
}
.logo-text {
    font-size: .95rem;
    line-height: 1.2;
    font-weight: 600;
}
.logo-text em { font-style: italic; font-weight: 400; color: rgba(255,255,255,.7); font-size: .85rem; }

.nav-list { display: flex; align-items: center; gap: .25rem; margin-left: auto; }
.nav-list a {
    color: rgba(255,255,255,.75);
    font-size: .875rem;
    font-weight: 500;
    padding: .5rem .875rem;
    border-radius: var(--radius);
    transition: var(--transition);
}
.nav-list a:hover { color: var(--white); background: rgba(255,255,255,.08); }

.nav-toggle {
    display: none;
    width: 40px; height: 40px;
    margin-left: auto;
    position: relative;
    align-items: center;
    justify-content: center;
}
.hamburger {
    display: block;
    width: 22px; height: 14px;
    position: relative;
}
.hamburger::before,
.hamburger::after,
.hamburger span {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}
.hamburger::before { top: 0; }
.hamburger span { top: 50%; transform: translateY(-50%); }
.hamburger::after { bottom: 0; }
.nav-toggle[aria-expanded="true"] .hamburger::before { top: 50%; transform: translateY(-50%) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .hamburger span { opacity: 0; }
.nav-toggle[aria-expanded="true"] .hamburger::after { bottom: 0; transform: rotate(90deg); }

/* ── Hero ─────────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute; inset: 0;
    z-index: 0;
}
.hero-bg img {
    width: 100%; height: 100%;
    object-fit: cover;
}
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(26,26,26,.70) 0%,
        rgba(45,45,45,.60) 50%,
        rgba(26,26,26,.85) 100%
    );
}
.hero-content {
    position: relative; z-index: 1;
    text-align: center;
    padding: 8rem 1.5rem 6rem;
    max-width: 800px;
}
.hero-eyebrow {
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--coral);
    margin-bottom: 1.5rem;
}
.hero-headline {
    font-family: var(--font-display);
    font-size: clamp(2.75rem, 7vw, 5.5rem);
    font-weight: 800;
    line-height: 1.05;
    color: var(--white);
    margin-bottom: 1.5rem;
}
.hero-headline em {
    font-style: italic;
    color: var(--coral);
}
.hero-sub {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255,255,255,.8);
    line-height: 1.7;
    max-width: 580px;
    margin: 0 auto 2.5rem;
}
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .5rem;
    color: rgba(255,255,255,.5);
    font-size: .7rem;
    letter-spacing: .15em;
    text-transform: uppercase;
}
.scroll-line {
    width: 1px; height: 48px;
    background: linear-gradient(to bottom, rgba(255,255,255,.5), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
    0%, 100% { opacity: 1; transform: scaleY(1); }
    50% { opacity: .4; transform: scaleY(.7); }
}

/* ── Spirits ──────────────────────────────────────── */
.spirits { padding: 7rem 0; background: var(--neutral); }
.spirits .section-header { text-align: center; margin-bottom: 4rem; }
.spirits .section-sub { margin: 0 auto; }

.spirits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}
.spirit-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.spirit-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.spirit-img {
    aspect-ratio: 4/5;
    overflow: hidden;
}
.spirit-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .6s cubic-bezier(.4,0,.2,1);
}
.spirit-card:hover .spirit-img img { transform: scale(1.08); }
.spirit-info { padding: 1.5rem; }
.spirit-info h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: .5rem;
    color: var(--charcoal);
}
.spirit-notes {
    font-size: .875rem;
    color: var(--text-light);
    line-height: 1.65;
    margin-bottom: 1rem;
}
.spirit-tag {
    display: inline-block;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .08em;
    color: var(--coral);
    border: 1.5px solid var(--coral);
    padding: .25rem .625rem;
    border-radius: 100px;
}

/* ── Story ────────────────────────────────────────── */
.story { padding: 7rem 0; background: var(--charcoal-deep); color: var(--white); }
.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.story-images { position: relative; }
.story-img-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.story-img-main img { width: 100%; height: 100%; object-fit: cover; }
.story-img-accent {
    position: absolute;
    bottom: -2rem; right: -2rem;
    width: 55%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 4px solid var(--charcoal-deep);
    box-shadow: var(--shadow-md);
}
.story-img-accent img { width: 100%; height: 100%; object-fit: cover; }
.story-content .section-title { color: var(--white); }
.story-body {
    color: rgba(255,255,255,.72);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}
.story-stats {
    display: flex;
    gap: 2.5rem;
    margin-top: 2.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255,255,255,.1);
}
.stat { display: flex; flex-direction: column; gap: .25rem; }
.stat-number {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--coral);
}
.stat-label {
    font-size: .8rem;
    color: rgba(255,255,255,.5);
    letter-spacing: .08em;
    text-transform: uppercase;
}

/* ── Visit ────────────────────────────────────────── */
.visit { padding: 7rem 0; background: var(--neutral); }
.visit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.visit-content .section-title { color: var(--charcoal); }
.visit-body {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2rem;
}
.visit-details { display: flex; flex-direction: column; gap: 1rem; }
.visit-details li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    font-size: .95rem;
    color: var(--text);
}
.icon {
    flex-shrink: 0;
    width: 20px; height: 20px;
    color: var(--coral);
    margin-top: 2px;
}
.visit-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}
.visit-map img { width: 100%; height: 100%; object-fit: cover; }

/* ── Contact ──────────────────────────────────────── */
.contact { padding: 7rem 0; background: var(--white); }
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
}
.contact-body {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2rem;
}
.contact-direct {
    display: flex;
    gap: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--neutral-mid);
}
.contact-direct-item { display: flex; flex-direction: column; gap: .25rem; }
.contact-direct-label {
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--text-light);
}
.contact-direct-item a {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--charcoal);
    transition: var(--transition);
}
.contact-direct-item a:hover { color: var(--coral); }

.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: .5rem; }
.form-group label {
    font-size: .85rem;
    font-weight: 600;
    color: var(--charcoal);
}
.form-group input,
.form-group select,
.form-group textarea {
    font-family: var(--font-body);
    font-size: .95rem;
    padding: .875rem 1rem;
    border: 1.5px solid var(--neutral-mid);
    border-radius: var(--radius);
    background: var(--neutral);
    color: var(--text);
    transition: var(--transition);
    outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--coral);
    background: var(--white);
    box-shadow: 0 0 0 3px var(--coral-light);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-light); opacity: .6; }
.form-success {
    text-align: center;
    padding: 1rem;
    background: #E8F5E9;
    color: #2E7D32;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: .95rem;
}

/* ── Footer ───────────────────────────────────────── */
.footer {
    background: var(--charcoal-deep);
    color: rgba(255,255,255,.5);
    padding: 3rem 0;
}
.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
}
.footer-brand {
    display: flex; align-items: center; gap: .75rem;
    color: var(--white);
    font-family: var(--font-display);
}
.footer-brand .logo-mark {
    width: 36px; height: 36px;
    font-size: .65rem;
}
.footer-brand .logo-text { font-size: .9rem; }
.footer-copy { font-size: .875rem; line-height: 1.7; }
.footer-note { font-size: .75rem; color: rgba(255,255,255,.3); }

/* ── Responsive ───────────────────────────────────── */
@media (max-width: 1024px) {
    .spirits-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .nav-toggle { display: flex; }
    .nav { 
        position: fixed;
        top: 72px; left: 0; right: 0; bottom: 0;
        background: rgba(26,26,26,.97);
        backdrop-filter: blur(12px);
        padding: 2rem 1.5rem;
        transform: translateX(100%);
        transition: transform .4s cubic-bezier(.4,0,.2,1);
        z-index: 999;
    }
    .nav.open { transform: translateX(0); }
    .nav-list { flex-direction: column; align-items: stretch; gap: .5rem; }
    .nav-list a { 
        font-size: 1.1rem; 
        padding: 1rem; 
        text-align: center;
        border: 1px solid rgba(255,255,255,.08);
        border-radius: var(--radius);
    }
    .nav-list .btn-coral { margin-top: .5rem; }

    .hero-content { padding: 7rem 1.5rem 5rem; }
    .hero-actions { flex-direction: column; align-items: center; }
    .hero-actions .btn { width: 100%; max-width: 280px; }

    .spirits { padding: 5rem 0; }
    .spirits-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }

    .story { padding: 5rem 0; }
    .story-grid { grid-template-columns: 1fr; gap: 3rem; }
    .story-img-accent { position: relative; bottom: 0; right: 0; width: 100%; margin-top: 1rem; }

    .visit { padding: 5rem 0; }
    .visit-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .visit-map { order: -1; }

    .contact { padding: 5rem 0; }
    .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .form-row { grid-template-columns: 1fr; }
    .contact-direct { flex-direction: column; gap: 1.5rem; }
}

@media (max-width: 480px) {
    .hero-headline { font-size: 2.5rem; }
    .section-title { font-size: 1.75rem; }
}

/* ── Animations ───────────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity .7s cubic-bezier(.4,0,.2,1), transform .7s cubic-bezier(.4,0,.2,1);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }
