/* =========================================================
   PIZZAS E ESFIHAS DO CHEF — Full Site v2
   Critique fixes: food photos, visual rhythm, hours, affordance
   ========================================================= */

@font-face {
    font-family: 'Mohr Rounded';
    src: url('assets/fonts/MohrRounded-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: 'Mohr Rounded';
    src: url('assets/fonts/MohrRounded-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}
@font-face {
    font-family: 'Mohr Rounded';
    src: url('assets/fonts/MohrRounded-Heavy.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
}
@font-face {
    font-family: 'Mohr Rounded';
    src: url('assets/fonts/MohrRounded-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
}

/* ---- Tokens ---- */
:root {
    --c-bg:        #0C0A08;
    --c-surface:   #151210;
    --c-surface-2: #1C1916;
    --c-border:    rgba(255,241,211,0.08);
    --c-border-v:  rgba(255,241,211,0.12);
    --c-cream:     #FFF1D3;
    --c-yellow:    #FCDC07;
    --c-orange:    #F4A71E;
    --c-red:       #C52037;
    --c-text:      #B8AD9E;
    --c-text-dim:  #6B6155;
    --c-white:     #FFFAF2;

    --ff-display: 'Mohr Rounded', 'Impact', sans-serif;
    --ff-body:    'DM Sans', 'Helvetica Neue', sans-serif;

    --ease: cubic-bezier(.22, 1, .36, 1);
    --max-w: 1200px;
    --px: clamp(1.25rem, 4vw, 2.5rem);
}

/* ---- Reset ---- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--ff-body);
    background: var(--c-bg);
    color: var(--c-text);
    line-height: 1.55;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }

/* Skip Link */
.skip-link {
    position: absolute;
    top: -100%;
    left: 1rem;
    padding: .5rem 1rem;
    background: var(--c-yellow);
    color: var(--c-bg);
    font-weight: 700;
    z-index: 200;
    border-radius: 4px;
}
.skip-link:focus {
    top: .5rem;
}

/* ---- Shared Components ---- */
.section-label {
    display: block;
    font-size: .68rem;
    font-weight: 500;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--c-orange);
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--ff-display);
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    font-weight: 900;
    color: var(--c-cream);
    line-height: .95;
    letter-spacing: -.01em;
}
.section-title em {
    font-style: normal;
    color: var(--c-orange);
}
.section-title--sm {
    font-size: clamp(2rem, 4vw, 3rem);
}

.btn-solid {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-family: var(--ff-body);
    font-size: .85rem;
    font-weight: 700;
    letter-spacing: .03em;
    padding: .85rem 1.8rem;
    background: var(--c-yellow);
    color: var(--c-bg);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all .35s var(--ease);
}
.btn-solid svg { transition: transform .35s var(--ease); }
.btn-solid:hover {
    background: var(--c-orange);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(244,167,30,.18);
}
.btn-solid:hover svg { transform: translateX(4px); }
.btn-solid:focus-visible {
    outline: 3px solid var(--c-orange);
    outline-offset: 2px;
}

.btn-ghost {
    font-family: var(--ff-body);
    font-size: .85rem;
    font-weight: 500;
    color: var(--c-text-dim);
    padding: .85rem 1rem;
    position: relative;
    transition: color .3s var(--ease);
}
.btn-ghost::after {
    content: '';
    position: absolute;
    bottom: .6rem;
    left: 1rem; right: 1rem;
    height: 1px;
    background: var(--c-text-dim);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s var(--ease);
}
.btn-ghost:hover { color: var(--c-cream); }
.btn-ghost:hover::after { transform: scaleX(1); background: var(--c-cream); }
.btn-ghost:focus-visible { outline: 2px solid var(--c-orange); outline-offset: 2px; border-radius: 4px; }

/* Scroll reveal */
.sr {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.sr.is-visible {
    opacity: 1;
    transform: none;
}

/* =========================================================
   NAV
   ========================================================= */
.nav {
    position: fixed;
    inset: 0 0 auto;
    z-index: 100;
    transition: background .5s var(--ease), border-color .5s var(--ease);
    border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
    background: rgba(12,10,8,.88);
    backdrop-filter: blur(24px) saturate(1.3);
    -webkit-backdrop-filter: blur(24px) saturate(1.3);
    border-color: var(--c-border);
}
.nav-inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 var(--px);
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}
.nav-logo img { height: 42px; width: auto; border-radius: 4px; }
.nav-links { display: flex; gap: 2rem; }
.nav-links a {
    font-size: .82rem;
    font-weight: 500;
    letter-spacing: .04em;
    color: var(--c-text-dim);
    transition: color .3s var(--ease);
}
.nav-links a:hover { color: var(--c-cream); }
.nav-links a:focus-visible { color: var(--c-cream); outline: 2px solid var(--c-orange); outline-offset: 4px; border-radius: 2px; }

.nav-cta {
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--c-bg);
    background: var(--c-yellow);
    padding: .55rem 1.4rem;
    border-radius: 4px;
    transition: background .3s var(--ease), transform .3s var(--ease);
}
.nav-cta:hover { background: var(--c-orange); transform: translateY(-1px); }
.nav-cta:focus-visible { outline: 3px solid var(--c-orange); outline-offset: 2px; }

.nav-burger {
    display: none;
    background: none; border: none; cursor: pointer;
    width: 28px; height: 20px;
    position: relative; z-index: 101;
}
.nav-burger span {
    display: block; position: absolute; left: 0;
    width: 100%; height: 2px;
    background: var(--c-cream); border-radius: 2px;
    transition: .4s var(--ease);
}
.nav-burger span:first-child { top: 0; }
.nav-burger span:last-child  { bottom: 0; }
.nav-burger.is-open span:first-child { top: 50%; transform: translateY(-50%) rotate(45deg); }
.nav-burger.is-open span:last-child  { bottom: 50%; transform: translateY(50%) rotate(-45deg); }

/* =========================================================
   HERO
   ========================================================= */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
}
.hero-photo { position: relative; overflow: hidden; }
.hero-photo img {
    width: 100%; height: 100%;
    object-fit: cover; object-position: center 30%;
    transition: transform 8s ease-out;
}
.hero:hover .hero-photo img { transform: scale(1.03); }
.hero-photo-scrim {
    position: absolute; inset: 0;
    background:
        linear-gradient(90deg, transparent 50%, var(--c-bg) 100%),
        linear-gradient(180deg, transparent 60%, var(--c-bg) 100%),
        linear-gradient(0deg, transparent 85%, rgba(12,10,8,.6) 100%);
    pointer-events: none;
}
.hero-content {
    display: flex; flex-direction: column; justify-content: center;
    padding: 6rem clamp(2rem, 5vw, 5rem) 4rem 0;
    position: relative; z-index: 2;
}
.hero-tag {
    font-size: .72rem; font-weight: 500;
    letter-spacing: .14em; text-transform: uppercase;
    color: var(--c-text-dim); margin-bottom: 1.6rem;
    opacity: 0; transform: translateY(14px);
    animation: fadeUp .8s var(--ease) .3s forwards;
}
.hero-heading {
    font-family: var(--ff-display); line-height: .92;
    margin-bottom: 1.8rem;
    opacity: 0; transform: translateY(20px);
    animation: fadeUp .8s var(--ease) .5s forwards;
}
.hero-heading-main {
    display: block;
    font-size: clamp(3.8rem, 7.5vw, 6.5rem);
    font-weight: 900; color: var(--c-cream);
    letter-spacing: -.02em;
}
.hero-heading-main em {
    font-style: normal; color: var(--c-text-dim);
    font-size: .55em; vertical-align: .15em; margin: 0 .15em;
}
.hero-heading-sub {
    display: block;
    font-size: clamp(1.8rem, 3.5vw, 3rem);
    font-weight: 400; color: var(--c-orange);
    letter-spacing: .04em; margin-top: .15em;
}
.hero-desc {
    font-size: clamp(.92rem, 1.2vw, 1.05rem);
    color: var(--c-text); max-width: 380px;
    line-height: 1.7; margin-bottom: 2.4rem;
    opacity: 0; transform: translateY(14px);
    animation: fadeUp .8s var(--ease) .7s forwards;
}
.hero-actions {
    display: flex; gap: 1rem;
    align-items: center; flex-wrap: wrap;
    opacity: 0; transform: translateY(14px);
    animation: fadeUp .8s var(--ease) .9s forwards;
}
.hero-scroll-hint {
    position: absolute; bottom: 2rem; left: 50%;
    transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center;
    gap: .5rem; font-size: .65rem;
    letter-spacing: .12em; text-transform: uppercase;
    color: var(--c-text-dim); z-index: 3;
    opacity: 0; animation: fadeUp .6s var(--ease) 1.4s forwards;
}
.hero-scroll-hint svg { animation: scrollBob 2.5s ease-in-out infinite; }
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
@keyframes scrollBob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(5px); } }

/* =========================================================
   STORY
   ========================================================= */
.story {
    padding: clamp(5rem, 10vw, 9rem) var(--px);
    max-width: var(--max-w);
    margin: 0 auto;
}
.story-header {
    margin-bottom: clamp(3rem, 6vw, 5rem);
}

/* Each chapter: photo + text side by side */
.story-chapter {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 4vw, 4rem);
    align-items: start;
    margin-bottom: clamp(4rem, 8vw, 7rem);
}
.story-chapter--flip { direction: rtl; }
.story-chapter--flip > * { direction: ltr; }

.story-img {
    overflow: hidden;
    border-radius: 4px;
}
.story-img img,
.story-img video {
    display: block;
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    transition: transform 1.2s var(--ease);
}
.story-img:hover img,
.story-img:hover video { transform: scale(1.04); }
.story-img--wide img { aspect-ratio: 3/2; }

.story-img figcaption {
    font-size: .72rem;
    color: var(--c-text-dim);
    margin-top: .75rem;
    letter-spacing: .02em;
    font-style: italic;
}

.story-text {
    padding-top: 1.5rem;
}
.story-lead {
    font-family: var(--ff-display);
    font-size: clamp(1.4rem, 2.5vw, 1.8rem);
    font-weight: 700;
    color: var(--c-cream);
    line-height: 1.15;
    margin-bottom: 1.5rem;
}
.story-text p {
    margin-bottom: 1.2rem;
    line-height: 1.75;
    font-size: .95rem;
}
.story-text strong { color: var(--c-cream); font-weight: 700; }

/* Final chapter — full-bleed render */
.story-today {
    position: relative;
    margin-top: clamp(3rem, 6vw, 5rem);
    border-radius: 4px;
    overflow: hidden;
}
.story-img--full img {
    width: 100%;
    aspect-ratio: 21/9;
    object-fit: cover;
    object-position: center 60%;
}
.story-today-content {
    position: relative;
    padding: clamp(2rem, 4vw, 3.5rem);
    background: var(--c-surface);
    border-top: 1px solid var(--c-border);
}
.story-today-content .story-lead {
    max-width: 600px;
}
.story-today-content p {
    max-width: 600px;
    margin-bottom: 1rem;
    font-size: .95rem;
    line-height: 1.75;
}
.story-coda {
    font-family: var(--ff-display);
    font-size: clamp(1.2rem, 2vw, 1.5rem) !important;
    color: var(--c-cream) !important;
    line-height: 1.3 !important;
    margin-top: 1.5rem !important;
    border-left: 3px solid var(--c-orange);
    padding-left: 1.25rem;
}

/* =========================================================
   CARDÁPIO / MENU — v2: Food photography hero + visual cards
   ========================================================= */

/* Full-width food photo strip — breaks section pattern */
.menu-hero {
    position: relative;
    width: 100%;
    height: clamp(280px, 40vw, 420px);
    overflow: hidden;
}
.menu-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
}
.menu-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(12,10,8,0) 20%, rgba(12,10,8,.85) 100%);
    display: flex;
    align-items: flex-end;
    padding: clamp(2rem, 4vw, 3.5rem) var(--px);
}
.menu-hero-title {
    font-family: var(--ff-display);
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    font-weight: 900;
    color: var(--c-cream);
    line-height: .92;
    max-width: var(--max-w);
    margin: 0 auto;
    width: 100%;
}

.menu {
    background: var(--c-bg);
}
.menu-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: clamp(2rem, 4vw, 3rem) var(--px) clamp(5rem, 8vw, 7rem);
}
.menu-sub {
    margin-bottom: clamp(2rem, 4vw, 3rem);
    font-size: .92rem;
    color: var(--c-text-dim);
    max-width: 480px;
}

/* Bento-style grid — with food images */
.menu-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px;
    margin-bottom: 3rem;
    border-radius: 6px;
    overflow: hidden;
}

.menu-card {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 200px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}
.menu-card-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .7s var(--ease);
    z-index: 1;
}
.menu-card:hover .menu-card-bg {
    transform: scale(1.06);
}
.menu-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(12,10,8,.88) 0%, rgba(12,10,8,.3) 50%, rgba(12,10,8,.1) 100%);
    z-index: 2;
    transition: background .4s var(--ease);
}
.menu-card:hover::after {
    background: linear-gradient(0deg, rgba(12,10,8,.92) 0%, rgba(12,10,8,.4) 60%, rgba(12,10,8,.15) 100%);
}
.menu-card-content {
    position: relative;
    z-index: 3;
    padding: clamp(1.2rem, 2.5vw, 2rem);
}
.menu-card--lg {
    min-height: 420px;
}

.menu-card-name {
    font-family: var(--ff-display);
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 900;
    color: var(--c-cream);
    line-height: 1;
    margin-bottom: .3rem;
    display: block;
    transition: color .3s var(--ease);
}
.menu-card:hover .menu-card-name { color: var(--c-yellow); }

.menu-card-desc {
    font-size: .8rem;
    color: rgba(255,241,211,.6);
    line-height: 1.4;
    max-width: 220px;
}

.menu-card-action {
    position: absolute;
    top: clamp(1rem, 2vw, 1.5rem);
    right: clamp(1rem, 2vw, 1.5rem);
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--c-yellow);
    z-index: 3;
    display: flex;
    align-items: center;
    gap: .4rem;
    opacity: .7;
    transition: opacity .3s var(--ease);
}
.menu-card:hover .menu-card-action { opacity: 1; }
.menu-card-arrow {
    font-size: 1rem;
    transition: transform .4s var(--ease);
}
.menu-card:hover .menu-card-arrow {
    transform: translateX(4px);
}
.menu-card:focus-visible { outline: 3px solid var(--c-orange); outline-offset: 2px; border-radius: 6px; }

.menu-cta-row {
    display: flex;
    justify-content: center;
}

/* =========================================================
   LOCALIZAÇÃO — v2: Map leads, info right, with hours
   ========================================================= */
.location {
    padding: clamp(5rem, 10vw, 9rem) 0;
    background: var(--c-surface);
    border-top: 1px solid var(--c-border);
}
.location-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--px);
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: clamp(2rem, 4vw, 5rem);
    align-items: start;
}

.location-title {
    font-family: var(--ff-display);
    font-size: clamp(2.4rem, 5vw, 3.5rem);
    font-weight: 900;
    color: var(--c-cream);
    line-height: .92;
    margin-bottom: 1.5rem;
}

.location-address {
    font-style: normal;
    font-size: .95rem;
    line-height: 1.8;
    color: var(--c-text);
    margin-bottom: 1.5rem;
}

.location-hours {
    padding: 1rem 0;
    margin-bottom: 1.5rem;
    border-top: 1px solid var(--c-border);
    border-bottom: 1px solid var(--c-border);
}
.location-hours-label {
    display: block;
    font-size: .65rem;
    font-weight: 500;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--c-text-dim);
    margin-bottom: .35rem;
}
.location-hours-time {
    font-size: .95rem;
    color: var(--c-text);
}
.location-hours-time strong {
    color: var(--c-cream);
}

.location-links {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.location-contact {
    display: flex;
    gap: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--c-border);
}
.location-phone-label {
    display: block;
    font-size: .65rem;
    font-weight: 500;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--c-text-dim);
    margin-bottom: .25rem;
}
.location-phone a {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--c-cream);
    transition: color .3s;
}
.location-phone a:hover { color: var(--c-yellow); }

.location-map {
    border-radius: 4px;
    overflow: hidden;
    min-height: 400px;
    background: var(--c-surface-2);
}
.location-map iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 400px;
    filter: brightness(0.85) contrast(1.1) saturate(0.3);
}

/* =========================================================
   TRABALHE CONOSCO
   ========================================================= */
.jobs {
    padding: clamp(5rem, 10vw, 9rem) 0;
    border-top: 1px solid var(--c-border);
}
.jobs-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--px);
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: clamp(3rem, 6vw, 6rem);
    align-items: start;
}
.jobs-desc {
    margin-top: 1.5rem;
    font-size: .92rem;
    line-height: 1.7;
    color: var(--c-text);
    max-width: 380px;
}

/* Form */
.jobs-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}
.form-field {
    display: flex;
    flex-direction: column;
    gap: .4rem;
}
.form-field label {
    font-size: .72rem;
    font-weight: 500;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--c-text-dim);
}
.form-field input,
.form-field select,
.form-field textarea {
    font-family: var(--ff-body);
    font-size: .9rem;
    color: var(--c-cream);
    background: var(--c-surface);
    border: 1px solid var(--c-border-v);
    border-radius: 4px;
    padding: .75rem 1rem;
    outline: none;
    transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
    resize: vertical;
}
.form-field input::placeholder,
.form-field textarea::placeholder {
    color: var(--c-text-dim);
    opacity: .6;
}
.form-field input:focus-visible,
.form-field select:focus-visible,
.form-field textarea:focus-visible {
    border-color: var(--c-orange);
    box-shadow: 0 0 0 3px rgba(244,167,30,.1);
    outline: none;
}
.form-field select {
    appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%236B6155' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}
.form-field select option {
    background: var(--c-bg);
    color: var(--c-cream);
}

.btn-submit {
    align-self: flex-start;
    margin-top: .5rem;
}
.btn-submit:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

/* Form success state */
.jobs-form.is-sent {
    position: relative;
}
.jobs-form.is-sent::after {
    content: 'Obrigado! Entraremos em contato pelo WhatsApp.';
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-family: var(--ff-display);
    font-size: 1.6rem;
    color: var(--c-yellow);
    background: var(--c-bg);
    border-radius: 4px;
    padding: 2rem;
    animation: fadeUp .5s var(--ease);
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
    padding: clamp(4rem, 8vw, 6rem) 0 0;
    background: var(--c-surface);
    border-top: 1px solid var(--c-border);
}
.footer-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--px);
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: clamp(2rem, 4vw, 4rem);
    padding-bottom: clamp(3rem, 5vw, 5rem);
    border-bottom: 1px solid var(--c-border);
}
.footer-logo {
    border-radius: 4px;
    margin-bottom: 1rem;
}
.footer-tagline {
    font-size: .88rem;
    color: var(--c-text-dim);
    line-height: 1.5;
}

.footer-col h3 {
    font-family: var(--ff-display);
    font-size: 1.1rem;
    color: var(--c-cream);
    margin-bottom: 1rem;
    letter-spacing: .02em;
}
.footer-col a {
    display: block;
    font-size: .85rem;
    color: var(--c-text-dim);
    margin-bottom: .6rem;
    transition: color .3s;
}
.footer-col a:hover { color: var(--c-cream); }

.footer-bottom {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 1.5rem var(--px);
}
.footer-bottom p {
    font-size: .72rem;
    color: var(--c-text-dim);
    letter-spacing: .04em;
}

/* =========================================================
   WHATSAPP FLOAT
   ========================================================= */
.wa-btn {
    position: fixed;
    bottom: 1.5rem; right: 1.5rem;
    width: 54px; height: 54px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    z-index: 90;
    box-shadow: 0 4px 14px rgba(37,211,102,.35);
    transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.wa-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 20px rgba(37,211,102,.45);
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 900px) {
    .hero {
        grid-template-columns: 1fr;
        grid-template-rows: 50vh 1fr;
    }
    .hero-photo-scrim {
        background:
            linear-gradient(180deg, transparent 40%, var(--c-bg) 100%),
            linear-gradient(0deg, transparent 90%, rgba(12,10,8,.5) 100%);
    }
    .hero-content {
        padding: 0 var(--px) 6rem;
        text-align: center; align-items: center;
    }
    .hero-desc { max-width: 440px; }
    .hero-actions { justify-content: center; }
    .hero-scroll-hint { display: none; }

    .story-chapter {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .story-chapter--flip { direction: ltr; }

    .menu-grid {
        grid-template-columns: 1fr;
    }
    .menu-card--lg { min-height: 220px; }

    .location-inner {
        grid-template-columns: 1fr;
    }
    .location-map { min-height: 300px; order: -1; }
    .location-map iframe { min-height: 300px; }

    .jobs-inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-inner {
        grid-template-columns: 1fr 1fr;
        row-gap: 2.5rem;
    }
}

@media (max-width: 680px) {
    .nav-links { display: none; }
    .nav-burger { display: block; }

    .nav-links.is-open {
        display: flex; flex-direction: column;
        position: fixed; inset: 0;
        background: rgba(12,10,8,.96);
        backdrop-filter: blur(20px);
        justify-content: center; align-items: center;
        gap: 2.5rem; z-index: 100;
    }
    .nav-links.is-open a {
        font-size: 1.4rem;
        color: var(--c-cream);
        letter-spacing: .06em;
    }

    .hero-heading-main { font-size: clamp(3rem, 12vw, 4.5rem); }
    .hero-heading-sub  { font-size: clamp(1.4rem, 5vw, 2rem); }
    .hero-actions { flex-direction: column; width: 100%; }
    .btn-solid { width: 100%; justify-content: center; }
    .nav-cta { display: none; }

    .form-row { grid-template-columns: 1fr; }
    .btn-submit { width: 100%; justify-content: center; }

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

    .story-img img { aspect-ratio: 4/3; }

    .location-links { flex-direction: column; }
    .location-links .btn-solid { width: 100%; justify-content: center; }
    .location-contact { flex-direction: column; gap: 1.2rem; }

    .menu-hero { height: 200px; }
    .menu-hero-title { font-size: clamp(2rem, 8vw, 3rem); }
    .menu-card { min-height: 180px; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}
