:root {
  --ink: #24211e;
  --muted: #625d57;
  --red: #b80f13;
  --red-bright: #cf1418;
  --red-dark: #8f080c;
  --cta-pastel: #ead2cf;
  --cta-pastel-deep: #dfbfbc;
  --cta-ink: #6f3a3c;
  --gold: #bd8a2a;
  --paper: #fbf8f2;
  --paper-deep: #f5eee4;
  --line: rgba(177, 125, 36, 0.48);
  --header-bg: rgba(251, 248, 242, 0.84);
  --header-bg-solid: rgba(251, 248, 242, 0.96);
  --header-shadow: rgba(62, 42, 26, 0.06);
  --mobile-menu-bg: rgba(251, 248, 242, 0.98);
  --badge-border: rgba(111, 58, 60, 0.24);
  --badge-text: rgba(111, 58, 60, 0.86);
  --badge-bg: rgba(234, 210, 207, 0.28);
  --badge-icon: #bd8586;
  --theme-control: rgba(255, 255, 255, 0.72);
  --theme-control-shadow: rgba(62, 42, 26, 0.12);
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --serif: Iowan Old Style, Baskerville, "Times New Roman", serif;
}

@property --ink {
  syntax: "<color>";
  inherits: true;
  initial-value: #24211e;
}

@property --muted {
  syntax: "<color>";
  inherits: true;
  initial-value: #625d57;
}

@property --red {
  syntax: "<color>";
  inherits: true;
  initial-value: #b80f13;
}

@property --red-bright {
  syntax: "<color>";
  inherits: true;
  initial-value: #cf1418;
}

@property --red-dark {
  syntax: "<color>";
  inherits: true;
  initial-value: #8f080c;
}

@property --gold {
  syntax: "<color>";
  inherits: true;
  initial-value: #bd8a2a;
}

@property --paper {
  syntax: "<color>";
  inherits: true;
  initial-value: #fbf8f2;
}

@property --paper-deep {
  syntax: "<color>";
  inherits: true;
  initial-value: #f5eee4;
}

@property --line {
  syntax: "<color>";
  inherits: true;
  initial-value: rgba(177, 125, 36, 0.48);
}

@property --cta-pastel {
  syntax: "<color>";
  inherits: true;
  initial-value: #ead2cf;
}

@property --cta-pastel-deep {
  syntax: "<color>";
  inherits: true;
  initial-value: #dfbfbc;
}

@property --cta-ink {
  syntax: "<color>";
  inherits: true;
  initial-value: #6f3a3c;
}

@property --header-bg {
  syntax: "<color>";
  inherits: true;
  initial-value: rgba(251, 248, 242, 0.84);
}

@property --header-bg-solid {
  syntax: "<color>";
  inherits: true;
  initial-value: rgba(251, 248, 242, 0.96);
}

@property --header-shadow {
  syntax: "<color>";
  inherits: true;
  initial-value: rgba(62, 42, 26, 0.06);
}

@property --mobile-menu-bg {
  syntax: "<color>";
  inherits: true;
  initial-value: rgba(251, 248, 242, 0.98);
}

@property --badge-border {
  syntax: "<color>";
  inherits: true;
  initial-value: rgba(111, 58, 60, 0.24);
}

@property --badge-text {
  syntax: "<color>";
  inherits: true;
  initial-value: rgba(111, 58, 60, 0.86);
}

@property --badge-bg {
  syntax: "<color>";
  inherits: true;
  initial-value: rgba(234, 210, 207, 0.28);
}

@property --badge-icon {
  syntax: "<color>";
  inherits: true;
  initial-value: #bd8586;
}

@property --theme-control {
  syntax: "<color>";
  inherits: true;
  initial-value: rgba(255, 255, 255, 0.72);
}

@property --theme-control-shadow {
  syntax: "<color>";
  inherits: true;
  initial-value: rgba(62, 42, 26, 0.12);
}

html[data-theme="dark"] {
  color-scheme: dark;
  --ink: #eee9e2;
  --muted: #b9b1a7;
  --red: #d98b8d;
  --red-bright: #d69596;
  --red-dark: #c97c7e;
  --cta-pastel: #654849;
  --cta-pastel-deep: #51393b;
  --cta-ink: #f5ece8;
  --gold: #c7a15f;
  --paper: #1d1b1a;
  --paper-deep: #282522;
  --line: rgba(199, 161, 95, 0.3);
  --header-bg: rgba(29, 27, 26, 0.86);
  --header-bg-solid: rgba(29, 27, 26, 0.97);
  --header-shadow: rgba(0, 0, 0, 0.22);
  --mobile-menu-bg: rgba(29, 27, 26, 0.98);
  --badge-border: rgba(218, 175, 175, 0.22);
  --badge-text: rgba(238, 218, 214, 0.88);
  --badge-bg: rgba(154, 102, 103, 0.12);
  --badge-icon: #876062;
  --theme-control: rgba(45, 42, 39, 0.94);
  --theme-control-shadow: rgba(0, 0, 0, 0.28);
}

html.is-theme-transitioning {
  transition-property:
    --ink,
    --muted,
    --red,
    --red-bright,
    --red-dark,
    --gold,
    --paper,
    --paper-deep,
    --line,
    --cta-pastel,
    --cta-pastel-deep,
    --cta-ink,
    --header-bg,
    --header-bg-solid,
    --header-shadow,
    --mobile-menu-bg,
    --badge-border,
    --badge-text,
    --badge-bg,
    --badge-icon,
    --theme-control,
    --theme-control-shadow;
  transition-duration: 650ms;
  transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

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

button {
  color: inherit;
  font: inherit;
}

.shell {
  width: min(calc(100% - 80px), 1400px);
  margin-inline: auto;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--header-bg);
  backdrop-filter: blur(18px);
  transition: background 260ms ease, box-shadow 260ms ease;
}

.site-header.is-scrolled,
.site-header.is-menu-open {
  background: var(--header-bg-solid);
  box-shadow: 0 10px 34px var(--header-shadow);
}

.header-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  min-height: 104px;
  border-bottom: 1px solid var(--line);
}

.header-inner::after {
  position: absolute;
  bottom: -4px;
  left: 50%;
  width: 7px;
  height: 7px;
  background: var(--gold);
  content: "";
  transform: translateX(-50%) rotate(45deg);
}

.desktop-nav {
  display: flex;
  grid-column: 2;
  justify-content: center;
  gap: clamp(18px, 2vw, 34px);
  font-size: 14px;
  font-weight: 500;
}

.desktop-nav a {
  position: relative;
  padding-block: 15px;
}

.desktop-nav a::after {
  position: absolute;
  bottom: 8px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--red);
  content: "";
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 220ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
}

.menu-toggle,
.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: var(--paper);
}

.hero::before {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.16'/%3E%3C/svg%3E");
  content: "";
  opacity: 0.018;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 100svh;
  flex-direction: column;
  padding-top: 132px;
  padding-bottom: 24px;
}

.hero-main {
  display: flex;
  width: 100%;
  max-width: 990px;
  flex: 1 0 auto;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  padding: 34px 0 28px;
  text-align: center;
}

.eyebrow {
  margin: 0 0 28px;
  color: var(--red);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.29em;
  line-height: 1.5;
  text-transform: uppercase;
}

h1 {
  max-width: 970px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(48px, 4.6vw, 72px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.ornament-line {
  position: relative;
  width: min(470px, 72vw);
  height: 1px;
  margin-top: 30px;
  background: var(--line);
}

.ornament-line::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  background: var(--gold);
  content: "";
  transform: translate(-50%, -50%) rotate(45deg);
}

.hero-lead {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.5;
}

.hero-actions {
  display: grid;
  width: min(390px, 100%);
  gap: 12px;
  margin-top: 31px;
}

.primary-button {
  display: grid;
  min-height: 59px;
  grid-template-columns: 28px 1fr 28px;
  align-items: center;
  padding: 14px 21px;
  border: 1px solid rgba(151, 83, 85, 0.18);
  border-radius: 7px;
  color: var(--cta-ink);
  background: linear-gradient(135deg, var(--cta-pastel), var(--cta-pastel-deep));
  box-shadow: 0 12px 26px rgba(111, 58, 60, 0.1);
  font-size: 16px;
  font-weight: 550;
  transform: translateZ(0);
  transition: transform 240ms cubic-bezier(0.2, 0.75, 0.2, 1), box-shadow 240ms ease, filter 240ms ease;
}

.primary-button span:first-child {
  grid-column: 2;
}

.button-arrow {
  grid-column: 3;
  font-size: 27px;
  font-weight: 300;
  line-height: 1;
  transition: transform 240ms ease;
}

.primary-button:hover,
.primary-button:focus-visible {
  filter: saturate(1.04);
  outline: none;
  box-shadow: 0 17px 34px rgba(111, 58, 60, 0.16);
  transform: translateY(-3px) scale(1.045);
}

.primary-button:hover .button-arrow,
.primary-button:focus-visible .button-arrow {
  transform: translateX(5px);
}

.primary-button:active {
  transform: translateY(0) scale(0.99);
}

.consultation-badge {
  display: flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 11px;
  margin: 0;
  padding: 12px 18px;
  border: 1px solid var(--badge-border);
  border-radius: 7px;
  color: var(--badge-text);
  background: var(--badge-bg);
  font-size: 15px;
}

.consultation-icon {
  display: grid;
  flex: 0 0 25px;
  width: 25px;
  height: 25px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--badge-icon);
  font-size: 12px;
}

.hero-footer {
  width: min(760px, 100%);
  margin: 0 auto;
}

.qualities {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  list-style: none;
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.35;
  text-align: center;
}

.qualities li {
  position: relative;
  padding: 19px 28px;
}

.qualities li + li::before {
  position: absolute;
  top: 10px;
  bottom: 10px;
  left: 0;
  width: 1px;
  background: var(--line);
  content: "";
}

.spanish-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 15px 0 0;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 17px;
}

.theme-toggle {
  position: fixed;
  z-index: 70;
  right: 18px;
  bottom: 18px;
  display: flex;
  min-height: 38px;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: var(--theme-control);
  box-shadow: 0 7px 22px var(--theme-control-shadow);
  backdrop-filter: blur(12px);
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  transition: none;
}

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

.theme-toggle-icon {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 400;
}

.section-anchor {
  height: 1px;
}

.journey {
  position: relative;
  min-height: auto;
  scroll-margin-top: 104px;
  overflow: hidden;
  background: var(--paper);
}

.journey::before {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.16'/%3E%3C/svg%3E");
  content: "";
  opacity: 0.016;
  pointer-events: none;
}

.journey-inner {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: auto;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: 145px;
  padding-bottom: 55px;
}

.floral-divider {
  width: clamp(280px, 24vw, 360px);
  margin: -35px auto 28px;
  opacity: 0.88;
  pointer-events: none;
  transform: translateY(-52px);
}

.floral-divider img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 10px 14px rgba(91, 46, 31, 0.08));
}

.journey-heading {
  text-align: center;
}

.journey-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin: 0 0 24px;
  color: var(--red);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.31em;
  line-height: 1.5;
  text-transform: uppercase;
}

.journey-eyebrow::before,
.journey-eyebrow::after {
  width: 7px;
  height: 7px;
  background: var(--gold);
  content: "";
  transform: rotate(45deg);
}

.journey h2 {
  max-width: 970px;
  margin: 0 auto;
  font-family: var(--serif);
  font-size: clamp(45px, 4vw, 64px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.journey-heading-line {
  position: relative;
  width: min(420px, 70vw);
  height: 1px;
  margin: 27px auto 0;
  background: var(--line);
}

.journey-heading-line::after,
.stage-heading-line::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  background: var(--gold);
  content: "";
  transform: translate(-50%, -50%) rotate(45deg);
}

.journey-lead {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.5;
}

.journey-grid {
  display: grid;
  width: min(1180px, 100%);
  grid-template-columns: repeat(3, 1fr);
  margin: 44px auto 0;
}

.journey-stage {
  position: relative;
  min-width: 0;
  padding: 16px clamp(28px, 3.2vw, 52px) 24px;
  text-align: center;
}

.journey-stage + .journey-stage::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 1px;
  background: var(--line);
  content: "";
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 700ms cubic-bezier(0.2, 0.75, 0.2, 1) calc(var(--reveal-delay, 0ms) + 170ms);
}

.journey-stage.is-visible::before {
  transform: scaleY(1);
}

.journey-stage h3 {
  display: flex;
  min-height: 66px;
  align-items: center;
  justify-content: center;
  gap: 13px;
  margin: 0;
  color: var(--red-dark);
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.15;
}

.stage-number {
  color: var(--gold);
  font-size: 51px;
  line-height: 1;
}

.stage-dot {
  color: var(--gold);
  font-size: 17px;
}

.stage-heading-line {
  position: relative;
  width: min(235px, 90%);
  height: 1px;
  margin: 13px auto 0;
  background: var(--line);
}

.journey-stage ul {
  display: grid;
  gap: 0;
  margin: 25px 0 0;
  padding: 0;
  list-style: none;
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.35;
}

.journey-stage li {
  position: relative;
  padding: 0 3px;
}

.journey-stage li + li {
  margin-top: 22px;
  padding-top: 21px;
}

.journey-stage li + li::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: 30px;
  height: 1px;
  background: var(--line);
  content: "";
  transform: translateX(-50%);
}

.journey-stage strong {
  font-weight: 400;
}

.journey-stage li span {
  color: var(--gold);
}

.journey-documents {
  position: relative;
  width: min(1080px, 100%);
  margin: 27px auto 0;
  padding-top: 25px;
  border-top: 1px solid var(--line);
  color: var(--red-dark);
  font-family: var(--serif);
  font-size: 19px;
  text-align: center;
}

.journey-documents::before {
  position: absolute;
  top: -4px;
  left: 50%;
  width: 7px;
  height: 7px;
  background: var(--gold);
  content: "";
  transform: translateX(-50%) rotate(45deg);
}

.reviews {
  position: relative;
  scroll-margin-top: 104px;
  overflow: hidden;
  background: var(--paper);
}

.reviews::before {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.16'/%3E%3C/svg%3E");
  content: "";
  opacity: 0.016;
  pointer-events: none;
}

.reviews-inner {
  position: relative;
  z-index: 1;
  padding-top: 108px;
  padding-bottom: 108px;
}

.reviews-heading {
  text-align: center;
}

.reviews-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin: 0 0 22px;
  color: var(--red);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.3em;
  line-height: 1.5;
  text-transform: uppercase;
}

.reviews-eyebrow::before,
.reviews-eyebrow::after {
  width: 7px;
  height: 7px;
  background: var(--gold);
  content: "";
  transform: rotate(45deg);
}

.reviews h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(45px, 4vw, 64px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.reviews-heading-line {
  position: relative;
  width: min(390px, 68vw);
  height: 1px;
  margin: 27px auto 0;
  background: var(--line);
}

.reviews-heading-line::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  background: var(--gold);
  content: "";
  transform: translate(-50%, -50%) rotate(45deg);
}

.reviews-lead {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

.reviews-grid {
  display: grid;
  width: min(1180px, 100%);
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 48px auto 0;
}

.review-item {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 29px 30px 27px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: color-mix(in srgb, var(--paper) 95%, var(--ink) 5%);
  box-shadow: 0 12px 31px rgba(62, 42, 26, 0.04);
}

.review-category {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0;
  color: var(--red-dark);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.review-category span {
  color: var(--gold);
  font-size: 12px;
}

.review-item blockquote {
  flex: 1;
  margin: 21px 0 27px;
  color: color-mix(in srgb, var(--muted) 74%, var(--ink) 26%);
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.58;
}

.review-item footer {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.review-item cite {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 18px;
  font-style: normal;
}

.review-item time {
  color: var(--muted);
  font-size: 11px;
  white-space: nowrap;
}

.reviews-card {
  display: grid;
  width: min(760px, 100%);
  justify-items: center;
  gap: 21px;
  margin: 22px auto 0;
  padding: 32px 40px 29px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: color-mix(in srgb, var(--paper) 95%, var(--ink) 5%);
  box-shadow: 0 14px 36px rgba(62, 42, 26, 0.045);
  text-align: center;
}

.reviews-symbol {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--gold);
  font-size: 15px;
}

.reviews-card p {
  max-width: 610px;
  margin: 0;
  color: color-mix(in srgb, var(--muted) 78%, var(--ink) 22%);
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.5;
}

.reviews-link {
  display: grid;
  width: min(390px, 100%);
  min-height: 58px;
  grid-template-columns: 28px 1fr 28px;
  align-items: center;
  padding: 14px 20px;
  border: 1px solid rgba(151, 83, 85, 0.18);
  border-radius: 7px;
  color: var(--cta-ink);
  background: linear-gradient(135deg, var(--cta-pastel), var(--cta-pastel-deep));
  box-shadow: 0 10px 24px rgba(111, 58, 60, 0.09);
  font-size: 15px;
  font-weight: 600;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.reviews-link span:first-child {
  grid-column: 2;
}

.reviews-link-arrow {
  grid-column: 3;
  font-size: 20px;
  line-height: 1;
}

.reviews-link:hover,
.reviews-link:focus-visible {
  outline: none;
  box-shadow: 0 15px 31px rgba(111, 58, 60, 0.15);
  transform: translateY(-2px);
}

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

.reviews-card small {
  color: var(--muted);
  font-size: 12px;
}

.faq {
  position: relative;
  scroll-margin-top: 104px;
  overflow: hidden;
  background: var(--paper);
}

.faq::before {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.16'/%3E%3C/svg%3E");
  content: "";
  opacity: 0.016;
  pointer-events: none;
}

.faq-inner {
  position: relative;
  z-index: 1;
  padding-top: 42px;
  padding-bottom: 120px;
}

.faq-section-rose {
  width: clamp(155px, 15vw, 210px);
  margin: 0 auto 22px;
  opacity: 0.86;
  pointer-events: none;
}

.faq-section-rose img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 8px 12px rgba(91, 46, 31, 0.07));
}

.faq-heading {
  text-align: center;
}

.faq-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin: 0 0 22px;
  color: var(--red);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.3em;
  line-height: 1.5;
  text-transform: uppercase;
}

.faq-eyebrow::before,
.faq-eyebrow::after {
  width: 7px;
  height: 7px;
  background: var(--gold);
  content: "";
  transform: rotate(45deg);
}

.faq h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(45px, 4vw, 64px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.faq-heading-line {
  position: relative;
  width: min(360px, 68vw);
  height: 1px;
  margin: 27px auto 0;
  background: var(--line);
}

.faq-heading-line::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  background: var(--gold);
  content: "";
  transform: translate(-50%, -50%) rotate(45deg);
}

.faq-lead {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.5;
}

.faq-list {
  width: min(900px, 100%);
  margin: 58px auto 0;
}

.faq-item {
  position: relative;
  contain: layout;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: color-mix(in srgb, var(--paper) 95%, var(--ink) 5%);
  box-shadow: 0 10px 30px rgba(62, 42, 26, 0.035);
}

.faq-item + .faq-item {
  margin-top: 14px;
}

.faq-item summary {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 29px 24px 34px;
  cursor: pointer;
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.35;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::marker {
  content: "";
}

.faq-item summary:focus-visible {
  border-radius: 9px;
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.faq-toggle {
  display: grid;
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--red-dark);
  font-family: var(--sans);
  font-size: 23px;
  font-weight: 300;
  line-height: 1;
  transition: transform 180ms ease, background-color 180ms ease;
}

.faq-item[open] .faq-toggle {
  background: color-mix(in srgb, var(--paper) 84%, var(--red) 16%);
  transform: rotate(45deg);
}

.faq-answer {
  margin: 0 30px;
  padding: 30px 2px 35px;
  border-top: 1px solid var(--line);
  color: color-mix(in srgb, var(--muted) 82%, var(--ink) 18%);
  font-size: 16px;
  line-height: 1.85;
  will-change: opacity, transform;
}

.faq-item[open] .faq-answer {
  animation: faq-answer-enter 340ms cubic-bezier(0.2, 0.78, 0.2, 1) both;
}

@keyframes faq-answer-enter {
  from {
    opacity: 0;
    transform: translate3d(0, -9px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.faq-answer p {
  margin: 0;
}

.faq-answer p + h3,
.faq-answer h3 + p {
  margin-top: 20px;
}

.faq-answer h3 {
  margin: 26px 0 0;
  color: var(--red-dark);
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 400;
}

.reveal-on-scroll {
  --reveal-delay: 0ms;
  opacity: 1;
  transform: none;
}

.reveal-delay-80 {
  --reveal-delay: 80ms;
}

.reveal-delay-100 {
  --reveal-delay: 100ms;
}

.reveal-delay-120 {
  --reveal-delay: 120ms;
}

.reveal-delay-160 {
  --reveal-delay: 160ms;
}

.reveal-delay-220 {
  --reveal-delay: 220ms;
}

.reveal-delay-240 {
  --reveal-delay: 240ms;
}

.reveal-delay-340 {
  --reveal-delay: 340ms;
}

.reveal-delay-430 {
  --reveal-delay: 430ms;
}

.js .reveal-on-scroll {
  opacity: 0;
  filter: blur(3px);
  transform: translateY(22px);
  transition:
    opacity 620ms cubic-bezier(0.2, 0.75, 0.2, 1) var(--reveal-delay, 0ms),
    transform 620ms cubic-bezier(0.2, 0.75, 0.2, 1) var(--reveal-delay, 0ms),
    filter 620ms ease var(--reveal-delay, 0ms);
}

.js .reveal-on-scroll.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

.entrance-header {
  opacity: 0;
  transform: translateY(-12px);
  animation: header-enter 540ms cubic-bezier(0.2, 0.75, 0.2, 1) 40ms forwards;
}

.entrance {
  opacity: 0;
  transform: translateY(18px);
  filter: blur(4px);
  animation: content-enter 590ms cubic-bezier(0.2, 0.75, 0.2, 1) forwards;
}

.entrance-1 { animation-delay: 220ms; }
.entrance-2 { animation-delay: 340ms; }
.entrance-3 { animation-delay: 610ms; }
.entrance-4 { animation-delay: 750ms; }
.entrance-5 { animation-delay: 940ms; }
.entrance-6 { animation-delay: 1080ms; }

.entrance-line {
  opacity: 0;
  transform: scaleX(0);
  animation: line-enter 520ms cubic-bezier(0.2, 0.75, 0.2, 1) 500ms forwards;
}

@keyframes header-enter {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes content-enter {
  to { opacity: 1; transform: translateY(0); filter: blur(0); }
}

@keyframes line-enter {
  to { opacity: 1; transform: scaleX(1); }
}

@media (max-width: 900px) {
  .shell {
    width: min(calc(100% - 36px), 720px);
  }

  .header-inner {
    grid-template-columns: 1fr auto;
    min-height: 74px;
  }

  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    position: relative;
    z-index: 3;
    display: grid;
    grid-column: 2;
    width: 43px;
    height: 43px;
    padding: 0;
    place-items: center;
    border: 0;
    background: transparent;
    cursor: pointer;
  }

  .menu-toggle span {
    position: absolute;
    width: 21px;
    height: 1.5px;
    border-radius: 2px;
    background: var(--ink);
    transition: transform 220ms ease;
  }

  .menu-toggle span:first-child { transform: translateY(-4px); }
  .menu-toggle span:last-child { transform: translateY(4px); }
  .menu-toggle[aria-expanded="true"] span:first-child { transform: rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:last-child { transform: rotate(-45deg); }

  .mobile-menu {
    position: fixed;
    z-index: 2;
    inset: 74px 0 auto;
    display: grid;
    max-height: 0;
    overflow: hidden;
    padding-inline: 18px;
    background: var(--mobile-menu-bg);
    opacity: 0;
    transition: max-height 320ms ease, opacity 220ms ease, padding 320ms ease;
  }

  .mobile-menu.is-open {
    max-height: 480px;
    padding-block: 14px 23px;
    border-bottom: 1px solid var(--line);
    opacity: 1;
  }

  .mobile-menu a {
    padding: 13px 10px;
    border-bottom: 1px solid rgba(177, 125, 36, 0.24);
    font-family: var(--serif);
    font-size: 23px;
  }

  .mobile-menu .mobile-menu-cta {
    margin-top: 13px;
    border: 0;
    border-radius: 7px;
    color: var(--cta-ink);
    background: linear-gradient(135deg, var(--cta-pastel), var(--cta-pastel-deep));
    font-family: var(--sans);
    font-size: 14px;
    font-weight: 600;
    text-align: center;
  }

  .hero-inner {
    padding-top: 94px;
    padding-bottom: 24px;
  }

  .hero-main {
    padding: 38px 0 34px;
  }

  .eyebrow {
    margin-bottom: 22px;
    font-size: 10px;
  }

  h1 {
    font-size: clamp(42px, 7.2vw, 59px);
  }

  .journey {
    scroll-margin-top: 74px;
  }

  .journey-inner {
    justify-content: flex-start;
    padding-top: 118px;
    padding-bottom: 50px;
  }

  .floral-divider {
    width: 270px;
    margin-top: 0;
    margin-bottom: 25px;
    transform: none;
  }

  .journey h2 {
    max-width: 720px;
    font-size: clamp(41px, 7vw, 56px);
  }

  .journey-grid {
    position: relative;
    width: min(100%, 580px);
    grid-template-columns: 1fr;
    margin-top: 42px;
    padding-left: 18px;
  }

  .journey-grid::before {
    position: absolute;
    top: 19px;
    bottom: 21px;
    left: 4px;
    width: 1px;
    background: var(--line);
    content: "";
  }

  .journey-stage {
    padding: 19px 10px 30px 30px;
    text-align: left;
  }

  .journey-stage::after {
    position: absolute;
    top: 47px;
    left: -18px;
    width: 8px;
    height: 8px;
    background: var(--gold);
    content: "";
    transform: rotate(45deg);
  }

  .journey-stage + .journey-stage::before {
    inset: 0 0 auto 30px;
    width: auto;
    height: 1px;
    transform: scaleX(0);
    transform-origin: left;
  }

  .journey-stage.is-visible::before {
    transform: scaleX(1);
  }

  .journey-stage h3 {
    min-height: auto;
    justify-content: flex-start;
  }

  .stage-heading-line {
    width: 100%;
    margin-top: 17px;
  }

  .journey-stage ul {
    margin-top: 23px;
    font-size: 17px;
  }

  .journey-stage li + li::before {
    left: 0;
    transform: none;
  }

  .journey-documents {
    width: min(100%, 580px);
    margin-top: 16px;
  }

  .faq {
    scroll-margin-top: 74px;
  }

  .reviews {
    scroll-margin-top: 74px;
  }

  .reviews-inner {
    padding-top: 88px;
    padding-bottom: 88px;
  }

  .reviews-grid {
    width: min(100%, 700px);
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .faq-inner {
    padding-top: 36px;
    padding-bottom: 90px;
  }

  .faq-list {
    width: min(100%, 700px);
  }
}

@media (max-width: 560px) {
  .shell {
    width: calc(100% - 32px);
  }

  .theme-toggle {
    right: 12px;
    bottom: 12px;
  }

  .header-inner {
    min-height: 68px;
    border-bottom: 0;
  }

  .header-inner::after {
    display: none;
  }

  .mobile-menu {
    inset-block-start: 68px;
  }

  .hero-inner {
    min-height: 100svh;
    padding-top: 78px;
    padding-bottom: 20px;
  }

  .hero-main {
    justify-content: flex-start;
    padding: 26px 0 31px;
  }

  .eyebrow {
    max-width: 300px;
    margin-bottom: 20px;
    font-size: 9px;
    letter-spacing: 0.26em;
  }

  h1 {
    max-width: 410px;
    font-size: clamp(35px, 10.2vw, 47px);
    line-height: 1.06;
  }

  .desktop-break {
    display: none;
  }

  .ornament-line {
    margin-top: 24px;
  }

  .hero-lead {
    max-width: 340px;
    margin-top: 18px;
    font-size: 15px;
  }

  .hero-actions {
    width: 100%;
    margin-top: 25px;
  }

  .primary-button {
    min-height: 56px;
    font-size: 14px;
  }

  .consultation-badge {
    min-height: 51px;
    padding-inline: 11px;
    font-size: 13px;
  }

  .qualities {
    grid-template-columns: 1fr;
    font-size: 17px;
  }

  .qualities li {
    padding: 15px 18px;
  }

  .qualities li + li::before {
    inset: 0 0 auto;
    width: auto;
    height: 1px;
  }

  .spanish-note {
    margin-top: 14px;
    font-size: 15px;
  }

  .journey {
    scroll-margin-top: 68px;
  }

  .journey-inner {
    padding-top: 62px;
    padding-bottom: 42px;
  }

  .floral-divider {
    display: flex;
    width: 100%;
    align-self: center;
    justify-content: center;
    margin-inline: 0;
    margin-bottom: 23px;
  }

  .floral-divider img {
    width: min(230px, 78vw);
  }

  .journey-eyebrow {
    gap: 13px;
    margin-bottom: 19px;
    font-size: 9px;
    letter-spacing: 0.27em;
  }

  .journey h2 {
    font-size: clamp(34px, 9.5vw, 44px);
    line-height: 1.06;
  }

  .journey-heading-line {
    margin-top: 23px;
  }

  .journey-lead {
    max-width: 340px;
    margin: 17px auto 0;
    font-size: 15px;
  }

  .journey-grid {
    margin-top: 30px;
  }

  .journey-stage {
    padding-right: 0;
  }

  .journey-stage h3 {
    gap: 10px;
    font-size: 20px;
  }

  .stage-number {
    font-size: 43px;
  }

  .journey-stage ul {
    font-size: 16px;
  }

  .journey-documents {
    padding-top: 21px;
    font-size: 17px;
  }

  .faq {
    scroll-margin-top: 68px;
  }

  .reviews {
    scroll-margin-top: 68px;
  }

  .reviews-inner {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .reviews-eyebrow {
    gap: 12px;
    margin-bottom: 18px;
    font-size: 9px;
    letter-spacing: 0.25em;
  }

  .reviews h2 {
    font-size: clamp(37px, 10.5vw, 47px);
  }

  .reviews-heading-line {
    margin-top: 22px;
  }

  .reviews-lead {
    max-width: 330px;
    margin: 17px auto 0;
    font-size: 15px;
  }

  .reviews-card {
    gap: 18px;
    margin-top: 16px;
    padding: 30px 20px 27px;
  }

  .reviews-grid {
    gap: 12px;
    margin-top: 38px;
  }

  .review-item {
    padding: 24px 22px 22px;
  }

  .review-item blockquote {
    margin: 18px 0 22px;
    font-size: 17px;
    line-height: 1.58;
  }

  .review-item footer {
    gap: 10px;
    padding-top: 16px;
  }

  .review-item cite {
    font-size: 17px;
  }

  .reviews-card p {
    font-size: 19px;
    line-height: 1.5;
  }

  .reviews-link {
    min-height: 55px;
    padding-inline: 14px;
    font-size: 14px;
  }

  .faq-inner {
    padding-top: 30px;
    padding-bottom: 70px;
  }

  .faq-section-rose {
    display: flex;
    width: 100%;
    justify-content: center;
    margin-inline: 0;
    margin-bottom: 18px;
  }

  .faq-section-rose img {
    width: min(155px, 52vw);
  }

  .faq-eyebrow {
    gap: 12px;
    margin-bottom: 18px;
    font-size: 9px;
    letter-spacing: 0.25em;
  }

  .faq h2 {
    font-size: clamp(37px, 10.5vw, 47px);
  }

  .faq-heading-line {
    margin-top: 22px;
  }

  .faq-lead {
    max-width: 330px;
    margin: 17px auto 0;
    font-size: 15px;
  }

  .faq-list {
    margin-top: 45px;
  }

  .faq-item + .faq-item {
    margin-top: 12px;
  }

  .faq-item summary {
    min-height: 68px;
    gap: 15px;
    padding: 20px 18px 20px 22px;
    font-size: 19px;
    line-height: 1.35;
  }

  .faq-toggle {
    flex-basis: 30px;
    width: 30px;
    height: 30px;
    font-size: 20px;
  }

  .faq-answer {
    margin-inline: 20px;
    padding: 25px 1px 29px;
    font-size: 15px;
    line-height: 1.8;
  }

.faq-answer h3 {
  font-size: 20px;
}
}

.site-footer {
  display: flex;
  min-height: 82px;
  align-items: flex-end;
  padding: 24px max(32px, calc((100vw - 1400px) / 2));
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.footer-email {
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0.035em;
  transition: color 180ms ease;
}

.footer-email:hover,
.footer-email:focus-visible {
  color: var(--red-dark);
}

.footer-email:focus-visible {
  outline: 1px solid var(--gold);
  outline-offset: 5px;
}

@media (max-width: 560px) {
  .site-footer {
    min-height: 70px;
    padding: 20px 16px;
  }

  .footer-email {
    font-size: 12px;
  }
}

@media (max-height: 780px) and (min-width: 901px) {
  .header-inner {
    min-height: 86px;
  }

  .hero-inner {
    padding-top: 105px;
    padding-bottom: 15px;
  }

  .hero-main {
    padding-block: 20px;
  }

  .eyebrow {
    margin-bottom: 18px;
  }

  h1 {
    font-size: clamp(43px, 4vw, 59px);
  }

  .ornament-line {
    margin-top: 20px;
  }

  .hero-lead {
    margin-top: 16px;
  }

  .hero-actions {
    margin-top: 21px;
  }

  .qualities li {
    padding-block: 12px;
  }

  .spanish-note {
    margin-top: 10px;
  }
}

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

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