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

:root {
    --terracotta: #C2704E;
    --terracotta-dark: #A85A3A;
    --terracotta-light: #D4916F;
    --sand: #F5EDE4;
    --sand-light: #FAF6F1;
    --sand-dark: #E8DDD2;
    --charcoal: #2A2522;
    --charcoal-light: #4A423D;
    --cream: #FFFCF8;
    --white: #FFFFFF;
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Inter', system-ui, sans-serif;
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

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

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

/* ── Typography ── */
.section__eyebrow {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--terracotta);
    margin-bottom: 16px;
}

.section__title {
    font-family: var(--font-serif);
    font-size: clamp(2.25rem, 5vw, 3.75rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--charcoal);
    margin-bottom: 24px;
}

.section__title em {
    font-style: italic;
    color: var(--terracotta);
}

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    border-radius: 60px;
    border: none;
    cursor: pointer;
    transition: all 0.3s var(--ease);
}

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

.btn--primary:hover {
    background: var(--terracotta-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(194, 112, 78, 0.3);
}

.btn--ghost {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, 0.5);
}

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

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

/* ── Navigation ── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s var(--ease);
}

.nav.scrolled {
    background: rgba(250, 246, 241, 0.95);
    backdrop-filter: blur(12px);
    padding: 14px 0;
    box-shadow: 0 1px 0 rgba(42, 37, 34, 0.08);
}

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

.nav__logo {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--white);
    transition: color 0.3s var(--ease);
}

.nav.scrolled .nav__logo {
    color: var(--charcoal);
}

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav__toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s var(--ease);
    border-radius: 2px;
}

.nav.scrolled .nav__toggle span {
    background: var(--charcoal);
}

.nav__menu {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav__link {
    font-size: 0.875rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
    transition: color 0.3s var(--ease);
    position: relative;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--terracotta);
    transition: width 0.3s var(--ease);
}

.nav__link:hover::after {
    width: 100%;
}

.nav__link:hover {
    color: var(--white);
}

.nav.scrolled .nav__link {
    color: var(--charcoal-light);
}

.nav.scrolled .nav__link:hover {
    color: var(--charcoal);
}

.nav__link--cta {
    padding: 10px 24px;
    background: var(--terracotta);
    color: var(--white) !important;
    border-radius: 60px;
    font-weight: 500;
}

.nav__link--cta::after {
    display: none;
}

.nav__link--cta:hover {
    background: var(--terracotta-dark);
    color: var(--white) !important;
}

/* ── Hero ── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    background: url('https://images.pexels.com/photos/23644633/pexels-photo-23644633.jpeg?auto=compress&cs=tinysrgb&fit=crop&w=1920&h=1080') center center / cover no-repeat;
    transform: scale(1.05);
    animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    from { transform: scale(1.05); }
    to { transform: scale(1.12); }
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(42, 37, 34, 0.72) 0%,
        rgba(42, 37, 34, 0.45) 50%,
        rgba(194, 112, 78, 0.25) 100%
    );
}

.hero__container {
    position: relative;
    z-index: 2;
    padding-top: 80px;
    flex: 1;
    display: flex;
    align-items: center;
}

.hero__content {
    max-width: 680px;
}

.hero__eyebrow {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--terracotta-light);
    margin-bottom: 24px;
}

.hero__headline {
    font-family: var(--font-serif);
    font-size: clamp(2.75rem, 7vw, 5.5rem);
    font-weight: 900;
    line-height: 1.05;
    color: var(--white);
    margin-bottom: 28px;
}

.hero__headline--accent {
    font-style: italic;
    color: var(--terracotta-light);
}

.hero__sub {
    font-size: 1.125rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    max-width: 520px;
    margin-bottom: 40px;
}

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

/* ── Floating Cards ── */
.hero__cards {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
}

.floating-card {
    position: absolute;
    background: rgba(255, 252, 248, 0.95);
    backdrop-filter: blur(16px);
    border-radius: 16px;
    padding: 20px 24px;
    box-shadow: 0 8px 32px rgba(42, 37, 34, 0.15);
    pointer-events: auto;
    animation: float 6s ease-in-out infinite;
}

.floating-card__number {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--charcoal);
    line-height: 1.2;
}

.floating-card__label {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--charcoal-light);
    letter-spacing: 0.04em;
    margin-top: 4px;
}

.floating-card__icon {
    display: block;
    color: var(--terracotta);
    margin-bottom: 6px;
}

.floating-card--1 {
    top: 22%;
    right: 8%;
    animation-delay: 0s;
}

.floating-card--2 {
    top: 52%;
    right: 18%;
    animation-delay: -2s;
}

.floating-card--3 {
    bottom: 18%;
    right: 10%;
    animation-delay: -4s;
}

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

/* ── About ── */
.about {
    padding: 120px 0;
    background: var(--cream);
}

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

.about__image {
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4/5;
}

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

.about__image:hover img {
    transform: scale(1.03);
}

.about__content {
    padding: 20px 0;
}

.about__content p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--charcoal-light);
    margin-bottom: 20px;
}

.about__content em {
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--terracotta);
}

.about__stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid var(--sand-dark);
}

.stat__number {
    display: block;
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 700;
    color: var(--terracotta);
    line-height: 1;
    margin-bottom: 8px;
}

.stat__label {
    font-size: 0.8125rem;
    color: var(--charcoal-light);
    letter-spacing: 0.02em;
}

/* ── Menu ── */
.menu {
    padding: 120px 0;
    background: var(--sand);
}

.menu__header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 64px;
}

.menu__lead {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--charcoal-light);
}

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

.menu__card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(42, 37, 34, 0.06);
    transition: all 0.4s var(--ease);
}

.menu__card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(42, 37, 34, 0.12);
}

.menu__card-image {
    aspect-ratio: 4/3;
    overflow: hidden;
}

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

.menu__card:hover .menu__card-image img {
    transform: scale(1.06);
}

.menu__card-body {
    padding: 28px 32px 32px;
}

.menu__card-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 10px;
}

.menu__card-desc {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--charcoal-light);
}

.menu__cta {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.menu__cta p {
    font-size: 0.9375rem;
    color: var(--charcoal-light);
}

/* ── Gallery ── */
.gallery {
    padding: 120px 0 80px;
    background: var(--cream);
}

.gallery .container {
    text-align: center;
    margin-bottom: 64px;
}

.gallery__grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto;
    gap: 20px;
    padding: 0 24px;
    max-width: 1400px;
    margin: 0 auto;
}

.gallery__item {
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: auto;
}

.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
    display: block;
}

.gallery__item:hover img {
    transform: scale(1.04);
}

.gallery__item:nth-child(1) { grid-column: 1 / 6; aspect-ratio: 5/6; }
.gallery__item:nth-child(2) { grid-column: 6 / 9; aspect-ratio: 4/3; }
.gallery__item:nth-child(3) { grid-column: 9 / 13; aspect-ratio: 4/3; }
.gallery__item:nth-child(4) { grid-column: 1 / 5; aspect-ratio: 5/6; }
.gallery__item:nth-child(5) { grid-column: 5 / 8; aspect-ratio: 4/3; }
.gallery__item:nth-child(6) { grid-column: 8 / 13; aspect-ratio: 4/3; }

/* ── Hours ── */
.hours {
    padding: 120px 0;
    background: var(--charcoal);
}

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

.hours__content {
    color: var(--white);
}

.hours__content .section__title {
    color: var(--white);
}

.hours__schedule {
    margin: 40px 0;
}

.hours__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hours__day {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.7);
}

.hours__time {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--sand);
}

.hours__row--highlight .hours__day,
.hours__row--highlight .hours__time {
    color: var(--terracotta-light);
}

.hours__note {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.4);
    font-style: italic;
}

.hours__image {
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 5/7;
}

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

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

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

.contact__details {
    margin-top: 48px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact__detail {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact__icon {
    flex-shrink: 0;
    color: var(--terracotta);
    margin-top: 2px;
}

.contact__detail-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--charcoal-light);
    margin-bottom: 6px;
}

.contact__detail-value {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--charcoal);
    transition: color 0.3s var(--ease);
}

.contact__detail-value:hover {
    color: var(--terracotta);
}

/* ── Form ── */
.contact__form-wrap {
    background: var(--white);
    border-radius: 24px;
    padding: 48px;
    box-shadow: 0 8px 40px rgba(42, 37, 34, 0.08);
}

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

.form__group {
    margin-bottom: 24px;
}

.form__label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--charcoal-light);
    margin-bottom: 8px;
    letter-spacing: 0.02em;
}

.form__input,
.form__textarea {
    width: 100%;
    padding: 14px 18px;
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    color: var(--charcoal);
    background: var(--sand-light);
    border: 1.5px solid transparent;
    border-radius: 12px;
    outline: none;
    transition: all 0.3s var(--ease);
}

.form__input:focus,
.form__textarea:focus {
    border-color: var(--terracotta);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(194, 112, 78, 0.1);
}

.form__input::placeholder,
.form__textarea::placeholder {
    color: var(--sand-dark);
}

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

.form__success {
    display: none;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
    padding: 16px 20px;
    background: #E8F5E9;
    border-radius: 12px;
    color: #2E7D32;
    font-size: 0.9375rem;
    font-weight: 500;
}

.form__success.show {
    display: flex;
}

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

.footer__inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 48px;
    align-items: start;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__logo {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    display: block;
    margin-bottom: 12px;
}

.footer__brand p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
}

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

.footer__links a {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.3s var(--ease);
}

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

.footer__contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: right;
}

.footer__contact a {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.3s var(--ease);
}

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

.footer__bottom {
    padding-top: 32px;
    text-align: center;
}

.footer__bottom p {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.35);
}

/* ── Scroll Animations ── */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s var(--ease);
}

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

/* ── Responsive ── */
@media (max-width: 1024px) {
    .hero__cards {
        display: none;
    }

    .about__grid,
    .hours__card,
    .contact__grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about__image {
        aspect-ratio: 16/10;
    }

    .hours__image {
        aspect-ratio: 16/10;
    }

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

@media (max-width: 768px) {
    .nav__toggle {
        display: flex;
    }

    .nav__menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 360px;
        height: 100vh;
        background: var(--cream);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 28px;
        transition: right 0.4s var(--ease);
        box-shadow: -8px 0 32px rgba(42, 37, 34, 0.15);
    }

    .nav__menu.open {
        right: 0;
    }

    .nav__menu.open .nav__link {
        color: var(--charcoal);
        font-size: 1.125rem;
    }

    .nav__menu.open .nav__link--cta {
        background: var(--terracotta);
        color: var(--white) !important;
    }

    .nav__overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(42, 37, 34, 0.5);
        z-index: 999;
    }

    .nav__overlay.show {
        display: block;
    }

    .hero__headline {
        font-size: clamp(2.25rem, 10vw, 3.5rem);
    }

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

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

    .gallery__item:nth-child(1),
    .gallery__item:nth-child(4) {
        grid-column: span 1;
        aspect-ratio: 3/4;
    }

    .gallery__item:nth-child(2),
    .gallery__item:nth-child(3),
    .gallery__item:nth-child(5),
    .gallery__item:nth-child(6) {
        grid-column: span 1;
        aspect-ratio: 4/3;
    }

    .footer__inner {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }

    .footer__links {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .footer__contact {
        text-align: center;
    }

    .contact__form-wrap {
        padding: 32px 24px;
    }

    .about__stats {
        gap: 24px;
    }
}

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

    .hero {
        min-height: 100svh;
    }

    .hero__actions {
        flex-direction: column;
    }

    .hero__actions .btn {
        width: 100%;
    }

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

    .gallery__item:nth-child(n) {
        grid-column: span 1;
        aspect-ratio: 4/3;
    }

    .about__stats {
        flex-direction: column;
        gap: 24px;
    }
}
