@font-face {
  font-family: "Pricedown";
  src: url("assets/fonts/pricedown-black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #070817;
  --ink-soft: #0c0d21;
  --panel: #101126;
  --cream: #fff9ed;
  --muted: #bebccd;
  --coral: #ff725f;
  --pink: #f24d89;
  --peach: #ff9c70;
  --line: rgba(255, 112, 105, 0.5);
  --line-soft: rgba(255, 141, 115, 0.2);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.44);
  --shell: min(1360px, calc(100% - 80px));
  --header-height: 104px;
}

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

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  color: var(--cream);
  background:
    radial-gradient(circle at 75% 34%, rgba(95, 24, 75, 0.18), transparent 30rem),
    linear-gradient(180deg, #070817 0%, #08091a 60%, #0d0c22 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
}

body.menu-open { overflow: hidden; }

img { display: block; max-width: 100%; }
[hidden] { display: none !important; }
button, input, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { color: inherit; }
a { color: inherit; text-decoration: none; }

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 3px solid #ffd0b0;
  outline-offset: 4px;
}

.shell { width: var(--shell); margin-inline: auto; }
.section-anchor { scroll-margin-top: calc(var(--header-height) + 20px); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; clip: rect(0, 0, 0, 0); white-space: nowrap; overflow: hidden; border: 0; }
.skip-link { position: fixed; z-index: 999; top: 12px; left: 12px; padding: 10px 16px; color: var(--ink); background: var(--cream); border-radius: 5px; transform: translateY(-150%); transition: transform 180ms ease; }
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  transition: height 220ms ease, background-color 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled {
  height: 82px;
  background: rgba(6, 7, 20, 0.88);
  border-bottom-color: var(--line-soft);
  box-shadow: 0 14px 50px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
}

.header-inner { height: 100%; display: flex; align-items: center; gap: clamp(22px, 3.4vw, 52px); }
.brand { position: relative; z-index: 2; flex: 0 0 160px; align-self: stretch; display: grid; place-items: center; }
.brand img { width: 154px; max-height: 86px; object-fit: contain; transition: width 220ms ease; }
.is-scrolled .brand img { width: 130px; }

.primary-nav { margin-left: auto; display: flex; align-items: center; gap: clamp(18px, 2.25vw, 36px); height: 100%; }
.nav-link { position: relative; display: grid; place-items: center; height: 100%; color: #e9e5ea; font-size: 0.82rem; font-weight: 750; letter-spacing: 0.045em; text-transform: uppercase; transition: color 180ms ease; }
.nav-link::after { content: ""; position: absolute; left: 50%; bottom: 20px; width: 0; height: 2px; border-radius: 99px; background: linear-gradient(90deg, var(--pink), var(--peach)); transform: translateX(-50%); transition: width 180ms ease; }
.nav-link:hover, .nav-link.is-active { color: var(--coral); }
.nav-link.is-active::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 14px; }
.button {
  position: relative;
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 28px;
  border: 1px solid transparent;
  border-radius: 9px;
  color: #10111f;
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.035em;
  line-height: 1;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: linear-gradient(110deg, var(--pink), #ff9c72); box-shadow: 0 12px 28px rgba(242, 77, 137, 0.2); }
.button-primary:hover { box-shadow: 0 15px 34px rgba(242, 77, 137, 0.34); }
.button-outline { color: #ff7f7c; background: rgba(8, 9, 24, 0.4); border-color: var(--coral); }
.button-outline:hover { background: rgba(255, 114, 95, 0.1); border-color: #ff9f86; }
.button-small { min-height: 48px; padding-inline: 21px; font-size: 0.78rem; }
.button svg { width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.cart-count { position: absolute; top: -9px; right: -8px; min-width: 23px; height: 23px; padding: 0 5px; display: grid; place-items: center; color: white; background: #e93269; border: 2px solid var(--ink); border-radius: 99px; font-size: 0.7rem; }
.menu-toggle { display: none; width: 46px; height: 46px; padding: 11px; margin-left: auto; background: rgba(255,255,255,.04); border: 1px solid var(--line); border-radius: 8px; cursor: pointer; }
.menu-toggle span { display: block; width: 100%; height: 2px; margin-block: 5px; background: var(--cream); border-radius: 2px; transition: transform 180ms ease, opacity 180ms ease; }

.hero { position: relative; min-height: 760px; isolation: isolate; overflow: hidden; border-bottom: 1px solid rgba(255, 105, 103, .13); }
.hero::after { content: ""; position: absolute; z-index: 4; inset: auto 0 0; height: 180px; pointer-events: none; background: linear-gradient(transparent, var(--ink)); }
.hero-backdrop { position: absolute; z-index: -3; inset: 0; background-image: linear-gradient(90deg, rgba(5, 6, 19, .98) 0%, rgba(5, 6, 19, .9) 29%, rgba(5, 6, 19, .34) 55%, rgba(5, 6, 19, .08) 82%, rgba(5, 6, 19, .16) 100%), url("assets/images/hero-menu-compilation-v2.webp"); background-position: center; background-size: cover; }
.hero-glow { position: absolute; z-index: -2; width: 480px; height: 480px; border-radius: 50%; filter: blur(90px); opacity: .13; pointer-events: none; }
.hero-glow-one { right: -80px; top: 70px; background: #ef2f83; }
.hero-glow-two { left: 31%; bottom: -260px; background: #ff6b46; }
.hero-inner { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(430px, .8fr) minmax(560px, 1.2fr); min-height: 760px; padding-top: 150px; padding-bottom: 90px; }
.hero-copy { position: relative; z-index: 5; align-self: center; padding-left: clamp(0px, 1.5vw, 24px); }
.eyebrow { margin: 0 0 4px; color: #f15387; font-size: clamp(2rem, 3.5vw, 3.4rem); font-weight: 950; font-style: italic; letter-spacing: -0.065em; line-height: 1; text-transform: uppercase; transform: rotate(-3deg); transform-origin: left; }
.hero h1 { margin: 0; font-family: "Pricedown", Impact, sans-serif; font-size: clamp(6rem, 9vw, 9.6rem); font-weight: 900; letter-spacing: 0.015em; line-height: .78; text-transform: uppercase; text-shadow: 0 11px 30px rgba(0,0,0,.28); }
.hero h1 span, .hero h1 strong { display: block; font: inherit; }
.hero h1 span { color: #f2f0eb; text-shadow: 2px 2px 0 #a9a6ad, 0 12px 30px rgba(0,0,0,.4); }
.hero h1 strong { padding-right: 18px; color: #ff7c76; background: linear-gradient(180deg, #ec4e91 8%, #ff9a6d 96%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; filter: drop-shadow(2px 2px 0 rgba(245,178,153,.1)); }
.hero-lede { margin: 24px 0 22px 3px; color: #f0ebed; font-size: clamp(1rem, 1.35vw, 1.28rem); letter-spacing: .035em; }
.hero-actions { display: flex; gap: 14px; }

.proof-strip { display: flex; width: max-content; max-width: 100%; margin-top: 25px; padding: 12px 4px; border: 1px solid var(--line); border-radius: 11px; background: rgba(9, 10, 27, .56); backdrop-filter: blur(8px); }
.proof-item { display: flex; align-items: center; gap: 10px; min-width: 132px; padding: 0 18px; border-right: 1px solid var(--line); }
.proof-item:last-child { border-right: 0; }
.proof-item svg { flex: 0 0 34px; width: 34px; height: 34px; fill: none; stroke: var(--coral); stroke-width: 1.5; }
.proof-item text { fill: var(--coral); stroke: none; font-size: 7px; font-weight: 900; text-anchor: middle; }
.proof-item span { color: #a9a7b9; font-size: .68rem; letter-spacing: .045em; text-transform: uppercase; }
.proof-item strong { display: block; color: #ff8d75; font-size: .78rem; }

.signature { position: relative; z-index: 5; padding: 34px 0 26px; }
.section-heading { display: flex; align-items: center; justify-content: center; gap: 15px; margin-bottom: 24px; }
.section-heading > span { width: 120px; height: 1px; background: linear-gradient(90deg, transparent, var(--coral)); }
.section-heading > span:last-child { transform: rotate(180deg); }
.section-heading p { display: flex; align-items: center; gap: 15px; margin: 0; color: #f0edf0; font-family: "Arial Narrow", sans-serif; font-size: clamp(1.2rem, 2vw, 1.7rem); font-stretch: condensed; letter-spacing: .22em; text-transform: uppercase; white-space: nowrap; }
.section-heading p strong { color: var(--coral); font-weight: 900; }
.section-heading b { color: var(--coral); font-size: .72rem; }

.menu-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; align-items: stretch; }
.dish-card { position: relative; min-width: 0; display: flex; flex-direction: column; overflow: hidden; border: 1px solid rgba(255, 112, 105, .42); border-radius: 15px; background: linear-gradient(155deg, rgba(19, 19, 44, .98), rgba(8, 9, 25, .98)); box-shadow: inset 0 1px rgba(255,255,255,.035), 0 15px 38px rgba(0,0,0,.17); transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease; }
.dish-card:hover { transform: translateY(-6px); border-color: rgba(255,125,112,.9); box-shadow: 0 24px 50px rgba(0,0,0,.3), 0 0 30px rgba(242,77,137,.08); }
.dish-card:last-child { grid-column: 2 / span 2; width: calc(50% - 9px); justify-self: center; }
.dish-media { position: relative; aspect-ratio: 1.52 / 1; display: grid; place-items: center; overflow: hidden; padding: 12px 10px 5px; border-bottom: 1px solid var(--line-soft); background: radial-gradient(circle at 52% 48%, rgba(255, 156, 112, .15), transparent 56%), linear-gradient(180deg, rgba(27, 26, 53, .98), rgba(12, 13, 32, .92)); }
.dish-media::after { content: ""; position: absolute; inset: auto 8% 7px; height: 18px; border-radius: 50%; background: rgba(0,0,0,.38); filter: blur(11px); }
.dish-media picture { z-index: 1; width: 100%; height: 100%; }
.dish-media img { width: 100%; height: 100%; object-fit: contain; filter: drop-shadow(0 16px 14px rgba(0,0,0,.4)); transition: transform 260ms ease; }
.dish-card:hover .dish-media img { transform: scale(1.045); }
.dish-price { position: absolute; z-index: 3; left: 14px; bottom: 13px; display: inline-flex; align-items: center; min-height: 36px; padding: 0 13px; color: #111121; background: linear-gradient(120deg, #f65b8f, #ffa06f); border: 1px solid rgba(255,255,255,.18); border-radius: 7px; box-shadow: 0 8px 22px rgba(0,0,0,.3); font-size: 1.04rem; font-weight: 950; letter-spacing: .015em; white-space: nowrap; }
.dish-copy { flex: 1; display: flex; flex-direction: column; min-height: 190px; padding: 19px 18px 18px; }
.dish-card h2 { margin: 0; color: #f7f1ec; font-family: "Pricedown", Impact, sans-serif; font-size: 1.8rem; font-weight: 900; line-height: .95; letter-spacing: .045em; text-transform: uppercase; }
.dish-description { flex: 1; margin: 12px 0 17px; color: #aaa8ba; font-size: .67rem; font-weight: 650; line-height: 1.65; letter-spacing: .025em; }
.add-button { position: relative; z-index: 4; width: 100%; min-height: 43px; display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 0 15px; color: #111121; background: linear-gradient(110deg, var(--pink), var(--peach)); border: 0; border-radius: 8px; box-shadow: 0 9px 24px rgba(242,77,137,.17); font-size: .75rem; font-weight: 950; letter-spacing: .065em; line-height: 1; text-transform: uppercase; cursor: pointer; transition: transform 160ms ease, box-shadow 160ms ease; }
.add-button span:last-child { font-size: 1.3rem; line-height: 1; }
.add-button:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(242,77,137,.3); }
.add-button.is-added { animation: added 350ms ease; }

.deal { padding: 0 0 28px; }
.deal-panel { position: relative; min-height: 210px; display: grid; grid-template-columns: 1.05fr 1.1fr 2fr 1.12fr; align-items: center; overflow: hidden; border: 1px solid var(--line); border-radius: 13px; background: radial-gradient(circle at 68% 50%, rgba(195, 36, 97, .18), transparent 32%), linear-gradient(115deg, #111126, #090a1b); box-shadow: var(--shadow); }
.deal-panel::before { content: ""; position: absolute; inset: 0; opacity: .18; pointer-events: none; background-image: linear-gradient(120deg, transparent 25%, rgba(255,255,255,.035) 25%, rgba(255,255,255,.035) 26%, transparent 26%); background-size: 50px 50px; }
.deal-title-wrap { padding-left: clamp(20px, 3vw, 48px); }
.deal-title { margin: 0; color: #ff7976; font-family: "Pricedown", Impact, sans-serif; font-size: clamp(3rem, 4.2vw, 4.6rem); letter-spacing: .02em; line-height: .78; text-transform: uppercase; }
.deal-title span { display: block; color: #f2eeea; }
.deal-list { position: relative; z-index: 2; margin: 0; padding: 0; list-style: none; }
.deal-list li { margin: 7px 0; color: #ded9df; font-size: .78rem; letter-spacing: .025em; text-transform: uppercase; }
.deal-list li::before { content: ""; width: 5px; height: 5px; display: inline-block; margin: 0 10px 2px 0; background: var(--coral); border-radius: 50%; }
.deal-food { position: relative; align-self: stretch; min-width: 0; }
.deal-food > img, .deal-food > picture { position: absolute; display: block; object-fit: contain; filter: drop-shadow(0 17px 16px rgba(0,0,0,.55)); }
.deal-food picture img { position: static; width: 100%; height: auto; object-fit: contain; }
.deal-food > :nth-child(1) { z-index: 2; left: -5%; bottom: -27%; width: 52%; }
.deal-food > :nth-child(2) { z-index: 3; left: 31%; bottom: -20%; width: 48%; }
.deal-food > :nth-child(3) { z-index: 1; right: -2%; bottom: -4%; width: 42%; }
.deal-food > :nth-child(4) { z-index: 4; right: -2%; bottom: -13%; width: 22%; }
.deal-cta { position: relative; z-index: 4; text-align: center; padding-right: 28px; }
.deal-cta p { margin: 0 0 -2px; color: #ff7e80; font-size: 1rem; font-weight: 900; font-style: italic; text-transform: uppercase; transform: rotate(-2deg); }
.deal-cta strong { display: block; color: #ff866e; font-size: clamp(2.7rem, 4vw, 4.2rem); line-height: .94; }
.deal-cta small { margin-left: 3px; font-size: .45em; }
.deal-cta .button { min-height: 45px; margin-top: 10px; padding-inline: 24px; font-size: .75rem; }

.values { padding: 18px 0 32px; }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.value-item { padding: 2px clamp(25px, 4vw, 58px); text-align: center; border-right: 1px solid var(--line); }
.value-item:last-child { border-right: 0; }
.value-item svg { width: 56px; height: 56px; margin: 0 auto 9px; fill: none; stroke: var(--coral); stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.value-item h3 { margin: 0 0 7px; color: #ff846f; font-family: "Arial Narrow", sans-serif; font-size: .96rem; letter-spacing: .03em; text-transform: uppercase; }
.value-item p { max-width: 210px; margin: 0 auto; color: #bbb8c6; font-size: .82rem; line-height: 1.45; }

.site-footer { padding: 23px 0 8px; border-top: 1px solid rgba(255, 120, 105, .22); background: linear-gradient(90deg, rgba(52,18,51,.48), rgba(15,14,38,.9) 40%, rgba(36,18,49,.58)); }
.footer-grid { display: grid; grid-template-columns: 1.25fr .8fr .9fr 1.45fr 1fr; gap: 0; }
.footer-grid > * { min-height: 126px; padding: 0 30px; border-right: 1px solid var(--line); }
.footer-grid > :first-child { padding-left: 8px; }
.footer-grid > :last-child { padding-right: 0; border-right: 0; }
.footer-brand img { width: 130px; max-height: 65px; object-fit: contain; object-position: left center; }
.footer-brand p, .footer-column p, .footer-column a { color: #aaa7b7; font-size: .73rem; line-height: 1.5; }
.footer-brand p { margin: 7px 0 0; }
.footer-column { display: flex; flex-direction: column; align-items: flex-start; }
.footer-column h2 { margin: 5px 0 10px; color: #ede8ea; font-family: "Arial Narrow", sans-serif; font-size: .88rem; letter-spacing: .07em; text-transform: uppercase; }
.footer-column > a:hover { color: var(--coral); }
.footer-contact a, .footer-contact p { margin: 0 0 8px; }
.footer-contact span { display: inline-block; min-width: 22px; color: var(--coral); }
.social-links { display: flex; gap: 7px; }
.social-links a { width: 30px; height: 30px; display: grid; place-items: center; color: var(--coral); border: 1px solid var(--line); border-radius: 50%; font-size: .68rem; font-weight: 900; text-transform: uppercase; transition: color 160ms ease, background 160ms ease; }
.social-links a:hover { color: var(--ink); background: var(--coral); }
.location-column .button { margin-top: 10px; color: var(--coral); font-size: .67rem; }
.copyright { margin: 10px 0 0; color: #706d82; font-size: .68rem; text-align: center; }

.action-dialog { width: min(570px, calc(100% - 32px)); max-height: min(760px, calc(100vh - 32px)); padding: 0; overflow: auto; color: var(--cream); background: linear-gradient(155deg, #17172f, #090a1c 70%); border: 1px solid var(--line); border-radius: 18px; box-shadow: 0 40px 110px rgba(0,0,0,.75); }
.action-dialog::backdrop { background: rgba(2, 3, 12, .76); backdrop-filter: blur(8px); }
.action-dialog[open] { animation: dialog-in 200ms ease-out; }
.dialog-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; padding: 26px 28px 20px; border-bottom: 1px solid var(--line-soft); }
.dialog-kicker { margin: 0; color: var(--coral); font-size: .68rem; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.dialog-top h2 { margin: 1px 0 0; font-family: "Pricedown", Impact, sans-serif; font-size: 3.2rem; font-weight: 900; letter-spacing: .04em; line-height: 1; text-transform: uppercase; }
.dialog-close { width: 38px; height: 38px; flex: 0 0 auto; display: grid; place-items: center; padding: 0 0 4px; color: #ded9e0; background: rgba(255,255,255,.04); border: 1px solid var(--line); border-radius: 50%; font-size: 1.7rem; cursor: pointer; }
.cart-lines { padding: 10px 28px 0; }
.cart-line { display: grid; grid-template-columns: 1fr auto auto; align-items: center; gap: 15px; padding: 13px 0; border-bottom: 1px solid var(--line-soft); }
.cart-line strong { display: block; font-size: .88rem; }.cart-line small { color: var(--muted); }
.cart-line-price { color: #ff8c73; font-weight: 800; white-space: nowrap; }
.cart-remove { width: 28px; height: 28px; padding: 0; color: #d9d4dc; background: transparent; border: 1px solid rgba(255,255,255,.18); border-radius: 50%; cursor: pointer; }
.cart-empty { padding: 28px; text-align: center; }.cart-empty p { max-width: 380px; margin: 0 auto 20px; color: var(--muted); }
.cart-checkout { padding: 0 28px 28px; }
.cart-total { display: flex; justify-content: space-between; align-items: baseline; margin: 15px 0 18px; }.cart-total span { color: var(--muted); }.cart-total strong { color: #ff8c73; font-size: 1.35rem; }
.quick-form, .booking-form { display: grid; gap: 9px; }.booking-form { padding: 24px 28px 28px; }.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }.form-row > div { display: grid; gap: 9px; }
.quick-form label, .booking-form label { color: #d9d5dc; font-size: .74rem; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; }
.quick-form input, .booking-form input, .booking-form select { width: 100%; min-height: 48px; padding: 0 14px; color: var(--cream); color-scheme: dark; background: rgba(255,255,255,.045); border: 1px solid rgba(255,255,255,.14); border-radius: 7px; }
.quick-form input::placeholder, .booking-form input::placeholder { color: #777486; }
.quick-form .button, .booking-form .button { margin-top: 7px; }
.form-note { margin: 2px 0 0; color: #817e90; font-size: .7rem; text-align: center; }
.toast { position: fixed; z-index: 500; right: 24px; bottom: 24px; max-width: min(390px, calc(100% - 32px)); padding: 15px 18px; color: #13131f; background: linear-gradient(110deg, #ff7691, #ffa66f); border-radius: 9px; box-shadow: 0 18px 50px rgba(0,0,0,.5); font-size: .84rem; font-weight: 850; transform: translateY(calc(100% + 35px)); opacity: 0; transition: transform 220ms ease, opacity 220ms ease; }
.toast.is-visible { transform: translateY(0); opacity: 1; }

@keyframes added { 50% { transform: scale(1.025); box-shadow: 0 0 0 9px rgba(255,115,100,.12); } }
@keyframes dialog-in { from { opacity: 0; transform: translateY(18px) scale(.97); } }

@media (max-width: 1279px) {
  .menu-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .dish-card:last-child { grid-column: 2; width: auto; justify-self: stretch; }
}

@media (max-width: 1240px) {
  :root { --shell: min(1120px, calc(100% - 48px)); }
  .header-inner { gap: 23px; }.primary-nav { gap: 18px; }.header-book { display: none; }
  .hero-inner { grid-template-columns: minmax(390px, .82fr) minmax(480px, 1.18fr); }
  .deal-panel { grid-template-columns: 1fr 1.15fr 1.75fr 1fr; }
  .footer-grid > * { padding-inline: 20px; }
}

@media (max-width: 960px) {
  :root { --header-height: 82px; --shell: min(780px, calc(100% - 36px)); }
  .site-header { height: var(--header-height); background: rgba(6,7,20,.84); backdrop-filter: blur(18px); }
  .brand { flex-basis: 126px; }.brand img, .is-scrolled .brand img { width: 122px; }
  .menu-toggle { position: relative; z-index: 105; display: block; order: 3; }
  .menu-open .menu-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }.menu-open .menu-toggle span:nth-child(2) { opacity: 0; }.menu-open .menu-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .primary-nav { position: fixed; z-index: 100; inset: 0; display: flex; flex-direction: column; justify-content: center; gap: 3px; padding: 96px 30px 35px; background: radial-gradient(circle at 70% 15%, rgba(239,47,131,.15), transparent 22rem), rgba(7,8,23,.98); visibility: hidden; opacity: 0; transform: translateY(-10px); transition: visibility 180ms, opacity 180ms ease, transform 180ms ease; }
  .menu-open .primary-nav { visibility: visible; opacity: 1; transform: translateY(0); }
  .nav-link { flex: 0 0 auto; height: auto; padding: 11px 20px; font-family: "Pricedown", Impact, sans-serif; font-size: 2.35rem; letter-spacing: .04em; line-height: 1; }
  .nav-link::after { bottom: 5px; }.nav-link.is-active::after { width: 40px; }
  .header-actions { margin-left: auto; }.header-actions .button { min-height: 43px; padding-inline: 17px; }
  .hero { min-height: auto; }.hero-inner { grid-template-columns: 1fr; min-height: auto; padding-top: 130px; padding-bottom: 55px; }
  .hero-copy { max-width: 530px; padding: 0; }.hero h1 { font-size: clamp(6rem, 18vw, 9rem); }
  .menu-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .dish-card:last-child { grid-column: 1 / -1; width: calc(50% - 9px); justify-self: center; }
  .deal-panel { grid-template-columns: 1fr 1fr; min-height: 470px; padding: 28px; }.deal-title-wrap { padding-left: 0; }.deal-food { grid-column: 1 / -1; position: absolute; inset: 155px 190px 0 0; }.deal-cta { padding-right: 0; }.deal-list { justify-self: end; }.deal-food > :nth-child(1) { left: 3%; }.deal-food > :nth-child(2) { left: 38%; }.deal-food > :nth-child(3) { right: -8%; }.deal-food > :nth-child(4) { right: -10%; bottom: -8%; width: 25%; }
  .values-grid { grid-template-columns: 1fr 1fr; row-gap: 30px; }.value-item:nth-child(2) { border-right: 0; }.value-item { min-height: 145px; }
  .footer-grid { grid-template-columns: 1.2fr .8fr 1fr; row-gap: 28px; }.footer-grid > * { border-right: 1px solid var(--line); }.footer-grid > :nth-child(3) { border-right: 0; }.footer-grid > :nth-child(4) { padding-left: 8px; }.footer-grid > :last-child { padding-right: 0; }
}

@media (max-width: 640px) {
  :root { --shell: calc(100% - 28px); }
  body { font-size: 15px; }
  .header-inner { gap: 10px; }.brand { flex-basis: 105px; }.brand img, .is-scrolled .brand img { width: 103px; }.header-actions .button { min-height: 40px; padding-inline: 12px; font-size: .65rem; }.menu-toggle { width: 41px; height: 41px; padding: 9px; }
  .hero { min-height: 830px; }
  .hero-backdrop { background-image: linear-gradient(180deg, rgba(5,6,19,.99) 0%, rgba(5,6,19,.96) 52%, rgba(5,6,19,.56) 67%, rgba(5,6,19,.08) 100%), url("assets/images/hero-menu-compilation-v2.webp"); background-position: center, center bottom; background-size: 100% 100%, 100% auto; background-repeat: no-repeat; }
  .hero-inner { min-height: 830px; padding-top: 116px; padding-bottom: 300px; }.hero-copy { width: 100%; }.eyebrow { font-size: 2rem; }.hero h1 { font-size: clamp(5.3rem, 25vw, 7.5rem); }.hero-lede { margin-top: 19px; font-size: .95rem; }
  .hero-actions { gap: 9px; }.hero-actions .button { min-height: 49px; padding: 0 16px; font-size: .7rem; }
  .proof-strip { width: 100%; padding-block: 10px; }.proof-item { flex: 1 1 0; min-width: 0; padding: 0 8px; gap: 5px; }.proof-item svg { width: 26px; flex-basis: 26px; }.proof-item span { font-size: .5rem; }.proof-item strong { font-size: .58rem; }
  .signature { padding-top: 20px; }.section-heading { gap: 8px; }.section-heading > span { width: 38px; }.section-heading p { gap: 8px; font-size: .98rem; letter-spacing: .14em; }
  .menu-grid { grid-template-columns: 1fr; gap: 15px; }
  .dish-card:last-child { grid-column: auto; width: auto; justify-self: stretch; }
  .dish-copy { min-height: 178px; padding: 18px 17px 17px; }
  .dish-card h2 { font-size: 1.65rem; }
  .dish-description { font-size: .66rem; }
  .deal-panel { grid-template-columns: 1fr; min-height: 585px; padding: 25px; text-align: center; }.deal-title-wrap { align-self: end; }.deal-title { font-size: 3.9rem; }.deal-list { justify-self: center; text-align: left; }.deal-food { inset: 265px 0 82px 0; }.deal-food > :nth-child(1) { left: -8%; width: 55%; }.deal-food > :nth-child(2) { left: 28%; width: 57%; }.deal-food > :nth-child(3) { right: -9%; width: 48%; }.deal-food > :nth-child(4) { right: -4%; bottom: -12%; width: 27%; }.deal-cta { align-self: end; }.deal-cta strong { font-size: 3.5rem; }.deal-cta p { display: none; }.deal-cta .button { margin-top: 4px; }
  .values { padding-top: 8px; }.values-grid { grid-template-columns: 1fr; row-gap: 0; }.value-item { min-height: auto; padding: 24px; border-right: 0; border-bottom: 1px solid var(--line); }.value-item:last-child { border-bottom: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; row-gap: 25px; }.footer-grid > * { min-height: auto; padding: 0 18px; }.footer-grid > :nth-child(2) { border-right: 0; }.footer-grid > :nth-child(3) { padding-left: 8px; border-right: 1px solid var(--line); }.footer-grid > :nth-child(4) { padding-left: 18px; border-right: 0; }.footer-grid > :nth-child(5) { padding-left: 8px; }.footer-brand { padding-left: 8px; }.location-column { grid-column: 1 / -1; }
  .dialog-top { padding: 22px 20px 16px; }.dialog-top h2 { font-size: 2.6rem; }.cart-lines { padding-inline: 20px; }.cart-empty, .cart-checkout, .booking-form { padding: 22px 20px; }.form-row { grid-template-columns: 1fr; }
  .toast { right: 16px; bottom: 16px; }
}

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

/* Content, menu and conversion upgrade — August 2026 */
.hero-lede { max-width: 610px; line-height: 1.65; }
.section-kicker { margin: 0 0 8px; color: var(--coral); font-size: .73rem; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
.text-link { color: #ff8b78; font-size: .82rem; font-weight: 850; text-decoration: underline; text-decoration-color: rgba(255,139,120,.4); text-underline-offset: 5px; }
.text-link:hover { color: #ffb097; text-decoration-color: currentColor; }

.menu-toolbar { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin: 0 0 26px; padding: 0 2px; }
.menu-toolbar h2 { max-width: 690px; margin: 0; color: #f5f1ee; font-family: "Pricedown", Impact, sans-serif; font-size: clamp(2.3rem, 4vw, 4rem); font-weight: 900; letter-spacing: .025em; line-height: .92; text-transform: uppercase; }
.menu-filters { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 8px; }
.filter-button { min-height: 42px; padding: 0 15px; color: #b9b6c5; background: rgba(255,255,255,.035); border: 1px solid rgba(255,255,255,.12); border-radius: 999px; font-size: .69rem; font-weight: 850; letter-spacing: .055em; text-transform: uppercase; cursor: pointer; transition: color 160ms ease, background 160ms ease, border-color 160ms ease, transform 160ms ease; }
.filter-button:hover { color: #fff; border-color: rgba(255,133,111,.52); transform: translateY(-1px); }
.filter-button.is-active { color: #111121; background: linear-gradient(110deg, var(--pink), var(--peach)); border-color: transparent; }
.dish-card:last-child { grid-column: auto; width: auto; justify-self: stretch; }
.dish-card[hidden] { display: none; }
.dish-category { position: absolute; z-index: 3; top: 13px; left: 14px; padding: 6px 9px; color: #e8e2e8; background: rgba(7,8,23,.78); border: 1px solid rgba(255,255,255,.13); border-radius: 999px; backdrop-filter: blur(8px); font-size: .59rem; font-weight: 850; letter-spacing: .07em; text-transform: uppercase; }
.dish-card h3 { margin: 0; color: #f7f1ec; font-family: "Pricedown", Impact, sans-serif; font-size: 1.8rem; font-weight: 900; line-height: .95; letter-spacing: .045em; text-transform: uppercase; }
.dish-description { text-transform: none; }
.menu-note { max-width: 880px; margin: 24px auto 0; color: #858294; font-size: .72rem; line-height: 1.6; text-align: center; }

.concept { position: relative; padding: 100px 0 92px; overflow: hidden; border-block: 1px solid rgba(255,112,105,.14); background: radial-gradient(circle at 8% 48%, rgba(240,66,133,.13), transparent 30rem), linear-gradient(145deg, rgba(13,14,35,.98), rgba(6,7,20,.98)); }
.concept::after { content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .15; background-image: linear-gradient(120deg, transparent 24%, rgba(255,255,255,.025) 24%, rgba(255,255,255,.025) 25%, transparent 25%); background-size: 58px 58px; }
.concept-grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(400px, .9fr) minmax(500px, 1.1fr); align-items: center; gap: clamp(60px, 8vw, 125px); }
.concept-visual { position: relative; min-height: 570px; }
.concept-frame { position: absolute; inset: 0 10% 0 0; display: grid; place-items: center; overflow: hidden; border: 1px solid rgba(255,123,105,.35); border-radius: 28px 110px 28px 28px; background: radial-gradient(circle, rgba(255,124,107,.16), transparent 56%), #0d0e25; box-shadow: var(--shadow); }
.concept-frame::before { content: ""; position: absolute; z-index: 2; inset: 28px; pointer-events: none; border: 1px solid rgba(255,255,255,.08); border-radius: 18px 88px 18px 18px; }
.concept-frame picture { width: 100%; height: 100%; }
.concept-frame picture img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.concept-stamp { position: absolute; right: 0; bottom: 42px; min-width: 180px; margin: 0; padding: 22px 24px; color: #111121; background: linear-gradient(125deg, #f4518a, #ffa071); border-radius: 12px; box-shadow: 0 18px 45px rgba(0,0,0,.35); font-family: "Pricedown", Impact, sans-serif; font-size: 2rem; letter-spacing: .035em; line-height: .82; text-align: center; text-transform: uppercase; transform: rotate(-3deg); }
.concept-stamp span { display: block; color: #fff9ed; }
.concept-copy h2 { max-width: 760px; margin: 0 0 23px; font-family: "Pricedown", Impact, sans-serif; font-size: clamp(3.5rem, 6vw, 6.1rem); font-weight: 900; letter-spacing: .02em; line-height: .84; text-transform: uppercase; }
.concept-copy > p:not(.section-kicker) { max-width: 730px; color: #aaa8b8; line-height: 1.75; }
.concept-copy .concept-lede { color: #e8e3e4 !important; font-size: 1.05rem; }
.concept-points { display: grid; gap: 0; margin-top: 28px; border-block: 1px solid var(--line-soft); }
.concept-points article { display: grid; grid-template-columns: 46px 1fr; gap: 16px; padding: 17px 0; border-bottom: 1px solid var(--line-soft); }
.concept-points article:last-child { border-bottom: 0; }
.concept-points article > span { width: 38px; height: 38px; display: grid; place-items: center; color: #161321; background: linear-gradient(125deg, #f4518a, #ffa071); border-radius: 50%; font-size: .72rem; font-weight: 950; }
.concept-points h3 { margin: 1px 0 3px; color: #f2edef; font-size: .88rem; letter-spacing: .045em; text-transform: uppercase; }
.concept-points p { margin: 0; color: #8f8c9e; font-size: .79rem; line-height: 1.55; }
.concept-actions { display: flex; align-items: center; gap: 25px; margin-top: 28px; }

.values { padding: 72px 0 82px; }
.values .section-heading { margin-bottom: 42px; }

.reservation { padding: 90px 0; background: radial-gradient(circle at 74% 45%, rgba(242,77,137,.11), transparent 25rem); }
.reservation-panel { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(330px, .65fr); overflow: hidden; border: 1px solid var(--line); border-radius: 24px; background: linear-gradient(135deg, rgba(18,18,44,.98), rgba(8,9,25,.98)); box-shadow: var(--shadow); }
.reservation-copy { padding: clamp(38px, 6vw, 78px); }
.reservation-copy h2 { max-width: 760px; margin: 0 0 20px; font-family: "Pricedown", Impact, sans-serif; font-size: clamp(3.4rem, 5.8vw, 6rem); font-weight: 900; letter-spacing: .025em; line-height: .82; text-transform: uppercase; }
.reservation-copy > p:not(.section-kicker) { max-width: 720px; color: #a8a5b6; line-height: 1.72; }
.reservation-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin: 34px 0 0; padding: 0; list-style: none; }
.reservation-steps li { display: flex; align-items: flex-start; gap: 12px; }
.reservation-steps li > span { flex: 0 0 30px; width: 30px; height: 30px; display: grid; place-items: center; color: #161321; background: #ff8976; border-radius: 50%; font-size: .69rem; font-weight: 950; }
.reservation-steps strong { display: block; margin-bottom: 4px; color: #f3edef; font-size: .78rem; text-transform: uppercase; }
.reservation-steps small { display: block; color: #777486; font-size: .68rem; line-height: 1.5; }
.reservation-action { display: flex; flex-direction: column; justify-content: center; padding: clamp(34px, 4vw, 58px); border-left: 1px solid var(--line-soft); background: radial-gradient(circle at 100% 0, rgba(255,149,106,.14), transparent 18rem), rgba(255,255,255,.025); }
.availability-label { display: flex; align-items: center; gap: 9px; margin: 0 0 18px; color: #aaa6b5; font-size: .66rem; font-weight: 800; letter-spacing: .075em; text-transform: uppercase; }
.availability-label span { width: 8px; height: 8px; background: #ff8b74; border-radius: 50%; box-shadow: 0 0 0 5px rgba(255,139,116,.12); }
.reservation-action h3 { margin: 0 0 10px; font-family: "Pricedown", Impact, sans-serif; font-size: 2.5rem; letter-spacing: .025em; line-height: 1; text-transform: uppercase; }
.reservation-action > p:not(.availability-label) { margin: 0 0 22px; color: #9794a5; font-size: .83rem; line-height: 1.6; }
.button-wide { width: 100%; margin-top: 10px; }
.reservation-action > small { margin-top: 16px; color: #777485; font-size: .67rem; line-height: 1.55; text-align: center; }

.contact { padding: 88px 0 92px; border-top: 1px solid rgba(255,112,105,.13); background: linear-gradient(180deg, rgba(11,11,31,.35), rgba(15,12,32,.88)); }
.contact-intro { display: grid; grid-template-columns: minmax(350px, .8fr) minmax(420px, 1.2fr); align-items: end; gap: 80px; margin-bottom: 40px; }
.contact-intro h2 { margin: 0; font-family: "Pricedown", Impact, sans-serif; font-size: clamp(3.5rem, 5.5vw, 5.8rem); font-weight: 900; letter-spacing: .02em; line-height: .83; text-transform: uppercase; }
.contact-intro > p { max-width: 690px; margin: 0; color: #aaa7b8; line-height: 1.75; }
.contact-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.contact-card { min-width: 0; display: grid; grid-template-columns: 50px minmax(0, 1fr); align-items: center; gap: 15px; padding: 21px; border: 1px solid rgba(255,255,255,.1); border-radius: 14px; background: linear-gradient(145deg, rgba(24,24,51,.82), rgba(10,11,29,.9)); transition: transform 180ms ease, border-color 180ms ease, background 180ms ease; }
.contact-card:hover { transform: translateY(-4px); border-color: rgba(255,126,106,.6); background: linear-gradient(145deg, rgba(31,26,55,.9), rgba(12,12,32,.96)); }
.contact-icon { width: 50px; height: 50px; display: grid; place-items: center; color: #ff8876; background: rgba(255,126,109,.07); border: 1px solid rgba(255,126,109,.25); border-radius: 12px; }
.contact-icon svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 1.55; stroke-linecap: round; stroke-linejoin: round; }
.contact-card > span:last-child { min-width: 0; }
.contact-card small, .contact-card strong, .contact-card em { display: block; overflow-wrap: anywhere; }
.contact-card small { margin-bottom: 3px; color: #777486; font-size: .61rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.contact-card strong { color: #eee9e9; font-size: .8rem; }
.contact-card em { margin-top: 4px; color: #ff8876; font-size: .65rem; font-style: normal; }
.contact-note { max-width: 820px; margin: 23px auto 0; color: #777486; font-size: .7rem; line-height: 1.6; text-align: center; }

.site-footer { padding-top: 42px; }
.footer-column > a { margin-bottom: 5px; }
.footer-brand p { max-width: 190px; }

.action-dialog { width: min(720px, calc(100% - 32px)); }
.booking-dialog { width: min(760px, calc(100% - 32px)); }
.dialog-close { padding: 0; }
.dialog-close svg { width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; }
.quick-form, .booking-form { gap: 11px; }
.quick-form textarea, .quick-form select, .booking-form textarea { width: 100%; padding: 13px 14px; color: var(--cream); color-scheme: dark; background: rgba(255,255,255,.045); border: 1px solid rgba(255,255,255,.14); border-radius: 7px; resize: vertical; }
.quick-form select { min-height: 48px; padding-block: 0; }
.quick-form textarea::placeholder, .booking-form textarea::placeholder { color: #777486; }
.label-optional { color: #777486; font-size: .62rem; font-weight: 650; text-transform: none; }
.check-label { display: grid !important; grid-template-columns: 18px 1fr; align-items: start; gap: 10px; margin: 4px 0; color: #9794a4 !important; font-size: .68rem !important; font-weight: 550 !important; letter-spacing: 0 !important; line-height: 1.5; text-transform: none !important; }
.check-label input { width: 17px; min-height: 17px; margin: 1px 0 0; accent-color: var(--coral); }
.check-label a { color: #ff917c; text-decoration: underline; text-underline-offset: 3px; }
.cart-line { grid-template-columns: minmax(0, 1fr) auto auto; }
.cart-line-copy { min-width: 0; }
.cart-quantity { display: grid; grid-template-columns: 30px 28px 30px; align-items: center; text-align: center; }
.cart-quantity-button { width: 30px; height: 30px; display: grid; place-items: center; padding: 0; color: #f1ebed; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.16); border-radius: 50%; cursor: pointer; }
.cart-quantity-button:hover { color: #111121; background: #ff8b76; border-color: #ff8b76; }
.cart-quantity > span { color: #e9e4e8; font-size: .8rem; font-weight: 850; }
.cart-total strong { color: #ff8c73; }

.whatsapp-float { position: fixed; z-index: 90; right: 22px; bottom: 22px; min-height: 54px; display: flex; align-items: center; gap: 10px; padding: 0 18px; color: #10111f; background: #66d692; border: 1px solid rgba(255,255,255,.38); border-radius: 999px; box-shadow: 0 15px 40px rgba(0,0,0,.42); font-size: .73rem; font-weight: 950; letter-spacing: .045em; text-transform: uppercase; transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease; }
.whatsapp-float:hover { transform: translateY(-3px); background: #78e3a2; box-shadow: 0 20px 48px rgba(0,0,0,.5); }
.whatsapp-float svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }

.legal-page { min-height: 100vh; }
.legal-header { border-bottom: 1px solid var(--line-soft); background: rgba(7,8,23,.92); }
.legal-header .shell { min-height: 92px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.legal-header .brand { flex-basis: 132px; min-height: 82px; }
.legal-header .brand img { width: 130px; }
.legal-main { max-width: 920px; padding-block: 85px 95px; }
.legal-main h1 { max-width: 820px; margin: 0 0 24px; font-family: "Pricedown", Impact, sans-serif; font-size: clamp(4rem, 8vw, 7rem); font-weight: 900; letter-spacing: .02em; line-height: .82; text-transform: uppercase; }
.legal-intro { max-width: 780px; margin: 0 0 55px; color: #c2beca; font-size: 1.08rem; line-height: 1.75; }
.legal-main section { padding: 28px 0; border-top: 1px solid var(--line-soft); }
.legal-main section h2 { margin: 0 0 10px; color: #ff8975; font-size: 1.05rem; letter-spacing: .035em; text-transform: uppercase; }
.legal-main section p { max-width: 820px; margin: 0; color: #a19eaf; line-height: 1.78; }
.legal-main section a { color: #ff917c; text-decoration: underline; text-underline-offset: 4px; }
.legal-footer { padding: 25px 0; border-top: 1px solid var(--line-soft); background: rgba(7,8,23,.78); }
.legal-footer .shell { display: flex; align-items: center; justify-content: space-between; gap: 24px; color: #777486; font-size: .75rem; }
.legal-footer p { margin: 0; }
.legal-footer a { color: #ff8975; }

.error-page { min-height: 100vh; display: grid; place-items: center; padding: 30px; background: radial-gradient(circle at 50% 40%, rgba(242,77,137,.15), transparent 26rem), var(--ink); }
.error-page main { width: min(680px, 100%); text-align: center; }
.error-page img { width: 155px; margin: 0 auto 18px; }
.error-code { margin: 0; color: #ff8975; font-family: "Pricedown", Impact, sans-serif; font-size: clamp(6rem, 20vw, 12rem); letter-spacing: .03em; line-height: .72; }
.error-page h1 { margin: 25px 0 14px; font-family: "Pricedown", Impact, sans-serif; font-size: clamp(2.8rem, 8vw, 5rem); letter-spacing: .025em; line-height: .9; text-transform: uppercase; }
.error-page main > p:not(.error-code) { max-width: 590px; margin: 0 auto; color: #a19eaf; line-height: 1.7; }
.error-actions { display: flex; justify-content: center; gap: 12px; margin-top: 30px; }

@media (max-width: 1180px) {
  .concept-grid { grid-template-columns: minmax(330px, .82fr) minmax(450px, 1.18fr); gap: 55px; }
  .concept-visual { min-height: 500px; }
  .reservation-steps { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 960px) {
  .menu-toolbar { display: grid; }
  .menu-filters { justify-content: flex-start; }
  .concept { padding-block: 72px; }
  .concept-grid { grid-template-columns: 1fr; }
  .concept-visual { width: min(620px, 100%); min-height: 520px; margin-inline: auto; }
  .concept-copy { max-width: 720px; }
  .reservation-panel { grid-template-columns: 1fr; }
  .reservation-action { border-top: 1px solid var(--line-soft); border-left: 0; }
  .contact-intro { grid-template-columns: 1fr; gap: 20px; }
}

@media (max-width: 640px) {
  .hero-copy { text-align: left; }
  .hero-lede { font-size: .91rem; line-height: 1.55; }
  .hero-actions { display: grid; grid-template-columns: 1fr 1fr; }
  .hero-actions .button { padding-inline: 10px; }
  .menu-toolbar { margin-bottom: 20px; }
  .menu-toolbar h2 { font-size: 2.5rem; }
  .menu-filters { display: grid; grid-template-columns: 1fr 1fr; }
  .filter-button { min-height: 40px; padding-inline: 10px; font-size: .61rem; }
  .filter-button:first-child { grid-column: 1 / -1; }
  .concept { padding-block: 58px; }
  .concept-visual { min-height: 390px; }
  .concept-frame { right: 5%; border-radius: 20px 70px 20px 20px; }
  .concept-stamp { bottom: 20px; min-width: 150px; padding: 18px; font-size: 1.65rem; }
  .concept-copy h2 { font-size: 3.5rem; }
  .concept-actions { align-items: flex-start; flex-direction: column; gap: 18px; }
  .values { padding-block: 54px; }
  .reservation { padding-block: 58px; }
  .reservation-panel { border-radius: 18px; }
  .reservation-copy, .reservation-action { padding: 30px 23px; }
  .reservation-copy h2 { font-size: 3.45rem; }
  .contact { padding-block: 58px 72px; }
  .contact-intro h2 { font-size: 3.5rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .site-footer { padding-top: 32px; }
  .cart-line { grid-template-columns: 1fr auto; }
  .cart-line-copy { grid-column: 1 / -1; }
  .cart-line-price { justify-self: end; }
  .whatsapp-float { right: 14px; bottom: 14px; width: 52px; min-height: 52px; justify-content: center; padding: 0; }
  .whatsapp-float span { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }
  .legal-header .shell { min-height: 78px; }
  .legal-header .brand { min-height: 72px; }
  .legal-header .brand img { width: 105px; }
  .legal-main { padding-block: 58px 72px; }
  .legal-main h1 { font-size: 4rem; }
  .legal-footer .shell { align-items: flex-start; flex-direction: column; gap: 8px; }
  .error-actions { flex-direction: column; }
}
