/* ============================================================
   PAGE-SPECIFIC LAYOUTS
   ============================================================ */

/* ---------- Section heads ---------- */
.sec-head { margin-bottom: 56px; }
.sec-head .eyebrow { display: block; margin-bottom: 16px; }
.sec-head--split {
  display: flex; justify-content: space-between; align-items: flex-end; gap: 32px;
  flex-wrap: wrap;
}

/* ---------- Home hero — pano variant ---------- */
.hero--pano {
  position: relative;
  padding: 0;
  color: var(--cream);
  background: var(--ink);
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-pano {
  position: absolute; inset: 0;
  margin: 0;
  overflow: hidden;
}
.hero-pano__slides { position: absolute; inset: 0; }
.hero-pano__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
  filter: saturate(0.95) contrast(1.02);
  opacity: 0;
  transition: opacity 1.2s var(--ease);
}
.hero-pano__img.is-active { opacity: 1; }
.hero-pano__nav {
  position: absolute;
  bottom: 32px; right: 48px;
  display: flex; gap: 10px;
  z-index: 3;
}
.hero-pano__dot {
  width: 28px; height: 2px;
  background: rgba(247,239,235,.35);
  border: 0; padding: 0; cursor: pointer;
  transition: background .25s var(--ease), width .25s var(--ease);
}
.hero-pano__dot:hover { background: rgba(247,239,235,.6); }
.hero-pano__dot.is-active { background: var(--cream); width: 44px; }
@media (max-width: 900px) { .hero-pano__nav { right: 20px; bottom: 20px; } }
.hero-pano__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(20,18,15,.55) 0%, rgba(20,18,15,.25) 35%, rgba(20,18,15,.85) 100%),
    linear-gradient(90deg, rgba(20,18,15,.65) 0%, rgba(20,18,15,.15) 55%, rgba(20,18,15,0) 100%);
}
.hero-pano__caption {
  position: absolute;
  top: 140px; right: 48px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .08em;
  color: rgba(247,239,235,.75);
  display: flex; align-items: center; gap: 10px;
  text-transform: uppercase;
}
.hero-pano__caption-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--cream);
  opacity: .8;
}
.hero-pano__content {
  position: relative;
  z-index: 2;
  padding-top: 180px;
  padding-bottom: 96px;
  width: 100%;
}
.hero-pano__copy { max-width: 720px; }
.hero--pano .eyebrow { color: rgba(247,239,235,.7); }
.hero--pano .hero__title { color: var(--cream); }
.hero--pano .hero__title em { color: rgba(247,239,235,.6); }
.hero--pano .hero__lede { color: rgba(247,239,235,.85); }
.hero--pano .hero__meta { color: rgba(247,239,235,.7); }
.hero--pano .hero__meta strong { color: var(--cream); }
.hero--pano .btn--text { color: var(--cream); }
@media (max-width: 900px) {
  .hero--pano { min-height: 88vh; }
  .hero-pano__caption { top: 100px; right: 20px; font-size: 11px; }
  .hero-pano__content { padding-top: 140px; padding-bottom: 64px; }
  .hero-pano__img { object-position: center; }
}

/* ---------- Home hero (legacy split) ---------- */
.hero__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 80px;
  align-items: end;
}
@media (max-width: 1000px) { .hero__grid { grid-template-columns: 1fr; gap: 48px; } }

.hero__title em {
  font-style: italic;
  font-weight: 300;
  letter-spacing: -0.04em;
  color: var(--ink-soft);
}
.hero__lede { margin-top: 32px; max-width: 46ch; }
.hero__ctas { display: flex; gap: 24px; margin-top: 40px; flex-wrap: wrap; align-items: center; }
.hero__meta {
  list-style: none; display: flex; align-items: center; gap: 24px; margin-top: 56px;
  font-size: 13px; color: var(--ink-soft); flex-wrap: wrap;
}
.hero__meta strong { color: var(--ink); font-weight: 500; }

.hero__art {
  position: relative;
  display: flex; flex-direction: column; gap: 20px;
}
.hero__ph { aspect-ratio: 4/5; overflow: hidden; border-radius: 20px; border: 1px solid var(--line); }
.hero__img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero__art-meta {
  display: flex; flex-direction: column; gap: 4px;
  padding-left: 4px;
  font-size: 13px;
  color: var(--ink-soft);
}
.hero__art-meta span:last-child { color: var(--ink); font-weight: 450; }

/* ---------- Marquee ---------- */
.marquee-wrap {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  padding: 28px 0;
}
.marquee { overflow: hidden; }
.marquee__track {
  display: inline-flex; gap: 40px;
  white-space: nowrap;
  animation: scroll 40s linear infinite;
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 400;
  letter-spacing: -0.02em;
}
.marquee__track span:nth-child(even) { color: var(--ink-mute); font-size: .7em; }
.marquee__dot { display: inline-flex; align-items: center; }
.marquee__dot img { height: 0.9em; width: auto; display: block; opacity: .7; }
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Soins list ---------- */
.soins-list { list-style: none; border-top: 1px solid var(--line); }
.soin {
  display: grid;
  grid-template-columns: 120px 1fr 280px;
  gap: 40px;
  padding: 40px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
  transition: background .3s var(--ease);
  position: relative;
}
.soin:hover { background: var(--paper); padding-left: 12px; padding-right: 12px; margin-left: -12px; margin-right: -12px; border-radius: 16px; }
.soin__num {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--ink-mute);
}
.soin__short { color: var(--ink-soft); margin-top: 8px; font-size: 15px; }
.soin__long { margin-top: 20px; max-width: 60ch; color: var(--ink-soft); font-size: 15px; line-height: 1.6; }
.soin__tags { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.soin__tags li {
  padding: 6px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 12px;
  color: var(--ink-soft);
  background: var(--paper);
  text-align: left;
  font-family: var(--font-mono);
  letter-spacing: .05em;
}
@media (max-width: 900px) {
  .soin { grid-template-columns: 60px 1fr; }
  .soin__tags { grid-column: 2; flex-direction: row; flex-wrap: wrap; }
}

/* ---------- About split (dark band) ---------- */
.section--dark {
  background-color: var(--ink);
  background-image: url(assets/bg-blanc.png);
  background-size: 1680px;
  background-position: center;
  color: var(--cream);
}
.section--dark .eyebrow { color: rgba(247,239,235,.6); }
.section--dark .lede { color: rgba(247,239,235,.8); }
.section--dark .btn--ghost { border-color: var(--cream); color: var(--cream); }
.section--dark .btn--ghost:hover { background: var(--cream); color: var(--ink); }

.about-split {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}
.about-split__ph {
  aspect-ratio: 4/5;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
}
.about-split__ph img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about-split__title { margin-top: 20px; }
@media (max-width: 900px) { .about-split { grid-template-columns: 1fr; gap: 48px; } }

/* ---------- For who ---------- */
.for-who {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.for-who__card {
  padding: 40px;
  display: flex; flex-direction: column; gap: 16px;
}
.for-who__card .btn--text { margin-top: auto; align-self: flex-start; }
.corresp-actions { display: flex; gap: 24px; flex-wrap: wrap; margin-top: 8px; }
.tick-list { list-style: none; display: grid; gap: 10px; margin-top: 16px; }
.tick-list li {
  padding-left: 28px;
  position: relative;
  color: var(--ink-soft);
  font-size: 15px;
}
.tick-list li::before {
  content: "";
  position: absolute; left: 0; top: 8px;
  width: 16px; height: 8px;
  background: transparent;
  border-left: 1.3px solid var(--ink);
  border-bottom: 1.3px solid var(--ink);
  transform: rotate(-45deg);
}
.tick-list--sm li { font-size: 14px; padding-left: 22px; }
.tick-list--sm li::before { width: 12px; height: 6px; top: 7px; }
@media (max-width: 800px) { .for-who { grid-template-columns: 1fr; } }

/* ---------- FAQ items ---------- */
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
  list-style: none;
  padding: 28px 0;
  display: grid;
  grid-template-columns: 48px 1fr 24px;
  gap: 24px;
  align-items: center;
  cursor: pointer;
  transition: padding .3s var(--ease);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item__num {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--ink-mute);
}
.faq-item__q {
  font-family: var(--font-display);
  font-size: clamp(18px, 1.6vw, 24px);
  font-weight: 450;
  letter-spacing: -0.015em;
  line-height: 1.25;
}
.faq-item__toggle {
  position: relative; width: 18px; height: 18px;
}
.faq-item__toggle::before, .faq-item__toggle::after {
  content: ""; position: absolute; background: var(--ink);
  transition: transform .25s var(--ease);
}
.faq-item__toggle::before { top: 50%; left: 0; width: 18px; height: 1.3px; margin-top: -.65px; }
.faq-item__toggle::after { left: 50%; top: 0; width: 1.3px; height: 18px; margin-left: -.65px; }
.faq-item[open] .faq-item__toggle::after { transform: scaleY(0); }
.faq-item__a {
  padding: 0 0 32px 72px;
  max-width: 70ch;
  color: var(--ink-soft);
  animation: fadeIn .3s var(--ease);
}
.faq-item__a p { font-size: 16px; line-height: 1.65; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(-4px); } to { opacity: 1; transform: none; } }
@media (max-width: 700px) {
  .faq-item summary { grid-template-columns: 36px 1fr 20px; gap: 16px; }
  .faq-item__a { padding-left: 52px; }
}

.faq-cat { margin-bottom: 48px; }
.faq-cat__label { display: block; margin-bottom: 16px; }

.still-q {
  display: flex; align-items: flex-end; justify-content: space-between; gap: 32px;
  padding: 48px; background: var(--paper); border: 1px solid var(--line); border-radius: 24px;
  flex-wrap: wrap;
}
.still-q__actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ---------- Cabinet gallery ---------- */
.cabinet-gallery {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 20px;
  height: 560px;
}
.cabinet-gallery__a { grid-row: 1 / 3; }
.cabinet-gallery__b { grid-column: 2 / 3; grid-row: 1 / 3; }
.cabinet-gallery__c { grid-column: 3 / 4; grid-row: 1 / 3; }
@media (max-width: 800px) {
  .cabinet-gallery { grid-template-columns: 1fr 1fr; height: auto; }
  .cabinet-gallery__a { grid-row: 1 / 2; grid-column: 1 / 3; aspect-ratio: 16/9; }
  .cabinet-gallery__b, .cabinet-gallery__c { grid-row: 2 / 3; aspect-ratio: 4/5; }
  .cabinet-gallery__b { grid-column: 1 / 2; }
  .cabinet-gallery__c { grid-column: 2 / 3; }
}

/* ---------- Soins page — tabs ---------- */
.soins-tabs {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--line);
  margin-bottom: 56px;
}
.soins-tab {
  padding: 14px 22px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 450;
  color: var(--ink-mute);
  border: 0;
  background: transparent;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  transition: color .2s var(--ease), border-color .2s var(--ease);
  margin-bottom: -1px;
  letter-spacing: -0.005em;
  white-space: nowrap;
}
.soins-tab:hover { color: var(--ink-soft); }
.soins-tab.is-active {
  color: var(--ink);
  border-color: var(--ink);
}
.soins-panels { position: relative; }
.soins-panel { display: none; }
.soins-panel.is-active {
  display: block;
  animation: fadeIn .3s var(--ease);
}
.soins-panel__blocks {
  display: grid;
  gap: 32px;
  margin-top: 40px;
}
.soins-panel__block {
  padding: 32px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 20px;
}
.soins-panel__block h3 { margin-bottom: 12px; }
.soins-panel__block p {
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.65;
  max-width: 70ch;
}
@media (max-width: 700px) {
  .soins-tabs { gap: 0; overflow-x: auto; flex-wrap: nowrap; }
  .soins-tab { padding: 12px 16px; font-size: 14px; }
}

/* ---------- CTA band ---------- */
.cta-band {
  background-color: var(--ink);
  background-image: url(assets/bg-blanc.png);
  background-size: 1680px;
  background-position: center;
  color: var(--cream);
  border-radius: 40px;
  margin: 0 var(--gutter) 48px;
  padding: calc(var(--density) * 120px) 0 !important;
  overflow: hidden;
  position: relative;
}
.cta-band .container { padding: 0; max-width: 900px; }
.cta-band__inner {
  text-align: center;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}
.cta-band__title { margin-bottom: 32px; }
.cta-band__btn {
  background: var(--cream) !important;
  color: var(--ink) !important;
  margin-top: 16px;
}
.cta-band__btn:hover { background: var(--white) !important; }
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(247,239,235,.06), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(247,239,235,.04), transparent 50%);
  pointer-events: none;
}

/* ---------- Page hero (non-home) ---------- */
.page-hero { padding-top: 100px; padding-bottom: 40px; }
.page-hero__title { margin-top: 20px; margin-bottom: 32px; }
.page-hero__lede { max-width: 56ch; }

/* ---------- About page ---------- */
.about-feature {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: start;
}
.about-feature__ph {
  aspect-ratio: 4/5;
  position: sticky;
  top: 120px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--paper);
}
.about-feature__ph img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 900px) {
  .about-feature { grid-template-columns: 1fr; gap: 40px; }
  .about-feature__ph { position: static; }
}

.cv-split {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 40px;
}
.cv-split .eyebrow { position: sticky; top: 120px; }
.cv { list-style: none; border-top: 1px solid var(--line); }
.cv__row {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 32px;
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
}
.cv__date {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--ink-mute);
  padding-top: 8px;
}
@media (max-width: 800px) {
  .cv-split { grid-template-columns: 1fr; gap: 24px; }
  .cv__row { grid-template-columns: 1fr; gap: 8px; }
}

.principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.principle {
  padding: 40px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 24px;
}
.principle__num {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--ink-mute);
  margin-bottom: 48px;
  display: block;
}
.principle h3 { margin-bottom: 16px; }
.principle p { color: var(--ink-soft); font-size: 15px; }
@media (max-width: 800px) { .principles { grid-template-columns: 1fr; } }

/* ---------- Cabinet page ---------- */
.cabinet-hero {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 20px;
  height: 640px;
}
.cabinet-hero__a { height: 100%; }
.cabinet-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.cabinet-hero__grid .ph { aspect-ratio: auto; }
@media (max-width: 900px) {
  .cabinet-hero { grid-template-columns: 1fr; height: auto; }
  .cabinet-hero__a { aspect-ratio: 16/9; }
}

.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.visit-addr {
  margin-top: 24px;
  font-style: normal;
  font-size: 22px;
  font-family: var(--font-display);
  letter-spacing: -0.02em;
  line-height: 1.3;
}
.visit-list { list-style: none; margin-top: 40px; display: grid; gap: 20px; }
.visit-list li { display: grid; grid-template-columns: 160px 1fr; gap: 24px; padding: 12px 0; border-bottom: 1px solid var(--line); }
.visit-list li .eyebrow { padding-top: 3px; }

.map-ph {
  aspect-ratio: 4/3;
  position: relative;
  padding: 0;
  overflow: hidden;
}
.map-svg { width: 100%; height: 100%; position: absolute; inset: 0; }
.map-ph__tag { position: absolute; left: 20px; top: 20px; }
@media (max-width: 900px) { .visit-grid { grid-template-columns: 1fr; gap: 40px; } }

.hours-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
}
.hours-list { list-style: none; border-top: 1px solid var(--line); }
.hours-list li {
  display: flex; justify-content: space-between; padding: 16px 0;
  border-bottom: 1px solid var(--line);
  font-size: 16px;
}
.hours-list li span:first-child { color: var(--ink); font-weight: 450; }
.hours-list li span:last-child { color: var(--ink-soft); font-family: var(--font-mono); font-size: 13px; }
.hours-list--compact li { padding: 10px 0; font-size: 14px; }
@media (max-width: 800px) { .hours-grid { grid-template-columns: 1fr; gap: 32px; } }

.equip-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 48px;
}
.equip-list li { padding: 32px 0; border-top: 1px solid var(--line); }
.equip-list h4 { margin-bottom: 8px; }
.equip-list p { color: var(--ink-soft); font-size: 15px; }
@media (max-width: 700px) { .equip-list { grid-template-columns: 1fr; } }

/* ---------- RDV page ---------- */
.rdv-layout {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 1000px) { .rdv-layout { grid-template-columns: 1fr; gap: 40px; } }

.rdv-form { display: grid; gap: 64px; }
.form-step {
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line);
}
.form-step:last-of-type { border-bottom: 0; padding-bottom: 0; }

.consent {
  display: flex; gap: 12px; align-items: flex-start;
  margin-top: 24px;
  font-size: 13px;
  color: var(--ink-soft);
}
.consent input { accent-color: var(--ink); margin-top: 3px; flex: none; }
.consent a { text-decoration: underline; }

.rdv-form__submit { justify-self: start; padding: 18px 32px; font-size: 16px; }
.rdv-form__note {
  margin-top: 24px;
  padding: 20px;
  background: var(--paper);
  border: 1px dashed var(--line);
  border-radius: 16px;
  font-size: 13px;
  color: var(--ink-soft);
}

.rdv-aside {
  position: sticky; top: 120px;
  display: grid; gap: 20px;
}
.rdv-aside__card {
  padding: 28px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 20px;
}
.rdv-aside__card .eyebrow { display: block; margin-bottom: 16px; }
.delay-list { list-style: none; display: grid; gap: 10px; }
.delay-list li {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 0; border-top: 1px solid var(--line); font-size: 14px;
}
.delay-list li:first-child { border-top: 0; }
.delay-list span { color: var(--ink-soft); }
.delay-list strong { font-weight: 500; }

.rdv-aside__contact {
  padding: 28px;
  background: var(--ink);
  color: var(--cream);
  border-radius: 20px;
}
.rdv-aside__contact .eyebrow { display: block; color: rgba(247,239,235,.6); margin-bottom: 12px; }
.rdv-aside__mail {
  font-family: var(--font-display);
  font-size: 17px;
  letter-spacing: -0.015em;
  text-decoration: underline;
  text-underline-offset: 4px;
  word-break: break-all;
}

.rdv-form__success {
  padding: 64px 48px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 24px;
  text-align: center;
}
.rdv-form__success .eyebrow { color: #7fa06a; }
.rdv-form__success h3 { margin: 12px 0 16px; }

/* ---------- Contact page ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.contact-card {
  padding: 32px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 24px;
  display: flex; flex-direction: column; gap: 14px;
}
.contact-card p { color: var(--ink-soft); font-size: 15px; flex: 1; }
.contact-card .btn { align-self: flex-start; margin-top: 8px; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-main {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-form { display: block; }
.contact-aside {
  display: grid; gap: 28px;
  position: sticky; top: 120px;
}
.contact-line { display: grid; gap: 6px; font-size: 15px; }
.contact-line .eyebrow { margin-bottom: 4px; }
.contact-line a { text-decoration: underline; text-underline-offset: 3px; }
@media (max-width: 900px) {
  .contact-main { grid-template-columns: 1fr; gap: 48px; }
  .contact-aside { position: static; }
}

/* ---------- Legal page ---------- */
.legal-body {
  max-width: 780px;
  margin: 0 auto;
  display: grid;
  gap: 48px;
}
.legal-section h2 { margin-bottom: 16px; }
.legal-section p { color: var(--ink-soft); font-size: 16px; line-height: 1.65; margin-bottom: 14px; }
.legal-section p:last-child { margin-bottom: 0; }
.legal-section ul {
  list-style: none;
  padding: 0;
  margin: 0 0 14px;
  display: grid;
  gap: 8px;
}
.legal-section ul li {
  padding-left: 22px;
  position: relative;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.6;
}
.legal-section ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 6px;
  height: 6px;
  background: var(--ink-mute);
  border-radius: 50%;
}
.legal-section strong { color: var(--ink); font-weight: 500; }
.legal-section a { text-decoration: underline; text-underline-offset: 3px; }
.legal-subhead {
  margin-top: 28px;
  margin-bottom: 8px;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.legal-subhead:first-child { margin-top: 0; }
