/* ============================================
   THE LATTE SHOP — Stylesheet
   Palette: Terracotta + Sand + Cream
   ============================================ */

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

:root {
    --terracotta: #C05A37;
    --terracotta-dark: #A04828;
    --terracotta-light: #D4755A;
    --sand: #E8D5C0;
    --sand-light: #F5EDE3;
    --sand-dark: #C4A882;
    --cream: #FDF8F3;
    --cream-dark: #F0E6DA;
    --charcoal: #2A2220;
    --charcoal-light: #4A3F3A;
    --warm-gray: #8A7E78;
    --white: #FFFFFF;
    --font-heading: 'Space Grotesk', sans-serif;
    --font-serif: 'Instrument Serif', serif;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --shadow-sm: 0 2px 8px rgba(42, 34, 32, 0.06);
    --shadow-md: 0 8px 30px rgba(42, 34, 32, 0.10);
    --shadow-lg: 0 20px 60px rgba(42, 34, 32, 0.14);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: var(--font-heading);
    background-color: var(--cream);
    color: var(--charcoal);
    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;
}

ul { list-style: none; }

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

/* ---------- GEOMETRIC BACKGROUND ---------- */
.geometric-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.geo-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.07;
}

.geo-circle--1 {
    width: 600px;
    height: 600px;
    background: var(--terracotta);
    top: -200px;
    right: -150px;
}

.geo-circle--2 {
    width: 400px;
    height: 400px;
    background: var(--sand-dark);
    bottom: 10%;
    left: -100px;
}

.geo-square {
    position: absolute;
    width: 200px;
    height: 200px;
    background: var(--terracotta);
    opacity: 0.05;
    top: 40%;
    right: 5%;
    transform: rotate(45deg);
}

.geo-triangle {
    position: absolute;
    width: 0;
    height: 0;
    border-left: 100px solid transparent;
    border-right: 100px solid transparent;
    border-bottom: 170px solid var(--sand-dark);
    opacity: 0.06;
    top: 60%;
    left: 8%;
    transform: rotate(-15deg);
}

/* ---------- HEADER ---------- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(253, 248, 243, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(192, 90, 55, 0.08);
    transition: var(--transition);
}

.header.scrolled {
    background: rgba(253, 248, 243, 0.95);
    box-shadow: var(--shadow-sm);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--charcoal);
    z-index: 1001;
}

.logo--light { color: var(--white); }

.logo__icon {
    color: var(--terracotta);
}

.logo--light .logo__icon { color: var(--sand); }

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

.nav__link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--charcoal-light);
    transition: var(--transition);
    position: relative;
}

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

.nav__link:hover { color: var(--terracotta); }
.nav__link:hover::after { width: 100%; }

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

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

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

.nav__toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--charcoal);
    transition: var(--transition);
    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; }
.nav__toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ---------- BUTTONS ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 100px;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
    white-space: nowrap;
}

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

.btn--primary:hover {
    background: var(--terracotta-dark);
    border-color: var(--terracotta-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(192, 90, 55, 0.3);
}

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

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

.btn--lg { padding: 18px 40px; font-size: 1rem; }
.btn--full { width: 100%; }

/* ---------- SECTION HEADER ---------- */
.section-header {
    margin-bottom: 60px;
}

.section-header--center { text-align: center; }

.section-header__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--terracotta);
    margin-bottom: 16px;
}

.section-header__eyebrow::before {
    content: '';
    display: block;
    width: 32px;
    height: 2px;
    background: var(--terracotta);
}

.section-header__title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 400;
    line-height: 1.15;
    color: var(--charcoal);
}

.section-header__title--light { color: var(--white); }

/* ---------- HERO ---------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 80px;
    overflow: hidden;
    background: var(--cream);
    z-index: 1;
}

.hero__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding-bottom: 80px;
}

.hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--terracotta);
    margin-bottom: 24px;
}

.hero__eyebrow-dot {
    display: block;
    width: 8px;
    height: 8px;
    background: var(--terracotta);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

.hero__headline {
    font-family: var(--font-serif);
    font-size: clamp(3rem, 6vw, 5.5rem);
    line-height: 1.05;
    margin-bottom: 28px;
    color: var(--charcoal);
}

.hero__line {
    display: block;
}

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

.hero__sub {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--warm-gray);
    max-width: 480px;
    margin-bottom: 40px;
}

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

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

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

.hero__stat-num {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--charcoal);
}

.hero__stat-label {
    font-size: 0.8rem;
    color: var(--warm-gray);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.hero__stat-divider {
    width: 1px;
    height: 40px;
    background: var(--sand-dark);
    opacity: 0.5;
}

/* Hero Image Stack */
.hero__visual {
    position: relative;
    height: 600px;
}

.hero__image-stack {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero__img {
    position: absolute;
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.hero__img--main {
    width: 75%;
    height: 85%;
    top: 0;
    right: 0;
}

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

.hero__img--accent {
    width: 55%;
    height: 40%;
    bottom: 5%;
    left: 0;
    border: 6px solid var(--cream);
}

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

.hero__badge {
    position: absolute;
    bottom: 38%;
    left: 55%;
    transform: translateX(-50%);
    background: var(--terracotta);
    color: var(--white);
    padding: 14px 20px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.85rem;
    box-shadow: var(--shadow-md);
    white-space: nowrap;
}

.hero__stripe {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 8px;
    background: repeating-linear-gradient(
        90deg,
        var(--terracotta) 0px,
        var(--terracotta) 40px,
        var(--sand) 40px,
        var(--sand) 80px,
        var(--cream-dark) 80px,
        var(--cream-dark) 120px
    );
}

/* ---------- MARQUEE ---------- */
.marquee {
    background: var(--terracotta);
    padding: 18px 0;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.marquee__inner {
    display: flex;
    gap: 24px;
    align-items: center;
    animation: marquee 30s linear infinite;
    white-space: nowrap;
}

.marquee__item {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.marquee__dot {
    color: var(--sand);
    font-size: 0.6rem;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ---------- MENU ---------- */
.menu {
    position: relative;
    z-index: 1;
    padding: 120px 0;
    background: var(--cream);
}

.menu__grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 32px;
    align-items: start;
}

.menu__card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.menu__card--featured {
    grid-row: span 2;
}

.menu__card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.menu__card-img {
    position: relative;
    overflow: hidden;
    height: 280px;
}

.menu__card--featured .menu__card-img {
    height: 360px;
}

.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-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--terracotta);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.menu__card-body {
    padding: 28px;
}

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

.menu__card-desc {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--warm-gray);
    margin-bottom: 20px;
}

.menu__card-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--terracotta);
    transition: var(--transition);
}

.menu__card-link:hover { color: var(--terracotta-dark); }

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

.menu__item {
    background: var(--white);
    padding: 28px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border-left: 4px solid transparent;
}

.menu__item:hover {
    border-left-color: var(--terracotta);
    transform: translateX(6px);
    box-shadow: var(--shadow-md);
}

.menu__item-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 8px;
    gap: 12px;
}

.menu__item-name {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--charcoal);
}

.menu__item-type {
    font-size: 0.78rem;
    color: var(--terracotta);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    white-space: nowrap;
}

.menu__item-desc {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--warm-gray);
}

/* ---------- ABOUT ---------- */
.about {
    position: relative;
    z-index: 1;
    padding: 120px 0;
    background: var(--charcoal);
    overflow: hidden;
}

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

.about__visual {
    position: relative;
}

.about__img-main {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

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

.about__img-float {
    position: absolute;
    bottom: -40px;
    right: -40px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 6px solid var(--charcoal);
    box-shadow: var(--shadow-lg);
}

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

.about__shape {
    position: absolute;
    top: -30px;
    left: -30px;
    width: 120px;
    height: 120px;
    background: var(--terracotta);
    border-radius: var(--radius-md);
    transform: rotate(25deg);
    z-index: -1;
    opacity: 0.8;
}

.about__content { padding: 20px 0; }

.about__text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.about__values {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 40px;
}

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

.about__value-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    background: var(--terracotta);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.about__value strong {
    display: block;
    font-size: 1.05rem;
    color: var(--white);
    margin-bottom: 4px;
}

.about__value span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.5;
}

/* ---------- GALLERY ---------- */
.gallery {
    position: relative;
    z-index: 1;
    padding: 120px 0;
    background: var(--cream);
}

.gallery__grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto;
    gap: 20px;
}

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

.gallery__item:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-lg);
}

.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.06); }

.gallery__item--large {
    grid-column: span 5;
    grid-row: span 2;
}

.gallery__item--large img { height: 100%; }

.gallery__item--wide {
    grid-column: span 7;
}

.gallery__item:not(.gallery__item--large):not(.gallery__item--wide) {
    height: 260px;
}

/* ---------- VISIT ---------- */
.visit {
    position: relative;
    z-index: 1;
    padding: 120px 0;
    background: var(--terracotta);
}

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

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

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

.visit__detail-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.visit__detail strong {
    display: block;
    font-size: 1rem;
    color: var(--white);
    margin-bottom: 4px;
}

.visit__detail span,
.visit__detail a {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
}

.visit__detail a:hover { color: var(--white); text-decoration: underline; }

.visit__map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    min-height: 450px;
}

.visit__map-placeholder {
    width: 100%;
    height: 100%;
    min-height: 450px;
}

/* ---------- CTA ---------- */
.cta {
    position: relative;
    z-index: 1;
    padding: 120px 0;
    background: var(--charcoal);
    overflow: hidden;
}

.cta__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.cta__content { flex: 1; min-width: 280px; }

.cta__title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 16px;
}

.cta__text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
}

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

.cta .btn--ghost {
    border-color: var(--white);
    color: var(--white);
}

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

/* ---------- CONTACT ---------- */
.contact {
    position: relative;
    z-index: 1;
    padding: 120px 0;
    background: var(--cream);
}

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

.contact__text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--warm-gray);
    margin-top: 20px;
    margin-bottom: 36px;
}

.contact__quick-links {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact__quick-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--charcoal);
    transition: var(--transition);
}

.contact__quick-link:hover { color: var(--terracotta); }

.contact__quick-link svg { color: var(--terracotta); }

/* Form */
.contact__form {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.form__group {
    margin-bottom: 24px;
}

.form__label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.form__input {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--sand);
    border-radius: var(--radius-sm);
    font-family: var(--font-heading);
    font-size: 0.95rem;
    color: var(--charcoal);
    background: var(--cream);
    transition: var(--transition);
    outline: none;
}

.form__input:focus {
    border-color: var(--terracotta);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(192, 90, 55, 0.1);
}

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

.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 24 24' fill='none' stroke='%238A7E78' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 44px;
    cursor: pointer;
}

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

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

.form__success.show { display: flex; }

/* ---------- FOOTER ---------- */
.footer {
    background: var(--charcoal);
    padding: 80px 0 0;
    position: relative;
    z-index: 1;
}

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

.footer__brand p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    margin-top: 16px;
    max-width: 280px;
}

.footer__col h4 {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--terracotta);
    margin-bottom: 20px;
}

.footer__col a,
.footer__col span {
    display: block;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 2;
    transition: var(--transition);
}

.footer__col a:hover { color: var(--white); padding-left: 4px; }

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    padding: 28px 0;
}

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

.footer__bottom a {
    color: rgba(255, 255, 255, 0.35);
    transition: var(--transition);
}

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

/* ---------- SCROLL ANIMATIONS ---------- */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    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; }

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

    .hero__visual {
        height: 450px;
        order: -1;
    }

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

    .menu__card--featured {
        grid-row: span 1;
        grid-column: span 2;
    }

    .menu__card--featured .menu__card-img { height: 280px; }

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

    .about__img-float {
        right: 20px;
        bottom: -20px;
    }

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

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

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

@media (max-width: 768px) {
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 360px;
        height: 100vh;
        background: var(--cream);
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        padding: 40px;
        gap: 24px;
        box-shadow: var(--shadow-lg);
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .nav.open { right: 0; }

    .nav__link {
        font-size: 1.1rem;
        color: var(--charcoal);
    }

    .nav__link--cta {
        margin-top: 8px;
    }

    .nav__toggle { display: flex; }

    .hero { min-height: auto; padding: 120px 0 80px; }
    .hero__visual { height: 350px; }
    .hero__stats { flex-wrap: wrap; gap: 20px; }

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

    .menu__card--featured {
        grid-column: span 1;
    }

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

    .gallery__item--large {
        grid-column: span 2;
        grid-row: span 1;
    }

    .gallery__item--wide {
        grid-column: span 2;
    }

    .gallery__item:not(.gallery__item--large):not(.gallery__item--wide) {
        height: 200px;
    }

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

    .cta__actions { justify-content: center; }

    .contact__form { padding: 28px; }

    .footer__grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

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

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

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

    .hero__actions {
        flex-direction: column;
    }

    .hero__actions .btn { width: 100%; }

    .hero__visual { height: 280px; }

    .hero__badge { display: none; }

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

    .gallery__item--large,
    .gallery__item--wide {
        grid-column: span 1;
    }

    .marquee__item { font-size: 0.78rem; }
}

/* Mobile nav overlay */
.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(42, 34, 32, 0.5);
    z-index: 999;
}

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