:root {
  --off-white: #faf7f2;
  --sand: #efe7dc;
  --beige: #d8c4ae;
  --ink: #5a3828;
  --ink-soft: #704b39;
  --gold: #a9754d;
  --muted: #6b6257;
  --error: #8a4b3a;
  --page-pad: clamp(1.5rem, 6vw, 6rem);
  --section-space: clamp(4rem, 9vw, 7.5rem);
  --max: 75rem;
  color-scheme: light;
  font-synthesis: none;
}

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

[hidden] {
  display: none !important;
}

html {
  overflow-x: clip;
  scroll-behavior: smooth;
  scroll-padding-top: 5.5rem;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--off-white);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body:has(dialog[open]) {
  overflow: hidden;
}

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

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
  text-underline-offset: 0.2em;
}

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

h1,
h2,
h3 {
  font-family: Montserrat, Inter, system-ui, sans-serif;
  letter-spacing: -0.01em;
  text-wrap: balance;
}

h1 {
  margin-bottom: 1.125rem;
  font-size: clamp(2.125rem, 8.5vw, 4rem);
  line-height: 1.15;
}

h2 {
  margin-bottom: 1.75rem;
  font-size: clamp(1.875rem, 6.5vw, 3.25rem);
  line-height: 1.15;
}

h3 {
  line-height: 1.25;
}

p {
  line-height: 1.75;
}

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

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 200;
  padding: 0.75rem 1rem;
  transform: translateY(-160%);
  border-radius: 0.25rem;
  background: var(--off-white);
  color: var(--ink);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  top: max(0.625rem, env(safe-area-inset-top));
  left: 50%;
  z-index: 90;
  display: grid;
  width: min(calc(100% - 1.25rem), var(--max));
  min-height: 3.875rem;
  padding: 0.5rem 0.625rem;
  transform: translate(-50%, calc(-100% - 1.5rem));
  border: 1px solid rgb(216 196 174 / 55%);
  background: rgb(250 247 242 / 91%);
  box-shadow: 0 0.75rem 2.25rem rgb(20 20 20 / 13%);
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.75rem;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  backdrop-filter: blur(14px);
  transition: opacity 260ms ease, transform 360ms cubic-bezier(0.22, 1, 0.36, 1), visibility 260ms;
}

.site-header.is-visible {
  transform: translate(-50%, 0);
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

.site-header__brand {
  display: inline-flex;
  min-width: 2.75rem;
  min-height: 2.75rem;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  text-decoration: none;
}

.site-header__symbol {
  width: 2.75rem;
  height: 2.75rem;
  padding: 0.2rem;
  border-radius: 50%;
  background: var(--off-white);
  object-fit: contain;
}

.site-header__wordmark,
.site-header__nav {
  display: none;
}

.site-header__name {
  display: none;
}

.site-header__menu-toggle {
  display: inline-flex;
  min-height: 2.75rem;
  padding: 0.65rem 0.75rem;
  border: 0;
  background: transparent;
  color: var(--ink);
  align-items: center;
  gap: 0.45rem;
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
}

.site-header__menu-icon,
.site-header__menu-icon::before,
.site-header__menu-icon::after {
  display: block;
  width: 1rem;
  height: 1px;
  background: currentColor;
  transition: transform 220ms ease, opacity 220ms ease;
}

.site-header__menu-icon {
  position: relative;
}

.site-header__menu-icon::before,
.site-header__menu-icon::after {
  position: absolute;
  left: 0;
  content: "";
}

.site-header__menu-icon::before {
  top: -0.3rem;
}

.site-header__menu-icon::after {
  top: 0.3rem;
}

.site-header.menu-open .site-header__menu-icon {
  background: transparent;
}

.site-header.menu-open .site-header__menu-icon::before {
  top: 0;
  transform: rotate(45deg);
}

.site-header.menu-open .site-header__menu-icon::after {
  top: 0;
  transform: rotate(-45deg);
}

.site-header.menu-open .site-header__nav {
  position: absolute;
  top: calc(100% + 0.45rem);
  left: 0;
  display: grid;
  width: 100%;
  padding: 0.5rem;
  border: 1px solid rgb(216 196 174 / 65%);
  background: rgb(250 247 242 / 97%);
  box-shadow: 0 0.9rem 2rem rgb(20 20 20 / 13%);
  gap: 0.15rem;
  backdrop-filter: blur(14px);
}

.site-header.menu-open .site-header__nav a {
  min-height: 2.75rem;
  padding: 0.75rem 1rem;
  text-decoration: none;
}

.site-header.menu-open .site-header__nav a + a {
  border-top: 1px solid rgb(216 196 174 / 42%);
}

.site-header__cta {
  min-height: 2.75rem;
  padding: 0.7rem 1.125rem;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--off-white);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
}

.container,
.narrow,
.split {
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
}

.narrow {
  max-width: 47.5rem;
}

.section {
  padding: var(--section-space) var(--page-pad);
  background: var(--off-white);
}

.section--sand {
  background: var(--sand);
}

.hero {
  position: relative;
  display: flex;
  min-height: 100svh;
  align-items: flex-end;
  overflow: hidden;
  background: var(--beige);
  color: var(--off-white);
}

.hero__brand {
  position: absolute;
  top: max(1rem, env(safe-area-inset-top));
  left: 50%;
  z-index: 2;
  width: clamp(7.5rem, 30vw, 9.25rem);
  translate: -50% 0;
  opacity: 0;
  filter: drop-shadow(0 0.25rem 0.75rem rgb(20 20 20 / 34%));
  animation: hero-item-in 760ms 160ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero__brand img {
  width: 100%;
  height: auto;
}

.hero__image,
.hero__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__image {
  --hero-x: 0%;
  --hero-y: 0%;
  --hero-scale: 1;

  object-fit: cover;
  object-position: 53% 35%;
  transform: translate3d(var(--hero-x), var(--hero-y), 0) scale(var(--hero-scale));
  opacity: 0;
  animation: hero-image-in 1.25s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero__shade {
  background: linear-gradient(to top, rgb(20 20 20 / 88%) 0%, rgb(20 20 20 / 55%) 38%, rgb(20 20 20 / 10%) 72%, transparent 100%);
}

.hero__content {
  position: relative;
  width: 100%;
  max-width: 47rem;
  padding: 1.25rem var(--page-pad) max(1.25rem, env(safe-area-inset-bottom));
}

.hero__content > * {
  opacity: 0;
  animation: hero-item-in 720ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero__content > :nth-child(1) {
  animation-delay: 280ms;
}

.hero__content > :nth-child(2) {
  animation-delay: 380ms;
}

.hero__content > :nth-child(3) {
  animation-delay: 480ms;
}

.hero__content > :nth-child(4) {
  animation-delay: 580ms;
}

.hero__content > :nth-child(5) {
  animation-delay: 680ms;
}

.eyebrow {
  margin-bottom: 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1.6;
  text-transform: uppercase;
}

.eyebrow--light {
  color: var(--sand);
}

.hero__lead {
  max-width: 46ch;
  margin-bottom: 1.25rem;
  color: var(--sand);
  font-size: clamp(1rem, 2vw, 1.0625rem);
  line-height: 1.6;
}

.credential {
  margin-bottom: 1.75rem;
  color: var(--beige);
  font-size: 0.8125rem;
  letter-spacing: 0.08em;
  line-height: 1.6;
}

@media (max-width: 24.99rem) {
  .hero h1 {
    margin-bottom: 0.875rem;
    font-size: clamp(2rem, 8vw, 2.25rem);
  }

  .hero__lead {
    margin-bottom: 1rem;
    font-size: 0.9375rem;
    line-height: 1.5;
  }

  .hero .eyebrow {
    margin-bottom: 0.75rem;
  }
}

.button {
  display: inline-flex;
  width: min(100%, 22.5rem);
  min-height: 3.5rem;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.5rem;
  border: 1px solid var(--ink);
  border-radius: 0;
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.25;
  cursor: pointer;
  transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button--light {
  border-color: var(--off-white);
  background: var(--off-white);
  color: var(--ink);
}

.button--dark {
  background: var(--ink);
  color: var(--off-white);
}

.button:disabled {
  cursor: wait;
  opacity: 0.65;
}

.gold-line {
  display: block;
  width: 3rem;
  height: 1px;
  margin-bottom: 1.75rem;
  background: var(--gold);
}

.split {
  display: grid;
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: center;
}

.split__media {
  width: 100%;
  margin: 0;
  overflow: hidden;
}

.split__media img {
  width: 100%;
  height: auto;
}

.split__content > p,
.authority-copy > p {
  color: var(--ink-soft);
  font-size: 1rem;
}

.quote-inline {
  margin-bottom: 2.5rem;
  color: var(--ink) !important;
  font-style: italic;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem 2rem;
  margin: 0;
  padding: 1.5rem 0 0;
  border-top: 1px solid var(--gold);
  list-style: none;
}

.timeline li {
  display: grid;
  gap: 0.25rem;
}

.timeline strong {
  color: var(--gold);
  font-family: Montserrat, Inter, sans-serif;
  font-size: 1.1875rem;
  font-weight: 600;
}

.timeline span {
  color: var(--ink-soft);
  font-size: 0.78125rem;
  letter-spacing: 0.04em;
  line-height: 1.5;
}

.manifesto {
  display: grid;
  background: var(--ink);
  color: var(--off-white);
}

.manifesto__media {
  position: relative;
  min-height: 26.25rem;
  margin: 0;
  overflow: hidden;
}

.manifesto__media::after {
  position: absolute;
  inset: 0;
  background: rgb(216 196 174 / 18%);
  content: "";
}

.manifesto__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
}

.manifesto__quote {
  display: flex;
  min-width: 0;
  margin: 0;
  padding: var(--section-space) var(--page-pad);
  flex-direction: column;
  justify-content: center;
}

.manifesto__quote p {
  margin-bottom: 2.25rem;
  font-family: Montserrat, Inter, sans-serif;
  font-size: clamp(1.5rem, 5vw, 2.375rem);
  font-weight: 600;
  line-height: 1.35;
}

.manifesto__quote cite {
  color: var(--beige);
  font-size: 0.875rem;
  font-style: normal;
  letter-spacing: 0.14em;
}

.editorial {
  display: grid;
  gap: 0;
  overflow: hidden;
  background: var(--off-white);
}

.editorial__media {
  position: relative;
  min-height: 31rem;
  margin: 0;
  overflow: hidden;
}

.editorial__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.045);
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.editorial.is-visible .editorial__media img {
  transform: scale(1);
}

.editorial__media--full img {
  object-position: center 20%;
}

.editorial__media--portrait img {
  object-position: center 28%;
}

.editorial__copy {
  display: flex;
  min-height: 23rem;
  padding: var(--section-space) var(--page-pad);
  background: var(--sand);
  flex-direction: column;
  justify-content: center;
}

.editorial__copy .eyebrow {
  color: var(--gold);
}

.editorial__copy h2 {
  max-width: 15ch;
  margin-bottom: 0;
  font-size: clamp(1.875rem, 7.2vw, 3.4rem);
}

.procedure-intro {
  display: grid;
  gap: 2rem;
  margin-bottom: clamp(2.5rem, 6vw, 4.5rem);
  align-items: end;
}

.procedure-intro figure {
  margin: 0;
  overflow: hidden;
}

.procedure-intro img {
  width: 100%;
  height: clamp(17.5rem, 82vw, 28.75rem);
  object-fit: cover;
  object-position: center 28%;
}

.section-lead {
  max-width: 52ch;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 1.0625rem;
}

.procedure-grid {
  display: grid;
  margin-inline: calc(var(--page-pad) * -1);
  padding: 0 var(--page-pad) 0.75rem;
  overflow-x: auto;
  grid-auto-columns: minmax(17rem, 82vw);
  grid-auto-flow: column;
  gap: 1rem;
  scroll-padding-inline: var(--page-pad);
  scroll-snap-type: x mandatory;
  scrollbar-color: var(--gold) transparent;
  scrollbar-width: thin;
}

.procedure-grid:focus-visible {
  outline-offset: 0.25rem;
}

.location-grid {
  display: grid;
  gap: 1.25rem;
}

.procedure-card {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 18.5rem;
  padding: 2rem 1.75rem 1.75rem;
  border: 1px solid var(--beige);
  background: var(--off-white);
  flex-direction: column;
  gap: 0.875rem;
  scroll-snap-align: start;
  transition: border-color 240ms ease, box-shadow 240ms ease, transform 240ms ease;
}

.procedure-card::before {
  position: absolute;
  top: -1px;
  left: -1px;
  width: 3.75rem;
  height: 2px;
  background: var(--gold);
  content: "";
}

.procedure-card__number {
  color: var(--gold);
  font-family: Montserrat, Inter, sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
}

.procedure-card h3 {
  margin-bottom: 0;
  font-size: 1.3125rem;
  font-weight: 600;
}

.procedure-card p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 0.9375rem;
  flex: 1;
}

.text-link {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  align-self: flex-start;
  color: var(--gold);
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  text-decoration: none;
}

.evaluation-media img {
  max-height: 42.5rem;
  object-fit: cover;
  object-position: center 15%;
}

.steps {
  display: grid;
  gap: 2rem;
  margin: 0 0 2.5rem;
  padding: 0;
  list-style: none;
}

.steps li {
  display: grid;
  grid-template-columns: 2.125rem minmax(0, 1fr);
  gap: 1.375rem;
  align-items: start;
}

.steps li > span {
  color: var(--gold);
  font-family: Montserrat, Inter, sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1;
}

.steps h3 {
  margin-bottom: 0.375rem;
  font-family: Inter, sans-serif;
  font-size: 1.0625rem;
  font-weight: 500;
}

.steps p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.9375rem;
}

.appointment-note {
  margin: 1.5rem 0 0;
  color: var(--muted) !important;
  font-size: 0.8125rem !important;
  letter-spacing: 0.04em;
}

.faq-list {
  border-bottom: 1px solid var(--beige);
}

.faq-item {
  border-top: 1px solid var(--beige);
}

.faq-item button {
  display: flex;
  width: 100%;
  min-height: 4rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0.25rem;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-family: Montserrat, Inter, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
}

.faq-item button span {
  color: var(--gold);
  font-family: Inter, sans-serif;
  font-size: 1.375rem;
  font-weight: 400;
  transition: transform 220ms ease;
}

.faq-item button[aria-expanded="true"] span {
  transform: rotate(180deg);
}

.faq-answer {
  overflow: hidden;
}

.faq-answer p {
  margin: 0;
  padding: 0 0.25rem 1.5rem;
  color: var(--ink-soft);
  font-size: 0.9375rem;
}

.review-note {
  margin: 1.5rem 0 0;
  color: var(--muted);
  font-size: 0.75rem;
}

.locations {
  padding-top: 0;
}

.location-card {
  display: flex;
  padding: 2.25rem 2rem;
  border: 1px solid var(--beige);
  flex-direction: column;
  gap: 0.75rem;
}

.location-card--featured {
  border-color: var(--gold);
  background: var(--sand);
}

.location-card p,
.location-card h3 {
  margin: 0;
}

.location-card h3 {
  font-size: 1.4375rem;
  font-weight: 600;
}

.location-card > p:not(.location-state, .appointment-note) {
  color: var(--ink-soft);
  font-size: 0.9375rem;
}

.location-state {
  color: var(--gold);
  font-size: 0.6875rem;
  letter-spacing: 0.2em;
  line-height: 1.4;
  text-transform: uppercase;
}

.location-card .appointment-note {
  margin-top: 0;
}

.final-cta {
  display: grid;
  background: var(--ink);
  color: var(--off-white);
}

.final-cta__media {
  position: relative;
  min-height: 27.5rem;
  margin: 0;
  overflow: hidden;
}

.final-cta__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 60% 22%;
}

.final-cta__content {
  display: flex;
  padding: var(--section-space) var(--page-pad);
  flex-direction: column;
  justify-content: center;
}

.final-cta__content p {
  max-width: 48ch;
  margin-bottom: 2.5rem;
  color: var(--beige);
}

.site-footer {
  display: flex;
  padding: 2rem var(--page-pad);
  border-top: 1px solid rgb(216 196 174 / 25%);
  background: var(--ink);
  color: var(--beige);
  flex-direction: column;
  gap: 1rem;
  font-size: 0.75rem;
  line-height: 1.6;
}

.site-footer__logo {
  width: 4.75rem;
  height: 4.75rem;
  padding: 0.375rem;
  border-radius: 50%;
  background: var(--off-white);
  object-fit: contain;
}

.site-footer__identity {
  flex: 1;
}

.site-footer p {
  margin: 0;
}

.site-footer nav {
  display: flex;
  margin-top: 0.75rem;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
}

.site-footer a {
  min-height: 2.75rem;
  align-items: center;
  display: inline-flex;
}

.lead-dialog {
  width: 100%;
  max-width: none;
  max-height: calc(100svh - 3rem);
  margin: auto 0 0;
  padding: 2rem 1.5rem max(1.5rem, env(safe-area-inset-bottom));
  overflow-y: auto;
  border: 0;
  border-radius: 1rem 1rem 0 0;
  background: var(--off-white);
  color: var(--ink);
  box-shadow: 0 0.75rem 2.5rem rgb(20 20 20 / 25%);
}

.lead-dialog::backdrop {
  background: rgb(20 20 20 / 65%);
  backdrop-filter: blur(3px);
}

.lead-dialog[open] {
  animation: sheet-up 280ms ease both;
}

.lead-dialog h2 {
  margin-bottom: 0.5rem;
  padding-right: 2.5rem;
  font-size: 1.5rem;
}

.lead-dialog > p {
  margin-bottom: 1.5rem;
  color: var(--ink-soft);
  font-size: 0.9375rem;
  line-height: 1.6;
}

.dialog-close {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  display: grid;
  width: 2.75rem;
  height: 2.75rem;
  place-items: center;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 1.5rem;
  cursor: pointer;
}

#lead-form {
  display: grid;
  gap: 1rem;
}

.field {
  display: grid;
  gap: 0.375rem;
}

.field label {
  font-size: 0.84375rem;
  font-weight: 500;
}

.field input {
  width: 100%;
  min-height: 3.25rem;
  padding: 0.75rem 0.875rem;
  border: 1px solid var(--beige);
  border-radius: 0.375rem;
  background: #fff;
  color: var(--ink);
  font-size: 1rem;
}

.field input[aria-invalid="true"] {
  border-color: var(--error);
}

.field-help,
.field-error {
  font-size: 0.75rem;
  line-height: 1.5;
}

.field-help {
  color: var(--muted);
}

.field-error {
  min-height: 0;
  color: var(--error);
}

.consent {
  display: grid;
  grid-template-columns: 1.25rem minmax(0, 1fr);
  gap: 0.625rem;
  align-items: start;
  color: var(--ink-soft);
  font-size: 0.78125rem;
  line-height: 1.5;
}

.consent input {
  width: 1.125rem;
  height: 1.125rem;
  margin: 0.125rem 0 0;
  accent-color: var(--ink);
}

.honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.form-submit {
  width: 100%;
  border-radius: 0.375rem;
}

.form-status,
.form-fallback,
.privacy-note {
  margin: 0;
  font-size: 0.75rem;
  line-height: 1.55;
}

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

.form-status[data-state="success"] {
  color: #365a42;
}

.form-fallback {
  color: var(--ink);
  font-weight: 500;
}

.privacy-note {
  color: var(--muted);
}

.turnstile-container {
  min-height: 4.0625rem;
}

.whatsapp-float {
  position: fixed;
  right: max(1rem, env(safe-area-inset-right));
  bottom: max(1rem, env(safe-area-inset-bottom));
  z-index: 80;
  display: grid;
  width: 3.5rem;
  height: 3.5rem;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--off-white);
  box-shadow: 0 0.25rem 1.125rem rgb(20 20 20 / 28%);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
}

.legal-header {
  display: flex;
  padding: 1.25rem var(--page-pad);
  border-bottom: 1px solid var(--beige);
  align-items: flex-start;
  justify-content: space-between;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 0.8125rem;
}

.legal-header p {
  margin: 0;
  color: var(--muted);
}

.legal-page {
  padding: clamp(2.5rem, 7vw, 5rem) var(--page-pad) var(--section-space);
}

.legal-notice,
.legal-content {
  width: 100%;
  max-width: 47.5rem;
  margin-inline: auto;
}

.legal-notice {
  display: grid;
  gap: 0.375rem;
  margin-bottom: 2.5rem;
  padding: 1rem 1.25rem;
  border: 1px solid var(--gold);
  background: var(--sand);
  font-size: 0.8125rem;
  line-height: 1.55;
}

.legal-content h1 {
  color: var(--ink);
}

.legal-content h2 {
  margin-top: 2.5rem;
  margin-bottom: 0.875rem;
  font-size: clamp(1.375rem, 4vw, 1.75rem);
}

.legal-content p,
.legal-content li {
  color: var(--ink-soft);
  font-size: 0.9375rem;
  line-height: 1.75;
}

.legal-content li + li {
  margin-top: 0.5rem;
}

.legal-end {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--beige);
}

.reveal {
  opacity: 0;
  transform: translateY(1rem);
  transition: opacity 750ms ease, transform 750ms ease;
}

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

.reveal .motion-left,
.reveal .motion-right {
  opacity: 0;
  transition: opacity 820ms ease, transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal .motion-left {
  transform: translateX(-1.5rem);
}

.reveal .motion-right {
  transform: translateX(1.5rem);
}

.reveal.is-visible .motion-left,
.reveal.is-visible .motion-right {
  transform: none;
  opacity: 1;
}

.timeline li,
.steps li {
  opacity: 0;
  transform: translateY(0.75rem);
  transition: opacity 500ms ease, transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible .timeline li,
.reveal.is-visible .steps li {
  transform: none;
  opacity: 1;
}

.reveal.is-visible .timeline li:nth-child(2),
.reveal.is-visible .steps li:nth-child(2) {
  transition-delay: 100ms;
}

.reveal.is-visible .timeline li:nth-child(3),
.reveal.is-visible .steps li:nth-child(3) {
  transition-delay: 200ms;
}

.reveal.is-visible .timeline li:nth-child(4) {
  transition-delay: 300ms;
}

@keyframes hero-item-in {
  from { opacity: 0; transform: translateY(1rem); }
  to { opacity: 1; transform: none; }
}

@keyframes hero-image-in {
  from {
    opacity: 0.72;
    transform: translate3d(var(--hero-x), var(--hero-y), 0) scale(calc(var(--hero-scale) + 0.045));
  }
  to {
    opacity: 1;
    transform: translate3d(var(--hero-x), var(--hero-y), 0) scale(var(--hero-scale));
  }
}

@keyframes sheet-up {
  from { opacity: 0; transform: translateY(3rem); }
  to { opacity: 1; transform: none; }
}

@media (hover: hover) {
  .button--light:hover {
    background: transparent;
    color: var(--off-white);
  }

  .button--dark:hover {
    background: transparent;
    color: var(--ink);
  }

  .text-link:hover,
  .site-footer a:hover {
    color: var(--off-white);
    text-decoration: underline;
  }

  .procedure-card .text-link:hover,
  .location-card .text-link:hover {
    color: var(--ink);
  }

  .procedure-card:hover {
    transform: translateY(-0.35rem);
    border-color: var(--gold);
    box-shadow: 0 1.25rem 2.5rem rgb(62 59 86 / 10%);
  }

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

@media (min-width: 50rem) {
  .hero__image {
    --hero-x: 0%;
    --hero-y: 0%;
    --hero-scale: 1;

    object-position: center;
  }

  .hero__shade {
    background:
      linear-gradient(90deg, rgb(20 20 20 / 88%) 0%, rgb(20 20 20 / 67%) 34%, rgb(20 20 20 / 24%) 58%, transparent 78%),
      linear-gradient(to top, rgb(20 20 20 / 72%) 0%, rgb(20 20 20 / 22%) 46%, transparent 76%);
  }

  .hero__brand {
    width: 10rem;
  }

  .hero__content {
    padding-bottom: clamp(4rem, 8vh, 6rem);
  }

  .site-header {
    grid-template-columns: auto minmax(0, 1fr) auto;
    min-height: 4.5rem;
    padding: 0.45rem 0.75rem;
  }

  .site-header__brand {
    width: 9rem;
    justify-content: flex-start;
  }

  .site-header__name {
    display: none;
  }

  .site-header__menu-toggle {
    display: none;
  }

  .site-header__symbol {
    display: none;
  }

  .site-header__wordmark {
    display: block;
    width: 8.5rem;
    height: 3.2rem;
    object-fit: contain;
  }

  .site-header__nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(1rem, 2.5vw, 2.5rem);
  }

  .site-header__nav a {
    min-height: 2.75rem;
    align-items: center;
    display: inline-flex;
    color: var(--ink-soft);
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-decoration: none;
    text-transform: uppercase;
    transition: color 180ms ease;
  }

  .site-header__cta {
    min-width: 7.5rem;
  }

  .split,
  .procedure-intro,
  .manifesto,
  .final-cta {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

  .editorial {
    min-height: 48rem;
    grid-template-columns: minmax(0, 0.95fr) minmax(19rem, 0.8fr) minmax(0, 0.85fr);
    align-items: center;
  }

  .editorial__media {
    min-height: 42rem;
  }

  .editorial__media--full {
    align-self: stretch;
  }

  .editorial__media--portrait {
    min-height: 34rem;
  }

  .editorial__copy {
    position: relative;
    z-index: 2;
    min-height: 31rem;
    margin-inline: -2.25rem;
    padding: 4rem clamp(2rem, 4vw, 4.25rem);
  }

  .editorial__copy h2 {
    font-size: clamp(2rem, 3.2vw, 3.65rem);
  }

  .split--authority {
    grid-template-areas: "copy media";
  }

  .authority-media {
    grid-area: media;
  }

  .authority-copy {
    grid-area: copy;
  }

  .authority-media img {
    max-height: 45rem;
    object-fit: cover;
    object-position: center 15%;
  }

  .manifesto__media,
  .final-cta__media {
    min-height: 42rem;
  }

  .procedure-intro {
    gap: clamp(2rem, 5vw, 4.5rem);
  }

  .procedure-intro img {
    height: clamp(20rem, 40vw, 28.75rem);
  }

  .procedure-grid {
    display: grid;
    margin-inline: 0;
    padding: 0;
    overflow: visible;
    grid-auto-columns: initial;
    grid-auto-flow: initial;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
  }

  .location-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .final-cta__media {
    grid-column: 2;
  }

  .final-cta__content {
    grid-column: 1;
    grid-row: 1;
  }

  .site-footer {
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
  }

  .lead-dialog {
    width: min(calc(100% - 2rem), 27.5rem);
    max-width: 27.5rem;
    max-height: calc(100svh - 2rem);
    margin: auto;
    padding: 2.25rem;
    border-radius: 0.625rem;
  }

  .legal-header {
    align-items: center;
    flex-direction: row;
  }

  .site-footer {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
  }
}

@media (min-width: 68.75rem) {
  .procedure-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .reveal .motion-left,
  .reveal .motion-right,
  .timeline li,
  .steps li {
    transform: none;
    opacity: 1;
  }
}
