:root {
  --bg: #130e0c;
  --surface: #1f1713;
  --surface-2: #2a1d17;
  --cream: #f6ecd7;
  --cream-2: #fff9ed;
  --red: #c90018;
  --orange: #f15a24;
  --yellow: #ffbd24;
  --green: #92c95e;
  --muted: #bcae9e;
  --line: rgba(255,255,255,.12);
  --dark-line: rgba(34,23,17,.14);
  --radius: 22px;
  --shadow: 0 28px 60px rgba(0,0,0,.32);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--cream);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
img { display: block; width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

.announcement {
  min-height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 7px 16px;
  background: linear-gradient(90deg, var(--red), var(--orange));
  color: #fff;
  text-align: center;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.announcement:hover { filter: brightness(1.08); }
.announcement span { text-decoration: underline; text-underline-offset: 3px; }

.site-header {
  height: 88px;
  padding: 0 clamp(20px,5vw,72px);
  display: flex;
  align-items: center;
  gap: 30px;
  position: absolute;
  top: 32px;
  left: 0;
  right: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(255,255,255,.18);
  background: linear-gradient(180deg, rgba(10,6,5,.55), transparent);
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}
.brand-logo,
.footer-logo {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255,255,255,.9);
  box-shadow: 0 0 0 4px rgba(241,90,36,.28), 0 10px 30px rgba(0,0,0,.24);
}
.brand-copy,
.footer-brand > div {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.brand-copy strong { font-size: 15px; }
.brand-copy small,
.footer-brand small {
  margin-top: 4px;
  color: #dacdbd;
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.main-nav {
  display: flex;
  gap: 24px;
  margin-left: auto;
}
.main-nav a {
  position: relative;
  color: #f5ebdc;
  font-size: 13px;
  font-weight: 700;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -7px;
  height: 2px;
  background: var(--yellow);
  transition: .3s ease;
}
.main-nav a:hover::after { right: 0; }

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid var(--orange);
  border-radius: 999px;
  background: var(--orange);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
  transition: transform .22s ease, filter .22s ease, box-shadow .22s ease;
  cursor: pointer;
}
.button:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
  box-shadow: 0 12px 28px rgba(241,90,36,.25);
}
.button-small { min-height: 42px; padding: 0 18px; font-size: 11px; }
.button-ghost {
  background: rgba(18,12,10,.28);
  border-color: rgba(255,255,255,.48);
  backdrop-filter: blur(10px);
}
.button-ghost.dark {
  background: transparent;
  border-color: rgba(30,20,15,.42);
  color: #2b1e16;
}
.button-instagram {
  border-color: #9f2c7d;
  background: linear-gradient(135deg,#6539b2,#d62976,#f77737);
}
.dark-instagram { color: #fff; }
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  margin-left: auto;
  border: 0;
  background: transparent;
}
.menu-toggle span {
  display: block;
  height: 2px;
  margin: 6px;
  background: #fff;
  transition: .25s;
}

.hero {
  min-height: 780px;
  height: 96vh;
  position: relative;
  display: flex;
  align-items: center;
  padding: 135px clamp(22px,8vw,130px) 60px;
  background-color: #24130d;
  background-image: url('https://images.unsplash.com/photo-1550547660-d9450f859349?auto=format&fit=crop&w=2200&q=88');
  background-position: center;
  background-size: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(15,9,7,.96) 0%, rgba(18,11,8,.78) 47%, rgba(18,11,8,.12) 82%),
    linear-gradient(0deg, rgba(18,10,7,.72), transparent 58%);
}
.hero-content { position: relative; z-index: 2; max-width: 820px; }
.status-row {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 13px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 999px;
  background: rgba(0,0,0,.26);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}
.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(146,201,94,.15);
}
.status-row.closed .status-dot {
  background: #d95c51;
  box-shadow: 0 0 0 5px rgba(217,92,81,.14);
}
.eyebrow {
  margin: 24px 0 10px;
  color: var(--yellow);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.hero h1,
.section-heading h2,
.channel-heading h2,
.experience h2,
.visit h2 {
  margin: 0;
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  line-height: .9;
  letter-spacing: .01em;
}
.hero h1 { max-width: 930px; font-size: clamp(68px,9vw,132px); }
.hero h1 em { color: var(--orange); font-style: normal; }
.hero-text {
  max-width: 670px;
  color: #e0d5c6;
  font-size: clamp(15px,1.5vw,20px);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.hero-meta {
  max-width: 650px;
  display: flex;
  gap: 44px;
  margin-top: 46px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.18);
}
.hero-meta div { display: flex; flex-direction: column; }
.hero-meta strong {
  font-family: "Bebas Neue";
  font-size: 28px;
  letter-spacing: .04em;
}
.hero-meta span {
  color: #c7bbac;
  font-size: 9px;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.scroll-cue {
  position: absolute;
  right: 4vw;
  bottom: 36px;
  z-index: 3;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255,255,255,.4);
  border-radius: 50%;
  background: rgba(0,0,0,.18);
  color: #fff;
  font-size: 22px;
  cursor: pointer;
}

.marquee {
  overflow: hidden;
  padding: 12px 0;
  background: var(--yellow);
  color: #20130e;
  white-space: nowrap;
  font-family: "Bebas Neue";
  font-size: 22px;
  letter-spacing: .08em;
}
.marquee div { display: inline-block; animation: marquee 24s linear infinite; }
@keyframes marquee { to { transform: translateX(-50%); } }

.channel-strip {
  padding: 76px clamp(20px,7vw,110px) 88px;
  background: linear-gradient(180deg,#1a120f,#130e0c);
}
.channel-heading { max-width: 680px; margin-bottom: 32px; }
.channel-heading h2 { font-size: clamp(48px,6vw,80px); }
.channel-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 14px;
}
.channel-card {
  min-height: 112px;
  display: grid;
  grid-template-columns: 46px 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(145deg,#241914,#1a120f);
  transition: .25s ease;
}
.channel-card:hover { transform: translateY(-4px); border-color: rgba(255,189,36,.55); }
.channel-card strong { display: block; font-size: 14px; }
.channel-card small { display: block; margin-top: 3px; color: var(--muted); font-size: 10px; }
.channel-card b { color: var(--yellow); }
.channel-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: #35231b;
  color: var(--yellow);
  font-size: 12px;
  font-weight: 900;
}
.channel-whatsapp .channel-icon { background: #25d366; color: #fff; }

.section { padding: 110px clamp(20px,7vw,110px); }
.section-heading { max-width: 720px; margin-bottom: 42px; }
.section-heading.centered { margin-left: auto; margin-right: auto; text-align: center; }
.section-heading h2,
.experience h2,
.visit h2 { font-size: clamp(50px,7vw,90px); }
.section-heading > p:last-child { max-width: 650px; color: var(--muted); }
.section-heading.centered > p:last-child { margin-left: auto; margin-right: auto; }

.feature-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  grid-template-rows: 260px 260px;
  gap: 18px;
}
.feature-card {
  min-height: 260px;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: #2b1b14;
}
.feature-large { grid-row: 1 / 3; }
.feature-card img { height: 100%; object-fit: cover; transition: .7s ease; }
.feature-card:hover img { transform: scale(1.055); }
.feature-shade { position: absolute; inset: 0; background: linear-gradient(0deg,rgba(15,8,6,.94),transparent 66%); }
.feature-content { position: absolute; left: 26px; right: 26px; bottom: 22px; }
.feature-content span,
.tag {
  color: var(--yellow);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.feature-content h3 {
  margin: 5px 0;
  font-family: "Bebas Neue";
  font-size: clamp(30px,4vw,54px);
  font-weight: 400;
  line-height: .95;
}
.text-link {
  display: inline-flex;
  border: 0;
  background: none;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.text-link:hover { color: var(--yellow); }
.text-link.strong { color: var(--orange); }

.menu-section { background: var(--cream); color: #211811; }
.menu-section .eyebrow { color: #b02f1f; }
.menu-section .section-heading > p:last-child { color: #756557; }
.filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 30px;
}
.filter {
  padding: 10px 18px;
  border: 1px solid rgba(25,16,12,.2);
  border-radius: 999px;
  background: transparent;
  font-size: 11px;
  font-weight: 800;
  cursor: pointer;
}
.filter.active { background: #221913; color: #fff; }
.menu-grid {
  max-width: 1200px;
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 14px;
  margin: auto;
}
.menu-card {
  min-height: 210px;
  display: grid;
  grid-template-columns: 52px 1fr 36px;
  gap: 14px;
  align-items: start;
  padding: 22px;
  border: 1px solid rgba(30,20,15,.09);
  border-radius: 18px;
  background: var(--cream-2);
  box-shadow: 0 12px 24px rgba(45,28,15,.06);
  transition: .25s ease;
}
.menu-card:hover { transform: translateY(-4px); box-shadow: 0 18px 35px rgba(45,28,15,.12); }
.menu-card.hidden { display: none; }
.menu-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: #f0e1c7;
  font-size: 26px;
}
.menu-card h3 { margin: 6px 0; font-size: 16px; line-height: 1.25; }
.menu-card p { margin: 0; color: #746454; font-size: 11px; }
.menu-order {
  display: inline-block;
  margin-top: 14px;
  color: #b8341f;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.plus {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid #c9bba9;
  border-radius: 50%;
  color: #2a1a13;
  font-size: 17px;
  font-weight: 800;
}
.menu-ctas { display: flex; justify-content: center; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.concept-note { margin-top: 24px; color: #766858; text-align: center; font-size: 10px; }

.experience {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  align-items: center;
  gap: clamp(45px,7vw,100px);
  padding: 110px clamp(20px,7vw,110px);
  background: #211914;
}
.experience-image { position: relative; }
.experience-image img {
  height: 620px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.image-stamp {
  position: absolute;
  right: -24px;
  bottom: 40px;
  width: 112px;
  height: 112px;
  display: grid;
  place-items: center;
  border: 5px solid #211914;
  border-radius: 50%;
  background: linear-gradient(145deg,var(--red),var(--orange));
  color: #fff;
  text-align: center;
  font-family: "Bebas Neue";
  font-size: 25px;
  line-height: .9;
  transform: rotate(8deg);
}
.experience-copy > p:not(.eyebrow) { color: var(--muted); }
.check-list { margin: 28px 0; padding: 0; list-style: none; }
.check-list li {
  position: relative;
  padding: 11px 0 11px 32px;
  border-bottom: 1px solid var(--line);
}
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--yellow); font-weight: 900; }
.experience-actions { display: flex; flex-wrap: wrap; gap: 22px; }

.faq-section { background: #17110e; }
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 12px;
}
.faq-grid details {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(145deg,#211814,#17110e);
  overflow: hidden;
}
.faq-grid summary {
  position: relative;
  padding: 20px 52px 20px 20px;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}
.faq-grid summary::-webkit-details-marker { display: none; }
.faq-grid summary::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--yellow);
  font-size: 24px;
}
.faq-grid details[open] summary::after { content: "−"; }
.faq-grid details p { margin: 0; padding: 0 20px 20px; color: var(--muted); font-size: 13px; }

.reviews { background: #0f0b09; }
.review-shell {
  display: grid;
  grid-template-columns: 54px 1fr 54px;
  align-items: center;
  gap: 18px;
}
.review-track { min-height: 270px; position: relative; }
.review {
  display: none;
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg,#211914,#17120f);
  text-align: center;
}
.review.active { display: block; animation: fade .35s ease; }
@keyframes fade { from { opacity: 0; transform: translateY(8px); } }
.stars { color: var(--yellow); letter-spacing: .18em; }
.review blockquote {
  max-width: 900px;
  margin: 24px auto;
  font-family: "Bebas Neue";
  font-size: clamp(34px,5vw,64px);
  line-height: 1;
}
.review p { color: var(--muted); font-size: 11px; }
.slider-button {
  width: 52px;
  height: 52px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
}
.slider-dots { display: flex; justify-content: center; gap: 8px; margin-top: 18px; }
.slider-dots button { width: 7px; height: 7px; padding: 0; border: 0; border-radius: 50%; background: #5c5147; }
.slider-dots button.active { width: 24px; border-radius: 8px; background: var(--orange); }

.visit {
  min-height: 630px;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  background: var(--yellow);
  color: #241711;
}
.visit-card { padding: 90px clamp(22px,6vw,90px); }
.visit .eyebrow { color: #8c271e; }
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
  margin: 42px 0;
}
.contact-grid div {
  display: flex;
  flex-direction: column;
  padding-top: 14px;
  border-top: 1px solid rgba(30,20,15,.3);
}
.contact-grid small {
  margin-bottom: 8px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.contact-grid strong { font-size: 12px; }
.visit-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.map-panel { position: relative; overflow: hidden; background: #d4ad59; }
.map-lines {
  position: absolute;
  inset: -10%;
  background:
    linear-gradient(32deg,transparent 47%,rgba(67,46,26,.18) 48%,rgba(67,46,26,.18) 50%,transparent 51%),
    linear-gradient(-48deg,transparent 46%,rgba(67,46,26,.13) 47%,rgba(67,46,26,.13) 49%,transparent 50%);
  background-size: 120px 100px,160px 130px;
}
.map-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 55% 45%,transparent 0 20%,rgba(50,30,15,.13) 21% 22%,transparent 23%);
}
.map-pin {
  position: absolute;
  left: 50%;
  top: 48%;
  z-index: 2;
  width: 146px;
  height: 146px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #201611;
  color: #fff;
  text-align: center;
  box-shadow: var(--shadow);
  transform: translate(-50%,-50%);
}
.map-pin span { color: var(--yellow); font-size: 22px; }
.map-pin strong { font-family: "Bebas Neue"; font-size: 25px; line-height: .9; }
.map-pin small { margin-top: 8px; color: #d9ccbd; font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }

footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 34px;
  padding: 34px clamp(20px,6vw,90px);
  background: #0b0807;
  color: #bcae9e;
  font-size: 10px;
}
.footer-brand { display: flex; align-items: center; gap: 14px; color: #fff; }
.footer-logo { width: 46px; height: 46px; }
.footer-links { display: flex; justify-content: center; flex-wrap: wrap; gap: 24px; }
.footer-links a:hover { color: var(--yellow); }
footer p { text-align: right; }

.floating-whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 35;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 4px solid rgba(255,255,255,.92);
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  box-shadow: 0 12px 30px rgba(0,0,0,.36);
}
.floating-whatsapp span { font-size: 12px; font-weight: 900; }

.help-widget {
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 40;
  opacity: 0;
  transform: translateY(18px) scale(.97);
  pointer-events: none;
  transition: opacity .32s ease, transform .32s ease;
}
.help-widget.is-ready {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
.help-launcher {
  position: relative;
  min-height: 54px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 17px 6px 7px;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 999px;
  background: #211712;
  color: #fff;
  box-shadow: 0 14px 35px rgba(0,0,0,.4);
  cursor: pointer;
}
.help-launcher-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(145deg,var(--red),var(--orange));
  font-size: 19px;
  font-weight: 900;
}
.help-launcher-label { font-size: 12px; font-weight: 800; }
.help-pulse {
  position: absolute;
  left: 13px;
  top: 13px;
  width: 28px;
  height: 28px;
  border: 2px solid rgba(241,90,36,.6);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse { 0% { transform: scale(.8); opacity: 1; } 100% { transform: scale(1.8); opacity: 0; } }
.help-panel {
  width: min(370px, calc(100vw - 28px));
  max-height: min(650px, calc(100vh - 96px));
  position: absolute;
  left: 0;
  bottom: 68px;
  overflow: auto;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 20px;
  background: #fffaf1;
  color: #241711;
  box-shadow: 0 28px 70px rgba(0,0,0,.46);
  transform-origin: left bottom;
  animation: helpIn .22s ease;
}
@keyframes helpIn { from { opacity: 0; transform: translateY(10px) scale(.97); } }
.help-header {
  position: sticky;
  top: 0;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  background: linear-gradient(135deg,#1d120f,#3d1a14);
  color: #fff;
}
.help-header > div { display: flex; align-items: center; gap: 11px; }
.help-header img { width: 44px; height: 44px; object-fit: cover; border-radius: 50%; border: 2px solid #fff; }
.help-header span { display: flex; flex-direction: column; }
.help-header strong { font-size: 13px; }
.help-header small { color: #d6c9b9; font-size: 9px; }
.help-close {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255,255,255,.26);
  border-radius: 50%;
  background: transparent;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
}
.help-body { display: grid; gap: 8px; padding: 14px; }
.help-body > a,
.help-body > button {
  width: 100%;
  min-height: 48px;
  display: grid;
  grid-template-columns: 34px 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border: 1px solid #e7d9c5;
  border-radius: 13px;
  background: #fff;
  color: #2a1a13;
  text-align: left;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
}
.help-body > a:hover,
.help-body > button:hover { border-color: var(--orange); background: #fff7eb; }
.help-body > a span,
.help-body > button span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: #f3e5cf;
  color: #9e321f;
  font-size: 10px;
  font-weight: 900;
}
.help-body b { color: var(--orange); font-size: 15px; }
.chat-answer {
  margin-top: -2px;
  padding: 13px 14px;
  border-left: 3px solid var(--orange);
  border-radius: 10px;
  background: #f5e8d6;
}
.chat-answer strong { font-size: 11px; }
.chat-answer p { margin: 5px 0 0; color: #6b594b; font-size: 10px; line-height: 1.55; }
.help-footer { padding: 11px 14px; border-top: 1px solid #eadcca; color: #817061; text-align: center; font-size: 8px; }

.reveal { opacity: 0; transform: translateY(24px); transition: .72s ease; }
.reveal.visible { opacity: 1; transform: none; }

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

@media (max-width: 1100px) {
  .channel-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .main-nav { gap: 17px; }
}

@media (max-width: 980px) {
  .main-nav,
  .desktop-cta { display: none; }
  .menu-toggle { display: block; }
  .main-nav.open {
    position: fixed;
    inset: 0;
    z-index: -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding: 150px 30px 40px;
    background: #17100d;
  }
  .main-nav.open a { font-family: "Bebas Neue"; font-size: 40px; }
  .site-header { position: absolute; }
  .feature-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 460px 260px; }
  .feature-large { grid-column: 1 / 3; grid-row: auto; }
  .menu-grid { grid-template-columns: 1fr 1fr; }
  .experience { grid-template-columns: 1fr; }
  .experience-image img { height: 540px; }
  .visit { grid-template-columns: 1fr; }
  .map-panel { min-height: 400px; }
  footer { grid-template-columns: 1fr; text-align: center; }
  .footer-brand { justify-content: center; }
  footer p { text-align: center; }
}

@media (max-width: 650px) {
  .announcement { min-height: 30px; padding: 6px 10px; font-size: 8px; letter-spacing: .05em; }
  .announcement span { display: none; }
  .site-header { top: 30px; height: 76px; padding: 0 16px; }
  .brand-logo { width: 46px; height: 46px; }
  .brand-copy strong { font-size: 12px; }
  .brand-copy small { font-size: 8px; }
  .hero {
    min-height: 760px;
    height: auto;
    padding: 132px 20px 58px;
    background-position: 62% center;
  }
  .hero-overlay {
    background: linear-gradient(90deg,rgba(18,11,8,.97),rgba(18,11,8,.52)), linear-gradient(0deg,rgba(18,10,7,.78),transparent);
  }
  .hero h1 { font-size: 64px; }
  .hero-text { font-size: 14px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-meta { gap: 15px; justify-content: space-between; }
  .hero-meta strong { font-size: 21px; }
  .scroll-cue { display: none; }
  .marquee { font-size: 18px; }
  .channel-strip { padding: 64px 16px 70px; }
  .channel-grid { grid-template-columns: 1fr; }
  .channel-card { min-height: 92px; }
  .section { padding: 76px 16px; }
  .section-heading h2,
  .channel-heading h2,
  .experience h2,
  .visit h2 { font-size: 52px; }
  .feature-grid { display: block; }
  .feature-card { height: 325px; margin-bottom: 14px; }
  .feature-large { height: 430px; }
  .menu-grid { grid-template-columns: 1fr; }
  .menu-card { min-height: auto; padding: 18px; }
  .experience { padding: 76px 16px; }
  .experience-image img { height: 390px; }
  .image-stamp { right: 10px; bottom: -34px; width: 94px; height: 94px; font-size: 21px; }
  .experience-copy { padding-top: 28px; }
  .experience-actions { flex-direction: column; gap: 10px; }
  .faq-grid { grid-template-columns: 1fr; }
  .review-shell { grid-template-columns: 1fr; }
  .slider-button { position: absolute; z-index: 2; margin-top: 265px; }
  .slider-button.next { right: 24px; }
  .slider-button.prev { left: 24px; }
  .review { min-height: 315px; padding: 34px 18px; }
  .visit-card { padding: 70px 16px; }
  .contact-grid { grid-template-columns: 1fr; }
  .visit-actions { flex-direction: column; }
  .map-panel { min-height: 350px; }
  .help-widget { left: 12px; bottom: 12px; }
  .floating-whatsapp { right: 12px; bottom: 12px; }
  .help-launcher { min-height: 50px; padding-right: 12px; }
  .help-launcher-label { display: none; }
  .help-panel { bottom: 62px; }
}
