/* =========================================================
   NAMASTEY INDIA — Design System "Editorial Marfim"
   Online for Boost · 2026
   ========================================================= */

:root {
  /* Fundo único com nuances */
  --bg:          #F7F2EA;
  --bg-elevated: #F1E9DD;
  --surface:     #FFFFFF;

  /* Texto */
  --text:   #1A1512;
  --muted:  #7A6E63;

  /* Acento — único */
  --accent:   #6A1918;
  --accent-2: #8F2A24;

  /* Hairlines */
  --line:       rgba(26, 21, 18, 0.12);
  --line-solid: rgba(26, 21, 18, 0.20);

  /* Tipografia */
  --display: 'Fraunces', Georgia, serif;
  --body:    'Crimson Pro', Georgia, serif;
  --sans:    'Fraunces', Georgia, serif;

  /* Curva */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  /* Escala de 8 */
  --s1: 8px;  --s2: 16px; --s3: 24px; --s4: 32px;
  --s5: 48px; --s6: 64px; --s7: 96px; --s8: 128px;
}

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

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation: none !important; transition: none !important; }
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--body);
  font-size: 18px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  background: linear-gradient(135deg, var(--bg-elevated) 0%, #E6DCCB 100%);
}

a { color: inherit; }

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

/* ---------- Tipografia ---------- */
h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0;
  font-variation-settings: "SOFT" 0, "WONK" 0;
}
h1 { font-size: clamp(2.25rem, 6vw, 5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.75rem); }
h4 { font-size: clamp(1.05rem, 1.6vw, 1.3rem); }

p { margin: 0 0 var(--s2); }

.eyebrow {
  font-family: var(--display);
  font-weight: 200;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--muted);
  margin: 0 0 var(--s2);
  display: block;
}

.lead { font-size: clamp(1.05rem, 1.6vw, 1.3rem); color: var(--muted); }

.thin { font-weight: 200; font-style: italic; }

/* ---------- Layout ---------- */
.wrap {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}
.wrap-narrow { max-width: 760px; }

section { padding-block: 60px; background: var(--bg); }
@media (min-width: 768px)  { section { padding-block: 96px; } }
@media (min-width: 1024px) { section { padding-block: 140px; } }

.section-elevated { background: var(--bg-elevated); }

.rule {
  height: 1px;
  background: var(--line);
  border: 0;
  margin: 0;
}

/* ---------- Header ---------- */
.hdr {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 242, 234, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.hdr-in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.brand {
  display: flex;
  align-items: baseline;
  gap: 7px;
  text-decoration: none;
  font-family: var(--display);
  line-height: 1;
}
.brand-1 {
  font-weight: 900;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
}
.brand-2 {
  font-weight: 200;
  font-size: 1.35rem;
  font-style: italic;
  color: var(--accent);
}
.brand img { height: 38px; width: auto; background: none; }

.nav { display: none; gap: var(--s4); align-items: center; }
@media (min-width: 1024px) { .nav { display: flex; } }

.nav a {
  text-decoration: none;
  font-family: var(--display);
  font-weight: 400;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  color: var(--text);
  position: relative;
  padding-block: 4px;
  transition: color 0.3s var(--ease);
}
.nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--ease);
}
.nav a:hover { color: var(--accent); }
.nav a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav a[aria-current="page"] { color: var(--accent); }
.nav a[aria-current="page"]::after { transform: scaleX(1); }

/* Hambúrguer */
.burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 0;
  align-items: flex-end;
}
@media (min-width: 1024px) { .burger { display: none; } }
.burger span {
  display: block;
  height: 1.5px;
  background: var(--text);
  transition: transform 0.4s var(--ease), opacity 0.3s var(--ease), width 0.4s var(--ease);
}
.burger span:nth-child(1) { width: 24px; }
.burger span:nth-child(2) { width: 18px; }
.burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); width: 24px; }
.burger.open span:nth-child(2) { transform: translateY(-6.5px) rotate(-45deg); width: 24px; }

/* Overlay mobile */
.mnav {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 32px;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.4s var(--ease), visibility 0.4s;
}
.mnav.open { visibility: visible; opacity: 1; }
.mnav a {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(1.8rem, 8vw, 2.6rem);
  text-decoration: none;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  letter-spacing: -0.02em;
}
.mnav a:last-of-type { border-bottom: 0; }
.mnav-foot {
  margin-top: var(--s5);
  font-size: 0.95rem;
  color: var(--muted);
}
.mnav-foot a { font-size: 1rem; font-weight: 400; border: 0; padding: 4px 0; display: block; color: var(--accent); }

/* ---------- Botões ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 30px;
  background: var(--accent);
  color: var(--bg);
  text-decoration: none;
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  border: 1px solid var(--accent);
  transition: background-color 0.3s var(--ease), transform 0.3s var(--ease), border-color 0.3s var(--ease);
}
.btn:hover {
  background: var(--accent-2);
  border-color: var(--accent-2);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line-solid);
}
.btn-ghost:hover {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
  transform: translateY(-2px);
}
.btn-row { display: flex; flex-wrap: wrap; gap: var(--s2); }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--accent);
  border-bottom: 1px solid transparent;
  transition: gap 0.3s var(--ease), border-color 0.3s var(--ease);
}
.link-arrow:hover { gap: 14px; border-bottom-color: var(--accent); }

/* ---------- Ícones ---------- */
.ico {
  width: 20px; height: 20px;
  stroke: currentColor;
  stroke-width: 1.5;
  fill: none;
  flex-shrink: 0;
}
.ico-muted { color: var(--muted); opacity: 0.75; }

/* ---------- Hero ---------- */
.hero {
  min-height: 92vh;
  display: grid;
  align-items: center;
  padding-block: 60px;
  position: relative;
}
@media (min-width: 1024px) { .hero { min-height: 100vh; padding-block: 0; } }

.hero-grid {
  display: grid;
  gap: var(--s5);
  align-items: center;
}
@media (min-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr 1fr; gap: var(--s7); }
}

.hero h1 { margin-bottom: var(--s3); }
.hero h1 em {
  font-weight: 200;
  font-style: italic;
  color: var(--accent);
  display: block;
}
.hero-p { max-width: 46ch; margin-bottom: var(--s4); }

.hero-media { position: relative; overflow: hidden; }
.hero-media img {
  width: 100%;
  height: 46vh;
  object-fit: cover;
}
@media (min-width: 1024px) {
  .hero-media img { height: 78vh; }
}

.hero-stat {
  position: absolute;
  left: 0; bottom: 0;
  background: var(--bg);
  padding: 18px 24px;
  border-top: 2px solid var(--accent);
}
.hero-stat b {
  font-family: var(--display);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--accent);
  display: block;
  line-height: 1;
}
.hero-stat span {
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}

/* Barra de estado */
.statusbar {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s2) var(--s4);
  align-items: center;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-size: 0.85rem;
  color: var(--muted);
  font-family: var(--display);
}
.statusbar b { color: var(--text); font-weight: 700; }
.status-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #2E7D5B;
  display: inline-block;
  margin-right: 7px;
}
.status-dot.closed { background: var(--accent); }

/* ---------- Cabeçalho de secção ---------- */
.sec-head { max-width: 660px; margin-bottom: var(--s6); }
.sec-head h2 { margin-bottom: var(--s3); }

/* ---------- Grelha de pratos ---------- */
.dishes {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s3);
}
@media (min-width: 640px)  { .dishes { grid-template-columns: repeat(2, 1fr); gap: var(--s4); } }
@media (min-width: 1024px) { .dishes { grid-template-columns: repeat(4, 1fr); } }

.dish { text-decoration: none; display: block; }
.dish-img { overflow: hidden; margin-bottom: var(--s2); }
.dish-img img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  transition: transform 0.7s var(--ease), filter 0.5s var(--ease);
}
.dish:hover .dish-img img { transform: scale(1.05); filter: brightness(0.95); }
.dish-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 4px;
}
.dish h3 { font-size: 1.15rem; letter-spacing: -0.01em; }
.dish-price {
  font-family: var(--display);
  font-weight: 900;
  color: var(--accent);
  font-size: 1.05rem;
  white-space: nowrap;
}
.dish p { font-size: 0.95rem; color: var(--muted); margin: 0; line-height: 1.5; }

/* ---------- Pilares ---------- */
.pillars {
  display: grid;
  gap: var(--s5);
  grid-template-columns: 1fr;
}
@media (min-width: 768px) { .pillars { grid-template-columns: repeat(3, 1fr); gap: var(--s4); } }
.pillar { padding-top: var(--s3); border-top: 1px solid var(--line-solid); }
.pillar .ico { margin-bottom: var(--s2); }
.pillar h3 { font-size: 1.2rem; margin-bottom: var(--s1); }
.pillar p { font-size: 0.98rem; color: var(--muted); margin: 0; }

/* ---------- Bloco resposta (AEO) ---------- */
.answer {
  border-left: 2px solid var(--accent);
  padding: 4px 0 4px var(--s3);
  margin: 0 0 var(--s4);
  font-size: 1.08rem;
  max-width: 62ch;
}

/* ---------- Média com parallax ---------- */
.media-band {
  overflow: hidden;
  position: relative;
  height: 46vh;
}
@media (min-width: 1024px) { .media-band { height: 72vh; } }
.media-band img {
  width: 100%;
  height: 128%;
  object-fit: cover;
  position: absolute;
  top: -14%; left: 0;
}

/* ---------- Reviews ---------- */
.rev-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: var(--s2) var(--s4);
  margin-bottom: var(--s5);
}
.rev-score {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  color: var(--accent);
  line-height: 1;
}
.stars { color: var(--accent); letter-spacing: 3px; font-size: 1rem; }

.quotes {
  display: grid;
  gap: var(--s3);
  grid-template-columns: 1fr;
}
@media (min-width: 768px) { .quotes { grid-template-columns: repeat(3, 1fr); gap: var(--s4); } }
.quote {
  border-top: 1px solid var(--line-solid);
  padding-top: var(--s3);
}
.quote blockquote {
  margin: 0 0 var(--s2);
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.6;
}
.quote cite {
  font-family: var(--display);
  font-weight: 700;
  font-style: normal;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---------- FAQ ---------- */
.faq { max-width: 860px; }
.faq details {
  border-bottom: 1px solid var(--line);
  padding: var(--s3) 0;
}
.faq details[open] summary { color: var(--accent); }
.faq summary {
  cursor: pointer;
  list-style: none;
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--s3);
  transition: color 0.3s var(--ease);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  font-weight: 200;
  font-size: 1.6rem;
  line-height: 1;
  color: var(--accent);
  transition: transform 0.4s var(--ease);
  flex-shrink: 0;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq summary:hover { color: var(--accent); }
.faq .faq-a {
  padding-top: var(--s2);
  color: var(--muted);
  max-width: 68ch;
}
.faq .faq-a p:last-child { margin-bottom: 0; }

/* ---------- Info / Mapa ---------- */
.info-grid {
  display: grid;
  gap: var(--s5);
  grid-template-columns: 1fr;
}
@media (min-width: 1024px) { .info-grid { grid-template-columns: 1fr 1.15fr; gap: var(--s6); } }

.info-list { list-style: none; padding: 0; margin: 0; }
.info-list li {
  display: flex;
  gap: var(--s2);
  padding: var(--s3) 0;
  border-bottom: 1px solid var(--line);
}
.info-list li:first-child { border-top: 1px solid var(--line); }
.info-list .k {
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  width: 96px;
  flex-shrink: 0;
  padding-top: 5px;
}
.info-list .v { flex: 1; }
.info-list .v a { color: var(--accent); text-decoration: none; border-bottom: 1px solid transparent; transition: border-color 0.3s var(--ease); }
.info-list .v a:hover { border-bottom-color: var(--accent); }

.map-embed {
  width: 100%;
  height: 420px;
  border: 1px solid var(--line-solid);
  filter: grayscale(0.25);
  transition: filter 0.6s var(--ease);
}
.map-embed:hover { filter: grayscale(0); }
@media (min-width: 1024px) { .map-embed { height: 100%; min-height: 480px; } }

/* ---------- Delivery ---------- */
.plats {
  display: grid;
  gap: var(--s3);
  grid-template-columns: 1fr;
}
@media (min-width: 768px) { .plats { grid-template-columns: repeat(3, 1fr); gap: var(--s4); } }
.plat {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--s2);
  padding: var(--s4);
  background: var(--bg);
  border: 1px solid var(--line);
  text-decoration: none;
  transition: border-color 0.4s var(--ease), transform 0.4s var(--ease);
}
.section-elevated .plat { background: var(--bg); }
.plat:hover { border-color: var(--accent); transform: translateY(-4px); }
.plat img { height: 30px; width: auto; object-fit: contain; background: none; }
.plat h3 { font-size: 1.15rem; }
.plat p { font-size: 0.92rem; color: var(--muted); margin: 0; }
.plat .link-arrow { margin-top: auto; padding-top: var(--s2); }

/* ---------- Menu (carta) ---------- */
.menu-nav {
  position: sticky;
  top: 72px;
  z-index: 50;
  background: rgba(247, 242, 234, 0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  padding: 12px 0;
}
.menu-nav-in {
  display: flex;
  gap: var(--s3);
  overflow-x: auto;
  scrollbar-width: none;
}
.menu-nav-in::-webkit-scrollbar { display: none; }
.menu-nav a {
  white-space: nowrap;
  text-decoration: none;
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 6px 0;
  border-bottom: 1px solid transparent;
  transition: color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.menu-nav a:hover { color: var(--accent); border-bottom-color: var(--accent); }

.note {
  border: 1px solid var(--line-solid);
  border-left: 3px solid var(--accent);
  padding: var(--s3) var(--s4);
  background: var(--bg-elevated);
  margin-bottom: var(--s6);
  max-width: 780px;
}
.note h3 { font-size: 1.05rem; margin-bottom: var(--s1); }
.note ul { margin: 0; padding-left: 18px; color: var(--muted); font-size: 1rem; }
.note li { margin-bottom: 4px; }

.cat { padding-top: var(--s6); scroll-margin-top: 130px; }
.cat:first-of-type { padding-top: 0; }
.cat h2 {
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  padding-bottom: var(--s2);
  border-bottom: 1px solid var(--line-solid);
  margin-bottom: var(--s4);
}
.cat h2 small {
  font-family: var(--body);
  font-weight: 400;
  font-size: 0.85rem;
  color: var(--muted);
  letter-spacing: 0;
  margin-left: 12px;
  font-style: italic;
}

.item {
  display: grid;
  grid-template-columns: 34px 1fr auto;
  gap: var(--s2);
  padding: var(--s2) 0;
  border-bottom: 1px dotted var(--line);
  align-items: baseline;
}
.item:last-child { border-bottom: 0; }
.item-n {
  font-family: var(--display);
  font-weight: 200;
  font-size: 0.85rem;
  color: var(--muted);
}
.item-b h3 {
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: -0.005em;
  margin-bottom: 2px;
}
.item-b p { margin: 0; font-size: 0.95rem; color: var(--muted); line-height: 1.45; }
.item-p {
  font-family: var(--display);
  font-weight: 900;
  color: var(--accent);
  font-size: 1.02rem;
  white-space: nowrap;
}
.tag {
  display: inline-block;
  font-family: var(--display);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 2px 7px;
  border: 1px solid var(--line-solid);
  color: var(--muted);
  margin-left: 8px;
  vertical-align: middle;
  border-radius: 2px;
}
.tag-hot { color: var(--accent); border-color: var(--accent); }
.tag-veg { color: #46683F; border-color: #46683F; }

/* ---------- Blog ---------- */
.posts { display: grid; gap: var(--s5); grid-template-columns: 1fr; }
@media (min-width: 768px)  { .posts { grid-template-columns: repeat(2, 1fr); gap: var(--s4); } }
@media (min-width: 1024px) { .posts { grid-template-columns: repeat(3, 1fr); } }

.post { text-decoration: none; display: flex; flex-direction: column; }
.post-img { overflow: hidden; margin-bottom: var(--s3); }
.post-img img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.post:hover .post-img img { transform: scale(1.04); }
.post .meta {
  font-family: var(--display);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: var(--s1);
}
.post h3 { font-size: 1.3rem; margin-bottom: var(--s1); transition: color 0.3s var(--ease); }
.post:hover h3 { color: var(--accent); }
.post p { font-size: 0.98rem; color: var(--muted); margin: 0 0 var(--s2); }
.post .link-arrow { margin-top: auto; }

/* ---------- Artigo ---------- */
.article { max-width: 720px; margin: 0 auto; }
.article-hero { margin-bottom: var(--s5); }
.article-hero img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.prose { font-size: 1.12rem; line-height: 1.75; }
.prose h2 {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  margin: var(--s6) 0 var(--s3);
}
.prose h3 {
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  margin: var(--s5) 0 var(--s2);
}
.prose ul, .prose ol { padding-left: 22px; margin-bottom: var(--s3); }
.prose li { margin-bottom: var(--s1); }
.prose strong { font-weight: 700; }
.prose a { color: var(--accent); text-decoration: none; border-bottom: 1px solid var(--line-solid); transition: border-color 0.3s var(--ease); }
.prose a:hover { border-bottom-color: var(--accent); }
.prose .answer { font-size: 1.08rem; }

.toc {
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  padding: var(--s4);
  margin-bottom: var(--s5);
}
.toc h2 { font-size: 1.05rem !important; margin: 0 0 var(--s2) !important; }
.toc ul { margin: 0; padding-left: 20px; color: var(--muted); font-size: 1rem; }

.cta-box {
  border-top: 2px solid var(--accent);
  background: var(--bg-elevated);
  padding: var(--s5) var(--s4);
  margin-top: var(--s7);
  text-align: center;
}
.cta-box h2 { margin-bottom: var(--s2) !important; margin-top: 0 !important; }
.cta-box p { color: var(--muted); max-width: 48ch; margin: 0 auto var(--s4); }
.cta-box .btn-row { justify-content: center; }

/* ---------- CTA final ---------- */
.cta-final { text-align: center; }
.cta-final h2 { max-width: 16ch; margin: 0 auto var(--s3); }
.cta-final p { max-width: 52ch; margin: 0 auto var(--s5); color: var(--muted); }
.cta-final .btn-row { justify-content: center; }

/* ---------- Footer ---------- */
.ftr {
  background: var(--bg-elevated);
  border-top: 1px solid var(--line-solid);
  padding-block: var(--s6) var(--s4);
}
.ftr-grid {
  display: grid;
  gap: var(--s5);
  grid-template-columns: 1fr;
  margin-bottom: var(--s6);
}
@media (min-width: 768px)  { .ftr-grid { grid-template-columns: 1.4fr 1fr 1fr; gap: var(--s4); } }
@media (min-width: 1024px) { .ftr-grid { grid-template-columns: 1.6fr 1fr 1fr 1fr; } }

.ftr h4 {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--muted);
  margin-bottom: var(--s3);
}
.ftr ul { list-style: none; padding: 0; margin: 0; }
.ftr li { margin-bottom: 10px; }
.ftr a {
  text-decoration: none;
  color: var(--text);
  font-size: 1rem;
  border-bottom: 1px solid transparent;
  transition: color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.ftr a:hover { color: var(--accent); border-bottom-color: var(--accent); }
.ftr .brand { margin-bottom: var(--s3); }
.ftr-about { color: var(--muted); font-size: 0.98rem; max-width: 34ch; }
.ftr-hours { color: var(--muted); font-size: 0.98rem; line-height: 1.9; }
.ftr-hours b { color: var(--text); font-weight: 700; }

.ftr-btm {
  border-top: 1px solid var(--line);
  padding-top: var(--s3);
  display: flex;
  flex-wrap: wrap;
  gap: var(--s2) var(--s3);
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--muted);
}
.ftr-btm a { font-size: 0.85rem; color: var(--muted); }
.ftr-social { display: flex; gap: var(--s2); }
.ftr-social a {
  display: grid;
  place-items: center;
  width: 38px; height: 38px;
  border: 1px solid var(--line-solid);
  color: var(--muted);
  transition: color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.ftr-social a:hover { color: var(--accent); border-color: var(--accent); }

/* ---------- Balões flutuantes ---------- */
.floats {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (min-width: 768px) { .floats { right: 28px; bottom: 28px; } }

.float {
  display: grid;
  place-items: center;
  width: 56px; height: 56px;
  border-radius: 50%;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 6px 22px rgba(26, 21, 18, 0.22);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.float:hover { transform: translateY(-3px) scale(1.04); box-shadow: 0 10px 30px rgba(26, 21, 18, 0.3); }
.float svg { width: 27px; height: 27px; fill: currentColor; stroke: none; }
.float-wa { background: #25D366; }
.float-tel { background: var(--accent); }
.float-tel svg { fill: none; stroke: currentColor; stroke-width: 1.8; }

/* ---------- Skip link ---------- */
.skip {
  position: absolute;
  left: -9999px;
  top: 8px;
  z-index: 200;
  background: var(--accent);
  color: var(--bg);
  padding: 10px 18px;
  text-decoration: none;
}
.skip:focus { left: 8px; }

:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

/* =========================================================
   JULHO 2026 — Ajustes editoriais e novos Menus Especiais
   ========================================================= */

/* Melhor legibilidade e menos espaço vazio entre blocos */
body { font-size: 19px; }
section { padding-block: 56px; }
@media (min-width: 768px)  { section { padding-block: 76px; } }
@media (min-width: 1024px) { section { padding-block: 96px; } }

.lead { font-size: clamp(1.12rem, 1.7vw, 1.38rem); line-height: 1.62; }
.answer { font-size: 1.14rem; line-height: 1.68; }
.pillar p, .dish p, .post p, .plat p { font-size: 1rem; line-height: 1.62; }
.prose { font-size: 1.16rem; line-height: 1.72; }
.sec-head { margin-bottom: var(--s5); }
.prose h2 { margin-top: var(--s5); }
.prose h3 { margin-top: var(--s4); }

/* Cabeçalho e logotipo oficial */
.hdr-in { height: 80px; }
.brand { align-items: center; }
.brand-logo {
  display: block;
  width: 54px;
  height: 54px;
  object-fit: contain;
  background: #000;
}
.ftr .brand-logo { width: 78px; height: 78px; }
.nav { gap: clamp(14px, 1.55vw, 28px); }
.nav a { font-size: 0.82rem; }
.menu-nav { top: 80px; }

/* Hero vermelho solicitado */
.hero.hero-red {
  background: #8F2A24;
  color: var(--bg);
}
.hero.hero-red .eyebrow,
.hero.hero-red .lead,
.hero.hero-red .statusbar,
.hero.hero-red .statusbar b { color: rgba(247, 242, 234, 0.88); }
.hero.hero-red h1 em { color: #F2D06B; }
.hero.hero-red .statusbar {
  border-color: rgba(247, 242, 234, 0.26);
}
.hero.hero-red .btn {
  background: var(--bg);
  border-color: var(--bg);
  color: #8F2A24;
}
.hero.hero-red .btn:hover {
  background: #F2D06B;
  border-color: #F2D06B;
  color: #6A1918;
}
.hero.hero-red .btn-ghost {
  background: transparent;
  color: var(--bg);
  border-color: rgba(247, 242, 234, 0.58);
}
.hero.hero-red .btn-ghost:hover {
  background: rgba(247, 242, 234, 0.08);
  border-color: var(--bg);
  color: var(--bg);
}
.hero.hero-red .hero-stat {
  background: var(--bg);
  color: var(--text);
}
.hero.hero-red .hero-stat b { color: #8F2A24; }

/* Imagens editoriais sem formato panorâmico agressivo */
.media-feature {
  margin: 56px auto;
  padding-inline: 24px;
}
.media-feature img {
  width: 100%;
  height: auto;
  object-fit: contain;
  background: none;
}
.media-feature-facade { max-width: 1120px; }
.media-feature-facade img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
}
.media-feature-portrait { max-width: 760px; }
.media-feature-portrait img { max-height: 920px; object-fit: contain; }
@media (min-width: 768px) {
  .media-feature { margin-block: 72px; }
}

/* Página Sobre Nós: aproximação entre título, subtítulo e texto */
.page-intro { padding-bottom: 24px !important; }
.story-opening { padding-top: 42px !important; padding-bottom: 52px !important; }
.page-intro + .story-opening { padding-top: 24px !important; }

/* Destaque de menus especiais na homepage */
.special-preview-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s3);
}
@media (min-width: 768px) {
  .special-preview-grid { grid-template-columns: repeat(2, 1fr); gap: var(--s4); }
}
.special-preview-card {
  display: flex;
  flex-direction: column;
  min-height: 280px;
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid var(--line-solid);
  background: var(--bg);
  text-decoration: none;
  transition: transform .35s var(--ease), border-color .35s var(--ease);
}
.special-preview-card:hover { transform: translateY(-4px); border-color: var(--accent); }
.special-kicker {
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .72rem;
  color: var(--muted);
  margin-bottom: var(--s2);
}
.special-preview-card strong {
  font-family: var(--display);
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  line-height: 1;
  color: var(--accent);
  margin-bottom: var(--s3);
}
.special-preview-card strong small {
  font-size: .92rem;
  font-weight: 400;
  color: var(--muted);
}
.special-preview-card p { color: var(--muted); max-width: 42ch; }
.special-preview-card .link-arrow { margin-top: auto; }

/* Página Menus Especiais */
.special-hero h1 { max-width: 18ch; }
.special-hero h1 em {
  display: block;
  font-weight: 200;
  font-style: italic;
  color: var(--accent);
}
.special-hero .lead { max-width: 62ch; margin-top: var(--s3); }

.special-menu-section { scroll-margin-top: 110px; }
.special-menu-layout {
  display: grid;
  gap: var(--s5);
  align-items: start;
}
@media (min-width: 900px) {
  .special-menu-layout { grid-template-columns: .95fr 1.05fr; gap: var(--s7); }
}
.special-menu-copy h2 { margin-bottom: var(--s3); }
.special-menu-copy .lead { margin-bottom: var(--s4); }

.price-block {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  border-left: 3px solid var(--accent);
  padding: 4px 0 4px var(--s3);
  margin: var(--s2) 0 var(--s4);
}
.price-block strong {
  font-family: var(--display);
  font-size: clamp(3rem, 7vw, 5.6rem);
  line-height: .92;
  color: var(--accent);
}
.price-block span {
  font-family: var(--display);
  color: var(--muted);
  font-size: .92rem;
  margin-top: 8px;
}

.special-menu-card {
  background: var(--bg-elevated);
  border: 1px solid var(--line-solid);
  border-top: 3px solid var(--accent);
  padding: clamp(28px, 5vw, 52px);
}
.special-menu-card h3 { margin-bottom: var(--s3); }
.special-menu-card hr { border: 0; border-top: 1px solid var(--line); margin: var(--s4) 0; }

.choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.choice-grid li {
  border: 1px solid var(--line-solid);
  padding: 12px 14px;
  text-align: center;
  font-family: var(--display);
  background: var(--bg);
}

.menu-list {
  margin: 0;
  padding-left: 1.15em;
}
.menu-list li { margin-bottom: 10px; }
.menu-list li::marker { color: var(--accent); }
.menu-note { color: var(--muted); margin-bottom: var(--s2); }

.special-menu-head {
  display: grid;
  gap: var(--s4);
  align-items: end;
  margin-bottom: var(--s5);
}
@media (min-width: 800px) {
  .special-menu-head { grid-template-columns: 1fr auto; }
}
.special-menu-head h2 { margin-bottom: var(--s3); }
.special-menu-head .lead { max-width: 58ch; }
.price-block-group { margin: 0; min-width: 270px; }
.price-block-group strong { font-size: clamp(3rem, 6vw, 5rem); }

.group-menu-grid {
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid var(--line-solid);
  border-left: 1px solid var(--line-solid);
}
@media (min-width: 760px) {
  .group-menu-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1100px) {
  .group-menu-grid { grid-template-columns: .8fr 1.4fr 1fr .8fr; }
}
.menu-column {
  min-height: 100%;
  padding: clamp(24px, 3vw, 38px);
  border-right: 1px solid var(--line-solid);
  border-bottom: 1px solid var(--line-solid);
  background: var(--bg);
}
.menu-column h3 { margin-bottom: var(--s3); }
.menu-step {
  display: inline-block;
  font-family: var(--display);
  font-weight: 900;
  color: var(--accent);
  font-size: .8rem;
  letter-spacing: .12em;
  margin-bottom: var(--s2);
}
.special-menu-cta {
  display: flex;
  flex-direction: column;
  gap: var(--s3);
  justify-content: space-between;
  align-items: flex-start;
  margin-top: var(--s5);
  padding: var(--s4);
  background: var(--bg);
  border-left: 3px solid var(--accent);
}
.special-menu-cta h3 { margin-bottom: var(--s1); }
.special-menu-cta p { margin: 0; color: var(--muted); }
@media (min-width: 850px) {
  .special-menu-cta { flex-direction: row; align-items: center; }
}

/* Mobile refinements */
@media (max-width: 767px) {
  body { font-size: 18px; }
  .hdr-in { height: 72px; }
  .brand-logo { width: 48px; height: 48px; }
  .media-feature { margin-block: 40px; }
  .hero.hero-red { min-height: auto; }
  .hero.hero-red .hero-media { margin-top: var(--s2); }
  .special-preview-card { min-height: 240px; }
}

/* Legibilidade do novo logotipo quadrado */
@media (min-width: 768px) {
  .brand-logo { width: 64px; height: 64px; }
  .ftr .brand-logo { width: 92px; height: 92px; }
}


/* =========================================================
   JULHO 2026 — Ajustes finais solicitados
   ========================================================= */

/* Gradiente personalizado da hero com base em #6A1918 */
.hero.hero-red {
  background:
    radial-gradient(circle at 78% 18%, rgba(242, 208, 107, 0.10) 0%, rgba(242, 208, 107, 0) 34%),
    linear-gradient(135deg, #6A1918 0%, #7A211E 48%, #4A0F0F 100%);
}
.hero.hero-red .hero-stat b { color: #6A1918; }
.hero.hero-red .btn { color: #6A1918; }

/* Títulos editoriais principais em vermelho Namastey */
.sec-head h2,
.page-intro h1,
.story-opening h2,
.special-menu-copy h2,
.special-menu-head h2,
.cat h2,
.prose h2,
.cta-final h2 {
  color: #6A1918;
}

/* Cabeçalho mais expressivo e logotipo maior */
.hdr {
  transition: background-color .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease), backdrop-filter .35s var(--ease);
}
.hdr-in { height: 96px; }
.brand-logo {
  width: 82px;
  height: 82px;
  object-fit: contain;
  background: transparent !important;
}
.ftr .brand-logo {
  width: 116px;
  height: 116px;
  background: transparent !important;
}
.menu-nav { top: 96px; }

/* Na home: transparente sobre a hero; creme ao fazer scroll */
.hdr.hdr-hero {
  position: fixed;
  left: 0;
  right: 0;
  width: 100%;
  background: transparent;
  border-bottom-color: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.hdr.hdr-hero .nav a {
  color: rgba(255, 248, 236, 0.96);
  text-shadow: 0 1px 18px rgba(38, 3, 3, 0.20);
}
.hdr.hdr-hero .nav a:hover,
.hdr.hdr-hero .nav a[aria-current="page"] { color: #F2D06B; }
.hdr.hdr-hero .nav a::after { background: #F2D06B; }
.hdr.hdr-hero .burger span { background: #FFF8EC; }

.hdr.hdr-hero.is-scrolled {
  background: rgba(247, 242, 234, 0.96);
  border-bottom-color: var(--line);
  box-shadow: 0 10px 34px rgba(52, 24, 18, 0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.hdr.hdr-hero.is-scrolled .nav a {
  color: var(--text);
  text-shadow: none;
}
.hdr.hdr-hero.is-scrolled .nav a:hover,
.hdr.hdr-hero.is-scrolled .nav a[aria-current="page"] { color: #6A1918; }
.hdr.hdr-hero.is-scrolled .nav a::after { background: #6A1918; }
.hdr.hdr-hero.is-scrolled .burger span { background: var(--text); }

/* Mais espaço superior na hero para o cabeçalho sobreposto */
.hdr.hdr-hero + .mnav + main .hero.hero-red { padding-top: 96px; }

/* Barra de categorias: scroll horizontal, setas e fade nas extremidades */
.menu-nav {
  overflow: hidden;
  padding: 0;
}
.menu-nav-shell {
  position: relative;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 42px;
  align-items: stretch;
  padding-inline: 24px;
}
.menu-nav-in {
  min-width: 0;
  gap: 30px;
  padding: 12px 20px;
  scroll-behavior: smooth;
  scroll-snap-type: x proximity;
  overscroll-behavior-x: contain;
}
.menu-nav-in a {
  flex: 0 0 auto;
  scroll-snap-align: start;
}
.menu-nav-in a.is-active {
  color: #6A1918;
  border-bottom-color: #6A1918;
}
.menu-nav-arrow {
  position: relative;
  z-index: 3;
  display: grid;
  place-items: center;
  border: 0;
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
  background: rgba(247, 242, 234, 0.98);
  color: #6A1918;
  font-family: Georgia, serif;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  transition: opacity .25s var(--ease), background-color .25s var(--ease);
}
.menu-nav-arrow:hover { background: #F1E9DD; }
.menu-nav-arrow:disabled { opacity: .28; cursor: default; }
.menu-nav-shell::before,
.menu-nav-shell::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: 34px;
  pointer-events: none;
}
.menu-nav-shell::before {
  left: 66px;
  background: linear-gradient(90deg, rgba(247,242,234,.98), rgba(247,242,234,0));
}
.menu-nav-shell::after {
  right: 66px;
  background: linear-gradient(270deg, rgba(247,242,234,.98), rgba(247,242,234,0));
}

@media (max-width: 767px) {
  .hdr-in { height: 78px; }
  .brand-logo { width: 64px; height: 64px; }
  .ftr .brand-logo { width: 96px; height: 96px; }
  .menu-nav { top: 78px; }
  .hdr.hdr-hero + .mnav + main .hero.hero-red { padding-top: 88px; }
  .menu-nav-shell {
    display: block;
    padding-inline: 0;
  }
  .menu-nav-in {
    padding: 12px 24px;
    gap: 24px;
    -webkit-overflow-scrolling: touch;
  }
  .menu-nav-arrow { display: none; }
  .menu-nav-shell::before { left: 0; }
  .menu-nav-shell::after { right: 0; }
}


/* =========================================================
   JULHO 2026 — Hero fotográfica e narrativa pós-pandemia
   ========================================================= */

/* Fotografia dos pratos em toda a hero, protegida por um gradiente vermelho profundo. */
.hero.hero-red {
  background-image:
    linear-gradient(105deg, rgba(62, 8, 8, 0.94) 0%, rgba(106, 25, 24, 0.90) 42%, rgba(106, 25, 24, 0.73) 70%, rgba(55, 8, 8, 0.82) 100%),
    url('/assets/hero-pratos-namastey-india-restaurante-indiano-massama.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  isolation: isolate;
}
.hero.hero-red::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 20% 18%, rgba(242, 208, 107, 0.12), transparent 32%),
    linear-gradient(180deg, rgba(20, 3, 3, 0.10), rgba(20, 3, 3, 0.30));
  pointer-events: none;
}
.hero.hero-red .hero-grid { position: relative; z-index: 1; }
.hero.hero-red .hero-p { text-shadow: 0 2px 24px rgba(25, 2, 2, 0.42); }
.hero.hero-red h1 { text-shadow: 0 3px 30px rgba(25, 2, 2, 0.42); }

/* Os dois CTA principais têm exatamente o mesmo tratamento visual. */
.hero.hero-red .btn-row .btn {
  background: var(--bg);
  border-color: var(--bg);
  color: #6A1918;
}
.hero.hero-red .btn-row .btn:hover {
  background: #F2D06B;
  border-color: #F2D06B;
  color: #4A0F0F;
}

/* Imagem do ambiente na coluna direita da hero. */
.hero-media-space {
  box-shadow: 0 28px 70px rgba(31, 3, 3, 0.32);
  border: 1px solid rgba(255, 248, 236, 0.26);
}
.hero-media-space img {
  object-position: center 42%;
}

/* Destaque editorial da memória do restaurante. */
.namastey-memory { padding-top: 28px; }
.story-quote {
  margin: var(--s5) 0;
  padding: clamp(26px, 4vw, 42px);
  border-left: 3px solid #6A1918;
  background: rgba(106, 25, 24, 0.055);
  color: #6A1918;
  font-family: var(--display);
  font-size: clamp(1.55rem, 3.1vw, 2.55rem);
  font-weight: 800;
  line-height: 1.16;
  letter-spacing: -0.025em;
}

@media (max-width: 1023px) {
  .hero.hero-red {
    background-position: 58% center;
  }
  .hero-media-space img { height: 58vh; min-height: 460px; }
}

@media (max-width: 767px) {
  .hero.hero-red {
    background-image:
      linear-gradient(180deg, rgba(67, 10, 10, 0.94) 0%, rgba(106, 25, 24, 0.90) 58%, rgba(48, 7, 7, 0.92) 100%),
      url('/assets/hero-pratos-namastey-india-restaurante-indiano-massama.webp');
    background-position: center;
  }
  .hero-media-space img { height: 56vh; min-height: 420px; }
  .story-quote { margin-block: var(--s4); }
}


/* =========================================================
   PRIVACIDADE E COOKIES — JULHO 2026
   ========================================================= */
.ftr-legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 18px;
  font-size: .88rem;
}
.ftr-legal a,
.ftr-legal .link-button {
  color: inherit;
  opacity: .82;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.ftr-legal a:hover,
.ftr-legal .link-button:hover { opacity: 1; }
.link-button {
  appearance: none;
  border: 0;
  background: transparent;
  padding: 0;
  font: inherit;
  cursor: pointer;
}

.legal-page { padding-top: 12px; }
.legal-hero { padding-bottom: var(--s5); }
.legal-wrap { max-width: 960px; }
.legal-hero h1 { max-width: 12ch; color: #6A1918; }
.legal-hero h1 em {
  display: block;
  color: #6A1918;
  font-weight: 200;
  font-style: italic;
}
.legal-updated { margin-top: 18px; color: var(--muted); font-size: .96rem; }
.legal-content { padding-top: 0; }
.prose { font-size: clamp(1.06rem, 1.45vw, 1.18rem); line-height: 1.72; }
.prose h2 {
  margin: clamp(42px, 7vw, 68px) 0 16px;
  color: #6A1918;
  font-family: var(--display);
  font-size: clamp(1.7rem, 3.5vw, 2.5rem);
  line-height: 1.12;
}
.prose h3 {
  margin: 28px 0 10px;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(1.25rem, 2.2vw, 1.55rem);
}
.prose p + p { margin-top: 15px; }
.prose a:not(.btn) { color: #6A1918; text-decoration: underline; text-underline-offset: 3px; }
.legal-summary {
  padding: clamp(22px, 4vw, 34px);
  border-left: 3px solid #6A1918;
  background: rgba(106,25,24,.055);
}
.legal-table-wrap { overflow-x: auto; margin: 22px 0 10px; }
.legal-table {
  width: 100%;
  min-width: 660px;
  border-collapse: collapse;
  font-size: 1rem;
  line-height: 1.5;
}
.legal-table th,
.legal-table td {
  padding: 16px 18px;
  border: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}
.legal-table th { background: rgba(106,25,24,.07); color: #6A1918; font-family: var(--display); }
.legal-table code { overflow-wrap: anywhere; }
.legal-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: var(--s5); }

.cookie-banner {
  position: fixed;
  z-index: 9998;
  right: 20px;
  bottom: 20px;
  width: min(560px, calc(100vw - 40px));
  padding: 24px;
  border: 1px solid rgba(242,208,107,.4);
  background: #211615;
  color: #fff8ec;
  box-shadow: 0 24px 80px rgba(20,4,4,.42);
}
.cookie-banner[hidden], .cookie-modal[hidden] { display: none !important; }
.cookie-banner h2 { margin: 0 0 8px; color: #F2D06B; font-size: 1.55rem; }
.cookie-banner p { margin: 0; color: rgba(255,248,236,.88); line-height: 1.5; }
.cookie-banner a { color: #F2D06B; text-decoration: underline; text-underline-offset: 3px; }
.cookie-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.cookie-action {
  flex: 1 1 145px;
  min-height: 46px;
  padding: 10px 14px;
  border: 1px solid #F2D06B;
  background: transparent;
  color: #fff8ec;
  font: 700 .92rem/1.2 var(--body);
  cursor: pointer;
}
.cookie-action.primary { background: #F2D06B; color: #4A0F0F; }
.cookie-action:hover { transform: translateY(-1px); }

.cookie-modal {
  position: fixed;
  z-index: 9999;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(20,8,7,.72);
}
.cookie-dialog {
  width: min(620px, 100%);
  max-height: min(760px, calc(100vh - 40px));
  overflow: auto;
  padding: clamp(24px, 5vw, 38px);
  background: var(--bg);
  color: var(--ink);
  box-shadow: 0 28px 100px rgba(0,0,0,.42);
}
.cookie-dialog-head { display: flex; justify-content: space-between; gap: 20px; align-items: start; }
.cookie-dialog h2 { margin: 0; color: #6A1918; font-size: clamp(1.7rem, 4vw, 2.3rem); }
.cookie-close { border: 0; background: transparent; font-size: 1.8rem; line-height: 1; cursor: pointer; }
.cookie-choice {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px 22px;
  align-items: center;
  margin-top: 26px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}
.cookie-choice strong { font-family: var(--display); font-size: 1.15rem; }
.cookie-choice p { grid-column: 1 / -1; margin: 0; color: var(--muted); line-height: 1.5; }
.cookie-switch { width: 22px; height: 22px; accent-color: #6A1918; }
.cookie-fixed { color: #6A1918; font-weight: 700; font-size: .9rem; }
.cookie-dialog .cookie-actions { margin-top: 28px; }
.cookie-dialog .cookie-action { color: #6A1918; border-color: #6A1918; }
.cookie-dialog .cookie-action.primary { background: #6A1918; color: #fff8ec; }

.cookie-map-wrap { position: relative; min-height: 440px; }
.cookie-map-placeholder {
  min-height: 440px;
  display: grid;
  place-items: center;
  padding: 34px;
  border: 1px solid var(--line);
  background: rgba(106,25,24,.055);
  text-align: center;
}
.cookie-map-placeholder-inner { max-width: 440px; }
.cookie-map-placeholder h3 { margin-bottom: 10px; color: #6A1918; }
.cookie-map-placeholder p { margin-bottom: 18px; color: var(--muted); line-height: 1.55; }

@media (max-width: 767px) {
  .ftr-legal { justify-content: flex-start; }
  .cookie-banner { right: 10px; bottom: 10px; width: calc(100vw - 20px); padding: 20px; }
  .cookie-actions { flex-direction: column; }
  .cookie-action { flex-basis: auto; width: 100%; }
  .cookie-map-wrap, .cookie-map-placeholder { min-height: 360px; }
  .legal-actions { flex-direction: column; }
  .legal-actions .btn { width: 100%; text-align: center; }
}
