/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --emerald-950: #022c22;
    --emerald-900: #064e3b;
    --emerald-800: #065f46;
    --emerald-700: #047857;
    --emerald-600: #059669;
    --emerald-500: #10b981;
    --emerald-400: #34d399;
    --emerald-300: #6ee7b7;
    --cream-50: #fafaf5;
    --cream-100: #f5f5ea;
    --cream-200: #ececd6;
    --cream-300: #e2e2c8;
    --charcoal: #1a1a1a;
    --charcoal-700: #2d2d2d;
    --charcoal-600: #3d3d3d;
    --charcoal-500: #555555;
    --charcoal-400: #777777;
    --white: #ffffff;
    --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-sans);
    background-color: var(--cream-50);
    color: var(--charcoal);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

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

/* ===== NAVIGATION ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 24px;
    transition: all 0.5s var(--ease-out);
}

.nav.scrolled {
    background: rgba(250, 250, 245, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(6, 95, 70, 0.08);
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    transition: height 0.4s var(--ease-out);
}

.nav.scrolled .nav-inner {
    height: 64px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--emerald-800);
    transition: transform 0.3s var(--ease-spring);
}

.nav-logo:hover {
    transform: scale(1.03);
}

.nav-logo-icon {
    color: var(--emerald-600);
}

.nav-logo-text {
    letter-spacing: -0.02em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    padding: 8px 16px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--charcoal-600);
    border-radius: 100px;
    transition: all 0.3s var(--ease-out);
    letter-spacing: 0.01em;
}

.nav-link:hover {
    color: var(--emerald-700);
    background: rgba(6, 95, 70, 0.06);
}

.nav-link--cta {
    background: var(--emerald-800);
    color: var(--white) !important;
    margin-left: 8px;
}

.nav-link--cta:hover {
    background: var(--emerald-700);
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--charcoal);
    border-radius: 2px;
    transition: all 0.3s var(--ease-out);
    transform-origin: center;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 120px 24px 80px;
    overflow: hidden;
    background: linear-gradient(165deg, var(--cream-50) 0%, var(--cream-100) 50%, var(--cream-200) 100%);
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image: radial-gradient(circle at 2px 2px, var(--emerald-800) 1px, transparent 0);
    background-size: 40px 40px;
    pointer-events: none;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
    position: relative;
}

/* Floating Stat Cards */
.hero-float {
    position: absolute;
    background: var(--white);
    border-radius: 20px;
    padding: 20px 24px;
    box-shadow:
        0 4px 6px -1px rgba(0, 0, 0, 0.05),
        0 20px 50px -12px rgba(6, 95, 70, 0.12);
    z-index: 10;
    animation: float 6s ease-in-out infinite;
}

.hero-float--left {
    top: 15%;
    left: -40px;
    animation-delay: 0s;
}

.hero-float--right {
    top: 25%;
    right: -30px;
    animation-delay: -2s;
}

.hero-float--bottom {
    bottom: 10%;
    left: 5%;
    animation-delay: -4s;
}

.float-stat-number {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--emerald-700);
    line-height: 1;
    margin-bottom: 4px;
}

.float-stat-label {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--charcoal-500);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    line-height: 1.4;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
}

/* Hero Content */
.hero-content {
    max-width: 540px;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--emerald-700);
    margin-bottom: 28px;
}

.hero-eyebrow-line {
    width: 32px;
    height: 2px;
    background: var(--emerald-500);
    border-radius: 2px;
}

.hero-headline {
    font-family: var(--font-serif);
    font-size: clamp(2.75rem, 5.5vw, 4.5rem);
    font-weight: 900;
    line-height: 1.05;
    color: var(--charcoal);
    margin-bottom: 24px;
    letter-spacing: -0.03em;
}

.hero-em {
    font-style: italic;
    color: var(--emerald-700);
    font-weight: 700;
}

.hero-subheadline {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--charcoal-500);
    margin-bottom: 40px;
    max-width: 460px;
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: 100px;
    transition: all 0.3s var(--ease-out);
    letter-spacing: 0.01em;
}

.btn--primary {
    background: var(--emerald-800);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(6, 95, 70, 0.25);
}

.btn--primary:hover {
    background: var(--emerald-700);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(6, 95, 70, 0.3);
}

.btn--ghost {
    background: transparent;
    color: var(--charcoal);
    border: 1.5px solid var(--charcoal-300);
}

.btn--ghost:hover {
    border-color: var(--emerald-700);
    color: var(--emerald-700);
    transform: translateY(-2px);
}

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

/* Hero Image */
.hero-image-wrap {
    position: relative;
}

.hero-image-frame {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 32px 64px -16px rgba(6, 95, 70, 0.2);
    aspect-ratio: 600/750;
}

.hero-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease-out);
}

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

.hero-image-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    background: var(--emerald-500);
    border-radius: 20px;
    opacity: 0.15;
    z-index: -1;
}

/* Scroll Indicator */
.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--charcoal-400);
    animation: scrollBounce 2s ease-in-out infinite;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--charcoal-400), transparent);
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(6px); }
}

/* ===== SECTION HEADERS ===== */
.section-eyebrow {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--emerald-700);
    margin-bottom: 16px;
}

.section-headline {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 900;
    line-height: 1.1;
    color: var(--charcoal);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.section-headline em {
    font-style: italic;
    color: var(--emerald-700);
}

.section-sub {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--charcoal-500);
    max-width: 520px;
}

/* ===== FLAVORS ===== */
.flavors {
    padding: 120px 0;
    background: var(--white);
}

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

.flavors .section-sub {
    margin: 0 auto;
}

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

.flavor-card {
    border-radius: 20px;
    overflow: hidden;
    background: var(--cream-50);
    transition: all 0.4s var(--ease-out);
    cursor: default;
}

.flavor-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 48px -16px rgba(6, 95, 70, 0.15);
}

.flavor-card-img {
    position: relative;
    overflow: hidden;
    aspect-ratio: 400/300;
}

.flavor-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out);
}

.flavor-card:hover .flavor-card-img img {
    transform: scale(1.08);
}

.flavor-card-tag {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--white);
    color: var(--emerald-800);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 6px 14px;
    border-radius: 100px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

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

.flavor-card-name {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.flavor-card-desc {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--charcoal-500);
}

.flavors-note {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    background: var(--cream-100);
    border-radius: 12px;
    font-size: 0.9375rem;
    color: var(--charcoal-600);
}

.flavors-note svg {
    color: var(--emerald-600);
    flex-shrink: 0;
}

/* ===== ABOUT ===== */
.about {
    padding: 120px 0;
    background: var(--cream-50);
}

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

.about-image-col {
    position: relative;
}

.about-image-main {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 32px 64px -24px rgba(6, 95, 70, 0.15);
    aspect-ratio: 600/700;
}

.about-image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-image-small {
    position: absolute;
    bottom: -40px;
    right: -40px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 24px 48px -16px rgba(6, 95, 70, 0.2);
    border: 4px solid var(--cream-50);
    aspect-ratio: 400/300;
    width: 55%;
}

.about-image-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-content-col {
    padding-top: 40px;
}

.about-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, var(--emerald-500), var(--emerald-300));
    border-radius: 3px;
    margin-bottom: 32px;
}

.about-text {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--charcoal-500);
    margin-bottom: 20px;
}

.about-stats {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 48px;
    padding-top: 40px;
    border-top: 1px solid var(--cream-300);
}

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

.about-stat-num {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--emerald-700);
    line-height: 1;
}

.about-stat-label {
    font-size: 0.8125rem;
    color: var(--charcoal-400);
    line-height: 1.4;
}

.about-stat--divider {
    padding: 0 8px;
    color: var(--emerald-400);
}

/* ===== EXPERIENCE ===== */
.experience {
    padding: 120px 0;
    background: var(--emerald-900);
    position: relative;
    overflow: hidden;
}

.experience-bg {
    position: absolute;
    inset: 0;
    opacity: 0.05;
    background-image: radial-gradient(circle at 3px 3px, var(--emerald-400) 1px, transparent 0);
    background-size: 32px 32px;
    pointer-events: none;
}

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

.experience-quote {
    position: relative;
}

.experience-quote-mark {
    position: absolute;
    top: -20px;
    left: -10px;
    color: var(--emerald-400);
}

.experience-quote blockquote {
    font-family: var(--font-serif);
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 400;
    font-style: italic;
    line-height: 1.5;
    color: var(--cream-100);
    margin-bottom: 24px;
}

.experience-attribution {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--emerald-400);
    letter-spacing: 0.04em;
}

.exp-feature {
    display: flex;
    gap: 20px;
    padding: 28px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.exp-feature:first-child {
    padding-top: 0;
}

.exp-feature:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.exp-feature-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(52, 211, 153, 0.1);
    border-radius: 12px;
    color: var(--emerald-400);
}

.exp-feature-text h4 {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--cream-50);
    margin-bottom: 6px;
}

.exp-feature-text p {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--emerald-300);
    opacity: 0.8;
}

/* ===== VISIT ===== */
.visit {
    padding: 120px 0;
    background: var(--white);
}

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

.visit .section-sub {
    margin: 0 auto;
}

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

.visit-info {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.visit-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 32px 0;
    border-bottom: 1px solid var(--cream-300);
}

.visit-card:first-child {
    padding-top: 0;
}

.visit-card:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.visit-card-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cream-100);
    border-radius: 14px;
    color: var(--emerald-700);
    transition: all 0.3s var(--ease-out);
}

.visit-card:hover .visit-card-icon {
    background: var(--emerald-800);
    color: var(--white);
    transform: scale(1.05);
}

.visit-card-title {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 6px;
}

.visit-card-text {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--charcoal-500);
}

.visit-card-text a {
    color: var(--emerald-700);
    transition: color 0.2s;
}

.visit-card-text a:hover {
    color: var(--emerald-500);
    text-decoration: underline;
}

.visit-card-text span {
    display: block;
}

.visit-map {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 16px 48px -16px rgba(0,0,0,0.1);
    min-height: 400px;
}

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

/* ===== CONTACT ===== */
.contact {
    padding: 120px 0;
    background: var(--cream-50);
}

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

.contact-text {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--charcoal-500);
    margin-bottom: 36px;
}

.contact-direct {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-direct-item {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9375rem;
    color: var(--charcoal-600);
    transition: color 0.2s;
}

.contact-direct-item:hover {
    color: var(--emerald-700);
}

.contact-direct-item svg {
    color: var(--emerald-600);
    flex-shrink: 0;
}

.contact-direct-item a {
    color: inherit;
    transition: color 0.2s;
}

.contact-direct-item a:hover {
    color: var(--emerald-600);
    text-decoration: underline;
}

/* Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

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

.form-input {
    width: 100%;
    padding: 14px 18px;
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    color: var(--charcoal);
    background: var(--white);
    border: 1.5px solid var(--cream-300);
    border-radius: 12px;
    outline: none;
    transition: all 0.3s var(--ease-out);
    appearance: none;
}

.form-input:focus {
    border-color: var(--emerald-500);
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.1);
}

.form-input::placeholder {
    color: var(--charcoal-400);
}

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

.form-select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23777777' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
}

.form-success {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 40px;
    background: var(--white);
    border-radius: 20px;
    border: 1px solid var(--cream-300);
}

.form-success.show {
    display: flex;
}

.form-success-icon {
    color: var(--emerald-500);
    margin-bottom: 20px;
}

.form-success-title {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 12px;
}

.form-success-text {
    font-size: 1rem;
    color: var(--charcoal-500);
    line-height: 1.6;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--charcoal);
    color: var(--cream-100);
    padding: 80px 0 0;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand {
    max-width: 320px;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--cream-50);
    margin-bottom: 16px;
}

.footer-logo-icon {
    color: var(--emerald-400);
}

.footer-tagline {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--charcoal-500);
}

.footer-links {
    display: flex;
    gap: 48px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col-title {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--emerald-400);
    margin-bottom: 4px;
}

.footer-col a {
    font-size: 0.9375rem;
    color: var(--charcoal-400);
    transition: color 0.2s;
}

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

.footer-col span {
    font-size: 0.9375rem;
    color: var(--charcoal-400);
    line-height: 1.6;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    font-size: 0.8125rem;
    color: var(--charcoal-500);
}

.footer-location {
    color: var(--charcoal-500);
}

/* ===== ANIMATIONS ===== */
[data-aos] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

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

[data-aos].aos-delay-1 { transition-delay: 0.1s; }
[data-aos].aos-delay-2 { transition-delay: 0.2s; }
[data-aos].aos-delay-3 { transition-delay: 0.3s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }

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

    .hero-float--left {
        left: 0;
    }

    .hero-float--right {
        right: 0;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .about-image-small {
        right: -20px;
        bottom: -20px;
    }

    .experience-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

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

    .visit-map {
        min-height: 300px;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--cream-50);
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 32px 32px;
        gap: 8px;
        box-shadow: -16px 0 48px rgba(0,0,0,0.1);
        transition: right 0.4s var(--ease-out);
    }

    .nav-links.open {
        right: 0;
    }

    .nav-link {
        width: 100%;
        padding: 12px 16px;
        font-size: 1rem;
    }

    .nav-link--cta {
        margin-left: 0;
        margin-top: 8px;
        text-align: center;
        width: 100%;
    }

    .nav-toggle {
        display: flex;
    }

    .hero {
        padding: 100px 24px 80px;
        min-height: auto;
    }

    .hero-float {
        display: none;
    }

    .hero-headline {
        font-size: clamp(2.25rem, 8vw, 3.5rem);
    }

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

    .flavors {
        padding: 80px 0;
    }

    .about {
        padding: 80px 0;
    }

    .about-image-small {
        display: none;
    }

    .about-stats {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .about-stat--divider {
        display: none;
    }

    .experience {
        padding: 80px 0;
    }

    .visit {
        padding: 80px 0;
    }

    .contact {
        padding: 80px 0;
    }

    .footer-top {
        grid-template-columns: 1fr;
    }

    .footer-links {
        flex-direction: column;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .hero-scroll {
        display: none;
    }
}

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

    .hero {
        padding: 90px 20px 60px;
    }

    .hero-actions {
        flex-direction: column;
    }

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

    .flavor-card-body {
        padding: 20px 22px 24px;
    }
}

/* Mobile overlay */
.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.3);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s;
}

.nav-overlay.show {
    display: block;
    opacity: 1;
}
