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

:root {
    --color-green: #1a3c34;
    --color-green-light: #2a5a4a;
    --color-green-muted: #3d7a64;
    --color-offwhite: #f5f3ef;
    --color-cream: #faf8f5;
    --color-white: #ffffff;
    --color-text: #1a1a1a;
    --color-text-light: #5a5a5a;
    --color-text-muted: #8a8a8a;
    --color-line: #e5e2dc;
    --color-line-light: #f0ede7;
    --font-serif: 'Instrument Serif', Georgia, serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --fs-xs: clamp(0.7rem, 0.65rem + 0.25vw, 0.8rem);
    --fs-sm: clamp(0.8rem, 0.75rem + 0.3vw, 0.9rem);
    --fs-base: clamp(0.9rem, 0.85rem + 0.3vw, 1rem);
    --fs-md: clamp(1rem, 0.9rem + 0.4vw, 1.15rem);
    --fs-lg: clamp(1.1rem, 0.95rem + 0.6vw, 1.4rem);
    --fs-xl: clamp(1.5rem, 1.2rem + 1vw, 2rem);
    --fs-2xl: clamp(2rem, 1.5rem + 2vw, 3rem);
    --fs-3xl: clamp(2.5rem, 1.8rem + 3vw, 4rem);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --shadow-sm: 0 1px 3px rgba(26, 60, 52, 0.06);
    --shadow-md: 0 4px 20px rgba(26, 60, 52, 0.08);
    --shadow-lg: 0 8px 40px rgba(26, 60, 52, 0.12);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: var(--font-sans);
    font-size: var(--fs-base);
    font-weight: 300;
    line-height: 1.7;
    color: var(--color-text);
    background-color: var(--color-cream);
}

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

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

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

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

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

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

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-serif);
    font-size: var(--fs-lg);
    color: var(--color-green);
    letter-spacing: -0.01em;
}

.nav-logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: var(--color-green);
    border-radius: 50%;
    color: var(--color-offwhite);
}

.nav-logo-icon svg {
    width: 16px;
    height: 16px;
}

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

.nav-link {
    font-size: var(--fs-sm);
    font-weight: 400;
    color: var(--color-text-light);
    letter-spacing: 0.01em;
    transition: color var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-green);
    transition: width var(--transition);
}

.nav-link:hover {
    color: var(--color-green);
}

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

.nav-link--cta {
    padding: 8px 20px;
    background: var(--color-green);
    color: var(--color-offwhite) !important;
    border-radius: 100px;
    font-weight: 500;
    transition: background var(--transition), transform var(--transition);
}

.nav-link--cta::after {
    display: none;
}

.nav-link--cta:hover {
    background: var(--color-green-light);
    transform: translateY(-1px);
}

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

.nav-toggle-line {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--color-text);
    transition: var(--transition);
    transform-origin: center;
}

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

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

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

/* ─── HERO ─── */
.hero {
    padding: 140px 24px 80px;
    background: var(--color-cream);
    overflow: hidden;
}

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

.hero-tag {
    font-size: var(--fs-xs);
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-green-muted);
    margin-bottom: 20px;
}

.hero-headline {
    font-family: var(--font-serif);
    font-size: var(--fs-3xl);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--color-green);
    margin-bottom: 24px;
}

.hero-em {
    font-style: italic;
    color: var(--color-green-muted);
}

.hero-desc {
    font-size: var(--fs-md);
    color: var(--color-text-light);
    line-height: 1.7;
    max-width: 480px;
    margin-bottom: 36px;
}

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

/* ─── BUTTONS ─── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: var(--fs-sm);
    font-weight: 500;
    border-radius: 100px;
    letter-spacing: 0.01em;
    transition: all var(--transition);
    white-space: nowrap;
}

.btn--primary {
    background: var(--color-green);
    color: var(--color-offwhite);
}

.btn--primary:hover {
    background: var(--color-green-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn--ghost {
    background: transparent;
    color: var(--color-green);
    border: 1px solid var(--color-green);
}

.btn--ghost:hover {
    background: var(--color-green);
    color: var(--color-offwhite);
    transform: translateY(-2px);
}

.btn--full {
    width: 100%;
}

/* ─── HERO CARDS ─── */
.hero-visual {
    position: relative;
    min-height: 560px;
}

.hero-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    background: var(--color-white);
}

.hero-card--main {
    width: 100%;
    aspect-ratio: 5/6;
}

.hero-card--main img,
.hero-card--food img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-card--food {
    position: absolute;
    bottom: -30px;
    left: -40px;
    width: 55%;
    aspect-ratio: 3/2;
    box-shadow: var(--shadow-lg);
    z-index: 2;
}

.stat-card {
    position: absolute;
    padding: 20px 24px;
    background: var(--color-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-card--1 {
    top: 40px;
    right: -20px;
}

.stat-card--2 {
    bottom: 60px;
    right: -10px;
}

.stat-number {
    font-family: var(--font-serif);
    font-size: var(--fs-2xl);
    font-weight: 400;
    color: var(--color-green);
    line-height: 1;
}

.stat-suffix {
    font-size: var(--fs-lg);
}

.stat-label {
    font-size: var(--fs-xs);
    color: var(--color-text-muted);
    letter-spacing: 0.02em;
}

/* ─── SECTIONS ─── */
.section {
    padding: 100px 0;
}

.section--light {
    background: var(--color-offwhite);
}

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

.section-tag {
    font-size: var(--fs-xs);
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-green-muted);
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-serif);
    font-size: var(--fs-2xl);
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--color-green);
}

/* ─── MENU ─── */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.menu-card {
    background: var(--color-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--transition), transform var(--transition);
}

.menu-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.menu-card-img {
    aspect-ratio: 4/3;
    overflow: hidden;
}

.menu-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.menu-card:hover .menu-card-img img {
    transform: scale(1.05);
}

.menu-card-body {
    padding: 24px;
}

.menu-card-title {
    font-family: var(--font-serif);
    font-size: var(--fs-xl);
    font-weight: 400;
    color: var(--color-green);
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.menu-card-desc {
    font-size: var(--fs-sm);
    color: var(--color-text-light);
    line-height: 1.6;
}

/* ─── CATERING ─── */
.catering-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.catering-desc {
    font-size: var(--fs-md);
    color: var(--color-text-light);
    line-height: 1.7;
    margin-bottom: 32px;
}

.catering-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}

.catering-features li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: var(--fs-base);
    color: var(--color-text);
    line-height: 1.5;
}

.feature-check {
    flex-shrink: 0;
    margin-top: 3px;
    color: var(--color-green-muted);
}

.catering-visual {
    position: relative;
    min-height: 620px;
}

.catering-img-main {
    width: 100%;
    aspect-ratio: 5/6.2;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

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

.catering-img-float {
    position: absolute;
    bottom: -20px;
    left: -30px;
    width: 60%;
    aspect-ratio: 3/2;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--color-cream);
}

.catering-img-float img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ─── ABOUT ─── */
.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-visual {
    position: relative;
    min-height: 560px;
}

.about-img-stack {
    position: relative;
    min-height: 560px;
}

.about-img-main {
    width: 80%;
    aspect-ratio: 48/56;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

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

.about-img-accent {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 55%;
    aspect-ratio: 28/20;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--color-offwhite);
}

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

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

.about-text {
    font-size: var(--fs-base);
    color: var(--color-text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

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

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

.about-stat-number {
    font-family: var(--font-serif);
    font-size: var(--fs-2xl);
    font-weight: 400;
    color: var(--color-green);
    line-height: 1;
}

.about-stat-label {
    font-size: var(--fs-xs);
    color: var(--color-text-muted);
    line-height: 1.4;
}

.about-stat-divider {
    width: 1px;
    height: 48px;
    background: var(--color-line);
    flex-shrink: 0;
}

/* ─── GALLERY ─── */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(2, 240px);
    gap: 16px;
}

.gallery-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item:nth-child(1) {
    grid-column: 1 / 5;
    grid-row: 1 / 2;
}

.gallery-item:nth-child(2) {
    grid-column: 5 / 9;
    grid-row: 1 / 2;
}

.gallery-item:nth-child(3) {
    grid-column: 9 / 13;
    grid-row: 1 / 3;
}

.gallery-item:nth-child(4) {
    grid-column: 1 / 5;
    grid-row: 2 / 3;
}

.gallery-item:nth-child(5) {
    grid-column: 5 / 9;
    grid-row: 2 / 3;
}

/* ─── CTA / CONTACT ─── */
.section--cta {
    background: var(--color-green);
    color: var(--color-offwhite);
}

.section--cta .section-tag {
    color: rgba(245, 243, 239, 0.6);
}

.section--cta .section-title {
    color: var(--color-offwhite);
}

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

.cta-desc {
    font-size: var(--fs-md);
    color: rgba(245, 243, 239, 0.7);
    line-height: 1.7;
    margin-bottom: 40px;
}

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

.cta-contact-item {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: var(--fs-base);
    color: rgba(245, 243, 239, 0.85);
    transition: color var(--transition);
}

.cta-contact-item:hover {
    color: var(--color-offwhite);
}

.cta-contact-item svg {
    flex-shrink: 0;
    opacity: 0.7;
}

/* ─── FORM ─── */
.cta-form-wrap {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-lg);
    padding: 40px;
    backdrop-filter: blur(8px);
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: var(--fs-xs);
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(245, 243, 239, 0.6);
    margin-bottom: 8px;
}

.form-input {
    width: 100%;
    padding: 14px 16px;
    font-family: var(--font-sans);
    font-size: var(--fs-base);
    font-weight: 300;
    color: var(--color-offwhite);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-sm);
    outline: none;
    transition: border-color var(--transition), background var(--transition);
}

.form-input::placeholder {
    color: rgba(245, 243, 239, 0.35);
}

.form-input:focus {
    border-color: rgba(245, 243, 239, 0.5);
    background: rgba(255, 255, 255, 0.12);
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none' stroke='rgba(245,243,239,0.5)' stroke-width='1.5'%3E%3Cpath d='M3 4.5l3 3 3-3'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
}

.form-select option {
    background: var(--color-green);
    color: var(--color-offwhite);
}

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

.btn--white {
    background: var(--color-offwhite);
    color: var(--color-green);
}

.btn--white:hover {
    background: var(--color-cream);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.form-success {
    text-align: center;
    padding: 16px;
    font-size: var(--fs-sm);
    color: var(--color-offwhite);
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    margin-top: 16px;
}

/* ─── FOOTER ─── */
.footer {
    background: var(--color-green);
    color: var(--color-offwhite);
    padding: 48px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-logo {
    font-family: var(--font-serif);
    font-size: var(--fs-lg);
    color: var(--color-offwhite);
}

.footer-tagline {
    font-size: var(--fs-xs);
    color: rgba(245, 243, 239, 0.5);
    margin-top: 4px;
}

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

.footer-links a {
    font-size: var(--fs-sm);
    color: rgba(245, 243, 239, 0.6);
    transition: color var(--transition);
}

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

.footer-copy {
    width: 100%;
    font-size: var(--fs-xs);
    color: rgba(245, 243, 239, 0.35);
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

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

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

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

    .hero-visual {
        max-width: 500px;
        margin: 0 auto;
        min-height: 400px;
    }

    .catering-layout,
    .about-layout,
    .cta-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .catering-visual,
    .about-visual {
        order: -1;
        min-height: 400px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 200px);
    }

    .gallery-item:nth-child(1) { grid-column: 1 / 2; grid-row: 1 / 2; }
    .gallery-item:nth-child(2) { grid-column: 2 / 3; grid-row: 1 / 2; }
    .gallery-item:nth-child(3) { grid-column: 1 / 3; grid-row: 2 / 3; }
    .gallery-item:nth-child(4) { grid-column: 1 / 2; grid-row: 3 / 4; }
    .gallery-item:nth-child(5) { grid-column: 2 / 3; grid-row: 3 / 4; }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(250, 248, 245, 0.98);
        backdrop-filter: blur(12px);
        flex-direction: column;
        padding: 32px 24px;
        gap: 24px;
        border-bottom: 1px solid var(--color-line);
        transform: translateY(-120%);
        opacity: 0;
        transition: transform var(--transition), opacity var(--transition);
        pointer-events: none;
    }

    .nav-links.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .nav-toggle {
        display: flex;
    }

    .hero {
        padding: 120px 24px 60px;
    }

    .hero-visual {
        min-height: 360px;
    }

    .hero-card--food {
        left: -16px;
        bottom: -16px;
    }

    .stat-card--1 {
        right: -8px;
        top: 20px;
    }

    .stat-card--2 {
        right: 0;
        bottom: 40px;
    }

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

    .section {
        padding: 72px 0;
    }

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

    .about-stat-divider {
        width: 48px;
        height: 1px;
    }

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

    .footer-inner {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .hero-visual {
        min-height: 300px;
    }

    .stat-card {
        padding: 14px 18px;
    }

    .stat-number {
        font-size: var(--fs-xl);
    }
}
