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

:root {
    --emerald: #047857;
    --emerald-light: #065f46;
    --emerald-dark: #064e3b;
    --cream: #F7F5EB;
    --cream-light: #FBF9F3;
    --cream-dark: #EDE9DB;
    --text: #1a1a1a;
    --text-light: #4a4a4a;
    --text-muted: #8a8a8a;
    --white: #ffffff;
    --line: rgba(4, 120, 87, 0.12);
    --line-strong: rgba(4, 120, 87, 0.25);
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.04);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.06);
    --radius: 12px;
    --radius-lg: 20px;

    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;
}

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

body {
    font-family: var(--font-body);
    font-weight: 300;
    color: var(--text);
    background-color: var(--cream-light);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

a {
    color: inherit;
    text-decoration: none;
}

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

.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    background: var(--emerald);
    color: var(--white);
    padding: 8px 16px;
    border-radius: var(--radius);
    z-index: 1000;
    font-size: 0.875rem;
}

.skip-link:focus {
    top: 16px;
}

/* ─── Header ─── */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(251, 249, 243, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--line);
    transition: box-shadow 0.3s ease;
}

.site-header.scrolled {
    box-shadow: var(--shadow-sm);
}

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

.logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--emerald);
    letter-spacing: -0.01em;
}

.logo-icon {
    color: var(--emerald);
    flex-shrink: 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 36px;
}

.nav-menu a {
    font-size: 0.8125rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-light);
    position: relative;
    transition: color 0.25s ease;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--emerald);
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: var(--emerald);
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: var(--text);
}

/* ─── Hero ─── */
.hero {
    padding-top: 72px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    flex: 1;
    padding-top: 40px;
    padding-bottom: 40px;
}

.hero-eyebrow {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--emerald);
    margin-bottom: 20px;
}

.hero-headline {
    font-family: var(--font-display);
    font-size: clamp(2.75rem, 5vw, 4.5rem);
    font-weight: 300;
    line-height: 1.08;
    letter-spacing: -0.02em;
    color: var(--text);
    margin-bottom: 28px;
}

.hero-headline .accent {
    color: var(--emerald);
    font-style: italic;
}

.hero-sub {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: var(--text-light);
    max-width: 440px;
    margin-bottom: 40px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 14px 28px;
    border-radius: 100px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--emerald);
    color: var(--white);
    border-color: var(--emerald);
}

.btn-primary:hover {
    background: var(--emerald-light);
    border-color: var(--emerald-light);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(4, 120, 87, 0.25);
}

.btn-ghost {
    background: transparent;
    color: var(--text);
    border-color: var(--line-strong);
}

.btn-ghost:hover {
    border-color: var(--emerald);
    color: var(--emerald);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.hero-image {
    position: relative;
}

.image-frame {
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/5;
    box-shadow: var(--shadow-md);
}

.image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.image-frame:hover img {
    transform: scale(1.02);
}

.hero-accent {
    position: absolute;
    bottom: -24px;
    left: -24px;
    color: var(--emerald);
    opacity: 0.2;
    z-index: -1;
}

.hero-line {
    height: 1px;
    background: linear-gradient(to right, var(--emerald), transparent);
    opacity: 0.2;
    margin: 0 24px;
}

/* ─── Section shared ─── */
.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--emerald);
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 300;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--text);
    margin-bottom: 24px;
}

.section-title .accent {
    color: var(--emerald);
    font-style: italic;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 480px;
}

/* ─── About ─── */
.about {
    padding: 120px 0;
}

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

.about-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.about-image:hover img {
    transform: scale(1.02);
}

.about-content p {
    font-size: 1rem;
    line-height: 1.85;
    color: var(--text-light);
    margin-bottom: 20px;
}

.about-content p:last-of-type {
    margin-bottom: 40px;
}

.about-content em {
    color: var(--emerald);
    font-style: italic;
    font-family: var(--font-display);
    font-size: 1.1em;
}

.about-stats {
    display: flex;
    gap: 32px;
    align-items: center;
    padding-top: 32px;
    border-top: 1px solid var(--line);
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 400;
    color: var(--emerald);
    line-height: 1;
}

.stat-label {
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.stat-divider {
    width: 1px;
    height: 48px;
    background: var(--line-strong);
}

/* ─── Flavors ─── */
.flavors {
    padding: 100px 0 120px;
    background: var(--cream);
}

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

.section-header .section-subtitle {
    margin: 0 auto;
}

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

.flavor-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 36px 32px;
    border: 1px solid var(--line);
    position: relative;
    transition: all 0.35s ease;
}

.flavor-card:hover {
    border-color: var(--line-strong);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.flavor-number {
    font-family: var(--font-display);
    font-size: 0.875rem;
    color: var(--emerald);
    opacity: 0.4;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
}

.flavor-name {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--text);
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}

.flavor-desc {
    font-size: 0.875rem;
    line-height: 1.75;
    color: var(--text-muted);
}

.flavor-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 0.625rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--emerald);
    background: rgba(4, 120, 87, 0.08);
    padding: 4px 10px;
    border-radius: 100px;
}

.flavors-note {
    text-align: center;
    font-size: 0.875rem;
    color: var(--text-muted);
    font-style: italic;
    font-family: var(--font-display);
    font-size: 1.125rem;
}

/* ─── Visit ─── */
.visit {
    padding: 120px 0;
}

.visit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.visit-address {
    font-style: normal;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: 28px;
    margin-bottom: 40px;
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-light);
}

.visit-address svg {
    flex-shrink: 0;
    margin-top: 4px;
    color: var(--emerald);
}

.visit-hours {
    border-top: 1px solid var(--line);
    padding-top: 28px;
    margin-bottom: 40px;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    padding: 10px 0;
    border-bottom: 1px solid var(--line);
    font-size: 0.9375rem;
}

.hours-row:last-of-type {
    border-bottom: none;
}

.hours-row span:first-child {
    color: var(--text-light);
}

.hours-row span:last-child {
    color: var(--text);
    font-weight: 400;
}

.visit-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9375rem;
    color: var(--text-light);
    transition: color 0.25s ease;
}

.contact-link:hover {
    color: var(--emerald);
}

.visit-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    aspect-ratio: 4/3;
}

.visit-map iframe {
    width: 100%;
    height: 100%;
}

/* ─── Contact ─── */
.contact {
    padding: 100px 0 120px;
    background: var(--cream);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-text p {
    font-size: 1rem;
    line-height: 1.85;
    color: var(--text-light);
    margin-top: 20px;
}

.contact-form-wrap {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 44px;
    border: 1px solid var(--line);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 300;
    color: var(--text);
    background: var(--cream-light);
    border: 1px solid var(--line-strong);
    border-radius: var(--radius);
    padding: 12px 16px;
    outline: none;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
    -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--emerald);
    box-shadow: 0 0 0 3px rgba(4, 120, 87, 0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group select {
    cursor: pointer;
}

.form-success {
    text-align: center;
    padding: 48px 24px;
}

.form-success svg {
    margin: 0 auto 20px;
}

.form-success h3 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 400;
    color: var(--text);
    margin-bottom: 8px;
}

.form-success p {
    font-size: 0.9375rem;
    color: var(--text-muted);
}

/* ─── Footer ─── */
.site-footer {
    padding: 60px 0 40px;
    background: var(--emerald-dark);
    color: var(--cream);
}

.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 32px;
}

.footer-brand .logo {
    color: var(--cream);
    margin-bottom: 12px;
}

.footer-brand .logo-icon {
    color: var(--cream);
}

.footer-brand p {
    font-size: 0.875rem;
    color: rgba(247, 245, 235, 0.6);
    max-width: 300px;
}

.footer-links {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    font-size: 0.8125rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(247, 245, 235, 0.6);
    transition: color 0.25s ease;
}

.footer-links a:hover {
    color: var(--cream);
}

.footer-copy {
    font-size: 0.8125rem;
    color: rgba(247, 245, 235, 0.35);
    line-height: 1.8;
}

/* ─── Animations ─── */
[data-animate] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

[data-animate].visible {
    opacity: 1;
    transform: translateY(0);
}

[data-animate][data-delay="80"] { transition-delay: 0.08s; }
[data-animate][data-delay="160"] { transition-delay: 0.16s; }
[data-animate][data-delay="200"] { transition-delay: 0.2s; }
[data-animate][data-delay="240"] { transition-delay: 0.24s; }
[data-animate][data-delay="320"] { transition-delay: 0.32s; }
[data-animate][data-delay="400"] { transition-delay: 0.4s; }

/* ─── Responsive ─── */
@media (max-width: 1024px) {
    .hero-inner {
        gap: 40px;
    }

    .about-grid,
    .visit-grid,
    .contact-grid {
        gap: 48px;
    }

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

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .nav-menu {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(251, 249, 243, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        gap: 0;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        border-bottom: 1px solid transparent;
        transition: max-height 0.4s ease, padding 0.4s ease, border-color 0.4s ease;
    }

    .nav-menu.open {
        max-height: 320px;
        padding: 24px 0;
        border-bottom: 1px solid var(--line);
    }

    .nav-menu li {
        width: 100%;
        text-align: center;
    }

    .nav-menu a {
        display: block;
        padding: 14px 24px;
        font-size: 0.9375rem;
    }

    .nav-menu a::after {
        display: none;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
        padding-bottom: 60px;
    }

    .hero-sub {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-image {
        order: -1;
        max-width: 480px;
        margin: 0 auto;
    }

    .about-grid,
    .visit-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-image {
        aspect-ratio: 16/9;
    }

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

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

    .contact-form-wrap {
        padding: 28px;
    }

    .about-stats {
        flex-wrap: wrap;
        gap: 24px;
    }

    .stat-divider {
        display: none;
    }

    .footer-inner {
        gap: 24px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }

    .hero-headline {
        font-size: 2.25rem;
    }

    .btn {
        padding: 12px 22px;
        font-size: 0.75rem;
    }

    .flavor-card {
        padding: 28px 24px;
    }
}
