/* Le Similan — Restaurant & Lounge Domont
   Direction: dark lounge / marbre / or script · filets LED signature */

:root {
  --void: #070708;
  --ink: #121214;
  --surface: #1a1a1e;
  --marble: #ede8e1;
  --marble-dim: #c9c2b8;
  --gold: #c9a227;
  --gold-soft: #e8d5a3;
  --gold-deep: #8a6e1a;
  --violet: #8b5cf6;
  --violet-glow: rgba(139, 92, 246, 0.22);
  --line: rgba(201, 162, 39, 0.28);
  --muted: rgba(237, 232, 225, 0.62);
  --danger: #e57373;
  --ok: #81c784;
  --radius: 2px;
  --pad: clamp(1.25rem, 4vw, 3.5rem);
  --max: 1120px;
  --header-h: 4.25rem;
  --font-brand: "Pinyon Script", cursive;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Outfit", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
  }
  .hero__brand,
  .hero__kicker,
  .hero__tag,
  .hero__lead,
  .hero .btn-row,
  .hero__meta,
  .hero__led {
    opacity: 1 !important;
    transform: none !important;
  }
  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
  .hero__media img {
    transform: none !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.55;
  color: var(--marble);
  background: var(--void);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--gold-soft);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

a:hover {
  color: var(--gold);
}

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

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--gold);
  color: var(--void);
  padding: 0.75rem 1rem;
  z-index: 100;
}

.skip-link:focus {
  left: 0.5rem;
  top: 0.5rem;
}

/* —— Header —— */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 60;
  height: var(--header-h);
  transition: background 0.35s var(--ease), border-color 0.35s var(--ease),
    backdrop-filter 0.35s var(--ease);
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  background: rgba(7, 7, 8, 0.82);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}

.site-header__rail {
  max-width: calc(var(--max) + 2 * var(--pad));
  margin: 0 auto;
  padding: 0 var(--pad);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: inherit;
  text-decoration: none;
}

.logo__mark {
  width: 2.25rem;
  height: 2.25rem;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.85rem;
  color: var(--gold);
  letter-spacing: 0.02em;
}

.logo__name {
  font-family: var(--font-brand);
  font-size: 1.65rem;
  line-height: 1;
  color: var(--gold-soft);
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 1.75rem;
}

.nav-desktop a {
  color: var(--marble);
  text-decoration: none;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
}

.nav-desktop a:hover,
.nav-desktop a.is-active {
  color: var(--gold);
}

.nav-desktop a.is-active {
  text-decoration: underline;
  text-underline-offset: 0.35em;
  text-decoration-thickness: 1px;
}

.nav-desktop .btn {
  margin-left: 0.5rem;
}

.nav-toggle {
  position: relative;
  z-index: 60;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid var(--gold);
  background: rgba(7, 7, 8, 0.55);
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}

.nav-toggle span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 1.15rem;
  height: 2px;
  margin: 0;
  background: var(--gold);
  border-radius: 1px;
  transition: transform 0.28s var(--ease), opacity 0.2s;
  transform-origin: center;
}

.nav-toggle span:first-child {
  transform: translate(-50%, calc(-50% - 5px));
}

.nav-toggle span:last-child {
  transform: translate(-50%, calc(-50% + 5px));
}

body.nav-open .nav-toggle {
  border-color: #fff;
  background: transparent;
}

body.nav-open .nav-toggle span {
  background: #fff;
}

body.nav-open .nav-toggle span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}

body.nav-open .nav-toggle span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

#nav-mobile {
  position: fixed;
  inset: 0;
  z-index: 55;
  background: #000;
  color: #fff;
  padding: calc(var(--header-h) + 1.5rem) var(--pad) 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  clip-path: inset(0 0 100% 0);
  transition: opacity 0.35s var(--ease), visibility 0.35s, clip-path 0.45s var(--ease);
}

body.nav-open #nav-mobile {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  clip-path: inset(0 0 0 0);
}

body.nav-open .site-header {
  background: transparent;
  border-bottom-color: transparent;
  backdrop-filter: none;
}

#nav-mobile a {
  color: #fff;
  text-decoration: none;
  font-family: var(--font-display);
  font-size: clamp(2rem, 8vw, 3rem);
  line-height: 1.15;
  padding: 0.35rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

#nav-mobile .nav-mobile__meta {
  margin-top: auto;
  padding-top: 2rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
  display: grid;
  gap: 0.5rem;
}

#nav-mobile .btn {
  margin-top: 1rem;
  align-self: start;
}

@media (min-width: 900px) {
  .nav-desktop {
    display: flex;
  }
  .nav-toggle {
    display: none;
  }
}

/* —— Buttons —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 2.75rem;
  padding: 0.7rem 1.4rem;
  border: 1px solid var(--gold);
  background: var(--gold);
  color: var(--void);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.25s;
}

.btn:hover {
  background: var(--gold-soft);
  border-color: var(--gold-soft);
  color: var(--void);
}

.btn--ghost {
  background: transparent;
  color: var(--gold-soft);
}

.btn--ghost:hover {
  background: rgba(201, 162, 39, 0.12);
  color: var(--gold);
}

.btn--sm {
  min-height: 2.4rem;
  padding: 0.5rem 1rem;
  font-size: 0.72rem;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* —— Hero —— */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 55% 40%;
  transform: scale(1.04);
  animation: hero-drift 18s var(--ease) infinite alternate;
}

@keyframes hero-drift {
  to {
    transform: scale(1.1);
  }
}

.hero__veil {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 70% 55% at 50% 45%, rgba(7, 7, 8, 0.35), rgba(7, 7, 8, 0.88) 70%),
    linear-gradient(180deg, rgba(7, 7, 8, 0.55) 0%, rgba(7, 7, 8, 0.2) 40%, rgba(7, 7, 8, 0.95) 100%);
}

.hero__led {
  position: absolute;
  inset: 12% 8%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.85;
  animation: led-in 1.2s 0.2s var(--ease) both;
}

.hero__led::before,
.hero__led::after {
  content: "";
  position: absolute;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  height: 1px;
  left: 10%;
  right: 10%;
  box-shadow: 0 0 12px var(--violet-glow);
}

.hero__led::before {
  top: 0;
}

.hero__led::after {
  bottom: 0;
}

@keyframes led-in {
  to {
    opacity: 0.85;
  }
}

.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: calc(var(--header-h) + 2rem) var(--pad) 3rem;
  max-width: 42rem;
}

.hero__kicker {
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin: 0 0 1rem;
  animation: rise 0.9s 0.15s var(--ease) both;
}

.hero__brand {
  margin: 0;
  font-family: var(--font-brand);
  font-weight: 400;
  font-size: clamp(4.5rem, 16vw, 8.5rem);
  line-height: 0.9;
  color: var(--gold);
  text-shadow: 0 0 40px var(--violet-glow);
  animation: brand-in 1.1s 0.25s var(--ease) both;
}

.hero__tag {
  margin: 1rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 3vw, 1.65rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--marble);
  animation: rise 0.9s 0.45s var(--ease) both;
}

.hero__lead {
  margin: 0.85rem auto 1.75rem;
  max-width: 28rem;
  color: var(--muted);
  font-size: 0.98rem;
  animation: rise 0.9s 0.55s var(--ease) both;
}

.hero .btn-row {
  justify-content: center;
  animation: rise 0.9s 0.65s var(--ease) both;
}

.hero__meta {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 1.75rem;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--marble-dim);
  animation: rise 0.9s 0.75s var(--ease) both;
}

.hero__meta strong {
  color: var(--gold-soft);
  font-weight: 600;
}

@keyframes brand-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* —— Sections —— */
.section {
  padding: clamp(3.5rem, 8vw, 6.5rem) var(--pad);
}

.section__inner {
  max-width: var(--max);
  margin: 0 auto;
}

.section__head {
  max-width: 36rem;
  margin-bottom: clamp(2rem, 5vw, 3rem);
}

.eyebrow {
  margin: 0 0 0.65rem;
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
}

.section h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  line-height: 1.1;
  color: var(--marble);
}

.section__lede {
  margin: 0.85rem 0 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.led-rule {
  width: min(12rem, 40%);
  height: 1px;
  margin: 1.25rem 0 0;
  background: linear-gradient(90deg, var(--gold), transparent);
  box-shadow: 0 0 10px var(--violet-glow);
}

/* Experience split */
.experience {
  background: var(--ink);
}

.experience__grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 880px) {
  .experience__grid {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 3.5rem;
  }
}

.experience__visual {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: var(--radius);
}

.experience__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.experience__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid var(--line);
  pointer-events: none;
}

.pillars {
  display: grid;
  gap: 1.25rem;
  margin-top: 2rem;
}

.pillar {
  padding: 1.15rem 0;
  border-top: 1px solid var(--line);
}

.pillar h3 {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 500;
  color: var(--gold-soft);
}

.pillar p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

/* Menu */
.menu-section {
  background:
    radial-gradient(ellipse 50% 40% at 80% 0%, var(--violet-glow), transparent 60%),
    var(--void);
}

.menu-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
}

.menu-tab {
  min-height: 2.5rem;
  padding: 0.45rem 0.95rem;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--marble-dim);
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: var(--radius);
}

.menu-tab[aria-selected="true"] {
  border-color: var(--gold);
  color: var(--void);
  background: var(--gold);
}

.menu-panel[hidden] {
  display: none;
}

.menu-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.menu-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.35rem 1.25rem;
  padding: 1.15rem 0;
  border-bottom: 1px solid rgba(201, 162, 39, 0.14);
}

.menu-item__name {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--gold-soft);
  letter-spacing: 0.02em;
}

.menu-item__desc {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-style: italic;
}

.menu-item__price {
  font-weight: 600;
  color: var(--marble);
  font-variant-numeric: tabular-nums;
}

.menu-note {
  margin-top: 1.5rem;
  color: var(--muted);
  font-size: 0.88rem;
}

.menu-note a {
  color: var(--gold);
}

.menu-carte-link {
  margin-top: 1.25rem;
}

/* Gallery */
.gallery-section {
  background: var(--ink);
}

.gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

@media (min-width: 720px) {
  .gallery {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 12rem;
  }

  .gallery__item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
  }

  .gallery__item:nth-child(4) {
    grid-column: span 2;
  }
}

.gallery__item {
  position: relative;
  overflow: hidden;
  min-height: 9rem;
  border-radius: var(--radius);
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.gallery__item:hover img {
  transform: scale(1.05);
}

.gallery__item figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.65rem 0.75rem;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.75));
  color: var(--marble-dim);
}

/* Reviews */
.reviews {
  background: var(--void);
}

.reviews__grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 800px) {
  .reviews__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.review {
  padding: 1.5rem 1.35rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.review__stars {
  color: var(--gold);
  letter-spacing: 0.15em;
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
}

.review blockquote {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.2rem;
  line-height: 1.35;
  color: var(--marble);
}

.review cite {
  display: block;
  margin-top: 1rem;
  font-style: normal;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.reviews__rating {
  margin-top: 1.75rem;
  color: var(--muted);
  font-size: 0.9rem;
}

/* Contact / reserve */
.contact {
  background:
    linear-gradient(180deg, rgba(7, 7, 8, 0.55), rgba(7, 7, 8, 0.92)),
    url("../assets/photos/chicha-bar.webp") center / cover;
}

.contact__grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 880px) {
  .contact__grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.contact-card {
  background: rgba(18, 18, 20, 0.88);
  border: 1px solid var(--line);
  padding: 1.75rem;
  backdrop-filter: blur(10px);
}

.contact-card h3 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--gold-soft);
}

.contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}

.contact-list li {
  display: grid;
  gap: 0.15rem;
}

.contact-list span {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

.contact-list a,
.contact-list p {
  margin: 0;
  color: var(--marble);
  text-decoration: none;
  font-size: 1.05rem;
}

.hours {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.35rem;
  font-size: 0.95rem;
}

.hours li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 0.35rem;
}

.reserve-form {
  display: grid;
  gap: 0.85rem;
}

.reserve-form label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

.reserve-form input,
.reserve-form select,
.reserve-form textarea {
  min-height: 2.75rem;
  padding: 0.65rem 0.85rem;
  border: 1px solid var(--line);
  background: rgba(7, 7, 8, 0.65);
  color: var(--marble);
  font-family: var(--font-body);
  font-size: 1rem;
  border-radius: var(--radius);
}

.reserve-form textarea {
  min-height: 6rem;
  resize: vertical;
}

.form-status {
  min-height: 1.4rem;
  font-size: 0.9rem;
  margin: 0;
}

.form-status[data-state="error"] {
  color: var(--danger);
}

.form-status[data-state="success"] {
  color: var(--ok);
}

.map-embed {
  margin-top: 1.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16 / 9;
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.35) contrast(1.05);
}

/* Footer */
.site-footer {
  background: #000;
  padding: 2.5rem var(--pad) 2rem;
  border-top: 1px solid var(--line);
}

.site-footer__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 720px) {
  .site-footer__inner {
    grid-template-columns: 1.2fr 1fr 1fr;
  }
}

.site-footer .logo__name {
  font-size: 2rem;
}

.site-footer p {
  color: var(--muted);
  font-size: 0.9rem;
}

.site-footer h4 {
  margin: 0 0 0.75rem;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}

.site-footer a {
  color: var(--marble-dim);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--gold);
}

.site-footer__bottom {
  max-width: var(--max);
  margin: 2rem auto 0;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--muted);
}

/* Reveal on scroll — visible by default if JS/IO fails */
.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal:not(.is-in) {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.js .reveal.is-in {
  opacity: 1;
  transform: none;
}

/* Inner page hero */
.page-hero {
  position: relative;
  min-height: min(52vh, 28rem);
  display: grid;
  place-items: end start;
  overflow: hidden;
  padding: calc(var(--header-h) + 2.5rem) var(--pad) 2.5rem;
}

.page-hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.page-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero__veil {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(7, 7, 8, 0.45), rgba(7, 7, 8, 0.92));
}

.page-hero h1 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.4rem, 6vw, 3.8rem);
  line-height: 1.05;
  color: var(--marble);
  max-width: var(--max);
  width: 100%;
  margin-inline: auto;
}

.page-hero .eyebrow {
  max-width: var(--max);
  width: 100%;
  margin-inline: auto;
  margin-bottom: 0.65rem;
}

/* Home teasers */
.teasers {
  background: var(--ink);
}

.teaser-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 720px) {
  .teaser-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1000px) {
  .teaser-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.teaser {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding: 1.35rem 1.25rem;
  border: 1px solid var(--line);
  background: var(--surface);
  color: inherit;
  text-decoration: none;
  border-radius: var(--radius);
  min-height: 11rem;
  transition: border-color 0.25s, transform 0.25s;
}

.teaser:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
  color: inherit;
}

.teaser__num {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.teaser h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 500;
  color: var(--gold-soft);
}

.teaser p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  flex: 1;
}

.teaser__link {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

.cta-band {
  background: var(--void);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.cta-band__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.cta-band h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 500;
}

.cta-band p {
  margin: 0.4rem 0 0;
  color: var(--muted);
}

/* Legal pages */
.page-legal .legal {
  max-width: 42rem;
  margin: 0 auto;
  padding: calc(var(--header-h) + 2.5rem) var(--pad) 4rem;
}

.page-legal h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 500;
  margin: 0 0 1.5rem;
}

.page-legal h2 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin: 2rem 0 0.75rem;
}

.page-legal p,
.page-legal li {
  color: var(--muted);
}
