/* ============================================================
   GREEK'S — Landing Page
   Palette: #0D0D0D bg, #F26522 orange, #FFFFFF white
   ============================================================ */

:root {
  --bg: #0D0D0D;
  --bg-2: #161616;
  --bg-3: #1F1F1F;
  --fg: #FFFFFF;
  --fg-muted: #BFBFBF;
  --fg-dim: #6E6E6E;
  --orange: #F26522;
  --orange-hot: #FF7733;
  --line: #2A2A2A;
  --whatsapp: #25D366;

  --display: "Anton", "Archivo Narrow", "Inter", sans-serif;
  --narrow: "Archivo Narrow", "Inter", sans-serif;
  --body: "Inter", system-ui, sans-serif;
  --italic: "Cormorant Garamond", "Times New Roman", serif;

  --max: 1320px;
  --pad: clamp(20px, 4vw, 56px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }

::selection { background: var(--orange); color: var(--bg); }

/* ============= TYPE ============= */
.display {
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: -0.005em;
  line-height: 0.88;
  text-transform: uppercase;
}
.narrow {
  font-family: var(--narrow);
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1;
  text-transform: uppercase;
}
.italic {
  font-family: var(--italic);
  font-style: italic;
  font-weight: 500;
  letter-spacing: -0.005em;
}
.eyebrow {
  font-family: var(--narrow);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 28px; height: 2px;
  background: var(--orange);
}
.orange { color: var(--orange); }
.dim { color: var(--fg-muted); }

/* ============= LAYOUT ============= */
.wrap {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
}
section { position: relative; }

/* ============= NAV ============= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 14px 0;
  background: rgba(13,13,13,0);
  transition: background .25s ease, border-color .25s ease, padding .25s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(13,13,13,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: var(--line);
  padding: 10px 0;
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
}
.nav-logo img { height: 44px; width: auto; }
.nav-links {
  display: flex; gap: 28px;
  font-family: var(--narrow);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.nav-links a {
  color: var(--fg-muted);
  transition: color .2s;
  position: relative;
  padding: 6px 0;
}
.nav-links a:hover { color: var(--fg); }
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0;
  height: 2px; width: 0;
  background: var(--orange);
  transition: width .25s;
}
.nav-links a:hover::after { width: 100%; }

.btn-wa {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--orange);
  color: var(--bg);
  padding: 12px 18px;
  font-family: var(--narrow);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 13px;
  border-radius: 2px;
  transition: transform .15s, background .2s, box-shadow .2s;
  white-space: nowrap;
}
.btn-wa:hover {
  background: var(--orange-hot);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px -8px rgba(242,101,34,0.6);
}
.btn-wa svg { width: 16px; height: 16px; }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 10px;
  border: 1.5px solid var(--fg);
  color: var(--fg);
  padding: 12px 18px;
  font-family: var(--narrow);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 13px;
  border-radius: 2px;
  transition: background .2s, color .2s;
}
.btn-ghost:hover { background: var(--fg); color: var(--bg); }

/* ============= MOBILE NAV ============= */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  padding: 8px;
  flex-shrink: 0;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--fg);
  border-radius: 2px;
  transition: transform .25s ease, opacity .2s ease;
  pointer-events: none;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.nav-mobile {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 48;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
  padding: 24px;
}
.nav-mobile.open { opacity: 1; pointer-events: auto; }
.nav-mobile a {
  font-family: var(--narrow);
  font-weight: 700;
  font-size: 26px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
  padding: 14px 32px;
  min-height: 52px;
  display: flex;
  align-items: center;
  transition: color .2s;
}
.nav-mobile a:hover,
.nav-mobile a:focus { color: var(--orange); outline: none; }
.nav-mobile .btn-wa { margin-top: 20px; padding: 16px 28px; font-size: 14px; }

/* ============= HERO ============= */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex; flex-direction: column;
  padding: 120px 0 60px;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(60% 50% at 70% 30%, rgba(242,101,34,0.18), transparent 70%),
    radial-gradient(50% 40% at 20% 80%, rgba(242,101,34,0.08), transparent 70%),
    var(--bg);
  z-index: 0;
}
.hero-photo {
  position: absolute;
  right: -4%;
  bottom: -6%;
  width: 56%;
  height: auto;
  z-index: 1;
  -webkit-mask-image: linear-gradient(to left, #000 50%, transparent 95%);
  mask-image: linear-gradient(to left, #000 50%, transparent 95%);
  pointer-events: none;
  filter: contrast(1.05) saturate(1.05);
}
.hero-inner {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex; flex-direction: column;
  justify-content: center;
}
.hero-headline {
  font-size: clamp(54px, 9.6vw, 168px);
  max-width: 14ch;
  margin: 24px 0 32px;
}
.hero-headline .crack { color: var(--orange); }
.hero-headline .strike {
  position: relative;
  display: inline-block;
}
.hero-headline .strike::after {
  content: "";
  position: absolute;
  left: -3%; right: -3%;
  top: 52%;
  height: 8px;
  background: var(--orange);
  transform: rotate(-2deg);
}
.hero-sub {
  font-size: clamp(16px, 1.4vw, 20px);
  color: var(--fg-muted);
  max-width: 56ch;
  line-height: 1.55;
  margin: 0 0 36px;
}
.hero-cta {
  display: flex; align-items: center; gap: 18px;
  flex-wrap: wrap;
}
.hero-cta .btn-wa { padding: 18px 26px; font-size: 14px; }
.hero-micro {
  margin-top: 14px;
  font-size: 13px;
  color: var(--fg-dim);
  max-width: 44ch;
}
.hero-foot {
  position: relative;
  z-index: 2;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  padding-top: 40px;
  border-top: 1px solid var(--line);
  font-family: var(--narrow);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-dim);
}
.hero-foot .blink {
  display: inline-block;
  width: 8px; height: 8px;
  background: var(--orange);
  border-radius: 50%;
  margin-right: 8px;
  animation: blink 1.6s infinite;
}
@keyframes blink {
  0%, 60%, 100% { opacity: 1; }
  30% { opacity: 0.3; }
}

/* ============= MEANDER STRIP ============= */
.meander-strip {
  position: relative;
  height: 56px;
  overflow: hidden;
  background: var(--orange);
  border-block: 1px solid #0D0D0D;
}
.meander-track {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  animation: scroll-left 60s linear infinite;
}
.meander-track > * { flex: 0 0 auto; }
@keyframes scroll-left {
  to { transform: translateX(-50%); }
}
.meander-strip.dark { background: var(--bg); }

.marquee {
  background: var(--orange);
  color: var(--bg);
  padding: 18px 0;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  border-block: 1px solid #0D0D0D;
}
.marquee-track {
  display: inline-flex;
  gap: 40px;
  animation: scroll-left 38s linear infinite;
  font-family: var(--display);
  font-size: 36px;
  letter-spacing: -0.005em;
  text-transform: uppercase;
}
.marquee-track .dot {
  display: inline-block;
  width: 14px; height: 14px;
  background: var(--bg);
  border-radius: 50%;
  align-self: center;
}

/* ============= SECTION HEADER ============= */
.section {
  padding: clamp(64px, 9vw, 140px) 0;
  position: relative;
}
.section.tight { padding: clamp(48px, 6vw, 96px) 0; }
.section-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: end;
  margin-bottom: 56px;
}
.section-head .num {
  font-family: var(--narrow);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.22em;
  color: var(--orange);
  margin-bottom: 18px;
}
.section-head h2 {
  font-family: var(--display);
  font-size: clamp(40px, 5.4vw, 90px);
  line-height: 0.92;
  margin: 0;
  text-transform: uppercase;
}
.section-head p {
  color: var(--fg-muted);
  font-size: 17px;
  max-width: 46ch;
  margin: 0;
}
@media (max-width: 840px) {
  .section-head { grid-template-columns: 1fr; gap: 24px; }
}

/* ============= VALUE PROP ============= */
.vp {
  background: var(--bg);
  position: relative;
}
.vp-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 80px;
  align-items: start;
}
.vp-lede {
  font-family: var(--display);
  font-size: clamp(34px, 4.6vw, 72px);
  line-height: 0.96;
  text-transform: uppercase;
  margin: 0 0 32px;
}
.vp-lede em {
  font-family: var(--italic);
  font-weight: 500;
  font-style: italic;
  text-transform: none;
  color: var(--orange);
  letter-spacing: -0.01em;
}
.vp-body p { color: var(--fg-muted); margin: 0 0 18px; }
.vp-body p:last-child { color: var(--fg); }
.vp-side {
  position: sticky;
  top: 100px;
}
.vp-stat {
  border-top: 1px solid var(--line);
  padding-top: 24px;
  margin-top: 24px;
}
.vp-stat:first-child { margin-top: 0; }
.vp-stat .n {
  font-family: var(--display);
  font-size: clamp(48px, 7vw, 78px);
  line-height: 1;
  color: var(--orange);
}
.vp-stat .l {
  font-family: var(--narrow);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-top: 6px;
}
@media (max-width: 920px) {
  .vp-grid { grid-template-columns: 1fr; gap: 40px; }
  .vp-side { position: static; }
}

/* ============= PAIN ============= */
.pain { background: var(--bg-2); }
.pain-question {
  font-family: var(--display);
  font-size: clamp(38px, 5vw, 80px);
  line-height: 0.94;
  text-transform: uppercase;
  margin: 0 0 16px;
  max-width: 18ch;
}
.pain-question em {
  font-family: var(--italic);
  font-style: italic;
  text-transform: none;
  color: var(--orange);
  font-weight: 600;
}
.pain-sub {
  color: var(--fg-muted);
  font-size: 18px;
  max-width: 60ch;
  margin: 0 0 56px;
}
.pain-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0;
}
.pain-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 24px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
  align-items: start;
}
.pain-item:last-child { border-bottom: 1px solid var(--line); }
.pain-item .mark {
  font-family: var(--display);
  font-size: 28px;
  color: var(--orange);
  line-height: 1;
  padding-top: 4px;
}
.pain-item p {
  margin: 0;
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.45;
}
.pain-cap {
  margin-top: 56px;
  font-family: var(--display);
  font-size: clamp(28px, 3.4vw, 56px);
  line-height: 1;
  text-transform: uppercase;
  text-align: center;
}
.pain-cap .strike { position: relative; display: inline-block; }
.pain-cap .strike::after {
  content: "";
  position: absolute;
  left: -2%; right: -2%;
  top: 52%; height: 6px;
  background: var(--orange);
  transform: rotate(-1.5deg);
}

/* ============= SOLUTION ============= */
.sol {
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.sol-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.sol-img {
  position: relative;
  aspect-ratio: 4/5;
  background: var(--bg-3);
  overflow: hidden;
  border: 1px solid var(--line);
}
.sol-img img { width: 100%; height: 100%; object-fit: cover; }
.sol-img::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(13,13,13,0.7) 100%);
  pointer-events: none;
}
.sol-tag {
  position: absolute;
  bottom: 18px; left: 18px;
  font-family: var(--narrow);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg);
  z-index: 2;
}
.sol h2 {
  font-family: var(--display);
  font-size: clamp(40px, 5.4vw, 88px);
  line-height: 0.94;
  text-transform: uppercase;
  margin: 0 0 28px;
}
.sol p { color: var(--fg-muted); font-size: 18px; margin: 0 0 18px; }
.sol p strong { color: var(--fg); font-weight: 500; }
.sol-tagline {
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  font-family: var(--display);
  font-size: clamp(28px, 3vw, 48px);
  line-height: 1;
  text-transform: uppercase;
}
.sol-tagline em {
  font-family: var(--italic);
  font-style: italic;
  text-transform: none;
  color: var(--orange);
  font-weight: 600;
}
@media (max-width: 920px) {
  .sol-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ============= BENEFITS ============= */
.benefits { background: var(--bg-2); }
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.benefit {
  background: var(--bg-2);
  padding: 40px 36px;
  display: flex; flex-direction: column;
  min-height: 320px;
  transition: background .25s;
  position: relative;
  overflow: hidden;
}
.benefit:hover { background: var(--bg); }
.benefit .n {
  font-family: var(--display);
  font-size: 56px;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 18px;
}
.benefit h3 {
  font-family: var(--narrow);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  line-height: 1.1;
  margin: 0 0 14px;
}
.benefit p {
  color: var(--fg-muted);
  font-size: 15px;
  margin: 0;
  line-height: 1.55;
}
.benefit::after {
  content: "";
  position: absolute;
  bottom: -120px; right: -120px;
  width: 240px; height: 240px;
  border: 1px solid var(--orange);
  border-radius: 50%;
  opacity: 0;
  transition: opacity .4s, transform .4s;
}
.benefit:hover::after { opacity: 0.18; transform: translate(-30px, -30px); }
@media (max-width: 1020px) {
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .benefits-grid { grid-template-columns: 1fr; }
  .benefit { min-height: 0; }
}

/* ============= SOCIAL PROOF ============= */
.proof { background: var(--bg); }
.proof-head {
  display: flex; align-items: end; justify-content: space-between;
  gap: 40px; margin-bottom: 56px;
  flex-wrap: wrap;
}
.proof-head h2 {
  font-family: var(--display);
  font-size: clamp(40px, 5.4vw, 88px);
  line-height: 0.92;
  text-transform: uppercase;
  margin: 0;
}
.proof-head h2 em {
  font-family: var(--italic);
  font-style: italic;
  text-transform: none;
  color: var(--orange);
  font-weight: 600;
}
.proof-stats {
  display: flex; gap: 40px;
  align-items: end;
}
.proof-stat .n {
  font-family: var(--display);
  font-size: 64px;
  color: var(--orange);
  line-height: 1;
  display: flex; align-items: baseline; gap: 6px;
}
.proof-stat .n small {
  font-size: 22px;
  color: var(--fg-muted);
  font-family: var(--narrow);
  font-weight: 700;
}
.proof-stat .l {
  font-family: var(--narrow);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-top: 6px;
}
.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testimonial {
  background: var(--bg-2);
  border: 1px solid var(--line);
  padding: 32px 28px;
  display: flex; flex-direction: column;
  gap: 18px;
  position: relative;
  transition: transform .25s, border-color .25s;
}
.testimonial:hover { transform: translateY(-4px); border-color: var(--orange); }
.testimonial .stars {
  color: var(--orange);
  letter-spacing: 4px;
  font-size: 18px;
}
.testimonial blockquote {
  margin: 0;
  font-size: 17px;
  line-height: 1.5;
}
.testimonial blockquote::before {
  content: """;
  font-family: var(--italic);
  font-size: 64px;
  color: var(--orange);
  position: absolute;
  top: 4px; right: 20px;
  line-height: 1;
  opacity: 0.4;
}
.testimonial .who {
  display: flex; align-items: center; gap: 12px;
  margin-top: auto;
}
.testimonial .ava {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--bg);
  display: grid; place-items: center;
  font-family: var(--narrow);
  font-weight: 700;
  font-size: 14px;
}
.testimonial .name {
  font-family: var(--narrow);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.testimonial .meta { font-size: 12px; color: var(--fg-dim); }
@media (max-width: 920px) {
  .proof-grid { grid-template-columns: 1fr; }
}

/* ============= MENU ============= */
.menu { background: var(--bg-2); position: relative; }
.menu-tabs {
  display: inline-flex;
  border: 1px solid var(--line);
  background: var(--bg);
  padding: 4px;
  margin-bottom: 40px;
  border-radius: 2px;
}
.menu-tab {
  font-family: var(--narrow);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 10px 22px;
  color: var(--fg-muted);
  transition: color .2s, background .2s;
  border-radius: 2px;
}
.menu-tab:hover { color: var(--fg); }
.menu-tab.active { background: var(--orange); color: var(--bg); }
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.menu-card {
  background: var(--bg);
  border: 1px solid var(--line);
  overflow: hidden;
  display: flex; flex-direction: column;
  position: relative;
  transition: transform .3s, border-color .3s;
}
.menu-card:hover { transform: translateY(-4px); border-color: var(--orange); }
.menu-card .img {
  aspect-ratio: 4/3;
  background: var(--bg-3);
  position: relative;
  overflow: hidden;
}
.menu-card .img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s;
}
.menu-card:hover .img img { transform: scale(1.06); }
.menu-card .tag {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--orange);
  color: var(--bg);
  font-family: var(--narrow);
  font-weight: 700;
  font-size: 11px;
  padding: 5px 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.menu-card .body { padding: 24px 22px; flex: 1; display: flex; flex-direction: column; gap: 10px; }
.menu-card .row {
  display: flex; justify-content: space-between; align-items: baseline; gap: 16px;
}
.menu-card h3 {
  font-family: var(--narrow);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  margin: 0;
  line-height: 1;
}
.menu-card .price {
  font-family: var(--display);
  font-size: 28px;
  color: var(--orange);
  white-space: nowrap;
}
.menu-card .price small {
  font-size: 16px;
  font-family: var(--narrow);
  font-weight: 700;
  color: var(--orange);
  margin-right: 1px;
}
.menu-card .desc {
  color: var(--fg-muted);
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}
.menu-cta {
  margin-top: 56px;
  display: flex; flex-direction: column; align-items: center;
  gap: 18px;
  text-align: center;
}
.menu-cta .q {
  font-family: var(--display);
  font-size: clamp(24px, 2.6vw, 36px);
  text-transform: uppercase;
  line-height: 1;
}
@media (max-width: 920px) {
  .menu-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .menu-grid { grid-template-columns: 1fr; }
}

/* ============= LOCATION ============= */
.loc { background: var(--bg); }
.loc-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: stretch;
}
.loc-info h2 {
  font-family: var(--display);
  font-size: clamp(40px, 5.4vw, 88px);
  line-height: 0.92;
  text-transform: uppercase;
  margin: 18px 0 24px;
}
.loc-info .where {
  font-family: var(--display);
  font-size: clamp(28px, 3.4vw, 48px);
  line-height: 1;
  text-transform: uppercase;
  color: var(--orange);
  margin: 0 0 8px;
}
.loc-info .city {
  font-family: var(--narrow);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin: 0 0 32px;
}
.loc-hours {
  border-top: 1px solid var(--line);
  padding-top: 28px;
  margin-top: 28px;
}
.loc-hours h4 {
  font-family: var(--narrow);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange);
  margin: 0 0 18px;
}
.loc-hours table { width: 100%; border-collapse: collapse; }
.loc-hours td {
  padding: 10px 0;
  font-size: 15px;
  border-bottom: 1px solid var(--line);
  font-family: var(--narrow);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.loc-hours td:last-child { text-align: right; color: var(--fg-muted); }
.loc-hours tr.today td { color: var(--orange); }
.loc-hours tr.today td:last-child { color: var(--orange); }
.loc-map {
  background: var(--bg-2);
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  min-height: 460px;
}
.loc-map .marker {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -100%);
  z-index: 3;
}
.loc-map .marker-dot {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--orange);
  border: 4px solid var(--bg);
  box-shadow: 0 0 0 6px rgba(242,101,34,0.25);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 6px rgba(242,101,34,0.25); }
  50% { box-shadow: 0 0 0 14px rgba(242,101,34,0.05); }
}
.loc-map .marker-tip {
  width: 0; height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 14px solid var(--orange);
  margin: -4px auto 0;
}
.loc-map .marker-label {
  position: absolute;
  top: -52px; left: 50%;
  transform: translateX(-50%);
  background: var(--bg);
  color: var(--fg);
  padding: 8px 12px;
  font-family: var(--narrow);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
  border: 1px solid var(--orange);
}
.loc-cta {
  position: absolute;
  bottom: 20px; right: 20px;
  z-index: 3;
}
@media (max-width: 920px) {
  .loc-grid { grid-template-columns: 1fr; }
}

/* ============= DELIVERY ============= */
.delivery {
  background: var(--orange);
  color: var(--bg);
  position: relative;
  overflow: hidden;
}
.delivery::before {
  content: "EM BREVE EM BREVE EM BREVE EM BREVE EM BREVE EM BREVE";
  position: absolute;
  top: -10px;
  left: -5%;
  width: 110%;
  font-family: var(--display);
  font-size: 220px;
  color: rgba(13,13,13,0.07);
  white-space: nowrap;
  pointer-events: none;
  line-height: 1;
}
.delivery-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  align-items: center;
}
.delivery h2 {
  font-family: var(--display);
  font-size: clamp(40px, 5.4vw, 84px);
  line-height: 0.92;
  text-transform: uppercase;
  margin: 0 0 24px;
}
.delivery p { font-size: 18px; max-width: 50ch; margin: 0 0 32px; }
.delivery .btn-wa {
  background: var(--bg);
  color: var(--fg);
}
.delivery .btn-wa:hover { background: #000; box-shadow: 0 8px 24px -8px rgba(0,0,0,0.4); }
.delivery .micro { font-size: 13px; margin-top: 14px; opacity: 0.7; }
.delivery-side {
  position: relative;
  display: grid;
  place-items: center;
}
.delivery-badge {
  position: relative;
  width: 320px; height: 320px;
  display: grid; place-items: center;
  text-align: center;
  border: 2px solid var(--bg);
  border-radius: 50%;
}
.delivery-badge .inner {
  font-family: var(--display);
  font-size: 64px;
  line-height: 0.9;
  text-transform: uppercase;
  color: var(--bg);
}
.delivery-badge .sub {
  font-family: var(--narrow);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-top: 10px;
}
.delivery-badge .rot {
  position: absolute;
  inset: -36px;
  animation: spin 30s linear infinite;
}
.delivery-badge .rot text {
  fill: var(--bg);
  font-family: var(--narrow);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
@keyframes spin { to { transform: rotate(360deg); } }
@media (max-width: 920px) {
  .delivery-grid { grid-template-columns: 1fr; }
  .delivery-side { display: none; }
}

/* ============= ABOUT ============= */
.about { background: var(--bg-2); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.about-imgs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  position: sticky;
  top: 100px;
}
.about-imgs .a, .about-imgs .b {
  aspect-ratio: 3/4;
  background: var(--bg-3);
  border: 1px solid var(--line);
  overflow: hidden;
}
.about-imgs .b { margin-top: 40px; aspect-ratio: 3/4; }
.about-imgs img { width: 100%; height: 100%; object-fit: cover; }
.about h2 {
  font-family: var(--display);
  font-size: clamp(40px, 5.4vw, 88px);
  line-height: 0.92;
  text-transform: uppercase;
  margin: 18px 0 32px;
}
.about h2 em {
  font-family: var(--italic);
  font-style: italic;
  text-transform: none;
  color: var(--orange);
  font-weight: 600;
}
.about p { color: var(--fg-muted); font-size: 18px; margin: 0 0 20px; line-height: 1.55; }
.about p:last-of-type { color: var(--fg); }
.about-sign {
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  display: flex; align-items: center; gap: 18px;
}
.about-sign img { height: 72px; width: auto; }
.about-sign .t {
  font-family: var(--narrow);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 12px;
  color: var(--fg-muted);
}
@media (max-width: 920px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-imgs { position: static; }
}

/* ============= FAQ ============= */
.faq { background: var(--bg); }
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
}
.faq-list {
  display: flex; flex-direction: column;
}
.faq-item {
  border-top: 1px solid var(--line);
  padding: 20px 0;
  cursor: pointer;
}
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-q {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  font-family: var(--narrow);
  font-weight: 700;
  font-size: clamp(18px, 1.6vw, 22px);
  letter-spacing: 0.01em;
  text-transform: uppercase;
  line-height: 1.25;
  user-select: none;
}
.faq-q .plus {
  flex: 0 0 auto;
  width: 40px; height: 40px; min-width: 40px;
  border: 1.5px solid var(--orange);
  display: grid; place-items: center;
  transition: background .2s, transform .3s;
  position: relative;
}
.faq-q .plus::before,
.faq-q .plus::after {
  content: ""; position: absolute;
  background: var(--orange);
}
.faq-q .plus::before { width: 12px; height: 1.5px; }
.faq-q .plus::after { width: 1.5px; height: 12px; transition: transform .3s; }
.faq-item.open .faq-q .plus::after { transform: rotate(90deg); }
.faq-item.open .faq-q .plus { background: var(--orange); }
.faq-item.open .faq-q .plus::before { background: var(--bg); }
.faq-item.open .faq-q .plus::after { background: var(--bg); }
.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .3s ease;
  color: var(--fg-muted);
  font-size: 16px;
}
.faq-item.open .faq-a { grid-template-rows: 1fr; padding-top: 14px; }
.faq-a > div { overflow: hidden; }
.faq-a p { margin: 0; line-height: 1.55; }
@media (max-width: 920px) {
  .faq-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ============= FINAL CTA ============= */
.final {
  background: var(--bg);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.final-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(50% 50% at 50% 30%, rgba(242,101,34,0.22), transparent 70%),
    var(--bg);
  z-index: 0;
}
.final-inner { position: relative; z-index: 2; }
.final-eyebrow { margin-bottom: 18px; }
.final h2 {
  font-family: var(--display);
  font-size: clamp(56px, 9vw, 168px);
  line-height: 0.86;
  text-transform: uppercase;
  margin: 0 0 32px;
}
.final h2 em {
  font-family: var(--italic);
  font-style: italic;
  text-transform: none;
  color: var(--orange);
  font-weight: 600;
}
.final p {
  color: var(--fg-muted);
  font-size: 18px;
  max-width: 56ch;
  margin: 0 auto 36px;
}
.final-cta {
  display: flex; gap: 18px; justify-content: center; flex-wrap: wrap;
}
.final-cta .btn-wa { padding: 20px 32px; font-size: 15px; }
.final-cta .btn-ghost { padding: 20px 32px; font-size: 15px; }
.final-ps {
  margin-top: 80px;
  padding-top: 40px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 32px;
  align-items: start;
  text-align: left;
  max-width: 900px;
  margin-left: auto; margin-right: auto;
}
.final-ps .label {
  font-family: var(--display);
  font-size: 36px;
  color: var(--orange);
  line-height: 1;
}
.final-ps p {
  font-family: var(--italic);
  font-style: italic;
  font-size: 19px;
  line-height: 1.5;
  color: var(--fg);
  max-width: none;
  margin: 0;
}

/* ============= FOOTER ============= */
footer {
  background: var(--bg);
  border-top: 1px solid var(--line);
  padding: 56px 0 32px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
footer h5 {
  font-family: var(--narrow);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange);
  margin: 0 0 16px;
}
footer .links { display: flex; flex-direction: column; gap: 10px; }
footer .links a,
footer .links span { color: var(--fg-muted); font-size: 15px; transition: color .2s; }
footer .links a:hover { color: var(--fg); }
footer .brand img { height: 80px; margin-bottom: 16px; }
footer .brand p { color: var(--fg-muted); font-size: 14px; max-width: 30ch; margin: 0; line-height: 1.5; }
.foot-meta {
  border-top: 1px solid var(--line);
  padding-top: 24px;
  display: flex; justify-content: space-between; gap: 24px;
  font-family: var(--narrow);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-dim);
}
@media (max-width: 840px) {
  .foot-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .hero-photo { display: none; }
  .hero { padding-top: 96px; }
  .hero-foot {
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
  }
  .delivery::before { font-size: 72px; top: 0; }
  .loc-map { min-height: 280px; }
  .final-ps {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 48px;
    padding-top: 28px;
  }
  .menu-tabs {
    display: flex;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .menu-tabs::-webkit-scrollbar { display: none; }
  .menu-tab { flex: 1; justify-content: center; }
  .float-wa {
    bottom: calc(16px + env(safe-area-inset-bottom, 0px));
    right: 16px;
  }
  .toast {
    bottom: calc(86px + env(safe-area-inset-bottom, 0px));
    right: 16px;
    max-width: calc(100vw - 32px);
  }
}

@media (max-width: 560px) {
  .foot-grid { grid-template-columns: 1fr; }
  .foot-meta { flex-direction: column; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .proof-stats { flex-wrap: wrap; gap: 20px; }
  .proof-stat .n { font-size: 44px; }
}

/* ============= UTILS / EXTRAS ============= */
.bleed-img {
  width: 100%;
  height: 56vh;
  min-height: 360px;
  object-fit: cover;
  display: block;
}

/* Floating WhatsApp button */
.float-wa {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 60;
  width: 60px; height: 60px;
  background: var(--whatsapp);
  border-radius: 50%;
  display: grid; place-items: center;
  color: white;
  box-shadow: 0 12px 28px -8px rgba(37,211,102,0.5);
  transition: transform .2s;
}
.float-wa:hover { transform: scale(1.08); }
.float-wa svg { width: 28px; height: 28px; }

/* Toast for WhatsApp click */
.toast {
  position: fixed;
  bottom: 100px; right: 24px;
  z-index: 60;
  background: var(--bg-2);
  border: 1px solid var(--orange);
  color: var(--fg);
  padding: 16px 20px;
  font-family: var(--narrow);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.05em;
  display: flex; align-items: center; gap: 12px;
  max-width: 320px;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity .25s, transform .25s;
}
.toast.show {
  opacity: 1; transform: translateY(0); pointer-events: auto;
}
.toast .x {
  margin-left: auto;
  width: 22px; height: 22px;
  display: grid; place-items: center;
  color: var(--fg-muted);
  cursor: pointer;
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.in { opacity: 1; transform: translateY(0); }
