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

:root {
    --teal-900: #0a3d3d;
    --teal-800: #0d4f4f;
    --teal-700: #116363;
    --teal-600: #1a7a7a;
    --teal-500: #239494;
    --teal-100: #d0e8e8;
    --teal-50:  #eaf5f5;

    --slate-950: #0c1520;
    --slate-900: #132030;
    --slate-800: #1e3044;
    --slate-700: #2a4058;
    --slate-600: #3d556e;
    --slate-500: #5a7088;
    --slate-400: #7e93a8;
    --slate-300: #a8b8c8;
    --slate-200: #c8d4e0;
    --slate-100: #e2eaf2;
    --slate-50:  #f0f4f8;

    --cream: #f7f4ef;
    --cream-dark: #efe8dd;
    --warm-white: #faf8f5;
    --gold: #c8a87a;
    --gold-light: #d4b896;

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

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

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

    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: var(--font-sans);
    font-weight: 400;
    line-height: 1.7;
    color: var(--slate-800);
    background-color: var(--warm-white);
    -webkit-font-smoothing: antialiased;
}

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

a { color: var(--teal-600); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--teal-500); }

.skip-link {
    position: absolute;
    top: -100%;
    left: var(--space-sm);
    background: var(--teal-900);
    color: #fff;
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
    z-index: 200;
    font-size: 0.875rem;
}
.skip-link:focus { top: var(--space-sm); }

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

/* ── Typography ─────────────────────────────────────────── */
.section-eyebrow {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--teal-600);
    margin-bottom: var(--space-sm);
}

.section-headline {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 400;
    line-height: 1.15;
    color: var(--slate-900);
    margin-bottom: var(--space-lg);
}

.accent-italic {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 300;
    color: var(--teal-700);
}

/* ── Buttons ────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    padding: 0.875rem 1.75rem;
    border-radius: var(--radius-sm);
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
}

.btn--primary {
    background: var(--teal-800);
    color: #fff;
    border-color: var(--teal-800);
}
.btn--primary:hover {
    background: var(--teal-700);
    border-color: var(--teal-700);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(13, 79, 79, 0.25);
}

.btn--ghost {
    background: transparent;
    color: var(--teal-700);
    border-color: var(--teal-200);
}
.btn--ghost:hover {
    background: var(--teal-50);
    border-color: var(--teal-500);
    color: var(--teal-800);
}

.btn--outline {
    background: transparent;
    color: var(--slate-700);
    border-color: var(--slate-300);
}
.btn--outline:hover {
    border-color: var(--teal-500);
    color: var(--teal-700);
}

.btn--sm { padding: 0.625rem 1.25rem; font-size: 0.8125rem; }
.btn--full { width: 100%; justify-content: center; }

/* ── Header ─────────────────────────────────────────────── */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(250, 248, 245, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--slate-100);
    transition: box-shadow var(--transition);
}

.site-header.scrolled {
    box-shadow: 0 2px 24px rgba(12, 21, 32, 0.06);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    color: var(--slate-900);
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 500;
    text-decoration: none;
    transition: color var(--transition);
}
.logo:hover { color: var(--teal-700); }
.logo-mark { color: var(--teal-700); }

.main-nav ul {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    list-style: none;
}

.main-nav a {
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: var(--slate-600);
    text-decoration: none;
    position: relative;
    padding: 0.25rem 0;
}
.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--teal-600);
    transition: width var(--transition);
}
.main-nav a:hover { color: var(--teal-700); }
.main-nav a:hover::after { width: 100%; }

/* Nav Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 110;
}
.nav-toggle-line {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--slate-700);
    transition: all var(--transition);
    transform-origin: center;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(2) {
    opacity: 0;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
}

/* ── Hero ───────────────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    background: var(--cream);
    overflow: hidden;
}

.hero-pattern {
    position: absolute;
    inset: 0;
    color: var(--teal-900);
    pointer-events: none;
    opacity: 0.5;
}

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

.hero-content { max-width: 520px; }

.hero-eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--teal-600);
    margin-bottom: var(--space-md);
}

.hero-headline {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 5vw, 4.25rem);
    font-weight: 300;
    line-height: 1.08;
    color: var(--slate-950);
    margin-bottom: var(--space-lg);
    letter-spacing: -0.01em;
}

.hero-desc {
    font-size: 1.125rem;
    line-height: 1.75;
    color: var(--slate-600);
    margin-bottom: var(--space-xl);
    max-width: 440px;
}

.hero-actions {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

/* Hero Image Stack */
.hero-image-stack {
    position: relative;
    height: 700px;
}

.hero-img {
    position: absolute;
    overflow: hidden;
    border-radius: var(--radius-md);
    box-shadow: 0 20px 60px rgba(12, 21, 32, 0.15);
}

.hero-img--primary {
    width: 340px;
    height: 460px;
    top: 40px;
    right: 40px;
    z-index: 1;
}
.hero-img--primary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-img--secondary {
    width: 260px;
    height: 200px;
    bottom: 60px;
    right: 180px;
    z-index: 2;
    border: 4px solid var(--cream);
}
.hero-img--secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-seal {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-serif);
    font-size: 0.875rem;
    font-style: italic;
    color: var(--slate-500);
    background: var(--warm-white);
    padding: 0.75rem 1.25rem;
    border-radius: var(--radius-sm);
    box-shadow: 0 4px 16px rgba(12, 21, 32, 0.08);
}
.hero-seal svg { opacity: 0.6; }

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

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

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: 560px;
    object-fit: cover;
    border-radius: var(--radius-md);
    box-shadow: 0 20px 60px rgba(12, 21, 32, 0.12);
}

.about-image-accent {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 120px;
    height: 120px;
    border: 2px solid var(--teal-200);
    border-radius: var(--radius-md);
    z-index: -1;
}

.about-content { max-width: 480px; }

.about-content p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--slate-600);
    margin-bottom: var(--space-md);
}

.about-stats {
    display: flex;
    gap: var(--space-xl);
    margin-top: var(--space-xl);
    padding-top: var(--space-lg);
    border-top: 1px solid var(--slate-200);
}

.stat { display: flex; flex-direction: column; gap: 0.25rem; }

.stat-number {
    font-family: var(--font-serif);
    font-size: 2.75rem;
    font-weight: 400;
    color: var(--teal-800);
    line-height: 1;
}

.stat-label {
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--slate-500);
}

/* ── Tasting ────────────────────────────────────────────── */
.tasting {
    padding: var(--space-3xl) 0;
    background: var(--slate-950);
    color: #fff;
}

.tasting-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto var(--space-2xl);
}

.tasting .section-eyebrow { color: var(--gold); }
.tasting .section-headline { color: #fff; }

.tasting-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
}

.tasting-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    transition: all var(--transition);
}
.tasting-card:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
}

.tasting-card-icon {
    color: var(--gold);
    margin-bottom: var(--space-md);
    opacity: 0.85;
}

.tasting-card h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 400;
    color: #fff;
    margin-bottom: var(--space-sm);
}

.tasting-card p {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--slate-400);
}

/* ── Space ──────────────────────────────────────────────── */
.space {
    padding: var(--space-3xl) 0;
    background: var(--cream);
}

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

.space-text { max-width: 480px; }
.space-text p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--slate-600);
    margin-bottom: var(--space-md);
}

.space-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-sm);
}

.space-img { overflow: hidden; border-radius: var(--radius-md); }

.space-img--1 img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.space-img--2 img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.space-img:hover img { transform: scale(1.03); }

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

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

.visit-info { max-width: 480px; }
.visit-info .section-headline { margin-bottom: var(--space-lg); }

.visit-details {
    font-style: normal;
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--slate-700);
    margin-bottom: var(--space-lg);
}

.visit-phone {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--teal-700);
    font-weight: 500;
    text-decoration: none;
    transition: color var(--transition);
}
.visit-phone:hover { color: var(--teal-500); }
.visit-phone svg { opacity: 0.7; }

.visit-hours h3 {
    font-family: var(--font-serif);
    font-size: 1.375rem;
    font-weight: 400;
    color: var(--slate-900);
    margin-bottom: var(--space-md);
}

.visit-hours ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.visit-hours li {
    display: flex;
    justify-content: space-between;
    gap: var(--space-md);
    font-size: 0.9375rem;
    padding-bottom: 0.625rem;
    border-bottom: 1px solid var(--slate-100);
}
.visit-hours li span:first-child { color: var(--slate-600); }
.visit-hours li span:last-child { color: var(--slate-800); font-weight: 500; }

.hours-note {
    margin-top: var(--space-sm);
    font-size: 0.8125rem;
    color: var(--slate-500);
    font-style: italic;
}

/* Map */
.visit-map {
    background: var(--slate-100);
    border-radius: var(--radius-lg);
    overflow: hidden;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-placeholder {
    text-align: center;
    padding: var(--space-2xl);
    color: var(--slate-500);
}
.map-placeholder svg {
    color: var(--teal-600);
    margin-bottom: var(--space-md);
    opacity: 0.6;
}
.map-placeholder p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: var(--space-md);
    color: var(--slate-600);
}

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

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

.contact-text { max-width: 440px; }
.contact-text .section-headline { margin-bottom: var(--space-md); }
.contact-text p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--slate-600);
}

.contact-form {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: 0 8px 40px rgba(12, 21, 32, 0.06);
    border: 1px solid var(--slate-100);
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: var(--space-md);
}

.form-group label {
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--slate-600);
}

.form-group input,
.form-group select,
.form-group textarea {
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    padding: 0.75rem 1rem;
    border: 1.5px solid var(--slate-200);
    border-radius: var(--radius-sm);
    background: var(--warm-white);
    color: var(--slate-800);
    transition: border-color var(--transition), box-shadow var(--transition);
    outline: none;
    width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--teal-500);
    box-shadow: 0 0 0 3px rgba(35, 148, 148, 0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--slate-400); }
.form-group textarea { resize: vertical; min-height: 120px; }

.form-success {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: var(--space-sm);
    font-size: 0.9375rem;
    color: var(--teal-700);
    font-weight: 500;
}
.form-success svg { flex-shrink: 0; }

/* ── Footer ─────────────────────────────────────────────── */
.site-footer {
    background: var(--slate-950);
    color: var(--slate-400);
    padding: var(--space-2xl) 0;
}

.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-lg);
    text-align: center;
}

.footer-brand .logo { color: #fff; margin-bottom: var(--space-sm); }
.footer-brand p {
    font-size: 0.875rem;
    line-height: 1.7;
    color: var(--slate-500);
}

.footer-nav ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-md);
    list-style: none;
}

.footer-nav a {
    font-size: 0.875rem;
    color: var(--slate-400);
    text-decoration: none;
    transition: color var(--transition);
}
.footer-nav a:hover { color: #fff; }

.footer-copy {
    font-size: 0.8125rem;
    color: var(--slate-600);
}

/* ── Scroll Animations ──────────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr; gap: var(--space-xl); }
    .hero-content { max-width: 100%; }
    .hero-image-stack { height: 480px; margin-left: auto; }
    .hero-img--primary { width: 260px; height: 360px; right: 20px; top: 20px; }
    .hero-img--secondary { width: 200px; height: 160px; right: 120px; bottom: 40px; }

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

    .about-grid,
    .space-layout,
    .visit-grid,
    .contact-layout { grid-template-columns: 1fr; gap: var(--space-xl); }

    .about-content,
    .space-text,
    .visit-info,
    .contact-text { max-width: 100%; }
}

@media (max-width: 768px) {
    :root {
        --space-xl: 3rem;
        --space-2xl: 4rem;
        --space-3xl: 5rem;
    }

    .nav-toggle { display: flex; }

    .main-nav {
        position: fixed;
        top: 0;
        right: 0;
        width: 280px;
        height: 100vh;
        background: var(--warm-white);
        box-shadow: -8px 0 32px rgba(12, 21, 32, 0.12);
        padding: 100px var(--space-lg) var(--space-lg);
        transform: translateX(100%);
        transition: transform var(--transition);
        z-index: 105;
    }
    .main-nav.open { transform: translateX(0); }
    .main-nav ul {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-md);
    }
    .main-nav a { font-size: 1.0625rem; }

    .hero { padding: 100px 0 60px; min-height: auto; }
    .hero-image-stack { display: none; }
    .hero-headline { font-size: clamp(2rem, 8vw, 3rem); }

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

    .space-images { grid-template-columns: 1fr; }
    .space-img--1 img,
    .space-img--2 img { height: 300px; }

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

    .about-stats { flex-wrap: wrap; gap: var(--space-md); }

    .footer-inner { gap: var(--space-md); }
    .footer-nav ul { gap: var(--space-sm); }
}

@media (max-width: 480px) {
    .container { padding: 0 var(--space-md); }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; justify-content: center; }
    .contact-form { padding: var(--space-md); }
}
