/* ====================================================================
   WELCOME INDIA — Dark cinematographic · 2026
   Carbón / Crema / Saffron · Bricolage + Inter · líneas finas modernas
   ==================================================================== */

:root {
  /* surface */
  --bg:           #0c0a08;       /* carbón fondo */
  --bg-2:         #181410;       /* carbón card */
  --bg-3:         #221c16;       /* carbón hover */
  --bg-overlay:   rgba(12, 10, 8, 0.78);

  /* ink */
  --ink:          #f4ecdd;       /* crema cálida */
  --ink-soft:     #c8bba4;
  --muted:        #7c715c;
  --rule:         rgba(244, 236, 221, 0.10);
  --rule-strong:  rgba(244, 236, 221, 0.20);

  /* accents */
  --saffron:      #ff8a3d;       /* azafrán brillante */
  --saffron-deep: #d96a1f;
  --gold:         #c9a86c;
  --green:        #25d366;       /* WhatsApp */
  --vermilion:    #e25822;

  --shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 30px 80px -20px rgba(0, 0, 0, 0.6);

  /* type */
  --display: "Bricolage Grotesque", "Inter", system-ui, -apple-system, sans-serif;
  --sans:    "Inter", system-ui, -apple-system, sans-serif;
  --mono:    "JetBrains Mono", ui-monospace, "SF Mono", monospace;

  --maxw: 1320px;
  --pad-x: clamp(20px, 4vw, 72px);
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  overflow-x: clip;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--saffron); color: var(--bg); }

/* ---- typography ---------------------------------------------------- */
.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--saffron);
  margin: 0 0 24px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--saffron);
  opacity: .6;
}
.eyebrow.eyebrow--solo::before { display: none; }
.eyebrow.eyebrow--solo { padding-left: 0; }

.display {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(56px, 9.5vw, 144px);
  line-height: 0.92;
  letter-spacing: -0.045em;
  margin: 0 0 32px;
  color: var(--ink);
  font-optical-sizing: auto;
  font-variation-settings: "wdth" 90, "opsz" 96;
}
.display span { display: block; }
.display__accent {
  font-style: italic;
  color: var(--saffron);
  font-weight: 300;
}
.display--cta {
  font-size: clamp(48px, 7vw, 104px);
}
.display--small {
  font-size: clamp(40px, 6vw, 88px);
}

.h2 {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 0.98;
  letter-spacing: -0.03em;
  margin: 0 0 28px;
  color: var(--ink);
  font-variation-settings: "wdth" 90, "opsz" 72;
}
.h2 em {
  font-style: italic;
  color: var(--saffron);
  font-weight: 300;
}
.h2--big {
  font-size: clamp(48px, 7vw, 96px);
}

.lede {
  font-size: clamp(16px, 1.25vw, 19px);
  color: var(--ink-soft);
  max-width: 52ch;
  margin: 0 0 36px;
  line-height: 1.6;
  font-weight: 400;
}
.muted { color: var(--muted); }

/* ---- buttons ------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 17px 32px;
  border-radius: 999px;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn--primary {
  background: var(--saffron);
  color: var(--bg);
  border-color: var(--saffron);
}
.btn--primary:hover {
  background: var(--ink);
  border-color: var(--ink);
  transform: translateY(-2px);
}
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--rule-strong);
}
.btn--ghost:hover {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--saffron);
  font-family: var(--mono);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-bottom: 1px solid currentColor;
  padding-bottom: 4px;
  transition: gap .2s ease, color .2s ease;
}
.link-arrow:hover { gap: 14px; color: var(--ink); }
.link-arrow--wa { color: var(--green); }
.link-arrow--wa:hover { color: var(--ink); }

/* ---- top nav ------------------------------------------------------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(12, 10, 8, .80);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--rule);
}
.nav__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 16px var(--pad-x);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav__logo {
  height: 44px;
  width: auto;
  object-fit: contain;
}
@media (max-width: 720px) {
  .nav__logo { height: 38px; }
}
.nav__links {
  display: flex;
  gap: 36px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 400;
  justify-self: center;
}
.nav__links a {
  position: relative;
  padding: 6px 0;
  transition: color .15s ease;
}
.nav__links a:hover,
.nav__links a.is-current { color: var(--saffron); }
.nav__links a.is-current::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  background: var(--saffron);
  border-radius: 50%;
}

.nav__right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.lang-pick {
  display: flex;
  gap: 0;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--muted);
}
.lang-pick a {
  padding: 4px 8px;
  transition: color .15s ease;
}
.lang-pick a:hover,
.lang-pick a.is-active { color: var(--saffron); }
.lang-pick a + a { border-left: 1px solid var(--rule); }

.nav__cta {
  background: var(--saffron);
  color: var(--bg);
  font-family: var(--sans);
  padding: 10px 22px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background .2s ease, color .2s ease;
}
.nav__cta:hover { background: var(--ink); color: var(--bg); }
.nav__cta--icon {
  background: var(--green);
  padding: 9px;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
}
.nav__cta--icon svg { width: 18px; height: 18px; color: var(--bg); }

.nav__toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--rule-strong);
  border-radius: 999px;
  padding: 8px;
  color: var(--ink);
  cursor: pointer;
}
.nav__toggle svg { width: 18px; height: 18px; }
.nav__toggle-close { display: none; }

/* ---- hero ---------------------------------------------------------- */
.hero {
  position: relative;
  min-height: calc(100vh - 80px);
  display: grid;
  align-items: end;
  isolation: isolate;
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 40% 30%, transparent 0%, rgba(12,10,8,0.65) 70%),
    linear-gradient(180deg, transparent 0%, rgba(12,10,8,0.85) 80%, var(--bg) 100%);
}
.hero__content {
  position: relative;
  max-width: var(--maxw);
  width: 100%;
  margin: 0 auto;
  padding: 96px var(--pad-x);
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  align-items: end;
}
.hero__arch { display: none; }

.hero__primary { grid-column: 1; }
.hero__primary .eyebrow {
  margin-bottom: 28px;
}
.hero__primary .display {
  margin-bottom: 0;
}

.hero__side {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-bottom: 8px;
}
.hero .lede {
  margin: 0;
  font-size: clamp(15px, 1.05vw, 17px);
  color: var(--ink-soft);
  max-width: 38ch;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.hero__order-hint { margin: 0; }
.hero__order-hint a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.hero__meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--rule);
}
.hero__meta > div {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.hero__meta span {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.hero__meta em {
  font-style: normal;
  font-family: var(--display);
  font-size: 17px;
  letter-spacing: -0.01em;
  color: var(--ink);
}

@media (max-width: 920px) {
  .hero {
    min-height: 100vh;
  }
  .hero__content {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 80px var(--pad-x) 64px;
  }
  .hero__primary { grid-column: auto; }
}

/* ---- order strip --------------------------------------------------- */
.order-strip {
  background: var(--green);
  color: var(--bg);
}
.order-strip__link {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 18px var(--pad-x);
  max-width: var(--maxw);
  margin: 0 auto;
}
.order-strip__icon svg { width: 28px; height: 28px; }
.order-strip__copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.order-strip__copy strong {
  font-family: var(--display);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.order-strip__copy em {
  font-style: normal;
  font-size: 13px;
  color: rgba(12,10,8,0.7);
}
.order-strip__arrow {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  font-weight: 600;
}
@media (max-width: 720px) {
  .order-strip__link { grid-template-columns: auto 1fr; gap: 14px; }
  .order-strip__arrow { display: none; }
}

/* ---- marquee (kept hidden, reserved for compatibility) ------------- */
.marquee { display: none; }

/* ---- featured (3 cards) -------------------------------------------- */
.featured {
  padding: clamp(80px, 12vw, 160px) var(--pad-x);
  max-width: var(--maxw);
  margin: 0 auto;
}
.featured__inner > .eyebrow,
.featured__inner > .h2 { display: block; }
.featured__inner > .h2 { margin-bottom: 56px; }
.featured__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.6vw, 36px);
}
.feat-card {
  background: var(--bg-2);
  border: 1px solid var(--rule);
  border-radius: 4px;
  overflow: hidden;
  transition: transform .3s ease, border-color .3s ease;
  display: flex;
  flex-direction: column;
}
.feat-card:hover {
  transform: translateY(-4px);
  border-color: var(--saffron);
}
.feat-card__media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--bg-3);
}
.feat-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.feat-card:hover .feat-card__media img { transform: scale(1.04); }
.feat-card__body {
  padding: 28px 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}
.feat-card__tag {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--saffron);
  margin: 0;
  font-weight: 500;
}
.feat-card__title {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(22px, 1.8vw, 28px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--ink);
}
.feat-card__desc {
  margin: 0;
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.55;
}
@media (max-width: 920px) {
  .featured__grid { grid-template-columns: 1fr; gap: 20px; }
}

/* ---- testimonials -------------------------------------------------- */
.testimonials {
  padding: clamp(80px, 12vw, 160px) var(--pad-x);
  background: var(--bg-2);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.testimonials__inner {
  max-width: var(--maxw);
  margin: 0 auto;
}
.testimonials__head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 64px;
}
.testimonials__head .h2 { margin: 0; }
.testimonials__head .lede { margin: 0; max-width: 40ch; }
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.6vw, 36px);
}
.testimonial {
  padding: 36px 32px;
  background: var(--bg);
  border: 1px solid var(--rule);
  border-radius: 4px;
}
.testimonial__stars {
  display: flex;
  gap: 3px;
  color: var(--saffron);
  margin-bottom: 18px;
}
.testimonial__stars svg { width: 14px; height: 14px; }
.testimonial__text {
  font-family: var(--display);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.5;
  letter-spacing: -0.005em;
  color: var(--ink);
  margin: 0 0 22px;
  font-style: italic;
}
.testimonial__author {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.testimonial__author strong { color: var(--ink); font-weight: 500; }
.testimonial__author span { color: var(--muted); }
@media (max-width: 920px) {
  .testimonials__head { grid-template-columns: 1fr; gap: 24px; }
  .testimonials__grid { grid-template-columns: 1fr; gap: 18px; }
}

/* ---- story --------------------------------------------------------- */
.story {
  padding: clamp(80px, 12vw, 160px) var(--pad-x);
  max-width: var(--maxw);
  margin: 0 auto;
}
.story--text { padding-top: clamp(80px, 12vw, 160px); }

.story__text {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
.story__text .eyebrow,
.story__text .h2 {
  grid-column: 1;
}
.story__cols {
  grid-column: 2;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.story__cols p {
  margin: 0;
  font-size: clamp(15px, 1.1vw, 18px);
  color: var(--ink-soft);
  line-height: 1.65;
}
.story__text .link-arrow {
  grid-column: 1 / -1;
  margin-top: 16px;
}
@media (max-width: 920px) {
  .story__text { grid-template-columns: 1fr; }
  .story__text .eyebrow,
  .story__text .h2,
  .story__cols { grid-column: auto; }
}

/* ---- CTA menu ------------------------------------------------------ */
.cta-menu {
  position: relative;
  padding: clamp(96px, 14vw, 192px) var(--pad-x);
  background: var(--bg-2);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.cta-menu__inner {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}
.cta-menu .lede {
  margin-left: auto;
  margin-right: auto;
  max-width: 56ch;
  margin-bottom: 40px;
}
.cta-menu__actions {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

/* ---- pull quote ---------------------------------------------------- */
.pull {
  padding: clamp(72px, 10vw, 144px) var(--pad-x);
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.pull blockquote {
  margin: 0;
  position: relative;
}
.pull .quote-mark {
  display: block;
  font-family: var(--display);
  font-size: 96px;
  line-height: 0.5;
  color: var(--saffron);
  margin-bottom: 16px;
}
.pull p {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(22px, 2.6vw, 34px);
  line-height: 1.35;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 24px;
  font-style: italic;
}
.pull cite {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  font-style: normal;
}

/* ---- visit --------------------------------------------------------- */
.visit {
  padding: clamp(80px, 12vw, 160px) var(--pad-x);
  max-width: var(--maxw);
  margin: 0 auto;
}
.visit__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}
.visit__map {
  position: relative;
  height: 100%;
  min-height: 440px;
  background: var(--bg-2);
  border: 1px solid var(--rule);
  overflow: hidden;
  border-radius: 4px;
}
.visit__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: invert(0.92) hue-rotate(180deg) brightness(0.9) contrast(0.92);
}
.visit__info { padding-top: 0; }
.visit__info .h2 { margin-bottom: 40px; }

.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px 32px;
  margin-bottom: 40px;
}
.info-block h4 {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--saffron);
  font-weight: 500;
  margin: 0 0 10px;
}
.info-block p {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink);
  font-family: var(--sans);
}
.info-block a {
  color: var(--ink);
  border-bottom: 1px solid var(--rule-strong);
  transition: color .15s ease, border-color .15s ease;
}
.info-block a:hover { color: var(--saffron); border-color: var(--saffron); }

.visit__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 48px;
}

.visit__social { border-top: 1px solid var(--rule); padding-top: 32px; }
.social-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.social-icons__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border: 1px solid var(--rule-strong);
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--ink-soft);
  transition: color .15s ease, border-color .15s ease, background .15s ease;
}
.social-icons__link:hover {
  color: var(--bg);
  background: var(--ink);
  border-color: var(--ink);
}
.social-icons__link svg { color: currentColor; }

@media (max-width: 920px) {
  .visit__grid { grid-template-columns: 1fr; }
  .visit__map { min-height: 320px; }
  .info-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .info-grid { grid-template-columns: 1fr; gap: 24px; }
}

/* ---- footer -------------------------------------------------------- */
.foot {
  background: var(--bg);
  border-top: 1px solid var(--rule);
  padding: clamp(48px, 7vw, 88px) var(--pad-x) 40px;
}
.foot__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.foot__brand { max-width: 320px; }
.foot__logo {
  height: 56px;
  width: auto;
  margin-bottom: 18px;
}
.foot__brand .muted {
  font-size: 13px;
  margin: 0 0 20px;
  line-height: 1.5;
}
.foot__social {
  display: flex;
  gap: 12px;
}
.foot__social a {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--rule-strong);
  border-radius: 50%;
  color: var(--ink-soft);
  transition: color .15s ease, border-color .15s ease, background .15s ease;
}
.foot__social a:hover {
  color: var(--bg);
  background: var(--saffron);
  border-color: var(--saffron);
}
.foot__nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
}
.foot__nav a {
  color: var(--ink-soft);
  transition: color .15s ease;
}
.foot__nav a:hover { color: var(--saffron); }

.foot__legal {
  font-size: 12px;
  color: var(--muted);
}
.foot__legal p { margin: 0 0 6px; }
.foot__legal a { color: var(--ink-soft); border-bottom: 1px solid var(--rule); }
.foot__legal a:hover { color: var(--saffron); }

@media (max-width: 720px) {
  .foot__inner { grid-template-columns: 1fr; gap: 36px; }
}

/* ---- mobile nav ---------------------------------------------------- */
@media (max-width: 920px) {
  .nav__inner { grid-template-columns: auto auto; }
  .nav__links {
    position: fixed;
    inset: 64px 0 0 0;
    background: var(--bg);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 28px;
    font-size: 18px;
    pointer-events: none;
    opacity: 0;
    transition: opacity .25s ease;
    z-index: 40;
  }
  body.nav-open .nav__links {
    pointer-events: auto;
    opacity: 1;
  }
  .lang-pick { display: none; }
  body.nav-open .lang-pick {
    display: flex;
    position: fixed;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 41;
  }
  .nav__cta { display: none; }
  .nav__toggle { display: inline-grid; place-items: center; }
  body.nav-open .nav__toggle-open { display: none; }
  body.nav-open .nav__toggle-close { display: block; }
  body.nav-open { overflow: hidden; }
}

/* ---- utility ------------------------------------------------------- */
.is-current { color: var(--saffron) !important; }

/* ===========================================================
   STICKY MOBILE BAR — 3 CTAs always visible on small screens
   =========================================================== */
.sticky-mobile {
  display: none;
}
@media (max-width: 768px) {
  .sticky-mobile {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 80;
    background: rgba(12, 10, 8, 0.96);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid rgba(244, 236, 221, 0.12);
    padding: 8px 6px max(8px, env(safe-area-inset-bottom));
    gap: 4px;
  }
  .sticky-mobile__btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 8px 4px;
    color: #f4ecdd;
    text-decoration: none;
    font-family: var(--mono, monospace);
    font-size: 10px;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    text-align: center;
    border-radius: 6px;
    background: transparent;
    transition: background 0.15s, color 0.15s;
  }
  .sticky-mobile__btn:active,
  .sticky-mobile__btn:hover {
    background: rgba(244, 236, 221, 0.08);
  }
  .sticky-mobile__btn svg {
    width: 22px;
    height: 22px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.5;
  }
  .sticky-mobile__btn--wa {
    color: #25D366;
  }
  .sticky-mobile__btn--wa svg {
    fill: currentColor;
    stroke: none;
  }
  /* Push body content so it doesn't hide behind the bar */
  body { padding-bottom: 70px; }
  /* Hide cart FAB on mobile to avoid overlap with sticky bar */
  .cart-fab { bottom: 78px !important; right: 16px !important; }
}

/* ===========================================================
   TRUST BAND — social proof strip below hero
   =========================================================== */
.trust-band {
  background: rgba(244, 236, 221, 0.04);
  border-top: 1px solid rgba(244, 236, 221, 0.08);
  border-bottom: 1px solid rgba(244, 236, 221, 0.08);
  padding: 14px var(--pad-x);
}
.trust-band__inner {
  max-width: var(--maxw, 1200px);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 16px;
  font-family: var(--mono, monospace);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
}
.trust-band__rating {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}
.trust-band__rating:hover { border-bottom-color: var(--gold, #e4a64a); }
.trust-band__stars {
  display: inline-flex;
  gap: 1px;
  color: #fbbc04;
}
.trust-band__stars svg { width: 13px; height: 13px; }
.trust-band__rating-num {
  font-weight: 700;
  font-family: var(--sans);
  color: var(--ink);
  font-size: 13px;
}
.trust-band__rating-reviews { color: var(--ink-soft); font-weight: 400; }
.trust-band__location { color: var(--ink); font-weight: 500; }
.trust-band__sep { color: var(--muted); opacity: 0.5; }
.trust-band__open {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #22c55e;
}
.trust-band__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
  animation: pulse-open 2.4s ease-out infinite;
}
@keyframes pulse-open {
  0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.6); }
  70% { box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
  100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}
@media (max-width: 720px) {
  .trust-band__inner { font-size: 11px; gap: 6px 10px; }
  .trust-band__sep { display: none; }
}
