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

:root {
    --terracotta: #C4724E;
    --terracotta-deep: #A85A3A;
    --terracotta-light: #D4916E;
    --sand: #F5F0E8;
    --sand-light: #FAF7F2;
    --sand-dark: #E8DFD0;
    --charcoal: #2C2420;
    --charcoal-light: #4A3F38;
    --warm-gray: #8A7E76;
    --warm-gray-light: #B5AAA2;
    --white: #FFFFFF;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-serif: 'Playfair Display', Georgia, serif;
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: var(--font-body);
    font-weight: 300;
    color: var(--charcoal);
    background: var(--sand-light);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    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;
}

/* ─── NAV ─── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(250, 247, 242, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(196, 114, 78, 0.08);
    transition: box-shadow 0.4s var(--ease-smooth);
}

.nav.scrolled {
    box-shadow: 0 1px 20px rgba(44, 36, 32, 0.06);
}

.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;
    text-decoration: none;
}

.nav-logo-mark {
    width: 36px;
    height: 36px;
    background: var(--terracotta);
    color: var(--white);
    font-family: var(--font-serif);
    font-size: 18px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

.nav-logo-text {
    font-size: 15px;
    font-weight: 500;
    color: var(--charcoal);
    letter-spacing: -0.01em;
}

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

.nav-links a {
    font-size: 13px;
    font-weight: 400;
    color: var(--charcoal-light);
    letter-spacing: 0.02em;
    text-transform: uppercase;
    transition: color 0.3s var(--ease-smooth);
    position: relative;
}

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

.nav-links a:hover {
    color: var(--terracotta);
}

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

.nav-cta {
    background: var(--charcoal) !important;
    color: var(--white) !important;
    padding: 10px 20px;
    border-radius: 100px;
    font-size: 13px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.04em !important;
    transition: background 0.3s var(--ease-smooth), transform 0.2s var(--ease-out) !important;
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    background: var(--terracotta) !important;
    color: var(--white) !important;
    transform: translateY(-1px);
}

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

.nav-toggle-line {
    width: 22px;
    height: 1.5px;
    background: var(--charcoal);
    transition: all 0.3s var(--ease-out);
    transform-origin: center;
}

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

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

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

/* ─── HERO ─── */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 120px 24px 80px;
    position: relative;
    overflow: hidden;
    background: var(--sand-light);
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(196, 114, 78, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(196, 114, 78, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

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

.hero-eyebrow {
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--terracotta);
    margin-bottom: 24px;
}

.hero-headline {
    font-family: var(--font-serif);
    font-size: clamp(42px, 5vw, 72px);
    font-weight: 400;
    line-height: 1.1;
    color: var(--charcoal);
    margin-bottom: 28px;
}

.headline-line {
    display: block;
}

.hero-sub {
    font-size: 17px;
    line-height: 1.75;
    color: var(--warm-gray);
    max-width: 460px;
    margin-bottom: 40px;
}

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

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

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

.btn-primary:hover {
    background: var(--terracotta-deep);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(196, 114, 78, 0.25);
}

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

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

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

.btn-white:hover {
    background: var(--sand);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.btn-outline-light:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.1);
}

/* Hero Visual */
.hero-visual {
    position: relative;
}

.hero-image-card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(44, 36, 32, 0.1);
    position: relative;
}

.hero-image-card img {
    width: 100%;
    height: 700px;
    object-fit: cover;
}

.hero-image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 24px;
    background: linear-gradient(to top, rgba(44, 36, 32, 0.7), transparent);
    color: var(--white);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.04em;
    display: flex;
    align-items: center;
    gap: 8px;
}

.caption-dot {
    width: 6px;
    height: 6px;
    background: var(--terracotta-light);
    border-radius: 50%;
    flex-shrink: 0;
}

/* Stat Cards */
.stat-cards {
    position: absolute;
    top: 0;
    left: -40px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 2;
}

.stat-card {
    background: var(--white);
    padding: 16px 20px;
    border-radius: 14px;
    box-shadow: 0 4px 20px rgba(44, 36, 32, 0.08);
    min-width: 120px;
}

.stat-card--1 {
    transform: rotate(-2deg);
}

.stat-card--2 {
    transform: rotate(1deg);
    margin-left: 20px;
}

.stat-card--3 {
    transform: rotate(-1deg);
}

.stat-number {
    display: block;
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 500;
    color: var(--terracotta);
    line-height: 1.2;
}

.stat-label {
    font-size: 12px;
    color: var(--warm-gray);
    letter-spacing: 0.02em;
}

.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--warm-gray-light);
}

/* ─── DIVIDER ─── */
.divider-section {
    padding: 0 24px;
}

.divider-inner {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 20px;
}

.divider-text {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 18px;
    color: var(--warm-gray);
    white-space: nowrap;
}

.divider-line {
    flex: 1;
    height: 1px;
    background: var(--sand-dark);
}

/* ─── SECTION COMMON ─── */
.section-eyebrow {
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--terracotta);
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 400;
    line-height: 1.15;
    color: var(--charcoal);
    margin-bottom: 20px;
}

.section-line {
    width: 48px;
    height: 1px;
    background: var(--terracotta);
    margin-bottom: 32px;
}

/* ─── MENU SECTION ─── */
.menu-section {
    padding: 100px 24px;
    background: var(--sand-light);
}

.menu-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    max-width: 560px;
    margin: 0 auto 64px;
}

.section-header .section-line {
    margin: 0 auto 32px;
}

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

.menu-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-smooth);
}

.menu-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(44, 36, 32, 0.08);
}

.menu-card-image {
    overflow: hidden;
    aspect-ratio: 400/280;
}

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

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

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

.menu-card-title {
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 400;
    color: var(--charcoal);
    margin-bottom: 12px;
}

.menu-card-desc {
    font-size: 14px;
    line-height: 1.75;
    color: var(--warm-gray);
}

/* ─── ABOUT SECTION ─── */
.about-section {
    padding: 100px 24px;
    background: var(--sand);
}

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

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

.about-img-main {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(44, 36, 32, 0.1);
}

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

.about-img-accent {
    position: absolute;
    bottom: -30px;
    right: -30px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(44, 36, 32, 0.12);
    border: 4px solid var(--sand);
}

.about-img-accent img {
    width: 400px;
    height: 260px;
    object-fit: cover;
}

.about-badge {
    position: absolute;
    top: -20px;
    right: 40px;
    background: var(--terracotta);
    color: var(--white);
    padding: 12px 20px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    box-shadow: 0 4px 16px rgba(196, 114, 78, 0.3);
}

.about-content .section-title {
    margin-bottom: 20px;
}

.about-text {
    font-size: 15px;
    line-height: 1.8;
    color: var(--warm-gray);
    margin-bottom: 20px;
}

.about-values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 40px;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 400;
    color: var(--charcoal-light);
}

.value-item svg {
    color: var(--terracotta);
    flex-shrink: 0;
}

/* ─── MARKET SECTION ─── */
.market-section {
    padding: 100px 24px;
    background: var(--sand-light);
}

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

.market-content .section-title {
    margin-bottom: 20px;
}

.market-text {
    font-size: 15px;
    line-height: 1.8;
    color: var(--warm-gray);
    margin-bottom: 32px;
}

.market-list {
    list-style: none;
    margin-bottom: 40px;
}

.market-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid var(--sand-dark);
    font-size: 14px;
    color: var(--charcoal-light);
}

.market-list li:last-child {
    border-bottom: none;
}

.market-list-dot {
    width: 6px;
    height: 6px;
    background: var(--terracotta);
    border-radius: 50%;
    flex-shrink: 0;
}

.market-list-label {
    font-weight: 400;
}

.market-image-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.market-img-tall {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(44, 36, 32, 0.08);
}

.market-img-tall img {
    width: 100%;
    height: 520px;
    object-fit: cover;
}

.market-img-short {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(44, 36, 32, 0.06);
}

.market-img-short img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

/* ─── CTA SECTION ─── */
.cta-section {
    padding: 120px 24px;
    background: var(--charcoal);
    position: relative;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 30% 50%, rgba(196, 114, 78, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(196, 114, 78, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
}

.cta-eyebrow {
    color: var(--terracotta-light);
}

.cta-title {
    color: var(--white);
    margin-bottom: 20px;
}

.cta-text {
    font-size: 16px;
    line-height: 1.75;
    color: var(--warm-gray-light);
    margin-bottom: 40px;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* ─── VISIT SECTION ─── */
.visit-section {
    padding: 100px 24px;
    background: var(--sand-light);
}

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

.visit-info .section-title {
    margin-bottom: 20px;
}

.visit-details {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-top: 8px;
}

.visit-detail {
    display: flex;
    gap: 16px;
}

.visit-detail-icon {
    width: 44px;
    height: 44px;
    background: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--terracotta);
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(44, 36, 32, 0.06);
}

.visit-detail-label {
    display: block;
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--warm-gray);
    margin-bottom: 4px;
}

.visit-detail-value {
    display: block;
    font-size: 15px;
    color: var(--charcoal);
    line-height: 1.6;
}

.visit-detail a {
    color: var(--terracotta);
    transition: color 0.2s;
}

.visit-detail a:hover {
    color: var(--terracotta-deep);
}

.visit-map {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(44, 36, 32, 0.08);
    aspect-ratio: 4/3;
    min-height: 360px;
}

/* ─── FOOTER ─── */
.footer {
    background: var(--charcoal);
    color: var(--white);
    padding: 64px 24px 32px;
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.footer-logo-mark {
    width: 36px;
    height: 36px;
    background: var(--terracotta);
    color: var(--white);
    font-family: var(--font-serif);
    font-size: 18px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

.footer-logo-text {
    font-size: 15px;
    font-weight: 500;
    color: var(--white);
}

.footer-tagline {
    font-size: 14px;
    color: var(--warm-gray-light);
    line-height: 1.7;
    max-width: 280px;
}

.footer-links-label {
    display: block;
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--warm-gray);
    margin-bottom: 16px;
}

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

.footer-links a {
    font-size: 14px;
    color: var(--warm-gray-light);
    transition: color 0.2s;
}

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

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-contact p {
    font-size: 14px;
    color: var(--warm-gray-light);
}

.footer-contact a {
    font-size: 14px;
    color: var(--terracotta-light);
    transition: color 0.2s;
}

.footer-contact a:hover {
    color: var(--white);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: var(--warm-gray);
}

/* ─── ANIMATIONS ─── */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.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-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

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

    .stat-cards {
        position: relative;
        top: auto;
        left: auto;
        flex-direction: row;
        margin-top: 20px;
        justify-content: center;
    }

    .stat-card {
        transform: none !important;
    }

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

    .about-img-accent {
        right: 0;
        bottom: -20px;
    }

    .about-img-main img {
        height: 480px;
    }

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

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(250, 247, 242, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 32px 24px;
        gap: 20px;
        border-bottom: 1px solid var(--sand-dark);
        transform: translateY(-120%);
        opacity: 0;
        transition: transform 0.4s var(--ease-out), opacity 0.4s var(--ease-out);
        pointer-events: none;
    }

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

    .nav-toggle {
        display: flex;
    }

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

    .hero-headline {
        font-size: clamp(36px, 8vw, 52px);
    }

    .hero-image-card img {
        height: 480px;
    }

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

    .about-img-main img {
        height: 360px;
    }

    .about-img-accent {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 16px;
    }

    .about-values {
        grid-template-columns: 1fr;
    }

    .market-img-tall img {
        height: 360px;
    }

    .cta-section {
        padding: 80px 24px;
    }

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

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

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

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

    .stat-cards {
        flex-direction: column;
        align-items: flex-start;
    }

    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
}
