/* ============================================================
   Clínica Dental Padrós — Reseñas
   Tokens
   ============================================================ */
:root {
  --ink: #0d1b3d;
  --ink-soft: #14275a;
  --brand-navy: #1c3a82;
  --brand-navy-light: #3a5aa8;
  --paper: #f1ede3;
  --paper-high: #f8f5ee;
  --line: #dcd3bd;
  --line-on-ink: rgba(241, 237, 227, 0.16);
  --gold: #ad8544;
  --gold-bright: #c9a15f;
  --ink-text-on-paper: #23252b;
  --muted-on-paper: #5c5b57;
  --muted-on-ink: #aab3cf;
  --white: #ffffff;

  --font-display: "Fraunces", "Iowan Old Style", serif;
  --font-text: "Libre Franklin", -apple-system, "Segoe UI", sans-serif;

  --max-w: 1180px;
  --side-pad: clamp(20px, 5vw, 64px);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink-text-on-paper);
  font-family: var(--font-text);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
}

h1, h2, h3, p, figure {
  margin: 0;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Skip link */
.skip-link {
  position: absolute;
  left: 12px;
  top: -60px;
  background: var(--gold);
  color: var(--ink);
  padding: 10px 16px;
  border-radius: 4px;
  font-weight: 600;
  z-index: 1000;
  transition: top 0.2s var(--ease);
}
.skip-link:focus {
  top: 12px;
}

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

/* ============================================================
   Layout helpers
   ============================================================ */
.band {
  width: 100%;
}

.wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding-left: var(--side-pad);
  padding-right: var(--side-pad);
}

.on-ink {
  background: var(--ink);
  color: var(--paper-high);
}

.on-paper {
  background: var(--paper);
  color: var(--ink-text-on-paper);
}

/* ============================================================
   Typography
   ============================================================ */
.display {
  font-family: var(--font-display);
  font-weight: 480;
  letter-spacing: -0.01em;
  line-height: 1.04;
}

.eyebrow-free-kicker {
  /* used sparingly: a short standalone line of body text that introduces
     a section by saying something, not by labeling it */
  font-family: var(--font-text);
  font-size: 1rem;
  font-weight: 600;
  color: var(--gold);
}

.section-head {
  max-width: 46ch;
}

.section-head h2 {
  font-size: clamp(2rem, 4.2vw, 3.1rem);
}

.body-copy {
  max-width: 62ch;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--muted-on-paper);
}

.on-ink .body-copy {
  color: var(--muted-on-ink);
}

/* ============================================================
   Header mark (no navigation — just identity + one action)
   ============================================================ */
.top-mark {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  padding-top: clamp(20px, 3vw, 34px);
}

.top-mark .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand-mark {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--paper-high);
}

.brand-mark img {
  width: 34px;
  height: 34px;
  filter: brightness(0) invert(1);
}

.brand-mark span {
  font-family: var(--font-display);
  font-size: clamp(0.82rem, 2.6vw, 1.05rem);
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.25;
}

.brand-mark small {
  display: block;
  font-family: var(--font-text);
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--muted-on-ink);
  margin-top: 2px;
}

/* ============================================================
   Language switcher
   ============================================================ */
.lang-switch {
  position: relative;
  flex: none;
}

.lang-switch summary {
  display: flex;
  align-items: center;
  gap: 7px;
  list-style: none;
  cursor: pointer;
  font-family: var(--font-text);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--paper-high);
  padding: 8px 13px;
  border: 1px solid rgba(241, 237, 227, 0.35);
  border-radius: 999px;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.lang-switch summary::-webkit-details-marker {
  display: none;
}

.lang-switch summary::after {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  margin-top: -3px;
  transition: transform 0.2s ease;
}

.lang-switch:hover summary,
.lang-switch[open] summary {
  border-color: rgba(241, 237, 227, 0.7);
  background: rgba(241, 237, 227, 0.06);
}

.lang-switch[open] summary::after {
  transform: rotate(-135deg);
  margin-top: 3px;
}

.lang-switch-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 30;
  min-width: 150px;
  margin: 0;
  padding: 6px;
  list-style: none;
  background: var(--ink);
  border: 1px solid rgba(241, 237, 227, 0.18);
  border-radius: 10px;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.3);
}

.lang-switch-menu li + li {
  margin-top: 2px;
}

.lang-switch-menu a {
  display: block;
  padding: 8px 11px;
  border-radius: 6px;
  color: var(--paper-high);
  text-decoration: none;
  font-size: 0.88rem;
}

.lang-switch-menu a:hover,
.lang-switch-menu a:focus-visible {
  background: rgba(241, 237, 227, 0.09);
  color: var(--gold-bright);
}

/* ============================================================
   Buttons / links
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-text);
  font-weight: 600;
  font-size: 0.98rem;
  text-decoration: none;
  padding: 13px 24px;
  border-radius: 3px;
  border: 1px solid transparent;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease), border-color .25s var(--ease);
}

.btn-gold {
  background: var(--gold);
  color: var(--ink);
}
.btn-gold:hover {
  background: var(--gold-bright);
}

.text-link {
  text-decoration: underline;
  text-decoration-color: currentColor;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}
.text-link:hover {
  text-decoration-color: var(--gold);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-start;
  overflow: hidden;
}

.hero-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% 30%;
}

.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(13,27,61,0.55) 0%, rgba(13,27,61,0.35) 30%, rgba(13,27,61,0.88) 82%, rgba(13,27,61,0.97) 100%),
    linear-gradient(90deg, rgba(13,27,61,0.92) 0%, rgba(13,27,61,0.55) 46%, rgba(13,27,61,0.28) 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-top: 170px;
  padding-bottom: clamp(28px, 4vw, 44px);
}

.hero-copy {
  max-width: 960px;
  color: var(--paper-high);
}

.hero-copy h1 {
  font-size: clamp(2.1rem, 4.6vw, 3.4rem);
  font-weight: 460;
}

.hero-copy h1 em {
  font-style: italic;
  color: var(--gold-bright);
  font-weight: 460;
}

.hero-dek {
  margin-top: 14px;
  max-width: 50ch;
  font-size: 1.02rem;
  line-height: 1.55;
  color: var(--muted-on-ink);
}

.hero-actions {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}

.stat-cell {
  min-width: 130px;
}

.stat-cell .num {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.6vw, 1.9rem);
  font-weight: 500;
  color: var(--paper-high);
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

.stat-cell .label {
  margin-top: 6px;
  font-size: 0.8rem;
  color: var(--muted-on-ink);
  max-width: 22ch;
}

.scroll-cue {
  position: absolute;
  right: var(--side-pad);
  bottom: 28px;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted-on-ink);
  font-size: 0.82rem;
  writing-mode: vertical-rl;
  opacity: 0.85;
}

.scroll-cue .line {
  width: 1px;
  height: 46px;
  background: var(--line-on-ink);
  position: relative;
  overflow: hidden;
}

.scroll-cue .line::after {
  content: "";
  position: absolute;
  left: 0;
  top: -100%;
  width: 100%;
  height: 100%;
  background: var(--gold-bright);
  animation: cueTravel 2.4s var(--ease) infinite;
}

@keyframes cueTravel {
  0% { top: -100%; }
  60% { top: 100%; }
  100% { top: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  .scroll-cue .line::after { animation: none; top: 0; }
}

@media (max-width: 720px) {
  .scroll-cue { display: none; }
}

/* Hero load-in sequence (single orchestrated moment) */
.reveal-up {
  opacity: 0;
  transform: translateY(16px);
}
.hero.is-ready .reveal-up {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.hero.is-ready .reveal-1 { transition-delay: 0.05s; }
.hero.is-ready .reveal-2 { transition-delay: 0.22s; }
.hero.is-ready .reveal-3 { transition-delay: 0.38s; }
@media (prefers-reduced-motion: reduce) {
  .reveal-up { opacity: 1; transform: none; }
}

/* ============================================================
   Section rhythm
   ============================================================ */
section {
  padding-top: clamp(64px, 10vw, 128px);
  padding-bottom: clamp(64px, 10vw, 128px);
}

/* ============================================================
   Featured testimonials
   ============================================================ */
.testimonial-list {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  gap: clamp(56px, 8vw, 96px);
}

.testimonial {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.testimonial.flip .t-media {
  order: 2;
}

.testimonial.flip .t-copy {
  order: 1;
}

.t-copy .quote {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.4vw, 1.7rem);
  font-weight: 420;
  line-height: 1.42;
  color: var(--ink);
}

.t-person {
  margin-top: 26px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.t-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--ink);
  background: var(--paper-high);
  flex-shrink: 0;
}

.t-person .name {
  font-weight: 700;
  font-size: 0.98rem;
}

.t-person .treatment {
  font-size: 0.86rem;
  color: var(--muted-on-paper);
}

.t-video-link {
  margin-top: 22px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--brand-navy);
  text-decoration: none;
}

.t-video-link .play-dot {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--brand-navy);
  color: var(--paper-high);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.t-video-link .play-dot svg {
  width: 9px;
  height: 9px;
}

.t-video-link:hover { color: var(--gold); }
.t-video-link:hover .play-dot { background: var(--gold); color: var(--ink); }

/* Before / after slider */
.ba-slider {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 4px;
  overflow: hidden;
  user-select: none;
  border: 1px solid var(--line);
}

.ba-pane {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: var(--ink);
}

.ba-pane img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 26%;
  display: block;
}

.ba-pane .ba-label {
  position: absolute;
  bottom: 16px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--paper-high);
  padding: 34px 18px 10px;
  background: linear-gradient(180deg, transparent, rgba(13,27,61,0.72) 60%);
}

.ba-before .ba-label {
  left: 0;
  text-align: left;
}

.ba-after {
  clip-path: inset(0 0 0 50%);
}

.ba-after .ba-label {
  right: 0;
  text-align: right;
}

.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 0;
  transform: translateX(-0.5px);
  cursor: ew-resize;
  touch-action: none;
}

.ba-handle::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 2px;
  background: var(--paper-high);
}

.ba-handle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40px;
  height: 40px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: var(--paper-high);
  box-shadow: 0 6px 18px rgba(13,27,61,0.28);
}

.ba-arrows {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  color: var(--ink);
  pointer-events: none;
  z-index: 1;
}

.ba-arrows svg {
  width: 100%;
  height: 100%;
}

.ba-caption {
  margin-top: 14px;
  font-size: 0.82rem;
  color: var(--muted-on-paper);
}

/* First-view "wiggle" — signals the slider is draggable */
@keyframes ba-wiggle-handle {
  0%, 100% { left: 50%; }
  35% { left: 44%; }
  70% { left: 56%; }
}

@keyframes ba-wiggle-after {
  0%, 100% { clip-path: inset(0 0 0 50%); }
  35% { clip-path: inset(0 0 0 44%); }
  70% { clip-path: inset(0 0 0 56%); }
}

.ba-slider.is-wiggle .ba-handle {
  animation: ba-wiggle-handle 2.4s cubic-bezier(0.45, 0, 0.15, 1) 1;
}

.ba-slider.is-wiggle .ba-after {
  animation: ba-wiggle-after 2.4s cubic-bezier(0.45, 0, 0.15, 1) 1;
}

@media (prefers-reduced-motion: reduce) {
  .ba-slider.is-wiggle .ba-handle,
  .ba-slider.is-wiggle .ba-after {
    animation: none;
  }
}

/* Compact before/after gallery */
.mini-ba-head {
  margin-top: 96px;
  max-width: 56ch;
}

.mini-ba-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px 28px;
}

.mini-ba-item .ba-slider {
  aspect-ratio: 4 / 5;
}

.mini-ba-item .ba-tag {
  margin-top: 12px;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--ink);
}

.mini-ba-item .ba-tag span {
  display: block;
  margin-top: 2px;
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--muted-on-paper);
}

.mini-ba-video {
  margin-top: 10px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--brand-navy);
  text-decoration: none;
}

.mini-ba-video .play-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--brand-navy);
  color: var(--paper-high);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mini-ba-video .play-dot svg {
  width: 7px;
  height: 7px;
}

.mini-ba-video:hover { color: var(--gold); }
.mini-ba-video:hover .play-dot { background: var(--gold); color: var(--ink); }

/* ============================================================
   Reviews wall (dense, dark)
   ============================================================ */
.reviews-band {
  position: relative;
  background: var(--ink);
  overflow: hidden;
}

.reviews-band .bg-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.reviews-band .bg-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.16;
}

.reviews-band .bg-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--ink) 0%, rgba(13,27,61,0.86) 100%);
}

.reviews-band .wrap {
  position: relative;
  z-index: 1;
}

.reviews-band .section-head h2,
.reviews-band .section-head .body-copy {
  color: var(--paper-high);
}

.review-grid {
  margin-top: 52px;
  columns: 4 260px;
  column-gap: 22px;
}

.review-card {
  break-inside: avoid;
  margin-bottom: 22px;
  padding: 22px 22px 20px;
  background: rgba(241,237,227,0.04);
  border: 1px solid var(--line-on-ink);
  border-radius: 3px;
}

.review-stars {
  display: flex;
  gap: 3px;
  color: var(--gold-bright);
}

.review-stars svg {
  width: 13px;
  height: 13px;
}

.review-text {
  margin-top: 12px;
  font-size: 0.94rem;
  line-height: 1.55;
  color: var(--paper-high);
}

.review-meta {
  margin-top: 14px;
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--muted-on-ink);
}

.reviews-cta {
  margin-top: 46px;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.reviews-cta .g-mark {
  width: 22px;
  height: 22px;
}

.reviews-cta .g-rating {
  font-weight: 700;
  color: var(--paper-high);
  font-size: 0.95rem;
}

/* ============================================================
   Legacy / credibility
   ============================================================ */
.legacy-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  align-items: center;
  gap: clamp(40px, 6vw, 96px);
}

.legacy-grid .section-head {
  max-width: 48ch;
}

.legacy-stats {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
}

.legacy-stats .stat-cell {
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.legacy-stats .stat-cell .num {
  color: var(--ink);
  font-size: clamp(2.6rem, 4.6vw, 4rem);
  font-weight: 480;
}
.legacy-stats .stat-cell .label {
  margin-top: 8px;
  color: var(--muted-on-paper);
  font-size: 0.95rem;
  max-width: none;
}

@media (max-width: 860px) {
  .legacy-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.awards-intro {
  margin-top: 76px;
  max-width: 56ch;
}

.awards-lead {
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  font-weight: 460;
  color: var(--ink);
}

.awards-frame {
  margin-top: 34px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(173,133,68,0.07), rgba(173,133,68,0) 40%),
    var(--paper-high);
  padding: clamp(20px, 3.4vw, 40px);
  border-radius: 2px;
}

.awards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 48px;
}

.award-item {
  display: flex;
  gap: 18px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
}

.award-item:nth-last-child(-n+2) {
  border-bottom: 1px solid var(--line);
}

.award-medal {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  margin-top: 2px;
}

.award-item.featured .award-medal {
  width: 40px;
  height: 40px;
}

.award-item .award-name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.14rem;
  line-height: 1.25;
  color: var(--ink);
}

.award-item.featured .award-name {
  font-size: 1.32rem;
}

.award-item .award-body {
  font-size: 0.9rem;
  color: var(--muted-on-paper);
  margin-top: 5px;
}

/* Team */
.team-band {
  position: relative;
  margin-top: 90px;
  border-radius: 4px;
  overflow: hidden;
}

.team-photo img {
  width: 100%;
  height: clamp(280px, 40vw, 460px);
  object-fit: cover;
  object-position: 50% 30%;
}

.team-photo-caption {
  position: absolute;
  left: 20px;
  bottom: 16px;
  font-size: 0.76rem;
  color: rgba(241,237,227,0.75);
  background: rgba(13,27,61,0.55);
  padding: 4px 10px;
  border-radius: 2px;
}

.team-intro {
  margin-top: 40px;
  max-width: 62ch;
}

.team-grid {
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px 32px;
}

.team-person {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.team-person figure {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--line);
}

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

.team-person .initial-badge {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  color: var(--brand-navy);
  background: var(--paper-high);
  border: 1px solid var(--line);
}

.team-person .name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--ink);
}

.team-person .role {
  font-size: 0.82rem;
  color: var(--muted-on-paper);
}

.team-credential {
  margin-top: 34px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  font-size: 0.95rem;
  color: var(--muted-on-paper);
  max-width: 62ch;
}

/* ============================================================
   Closing band
   ============================================================ */
.closing {
  background: var(--ink);
  color: var(--muted-on-ink);
  padding-top: clamp(56px, 8vw, 90px);
  padding-bottom: clamp(32px, 5vw, 48px);
}

.closing-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--line-on-ink);
}

.closing-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: inherit;
}

.closing-brand:hover span {
  color: var(--gold-bright);
}

.closing-brand img {
  width: 36px;
  height: 36px;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.closing-brand span {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--paper-high);
}

.closing-contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.95rem;
}

.closing-contact a {
  text-decoration: none;
}
.closing-contact a:hover {
  color: var(--gold-bright);
}

.closing-social {
  display: flex;
  gap: 16px;
  margin-top: 10px;
}

.closing-social a {
  display: inline-flex;
  color: var(--paper-high);
  opacity: 0.8;
}

.closing-social a:hover {
  color: var(--gold-bright);
  opacity: 1;
}

.closing-social svg {
  width: 20px;
  height: 20px;
}

.closing-cta {
  display: flex;
  align-items: flex-start;
}

.closing-note {
  margin-top: 30px;
  max-width: 68ch;
  font-size: 0.86rem;
  line-height: 1.6;
}

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

.closing-legal {
  margin-top: 22px;
  font-size: 0.78rem;
  opacity: 0.7;
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 900px) {
  .testimonial {
    grid-template-columns: 1fr;
  }
  .testimonial.flip .t-media,
  .testimonial.flip .t-copy {
    order: initial;
  }
  .awards {
    grid-template-columns: 1fr;
  }
  .award-item:nth-last-child(-n+2) {
    border-bottom: none;
  }
  .award-item:last-child {
    border-bottom: 1px solid var(--line);
  }
  .team-grid {
    grid-template-columns: 1fr 1fr;
  }
  .mini-ba-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .hero-inner {
    padding-top: 150px;
  }
  .review-grid {
    columns: 1;
  }
  .team-grid {
    grid-template-columns: 1fr;
  }
  .closing-top {
    flex-direction: column;
  }
  .mini-ba-grid {
    grid-template-columns: 1fr;
    max-width: 360px;
  }
}
