:root {
  --deepest: #0a2742;
  --deep: #123d5b;
  --deep-soft: #1b526f;
  --turquoise: #79cfe8;
  --turquoise-bright: #bceeff;
  --aqua: #e9f8fe;
  --ivory: #fcfeff;
  --sand: #f3f8fb;
  --coral: #4faed3;
  --coral-action: #0d6f9c;
  --ink-muted: #506d80;
  --line: rgba(10, 39, 66, 0.18);
  --line-light: rgba(255, 255, 255, 0.24);
  --serif: "DM Serif Display", Georgia, serif;
  --sans: "Manrope", Arial, sans-serif;
  --max: 1180px;
  --gutter: clamp(1.1rem, 4vw, 4rem);
  --section: clamp(5.25rem, 9vw, 8.5rem);
  --shadow: 0 30px 80px rgba(10, 39, 66, 0.14);
  --ease: cubic-bezier(0.2, 0.72, 0.25, 1);
  color-scheme: light;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

body {
  margin: 0;
  overflow-x: clip;
  background: linear-gradient(180deg, #f9fdff 0, var(--ivory) 38rem);
  color: var(--deep);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

img,
svg,
video,
iframe {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

button,
input,
select,
textarea {
  color: inherit;
  font: inherit;
}

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

a {
  color: inherit;
}

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

h1,
h2,
h3 {
  text-wrap: balance;
}

h1,
h2 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.035em;
}

h1 {
  margin-bottom: 1.5rem;
  font-size: clamp(3.25rem, 7.2vw, 7rem);
  line-height: 0.93;
}

h2 {
  margin-bottom: 1.4rem;
  font-size: clamp(2.55rem, 5vw, 4.9rem);
  line-height: 0.98;
}

h3 {
  margin-bottom: 0.75rem;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  line-height: 1.18;
  letter-spacing: -0.025em;
}

::selection {
  background: var(--turquoise-bright);
  color: var(--deepest);
}

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

[hidden] {
  display: none !important;
}

.container {
  width: min(var(--max), calc(100% - (var(--gutter) * 2)));
  margin-inline: auto;
}

.narrow {
  width: min(780px, calc(100% - (var(--gutter) * 2)));
  margin-inline: auto;
}

.section {
  position: relative;
  padding-block: var(--section);
}

.section-sand {
  background: linear-gradient(135deg, var(--sand), #eaf7fd);
}

.section-aqua {
  background: linear-gradient(135deg, var(--aqua), #dff4fc);
}

.section-deep {
  background: var(--deepest);
  color: var(--ivory);
}

.section-rule {
  border-top: 1px solid var(--line);
}

.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 1000;
  padding: 0.75rem 1rem;
  transform: translateY(-180%);
  background: var(--ivory);
  color: var(--deepest);
  font-size: 0.8rem;
  font-weight: 800;
  text-decoration: none;
}

.skip-link:focus {
  transform: none;
}

.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;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0 0 1.2rem;
  color: var(--coral-action);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 1.65rem;
  height: 1px;
  background: currentColor;
  content: "";
}

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

.lede {
  max-width: 42rem;
  color: var(--ink-muted);
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
  line-height: 1.7;
}

.section-deep .lede,
.on-deep {
  color: rgba(252, 254, 255, 0.72);
}

.fine-print {
  color: var(--ink-muted);
  font-size: 0.76rem;
  line-height: 1.55;
}

.text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 0.7rem;
  color: var(--coral-action);
  font-size: 0.875rem;
  font-weight: 800;
  text-underline-offset: 0.32rem;
}

.text-link::after {
  content: "↗";
  transition: transform 180ms ease;
}

.text-link:hover::after {
  transform: translate(0.18rem, -0.18rem);
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  border: 1px solid transparent;
  padding: 0.78rem 1.05rem;
  background: var(--coral-action);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms var(--ease), background 180ms ease, color 180ms ease;
}

.button::after {
  content: "↗";
}

.button:hover {
  transform: translateY(-2px);
  background: #085a82;
}

.button:active {
  transform: translateY(0);
}

.button:disabled {
  cursor: not-allowed;
  opacity: 0.58;
  transform: none;
}

.button-secondary {
  border-color: currentColor;
  background: transparent;
  color: var(--deep);
}

.button-secondary:hover {
  background: var(--deep);
  color: var(--ivory);
}

.section-deep .button-secondary {
  color: var(--ivory);
}

.section-deep .button-secondary:hover,
.hero .button-secondary:hover,
.page-hero .button-secondary:hover {
  background: var(--ivory);
  color: var(--deepest);
}

.hero .button-secondary,
.page-hero .button-secondary {
  color: var(--ivory);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

/* Header and navigation */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid transparent;
  background: rgba(249, 253, 255, 0.96);
  backdrop-filter: blur(16px);
  color: var(--deepest);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 10px 30px rgba(10, 39, 66, 0.08);
}

.nav-shell {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.brand {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  gap: 0.7rem;
  color: var(--deepest);
  text-decoration: none;
}

.brand img {
  width: 46px;
  height: 46px;
  object-fit: cover;
  border: 1px solid rgba(10, 39, 66, 0.1);
  border-radius: 50%;
}

.brand span {
  max-width: 6rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  line-height: 1.08;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(0.8rem, 1.5vw, 1.45rem);
  font-size: 0.82rem;
  font-weight: 700;
}

.site-nav > a,
.nav-parent {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  border: 0;
  padding: 0;
  background: transparent;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

.site-nav > a:hover,
.site-nav > a[aria-current="page"],
.nav-parent:hover {
  color: var(--coral-action);
}

.nav-parent::after {
  margin-left: 0.35rem;
  content: "⌄";
  font-size: 0.85rem;
}

.nav-group {
  position: relative;
}

.submenu {
  position: absolute;
  top: calc(100% + 0.55rem);
  left: -1rem;
  min-width: 13.5rem;
  padding: 0.6rem;
  border: 1px solid var(--line);
  background: var(--ivory);
  box-shadow: var(--shadow);
}

.submenu a {
  min-height: 42px;
  display: flex;
  align-items: center;
  padding: 0.55rem 0.65rem;
  text-decoration: none;
}

.submenu a:hover,
.submenu a[aria-current="page"] {
  background: var(--aqua);
  color: var(--deepest);
}

.nav-cta {
  min-height: 44px !important;
  padding: 0.55rem 0.78rem !important;
  border-radius: 999px;
  background: var(--coral-action) !important;
  color: #fff !important;
}

.nav-cta::after {
  margin-left: 0.5rem;
  content: "↗";
}

.menu-toggle {
  width: 48px;
  height: 48px;
  display: none;
  place-items: center;
  border: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle::before {
  width: 22px;
  height: 2px;
  display: block;
  background: currentColor;
  content: "";
  transition: transform 180ms ease;
}

.menu-toggle span {
  margin-top: 5px;
}

.menu-toggle[aria-expanded="true"]::before {
  transform: translateY(3.5px) rotate(45deg);
}

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

/* Home */
.hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(4.7rem, 8vw, 7.6rem);
  background:
    radial-gradient(circle at 86% 16%, rgba(121, 207, 232, 0.23), transparent 31rem),
    linear-gradient(135deg, #0a2742, #103d5d 64%, #155778);
  color: var(--ivory);
}

.hero::before {
  position: absolute;
  top: -18rem;
  right: -13rem;
  width: 43rem;
  height: 43rem;
  border: 1px solid rgba(188, 238, 255, 0.26);
  border-radius: 50%;
  content: "";
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(330px, 0.75fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 8rem);
}

.hero-copy h1 {
  max-width: 780px;
}

.hero-copy h1 em {
  display: inline;
  color: var(--turquoise-bright);
  font-weight: 400;
}

.hero-copy .lede {
  margin-bottom: 2rem;
}

.portrait-stage {
  position: relative;
  min-height: 580px;
}

.portrait-stage::before {
  position: absolute;
  inset: 1.2rem -1.2rem -1.2rem 1.2rem;
  border: 1px solid var(--turquoise);
  content: "";
}

.portrait-stage img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  clip-path: polygon(0 0, 100% 0, 100% 90%, 87% 100%, 0 100%);
}

.portrait-note {
  position: absolute;
  right: -1rem;
  bottom: 2.4rem;
  max-width: 15rem;
  padding: 1rem 1.1rem;
  background: var(--ivory);
  color: var(--deepest);
  font-family: var(--serif);
  font-size: 1.25rem;
  font-style: italic;
  line-height: 1.1;
}

.trust-strip {
  border-bottom: 1px solid var(--line);
  background: var(--ivory);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-item {
  min-height: 108px;
  display: flex;
  align-items: center;
  padding: 1.25rem 1.5rem;
  border-left: 1px solid var(--line);
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.45;
}

.trust-item:first-child {
  border-left: 0;
}

.recognition-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(3rem, 9vw, 8rem);
}

.chapter-marker {
  display: grid;
  align-content: start;
  grid-template-columns: 2rem 1fr;
  gap: 1rem;
  color: var(--coral-action);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.chapter-marker::after {
  width: 1px;
  min-height: 8rem;
  margin: 1rem 0 0 0.35rem;
  background: linear-gradient(var(--coral), var(--turquoise));
  content: "";
}

.recognition-copy h2 {
  max-width: 830px;
}

.recognition-copy > p {
  max-width: 760px;
  color: var(--ink-muted);
  font-size: 1.06rem;
}

.recognition-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin-top: 2.6rem;
  border-top: 1px solid var(--line);
}

.recognition-list p {
  min-height: 110px;
  margin: 0;
  padding: 1.3rem 1.3rem 1.3rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--deep);
  font-size: 0.9rem;
  font-weight: 600;
}

.recognition-list p:nth-child(odd) {
  border-right: 1px solid var(--line);
}

.recognition-list p:nth-child(even) {
  padding-left: 1.3rem;
}

.outcomes-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(3rem, 8vw, 7rem);
}

.outcome-list {
  border-top: 1px solid var(--line-light);
}

.outcome-row {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1rem;
  padding-block: 1.35rem;
  border-bottom: 1px solid var(--line-light);
}

.outcome-row span {
  color: var(--turquoise-bright);
  font-size: 0.72rem;
  font-weight: 800;
}

.outcome-row p {
  margin: 0;
  color: rgba(252, 254, 255, 0.78);
}

.work-heading,
.proof-heading,
.resources-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 3rem;
  margin-bottom: 3.2rem;
}

.work-heading h2,
.proof-heading h2,
.resources-heading h2 {
  max-width: 760px;
  margin-bottom: 0;
}

.heading-aside {
  max-width: 300px;
  margin: 0 0 0.5rem;
  color: var(--ink-muted);
  font-size: 0.86rem;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--deep);
}

.work-card {
  min-height: 390px;
  display: flex;
  flex-direction: column;
  padding: 2rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--deep);
}

.work-card:first-child {
  border-left: 1px solid var(--line);
}

.work-card-featured {
  background: var(--deep);
  color: var(--ivory);
}

.work-index {
  color: var(--coral-action);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.work-card-featured .work-index {
  color: var(--turquoise-bright);
}

.work-card h3 {
  margin-top: 5rem;
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 400;
}

.work-card p {
  color: var(--ink-muted);
  font-size: 0.9rem;
}

.work-card-featured p {
  color: rgba(252, 254, 255, 0.68);
}

.work-card .text-link {
  margin-top: auto;
}

.work-card-featured .text-link {
  color: var(--turquoise-bright);
}

.spark-layout {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: clamp(3rem, 8vw, 8rem);
}

.spark-intro {
  position: sticky;
  top: 8rem;
  align-self: start;
}

.spark-intro h2 {
  max-width: 500px;
}

.spark-track {
  position: relative;
}

.spark-track::before {
  position: absolute;
  top: 1.4rem;
  bottom: 1.4rem;
  left: 1.75rem;
  width: 1px;
  background: linear-gradient(var(--coral), var(--turquoise), var(--deep));
  content: "";
}

.spark-step {
  position: relative;
  display: grid;
  grid-template-columns: 3.5rem 1fr;
  gap: 1.5rem;
  padding-block: 1.2rem 2.2rem;
}

.spark-letter {
  position: relative;
  z-index: 1;
  width: 3.5rem;
  height: 3.5rem;
  display: grid;
  place-items: center;
  border: 1px solid var(--deep);
  background: var(--sand);
  color: var(--coral-action);
  font-family: var(--serif);
  font-size: 1.8rem;
}

.spark-step h3 {
  margin: 0.35rem 0 0.35rem;
  font-family: var(--serif);
  font-size: 1.75rem;
  font-weight: 400;
}

.spark-step p {
  max-width: 580px;
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.9rem;
}

.about-preview-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.84fr) minmax(0, 1.16fr);
  align-items: center;
  gap: clamp(3rem, 9vw, 8rem);
}

.about-image {
  position: relative;
}

.about-image::after {
  position: absolute;
  right: -1.2rem;
  bottom: -1.2rem;
  width: 45%;
  height: 45%;
  border-right: 1px solid var(--coral);
  border-bottom: 1px solid var(--coral);
  content: "";
}

.about-image img {
  width: 100%;
  aspect-ratio: 0.88;
  object-fit: cover;
  object-position: center top;
}

.credential-line {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-block: 2rem;
  padding-block: 1rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-size: 0.78rem;
  font-weight: 700;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.875fr 0.875fr;
  gap: 1px;
  background: var(--line-light);
}

.testimonial {
  min-height: 390px;
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 2rem;
  background: var(--deep-soft);
}

.testimonial-featured {
  background: var(--sand);
  color: var(--deepest);
}

.testimonial blockquote {
  margin: 4rem 0 2rem;
  color: var(--ivory);
  font-family: var(--serif);
  font-size: clamp(1.65rem, 2.4vw, 2.5rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.testimonial-featured blockquote {
  color: var(--deepest);
  font-size: clamp(2rem, 3vw, 3.15rem);
}

.testimonial figcaption {
  margin-top: auto;
  color: var(--turquoise-bright);
  font-size: 0.74rem;
  font-weight: 800;
}

.testimonial-featured figcaption {
  color: var(--coral-action);
}

/* Google review proof */
.section-reviews {
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 12%, rgba(121, 207, 232, 0.34), transparent 25rem),
    linear-gradient(135deg, #edf9fe, #f9fdff 58%, #e7f6fc);
}

.review-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 2rem;
  margin-bottom: 3rem;
}

.review-heading h2 {
  max-width: 760px;
  margin-bottom: 0;
}

.review-source {
  min-width: 230px;
  padding: 1.1rem 1.25rem;
  border: 1px solid rgba(13, 111, 156, 0.2);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 18px 50px rgba(10, 39, 66, 0.08);
}

.google-label {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.45rem;
  color: var(--deepest);
  font-weight: 800;
}

.google-mark {
  width: 2rem;
  height: 2rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  color: #4285f4;
  box-shadow: inset 0 0 0 1px rgba(10, 39, 66, 0.12);
  font: 800 1rem/1 var(--sans);
}

.review-stars {
  color: #e8a100;
  font-size: 1rem;
  letter-spacing: 0.1em;
}

.google-review-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.google-review {
  min-height: 310px;
  display: flex;
  flex-direction: column;
  padding: clamp(1.35rem, 3vw, 2rem);
  border: 1px solid rgba(13, 111, 156, 0.16);
  border-radius: 1.2rem;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 20px 55px rgba(10, 39, 66, 0.08);
}

.google-review .review-stars {
  margin-bottom: 1.6rem;
}

.google-review blockquote {
  margin: 0 0 2rem;
  color: var(--deep);
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.25vw, 2rem);
  line-height: 1.2;
}

.google-review figcaption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: auto;
  color: var(--ink-muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.google-review figcaption span:last-child {
  color: var(--coral-action);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.review-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-top: 2rem;
  color: var(--ink-muted);
  font-size: 0.78rem;
}

.review-footer p {
  max-width: 680px;
  margin: 0;
}

.guide-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  gap: clamp(3rem, 8vw, 7rem);
}

.guide-cover {
  position: relative;
  min-height: 440px;
  display: grid;
  align-content: space-between;
  padding: 2rem;
  overflow: hidden;
  background: var(--turquoise);
  color: var(--deepest);
}

.guide-cover::before,
.guide-cover::after {
  position: absolute;
  border: 1px solid rgba(10, 39, 66, 0.32);
  border-radius: 50%;
  content: "";
}

.guide-cover::before {
  width: 28rem;
  height: 28rem;
  right: -13rem;
  bottom: -11rem;
}

.guide-cover::after {
  width: 18rem;
  height: 18rem;
  right: -6rem;
  bottom: -6rem;
  border-color: var(--coral-action);
}

.guide-cover strong,
.guide-cover p {
  position: relative;
  z-index: 1;
}

.guide-cover strong {
  max-width: 15rem;
  font-family: var(--serif);
  font-size: 3.2rem;
  font-weight: 400;
  line-height: 0.95;
}

.guide-cover p {
  margin: 0;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.form {
  display: grid;
  gap: 1rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

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

.field label,
.form legend {
  color: var(--deep);
  font-size: 0.875rem;
  font-weight: 800;
}

.field label span {
  color: var(--ink-muted);
  font-weight: 500;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 0;
  padding: 0.78rem 0.85rem;
  background: rgba(255, 255, 255, 0.82);
  color: var(--deepest);
  font-size: 0.9rem;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--deep-soft);
  box-shadow: 0 0 0 3px rgba(121, 207, 232, 0.18);
}

textarea {
  min-height: 110px;
  resize: vertical;
}

input[aria-invalid="true"],
select[aria-invalid="true"],
textarea[aria-invalid="true"] {
  border-color: var(--coral-action);
  box-shadow: 0 0 0 2px rgba(182, 64, 60, 0.14);
}

.check-row {
  display: grid;
  grid-template-columns: 1.2rem 1fr;
  gap: 0.65rem;
  align-items: start;
  color: var(--ink-muted);
  font-size: 0.74rem;
  line-height: 1.5;
}

.check-row input {
  width: 18px;
  height: 18px;
  min-height: 0;
  margin-top: 0.12rem;
  padding: 0;
  accent-color: var(--coral-action);
}

.field-error {
  min-height: 1.1rem;
  color: var(--coral-action);
  font-size: 0.72rem;
  font-weight: 700;
}

.form-status {
  min-height: 2rem;
  margin: 0;
  padding: 0.3rem 0;
  color: var(--ink-muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.form-status.error {
  color: var(--coral-action);
}

.form-status.success {
  color: #17645c;
}

.event-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 8vw, 7rem);
}

.empty-event {
  position: relative;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2rem;
  overflow: hidden;
  background: var(--deep);
  color: var(--ivory);
}

.empty-event::after {
  position: absolute;
  right: -6rem;
  bottom: -8rem;
  width: 20rem;
  height: 20rem;
  border: 1px solid var(--turquoise);
  border-radius: 50%;
  content: "";
}

.empty-event .status-tag {
  position: relative;
  z-index: 1;
  color: var(--turquoise-bright);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.empty-event h3 {
  position: relative;
  z-index: 1;
  max-width: 24rem;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 400;
}

.home-event-upcoming {
  background: var(--deepest);
}

.home-event-upcoming::before {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 7px rgba(79, 174, 211, 0.14);
  content: "";
}

.home-event-actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
}

.home-event-actions .text-link {
  color: var(--turquoise-bright);
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.74fr 1.26fr;
  gap: clamp(3rem, 8vw, 7rem);
}

.faq-list {
  border-top: 1px solid var(--line);
}

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

.faq-list summary {
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem 0;
  font-weight: 700;
  list-style: none;
  cursor: pointer;
}

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

.faq-list summary::after {
  color: var(--coral-action);
  content: "+";
  font-size: 1.5rem;
  font-weight: 400;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  max-width: 660px;
  margin: 0;
  padding: 0 3rem 1.4rem 0;
  color: var(--ink-muted);
  font-size: 0.9rem;
}

.final-cta {
  text-align: left;
}

.final-cta-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: end;
  gap: 3rem;
}

.final-cta h2 {
  max-width: 820px;
  margin-bottom: 0;
}

/* Interior pages */
.page-hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(5rem, 9vw, 8rem);
  background: var(--deepest);
  color: var(--ivory);
}

.page-hero::after {
  position: absolute;
  top: 2rem;
  right: -7rem;
  width: 26rem;
  height: 26rem;
  border: 1px solid rgba(188, 238, 255, 0.22);
  border-radius: 50%;
  content: "";
}

.page-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: end;
  gap: 4rem;
}

.page-hero h1 {
  max-width: 850px;
  font-size: clamp(3.35rem, 6.5vw, 6.4rem);
}

.page-hero-aside {
  padding: 1.5rem 0 0 1.5rem;
  border-left: 1px solid var(--turquoise);
  color: rgba(252, 254, 255, 0.7);
  font-size: 0.88rem;
}

.fit-grid,
.two-column,
.connect-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(2.5rem, 7vw, 6rem);
}

.fit-panel {
  padding-top: 1.5rem;
  border-top: 3px solid var(--turquoise);
}

.fit-panel.not-fit {
  border-color: var(--coral-action);
}

.check-list,
.plain-list {
  display: grid;
  gap: 0;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.check-list li,
.plain-list li {
  position: relative;
  padding: 1rem 0 1rem 1.8rem;
  border-bottom: 1px solid var(--line);
  color: var(--ink-muted);
  font-size: 0.9rem;
}

.check-list li::before {
  position: absolute;
  top: 1rem;
  left: 0;
  color: var(--coral-action);
  content: "↗";
  font-weight: 800;
}

.detail-table {
  border-top: 1px solid var(--line);
}

.detail-row {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 1.5rem;
  padding-block: 1.2rem;
  border-bottom: 1px solid var(--line);
}

.detail-row dt {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.detail-row dd {
  margin: 0;
  color: var(--ink-muted);
}

.content-token {
  display: inline-block;
  padding: 0.28rem 0.45rem;
  border: 1px dashed var(--coral-action);
  background: rgba(79, 174, 211, 0.08);
  color: var(--coral-action);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.76rem;
  overflow-wrap: anywhere;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-light);
}

.process-step {
  min-height: 250px;
  padding: 1.6rem;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.process-step:first-child {
  border-left: 1px solid var(--line-light);
}

.process-step > span {
  color: var(--turquoise-bright);
  font-size: 0.72rem;
  font-weight: 800;
}

.process-step h3 {
  margin-top: 3rem;
  color: var(--ivory);
}

.process-step p {
  color: rgba(252, 254, 255, 0.67);
  font-size: 0.88rem;
}

.scope-note {
  padding: 1.2rem 1.4rem;
  border-left: 3px solid var(--turquoise);
  background: var(--aqua);
  color: var(--deep);
  font-size: 0.84rem;
}

.event-state-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.event-state-card {
  min-height: 280px;
  padding: 1.6rem;
  border-top: 2px solid var(--turquoise);
  background: var(--ivory);
}

.event-state-card.is-current {
  background: var(--deep);
  color: var(--ivory);
}

.event-state-card p {
  color: var(--ink-muted);
  font-size: 0.86rem;
}

.event-state-card.is-current p {
  color: rgba(252, 254, 255, 0.68);
}

/* Events — gathering-led editorial system */
.events-hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(4.75rem, 8vw, 7.4rem);
  background: var(--deepest);
  color: var(--ivory);
}

.events-hero::before {
  position: absolute;
  top: 50%;
  right: clamp(-20rem, -10vw, -7rem);
  width: clamp(30rem, 48vw, 46rem);
  aspect-ratio: 1;
  border: 1px solid rgba(188, 238, 255, 0.18);
  border-radius: 50%;
  content: "";
  transform: translateY(-50%);
}

.events-hero::after {
  position: absolute;
  top: 50%;
  right: clamp(-9rem, -2vw, 2rem);
  width: clamp(18rem, 29vw, 28rem);
  aspect-ratio: 1;
  border: 1px solid rgba(79, 174, 211, 0.32);
  border-radius: 50%;
  content: "";
  transform: translateY(-50%);
}

.events-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.7fr);
  align-items: center;
  gap: clamp(3rem, 9vw, 8rem);
}

.events-hero-copy h1 {
  max-width: 800px;
  font-size: clamp(3.6rem, 7.4vw, 7.4rem);
}

.events-hero-copy h1 em {
  color: var(--turquoise-bright);
  font-weight: 400;
}

.events-hero-copy .lede {
  margin-bottom: 2rem;
}

.next-date-card {
  min-height: 470px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(1.5rem, 3vw, 2.35rem);
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(18, 61, 91, 0.62);
  backdrop-filter: blur(8px);
}

.next-date-top,
.event-story-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.next-date-top {
  color: rgba(252, 254, 255, 0.72);
}

.preview-flag,
.preview-note {
  display: inline-flex;
  align-items: center;
  border: 1px solid currentColor;
  padding: 0.28rem 0.48rem;
  color: var(--turquoise-bright);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.2;
  text-transform: uppercase;
}

.next-date-card time {
  display: flex;
  align-items: end;
  gap: 1rem;
  padding-block: 2rem;
  border-block: 1px solid rgba(255, 255, 255, 0.18);
}

.next-date-card time strong {
  font-family: var(--serif);
  font-size: clamp(6.5rem, 12vw, 10rem);
  font-weight: 400;
  letter-spacing: -0.08em;
  line-height: 0.7;
}

.next-date-card time span {
  color: var(--turquoise-bright);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.25;
  text-transform: uppercase;
}

.next-date-kicker {
  margin-bottom: 0.2rem;
  font-family: var(--serif);
  font-size: 1.55rem;
}

.next-date-kicker + p {
  margin: 0;
  color: rgba(252, 254, 255, 0.66);
  font-size: 0.82rem;
}

.event-feature-section::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: 3rem;
  background: var(--coral-action);
  content: "";
}

.event-feature-grid,
.event-list-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 0.72fr);
  gap: clamp(3rem, 9vw, 9rem);
  align-items: start;
}

.event-feature-intro h2 {
  max-width: 720px;
}

.event-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 2rem;
}

.event-chips span {
  border: 1px solid var(--line);
  padding: 0.5rem 0.7rem;
  color: var(--deep);
  font-size: 0.75rem;
  font-weight: 700;
}

.event-ticket {
  position: relative;
  padding: clamp(1.45rem, 3vw, 2.25rem);
  background: var(--sand);
  box-shadow: var(--shadow);
}

.event-ticket::before,
.event-ticket::after {
  position: absolute;
  top: 53%;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: var(--ivory);
  content: "";
}

.event-ticket::before {
  left: -0.75rem;
}

.event-ticket::after {
  right: -0.75rem;
}

.ticket-status {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.4rem;
  color: #17645c;
  font-size: 0.78rem;
  font-weight: 800;
}

.status-dot {
  width: 0.62rem;
  height: 0.62rem;
  border-radius: 50%;
  background: #218779;
  box-shadow: 0 0 0 5px rgba(33, 135, 121, 0.12);
}

.event-facts {
  margin: 0;
  border-top: 1px solid var(--line);
}

.event-facts > div {
  display: grid;
  grid-template-columns: 5rem 1fr;
  gap: 1rem;
  padding-block: 0.95rem;
  border-bottom: 1px solid var(--line);
}

.event-facts dt {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.event-facts dd {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 650;
}

.event-facts .preview-note {
  margin-left: 0.35rem;
  color: var(--coral-action);
  vertical-align: middle;
}

.event-address-note {
  margin: 1rem 0 1.25rem;
  color: var(--ink-muted);
  font-size: 0.8rem;
}

.button-wide {
  width: 100%;
}

.event-ticket .fine-print {
  margin: 1rem 0 0;
}

.event-archive-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 3rem;
  margin-bottom: 2.3rem;
}

.event-archive-heading h2 {
  margin-bottom: 0;
}

.event-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
  border-bottom: 1px solid var(--line);
}

.event-tabs button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  border: 0;
  border-bottom: 3px solid transparent;
  padding: 0.8rem 1.25rem;
  background: transparent;
  color: var(--ink-muted);
  font-size: 0.82rem;
  font-weight: 800;
  cursor: pointer;
}

.event-tabs button:hover,
.event-tabs button[aria-selected="true"] {
  border-bottom-color: var(--coral-action);
  color: var(--deepest);
}

.event-tabs button span {
  color: var(--coral-action);
  font-size: 0.7rem;
}

.event-stories {
  display: grid;
  gap: clamp(4rem, 9vw, 8rem);
}

.event-story {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  align-items: center;
  gap: clamp(2rem, 7vw, 7rem);
}

.event-story[hidden] {
  display: none;
}

.event-story-reverse .event-story-image {
  order: 2;
}

.event-story-image {
  position: relative;
  margin: 0;
}

.event-story-image::after {
  position: absolute;
  inset: 1rem -1rem -1rem 1rem;
  z-index: 0;
  border: 1px solid var(--turquoise);
  content: "";
}

.event-story-image img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  filter: saturate(0.78) contrast(1.04);
}

.event-story:nth-child(2) .event-story-image img {
  object-position: 55% center;
}

.event-story-image figcaption {
  position: relative;
  z-index: 1;
  margin-top: 0.65rem;
  color: var(--ink-muted);
  font-size: 0.7rem;
}

.event-story-meta {
  justify-content: flex-start;
  color: var(--coral-action);
}

.event-story-meta span + span::before {
  margin-right: 0.75rem;
  color: var(--line);
  content: "·";
}

.event-story-number {
  margin: 2.4rem 0 0.5rem;
  color: rgba(18, 61, 91, 0.14);
  font-family: var(--serif);
  font-size: clamp(4rem, 8vw, 7rem);
  letter-spacing: -0.06em;
  line-height: 0.75;
}

.event-story h3 {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4.6vw, 4.5rem);
  font-weight: 400;
}

.event-story-copy > p:not(.event-story-number, .fine-print) {
  max-width: 610px;
  color: var(--ink-muted);
}

.event-story blockquote {
  max-width: 620px;
  margin: 2rem 0 1.2rem;
  padding-left: 1.2rem;
  border-left: 3px solid var(--turquoise);
  color: var(--deepest);
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  font-style: italic;
  line-height: 1.25;
}

.online-events-empty {
  min-height: 250px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
  padding: 2rem;
  border: 1px solid var(--line);
  background: var(--ivory);
}

.online-events-empty > span {
  width: 4.5rem;
  height: 4.5rem;
  display: grid;
  place-items: center;
  border: 1px solid var(--turquoise);
  border-radius: 50%;
  color: var(--coral-action);
  font-family: var(--serif);
  font-size: 2.6rem;
}

.online-events-empty h3 {
  margin-bottom: 0.35rem;
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 400;
}

.online-events-empty p {
  max-width: 600px;
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.9rem;
}

.event-principles {
  background: linear-gradient(90deg, var(--ivory) 0 50%, var(--aqua) 50% 100%);
}

.event-list-layout {
  grid-template-columns: 0.82fr 0.78fr;
  align-items: center;
}

.event-list-form {
  padding: clamp(1.4rem, 3vw, 2.2rem);
  border: 1px solid var(--line-light);
  background: rgba(255, 255, 255, 0.05);
}

.event-list-form .field label,
.event-list-form legend {
  color: var(--ivory);
}

.event-preference {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.7rem;
  margin: 0;
  padding: 0;
  border: 0;
}

.event-preference legend {
  margin-bottom: 0.45rem;
}

.event-preference label {
  min-height: 48px;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  border: 1px solid var(--line-light);
  padding: 0.75rem;
  color: var(--ivory);
  font-size: 0.8rem;
  font-weight: 700;
}

.event-preference input {
  width: 18px;
  height: 18px;
  min-height: 0;
  margin: 0;
  accent-color: var(--turquoise);
}

@media (hover: hover) {
  .event-story-image img {
    transition: filter 400ms var(--ease), transform 400ms var(--ease);
  }

  .event-story:hover .event-story-image img {
    filter: saturate(1) contrast(1.02);
    transform: translate(-0.25rem, -0.25rem);
  }
}

/* Event registration — the circle becomes the interface */
.registration-bar {
  border-bottom: 1px solid var(--line);
  background: var(--ivory);
}

.registration-bar-inner {
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.registration-bar a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: var(--coral-action);
  font-size: 0.8rem;
  font-weight: 800;
  text-underline-offset: 0.3rem;
}

.registration-bar ol {
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
  color: var(--ink-muted);
  counter-reset: steps;
  font-size: 0.75rem;
  font-weight: 700;
  list-style: none;
}

.registration-bar li {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  counter-increment: steps;
}

.registration-bar li::before {
  width: 1.65rem;
  height: 1.65rem;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  content: counter(steps);
  font-size: 0.68rem;
}

.registration-bar li.is-active {
  color: var(--deepest);
}

.registration-bar li.is-active::before {
  border-color: var(--coral-action);
  background: var(--coral-action);
  color: #fff;
}

.registration-intro {
  padding-block: clamp(2.4rem, 4vw, 3.6rem);
  background: var(--deepest);
  color: var(--ivory);
}

.registration-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.65fr);
  align-items: end;
  gap: clamp(3rem, 9vw, 9rem);
}

.registration-intro h1 {
  max-width: 850px;
  margin-bottom: 1rem;
  font-size: clamp(2.75rem, 4.8vw, 4.6rem);
}

.registration-event-summary {
  margin: 0;
  border-top: 1px solid var(--line-light);
}

.registration-event-summary div {
  display: grid;
  grid-template-columns: 4.5rem 1fr;
  gap: 1rem;
  padding-block: 0.85rem;
  border-bottom: 1px solid var(--line-light);
}

.registration-event-summary dt,
.registration-receipt dt {
  color: var(--turquoise-bright);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.registration-event-summary dd {
  margin: 0;
  color: rgba(252, 254, 255, 0.78);
  font-size: 0.84rem;
  font-weight: 700;
}

.registration-event-summary small {
  display: inline-flex;
  margin-left: 0.3rem;
  border: 1px solid var(--turquoise);
  padding: 0.08rem 0.28rem;
  color: var(--turquoise-bright);
  font-size: 0.62rem;
  text-transform: uppercase;
}

.registration-section {
  padding-block: clamp(3.4rem, 6vw, 5.5rem);
  background: linear-gradient(90deg, var(--ivory) 0 68%, var(--sand) 68% 100%);
}

.registration-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.55fr);
  gap: clamp(3rem, 7vw, 6rem);
  align-items: start;
}

.registration-form {
  min-width: 0;
}

.registration-form fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

.registration-form fieldset + fieldset {
  margin-top: clamp(4rem, 8vw, 7rem);
  padding-top: clamp(3rem, 6vw, 5rem);
  border-top: 1px solid var(--line);
}

.registration-form legend {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
  color: var(--deepest);
  font-family: var(--serif);
  font-size: clamp(2rem, 3.2vw, 3rem);
}

.registration-form legend span {
  color: var(--coral-action);
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.seat-help {
  margin-bottom: 1rem;
  color: var(--ink-muted);
  font-size: 0.88rem;
}

.seat-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  color: var(--ink-muted);
  font-size: 0.73rem;
  font-weight: 700;
}

.seat-legend span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.seat-key {
  width: 0.8rem;
  height: 0.8rem;
  border: 1px solid var(--deep);
  border-radius: 50%;
}

.seat-key.selected {
  border-color: var(--coral-action);
  background: var(--coral-action);
}

.seat-key.reserved {
  border-color: var(--line);
  background: repeating-linear-gradient(135deg, transparent 0 2px, rgba(10, 39, 66, 0.2) 2px 4px);
}

.seat-map {
  --seat-radius: clamp(8.8rem, 24vw, 14.5rem);
  position: relative;
  width: min(100%, 41rem);
  aspect-ratio: 1;
  margin: 2.2rem auto 0;
  border: 1px solid rgba(121, 207, 232, 0.45);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(121, 207, 232, 0.14) 0 23%, transparent 23.4%), var(--sand);
}

.seat-map::before,
.seat-map::after {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(18, 61, 91, 0.12);
  border-radius: 50%;
  content: "";
  transform: translate(-50%, -50%);
}

.seat-map::before {
  width: 76%;
  height: 76%;
}

.seat-map::after {
  width: 52%;
  height: 52%;
}

.circle-center {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  color: var(--deepest);
  text-align: center;
  transform: translate(-50%, -50%);
}

.circle-center img {
  width: clamp(3rem, 7vw, 4.3rem);
  margin-bottom: 0.45rem;
}

.circle-center strong {
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2.2vw, 1.75rem);
  font-weight: 400;
}

.circle-center span {
  color: var(--ink-muted);
  font-size: 0.68rem;
  font-weight: 700;
}

.seat {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  width: 3.7rem;
  height: 3.7rem;
  cursor: pointer;
  transform: translate(-50%, -50%) rotate(var(--seat-angle)) translateY(calc(0rem - var(--seat-radius))) rotate(var(--seat-undo));
}

.seat input {
  position: absolute;
  width: 1px;
  height: 1px;
  min-height: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.seat > span {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  border: 1px solid var(--deep);
  border-radius: 50%;
  background: var(--ivory);
  color: var(--deepest);
  font-size: 0.78rem;
  font-weight: 800;
  transition: background 180ms ease, color 180ms ease, transform 180ms var(--ease), box-shadow 180ms ease;
}

.seat:hover > span {
  transform: scale(1.06);
}

.seat input:focus-visible + span {
  outline: 3px solid var(--coral-action);
  outline-offset: 4px;
}

.seat input:checked + span {
  border-color: var(--coral-action);
  background: var(--coral-action);
  color: #fff;
  box-shadow: 0 0 0 6px rgba(182, 64, 60, 0.13);
}

.seat.is-reserved {
  cursor: not-allowed;
}

.seat.is-reserved > span {
  border-color: rgba(18, 61, 91, 0.2);
  background: repeating-linear-gradient(135deg, var(--sand) 0 4px, #e6ddd0 4px 8px);
  color: var(--ink-muted);
}

.seat small {
  display: none;
}

.seat-error {
  text-align: center;
}

.guest-details {
  display: grid;
  gap: 1rem;
}

.field-help {
  color: var(--ink-muted);
  font-size: 0.72rem;
}

.registration-submit-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}

.registration-submit-row .fine-print {
  margin: 0;
}

.registration-receipt {
  position: sticky;
  top: 7rem;
  padding: 1.6rem;
  border-top: 4px solid var(--turquoise);
  background: var(--deep);
  color: var(--ivory);
}

.receipt-seat {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-block: 2rem 1.4rem;
  padding-bottom: 1.4rem;
  border-bottom: 1px solid var(--line-light);
}

.receipt-seat span {
  color: var(--turquoise-bright);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.receipt-seat strong {
  font-family: var(--serif);
  font-size: 5rem;
  font-weight: 400;
  line-height: 0.78;
}

.registration-receipt dl {
  margin: 0;
}

.registration-receipt dl div {
  display: grid;
  grid-template-columns: 4rem 1fr;
  gap: 0.7rem;
  padding-block: 0.75rem;
  border-bottom: 1px solid var(--line-light);
}

.registration-receipt dd {
  margin: 0;
  color: rgba(252, 254, 255, 0.76);
  font-size: 0.8rem;
}

.receipt-note {
  margin-top: 1.5rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.06);
}

.receipt-note strong {
  color: var(--turquoise-bright);
  font-size: 0.78rem;
}

.receipt-note p {
  margin: 0.45rem 0 0;
  color: rgba(252, 254, 255, 0.68);
  font-size: 0.75rem;
}

.method-list {
  border-top: 1px solid var(--line);
}

.method-item {
  display: grid;
  grid-template-columns: 5rem 0.7fr 1.3fr;
  gap: 2rem;
  align-items: start;
  padding-block: 2rem;
  border-bottom: 1px solid var(--line);
}

.method-item > span {
  color: var(--coral-action);
  font-family: var(--serif);
  font-size: 3.2rem;
  line-height: 1;
}

.method-item h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.7rem);
}

.method-item p {
  margin: 0;
  color: var(--ink-muted);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
}

.value {
  min-height: 230px;
  padding: 1.6rem;
  background: var(--ivory);
}

.value span {
  color: var(--coral-action);
  font-size: 0.7rem;
  font-weight: 800;
}

.value h3 {
  margin-top: 3rem;
}

.value p {
  color: var(--ink-muted);
  font-size: 0.88rem;
}

.resource-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1px;
  background: var(--line);
}

.resource-card {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  padding: 2rem;
  background: var(--ivory);
}

.resource-card.primary {
  background: var(--turquoise);
}

.resource-card h2,
.resource-card h3 {
  margin-top: auto;
}

.resource-card p {
  color: var(--ink-muted);
}

.booking-frame {
  min-height: 610px;
  border: 1px solid var(--line);
  overflow: hidden;
  border-radius: 1.25rem;
  background: #fff;
  box-shadow: var(--shadow);
}

.booking-hero {
  padding-block: clamp(4rem, 7vw, 6.5rem);
}

.booking-hero h1 {
  max-width: 760px;
  font-size: clamp(3.2rem, 6vw, 5.8rem);
}

.booking-section {
  padding-block: clamp(3rem, 6vw, 6rem);
  background:
    radial-gradient(circle at 92% 8%, rgba(121, 207, 232, 0.22), transparent 28rem),
    var(--sand);
}

.booking-content {
  width: min(1120px, calc(100% - (var(--gutter) * 2)));
}

.booking-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 0.45fr);
  align-items: end;
  gap: clamp(1.5rem, 5vw, 4rem);
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}

.booking-heading h2 {
  max-width: 760px;
  margin-bottom: 0;
}

.booking-heading .heading-aside {
  margin: 0;
}

.ghl-booking-shell {
  min-height: 760px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 1.25rem;
  background: #fff;
  box-shadow: var(--shadow);
}

.ghl-booking-shell iframe {
  width: 100%;
  min-height: 760px;
  border: 0;
  background: #fff;
}

.booking-fallback {
  margin: 0;
  padding: 1rem 1.25rem;
  color: var(--ink-muted);
  font-size: 0.875rem;
}

.booking-fallback a {
  color: var(--coral-action);
  font-weight: 800;
}

.embed-placeholder {
  min-height: 610px;
  display: grid;
  place-items: center;
  padding: 2rem;
  text-align: center;
}

.embed-placeholder-inner {
  max-width: 500px;
}

.embed-placeholder .content-token {
  margin: 1rem 0;
}

.highlevel-frame {
  width: 100%;
  min-height: 680px;
  border: 0;
}

.calendly-frame {
  width: 100%;
  min-height: 730px;
  border: 0;
  background: #fff;
}

.booking-trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 1rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: var(--line);
}

.booking-trust-row span {
  min-height: 72px;
  display: flex;
  align-items: center;
  padding: 1rem;
  background: var(--aqua);
  color: var(--deep);
  font-size: 0.76rem;
  font-weight: 700;
}

.embed-status {
  margin: 0;
  padding: 0.8rem 1rem;
  background: var(--sand);
  color: var(--deep);
  font-size: 0.78rem;
  font-weight: 700;
}

.embed-status.is-loaded {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.embed-status.is-error {
  border-left: 3px solid var(--coral-action);
  color: var(--coral-action);
}

.expectations {
  counter-reset: expectation;
  display: grid;
  gap: 1px;
  margin-top: 2rem;
  background: var(--line);
}

.expectation {
  counter-increment: expectation;
  display: grid;
  grid-template-columns: 2.5rem 1fr;
  gap: 1rem;
  padding: 1rem;
  background: var(--ivory);
}

.expectation::before {
  color: var(--coral-action);
  content: "0" counter(expectation);
  font-size: 0.72rem;
  font-weight: 800;
}

.expectation p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.84rem;
}

.expectation strong {
  display: block;
  color: var(--deep);
}

.radio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.7rem;
}

.radio-choice {
  position: relative;
  min-height: 96px;
  display: block;
  padding: 1rem;
  border: 1px solid var(--line);
  cursor: pointer;
}

.radio-choice:has(input:checked) {
  border-color: var(--coral-action);
  background: rgba(79, 174, 211, 0.08);
}

.radio-choice:has(input:focus-visible) {
  outline: 3px solid var(--coral-action);
  outline-offset: 3px;
}

.radio-choice input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.radio-choice strong,
.radio-choice small {
  display: block;
}

.radio-choice small {
  margin-top: 0.45rem;
  color: var(--ink-muted);
}

.policy-main {
  padding-block: var(--section);
  background: var(--sand);
}

.policy-card {
  max-width: 820px;
  padding: clamp(1.5rem, 5vw, 4rem);
  background: var(--ivory);
  box-shadow: var(--shadow);
}

.policy-card h1 {
  font-size: clamp(3rem, 7vw, 6rem);
}

.policy-card h2 {
  margin-top: 2.6rem;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
}

.policy-card p,
.policy-card li {
  color: var(--ink-muted);
}

.draft-notice {
  margin-block: 2rem;
  padding: 1.1rem;
  border-left: 3px solid var(--coral-action);
  background: rgba(79, 174, 211, 0.08);
  color: var(--deepest) !important;
  font-size: 0.84rem;
  font-weight: 700;
}

/* Footer */
.site-footer {
  padding: 5rem 0 1.5rem;
  background:
    radial-gradient(circle at 12% 8%, rgba(121, 207, 232, 0.17), transparent 24rem),
    var(--deepest);
  color: var(--ivory);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.75fr 0.75fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  padding-bottom: 4rem;
}

.footer-brand img {
  width: 98px;
  height: 98px;
  object-fit: cover;
}

.footer-brand p {
  max-width: 17rem;
  margin: 1.3rem 0 0;
  color: rgba(252, 254, 255, 0.6);
  font-family: var(--serif);
  font-size: 1.35rem;
  line-height: 1.2;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 0.55rem;
}

.footer-column strong {
  margin-bottom: 0.65rem;
  color: var(--turquoise-bright);
  font-size: 0.69rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-column a,
.footer-column span {
  color: rgba(252, 254, 255, 0.68);
  font-size: 0.78rem;
  text-decoration: none;
}

.footer-column a {
  min-height: 44px;
  display: flex;
  align-items: center;
}

.footer-column a:hover {
  color: var(--ivory);
  text-decoration: underline;
}

.footer-bottom {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line-light);
  color: rgba(252, 254, 255, 0.48);
  font-size: 0.68rem;
}

.footer-bottom p {
  max-width: 690px;
  margin: 0;
}

.footer-bottom a {
  color: inherit;
}

.footer-bottom > a,
.footer-bottom > span > a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.reveal {
  transform: translateY(14px);
  transition: transform 700ms var(--ease);
}

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

@media (max-width: 1020px) {
  .site-nav {
    gap: 0.8rem;
    font-size: 0.68rem;
  }

  .hero-grid,
  .about-preview-grid,
  .guide-layout {
    gap: 4rem;
  }

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

  .trust-item:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .trust-item:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .testimonial-grid {
    grid-template-columns: 1fr 1fr;
  }

  .testimonial-featured {
    grid-column: 1 / -1;
  }

  .footer-grid {
    grid-template-columns: 1.2fr 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .events-hero-grid {
    gap: 3rem;
  }

  .event-feature-grid,
  .event-list-layout {
    gap: 4rem;
  }

  .registration-layout {
    grid-template-columns: minmax(0, 1fr) minmax(250px, 0.42fr);
    gap: 2.5rem;
  }
}

@media (max-width: 860px) {
  .site-nav > a:not(.nav-cta),
  .nav-group {
    display: none;
  }

  .hero-grid,
  .recognition-grid,
  .outcomes-layout,
  .spark-layout,
  .about-preview-grid,
  .guide-layout,
  .event-preview,
  .faq-layout,
  .page-hero-grid,
  .fit-grid,
  .two-column,
  .connect-layout,
  .resource-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid > *,
  .page-hero-grid > *,
  .recognition-grid > *,
  .connect-layout > *,
  .guide-layout > * {
    min-width: 0;
  }

  .portrait-stage {
    max-width: 560px;
    min-height: 620px;
  }

  .spark-intro {
    position: static;
  }

  .work-grid,
  .event-state-grid,
  .values-grid {
    grid-template-columns: 1fr 1fr;
  }

  .work-card:last-child,
  .event-state-card:last-child,
  .value:last-child {
    grid-column: 1 / -1;
  }

  .final-cta-inner {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .events-hero-grid,
  .event-feature-grid,
  .event-list-layout,
  .event-story {
    grid-template-columns: 1fr;
  }

  .next-date-card {
    width: min(100%, 560px);
    min-height: 390px;
  }

  .event-story {
    max-width: 680px;
    margin-inline: auto;
  }

  .event-story-reverse .event-story-image {
    order: initial;
  }

  .event-story-image {
    width: calc(100% - 1rem);
  }

  .event-principles {
    background: var(--aqua);
  }

  .registration-intro-grid,
  .registration-layout {
    grid-template-columns: 1fr;
  }

  .review-heading,
  .google-review-grid,
  .booking-heading,
  .booking-trust-row {
    grid-template-columns: 1fr;
  }

  .ghl-booking-shell,
  .ghl-booking-shell iframe {
    min-height: 860px;
  }

  .review-heading {
    align-items: start;
  }

  .review-source {
    width: min(100%, 360px);
  }

  .review-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .registration-section {
    background: var(--ivory);
  }

  .registration-receipt {
    position: static;
    order: -1;
  }

  .receipt-seat {
    margin-block: 1rem;
  }
}

@media (max-width: 860px) {
  :root {
    --gutter: 1.05rem;
  }

  .nav-shell {
    min-height: 70px;
  }

  .brand img {
    width: 42px;
    height: 42px;
  }

  .brand span {
    font-size: 0.65rem;
  }

  .site-nav > a,
  .site-nav .nav-group {
    display: flex;
  }

  .site-nav .nav-group {
    flex-direction: column;
    align-items: stretch;
  }

  .menu-toggle {
    display: grid;
  }

  .site-nav {
    position: fixed;
    top: 70px;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 99;
    display: none;
    align-content: start;
    align-items: stretch;
    gap: 0;
    overflow-y: auto;
    padding: 1.2rem var(--gutter) 3rem;
    background: var(--ivory);
    font-size: 1rem;
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav > a,
  .nav-parent {
    width: 100%;
    min-height: 52px;
    justify-content: space-between;
    border-bottom: 1px solid var(--line);
  }

  .site-nav .nav-cta {
    justify-content: center;
    margin-top: 1rem;
    border-bottom: 0;
  }

  .submenu {
    position: static;
    width: 100%;
    min-width: 0;
    padding: 0.35rem 0 0.65rem 1rem;
    border: 0;
    border-bottom: 1px solid var(--line);
    box-shadow: none;
  }

  .submenu a {
    min-height: 44px;
  }

  .hero-grid {
    gap: 3rem;
  }

  .hero-copy h1 {
    font-size: clamp(2.85rem, 12vw, 4.8rem);
  }

  .page-hero h1 {
    font-size: clamp(2.85rem, 12vw, 4.8rem);
  }

  .portrait-stage {
    min-height: 480px;
    margin-right: 0.8rem;
  }

  .portrait-note {
    right: -0.8rem;
    bottom: 1.5rem;
    max-width: 12rem;
    font-size: 1.05rem;
  }

  .recognition-list,
  .work-grid,
  .testimonial-grid,
  .event-state-grid,
  .values-grid,
  .process-grid,
  .form-grid,
  .radio-grid {
    grid-template-columns: 1fr;
  }

  .recognition-list p:nth-child(odd) {
    border-right: 0;
  }

  .recognition-list p:nth-child(even) {
    padding-left: 0;
  }

  .work-card,
  .work-card:first-child {
    min-height: 325px;
    border-left: 1px solid var(--line);
  }

  .work-card h3 {
    margin-top: 3.3rem;
  }

  .testimonial-featured,
  .work-card:last-child,
  .event-state-card:last-child,
  .value:last-child {
    grid-column: auto;
  }

  .testimonial {
    min-height: 330px;
  }

  .testimonial blockquote {
    margin-top: 2.5rem;
  }

  .work-heading,
  .proof-heading,
  .resources-heading {
    display: block;
  }

  .heading-aside {
    margin-top: 1.4rem;
  }

  .guide-cover {
    min-height: 360px;
  }

  .event-preview {
    gap: 2rem;
  }

  .method-item {
    grid-template-columns: 3rem 1fr;
    gap: 1rem;
  }

  .method-item > span {
    font-size: 2.5rem;
  }

  .method-item p {
    grid-column: 2;
  }

  .detail-row {
    grid-template-columns: 1fr;
    gap: 0.45rem;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand,
  .footer-column:last-child {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .events-hero-copy h1 {
    font-size: clamp(3rem, 13vw, 5.4rem);
  }

  .event-archive-heading {
    display: block;
  }

  .event-tabs {
    display: grid;
    grid-template-columns: 1fr;
    border: 1px solid var(--line);
  }

  .event-tabs button {
    justify-content: space-between;
    border-bottom: 1px solid var(--line);
    padding-inline: 1rem;
  }

  .event-tabs button:last-child {
    border-bottom: 0;
  }

  .event-tabs button[aria-selected="true"] {
    border-bottom-color: var(--line);
    box-shadow: inset 4px 0 var(--coral-action);
    background: rgba(79, 174, 211, 0.06);
  }

  .online-events-empty {
    grid-template-columns: auto 1fr;
  }

  .online-events-empty .text-link {
    grid-column: 2;
  }

  .registration-bar-inner {
    display: block;
    padding-block: 0.65rem;
  }

  .registration-bar ol {
    margin-top: 0.35rem;
    gap: 0.8rem;
  }

  .registration-bar li {
    font-size: 0.68rem;
  }

  .seat-map {
    --seat-radius: clamp(8.7rem, 37vw, 13.2rem);
  }
}

@media (max-width: 420px) {
  .brand span {
    max-width: 5rem;
  }

  .actions {
    align-items: stretch;
    flex-direction: column;
  }

  .google-review {
    min-height: 0;
  }

  .google-review figcaption {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.35rem;
  }

  .actions .button,
  .actions .text-link {
    width: 100%;
    justify-content: center;
  }

  .portrait-stage {
    min-height: 410px;
  }

  .trust-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .trust-item,
  .trust-item:nth-child(2),
  .trust-item:nth-child(4) {
    min-height: 84px;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .trust-item:first-child {
    border-top: 0;
  }

  .footer-brand,
  .footer-column:last-child {
    grid-column: auto;
  }

  .next-date-card {
    min-height: 340px;
  }

  .next-date-card time strong {
    font-size: 6rem;
  }

  .event-facts > div,
  .event-preference {
    grid-template-columns: 1fr;
  }

  .event-facts > div {
    gap: 0.2rem;
  }

  .event-ticket::before,
  .event-ticket::after {
    display: none;
  }

  .online-events-empty {
    grid-template-columns: 1fr;
  }

  .online-events-empty .text-link {
    grid-column: auto;
  }

  .registration-bar ol {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.35rem;
  }

  .registration-bar li {
    display: grid;
    justify-items: start;
    line-height: 1.25;
  }

  .registration-intro h1 {
    font-size: clamp(2.75rem, 14vw, 4.2rem);
  }

  .registration-event-summary div {
    grid-template-columns: 1fr;
    gap: 0.2rem;
  }

  .seat-map {
    --seat-radius: clamp(7.3rem, 34vw, 8.2rem);
    margin-top: 3.7rem;
  }

  .seat {
    width: 3rem;
    height: 3rem;
  }

  .circle-center img {
    width: 2.65rem;
  }

  .circle-center strong {
    font-size: 1.05rem;
  }

  .circle-center span {
    max-width: 5rem;
  }

  .registration-submit-row {
    align-items: stretch;
    flex-direction: column;
  }

  .registration-submit-row .button {
    width: 100%;
  }

  .booking-content {
    width: min(100% - 1rem, 1120px);
  }

  .ghl-booking-shell {
    border-radius: 0.85rem;
  }
}

@media (prefers-contrast: more) {
  :root {
    --ink-muted: #28494d;
    --line: rgba(10, 39, 66, 0.46);
    --line-light: rgba(255, 255, 255, 0.52);
  }

  .button,
  .event-tabs button[aria-selected="true"] {
    outline: 2px solid currentColor;
    outline-offset: 2px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    transform: none;
  }
}
