/* =========================================================================
   MAKI MAKI SUSHI — stylesheet
   Dirección de arte: "Dark Luxury Japanese Minimal"
   Tipografía: Cormorant Garamond (display) + Plus Jakarta Sans (cuerpo/UI)
   ========================================================================= */

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
body, h1, h2, h3, h4, p, ul, li, figure { margin: 0; padding: 0; }
ul { list-style: none; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
iframe { border: 0; }

/* ---------- DESIGN TOKENS ---------- */
:root {
  /* Color */
  --bg-void: #0b0b0e;
  --bg-panel: #120f17;
  --bg-panel-raised: #18141d;
  --line: rgba(244, 239, 230, 0.09);
  --line-strong: rgba(244, 239, 230, 0.2);
  --ink: #f4efe6;
  --ink-dim: #ada69c;
  --ink-faint: #857e73;

  --gold: #c9a227;
  --gold-bright: #e6c877;
  --gold-dim: rgba(201, 162, 39, 0.35);

  --plum: #7c2f45;
  --plum-bright: #a8455f;
  --plum-dim: rgba(124, 47, 69, 0.35);

  /* Type */
  --font-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Motion */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --dur-fast: 180ms;
  --dur-base: 320ms;

  /* Layout */
  --nav-h: 84px;
  --side-w: 220px;
  --container: 1240px;
}

/* ---------- BASE ---------- */
html, body {
  background: var(--bg-void);
  color: var(--ink);
}
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--gold);
  color: #14110a;
  padding: 12px 20px;
  z-index: 999;
  font-weight: 600;
  border-radius: 0 0 6px 0;
}
.skip-link:focus { left: 0; }

:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 3px;
}

/* Film-grain overlay for a matte, cinematic finish */
.grain {
  position: fixed;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  opacity: 0.05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 500; letter-spacing: -0.01em; }

.section-head { max-width: 640px; margin-bottom: 56px; }
.section-head__eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  color: var(--gold-bright);
  font-weight: 600;
  margin-bottom: 14px;
  letter-spacing: 0.02em;
}
.section-head__title {
  font-size: clamp(2rem, 1.4rem + 2.6vw, 3.15rem);
  line-height: 1.08;
  color: var(--ink);
}
.section-head__desc {
  margin-top: 16px;
  color: var(--ink-dim);
  font-size: 1.05rem;
  max-width: 52ch;
}

/* ---------- LAYOUT HELPERS ---------- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 32px; }
section { position: relative; padding: 140px 0; }

/* ---------- BUTTONS & BADGES ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 3px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform var(--dur-fast) var(--ease-out), background var(--dur-base) var(--ease-out), border-color var(--dur-base) var(--ease-out);
}
.btn i { width: 16px; height: 16px; }
.btn--primary {
  background: var(--gold);
  color: #16130b;
}
.btn--primary:hover { background: var(--gold-bright); }
.btn--ghost {
  border: 1px solid var(--line-strong);
  color: var(--ink);
  background: rgba(244, 239, 230, 0.03);
}
.btn--ghost:hover { border-color: var(--gold-dim); background: rgba(201, 162, 39, 0.08); }
@media (hover: hover) and (pointer: fine) {
  .btn:active { transform: scale(0.97); }
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(18, 15, 23, 0.55);
  border: 1px solid var(--line-strong);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink);
}
.badge i { width: 14px; height: 14px; color: var(--gold-bright); }
.badge em { font-style: normal; font-weight: 400; color: var(--ink-dim); margin-left: 2px; }
.badge--ghost { color: var(--ink-dim); font-weight: 500; }
.badge--ghost i { color: var(--ink-dim); }

/* ---------- REVEAL ANIMATION (driven by JS toggling .is-visible) ---------- */
.reveal-up {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms var(--ease-out), transform 700ms var(--ease-out);
}
.reveal-up.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal-up { opacity: 1; transform: none; transition: none; }
}

/* =========================================================================
   PILL NAV
   ========================================================================= */
.pill-nav {
  position: fixed;
  top: 22px;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: center;
  padding: 0 20px;
}
.pill-nav__inner {
  display: flex;
  align-items: center;
  gap: 18px;
  width: 100%;
  max-width: 980px;
  padding: 10px 12px 10px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: transparent;
  transition: background var(--dur-base) var(--ease-out), border-color var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out), padding var(--dur-base) var(--ease-out);
}
.pill-nav.is-scrolled .pill-nav__inner {
  background: rgba(15, 12, 18, 0.62);
  border-color: var(--line-strong);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
}
.pill-nav__brand {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--ink);
  white-space: nowrap;
}
.pill-nav__mark {
  color: var(--gold);
  font-size: 1.3rem;
  line-height: 1;
}
.pill-nav__brand-text em { font-style: italic; color: var(--ink-dim); font-size: 0.85em; margin-left: 4px; }

.pill-nav__list {
  position: relative;
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: auto;
  padding: 4px;
}
.pill-nav__indicator {
  position: absolute;
  top: 4px;
  left: 0;
  height: calc(100% - 8px);
  width: 0;
  border-radius: 999px;
  background: rgba(244, 239, 230, 0.08);
  transform: translateX(0);
  opacity: 0;
  transition: opacity var(--dur-fast) var(--ease-out);
  pointer-events: none;
}
.pill-nav__list:hover .pill-nav__indicator,
.pill-nav__indicator.is-active { opacity: 1; }

.pill-nav__link {
  position: relative;
  z-index: 1;
  display: inline-block;
  padding: 10px 18px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--ink-dim);
  border-radius: 999px;
  transition: color var(--dur-fast) var(--ease-out);
}
.pill-nav__link:hover,
.pill-nav__link.is-active { color: var(--ink); }

.pill-nav__cta {
  flex-shrink: 0;
  padding: 11px 22px;
  border-radius: 999px;
  background: var(--gold);
  color: #16130b;
  font-weight: 700;
  font-size: 0.88rem;
  transition: background var(--dur-fast) var(--ease-out), transform var(--dur-fast) var(--ease-out);
}
.pill-nav__cta:hover { background: var(--gold-bright); }
@media (hover: hover) and (pointer: fine) {
  .pill-nav__cta:active { transform: scale(0.96); }
}

.pill-nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  margin-left: auto;
}
.pill-nav__toggle span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--ink);
  margin: 0 auto;
  transition: transform var(--dur-fast) var(--ease-out), opacity var(--dur-fast) var(--ease-out);
}

/* =========================================================================
   LINE SIDEBAR
   ========================================================================= */
.line-sidebar {
  position: fixed;
  left: 40px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 60;
  opacity: 0;
  pointer-events: none;
  transition: opacity 500ms var(--ease-out);
}
.line-sidebar.is-visible { opacity: 1; pointer-events: auto; }
.line-sidebar__track {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.line-sidebar__item {
  display: flex;
  align-items: center;
  gap: 12px;
  transform: translateX(0);
  transition: transform var(--dur-base) var(--ease-out);
}
.line-sidebar__tick {
  width: 22px;
  height: 1px;
  background: var(--line-strong);
  transition: width var(--dur-base) var(--ease-out), background var(--dur-base) var(--ease-out);
}
.line-sidebar__label {
  font-family: 'Plus Jakarta Sans', monospace;
  font-size: 0.68rem;
  letter-spacing: 0.02em;
  color: var(--ink-faint);
  opacity: 0;
  transform: translateX(-6px);
  white-space: nowrap;
  transition: opacity var(--dur-base) var(--ease-out), transform var(--dur-base) var(--ease-out), color var(--dur-base) var(--ease-out);
}
.line-sidebar__track:hover .line-sidebar__label,
.line-sidebar__item.is-active .line-sidebar__label { opacity: 1; transform: translateX(0); }

.line-sidebar__item.is-active .line-sidebar__tick {
  width: 40px;
  background: color-mix(in srgb, var(--gold) 80%, var(--plum) 20%);
}
.line-sidebar__item.is-active .line-sidebar__label { color: var(--ink); }

@media (max-width: 1180px) {
  .line-sidebar { display: none; }
}

/* =========================================================================
   WHATSAPP FLOAT
   ========================================================================= */
.whatsapp-float {
  position: fixed;
  right: 26px;
  bottom: 26px;
  z-index: 90;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1f9e5a;
  color: #fff;
  box-shadow: 0 14px 30px rgba(31, 158, 90, 0.35);
  transition: transform var(--dur-fast) var(--ease-out), box-shadow var(--dur-base) var(--ease-out);
}
.whatsapp-float i { width: 26px; height: 26px; }
@media (hover: hover) and (pointer: fine) {
  .whatsapp-float:hover { transform: translateY(-3px); box-shadow: 0 18px 36px rgba(31, 158, 90, 0.45); }
}

/* =========================================================================
   HERO
   ========================================================================= */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0;
  overflow: hidden;
}
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) brightness(0.62);
}
.hero__scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, var(--bg-void) 2%, rgba(11, 11, 14, 0.35) 42%, rgba(11, 11, 14, 0.55) 100%),
    linear-gradient(100deg, rgba(11, 11, 14, 0.75) 0%, rgba(11, 11, 14, 0.1) 55%);
}

.hero__badges {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  padding: 130px 64px 0;
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 60px 64px 96px;
  max-width: 900px;
}
.hero__title {
  font-size: clamp(2.6rem, 1.4rem + 6vw, 5.6rem);
  line-height: 1.04;
  color: var(--ink);
}
.hero__title .line {
  display: block;
  overflow: hidden;
}
.hero__title .line span,
.hero__title .line { will-change: transform; }
.hero__title .line--italic { font-style: italic; color: var(--gold-bright); font-weight: 400; }

.hero__subtitle {
  margin-top: 26px;
  max-width: 46ch;
  font-size: 1.1rem;
  color: var(--ink-dim);
}
.hero__actions { margin-top: 38px; display: flex; gap: 16px; flex-wrap: wrap; }

.hero__scroll-cue {
  position: absolute;
  right: 64px;
  bottom: 36px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink-faint);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
}
.hero__scroll-cue span {
  width: 1px;
  height: 34px;
  background: linear-gradient(var(--gold-bright), transparent);
}

@media (max-width: 760px) {
  .hero__badges, .hero__content { padding-left: 24px; padding-right: 24px; }
  .hero__badges { padding-top: 110px; }
  .hero__scroll-cue { display: none; }
}

/* =========================================================================
   EXPERIENCIA
   ========================================================================= */
.experience { background: var(--bg-void); }
.experience__inner { max-width: var(--container); margin: 0 auto; padding: 0 32px 0 calc(32px + 40px); }
@media (max-width: 1180px) { .experience__inner { padding: 0 24px; } }

.experience__grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  padding-bottom: 72px;
  border-bottom: 1px solid var(--line);
}
.experience__lead {
  font-family: var(--font-display);
  font-size: 1.7rem;
  line-height: 1.35;
  color: var(--ink);
}
.experience__body { color: var(--ink-dim); font-size: 1.02rem; align-self: end; }

@media (max-width: 860px) {
  .experience__grid { grid-template-columns: 1fr; gap: 24px; }
}

.stat-strip {
  display: flex;
  flex-wrap: wrap;
  margin-top: 56px;
}
.stat-strip__item {
  flex: 1 1 200px;
  padding: 0 32px;
  border-left: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.stat-strip__item:first-child { padding-left: 0; border-left: none; }
.stat-strip__number {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 1.6rem + 1.6vw, 3rem);
  color: var(--gold-bright);
  line-height: 1;
}
.stat-strip__number--text { font-size: clamp(1.6rem, 1.3rem + 1vw, 2.2rem); }
.stat-strip__label { color: var(--ink-dim); font-size: 0.85rem; }

@media (max-width: 700px) {
  .stat-strip__item { border-left: none; border-top: 1px solid var(--line); padding: 20px 0 0; flex-basis: 45%; }
  .stat-strip__item:first-child { border-top: none; }
}

/* =========================================================================
   MENU / CHROMAGRID
   ========================================================================= */
.menu { background: var(--bg-panel); }
.menu__inner { max-width: var(--container); margin: 0 auto; padding: 0 32px; }

.chroma-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 190px;
  gap: 18px;
}
.chroma-card--a { grid-column: 1 / 4; grid-row: 1 / 3; }
.chroma-card--b { grid-column: 4 / 7; grid-row: 1 / 3; }
.chroma-card--c { grid-column: 1 / 3; grid-row: 3 / 4; }
.chroma-card--d { grid-column: 3 / 5; grid-row: 3 / 4; }
.chroma-card--e { grid-column: 5 / 7; grid-row: 3 / 4; }
.chroma-card--f { grid-column: 1 / 7; grid-row: 4 / 5; }

.chroma-card {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  border: 1px solid var(--line);
  isolation: isolate;
}
.chroma-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms var(--ease-out), filter 700ms var(--ease-out);
  filter: saturate(0.85) brightness(0.55);
}
.chroma-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(11, 11, 14, 0.92) 10%, rgba(11, 11, 14, 0.15) 65%);
  z-index: 1;
}
.chroma-card__spot {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0;
  background: radial-gradient(320px circle at var(--mx, 50%) var(--my, 50%), color-mix(in srgb, var(--gold) 55%, transparent) 0%, transparent 60%);
  mix-blend-mode: screen;
  transition: opacity var(--dur-base) var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
  .chroma-card:hover .chroma-card__spot { opacity: 0.55; }
  .chroma-card:hover .chroma-card__img { transform: scale(1.06); filter: saturate(1) brightness(0.65); }
}
.chroma-card__body {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 3;
  padding: 22px 24px;
}
.chroma-card__tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--gold-bright);
  margin-bottom: 8px;
}
.chroma-card__body h3 {
  font-size: 1.35rem;
  color: var(--ink);
  margin-bottom: 6px;
}
.chroma-card__body p {
  font-size: 0.88rem;
  color: var(--ink-dim);
  max-width: 34ch;
}
.chroma-card--a .chroma-card__body p,
.chroma-card--b .chroma-card__body p,
.chroma-card--f .chroma-card__body p { max-width: 42ch; }
.chroma-card--a h3, .chroma-card--b h3, .chroma-card--f h3 { font-size: 1.7rem; }

@media (max-width: 860px) {
  .chroma-grid { grid-template-columns: 1fr; grid-auto-rows: 260px; }
  .chroma-card--a, .chroma-card--b, .chroma-card--c, .chroma-card--d, .chroma-card--e, .chroma-card--f {
    grid-column: 1 / 2; grid-row: auto;
  }
}

/* =========================================================================
   REVIEWS
   ========================================================================= */
.reviews { background: var(--bg-void); }
.reviews__inner { max-width: var(--container); margin: 0 auto; padding: 0 32px; }
.reviews__score { display: flex; align-items: center; gap: 12px; margin-top: 20px; flex-wrap: wrap; }
.reviews__score-number { font-family: var(--font-display); font-size: 2rem; color: var(--gold-bright); }
.reviews__stars { display: inline-flex; gap: 2px; }
.reviews__stars i { width: 16px; height: 16px; color: var(--gold-bright); fill: var(--gold-bright); }
.reviews__score-caption { color: var(--ink-dim); font-size: 0.85rem; }

.reviews__track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 12px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: var(--line-strong) transparent;
}
.review-card {
  scroll-snap-align: start;
  flex: 0 0 340px;
  padding: 32px 28px 26px;
  border-top: 1px solid var(--line-strong);
  background: linear-gradient(180deg, rgba(244, 239, 230, 0.03), transparent);
}
.review-card__quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 3rem;
  color: var(--gold-dim);
  line-height: 0.6;
  display: block;
  margin-bottom: 12px;
}
.review-card p { color: var(--ink); font-size: 1rem; line-height: 1.55; min-height: 96px; }
.review-card__footer { margin-top: 22px; display: flex; align-items: center; justify-content: space-between; }
.review-card__stars { display: inline-flex; gap: 2px; }
.review-card__stars i { width: 13px; height: 13px; color: var(--gold-bright); fill: var(--gold-bright); }
.review-card__name { font-size: 0.82rem; color: var(--ink-faint); }

/* =========================================================================
   LOCATION
   ========================================================================= */
.location { background: var(--bg-panel); }
.location__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.location__desc { color: var(--ink-dim); margin-top: 18px; max-width: 46ch; }
.location__list { margin-top: 36px; display: flex; flex-direction: column; gap: 22px; }
.location__list li { display: flex; gap: 16px; align-items: flex-start; }
.location__list i { width: 20px; height: 20px; color: var(--gold-bright); margin-top: 3px; flex-shrink: 0; }
.location__list strong { display: block; font-size: 0.85rem; color: var(--ink); margin-bottom: 2px; }
.location__list span { color: var(--ink-dim); font-size: 0.92rem; }
.location__actions { margin-top: 40px; display: flex; gap: 16px; flex-wrap: wrap; }

.location__map {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  aspect-ratio: 4 / 3.4;
}
.location__map iframe {
  width: 100%;
  height: 100%;
  filter: invert(94%) hue-rotate(180deg) saturate(0.35) brightness(0.95) contrast(0.92);
}

@media (max-width: 900px) {
  .location__inner { grid-template-columns: 1fr; gap: 40px; }
}

/* =========================================================================
   FOOTER
   ========================================================================= */
.site-footer { background: var(--bg-void); border-top: 1px solid var(--line); padding: 80px 0 28px; }
.site-footer__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  align-items: flex-start;
}
.site-footer__brand p { color: var(--ink-faint); margin-top: 12px; font-size: 0.9rem; max-width: 30ch; }
.site-footer__logo { width: 200px; height: auto; overflow: visible; }
.site-footer__logo-text { font-family: var(--font-display); font-size: 34px; fill: var(--ink); }
.site-footer__logo-rule {
  stroke: var(--gold-bright);
  stroke-width: 1.5;
  stroke-dasharray: 220;
  stroke-dashoffset: 220;
}
.site-footer__logo-rule.is-drawn { transition: stroke-dashoffset 1100ms var(--ease-in-out); stroke-dashoffset: 0; }

.site-footer__links { display: flex; flex-direction: column; gap: 12px; font-size: 0.92rem; color: var(--ink-dim); }
.site-footer__links a:hover { color: var(--gold-bright); }

.site-footer__social { display: flex; gap: 14px; }
.site-footer__social a {
  width: 40px; height: 40px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-dim);
  transition: border-color var(--dur-fast) var(--ease-out), color var(--dur-fast) var(--ease-out);
}
.site-footer__social a:hover { border-color: var(--gold-dim); color: var(--gold-bright); }
.site-footer__social i { width: 17px; height: 17px; }

.site-footer__bottom {
  max-width: var(--container);
  margin: 56px auto 0;
  padding: 22px 32px 0;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--ink-faint);
}

/* =========================================================================
   RESPONSIVE — NAV / SECTIONS
   ========================================================================= */
@media (max-width: 860px) {
  section { padding: 96px 0; }

  .pill-nav__toggle { display: flex; }
  .pill-nav__list {
    position: fixed;
    top: 84px;
    left: 20px;
    right: 20px;
    margin: 0;
    flex-direction: column;
    align-items: stretch;
    background: rgba(15, 12, 18, 0.92);
    border: 1px solid var(--line-strong);
    border-radius: 18px;
    padding: 10px;
    backdrop-filter: blur(20px);
    transform-origin: top center;
    transform: scaleY(0.9);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--dur-base) var(--ease-out), transform var(--dur-base) var(--ease-out);
  }
  .pill-nav__list.is-open { opacity: 1; transform: scaleY(1); pointer-events: auto; }
  .pill-nav__indicator { display: none; }
  .pill-nav__link { padding: 14px 16px; text-align: left; }
  .pill-nav__cta { display: none; }
}

@media (min-width: 861px) {
  .pill-nav__list { display: flex !important; }
}