@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../assets/fonts/cormorant-600.woff2") format("woff2");
}

@font-face {
  font-family: "Cormorant Garamond";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("../assets/fonts/cormorant-400i.woff2") format("woff2");
}

@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../assets/fonts/poppins-400.woff2") format("woff2");
}

@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../assets/fonts/poppins-500.woff2") format("woff2");
}

:root {
  --bg: #f7f4ef;
  --heading: #4f5b46;
  --text: #6e6a66;
  --btn-bg: #8e9b84;
  --btn-text: #ffffff;
  --detail: #d8cbb8;
  --card-bg: #ffffff;
  --detail-rgb: 216, 203, 184;
  --heading-rgb: 79, 91, 70;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Poppins", "Segoe UI", sans-serif;
  --max-width: 1180px;
  --text-width: 720px;
  --radius-sm: 10px;
  --radius-md: 22px;
  --shadow-soft: 0 24px 70px -36px rgba(var(--heading-rgb), 0.35);
  --shadow-lift: 0 30px 80px -34px rgba(var(--heading-rgb), 0.48);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 12% 8%, rgba(var(--detail-rgb), 0.18), transparent 25rem),
    var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

main {
  flex: 1 0 auto;
}

[id] {
  scroll-margin-top: 6rem;
}

img {
  display: block;
  height: auto;
  max-width: 100%;
}

a {
  color: inherit;
}

a[href^="mailto:"] {
  white-space: nowrap;
}

button {
  font: inherit;
}

button,
.btn,
.nav-cta,
img,
span[aria-hidden="true"],
.process-number,
.section-index {
  -webkit-user-select: none;
  user-select: none;
}

::selection {
  background: var(--heading);
  color: var(--btn-text);
}

:focus-visible {
  outline: 3px solid var(--heading);
  outline-offset: 4px;
}

.booking-feature :focus-visible,
.direct-contact :focus-visible,
footer.site :focus-visible {
  outline-color: var(--bg);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 200;
  padding: 0.75rem 1rem;
  background: var(--heading);
  color: var(--btn-text);
  text-decoration: none;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.wrap,
.hero-inner {
  width: min(calc(100% - 3rem), var(--max-width));
  margin-inline: auto;
}

.narrow-wrap {
  width: min(calc(100% - 3rem), var(--text-width));
  margin-inline: auto;
}

.section-pad {
  padding-block: clamp(3.5rem, 6vw, 6.25rem);
}

.hero-inner > *,
.page-hero-grid > *,
.split-intro > *,
.section-heading > *,
.booking-grid > *,
.story-layout > *,
.credential-layout > *,
.role-layout > *,
.ethics-grid > *,
.prepare-grid > *,
.booking-summary-grid > *,
.faq-layout > *,
.contact-layout > *,
.legal-layout > * {
  min-width: 0;
}

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

h1,
h2,
h3 {
  color: var(--heading);
  font-family: var(--font-display);
  font-weight: 600;
}

h1 {
  margin: 0;
  font-size: clamp(3rem, 5.4vw, 5.35rem);
  line-height: 1.06;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

h2 {
  margin: 0;
  font-size: clamp(2.15rem, 3.8vw, 3.6rem);
  line-height: 1.08;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

h3 {
  margin: 0;
  font-size: clamp(1.45rem, 2.2vw, 1.9rem);
  line-height: 1.12;
}

p {
  margin: 0;
}

p + p {
  margin-top: 1.2rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1.2rem;
  color: var(--heading);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.19em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 2.25rem;
  height: 1px;
  background: var(--detail);
  content: "";
}

.eyebrow-light {
  color: var(--bg);
}

.eyebrow-light::before {
  background: rgba(var(--detail-rgb), 0.55);
}

.lede {
  font-size: clamp(1rem, 1.3vw, 1.12rem);
  line-height: 1.65;
}

.display-copy {
  color: var(--heading);
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4vw, 3.35rem);
  line-height: 1.12;
  text-align: center;
  text-wrap: balance;
}

.display-small {
  color: var(--heading);
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 2.6vw, 2.2rem);
  line-height: 1.25;
}

.small-copy {
  font-size: 0.86rem;
  opacity: 0.82;
}

.flow-copy {
  max-width: 640px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  padding: 0.8rem 1.6rem;
  border: 1px solid var(--heading);
  border-radius: 999px;
  background: var(--heading);
  background: color-mix(in srgb, var(--btn-bg) 40%, var(--heading));
  color: var(--btn-text);
  font-size: 0.83rem;
  font-weight: 500;
  letter-spacing: 0.025em;
  line-height: 1.3;
  text-align: center;
  text-decoration: none;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.btn:hover {
  border-color: var(--heading);
  background: var(--heading);
  transform: translateY(-2px);
}

.btn-light {
  border-color: var(--bg);
  background: var(--bg);
  color: var(--heading);
}

.btn-light:hover {
  border-color: var(--card-bg);
  background: var(--card-bg);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--heading);
  font-size: 0.84rem;
  font-weight: 500;
  text-decoration-color: var(--detail);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.35rem;
}

.text-link span {
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translateX(0.25rem);
}

.button-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.4rem;
}

.button-row-center {
  justify-content: center;
}

header.site {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid transparent;
  background: rgba(247, 244, 239, 0.94);
  backdrop-filter: blur(18px);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

header.site.is-scrolled {
  border-color: rgba(var(--detail-rgb), 0.72);
  box-shadow: 0 10px 35px -28px rgba(var(--heading-rgb), 0.5);
}

.nav-wrap {
  position: relative;
  width: min(calc(100% - 3rem), var(--max-width));
  min-height: 5.25rem;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  flex: 0 0 auto;
  color: var(--heading);
  line-height: 1;
  text-decoration: none;
}

.brand-logo {
  width: 7rem;
}

nav.site ul {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.2vw, 2rem);
  margin: 0;
  padding: 0;
  list-style: none;
}

nav.site a {
  position: relative;
  display: block;
  color: var(--text);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
}

nav.site a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -0.55rem;
  left: 0;
  height: 1px;
  background: var(--heading);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 200ms ease;
}

nav.site a:hover::after,
nav.site a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

nav.site a[aria-current="page"] {
  color: var(--heading);
}

nav.site .nav-cta {
  padding: 0.65rem 1.2rem;
  border: 1px solid var(--heading);
  border-radius: 999px;
  color: var(--heading);
  transition: background 180ms ease, color 180ms ease;
}

nav.site .nav-cta:hover,
nav.site .nav-cta[aria-current="page"] {
  background: var(--heading);
  color: var(--btn-text);
}

.nav-toggle {
  display: none;
  width: 2.8rem;
  height: 2.8rem;
  padding: 0;
  border: 1px solid var(--detail);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.nav-toggle > span:not(.sr-only) {
  display: block;
  width: 1.15rem;
  height: 1px;
  margin: 0.28rem auto;
  background: var(--heading);
  transition: transform 180ms ease;
}

.hero {
  position: relative;
  overflow: hidden;
}

.hero::before {
  position: absolute;
  top: 8%;
  right: -13rem;
  width: 42rem;
  height: 42rem;
  border: 1px solid rgba(var(--detail-rgb), 0.58);
  border-radius: 50%;
  content: "";
}

.hero-inner {
  position: relative;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding: 1.1rem 0 0;
  border-top: 1px solid var(--detail);
  list-style: none;
}

.hero-facts li {
  display: grid;
  gap: 0.2rem;
}

.hero-facts strong {
  color: var(--heading);
  font-family: var(--font-display);
  font-size: 1.15rem;
  line-height: 1.2;
}

.hero-facts span {
  font-size: 0.72rem;
  line-height: 1.5;
}

.hero-visual {
  position: relative;
}

.hero-banner {
  padding-block: 1.25rem 2.75rem;
}

.hero-banner::before {
  pointer-events: none;
}

.hero-banner .hero-visual {
  width: min(calc(100% - 3rem), var(--max-width));
  max-width: var(--max-width);
}

.hero-banner .hero-visual img {
  width: 100%;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}

.hero-banner .hero-inner {
  margin-top: 1.75rem;
}

.hero-banner .hero-copy {
  max-width: 880px;
  margin-inline: auto;
  text-align: center;
}

.hero-banner .eyebrow {
  margin-bottom: 0.65rem;
}

.hero-banner .hero-copy h1 {
  max-width: 28ch;
  margin-inline: auto;
  font-size: clamp(2.25rem, 3.8vw, 3.5rem);
  line-height: 1.1;
}

.hero-banner .hero-copy .lede {
  max-width: 66ch;
  margin: 0.85rem auto 1.15rem;
}

.hero-banner .button-row {
  justify-content: center;
}

.hero-banner .hero-facts {
  max-width: 680px;
  margin: 1.5rem auto 0;
}

.page-hero-image img,
.story-portrait img,
.booking-image img {
  box-shadow: var(--shadow-soft);
}

.leaf-mark {
  display: inline-block;
  fill: none;
  stroke: var(--heading);
  stroke-width: 1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.intro-statement {
  background: var(--card-bg);
}

.intro-statement .eyebrow {
  display: flex;
  justify-content: center;
}

.soft-panel {
  position: relative;
  background:
    linear-gradient(135deg, rgba(var(--detail-rgb), 0.34), rgba(255, 255, 255, 0.16)),
    var(--bg);
}

.soft-panel::before {
  position: absolute;
  top: 0;
  right: 8%;
  left: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--detail), transparent);
  content: "";
}

.split-intro,
.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: start;
}

.split-intro h2,
.section-heading h2 {
  max-width: 11ch;
}

.section-heading {
  align-items: end;
  margin-bottom: 2.5rem;
}

.section-heading > p {
  max-width: 47ch;
  justify-self: end;
}

.focus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
  margin-top: clamp(2.5rem, 4.5vw, 4.25rem);
}

.focus-card {
  min-height: 13rem;
  padding: 1.6rem;
  border: 1px solid rgba(var(--detail-rgb), 0.9);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.68);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.focus-card:hover {
  box-shadow: var(--shadow-lift);
  transform: translateY(-5px);
}

.card-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.2rem;
  height: 3.2rem;
  margin-bottom: auto;
  border: 1px solid var(--detail);
  border-radius: 50%;
  color: var(--heading);
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-variant-numeric: lining-nums tabular-nums;
  line-height: 1;
}

.focus-card h3 {
  margin: 1.5rem 0 0.5rem;
}

.focus-card p {
  font-size: 0.9rem;
}

.editorial-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.editorial-card {
  position: relative;
  min-height: 17.25rem;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--heading);
  box-shadow: var(--shadow-soft);
}

.editorial-card-wide {
  grid-row: 1 / span 2;
  min-height: 36rem;
}

.editorial-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(var(--heading-rgb), 0.72));
  content: "";
}

.editorial-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.editorial-card:hover img {
  transform: scale(1.035);
}

.editorial-label {
  position: absolute;
  right: 1.4rem;
  bottom: 1.3rem;
  left: 1.4rem;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  color: var(--btn-text);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.booking-feature {
  background: var(--heading);
  color: rgba(247, 244, 239, 0.78);
}

.booking-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
}

.booking-image {
  width: min(100%, 420px);
  justify-self: center;
}

.booking-image img {
  width: 100%;
  border-radius: var(--radius-md);
}

.booking-copy .eyebrow,
.booking-copy h2 {
  color: var(--bg);
}

.booking-copy h2 {
  margin-bottom: 1.6rem;
}

.price-line {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin: 2rem 0;
  padding: 1.2rem 0;
  border-block: 1px solid rgba(var(--detail-rgb), 0.34);
  color: var(--bg);
}

.quote-section {
  background:
    radial-gradient(circle at center, rgba(var(--detail-rgb), 0.34), transparent 28rem),
    var(--bg);
}

.quote-block {
  width: min(100% - 3rem, 850px);
  margin-inline: auto;
  text-align: center;
}

.quote-block blockquote {
  margin: 1.4rem 0 1.6rem;
  color: var(--heading);
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 5vw, 4.2rem);
  font-style: italic;
  line-height: 1.1;
  text-wrap: balance;
}

.quote-block p {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.page-hero {
  position: relative;
  padding-top: clamp(3rem, 5vw, 5rem);
  overflow: hidden;
}

.page-hero::before {
  position: absolute;
  top: 12%;
  left: -12rem;
  width: 30rem;
  height: 30rem;
  border-radius: 50%;
  background: rgba(var(--detail-rgb), 0.22);
  content: "";
  filter: blur(1px);
}

.page-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.75fr);
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
}

.page-hero-copy h1 {
  max-width: 11ch;
  font-size: clamp(3rem, 5.2vw, 5rem);
}

.page-hero-copy .lede {
  max-width: 55ch;
  margin-top: 1.3rem;
}

.page-hero-copy .btn {
  margin-top: 1.5rem;
}

.page-hero-copy .button-row {
  margin-top: 1.5rem;
}

.page-hero-copy .button-row .btn {
  margin-top: 0;
}

.page-hero-image {
  position: relative;
  justify-self: end;
  max-width: 420px;
}

.page-hero-image img {
  width: 100%;
  border-radius: var(--radius-md);
}

.story-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(3rem, 9vw, 9rem);
  align-items: start;
}

.story-portrait {
  position: static;
}

.story-portrait img {
  width: 100%;
  border-radius: var(--radius-md);
}

.story-portrait p {
  padding: 1rem 0.7rem 0.6rem;
  font-size: 0.75rem;
  line-height: 1.6;
}

.story-portrait strong {
  color: var(--heading);
  font-family: var(--font-display);
  font-size: 1.15rem;
}

.article-flow {
  max-width: 680px;
}

.article-flow h2 {
  margin-bottom: 2rem;
}

.article-flow p + p {
  margin-top: 1.35rem;
}

.belief-panel {
  background: var(--heading);
  color: rgba(247, 244, 239, 0.8);
  text-align: center;
}

.belief-panel blockquote {
  margin: 0.5rem 0 1.6rem;
  color: var(--bg);
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 4.5rem);
  font-style: italic;
  line-height: 1.1;
  text-wrap: balance;
}

.belief-panel p {
  max-width: 62ch;
  margin-inline: auto;
}

.values-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 3.5rem;
  border-block: 1px solid var(--detail);
}

.values-row article {
  padding: 2rem;
}

.values-row article + article {
  border-left: 1px solid var(--detail);
}

.values-row h3 {
  margin: 1rem 0 0.4rem;
}

.values-row article > span,
.booking-steps article > span {
  color: var(--heading);
  font-family: var(--font-display);
  font-variant-numeric: lining-nums tabular-nums;
}

.values-row article > span {
  font-size: 1.1rem;
}

.values-row p {
  font-size: 0.86rem;
}

.credential-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(340px, 0.8fr);
  gap: clamp(3rem, 6vw, 5rem);
  align-items: center;
}

.credential-copy h2 {
  margin-bottom: 1.4rem;
  font-size: clamp(2.5rem, 4.4vw, 3.75rem);
  overflow-wrap: normal;
}

.trust-badges {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.6rem;
  margin-top: 2rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--detail);
}

.trust-badges img:first-child {
  width: 190px;
  height: auto;
}

.trust-badges img:last-child {
  width: 88px;
  height: auto;
}

.diploma-card {
  display: block;
  width: min(100%, 500px);
  justify-self: end;
  padding: 0.8rem;
  border: 1px solid var(--detail);
  border-radius: var(--radius-md);
  background: var(--card-bg);
  box-shadow: var(--shadow-soft);
  text-decoration: none;
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.diploma-card:hover {
  box-shadow: var(--shadow-lift);
  transform: translateY(-4px);
}

.diploma-card img {
  width: 100%;
  border-radius: calc(var(--radius-md) - 8px);
}

.diploma-card > span {
  display: flex;
  justify-content: space-between;
  padding: 1rem 0.5rem 0.25rem;
  color: var(--heading);
  font-size: 0.78rem;
  font-weight: 500;
}

.cta-section {
  text-align: center;
}

.cta-section h2 {
  margin-bottom: 1.4rem;
}

.cta-section p {
  max-width: 55ch;
  margin-inline: auto;
}

.cta-section .btn {
  margin-top: 2rem;
}

.cta-section .button-row {
  margin-top: 2rem;
}

.cta-section .button-row .btn {
  margin-top: 0;
}

.topic-cloud {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 4.5rem;
}

.topic-cloud span {
  padding: 0.65rem 1.1rem;
  border: 1px solid var(--detail);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.48);
  color: var(--heading);
  font-size: 0.76rem;
}

.process-grid {
  display: grid;
  gap: 1rem;
}

.process-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
  align-items: start;
  padding: 2rem;
  border: 1px solid rgba(var(--detail-rgb), 0.9);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.72);
}

.process-number {
  display: grid;
  width: 3.2rem;
  height: 3.2rem;
  place-items: center;
  border-radius: 50%;
  background: var(--heading);
  color: var(--bg);
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-variant-numeric: lining-nums tabular-nums;
  line-height: 1;
}

.process-card h3 {
  margin-bottom: 0.55rem;
}

.process-card p {
  max-width: 70ch;
}

.role-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: center;
}

.role-copy h2 {
  margin-bottom: 1.6rem;
}

.credential-box {
  padding: 2.2rem;
  border: 1px solid var(--detail);
  border-radius: var(--radius-md);
  background: var(--card-bg);
  box-shadow: var(--shadow-soft);
}

.credential-box .card-number {
  margin-bottom: 0.85rem;
}

.credential-box h3 {
  margin-bottom: 1rem;
}

.credential-box .text-link {
  margin-top: 1.4rem;
}

.ethics-panel {
  background: var(--heading);
  color: rgba(247, 244, 239, 0.8);
}

.ethics-panel .small-copy {
  opacity: 1;
}

.ethics-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(3rem, 8vw, 7rem);
  align-items: center;
}

.ethics-grid h2 {
  margin-bottom: 1.4rem;
  color: var(--bg);
}

.important-note {
  padding: 2.2rem;
  border-radius: var(--radius-md);
  background: var(--bg);
  color: var(--text);
}

.important-note h3 {
  margin-bottom: 1rem;
}

.prepare-grid,
.booking-summary-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(3rem, 8vw, 8rem);
}

.prepare-grid h2 + .display-small {
  margin-top: 1.25rem;
}

.booking-summary {
  background: rgba(var(--detail-rgb), 0.3);
}

.booking-summary-grid {
  align-items: center;
}

.booking-summary-grid h2 {
  margin-bottom: 1.2rem;
}

.price-card {
  padding: 2rem;
  border: 1px solid var(--detail);
  border-radius: var(--radius-md);
  background: var(--card-bg);
  box-shadow: var(--shadow-soft);
}

.price-card > div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.25rem 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--detail);
}

.price-card strong,
.price-card em {
  color: var(--heading);
  font-style: normal;
  text-align: right;
}

.price-card em {
  grid-column: 2;
  font-family: var(--font-display);
  font-size: 1.4rem;
}

.price-card > p {
  margin: 1.2rem 0;
  font-size: 0.82rem;
}

.price-card .text-link {
  margin-left: 1rem;
}

.faq-section {
  padding-top: 2rem;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(230px, 0.65fr) minmax(0, 1.35fr);
  gap: clamp(3rem, 9vw, 9rem);
  align-items: start;
}

.faq-aside {
  position: static;
}

.faq-aside h2 {
  margin-bottom: 1.2rem;
}

.faq-list {
  border-top: 1px solid var(--detail);
}

.faq-list details {
  border-bottom: 1px solid var(--detail);
}

.faq-list summary {
  position: relative;
  padding: 1.65rem 3.5rem 1.65rem 0;
  color: var(--heading);
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.6vw, 2rem);
  line-height: 1.2;
  list-style: none;
  cursor: pointer;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::before,
.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 0.5rem;
  width: 1.2rem;
  height: 1px;
  background: var(--heading);
  content: "";
  transition: transform 180ms ease;
}

.faq-list summary::after {
  transform: rotate(90deg);
}

.faq-list details[open] summary::after {
  transform: rotate(0);
}

.faq-list details > div {
  max-width: 65ch;
  padding: 0 3rem 1.8rem 0;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(3rem, 8vw, 8rem);
  align-items: start;
}

.contact-intro {
  position: static;
}

.contact-intro h2 {
  margin-bottom: 1.4rem;
}

.service-options {
  display: grid;
  gap: 1.2rem;
}

.service-option {
  padding: 2.2rem;
  border: 1px solid var(--detail);
  border-radius: var(--radius-md);
  background: var(--card-bg);
  box-shadow: var(--shadow-soft);
}

.featured-option {
  background: rgba(var(--detail-rgb), 0.28);
}

.option-tag {
  color: var(--heading);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.service-option h3 {
  margin: 0.7rem 0 1rem;
}

.option-meta {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.6rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--detail);
  color: var(--heading);
}

.option-meta span {
  font-family: var(--font-display);
  font-size: 1.4rem;
}

.service-option .text-link {
  margin-top: 1.25rem;
}

.booking-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-block: 1px solid var(--detail);
}

.booking-steps article {
  padding: 2rem;
}

.booking-steps article + article {
  border-left: 1px solid var(--detail);
}

.booking-steps h3 {
  margin: 1.8rem 0 0.7rem;
}

.booking-steps article > span {
  font-size: 2rem;
}

.booking-steps p {
  font-size: 0.86rem;
}

.direct-contact {
  background: var(--heading);
  color: rgba(247, 244, 239, 0.8);
  text-align: center;
}

.direct-contact h2 {
  color: var(--bg);
  font-size: clamp(1.35rem, 5vw, 4rem);
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.direct-contact p {
  max-width: 58ch;
  margin: 1.4rem auto 0;
}

.direct-contact .btn {
  margin-top: 2rem;
}

.practical-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.4rem;
}

.practical-grid > a {
  display: block;
  padding: 2.2rem;
  border: 1px solid var(--detail);
  border-radius: var(--radius-md);
  background: var(--card-bg);
  box-shadow: var(--shadow-soft);
  text-decoration: none;
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.practical-grid > a:hover {
  box-shadow: var(--shadow-lift);
  transform: translateY(-4px);
}

.practical-grid h2 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 3.6vw, 3.2rem);
}

.practical-grid .text-link {
  margin-top: 1.5rem;
}

.legal-section {
  padding-top: 1rem;
}

.legal-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 720px);
  gap: clamp(3rem, 8vw, 8rem);
  justify-content: center;
  align-items: start;
}

.legal-nav {
  position: static;
  padding: 1.5rem;
  border: 1px solid var(--detail);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.55);
}

.legal-nav nav {
  display: grid;
}

.legal-nav a {
  padding: 0.75rem 0;
  border-top: 1px solid rgba(var(--detail-rgb), 0.65);
  color: var(--heading);
  font-size: 0.76rem;
  text-decoration: none;
}

.legal-nav a:hover {
  text-decoration: underline;
  text-underline-offset: 0.25rem;
}

.legal-copy > section {
  scroll-margin-top: 8rem;
  padding: 0 0 3.5rem;
}

.legal-copy > section + section {
  padding-top: 3.5rem;
  border-top: 1px solid var(--detail);
}

.section-index {
  display: block;
  margin-bottom: 0.8rem;
  color: var(--heading);
  font-family: var(--font-display);
  font-size: 1.4rem;
}

.legal-copy h2 {
  margin-bottom: 1.4rem;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
}

.legal-copy h3 {
  margin: 2rem 0 0.8rem;
  font-size: 1.55rem;
}

.legal-copy ul {
  display: grid;
  gap: 0.45rem;
  margin: 1rem 0 0;
  padding-left: 1.2rem;
}

.legal-copy a {
  color: var(--heading);
  font-weight: 500;
}

.legal-contact {
  margin-top: 1rem;
  padding: 2rem !important;
  border: 1px solid var(--detail) !important;
  border-radius: var(--radius-md);
  background: rgba(var(--detail-rgb), 0.25);
}

.legal-contact h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.policy-updated {
  margin-top: 1.5rem;
  font-size: 0.76rem;
  opacity: 0.75;
}

footer.site {
  flex-shrink: 0;
  padding: 5rem 0 2rem;
  background: var(--heading);
  color: rgba(247, 244, 239, 0.8);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 1fr;
  gap: clamp(2rem, 7vw, 7rem);
}

.footer-name {
  margin-bottom: 0.8rem;
  color: var(--bg);
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
}

.footer-brand > p:last-child {
  font-size: 0.82rem;
}

footer.site h2 {
  margin-bottom: 1rem;
  color: var(--bg);
  font-family: var(--font-body);
  font-size: 0.67rem;
  font-weight: 500;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

footer.site ul {
  display: grid;
  gap: 0.65rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

footer.site li,
footer.site a {
  font-size: 0.78rem;
}

footer.site a {
  text-decoration-color: transparent;
  text-underline-offset: 0.25rem;
  transition: color 180ms ease, text-decoration-color 180ms ease;
}

footer.site a:hover {
  color: var(--bg);
  text-decoration-color: var(--detail);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 4rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(var(--detail-rgb), 0.25);
}

.footer-bottom p,
.footer-bottom a {
  font-size: 0.68rem;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
}

.reveal.is-visible {
  animation: reveal-in 700ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes reveal-in {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.focus-grid .reveal:nth-child(2),
.values-row .reveal:nth-child(2),
.booking-steps .reveal:nth-child(2) {
  animation-delay: 80ms;
}

.focus-grid .reveal:nth-child(3),
.values-row .reveal:nth-child(3),
.booking-steps .reveal:nth-child(3) {
  animation-delay: 160ms;
}

@media (max-width: 1000px) {
  .page-hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.7fr);
    gap: 2.5rem;
  }

  .editorial-card-wide {
    min-height: 32rem;
  }

  .story-layout,
  .credential-layout {
    gap: 4rem;
  }

  .price-card .text-link {
    display: flex;
    margin: 1rem 0 0;
  }
}

@media (max-width: 820px) {
  .hero-banner::before {
    right: -26rem;
    width: 28rem;
    height: 28rem;
  }

  .nav-wrap {
    width: calc(100% - 2rem);
    min-height: 4.75rem;
    flex-wrap: wrap;
  }

  .nav-ready .nav-wrap {
    flex-wrap: nowrap;
  }

  html:not(.nav-ready) header.site {
    position: static;
  }

  .brand-logo {
    width: 6rem;
  }

  .nav-ready .nav-toggle {
    display: block;
    border-color: var(--heading);
    background: var(--heading);
  }

  .nav-toggle > span:not(.sr-only) {
    background: var(--bg);
  }

  .nav-toggle[aria-expanded="true"] > span:nth-of-type(2) {
    transform: translateY(2.5px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] > span:nth-of-type(3) {
    transform: translateY(-2.5px) rotate(-45deg);
  }

  nav.site {
    width: 100%;
    padding-bottom: 1.5rem;
  }

  .nav-ready nav.site {
    position: absolute;
    top: calc(100% + 1px);
    right: -1rem;
    left: -1rem;
    width: auto;
    visibility: hidden;
    padding: 1.25rem 1.5rem 1.5rem;
    border-bottom: 1px solid var(--detail);
    background: var(--bg);
    box-shadow: var(--shadow-soft);
    opacity: 0;
    transform: translateY(-0.6rem);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms;
  }

  .nav-ready nav.site.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  nav.site ul {
    align-items: stretch;
    flex-direction: column;
    gap: 0;
  }

  nav.site a {
    padding: 0.9rem 0;
    border-bottom: 1px solid rgba(var(--detail-rgb), 0.6);
    font-size: 0.78rem;
  }

  nav.site a::after {
    display: none;
  }

  nav.site .nav-cta {
    margin-top: 0.8rem;
    padding: 0.8rem 1.1rem;
    text-align: center;
  }

  .page-hero-grid,
  .split-intro,
  .section-heading,
  .booking-grid,
  .story-layout,
  .credential-layout,
  .role-layout,
  .ethics-grid,
  .prepare-grid,
  .booking-summary-grid,
  .faq-layout,
  .contact-layout,
  .legal-layout {
    grid-template-columns: 1fr;
    gap: 2.75rem;
  }

  .hero-copy h1,
  .hero-copy .lede {
    width: 100%;
    overflow-wrap: anywhere;
  }

  .hero-copy .eyebrow,
  .page-hero-copy .eyebrow {
    display: block;
    width: 100%;
    font-size: 0.64rem;
    letter-spacing: 0.14em;
    text-align: center;
    overflow-wrap: anywhere;
  }

  .hero-copy .eyebrow::before,
  .page-hero-copy .eyebrow::before {
    display: inline-block;
    margin-right: 0.7rem;
    vertical-align: middle;
  }

  .page-hero-copy .button-row {
    justify-content: center;
  }

  .page-hero-image {
    width: min(100%, 380px);
    justify-self: center;
  }

  .page-hero-copy {
    text-align: center;
  }

  .page-hero-copy h1,
  .page-hero-copy .lede {
    margin-right: auto;
    margin-left: auto;
  }

  .section-heading > p {
    justify-self: start;
  }

  .focus-grid,
  .values-row,
  .booking-steps {
    grid-template-columns: 1fr;
  }

  .values-row article + article,
  .booking-steps article + article {
    border-top: 1px solid var(--detail);
    border-left: 0;
  }

  .editorial-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }

  .editorial-card,
  .editorial-card-wide {
    grid-row: auto;
    min-height: 18rem;
  }

  .editorial-card-wide {
    grid-column: 1 / -1;
    min-height: 28rem;
  }

  .booking-image {
    width: min(100%, 380px);
    margin-inline: auto;
  }

  .story-portrait {
    width: min(100%, 440px);
    margin-inline: auto;
  }

  .legal-nav {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  .hero-banner {
    padding-block: 1rem 2rem;
  }

  .hero-banner .hero-visual {
    width: calc(100% - 2rem);
  }

  .hero-banner .hero-visual img {
    border-radius: var(--radius-sm);
  }

  .hero-banner .hero-inner {
    margin-top: 1.5rem;
  }

  .hero-banner .hero-copy h1 {
    font-size: clamp(2.1rem, 8.5vw, 2.75rem);
  }

  .hero-banner .hero-facts {
    gap: 0.65rem;
  }

  .wrap,
  .hero-inner,
  .narrow-wrap,
  .nav-wrap {
    width: min(calc(100% - 2rem), var(--max-width));
  }

  .section-pad {
    padding-block: 3.25rem;
  }

  h1,
  .page-hero-copy h1 {
    font-size: clamp(2.75rem, 12vw, 3.6rem);
  }

  .button-row,
  .button-row .btn {
    width: 100%;
  }

  .button-row {
    justify-content: center;
  }

  .button-row .text-link {
    justify-content: center;
  }

  .hero-facts li {
    display: block;
    text-align: center;
  }

  .hero-facts strong,
  .hero-facts span {
    display: block;
  }

  .page-hero-image,
  .booking-image {
    width: min(100%, 320px);
  }

  .editorial-grid,
  .practical-grid {
    grid-template-columns: 1fr;
  }

  .editorial-card,
  .editorial-card-wide {
    grid-column: auto;
    min-height: 17rem;
  }

  .price-line,
  .option-meta,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .focus-card,
  .process-card,
  .credential-box,
  .important-note,
  .price-card,
  .service-option,
  .practical-grid > a {
    padding: 1.25rem;
  }

  .process-card {
    grid-template-columns: 1fr;
  }

  .legal-contact {
    padding: 1.25rem !important;
  }

  .topic-cloud {
    justify-content: flex-start;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    grid-column: auto;
  }
}

@media (max-height: 820px) and (min-width: 821px) {
  .hero-banner .hero-visual {
    max-width: 960px;
  }

  .hero-banner .hero-inner {
    margin-top: 1.25rem;
  }

  .hero-banner .hero-copy h1 {
    max-width: none;
    font-size: 2.5rem;
  }
}

@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;
  }
}

@media print {
  header.site,
  footer.site,
  .nav-toggle,
  .legal-nav {
    display: none !important;
  }

  body {
    background: var(--card-bg);
  }

  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}
