@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@700;800;900&family=Dancing+Script:wght@700&display=swap');

:root {
  /* Steamed Bowl brand */
  --yellow: #ffd400;
  --yellow-soft: #ffe363;
  --blue: #2b3990;
  /* Premium dark-restaurant atmosphere */
  --bg: #0a0d18;
  --bg-raise: #10141f;
  --card: #131829;
  --card-edge: #232c48;
  --gold: #f2c14e;
  --cream: #f7ecd8;
  --text: #eef0f7;
  --text-dim: #a9b0c7; 
  --muted: #7c86a3;
  --ok: #3ecf6e;
  --err: #ff6b6b;
  --radius: 16px;
  --display: "Nunito", "Segoe UI", system-ui, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

/* Hard guarantee against horizontal scroll — some element somewhere can
   always end up a few px wider than the viewport on a given device; this
   clips it at the document root instead of chasing every possible culprit. */
/* overflow-x: clip (not hidden) — setting just overflow-x: hidden forces
   overflow-y to compute as auto, turning html/body into a scroll container
   and breaking position: sticky for descendants (e.g. the menu category
   photos). clip blocks horizontal overflow the same way without that
   side effect. */
html, body { max-width: 100%; overflow-x: clip; }
img, svg { max-width: 100%; height: auto; }

body {
  font-family: "Segoe UI", system-ui, -apple-system, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a { color: var(--gold); text-decoration: none; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(8, 10, 18, 0.97);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(242, 193, 78, 0.12);
}
.nav-wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 13px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 1.5px;
  color: var(--cream);
}
.brand .logo-img { width: 42px; height: 42px; display: block; filter: drop-shadow(0 0 12px rgba(43, 57, 144, 0.6)); }
.brand em { color: var(--yellow); font-style: normal; }
.site-nav { display: flex; gap: 2px; align-items: center; }
/* Reviews shortcut only shown in the mobile dropdown (see the 860px
   breakpoint) — desktop's inline row is already tight on room, and
   reviews are one scroll away there anyway. */
.nav-mobile-only { display: none; }
.site-nav a {
  color: var(--text);
  padding: 8px 15px;
  font-family: var(--display);
  font-weight: 800;
  font-size: 0.84rem;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  transition: color .15s;
}
.site-nav a:hover { color: var(--yellow); }
.site-nav a.active { color: var(--yellow); }
.site-nav .nav-cta {
  margin-left: 12px;
  background: var(--yellow);
  color: #171203;
  padding: 11px 22px;
  border-radius: 10px;
}
.site-nav .nav-cta:hover { color: #171203; filter: brightness(1.07); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid var(--card-edge);
  border-radius: 8px;
  background: var(--bg-raise);
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  background: var(--cream);
  border-radius: 2px;
  transition: transform .2s, opacity .2s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  padding: 100px 20px 90px;
  text-align: center;
  background:
    radial-gradient(520px 340px at 82% 18%, rgba(255, 166, 48, 0.16), transparent 70%),
    radial-gradient(420px 300px at 12% 80%, rgba(255, 140, 40, 0.10), transparent 70%),
    radial-gradient(700px 460px at 50% -10%, rgba(43, 57, 144, 0.35), transparent 72%),
    linear-gradient(180deg, #0c101e 0%, var(--bg) 100%);
}
.hero::before, .hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(26px);
  pointer-events: none;
}
.hero::before {
  width: 190px; height: 190px;
  right: 8%; top: 12%;
  background: radial-gradient(circle, rgba(255, 190, 80, 0.38), transparent 65%);
}
.hero::after {
  width: 150px; height: 150px;
  left: 6%; bottom: 16%;
  background: radial-gradient(circle, rgba(255, 160, 60, 0.28), transparent 65%);
}
.hero-grid {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
  text-align: left;
}
.hero .eyebrow { margin-bottom: 16px; text-align: left; }
.hero h1 {
  font-family: var(--display);
  font-size: clamp(2.4rem, 5.5vw, 3.9rem);
  font-weight: 900;
  line-height: 1.12;
  color: #ffffff;
  letter-spacing: 0.3px;
}
.hero h1 em { color: var(--yellow); font-style: normal; }
.hero p {
  max-width: 560px;
  margin: 18px 0 32px;
  color: var(--text-dim);
  font-size: 1.06rem;
}
.hero .btn-row { justify-content: flex-start; }
.btn-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }

/* Rotating hero plate (Restoran-style circular food visual) */
.hero-plate {
  position: relative;
  width: min(440px, 82vw);
  aspect-ratio: 1;
  margin: 0 auto;
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 28%, #2b3452, #141a2e 58%, #0c101f 100%);
  border: 12px solid #1b2236;
  box-shadow:
    0 40px 90px rgba(0, 0, 0, 0.6),
    inset 0 0 70px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(242, 193, 78, 0.18);
  animation: plate-spin 70s linear infinite;
}
.hero-plate .fitem {
  position: absolute;
  font-size: clamp(2.4rem, 6vw, 3.4rem);
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 12px 14px rgba(0, 0, 0, 0.6));
}
.hero-plate .fitem.center { font-size: clamp(4.4rem, 11vw, 6.2rem); }
@keyframes plate-spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) {
  .hero-plate { animation: none; }
}

.btn {
  display: inline-block;
  padding: 13px 30px;
  border-radius: 10px;
  font-family: var(--display);
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.6px;
  border: none;
  cursor: pointer;
  transition: transform .12s, filter .15s, background .15s, color .15s;
}
.btn:hover { transform: translateY(-2px); filter: brightness(1.06); }
.btn-primary { background: var(--yellow); color: #171203; }
.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid rgba(242, 193, 78, 0.55);
}
.btn-outline:hover { background: rgba(242, 193, 78, 0.1); color: var(--cream); }
.btn-whatsapp { background: #25d366; color: #06281a; }

/* Info chips under the hero — independent pills so wrapping never orphans a separator */
.hero-strip {
  position: relative;
  z-index: 1;
  margin: 56px auto 0;
  max-width: 900px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-strip .chip {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 12px 20px;
  border-radius: 999px;
  background: rgba(16, 19, 32, 0.85);
  border: 1px solid rgba(242, 193, 78, 0.22);
  font-size: 0.9rem;
  color: var(--text-dim);
  white-space: nowrap;
}
.hero-strip .chip .icon-svg { color: var(--gold); flex-shrink: 0; }
.hero-strip .chip-insta .icon-svg { color: #e1306c; }
.hero-strip .chip b { color: var(--cream); font-weight: 700; letter-spacing: 0.3px; }
.hero-strip a.chip:hover { border-color: rgba(242, 193, 78, 0.5); color: var(--cream); }

@media (max-width: 640px) {
  .hero-strip .chip { white-space: normal; font-size: 0.84rem; padding: 10px 16px; }
}

/* ---------- Sections ---------- */
.section { max-width: 1120px; margin: 0 auto; padding: 72px 20px; width: 100%; }
.eyebrow {
  display: block;
  text-align: center;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--gold);
}
.section-title {
  font-family: var(--display);
  font-size: clamp(1.7rem, 3.6vw, 2.4rem);
  font-weight: 900;
  margin: 10px 0 8px;
  text-align: center;
  color: #ffffff;
  letter-spacing: 0.3px;
}
.section-title em { color: var(--yellow); font-style: normal; }
.section-sub {
  text-align: center;
  color: var(--text-dim);
  margin: 0 auto 42px;
  max-width: 560px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.card {
  background: var(--card);
  border: 1px solid var(--card-edge);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: transform .18s, border-color .18s;
}
.card:hover { transform: translateY(-4px); border-color: rgba(242, 193, 78, 0.4); }
.card .icon { font-size: 2rem; margin-bottom: 12px; filter: drop-shadow(0 4px 10px rgba(0,0,0,.45)); }
.card h3 { font-size: 1.1rem; margin-bottom: 8px; color: var(--cream); }
.card p { color: var(--text-dim); font-size: 0.94rem; }

/* ---------- Feature (text + circular visual) ---------- */
.feature {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 56px;
  align-items: center;
}
.feature .eyebrow, .feature .section-title { text-align: left; }
.feature .section-title { margin-bottom: 14px; }
.feature p { color: var(--text-dim); margin-bottom: 14px; }
.feature ul { list-style: none; margin: 18px 0 26px; }
.feature li { padding: 7px 0 7px 30px; position: relative; color: var(--text-dim); }
.feature li::before { content: "✦"; position: absolute; left: 4px; color: var(--gold); }
.feature li b { color: var(--cream); }

.dish-orb {
  position: relative;
  width: min(360px, 80vw);
  aspect-ratio: 1;
  margin: 0 auto;
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 26%, rgba(255, 190, 80, 0.22), transparent 58%),
    radial-gradient(circle at 68% 78%, rgba(43, 57, 144, 0.4), transparent 62%),
    #171c2e;
  border: 1px solid rgba(242, 193, 78, 0.3);
  box-shadow:
    0 30px 70px rgba(0, 0, 0, 0.55),
    inset 0 0 60px rgba(0, 0, 0, 0.45);
  display: grid;
  place-items: center;
}
.dish-orb::before {
  content: "";
  position: absolute;
  inset: -14px;
  border-radius: 50%;
  border: 1px solid rgba(242, 193, 78, 0.16);
}
.dish-orb .emoji { font-size: clamp(6rem, 16vw, 9.5rem); filter: drop-shadow(0 18px 26px rgba(0, 0, 0, 0.6)); }
.dish-orb img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }

/* ---------- Dish gallery (mockup's bottom cards) ---------- */
.dish-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
}
.dish-card {
  background: var(--card);
  border: 1px solid var(--card-edge);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .18s, border-color .18s;
  display: flex;
  flex-direction: column;
}
.dish-card:hover { transform: translateY(-5px); border-color: rgba(242, 193, 78, 0.45); }
.dish-card .visual {
  aspect-ratio: 4 / 3;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 62%, rgba(255, 176, 60, 0.2), transparent 62%),
    linear-gradient(180deg, #1a2036 0%, #10141f 100%);
  font-size: 4.4rem;
  border-bottom: 1px solid var(--card-edge);
}
.dish-card .visual span { filter: drop-shadow(0 14px 18px rgba(0, 0, 0, 0.55)); }
.dish-card .visual img { width: 100%; height: 100%; object-fit: cover; }
.dish-card .body { padding: 18px 20px 20px; display: flex; flex-direction: column; flex: 1; }
.dish-card h3 { font-family: var(--display); font-weight: 800; font-size: 1.12rem; color: #ffffff; margin-bottom: 6px; }
.dish-card p { color: var(--text-dim); font-size: 0.87rem; margin-bottom: 12px; }
.dish-card .price { color: var(--yellow); font-weight: 800; font-size: 1.02rem; letter-spacing: 0.4px; white-space: nowrap; }

/* ---------- CTA band ---------- */
.cta-band {
  background:
    radial-gradient(480px 260px at 85% 30%, rgba(255, 170, 55, 0.14), transparent 70%),
    radial-gradient(420px 260px at 10% 80%, rgba(43, 57, 144, 0.4), transparent 70%),
    var(--bg-raise);
  border-top: 1px solid rgba(242, 193, 78, 0.14);
  border-bottom: 1px solid rgba(242, 193, 78, 0.14);
}
.cta-band .section { padding: 58px 20px; text-align: center; }

/* ---------- Menu hero banner (diagonal stroke + medallion) ---------- */
.menu-hero {
  position: relative;
  overflow: hidden;
  padding: 48px 20px 28px;
  text-align: center;
}
.menu-hero .stroke-band {
  position: absolute;
  left: -8%;
  right: -8%;
  top: 18%;
  height: 190px;
  background: linear-gradient(100deg, #d9a600, var(--yellow) 45%, #ffe27a 60%, var(--yellow));
  clip-path: polygon(0 22%, 100% 0%, 100% 70%, 0% 100%);
  transform: rotate(-3deg);
  opacity: 0.16;
  pointer-events: none;
}
.menu-hero-inner { position: relative; z-index: 1; max-width: 1120px; margin: 0 auto; }
.menu-medal {
  width: 128px;
  height: 128px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 22px;
  border: 5px solid var(--yellow);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.55), 0 0 0 8px rgba(242, 193, 78, 0.12);
}
.menu-medal img { width: 100%; height: 100%; object-fit: cover; display: block; }
.menu-hero h1 {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(2.3rem, 6vw, 3.6rem);
  line-height: 1.05;
  color: #ffffff;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.menu-hero h1 em { color: var(--yellow); font-style: normal; -webkit-text-stroke: 1.5px rgba(255,255,255,0.15); }
.menu-hero p { color: var(--text-dim); margin-top: 14px; max-width: 480px; margin-left: auto; margin-right: auto; }

.menu-divider {
  height: 46px;
  margin: 8px auto 40px;
  max-width: 1120px;
  background: linear-gradient(100deg, var(--yellow), #ffe27a 50%, var(--yellow));
  clip-path: polygon(0 30%, 100% 0%, 100% 100%, 0% 70%);
  opacity: 0.9;
}

/* Category block with an optional circular photo medallion beside it */
.menu-category.has-photo {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 30px;
  align-items: start;
}
.menu-category.has-photo.side-right { grid-template-columns: 1fr 150px; }
.menu-category.has-photo.side-right .cat-photo { order: 2; }
.cat-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid rgba(242, 193, 78, 0.4);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.5);
  position: sticky;
  top: 90px;
}
.cat-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }

@media (max-width: 640px) {
  .menu-category.has-photo,
  .menu-category.has-photo.side-right {
    grid-template-columns: 1fr;
  }
  .menu-category.has-photo .cat-photo,
  .menu-category.has-photo.side-right .cat-photo {
    order: -1;
    position: static;
    width: 110px;
    height: 110px;
    margin: 0 auto 14px;
  }
}

/* ---------- Menu ---------- */
.menu-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 26px;
}
.menu-filters button {
  background: transparent;
  color: var(--text-dim);
  border: 1px solid var(--card-edge);
  padding: 8px 17px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.87rem;
  font-family: inherit;
  transition: all .15s;
}
.menu-filters button:hover { color: var(--cream); border-color: rgba(242, 193, 78, 0.4); }
.menu-filters button.active { background: var(--yellow); color: #171203; border-color: var(--yellow); }
.menu-filters button:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  pointer-events: none;
}

.menu-category { margin-bottom: 46px; }
.menu-category h2 {
  font-family: var(--display);
  color: var(--gold);
  font-size: 1.45rem;
  letter-spacing: 0.6px;
  border-bottom: 1px solid rgba(242, 193, 78, 0.22);
  padding-bottom: 10px;
  margin-bottom: 14px;
}
.item-list { display: block; }
.menu-item {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 13px 4px;
  border-bottom: 1px dashed rgba(124, 134, 163, 0.25);
}
.menu-item:last-child { border-bottom: none; }

/* Two-column item grid on wider screens — halves the height of long
   categories (e.g. 10-item Juices) without changing the flat-scroll model. */
@media (min-width: 720px) {
  .item-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 36px;
  }
  .item-list .menu-item:nth-last-child(-n+2) { border-bottom: none; }
}
.veg-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 10px;
}
.veg-filters button {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: transparent;
  color: var(--text-dim);
  border: 1px solid var(--card-edge);
  padding: 7px 16px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 700;
  font-size: 0.84rem;
  font-family: inherit;
  transition: all .15s;
}
.veg-filters button:hover { color: var(--cream); }
.veg-filters button.active { background: var(--card); color: var(--cream); border-color: rgba(242, 193, 78, 0.5); }

.veg-dot-ind {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 14px;
  border-radius: 3px;
  border: 1.5px solid;
  flex-shrink: 0;
}
.veg-dot-ind::after { content: ""; width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.veg-dot-ind.veg { color: #2e7d32; border-color: #2e7d32; }
.veg-dot-ind.nonveg { color: #b3261e; border-color: #b3261e; }

.menu-item .info h4 { font-size: 1.02rem; font-weight: 700; color: var(--text); display: flex; align-items: center; gap: 8px; }
.menu-item .info p { color: var(--text-dim); font-size: 0.88rem; margin-top: 3px; }
.menu-item .info .pack { color: var(--gold); font-size: 0.78rem; }
.menu-item .price { font-weight: 800; color: var(--yellow); white-space: nowrap; font-size: 1.02rem; }
.menu-item .price small { color: var(--text-dim); font-weight: 600; display: block; text-align: right; }

/* ---------- Forms ---------- */
.form-card {
  background: var(--card);
  border: 1px solid var(--card-edge);
  border-radius: var(--radius);
  padding: 34px 30px;
  max-width: 640px;
  margin: 0 auto;
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-weight: 600; font-size: 0.88rem; color: var(--text-dim); }
.form-field input,
.form-field select,
.form-field textarea {
  background: var(--bg);
  border: 1px solid var(--card-edge);
  border-radius: 10px;
  color: var(--text);
  padding: 11px 13px;
  font-size: 0.97rem;
  font-family: inherit;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: 2px solid var(--gold);
  outline-offset: -1px;
  border-color: var(--gold);
}
.form-field input.invalid,
.form-field select.invalid,
.form-field textarea.invalid {
  border-color: var(--err);
}
.form-field input.invalid:focus,
.form-field textarea.invalid:focus {
  outline-color: var(--err);
  border-color: var(--err);
}
.field-err {
  color: var(--err);
  font-size: 0.78rem;
  min-height: 0;
}
.char-count {
  align-self: flex-end;
  color: var(--muted);
  font-size: 0.76rem;
}
.char-count.near-limit { color: var(--warn, #fab219); }

.form-msg { margin-top: 16px; padding: 12px 16px; border-radius: 10px; font-weight: 600; display: none; }
.form-msg.ok { display: block; background: rgba(62, 207, 110, 0.12); color: var(--ok); }
.form-msg.err { display: block; background: rgba(255, 107, 107, 0.12); color: var(--err); }

.contact-cards { margin-top: 44px; }
.contact-cards-2 { max-width: 560px; margin-left: auto; margin-right: auto; }
.contact-cards-2 .card { display: flex; flex-direction: column; justify-content: center; align-items: center; }
.contact-cards .card { text-align: center; }
.contact-cards .card a { font-weight: 700; font-size: 1.02rem; }
.c-qr { width: 84px; height: 84px; border-radius: 8px; background: #fff; padding: 5px; margin: 14px auto 4px; display: block; }
.c-qr-caption { color: var(--muted); font-size: 0.76rem; font-weight: 600; }

/* ---------- Footer ---------- */
.site-footer {
  margin-top: auto;
  background: #080a12;
  border-top: 1px solid rgba(242, 193, 78, 0.12);
  padding: 36px 20px 26px;
}
.footer-wrap {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  justify-content: space-between;
  align-items: center;
}
.footer-contacts { display: flex; flex-wrap: wrap; gap: 22px; color: var(--text-dim); font-size: 0.93rem; }
.footer-contacts b { color: var(--cream); }
.footer-note { width: 100%; text-align: center; color: var(--muted); font-size: 0.8rem; margin-top: 12px; letter-spacing: 0.4px; }

@media (max-width: 860px) {
  .feature { grid-template-columns: 1fr; gap: 40px; }
  .feature .eyebrow, .feature .section-title { text-align: center; }
  .hero-grid { grid-template-columns: 1fr; gap: 44px; text-align: center; }
  .hero .eyebrow { text-align: center; }
  .hero p { margin-left: auto; margin-right: auto; }
  .hero .btn-row { justify-content: center; }
}
/* ============================================================
   Template components (Sarab/Feane-inspired)
   ============================================================ */

/* ---- Brand with subtitle ---- */
.brand-txt { display: flex; flex-direction: column; line-height: 1.15; }
.brand-txt small {
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

/* ---- Hero photo circle + floating cards + stats ---- */
.hphoto-wrap { position: relative; text-align: center; }
.hphoto {
  width: min(430px, 80vw);
  aspect-ratio: 1;
  margin: 0 auto;
  border-radius: 50%;
  overflow: hidden;
  border: 10px solid rgba(242, 193, 78, 0.25);
  outline: 1px solid rgba(242, 193, 78, 0.35);
  outline-offset: 10px;
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.6);
  animation: hfloat 7s ease-in-out infinite;
}
.hphoto img { width: 100%; height: 100%; object-fit: cover; display: block; }
@keyframes hfloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
@media (prefers-reduced-motion: reduce) { .hphoto { animation: none; } }

.fcard {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(16, 20, 34, 0.94);
  border: 1px solid var(--card-edge);
  border-radius: 14px;
  padding: 10px 16px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.45);
  text-align: left;
}
.fcard .fico { font-size: 1.4rem; }
.fcard .fcnum { display: block; font-weight: 800; font-size: 0.88rem; color: var(--cream); }
.fcard .fcsm { display: block; font-size: 0.72rem; color: var(--muted); }
.fc1 { top: 9%; left: -2%; }
.fc2 { bottom: 10%; right: -3%; }
.fc3 { bottom: -4%; left: 8%; }

/* The circular photo shrinks a lot on small screens (min(430px, 80vw) can
   drop well under 300px), but these cards didn't — so they ended up
   covering most of the photo instead of framing it. Shrink them to match. */
@media (max-width: 640px) {
  .fcard { padding: 6px 10px; gap: 6px; border-radius: 10px; }
  .fcard .fico { font-size: 1rem; }
  .fcard .fcnum { font-size: 0.68rem; }
  .fcard .fcsm { font-size: 0.58rem; }
}
@media (max-width: 420px) {
  .fc1 { top: 4%; left: -4%; }
  .fc2 { bottom: 6%; right: -5%; }
  .fc3 { bottom: -6%; left: 4%; }
}

.hstats { display: flex; gap: 22px; flex-wrap: wrap; margin-top: 34px; align-items: center; }
.hstat .snum {
  display: block;
  font-family: var(--display);
  font-weight: 900;
  font-size: 1.6rem;
  color: var(--yellow);
}
.hstat small { color: var(--text-dim); font-size: 0.8rem; }
.sdiv { width: 1px; height: 38px; background: var(--card-edge); }

/* ---- Marquee ribbon ---- */
.mqsec {
  background: var(--yellow);
  overflow: hidden;
  padding: 12px 0;
  transform: rotate(-0.6deg);
  margin: -8px -6px 0;
}
.mqtrack { display: flex; gap: 38px; width: max-content; animation: mq 30s linear infinite; }
.mqitem {
  color: #171203;
  font-family: var(--display);
  font-weight: 800;
  font-size: 0.95rem;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 38px;
}
.mqitem::before { content: "●"; font-size: 0.5rem; }
/* 16 duplicated items over a 38px gap means 15 gaps (odd) between them, so
   the true seamless loop point is half a gap (19px) short of -50% — without
   this, the strip visibly snaps/jumps once per cycle. */
@keyframes mq { to { transform: translateX(calc(-50% - 19px)); } }
@media (prefers-reduced-motion: reduce) { .mqtrack { animation: none; } }

/* ---- Category cards ---- */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 18px;
}
.catcard {
  background: var(--card);
  border: 1px solid var(--card-edge);
  border-radius: var(--radius);
  padding: 20px 14px 16px;
  text-align: center;
  transition: transform .18s, border-color .18s;
  display: block;
}
.catcard:hover { transform: translateY(-5px); border-color: rgba(242, 193, 78, 0.5); }
.catcard img {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(242, 193, 78, 0.35);
  margin-bottom: 12px;
}
.catcard .catnm { font-family: var(--display); font-weight: 800; color: var(--cream); font-size: 0.95rem; }
.catcard .catct { color: var(--muted); font-size: 0.75rem; }

/* ---- About stacked images ---- */
.astack { position: relative; max-width: 420px; margin: 0 auto; }
.astack .amain img {
  width: 100%;
  border-radius: 18px;
  display: block;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
}
.astack .asm {
  position: absolute;
  right: -8%;
  bottom: -10%;
  width: 46%;
  border: 6px solid var(--bg);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.55);
}
.astack .asm img { width: 100%; display: block; }
.astack .aexp {
  position: absolute;
  left: -6%;
  top: -7%;
  z-index: 2;
  background: var(--yellow);
  color: #171203;
  border-radius: 14px;
  padding: 14px 18px;
  text-align: center;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.45);
}
.astack .aexp .anum { display: block; font-family: var(--display); font-weight: 900; font-size: 1.5rem; }
.astack .aexp small { font-size: 0.68rem; font-weight: 700; line-height: 1.2; display: block; }

/* Same issue as the hero .fcard badges: .astack shrinks a lot on small
   screens but the badge/inset-photo kept their full-size padding and
   fonts, so they ended up overpowering the shrunken main photo. */
@media (max-width: 640px) {
  .astack .aexp { padding: 8px 12px; border-radius: 10px; }
  .astack .aexp .anum { font-size: 1.1rem; }
  .astack .aexp small { font-size: 0.58rem; }
  .astack .asm { border-width: 3px; }
}
@media (max-width: 420px) {
  .astack .aexp { left: -3%; top: -5%; padding: 6px 10px; }
  .astack .asm { right: -4%; bottom: -6%; width: 40%; }
}

.fti { display: flex; gap: 14px; margin-bottom: 16px; }
.fti .ftico {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(255, 212, 0, 0.12);
  display: grid;
  place-items: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}
.fti h6 { color: var(--cream); font-size: 0.98rem; margin-bottom: 2px; }
.fti p { color: var(--text-dim); font-size: 0.86rem; margin: 0; }

/* ---- Dish photo cards ---- */
.dish-card .visual { position: relative; padding: 0; overflow: hidden; }
.dish-card .visual img { transition: transform .35s; }
.dish-card:hover .visual img { transform: scale(1.07); }
.dish-card .dbdg {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--yellow);
  color: #171203;
  font-size: 0.68rem;
  font-weight: 800;
  padding: 4px 11px;
  border-radius: 999px;
  letter-spacing: 0.4px;
}
.dish-card .dbdg.veg { background: #3ecf6e; color: #06281a; }
.dish-card .body .row-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-top: auto;
}
.dish-card .row-foot .madd {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  border-radius: 50%;
  border: none;
  background: var(--yellow);
  color: #171203;
  font-size: 1.15rem;
  font-weight: 800;
  cursor: pointer;
  transition: filter .15s, transform .12s;
}
.dish-card .row-foot .madd:hover { filter: brightness(1.1); transform: scale(1.07); }

/* ---- Special offer band ---- */
.offer-band {
  background:
    radial-gradient(600px 320px at 90% 20%, rgba(255, 170, 55, 0.14), transparent 70%),
    radial-gradient(500px 300px at 5% 90%, rgba(43, 57, 144, 0.45), transparent 70%),
    var(--bg-raise);
  border-top: 1px solid rgba(242, 193, 78, 0.14);
  border-bottom: 1px solid rgba(242, 193, 78, 0.14);
}
.offer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 52px;
  align-items: center;
}
.offer-grid .eyebrow, .offer-grid .section-title { text-align: left; }
.offer-grid p { color: var(--text-dim); margin-bottom: 24px; }
.offer-img {
  position: relative;
  border-radius: 50%;
  overflow: hidden;
  width: min(380px, 78vw);
  aspect-ratio: 1;
  margin: 0 auto;
  border: 8px solid rgba(242, 193, 78, 0.3);
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.55);
}
.offer-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.offer-points { list-style: none; margin: 0 0 26px; padding: 0; }
.offer-points li { padding: 6px 0 6px 30px; position: relative; color: var(--text-dim); }
.offer-points li::before { content: "✦"; position: absolute; left: 4px; color: var(--gold); }
.offer-points li b { color: var(--cream); }

/* ---- Rich footer ---- */
.footer-cols {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 34px;
  padding: 10px 0 26px;
}
.fcol h4 {
  color: var(--cream);
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 14px;
}
.fcol a:not(.oc-btn):not(.ft-qr) { display: block; color: var(--text-dim); padding: 4px 0; font-size: 0.9rem; }
.fcol a:not(.oc-btn):not(.ft-qr):hover { color: var(--yellow); }
.fcol-brand p { color: var(--text-dim); font-size: 0.88rem; margin: 12px 0 14px; }
.fcol-brand .brand { margin-bottom: 4px; }
.fsoc { display: flex; gap: 10px; }
.fsoc a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--card-edge);
  display: grid;
  place-items: center;
  font-size: 1rem;
  padding: 0;
}
.fsoc a:hover { border-color: var(--yellow); }
.ft-qr {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  padding: 8px 14px 8px 8px;
  border-radius: 12px;
  border: 1px solid var(--card-edge);
  background: rgba(255, 255, 255, 0.03);
}
.ft-qr:hover { border-color: rgba(242, 193, 78, 0.4); }
.ft-qr img { width: 52px; height: 52px; border-radius: 6px; background: #fff; padding: 3px; display: block; }
.ft-qr span { color: var(--text-dim); font-size: 0.76rem; max-width: 110px; line-height: 1.3; }
.footer-bot {
  text-align: center;
  color: var(--muted);
  font-size: 0.8rem;
  border-top: 1px solid var(--card-edge);
  padding-top: 18px;
  max-width: 1120px;
  margin: 0 auto;
}

/* ---- Order channels (Call / WhatsApp / Swiggy / Zomato) ---- */
.order-channels { display: flex; flex-wrap: wrap; gap: 10px; }
.oc-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 10px;
  font-weight: 800;
  font-family: var(--display);
  font-size: 0.86rem;
  letter-spacing: 0.2px;
  transition: transform .12s, filter .15s;
}
.oc-btn:hover { transform: translateY(-2px); filter: brightness(1.08); }
.oc-btn .icon-svg { width: 16px; height: 16px; }
.oc-call { background: var(--yellow); color: #171203; }
.oc-wa { background: #25d366; color: #06281a; }
.oc-swiggy { background: #fc8019; color: #fff; }
.oc-zomato { background: #e23744; color: #fff; }
.order-channels.oc-lg .oc-btn { padding: 14px 26px; font-size: 0.95rem; border-radius: 12px; }
.order-channels.oc-lg .oc-btn .icon-svg { width: 19px; height: 19px; }
.fcol .order-channels { flex-direction: column; align-items: flex-start; }
.fcol .oc-btn { width: 100%; justify-content: center; padding: 9px 14px; font-size: 0.82rem; }

/* ---- Inline SVG icons ---- */
.icon-svg { width: 17px; height: 17px; vertical-align: -3.5px; }
.insta-link { display: inline-flex; align-items: center; gap: 6px; }
.insta-link .icon-svg { color: #e1306c; }
.fsoc a { color: var(--text-dim); }
.fsoc a:hover { color: var(--yellow); }
.fsoc a .icon-svg { width: 18px; height: 18px; vertical-align: 0; }
.fsoc #ft-insta { color: #e1306c; border-color: rgba(225, 48, 108, 0.45); }
.fsoc #ft-insta:hover { color: #ff5f96; border-color: #ff5f96; }
.fcol a:not(.oc-btn):not(.ft-qr) .icon-svg { width: 15px; height: 15px; color: var(--gold); }
.fcol a.insta-link:not(.oc-btn) .icon-svg { color: #e1306c; }

/* ---- Customer reviews (testimonial carousel) ---- */
.tes-header { text-align: center; margin-bottom: 40px; }
.tes-eyebrow-wrap { display: flex; align-items: center; justify-content: center; gap: 18px; margin-bottom: 6px; }
.tes-eyebrow-line { width: 54px; height: 1px; background: var(--gold); opacity: 0.55; }
.tes-eyebrow {
  font-family: "Dancing Script", cursive;
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--gold);
}
.tes-title {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: #ffffff;
  letter-spacing: 0.3px;
}
.tes-sub { color: var(--text-dim); margin-top: 8px; }

.tes-carousel { position: relative; }
.tes-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--card-edge);
  background: var(--bg-raise);
  color: var(--cream);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color .15s, color .15s, transform .15s;
}
.tes-arrow:hover { border-color: var(--yellow); color: var(--yellow); }
.tes-arrow.prev { left: -22px; }
.tes-arrow.next { right: -22px; }
@media (max-width: 760px) {
  .tes-arrow { width: 36px; height: 36px; font-size: 1.3rem; }
  .tes-arrow.prev { left: -8px; }
  .tes-arrow.next { right: -8px; }
}

.tes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-bottom: 26px;
  border: 1px solid var(--card-edge);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}
.tescard {
  background: var(--card);
  padding: 30px 26px;
  position: relative;
  border-right: 1px solid var(--card-edge);
  display: flex;
  flex-direction: column;
  min-width: 0; /* flex items default to min-width:auto, which lets content overflow instead of wrapping */
  min-height: 340px;
  animation: tesCardIn .45s ease both;
}
.tescard:last-child { border-right: none; }
/* Each fresh render replaces the cards entirely (innerHTML swap), so this
   animation replays automatically on every page change/auto-advance —
   no JS needed. Slight stagger across the up-to-3 desktop cards so they
   don't all pop in in lockstep. */
.tescard:nth-child(2) { animation-delay: .06s; }
.tescard:nth-child(3) { animation-delay: .12s; }
@keyframes tesCardIn {
  from { opacity: 0; transform: translateY(16px) scale(0.98); }
  to { opacity: 1; transform: none; }
}

/* Mobile slideshow track — every review sits side by side in one flex row;
   the page script slides this single element via transform to navigate,
   which is what actually makes it robust (nothing to measure, clone, or
   layer — the browser's own flex + transform layout does all the work). */
/* Track/slide widths are set explicitly inline by the page script (see
   buildMobileTrack) rather than via flex-basis percentages, which would
   resolve against the track's own not-yet-defined width. flex: 0 0 auto
   just means "don't override that inline width." */
.tes-track {
  display: flex;
  transition: transform .45s ease;
  /* #tes-grid is a grid container and .tes-track is its item — grid items
     also default to min-width:auto, so this explicitly-oversized track
     (N*100% wide, to hold every slide side by side) was forcing #tes-grid's
     own track to grow and fit it, defeating overflow:hidden entirely —
     instead of clipping to one slide, the whole oversized row showed
     through, clipped only by the viewport edge wherever it happened to be
     scrolled to. This is the actual fix; the earlier min-width:0 additions
     on .tescard/.tescard p were solving a real but different problem. */
  min-width: 0;
}
.tes-track .tescard {
  flex: 0 0 auto;
  border-right: none;
  animation: none; /* the track's own transform is the only motion here */
}

@media (prefers-reduced-motion: reduce) {
  .tescard { animation: none; }
  .tes-track { transition: none; }
}
.tescard .tesq {
  width: 40px;
  height: 40px;
  margin-bottom: 16px;
  color: var(--gold);
  opacity: 0.9;
}
.tescard .tesq svg { width: 100%; height: 100%; }
.tescard .stars { color: var(--yellow); letter-spacing: 2.5px; margin-bottom: 10px; font-size: 0.9rem; }
.tescard p {
  color: var(--text-dim);
  font-size: 0.92rem;
  margin-bottom: 22px;
  line-height: 1.6;
  width: 100%;
  min-width: 0; /* flex items default to min-width:auto, letting content overflow instead of wrapping */
  overflow-wrap: break-word;
  /* Comments vary a lot in length (up to 1000 chars) — a fixed max-height
     + overflow:hidden (plain block-level clipping, not -webkit-line-clamp)
     keeps every card the same height. line-clamp needs display:-webkit-box,
     a legacy box model that doesn't reliably size itself as a flex item
     inside .tescard's column layout — that mismatch was the real cause of
     the text overflowing its card instead of wrapping. */
  max-height: calc(1.6em * 5);
  overflow: hidden;
}
.tes-auth { display: flex; gap: 12px; align-items: center; margin-top: auto; }
.tes-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.tes-name { font-weight: 800; color: var(--cream); font-size: 0.96rem; display: inline-flex; align-items: center; gap: 8px; }
.tes-date { color: var(--muted); font-size: 0.76rem; }
.tes-src {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 999px;
  background: var(--card-edge);
  color: var(--text-dim);
}
.tes-src.google { background: rgba(66, 133, 244, 0.16); color: #8ab4f8; }
.tes-src.swiggy { background: rgba(252, 128, 25, 0.18); color: #fc8019; }
.tes-src.zomato { background: rgba(226, 55, 68, 0.18); color: #ff8b93; }
.tescard.featured .tes-src { background: rgba(23, 18, 3, 0.14); color: #171203; }

.rev-open-btn { text-align: center; }

.tescard.featured {
  background: var(--yellow);
}
.tescard.featured .tesq { color: #171203; opacity: 0.35; }
.tescard.featured .stars { color: #171203; }
.tescard.featured p { color: #2a2205; }
.tescard.featured .tes-avatar { background: #171203; color: var(--yellow); }
.tescard.featured .tes-name { color: #171203; }
.tescard.featured .tes-date { color: rgba(23, 18, 3, 0.65); }

.tes-dots { display: flex; justify-content: center; gap: 10px; margin-bottom: 44px; }
.tes-dots button {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  border: 1px solid var(--card-edge);
  background: transparent;
  padding: 0;
  cursor: pointer;
}
.tes-dots button.active { background: var(--yellow); border-color: var(--yellow); }

.tes-empty {
  text-align: center;
  color: var(--muted);
  padding: 40px 0;
  border: 1px solid var(--card-edge);
  border-radius: var(--radius);
  margin-bottom: 26px;
}

@media (max-width: 780px) {
  .tes-grid { grid-template-columns: 1fr; }
  .tescard { border-right: none; border-bottom: 1px solid var(--card-edge); }
  .tescard:last-child { border-bottom: none; }
  /* One review per page here already (see perPage() in the page script),
     so the page count = review count — with more than a few reviews this
     was a long, cluttered row of dots. Autoplay handles navigation, so
     neither the dots nor the manual arrows are needed here. */
  .tes-dots { display: none; }
  .tes-arrow { display: none; }
}

.rev-form-card { max-width: 620px; margin: 0 auto; }
.rev-form-card h3 { font-family: var(--display); font-weight: 800; color: var(--cream); text-align: center; margin-bottom: 18px; font-size: 1.15rem; }
.stars-input { display: flex; gap: 8px; font-size: 1.7rem; justify-content: center; margin: 4px 0 2px; }
.stars-input span { color: var(--muted); cursor: pointer; transition: color .1s, transform .1s; user-select: none; }
.stars-input span:hover { transform: scale(1.18); }
.stars-input span.on { color: var(--yellow); }

/* ---- Review popup modal ---- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(6, 8, 16, 0.72);
  backdrop-filter: blur(3px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 150;
}
.modal-overlay.open { display: flex; }
.modal-box {
  background: var(--card);
  border: 1px solid var(--card-edge);
  border-radius: var(--radius);
  padding: 32px 30px;
  max-width: 520px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  animation: modal-in .22s ease;
}
@keyframes modal-in { from { opacity: 0; transform: translateY(14px) scale(.98); } to { opacity: 1; transform: none; } }
.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--card-edge);
  background: transparent;
  color: var(--text-dim);
  font-size: 1.1rem;
  cursor: pointer;
  line-height: 1;
}
.modal-close:hover { color: var(--err); border-color: var(--err); }

.btt {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(242, 193, 78, 0.4);
  background: var(--bg-raise);
  color: var(--yellow);
  font-size: 1.2rem;
  font-weight: 800;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s, transform .15s, border-color .15s;
  z-index: 60;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.5);
}
.btt.show { opacity: 1; pointer-events: auto; }
.btt:hover { transform: translateY(-3px); border-color: var(--yellow); }
@media (max-width: 620px) {
  .btt { width: 38px; height: 38px; right: 14px; bottom: 14px; font-size: 1.05rem; }
}

/* ---- Scroll reveal ---- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

@media (max-width: 860px) {
  .offer-grid { grid-template-columns: 1fr; gap: 40px; }
  .offer-grid .eyebrow, .offer-grid .section-title { text-align: center; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
  .fc1 { left: 0; } .fc2 { right: 0; }
  .hstats { justify-content: center; }
  .nav-wrap { flex-wrap: nowrap; padding: 12px 20px; }
  .nav-toggle { display: flex; }
  .brand-txt small { display: none; }
  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    background: #0b0e18;
    border-bottom: 1px solid rgba(242, 193, 78, 0.14);
    padding: 10px 20px 16px;
    box-shadow: 0 18px 30px rgba(0, 0, 0, 0.4);
  }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 12px 6px; font-size: 0.9rem; text-align: center; }
  .site-nav .nav-cta { margin-left: 0; margin-top: 8px; text-align: center; }
  .nav-mobile-only { display: block; }
}

@media (max-width: 620px) {
  .form-grid { grid-template-columns: 1fr; }
  .hero { padding: 70px 16px 60px; }
  .footer-cols { grid-template-columns: 1fr; }
}
