:root {
  --ink: #271e29;
  --plum: #351f3b;
  --plum-deep: #26152d;
  --plum-soft: #6f506f;
  --wine: #7d3552;
  --rose: #d8a8b5;
  --blush: #f1e0e2;
  --cream: #f7f1e9;
  --ivory: #fdfaf5;
  --paper: #fffdf9;
  --sage: #60756c;
  --green: #205e48;
  --red: #9a2f47;
  --gold: #c4a06b;
  --muted: #756d77;
  --line: rgba(53, 31, 59, 0.14);
  --white-line: rgba(255, 255, 255, 0.19);
  --shadow: 0 28px 70px rgba(37, 20, 43, 0.13);
  --shadow-small: 0 14px 35px rgba(37, 20, 43, 0.1);
  --serif: Georgia, "Times New Roman", Times, serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --container: min(1180px, calc(100vw - 48px));
  --radius: 3px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--ivory);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration-color: rgba(53, 31, 59, 0.35); text-underline-offset: 0.2em; }
a:hover { text-decoration-color: currentColor; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
[hidden] { display: none !important; }
::selection { background: var(--rose); color: var(--plum-deep); }

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 9999;
  transform: translateY(-160%);
  padding: 10px 16px;
  background: var(--paper);
  color: var(--plum);
  box-shadow: var(--shadow-small);
}
.skip-link:focus { transform: none; }
.container { width: var(--container); margin-inline: auto; }
.section { padding: 112px 0; }

h1, h2, h3, h4, p { margin-top: 0; }
h1, h2, h3, h4 {
  color: var(--plum);
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -0.035em;
}
h1 { font-size: clamp(3.3rem, 7vw, 7.15rem); }
h2 { font-size: clamp(2.5rem, 5vw, 4.75rem); }
h3 { font-size: clamp(1.4rem, 2.3vw, 2rem); }
h1 em, h2 em { color: var(--rose); font-weight: 400; }
p { color: var(--muted); }
p.lead, .lead { font-family: var(--serif); font-size: clamp(1.3rem, 2vw, 1.75rem); line-height: 1.45; color: var(--plum); }
.eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--wine);
  font-size: 0.73rem;
  font-weight: 750;
  letter-spacing: 0.17em;
  line-height: 1.3;
  text-transform: uppercase;
}
.eyebrow-light { color: #e9cbd2; }
.fine-print, .microcopy, .field-help { font-size: 0.78rem; line-height: 1.55; color: var(--muted); }

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 24px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 0.78rem;
  font-weight: 760;
  letter-spacing: 0.08em;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
  cursor: pointer;
}
.button:hover { transform: translateY(-2px); text-decoration: none; }
.button:focus-visible, .text-button:focus-visible, .filter-button:focus-visible, .payment-tab:focus-visible { outline: 3px solid rgba(196, 160, 107, 0.55); outline-offset: 3px; }
.button:disabled { opacity: 0.55; cursor: wait; transform: none; }
.button-small { min-height: 42px; padding: 10px 18px; font-size: 0.7rem; }
.button-full { width: 100%; }
.button-plum { background: var(--plum); color: #fff; box-shadow: 0 14px 30px rgba(53, 31, 59, 0.18); }
.button-plum:hover { background: var(--plum-deep); box-shadow: 0 18px 36px rgba(53, 31, 59, 0.23); }
.button-cream { background: var(--cream); color: var(--plum); }
.button-cream:hover { background: #fffaf2; }
.button-ghost { border-color: rgba(255,255,255,0.4); color: #fff; background: transparent; }
.button-ghost:hover { border-color: #fff; background: rgba(255,255,255,0.07); }
.button-outline { border-color: var(--line); background: transparent; color: var(--plum); }
.button-outline:hover { border-color: var(--plum); background: rgba(53,31,59,0.04); }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--plum);
  font-size: 0.78rem;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}
.text-link span { font-size: 1.2rem; transition: transform 180ms ease; }
.text-link:hover span { transform: translateX(4px); }
.light-link { color: #fff; }
.text-button {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--plum-soft);
  font-weight: 650;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}

/* Header */
.site-header { position: relative; z-index: 100; background: var(--paper); }
.announcement {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  padding: 7px 24px;
  color: rgba(255,255,255,0.78);
  background: var(--plum-deep);
  font-size: 0.68rem;
  font-weight: 660;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.announcement a { color: #fff; text-decoration: none; }
.nav-shell {
  width: var(--container);
  min-height: 92px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: inline-flex; align-items: center; gap: 13px; text-decoration: none; color: var(--plum); }
.brand img { flex: 0 0 auto; }
.brand-copy { display: flex; flex-direction: column; line-height: 1.04; }
.brand-copy strong { font-family: var(--serif); font-size: 1.18rem; font-weight: 400; letter-spacing: 0.02em; }
.brand-copy span { margin-top: 4px; font-size: 0.63rem; font-weight: 760; letter-spacing: 0.22em; text-transform: uppercase; }
.primary-nav { display: flex; align-items: center; gap: 28px; }
.primary-nav > a:not(.button) {
  position: relative;
  padding: 33px 0 31px;
  color: #574c59;
  font-size: 0.72rem;
  font-weight: 720;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
}
.primary-nav > a:not(.button)::after { content: ""; position: absolute; left: 0; bottom: 23px; width: 100%; height: 1px; background: var(--wine); transform: scaleX(0); transform-origin: right; transition: transform 180ms ease; }
.primary-nav > a:hover::after, .primary-nav > a.active::after { transform: scaleX(1); transform-origin: left; }
.menu-toggle { display: none; width: 44px; height: 44px; border: 0; background: transparent; padding: 9px; cursor: pointer; }
.menu-toggle span:not(.sr-only) { display: block; height: 1px; margin: 6px 0; background: var(--plum); transition: transform 180ms ease, opacity 180ms ease; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Hero */
.hero {
  position: relative;
  min-height: min(820px, calc(100vh - 126px));
  display: flex;
  align-items: stretch;
  overflow: hidden;
  background: var(--plum);
}
.hero::before { content: ""; position: absolute; inset: 0; opacity: 0.35; background-image: radial-gradient(rgba(255,255,255,0.35) 0.6px, transparent 0.6px); background-size: 18px 18px; mask-image: linear-gradient(to right, black, transparent 70%); }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, 1.03fr) minmax(380px, 0.97fr); align-items: center; gap: clamp(40px, 7vw, 100px); padding: 78px 0 92px; }
.hero-copy { max-width: 690px; }
.hero h1 { margin-bottom: 28px; color: #fff; }
.hero h1 em { color: #e2b7c1; }
.hero-copy > p { max-width: 610px; margin-bottom: 32px; color: rgba(255,255,255,0.74); font-family: var(--serif); font-size: clamp(1.15rem, 1.7vw, 1.45rem); line-height: 1.55; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-notes { display: flex; flex-wrap: wrap; gap: 18px 30px; margin-top: 42px; color: rgba(255,255,255,0.66); font-size: 0.69rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }
.hero-notes span::before { content: "◇"; margin-right: 8px; color: var(--gold); }
.hero-visual { align-self: stretch; display: flex; align-items: center; justify-content: center; }
.hero-frame { position: relative; width: min(100%, 510px); }
.hero-frame::before { content: ""; position: absolute; inset: 7% -6% -5% 8%; border: 1px solid rgba(255,255,255,0.2); }
.hero-frame img { position: relative; z-index: 1; width: 100%; filter: drop-shadow(0 35px 55px rgba(10, 3, 14, 0.35)); }
.hero-seal { position: absolute; right: -30px; bottom: 8%; z-index: 3; width: 124px; aspect-ratio: 1; display: grid; place-items: center; align-content: center; padding: 15px; border: 1px solid rgba(255,255,255,0.5); border-radius: 50%; background: rgba(53,31,59,0.74); color: #fff; backdrop-filter: blur(8px); text-align: center; transform: rotate(6deg); }
.hero-seal::after { content: ""; position: absolute; inset: 6px; border: 1px dashed rgba(255,255,255,0.32); border-radius: inherit; }
.hero-seal span { font-family: var(--serif); font-size: 1.75rem; letter-spacing: 0.08em; }
.hero-seal small { font-size: 0.48rem; letter-spacing: 0.12em; line-height: 1.4; text-transform: uppercase; }
.hero-orbit { position: absolute; border: 1px solid rgba(255,255,255,0.09); border-radius: 50%; }
.orbit-one { width: 590px; height: 590px; left: -300px; bottom: -240px; }
.orbit-two { width: 840px; height: 840px; right: -520px; top: -360px; }
.hero-scroll { position: absolute; z-index: 4; left: 50%; bottom: 20px; width: 28px; height: 48px; border: 1px solid rgba(255,255,255,0.35); border-radius: 18px; transform: translateX(-50%); }
.hero-scroll span { position: absolute; top: 9px; left: 50%; width: 3px; height: 7px; border-radius: 2px; background: #fff; transform: translateX(-50%); animation: scroll-dot 1.8s ease-in-out infinite; }
@keyframes scroll-dot { 0%,100% { transform: translate(-50%,0); opacity: .45; } 45% { transform: translate(-50%,17px); opacity: 1; } }

/* Home sections */
.welcome-section { background: var(--paper); }
.split-intro { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 0.8fr); gap: clamp(50px, 10vw, 150px); align-items: start; }
.section-heading h2, .intro-copy p:last-of-type { margin-bottom: 28px; }
.intro-copy { padding-top: 12px; }
.programs-preview { background: var(--cream); }
.section-topline { display: flex; align-items: end; justify-content: space-between; gap: 32px; margin-bottom: 52px; }
.section-topline h2 { margin-bottom: 0; }
.program-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 28px; }
.program-card { min-width: 0; background: var(--paper); box-shadow: var(--shadow-small); transition: transform 220ms ease, box-shadow 220ms ease; }
.program-card:hover { transform: translateY(-7px); box-shadow: var(--shadow); }
.program-art { position: relative; display: block; aspect-ratio: 1.12; overflow: hidden; background: var(--blush); text-decoration: none; }
.program-art img { width: 100%; height: 100%; object-fit: cover; transition: transform 600ms cubic-bezier(.2,.7,.2,1); }
.program-card:hover .program-art img { transform: scale(1.035); }
.program-price { position: absolute; right: 0; bottom: 0; min-width: 94px; padding: 11px 14px; background: var(--plum); color: #fff; font-size: 0.74rem; font-weight: 730; letter-spacing: 0.06em; text-align: center; }
.program-body { padding: 30px 30px 32px; }
.program-body .eyebrow { margin-bottom: 12px; }
.program-body h3 { margin-bottom: 16px; font-size: 1.85rem; }
.program-body h3 a { text-decoration: none; }
.program-body p { min-height: 78px; margin-bottom: 22px; font-size: 0.93rem; }
.program-meta { display: flex; justify-content: space-between; gap: 10px; margin-bottom: 26px; padding-top: 16px; border-top: 1px solid var(--line); color: var(--plum-soft); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; }
.pathway-section { position: relative; overflow: hidden; background: var(--plum-deep); }
.pathway-section::after { content: ""; position: absolute; right: -10%; top: -40%; width: 650px; height: 650px; border: 1px solid rgba(255,255,255,.08); border-radius: 50%; }
.pathway-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; min-height: 760px; }
.pathway-art { display: flex; align-items: end; padding: 70px 60px 0 0; }
.pathway-art img { width: 100%; max-height: 680px; object-fit: contain; object-position: bottom; }
.pathway-copy { position: relative; z-index: 2; display: flex; flex-direction: column; justify-content: center; padding: 100px 0 100px clamp(40px, 7vw, 100px); border-left: 1px solid var(--white-line); }
.pathway-copy h2 { margin-bottom: 46px; color: #fff; }
.pathway-list { list-style: none; margin: 0 0 36px; padding: 0; }
.pathway-list li { display: grid; grid-template-columns: 52px 1fr; gap: 22px; padding: 22px 0; border-top: 1px solid var(--white-line); }
.pathway-list li > span { color: var(--gold); font-family: var(--serif); font-size: 1.1rem; }
.pathway-list h3 { margin-bottom: 6px; color: #fff; font-family: var(--sans); font-size: 0.84rem; font-weight: 750; letter-spacing: .12em; text-transform: uppercase; }
.pathway-list p { margin: 0; color: rgba(255,255,255,.65); font-size: .92rem; }
.pathway-copy .button { align-self: flex-start; }
.values-section { background: var(--paper); }
.center-heading { max-width: 670px; margin: 0 auto 62px; text-align: center; }
.center-heading h2 { margin-bottom: 20px; }
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.value-card { min-height: 330px; padding: 44px 38px; background: var(--ivory); }
.value-card > span { display: block; margin-bottom: 70px; color: var(--gold); font-family: var(--serif); font-size: 1.2rem; }
.value-card h3 { margin-bottom: 16px; }
.value-card p { margin: 0; }
.booking-banner { padding: 0 0 112px; background: var(--paper); }
.booking-banner-inner { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 38px; overflow: hidden; padding: 64px clamp(34px, 6vw, 82px); background: var(--wine); }
.booking-banner-inner::before { content: ""; position: absolute; left: 52%; top: -180px; width: 470px; height: 470px; border: 1px solid rgba(255,255,255,.18); border-radius: 50%; }
.booking-banner-inner > * { position: relative; z-index: 1; }
.booking-banner h2 { margin-bottom: 13px; color: #fff; }
.booking-banner p { margin-bottom: 0; color: rgba(255,255,255,.74); }

/* Generic page hero */
.page-hero { position: relative; overflow: hidden; background: var(--plum); }
.page-hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 20% 20%, rgba(255,255,255,.08), transparent 35%), radial-gradient(circle at 80% 80%, rgba(216,168,181,.12), transparent 40%); }
.page-hero-grid { position: relative; z-index: 1; min-height: 520px; display: grid; grid-template-columns: 1.15fr .85fr; align-items: center; gap: 60px; padding: 70px 0; }
.page-hero h1 { margin-bottom: 24px; color: #fff; font-size: clamp(3.5rem, 7vw, 6.5rem); }
.page-hero p { max-width: 650px; margin: 0; color: rgba(255,255,255,.7); font-family: var(--serif); font-size: 1.25rem; }
.page-hero img { max-height: 390px; justify-self: end; filter: drop-shadow(0 28px 40px rgba(15,5,20,.25)); }
.program-catalog { background: var(--cream); }
.filter-bar { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 48px; }
.filter-button, .payment-tab { border: 1px solid var(--line); background: var(--paper); cursor: pointer; }
.filter-button { padding: 10px 16px; font-size: .7rem; font-weight: 730; letter-spacing: .08em; text-transform: uppercase; }
.filter-button.active, .filter-button:hover { border-color: var(--plum); background: var(--plum); color: #fff; }
.program-card[hidden] { display: none; }
.placement-section { background: var(--paper); }
.placement-section .button { margin-top: 12px; }
.editorial-section { background: var(--paper); }
.editorial-grid { display: grid; grid-template-columns: 90px minmax(0, .9fr) minmax(0, .8fr); gap: clamp(30px, 7vw, 95px); align-items: start; }
.editorial-number { color: var(--gold); font-family: var(--serif); font-size: 1.25rem; padding-top: 5px; }
.editorial-grid h2 { font-size: clamp(2.5rem,4vw,4.15rem); }
.tonal-section { background: var(--blush); }
.philosophy-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: rgba(53,31,59,.14); border: 1px solid rgba(53,31,59,.14); }
.philosophy-grid article { min-height: 270px; padding: 44px; background: rgba(255,255,255,.44); }
.philosophy-grid article > span { color: var(--wine); font-size: .7rem; font-weight: 740; letter-spacing: .14em; text-transform: uppercase; }
.philosophy-grid h3 { margin: 58px 0 14px; }
.philosophy-grid p { margin: 0; }

/* Forms */
input, select, textarea {
  width: 100%;
  border: 1px solid rgba(53,31,59,.22);
  border-radius: 2px;
  background: var(--paper);
  color: var(--ink);
  outline: none;
  transition: border-color 150ms ease, box-shadow 150ms ease, background 150ms ease;
}
input, select { height: 54px; padding: 0 15px; }
textarea { min-height: 120px; padding: 14px 15px; resize: vertical; }
input:focus, select:focus, textarea:focus { border-color: var(--wine); box-shadow: 0 0 0 3px rgba(125,53,82,.11); background: #fff; }
input:invalid:not(:placeholder-shown), select:invalid:not(:focus) { border-color: rgba(154,47,71,.42); }
label { display: block; }
label > span { display: block; margin-bottom: 8px; color: var(--plum); font-size: .75rem; font-weight: 730; letter-spacing: .04em; }
label > span small { color: var(--muted); font-weight: 500; text-transform: none; }
.form-row { display: grid; gap: 18px; }
.two-columns { grid-template-columns: repeat(2, minmax(0,1fr)); }
.card-columns { grid-template-columns: repeat(2, minmax(0,1fr)); }
.billing-columns { grid-template-columns: repeat(2, minmax(0,1fr)); }
.field-help { display: block; margin-top: 6px; }
.field-error, .hosted-field-error { display: block; min-height: 18px; margin-top: 5px; color: var(--red); font-size: .73rem; line-height: 1.4; }
.check-label { display: flex; align-items: flex-start; gap: 10px; margin: 12px 0; cursor: pointer; }
.check-label input { width: 17px; height: 17px; flex: 0 0 17px; margin-top: 4px; accent-color: var(--plum); }
.check-label span { margin: 0; color: var(--muted); font-size: .84rem; font-weight: 500; letter-spacing: 0; }
.check-label a { color: var(--plum); }
.honeypot { position: absolute; left: -10000px; }
.notice { display: flex; align-items: flex-start; gap: 12px; padding: 17px 19px; border-left: 3px solid; margin-bottom: 24px; font-size: .88rem; }
.notice strong { color: inherit; white-space: nowrap; }
.notice span { color: inherit; opacity: .88; }
.success-notice { border-color: var(--green); background: rgba(32,94,72,.08); color: var(--green); }
.error-notice { border-color: var(--red); background: rgba(154,47,71,.08); color: var(--red); }
.warning-notice { border-color: var(--gold); background: rgba(196,160,107,.13); color: #6a4d22; }
.notice.compact { margin: 4px 0 16px; }
.contact-section { background: var(--cream); }
.contact-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: clamp(50px,8vw,110px); align-items: start; }
.contact-details { position: sticky; top: 30px; }
.contact-details h2 { font-size: clamp(2.4rem,4vw,3.7rem); }
.contact-line { padding: 20px 0; border-top: 1px solid var(--line); }
.contact-line span { display: block; margin-bottom: 5px; color: var(--wine); font-size: .68rem; font-weight: 750; letter-spacing: .12em; text-transform: uppercase; }
.contact-line a { color: var(--plum); font-family: var(--serif); font-size: 1.1rem; }
.form-card { padding: clamp(28px,5vw,58px); background: var(--paper); box-shadow: var(--shadow); }
.contact-form { display: grid; gap: 20px; }
.contact-form .button { justify-self: start; margin-top: 8px; }

/* Booking */
.booking-intro { position: relative; overflow: hidden; padding: 72px 0 90px; background: var(--plum); }
.booking-intro::after { content: ""; position: absolute; width: 520px; height: 520px; right: -200px; top: -340px; border: 1px solid rgba(255,255,255,.13); border-radius: 50%; }
.booking-intro h1 { margin-bottom: 22px; color: #fff; font-size: clamp(3.2rem,6vw,5.9rem); }
.booking-intro p { max-width: 680px; margin: 0; color: rgba(255,255,255,.7); font-family: var(--serif); font-size: 1.2rem; }
.booking-shell-section { padding: 0 0 120px; background: var(--cream); }
.booking-shell { position: relative; z-index: 3; display: grid; grid-template-columns: minmax(0,1fr) 350px; gap: 30px; align-items: start; margin-top: -38px; }
.booking-main { min-width: 0; padding: clamp(28px,5vw,58px); background: var(--paper); box-shadow: var(--shadow-small); }
.booking-progress { display: grid; grid-template-columns: repeat(3,1fr); gap: 0; margin-bottom: 50px; border-bottom: 1px solid var(--line); }
.booking-progress span { position: relative; display: flex; align-items: center; gap: 9px; padding: 0 8px 17px 0; color: #9b929b; font-size: .68rem; font-weight: 730; letter-spacing: .07em; text-transform: uppercase; }
.booking-progress span::after { content: ""; position: absolute; left: 0; right: 0; bottom: -1px; height: 2px; background: var(--wine); transform: scaleX(0); transform-origin: left; }
.booking-progress span.active { color: var(--plum); }
.booking-progress span.active::after { transform: scaleX(1); }
.booking-progress b { width: 26px; height: 26px; display: grid; place-items: center; border: 1px solid currentColor; border-radius: 50%; font-size: .65rem; }
.booking-form { display: grid; gap: 42px; }
.booking-form fieldset { min-width: 0; margin: 0; padding: 0 0 40px; border: 0; border-bottom: 1px solid var(--line); display: grid; gap: 18px; }
.booking-form legend { width: 100%; margin-bottom: 24px; color: var(--plum); font-family: var(--serif); font-size: 1.8rem; }
.booking-form legend span { margin-right: 12px; color: var(--gold); font-family: var(--sans); font-size: .72rem; font-weight: 750; letter-spacing: .1em; }
.booking-action-row { display: flex; align-items: center; flex-wrap: wrap; gap: 18px; }
.secure-note { color: var(--muted); font-size: .75rem; }
.secure-note span { margin-right: 6px; color: var(--gold); }
.booking-summary { position: sticky; top: 24px; padding: 28px; background: var(--plum-deep); color: #fff; box-shadow: var(--shadow-small); }
.booking-summary .eyebrow { color: #e8c4cc; }
.booking-summary > img { width: 100%; aspect-ratio: 1.22; object-fit: cover; margin-bottom: 25px; background: var(--blush); }
.booking-summary h2 { margin-bottom: 25px; color: #fff; font-size: 2rem; }
.booking-summary dl { margin: 0; }
.booking-summary dl > div { display: grid; grid-template-columns: 80px 1fr; gap: 12px; padding: 12px 0; border-top: 1px solid rgba(255,255,255,.15); }
.booking-summary dt { color: rgba(255,255,255,.55); font-size: .65rem; font-weight: 730; letter-spacing: .09em; text-transform: uppercase; }
.booking-summary dd { margin: 0; color: rgba(255,255,255,.87); font-size: .85rem; text-align: right; }
.summary-total { display: flex; align-items: end; justify-content: space-between; gap: 15px; margin-top: 12px; padding: 22px 0; border-top: 1px solid rgba(255,255,255,.26); border-bottom: 1px solid rgba(255,255,255,.26); }
.summary-total span { font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; }
.summary-total strong { font-family: var(--serif); font-size: 1.9rem; font-weight: 400; }
.summary-assurances { list-style: none; margin: 24px 0; padding: 0; color: rgba(255,255,255,.65); font-size: .75rem; }
.summary-assurances li { margin: 9px 0; }
.summary-assurances li::before { content: "✓"; margin-right: 9px; color: #d7b8a1; }
.summary-help { margin: 0; color: rgba(255,255,255,.62); font-size: .75rem; }
.summary-help a { color: #fff; overflow-wrap: anywhere; }
.payment-panel { scroll-margin-top: 25px; margin-top: 50px; padding-top: 45px; border-top: 2px solid var(--plum); }
.payment-panel-heading { display: flex; align-items: start; justify-content: space-between; gap: 20px; }
.payment-panel-heading h2 { margin-bottom: 15px; font-size: 2.6rem; }
.environment-badge { padding: 6px 9px; border-radius: 2px; font-size: .62rem; font-weight: 760; letter-spacing: .1em; text-transform: uppercase; }
.environment-badge.sandbox { background: #f0e2bc; color: #6f531a; }
.environment-badge.live { background: rgba(32,94,72,.12); color: var(--green); }
.payment-intro { padding: 13px 15px; border-left: 3px solid var(--gold); background: var(--cream); font-size: .82rem; }
.payment-tabs { display: grid; grid-template-columns: 1fr 1fr; margin: 28px 0 25px; }
.payment-tab { min-height: 50px; padding: 12px; color: var(--muted); font-size: .75rem; font-weight: 740; letter-spacing: .05em; }
.payment-tab + .payment-tab { border-left: 0; }
.payment-tab.active { background: var(--plum); color: #fff; border-color: var(--plum); }
.payment-method-panel { min-height: 120px; }
.payment-method-panel p { font-size: .86rem; }
.payment-loading { display: flex; align-items: center; justify-content: center; gap: 12px; min-height: 86px; color: var(--muted); font-size: .84rem; }
.payment-loading.large { min-height: 70px; }
.spinner { width: 22px; height: 22px; border: 2px solid rgba(53,31,59,.15); border-top-color: var(--plum); border-radius: 50%; animation: spin .8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
#hosted-fields-form { display: grid; gap: 17px; }
.hosted-field { height: 54px; border: 1px solid rgba(53,31,59,.22); border-radius: 2px; background: var(--paper); transition: border-color 150ms ease, box-shadow 150ms ease; }
.hosted-field.braintree-hosted-fields-focused { border-color: var(--wine); box-shadow: 0 0 0 3px rgba(125,53,82,.11); }
.hosted-field.braintree-hosted-fields-invalid { border-color: var(--red); }
.hosted-field.braintree-hosted-fields-valid { border-color: var(--green); }
.billing-block { display: grid; gap: 16px; margin-top: 6px; padding: 22px; background: var(--cream); border: 1px solid var(--line); }
.billing-heading { display: flex; align-items: baseline; justify-content: space-between; gap: 15px; padding-bottom: 10px; border-bottom: 1px solid var(--line); }
.billing-heading strong { color: var(--plum); font-family: var(--serif); font-size: 1.08rem; font-weight: 400; }
.billing-heading span { color: var(--muted); font-size: .7rem; text-align: right; }
.payment-status { min-height: 26px; margin-top: 18px; padding: 0; color: var(--muted); font-size: .83rem; }
.payment-status.working { color: var(--plum); }
.payment-status.error { padding: 13px 15px; border-left: 3px solid var(--red); background: rgba(154,47,71,.08); color: var(--red); }
.payment-status.warning { padding: 13px 15px; border-left: 3px solid var(--gold); background: rgba(196,160,107,.12); color: #6a4d22; }
.payment-panel .text-button { margin-top: 14px; }
.payment-panel.is-busy { opacity: .87; }
.payment-panel.is-locked [data-payment-tab],
.payment-panel.is-locked #pay-by-card,
.payment-panel.is-locked #paypal-button-container { pointer-events: none; opacity: .55; }
#paypal-button-container { min-height: 48px; }

/* Confirmation / legal */
.confirmation-section { min-height: 680px; display: flex; align-items: center; padding: 100px 0; background: radial-gradient(circle at 50% 0, var(--blush), transparent 45%), var(--cream); }
.confirmation-card { max-width: 830px; padding: clamp(35px,7vw,80px); background: var(--paper); box-shadow: var(--shadow); text-align: center; }
.compact-card { max-width: 680px; }
.confirmation-mark { width: 82px; height: 82px; display: grid; place-items: center; margin: 0 auto 30px; border: 1px solid var(--gold); border-radius: 50%; color: var(--green); font-family: var(--serif); font-size: 2.2rem; }
.confirmation-card h1 { margin-bottom: 24px; font-size: clamp(3rem,6vw,5.2rem); }
.confirmation-reference { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin: 35px 0 25px; padding: 18px 22px; background: var(--plum); color: #fff; text-align: left; }
.confirmation-reference span { font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; }
.confirmation-reference strong { font-family: var(--serif); font-size: 1.25rem; font-weight: 400; letter-spacing: .05em; }
.confirmation-details { margin: 0 0 30px; border-top: 1px solid var(--line); }
.confirmation-details div { display: grid; grid-template-columns: 1fr 1fr; gap: 25px; padding: 14px 0; border-bottom: 1px solid var(--line); text-align: left; }
.confirmation-details dt { color: var(--muted); font-size: .72rem; font-weight: 730; letter-spacing: .08em; text-transform: uppercase; }
.confirmation-details dd { margin: 0; color: var(--plum); text-align: right; }
.confirmation-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 32px; }
.return-error .spinner { display: none; }
.legal-hero { padding: 85px 0; background: var(--plum); }
.legal-hero h1 { margin-bottom: 18px; color: #fff; font-size: clamp(3.2rem,6vw,5.5rem); }
.legal-hero p { max-width: 720px; margin: 0; color: rgba(255,255,255,.7); font-family: var(--serif); font-size: 1.2rem; }
.legal-content { background: var(--paper); }
.legal-grid { display: grid; grid-template-columns: 240px minmax(0,760px); gap: clamp(50px,8vw,110px); justify-content: center; }
.legal-grid aside { position: sticky; top: 30px; align-self: start; display: flex; flex-direction: column; gap: 5px; padding: 22px 0; border-top: 2px solid var(--plum); border-bottom: 1px solid var(--line); color: var(--muted); font-size: .76rem; }
.legal-grid aside strong { color: var(--plum); text-transform: uppercase; letter-spacing: .08em; }
.legal-grid aside a { margin-top: 12px; overflow-wrap: anywhere; }
.legal-grid article h2 { margin: 42px 0 17px; font-size: 2rem; }
.legal-grid article h2:first-child { margin-top: 0; }
.legal-grid article p { line-height: 1.8; }

/* Footer */
.site-footer { position: relative; overflow: hidden; padding-top: 82px; color: #fff; background: var(--plum-deep); }
.footer-flourish { position: absolute; width: 520px; height: 520px; right: -310px; top: -270px; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; }
.footer-grid { display: grid; grid-template-columns: 1.5fr .7fr 1.15fr .95fr; gap: 55px; padding-bottom: 70px; }
.brand-light { color: #fff; }
.footer-brand p { max-width: 330px; margin: 25px 0 0; color: rgba(255,255,255,.6); font-size: .88rem; }
.footer-grid h2 { margin-bottom: 23px; color: #e7c3cb; font-family: var(--sans); font-size: .68rem; font-weight: 760; letter-spacing: .15em; text-transform: uppercase; }
.footer-grid > div:not(.footer-brand) { display: flex; flex-direction: column; align-items: flex-start; }
.footer-grid > div:not(.footer-brand) a { margin: 5px 0; color: rgba(255,255,255,.78); font-size: .82rem; text-decoration: none; }
.footer-grid > div:not(.footer-brand) a:hover { color: #fff; }
.footer-grid > div:not(.footer-brand) p { margin: 14px 0 0; color: rgba(255,255,255,.48); font-size: .75rem; }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; padding: 22px 0 28px; border-top: 1px solid rgba(255,255,255,.13); color: rgba(255,255,255,.45); font-size: .67rem; letter-spacing: .04em; }

/* Admin */
.admin-page { background: #f0ece8; font-size: 14px; }
.admin-header { display: flex; justify-content: space-between; align-items: center; gap: 30px; padding: 28px max(30px, calc((100vw - 1500px)/2)); background: var(--plum-deep); color: #fff; }
.admin-header h1 { margin: 0; color: #fff; font-size: 2.4rem; }
.admin-header .eyebrow { margin-bottom: 8px; }
.admin-header > div:last-child { display: flex; align-items: center; gap: 18px; }
.admin-main { width: min(1500px, calc(100vw - 40px)); margin: 28px auto 80px; }
.admin-metrics { display: grid; grid-template-columns: repeat(7, minmax(150px,1fr)); gap: 12px; overflow-x: auto; padding-bottom: 5px; }
.admin-metrics article { min-width: 150px; padding: 19px; background: #fff; border-top: 3px solid var(--wine); box-shadow: 0 6px 20px rgba(30,20,32,.07); }
.admin-metrics span { display: block; margin-bottom: 9px; color: var(--muted); font-size: .65rem; font-weight: 760; letter-spacing: .08em; text-transform: uppercase; }
.admin-metrics strong { color: var(--plum); font-family: var(--serif); font-size: 1.7rem; font-weight: 400; }
.admin-panel { margin-top: 24px; background: #fff; box-shadow: 0 8px 25px rgba(30,20,32,.06); }
.admin-panel-heading { display: flex; align-items: end; justify-content: space-between; gap: 25px; padding: 22px 24px 18px; border-bottom: 1px solid #e6dfe7; }
.admin-panel-heading .eyebrow { margin-bottom: 4px; }
.admin-panel-heading h2 { margin: 0; font-size: 1.8rem; }
.admin-panel-heading > span { color: var(--muted); font-size: .72rem; }
.table-scroll { overflow: auto; }
table { width: 100%; border-collapse: collapse; min-width: 1120px; }
th, td { padding: 13px 14px; border-bottom: 1px solid #eee8ef; vertical-align: top; text-align: left; }
th { position: sticky; top: 0; z-index: 1; background: #f8f5f7; color: #655a67; font-size: .62rem; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; white-space: nowrap; }
td { max-width: 310px; color: #39313b; font-size: .75rem; }
td small { display: block; margin-top: 4px; color: #817883; font-size: .65rem; line-height: 1.45; overflow-wrap: anywhere; }
td pre { max-width: 380px; max-height: 110px; margin: 0; overflow: auto; white-space: pre-wrap; word-break: break-word; font: 10px/1.4 ui-monospace, SFMono-Regular, Menlo, monospace; }
.status-pill, .severity { display: inline-flex; padding: 4px 7px; border-radius: 20px; font-size: .58rem; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; white-space: nowrap; }
.status-confirmed, .status-completed { background: rgba(32,94,72,.12); color: var(--green); }
.status-payment-pending, .status-pending { background: rgba(196,160,107,.17); color: #76561e; }
.status-payment-failed, .status-denied, .status-reversed { background: rgba(154,47,71,.11); color: var(--red); }
.status-refunded, .status-expired { background: rgba(94,83,99,.12); color: #5e5363; }
.status-payment-review { background: rgba(144,88,26,.13); color: #815014; }
.severity-info { background: rgba(52,80,110,.1); color: #34506e; }
.severity-warn { background: rgba(196,160,107,.17); color: #76561e; }
.severity-error, .severity-critical { background: rgba(154,47,71,.11); color: var(--red); }

/* Motion */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 650ms ease, transform 650ms ease; }
.reveal.revealed { opacity: 1; transform: none; }
.reveal-delay { transition-delay: 110ms; }
.reveal-delay-two { transition-delay: 220ms; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* Responsive */
@media (max-width: 1120px) {
  .primary-nav { gap: 18px; }
  .primary-nav > a:not(.button) { font-size: .67rem; }
  .hero-grid { grid-template-columns: 1.05fr .95fr; }
  .program-grid { gap: 18px; }
  .program-body { padding: 25px; }
  .booking-shell { grid-template-columns: minmax(0,1fr) 310px; }
  .footer-grid { grid-template-columns: 1.2fr .6fr 1fr 1fr; gap: 35px; }
}

@media (max-width: 900px) {
  :root { --container: min(100% - 34px, 760px); }
  .section { padding: 82px 0; }
  .announcement { justify-content: space-between; }
  .nav-shell { min-height: 78px; }
  .menu-toggle { display: block; }
  .primary-nav {
    position: fixed;
    inset: 112px 0 0;
    z-index: 150;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 28px 24px;
    background: var(--paper);
    transform: translateX(100%);
    transition: transform 220ms ease;
  }
  .primary-nav.open { transform: none; }
  .primary-nav > a:not(.button) { padding: 18px 0; border-bottom: 1px solid var(--line); font-size: .8rem; }
  .primary-nav > a:not(.button)::after { display: none; }
  .primary-nav .button { margin-top: 24px; }
  .hero { min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; padding: 76px 0 90px; }
  .hero-copy { max-width: 720px; }
  .hero-visual { max-width: 520px; margin: 0 auto; }
  .hero-scroll { display: none; }
  .split-intro, .contact-grid, .editorial-grid { grid-template-columns: 1fr; gap: 32px; }
  .editorial-number { display: none; }
  .program-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .program-grid-featured .program-card:last-child { grid-column: 1 / -1; max-width: calc(50% - 9px); }
  .pathway-grid { grid-template-columns: 1fr; }
  .pathway-art { min-height: 440px; padding: 60px 50px 0; justify-content: center; }
  .pathway-art img { max-width: 480px; }
  .pathway-copy { padding: 70px 0 85px; border-left: 0; border-top: 1px solid var(--white-line); }
  .value-grid { grid-template-columns: 1fr; }
  .value-card { min-height: 0; }
  .value-card > span { margin-bottom: 34px; }
  .page-hero-grid { min-height: 480px; grid-template-columns: 1fr .6fr; gap: 30px; }
  .booking-banner-inner { align-items: flex-start; flex-direction: column; }
  .booking-shell { grid-template-columns: 1fr; }
  .booking-summary { position: static; grid-row: 1; display: grid; grid-template-columns: 130px 1fr; gap: 0 22px; }
  .booking-summary .eyebrow { grid-column: 1 / -1; }
  .booking-summary > img { grid-row: 2 / span 3; }
  .booking-summary h2 { margin-bottom: 10px; }
  .booking-summary dl, .summary-total, .summary-assurances, .summary-help { grid-column: 2; }
  .contact-details { position: static; }
  .footer-grid { grid-template-columns: repeat(2,1fr); }
  .footer-brand { grid-column: 1 / -1; }
  .legal-grid { grid-template-columns: 1fr; }
  .legal-grid aside { position: static; }
}

@media (max-width: 620px) {
  :root { --container: calc(100% - 28px); }
  body { font-size: 15px; }
  .section { padding: 68px 0; }
  .announcement span { display: none; }
  .announcement { justify-content: center; min-height: 31px; }
  .primary-nav { inset: 109px 0 0; }
  .brand-copy strong { font-size: 1.02rem; }
  .brand-copy span { font-size: .56rem; }
  .brand img { width: 45px; height: 45px; }
  .hero-grid { padding-top: 60px; }
  .hero h1 { font-size: clamp(3.2rem, 15vw, 5rem); }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .hero-notes { flex-direction: column; gap: 10px; }
  .hero-seal { right: -4px; width: 102px; }
  .section-topline { align-items: flex-start; flex-direction: column; }
  .program-grid, .philosophy-grid { grid-template-columns: 1fr; }
  .program-grid-featured .program-card:last-child { grid-column: auto; max-width: none; }
  .program-body p { min-height: 0; }
  .pathway-art { min-height: 340px; padding: 45px 20px 0; }
  .pathway-copy { padding: 55px 0 68px; }
  .page-hero-grid { min-height: auto; grid-template-columns: 1fr; padding: 62px 0; }
  .page-hero img { max-height: 260px; justify-self: center; }
  .page-hero h1 { font-size: clamp(3.1rem,14vw,4.8rem); }
  .two-columns, .billing-columns { grid-template-columns: 1fr; }
  .form-card { padding: 28px 22px; }
  .booking-intro { padding: 58px 0 75px; }
  .booking-main { padding: 28px 20px; }
  .booking-shell { margin-top: -25px; }
  .booking-progress { grid-template-columns: 1fr; gap: 8px; border: 0; }
  .booking-progress span { padding: 7px 0; }
  .booking-progress span::after { display: none; }
  .booking-progress span:not(.active) { display: none; }
  .booking-summary { display: block; padding: 24px; }
  .booking-summary > img { max-height: 220px; }
  .booking-summary dl, .summary-total, .summary-assurances, .summary-help { grid-column: auto; }
  .payment-panel-heading { align-items: flex-start; flex-direction: column-reverse; }
  .payment-tabs { grid-template-columns: 1fr; }
  .payment-tab + .payment-tab { border-left: 1px solid var(--line); border-top: 0; }
  .card-columns { grid-template-columns: 1fr 1fr; }
  .billing-block { padding: 18px; }
  .billing-heading { align-items: flex-start; flex-direction: column; }
  .billing-heading span { text-align: left; }
  .confirmation-card { padding: 35px 22px; }
  .confirmation-reference { align-items: flex-start; flex-direction: column; }
  .confirmation-details div { grid-template-columns: 1fr; gap: 2px; }
  .confirmation-details dd { text-align: left; }
  .legal-hero { padding: 62px 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; gap: 8px; }
  .admin-header { align-items: flex-start; flex-direction: column; padding: 24px 20px; }
  .admin-header > div:last-child { align-items: flex-start; flex-direction: column; }
  .admin-main { width: calc(100% - 20px); }
}
