:root {
  --paper: #f4f7f9;
  --warm: #e5edf2;
  --ink: #071d31;
  --muted: #657586;
  --sage: #3f6f8f;
  --sage-dark: #0b2f4a;
  --clay: #20b875;
  --green-dark: #118352;
  --line: rgba(7, 29, 49, 0.14);
  --white: #fbfdff;
  --shadow: 0 18px 55px rgba(7, 29, 49, 0.18);
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    Aptos, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(var(--max), calc(100% - 32px));
  margin: 16px auto 0;
  padding: 10px 12px;
  color: var(--white);
  border: 1px solid rgba(255, 253, 248, 0.22);
  background: rgba(27, 36, 34, 0.22);
  backdrop-filter: blur(18px);
  transition:
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  border-color: var(--line);
  background: rgba(255, 253, 248, 0.9);
  box-shadow: 0 10px 32px rgba(27, 36, 34, 0.1);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  color: var(--white);
  background: var(--sage-dark);
  font-weight: 800;
  letter-spacing: 0;
}

.brand-copy {
  display: grid;
  gap: 1px;
  min-width: 0;
  font-size: 12px;
  text-transform: uppercase;
  line-height: 1.05;
}

.brand-copy span,
.brand-copy strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brand-copy strong {
  font-size: 13px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  font-weight: 650;
}

.site-nav a {
  padding: 10px 13px;
}

.site-nav a:hover {
  color: var(--clay);
}

.site-nav .nav-booking {
  color: var(--white);
  border-radius: 6px;
  background: var(--clay);
}

.site-nav .nav-booking:hover,
.site-nav .nav-booking:focus-visible {
  color: var(--white);
  background: var(--green-dark);
}

.site-header.is-scrolled .site-nav .nav-booking {
  color: var(--white);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid currentColor;
  background: transparent;
  color: inherit;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: clamp(620px, 78svh, 760px);
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--ink);
}

.hero::after {
  content: "";
  position: absolute;
  top: 68px;
  right: clamp(18px, 3vw, 72px);
  z-index: 1;
  width: clamp(170px, 14vw, 270px);
  height: min(78%, 680px);
  pointer-events: none;
  background: url("./assets/spine-white-overlay.png") center / contain no-repeat;
  opacity: 0.85;
  filter: brightness(1.2) drop-shadow(0 0 30px rgba(220, 244, 255, 0.4));
}

.hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #041624;
}

.hero-image,
.hero-scrim {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 54% 32%;
}

.hero video.hero-image {
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  object-fit: contain;
  object-position: 70% 50%;
  opacity: 0.88;
  background: var(--ink);
}

.hero-scrim {
  background:
    linear-gradient(90deg, rgba(7, 29, 49, 0.94), rgba(7, 29, 49, 0.62) 48%, rgba(7, 29, 49, 0.08)),
    linear-gradient(0deg, rgba(7, 29, 49, 0.58), rgba(7, 29, 49, 0.03) 48%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 148px 0 86px;
  color: var(--white);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--clay);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #8cf0c0;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1;
  letter-spacing: 0;
}

h1 {
  max-width: 430px;
  font-family: "Arial Narrow", "Aptos Narrow", "Roboto Condensed", Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(46px, 5vw, 64px);
  font-weight: 680;
  letter-spacing: 0.01em;
}

h2 {
  font-size: clamp(34px, 4.4vw, 62px);
  font-weight: 760;
}

h3 {
  font-size: 22px;
  font-weight: 730;
}

.hero-text {
  max-width: 520px;
  margin: 18px 0 0;
  color: rgba(255, 253, 248, 0.86);
  font-size: clamp(18px, 2vw, 24px);
}

.hero-copy {
  display: grid;
  justify-items: start;
}

.credential {
  width: fit-content;
  max-width: 100%;
  margin: 20px 0 0;
  padding: 9px 12px;
  border: 1px solid rgba(255, 253, 248, 0.32);
  color: rgba(255, 253, 248, 0.9);
  background: rgba(7, 29, 49, 0.44);
  font-size: clamp(13px, 1.6vw, 16px);
  font-weight: 820;
  line-height: 1.2;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 820;
  letter-spacing: 0;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  color: var(--white);
  background: var(--clay);
  box-shadow: 0 12px 28px rgba(32, 184, 117, 0.22);
}

.button.primary:hover {
  background: var(--green-dark);
  box-shadow: 0 16px 34px rgba(17, 131, 82, 0.26);
}

.button.secondary {
  color: var(--white);
  border-color: rgba(255, 253, 248, 0.36);
  background: rgba(255, 253, 248, 0.06);
  backdrop-filter: blur(10px);
}

.button.is-disabled {
  opacity: 0.58;
  filter: saturate(0.78);
  cursor: not-allowed;
  pointer-events: none;
}

.hero-play {
  position: absolute;
  z-index: 3;
  top: 49%;
  left: 74%;
  display: grid;
  place-items: center;
  width: 92px;
  height: 92px;
  border: 2px solid rgba(251, 253, 255, 0.72);
  border-radius: 50%;
  background: #20b875;
  box-shadow:
    0 18px 48px rgba(0, 0, 0, 0.26),
    0 0 0 14px rgba(32, 184, 117, 0.18);
  cursor: pointer;
  transform: translate(-50%, -50%);
  transition:
    transform 180ms ease,
    background 180ms ease,
    opacity 180ms ease;
}

.hero-play:hover {
  background: #18a566;
  transform: translate(-50%, -50%) scale(1.04);
}

.hero-play span {
  display: block;
  width: 0;
  height: 0;
  margin-left: 7px;
  border-top: 22px solid transparent;
  border-bottom: 22px solid transparent;
  border-left: 32px solid var(--white);
}

.hero-play[aria-pressed="true"] {
  opacity: 0;
  pointer-events: none;
}

.contact-band .button.secondary {
  color: var(--ink);
  border-color: var(--line);
  background: transparent;
}

.stats-band {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(var(--max), calc(100% - 32px));
  margin: -40px auto 0;
  border: 1px solid rgba(255, 253, 248, 0.25);
  background: var(--sage-dark);
  color: var(--white);
  box-shadow: var(--shadow);
}

.stat {
  display: grid;
  gap: 4px;
  min-width: 0;
  padding: 24px 22px;
  border-right: 1px solid rgba(255, 253, 248, 0.16);
}

.stat:last-child {
  border-right: 0;
}

.stat strong {
  font-size: clamp(28px, 3.4vw, 46px);
  line-height: 0.95;
  font-weight: 760;
  letter-spacing: 0;
}

.stat span {
  color: rgba(255, 253, 248, 0.76);
  font-weight: 680;
}

.section {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 110px 0;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: 64px;
}

.section-copy {
  display: grid;
  gap: 18px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
}

.section-copy p,
.approach-item p,
.contact-band p {
  margin: 0;
}

.approach {
  padding-top: 20px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.approach-item {
  min-height: 250px;
  display: grid;
  align-content: start;
  gap: 16px;
  padding: 26px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.62);
}

.approach-item span {
  color: var(--clay);
  font-size: 13px;
  font-weight: 850;
}

.approach-item p {
  color: var(--muted);
}

.visual-strip {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 18px;
  width: min(1320px, calc(100% - 32px));
  margin: 8px auto 0;
}

.visual-strip figure {
  position: relative;
  min-height: 360px;
  margin: 0;
  overflow: hidden;
  background: var(--sage-dark);
}

.visual-strip img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform 500ms ease;
}

.visual-strip figure:hover img {
  transform: scale(1.025);
}

.visual-strip figcaption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 9px 11px;
  color: var(--white);
  background: rgba(27, 36, 34, 0.68);
  font-size: 14px;
  font-weight: 750;
}

.visual-side {
  display: grid;
  gap: 18px;
}

.visual-side figure {
  min-height: 260px;
}

.quote-block {
  display: grid;
  align-items: end;
  min-height: 220px;
  padding: 28px;
  color: var(--white);
  background: var(--ink);
}

.quote-block p {
  margin: 0;
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 790;
  line-height: 1.04;
}

.video-focus {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  align-items: center;
  gap: 56px;
  width: min(var(--max), calc(100% - 32px));
  margin: 8px auto 0;
  padding: 58px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(11, 47, 74, 0.96), rgba(5, 26, 45, 1));
  box-shadow: 0 18px 50px rgba(7, 29, 49, 0.16);
}

.video-copy {
  display: grid;
  align-content: center;
}

.video-copy h2 {
  color: var(--white);
}

.video-copy p:not(.eyebrow) {
  margin: 20px 0 0;
  color: rgba(251, 253, 255, 0.74);
  font-size: 18px;
}

.reel-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.reel-tabs button {
  min-height: 42px;
  padding: 10px 13px;
  border: 1px solid rgba(251, 253, 255, 0.24);
  border-radius: 6px;
  color: var(--white);
  background: transparent;
  font-weight: 780;
  cursor: pointer;
}

.reel-tabs button:hover,
.reel-tabs button.is-active {
  border-color: var(--clay);
  background: var(--clay);
}

.reel-player {
  position: relative;
  display: block;
  min-height: 420px;
  overflow: hidden;
  background: #031421;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.28);
}

.reel-player img,
.reel-player video {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition:
    transform 420ms ease,
    opacity 180ms ease;
}

.reel-player:hover img,
.reel-player:hover video {
  transform: scale(1.018);
}

.reel-player video {
  background: #031421;
}

.play-badge {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 74px;
  height: 74px;
  border: 2px solid rgba(251, 253, 255, 0.86);
  border-radius: 50%;
  background: var(--clay);
  box-shadow: 0 16px 38px rgba(17, 131, 82, 0.36);
  color: var(--white);
  cursor: pointer;
  padding: 0;
  transform: translate(-50%, -50%);
  appearance: none;
  z-index: 2;
  transition: opacity 180ms ease;
}

.reel-player.is-playing .play-badge {
  opacity: 0;
  pointer-events: none;
}

.play-badge:hover,
.play-badge:focus-visible {
  background: var(--green-dark);
  outline: 3px solid rgba(251, 253, 255, 0.52);
  outline-offset: 3px;
}

.play-badge::after {
  content: "";
  position: absolute;
  left: 29px;
  top: 22px;
  width: 0;
  height: 0;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 23px solid var(--white);
}

.reel-meta {
  position: absolute;
  left: 18px;
  right: 18px;
  top: 18px;
  bottom: auto;
  display: grid;
  gap: 3px;
  width: fit-content;
  max-width: calc(100% - 36px);
  padding: 11px 13px;
  color: var(--white);
  background: rgba(5, 26, 45, 0.78);
  pointer-events: none;
}

.reel-meta strong {
  font-size: 14px;
}

.reel-meta span {
  color: rgba(251, 253, 255, 0.76);
  font-size: 13px;
}

.reviews-section {
  padding-bottom: 92px;
}

.reviews-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
}

.reviews-heading > div:first-child {
  max-width: 720px;
}

.reviews-intro {
  max-width: 560px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.reviews-proof {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  flex-wrap: wrap;
}

.reviews-proof .button.secondary {
  color: var(--ink);
  border-color: transparent;
  background:
    linear-gradient(var(--white), var(--white)) padding-box,
    linear-gradient(90deg, #4285f4, #ea4335, #fbbc05, #34a853) border-box;
}

.reviews-score {
  display: grid;
  gap: 2px;
  min-width: 130px;
  text-align: right;
}

.reviews-score strong {
  color: var(--ink);
  font-size: clamp(36px, 4.2vw, 56px);
  line-height: 0.9;
  font-weight: 800;
  letter-spacing: 0;
}

.reviews-score span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 760;
  text-transform: uppercase;
}

.reviews-track {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.review-card {
  position: relative;
  overflow: hidden;
  display: grid;
  min-height: 300px;
  align-content: space-between;
  gap: 24px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 36px rgba(7, 29, 49, 0.06);
}

.review-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, #4285f4 0 25%, #ea4335 25% 50%, #fbbc05 50% 75%, #34a853 75% 100%);
}

.review-label {
  width: max-content;
  max-width: 100%;
  padding: 5px 8px;
  color: #174ea6;
  background: linear-gradient(90deg, rgba(66, 133, 244, 0.12), rgba(52, 168, 83, 0.12));
  border-left: 3px solid #4285f4;
  font-size: 12px;
  font-weight: 820;
  text-transform: uppercase;
}

.review-card p {
  margin: 0;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.35;
}

.review-footer {
  display: grid;
  gap: 4px;
}

.review-footer strong {
  color: var(--ink);
  font-size: 16px;
}

.review-footer span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 760;
}

.booking-section {
  scroll-margin-top: 100px;
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto 18px;
  padding: 54px;
  color: var(--white);
  border: 1px solid rgba(251, 253, 255, 0.16);
  background:
    linear-gradient(135deg, rgba(32, 184, 117, 0.16), rgba(32, 184, 117, 0) 42%),
    linear-gradient(135deg, var(--sage-dark), #071d31);
  box-shadow: 0 18px 55px rgba(7, 29, 49, 0.16);
}

.booking-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 28px;
}

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

.booking-heading p:not(.eyebrow) {
  max-width: 660px;
  margin: 18px 0 0;
  color: rgba(251, 253, 255, 0.78);
  font-size: 18px;
}

.booking-badge {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 13px;
  border: 1px solid rgba(32, 184, 117, 0.4);
  border-radius: 6px;
  color: var(--white);
  background: rgba(32, 184, 117, 0.14);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
  white-space: nowrap;
}

.booking-reveal {
  margin-top: 34px;
}

.booking-reveal summary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 52px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 6px;
  color: var(--white);
  background: var(--clay);
  box-shadow: 0 12px 28px rgba(32, 184, 117, 0.22);
  font-weight: 850;
  letter-spacing: 0;
  list-style: none;
  cursor: pointer;
  transition:
    transform 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.booking-reveal summary::-webkit-details-marker {
  display: none;
}

.booking-reveal summary:hover {
  transform: translateY(-1px);
  background: var(--green-dark);
  box-shadow: 0 16px 34px rgba(17, 131, 82, 0.26);
}

.booking-reveal summary::after {
  content: "";
  width: 9px;
  height: 9px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 180ms ease;
}

.booking-reveal[open] summary::after {
  transform: rotate(225deg) translate(-2px, -1px);
}

.booking-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 26px;
}

.booking-card {
  display: grid;
  gap: 18px;
  min-height: 420px;
  padding: 30px;
  border: 1px solid rgba(7, 29, 49, 0.12);
  border-radius: 8px;
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 14px 36px rgba(7, 29, 49, 0.12);
}

.booking-card-featured {
  border-color: rgba(32, 184, 117, 0.42);
  box-shadow:
    0 16px 44px rgba(7, 29, 49, 0.14),
    inset 0 0 0 1px rgba(32, 184, 117, 0.1);
}

.booking-card-priority {
  border-color: rgba(32, 184, 117, 0.62);
  background: linear-gradient(145deg, #ffffff, #edf9f3);
  box-shadow:
    0 18px 48px rgba(7, 29, 49, 0.16),
    inset 0 4px 0 var(--clay);
}

.booking-card-priority .booking-kicker {
  color: #08693f;
  background: rgba(32, 184, 117, 0.16);
}

.booking-card-priority .booking-price strong {
  color: var(--green-dark);
}

.booking-card-main {
  min-height: 390px;
}

.booking-kicker {
  width: max-content;
  max-width: 100%;
  padding: 5px 8px;
  border-left: 3px solid var(--clay);
  color: var(--green-dark);
  background: rgba(32, 184, 117, 0.1);
  font-size: 12px;
  font-weight: 860;
  text-transform: uppercase;
}

.booking-card h3 {
  max-width: 420px;
  margin: 0;
  font-size: clamp(30px, 3.4vw, 46px);
  line-height: 0.98;
  letter-spacing: 0;
}

.booking-card p {
  max-width: 460px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.booking-card .booking-disclaimer {
  padding: 10px 12px;
  border-left: 3px solid var(--clay);
  color: var(--ink);
  background: rgba(32, 184, 117, 0.09);
  font-size: 13px;
  font-weight: 780;
}

.booking-meta {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  color: var(--ink);
  font-size: 15px;
  font-weight: 760;
  list-style: none;
}

.booking-meta li {
  display: flex;
  gap: 10px;
  min-width: 0;
}

.booking-meta li::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-top: 8px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--clay);
}

.booking-price {
  display: flex;
  align-items: baseline;
  margin-top: 0;
}

.booking-price strong {
  color: var(--ink);
  font-size: clamp(44px, 5vw, 64px);
  line-height: 0.95;
  font-weight: 900;
  letter-spacing: 0;
}

.booking-card .button {
  width: fit-content;
  margin-top: 0;
}

.booking-side-note {
  max-width: 720px;
  margin: 18px 0 0;
  color: rgba(251, 253, 255, 0.72);
  font-size: 14px;
  font-weight: 740;
}

.contact-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 40px;
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto 18px;
  padding: 54px;
  background: var(--warm);
  border: 1px solid var(--line);
}

.contact-band h2 {
  max-width: 780px;
}

.contact-band p {
  max-width: 620px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 18px;
}

.intake-section {
  scroll-margin-top: 96px;
  display: grid;
  grid-template-columns: minmax(0, 0.58fr) minmax(0, 1.42fr);
  gap: 40px;
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto 18px;
  padding: 54px;
  background: linear-gradient(135deg, #eaf2f6, #dce9ef);
  border: 1px solid var(--line);
  box-shadow: 0 16px 44px rgba(7, 29, 49, 0.08);
}

.intake-intro {
  position: sticky;
  top: 100px;
  align-self: start;
}

.intake-intro p:not(.eyebrow) {
  margin: 18px 0 0;
  color: var(--ink);
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 820;
  line-height: 1.15;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 8px 13px 8px 9px;
  border: 1px solid rgba(7, 29, 49, 0.12);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 253, 248, 0.72);
  box-shadow: 0 12px 24px rgba(7, 29, 49, 0.08);
  font-size: 13px;
  font-weight: 820;
  text-transform: uppercase;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.social-links a:hover {
  transform: translateY(-2px);
  border-color: rgba(32, 184, 117, 0.42);
  color: var(--green-dark);
  background: rgba(255, 255, 255, 0.94);
}

.social-links span {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  color: var(--white);
  background: var(--green-dark);
  font-size: 11px;
  font-weight: 900;
}

.social-links.compact {
  margin-top: 0;
}

.social-links.compact a {
  min-height: 38px;
  padding: 7px 11px 7px 8px;
  background: rgba(255, 253, 248, 0.62);
  box-shadow: none;
  font-size: 12px;
}

.social-links.compact span {
  width: 26px;
  height: 26px;
  font-size: 10px;
}

.intake-form {
  display: grid;
  gap: 18px;
}

.form-honey {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px !important;
  min-width: 0 !important;
  height: 1px !important;
  padding: 0 !important;
  border: 0 !important;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  opacity: 0;
  pointer-events: none;
}

.intake-form fieldset {
  min-width: 0;
  margin: 0;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(7, 29, 49, 0.04);
}

.intake-form legend {
  padding: 0 8px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 850;
}

.form-grid {
  display: grid;
  gap: 16px;
}

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

.intake-form label,
.choice-group span {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 790;
}

.intake-form input,
.intake-form select,
.intake-form textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(7, 29, 49, 0.2);
  border-radius: 6px;
  background: #ffffff;
  color: var(--ink);
  font: inherit;
  font-weight: 620;
  padding: 11px 12px;
}

.intake-form textarea {
  resize: vertical;
  line-height: 1.4;
}

.intake-form input:focus,
.intake-form select:focus,
.intake-form textarea:focus {
  outline: 2px solid rgba(185, 113, 81, 0.36);
  border-color: var(--clay);
}

.wide-label {
  margin-top: 16px;
}

.choice-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.choice-group span {
  flex: 0 0 100%;
}

.choice-group label,
.consent-box label {
  display: inline-flex;
  align-items: flex-start;
  gap: 8px;
  width: auto;
  min-height: 38px;
  padding: 9px 10px;
  border: 1px solid rgba(7, 29, 49, 0.14);
  border-radius: 6px;
  background: rgba(244, 247, 249, 0.72);
  color: var(--muted);
  font-size: 13px;
  font-weight: 720;
}

.choice-group input,
.consent-box input {
  width: 16px;
  min-width: 16px;
  height: 16px;
  min-height: 16px;
  margin-top: 1px;
  accent-color: var(--clay);
}

.range-value {
  color: var(--clay);
  font-size: 13px;
  font-weight: 850;
}

.consent-box {
  display: grid;
  gap: 10px;
  padding: 18px;
  border: 1px solid rgba(32, 184, 117, 0.28);
  border-radius: 8px;
  background: rgba(251, 253, 255, 0.72);
}

.consent-box label {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
}

.consent-box p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.consent-box a,
.policy-card a:not(.button) {
  color: var(--green-dark);
  font-weight: 850;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.form-helper {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.form-note {
  min-height: 22px;
  margin: 0;
  color: var(--green-dark);
  font-size: 14px;
  font-weight: 760;
}

.form-note.is-error {
  color: #b42318;
}

.intake-form.is-submitting {
  opacity: 0.82;
}

.intake-form button[disabled] {
  cursor: progress;
  opacity: 0.72;
}

.intake-form .button.secondary {
  color: var(--ink);
  border-color: var(--line);
  background: transparent;
}

.form-result {
  display: grid;
  gap: 12px;
  padding: 20px;
  color: var(--white);
  background: var(--ink);
}

.form-result[hidden] {
  display: none;
}

.form-result strong {
  font-size: 20px;
}

.form-result p {
  margin: 0;
  color: rgba(251, 253, 255, 0.72);
}

.form-result textarea {
  min-height: 160px;
  color: var(--ink);
  background: var(--white);
}

.thanks-body {
  min-height: 100svh;
  background:
    radial-gradient(circle at 72% 12%, rgba(32, 184, 117, 0.18), transparent 32%),
    linear-gradient(135deg, #071d31, #0b2f4a);
}

.policy-body {
  background: linear-gradient(135deg, #eaf2f6, #f4f7f9);
}

.policy-page {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 36px 16px;
}

.policy-card {
  display: grid;
  gap: 18px;
  width: min(860px, 100%);
  padding: clamp(28px, 5vw, 56px);
  border: 1px solid var(--line);
  background: rgba(251, 253, 255, 0.96);
  box-shadow: var(--shadow);
}

.policy-card h1 {
  max-width: 100%;
  color: var(--ink);
}

.policy-card h2 {
  margin-top: 10px;
  font-size: clamp(24px, 3vw, 34px);
}

.policy-card p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.thanks-page {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 36px 16px;
}

.thanks-card {
  width: min(720px, 100%);
  padding: clamp(30px, 6vw, 58px);
  border: 1px solid rgba(255, 253, 248, 0.18);
  background: rgba(251, 253, 255, 0.96);
  box-shadow: var(--shadow);
}

.thanks-card h1 {
  color: var(--ink);
}

.thanks-card p:not(.eyebrow) {
  max-width: 560px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 2.4vw, 22px);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 36px;
  color: var(--muted);
  font-size: 14px;
}

.site-footer a {
  font-weight: 750;
}

.footer-link-button {
  appearance: none;
  padding: 0;
  border: 0;
  color: var(--green-dark);
  background: transparent;
  font: inherit;
  font-weight: 750;
  cursor: pointer;
}

.footer-link-button:hover {
  text-decoration: underline;
}

.footer-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
}

.mobile-quickbar {
  position: fixed;
  left: 10px;
  right: 10px;
  bottom: 10px;
  z-index: 25;
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 8px;
  border: 1px solid rgba(251, 253, 255, 0.22);
  border-radius: 8px;
  background: rgba(7, 29, 49, 0.94);
  box-shadow: 0 18px 42px rgba(7, 29, 49, 0.24);
}

body.consent-banner-open .mobile-quickbar,
body.booking-options-open .mobile-quickbar {
  opacity: 0;
  pointer-events: none;
}

.mobile-quickbar a {
  display: grid;
  place-items: center;
  min-height: 42px;
  border-radius: 6px;
  color: var(--white);
  background: rgba(251, 253, 255, 0.08);
  font-size: 13px;
  font-weight: 850;
}

.mobile-quickbar a:first-child {
  background: var(--clay);
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 30;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 18px;
  width: min(1040px, calc(100% - 32px));
  margin: 0 auto;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(251, 253, 255, 0.98);
  box-shadow: var(--shadow);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner strong {
  display: block;
  margin-bottom: 4px;
  font-size: 15px;
}

.cookie-banner p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.cookie-banner .button {
  min-height: 40px;
  padding: 9px 12px;
  border-color: var(--line);
  color: var(--ink);
  background: var(--white);
  cursor: pointer;
}

.cookie-banner .button.primary {
  color: var(--white);
  border-color: transparent;
  background: var(--clay);
}

.cookie-banner > a {
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 850;
}

@media (max-width: 920px) {
  .site-header {
    width: calc(100% - 24px);
    margin-top: 12px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    display: none;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 8px;
    border: 1px solid var(--line);
    background: var(--white);
    color: var(--ink);
    box-shadow: 0 18px 42px rgba(27, 36, 34, 0.16);
  }

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

  .site-nav a {
    padding: 14px 12px;
  }

  .site-nav .nav-booking {
    width: fit-content;
    margin: 6px 0 4px 8px;
  }

  .hero {
    min-height: 90svh;
  }

  .hero::after {
    top: 124px;
    right: 0;
    width: 190px;
    height: 52%;
    opacity: 0.58;
  }

  .hero-content {
    width: calc(100% - 32px);
    padding-top: 150px;
    padding-bottom: 78px;
  }

  .hero-image {
    object-position: 58% 24%;
    opacity: 0.72;
  }

  .hero video.hero-image {
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    object-fit: cover;
    object-position: 50% 62%;
  }

  .hero-scrim {
    background:
      linear-gradient(0deg, rgba(7, 29, 49, 0.9), rgba(7, 29, 49, 0.4) 58%, rgba(7, 29, 49, 0.2)),
      linear-gradient(90deg, rgba(7, 29, 49, 0.58), rgba(7, 29, 49, 0.12));
  }

  .stats-band,
  .split,
  .approach-grid,
  .visual-strip,
  .video-focus,
  .booking-heading,
  .intake-section,
  .contact-band {
    grid-template-columns: 1fr;
  }

  .stats-band {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: calc(100% - 32px);
    margin-top: -22px;
  }

  .stat {
    min-height: 116px;
    border-right: 1px solid rgba(255, 253, 248, 0.16);
    border-bottom: 1px solid rgba(255, 253, 248, 0.16);
  }

  .stat:nth-child(2n) {
    border-right: 0;
  }

  .stat:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .stat:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 72px 0;
  }

  .split {
    gap: 28px;
  }

  .approach {
    padding-top: 0;
  }

  .approach-grid {
    border-top: 1px solid var(--line);
  }

  .approach-item {
    min-height: 0;
  }

  .visual-strip {
    width: 100%;
    gap: 0;
  }

  .visual-strip figure,
  .visual-side figure {
    min-height: 320px;
  }

  .visual-side {
    gap: 0;
  }

  .video-focus {
    width: 100%;
    gap: 28px;
    padding: 38px 16px;
  }

  .reel-player {
    min-height: 340px;
  }

  .reviews-heading {
    align-items: start;
    flex-direction: column;
  }

  .reviews-proof {
    justify-content: flex-start;
    width: 100%;
  }

  .reviews-score {
    text-align: left;
  }

  .reviews-track {
    grid-template-columns: 1fr;
  }

  .booking-section {
    width: calc(100% - 32px);
    padding: 32px 24px;
  }

  .booking-badge {
    justify-self: start;
    white-space: normal;
  }

  .booking-reveal summary {
    width: fit-content;
  }

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

  .booking-card {
    min-height: 0;
  }

  .contact-band {
    width: calc(100% - 32px);
    padding: 32px 24px;
  }

  .intake-section {
    width: calc(100% - 32px);
    padding: 32px 24px;
  }

  .intake-intro {
    position: static;
  }

  .contact-actions {
    margin-top: 0;
  }

  .site-footer,
  .footer-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-actions {
    gap: 14px;
  }

  .cookie-banner {
    grid-template-columns: 1fr;
    align-items: stretch;
    bottom: 12px;
    gap: 12px;
  }

  .cookie-actions {
    justify-content: stretch;
  }

  .cookie-actions .button {
    flex: 1 1 160px;
  }
}

@media (max-width: 560px) {
  body {
    padding-bottom: 74px;
  }

  .brand-copy span {
    display: none;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
  }

  h1 {
    max-width: 360px;
    font-size: clamp(40px, 11vw, 52px);
  }

  .hero {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    min-height: auto;
    padding-top: 92px;
    background: var(--ink);
    overflow: visible;
  }

  .hero::after {
    top: 112px;
    right: 0;
    width: 108px;
    height: 132px;
    opacity: 0.58;
  }

  .hero-media {
    position: relative;
    order: 2;
    width: min(330px, calc(100% - 28px));
    aspect-ratio: 9 / 16;
    height: auto;
    min-height: 0;
    margin: 0 auto;
    overflow: hidden;
    border: 1px solid rgba(251, 253, 255, 0.14);
    border-radius: 10px;
    background: #041624;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
  }

  .hero video.hero-image {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    object-position: 50% 70%;
    opacity: 1;
    background: #041624;
  }

  .hero-scrim {
    display: none;
  }

  .hero-content {
    display: contents;
  }

  .hero-heading,
  .hero-copy {
    width: calc(100% - 28px);
    margin: 0 auto;
    color: var(--white);
  }

  .hero-heading {
    order: 1;
    padding-top: 22px;
  }

  .hero-copy {
    order: 3;
    padding: 0 0 44px;
    background: linear-gradient(180deg, rgba(7, 29, 49, 0), rgba(7, 29, 49, 0.18));
  }

  .hero-heading h1 {
    max-width: 300px;
    font-size: clamp(36px, 10vw, 46px);
    line-height: 0.96;
  }

  .hero-text {
    max-width: 100%;
    margin-top: 0;
    font-size: 17px;
  }

  .credential {
    max-width: 100%;
    font-size: 13px;
  }

  .hero-actions,
  .contact-actions,
  .social-links {
    display: grid;
    grid-template-columns: 1fr;
  }

  .social-links a {
    justify-content: flex-start;
    width: 100%;
  }

  .hero-play {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 76px;
    height: 76px;
    background: #20b875;
    box-shadow:
      0 14px 34px rgba(0, 0, 0, 0.24),
      0 0 0 10px rgba(32, 184, 117, 0.16);
  }

  .hero-play span {
    margin-left: 5px;
    border-top-width: 17px;
    border-bottom-width: 17px;
    border-left-width: 25px;
  }

  .button {
    width: 100%;
  }

  .stats-band {
    grid-template-columns: 1fr;
    width: calc(100% - 28px);
    margin-top: -8px;
  }

  .stat {
    min-height: auto;
    padding: 20px 18px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 253, 248, 0.16);
  }

  .stat:nth-last-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 253, 248, 0.16);
  }

  .stat:last-child {
    border-bottom: 0;
  }

  .stat strong {
    font-size: clamp(30px, 11vw, 42px);
  }

  .stat span {
    font-size: 14px;
    line-height: 1.25;
  }

  .mobile-quickbar {
    display: grid;
  }

  .section,
  .reviews-section {
    width: calc(100% - 28px);
  }

  .booking-section {
    width: 100%;
    padding: 34px 14px;
    border-left: 0;
    border-right: 0;
  }

  .booking-card {
    padding: 22px 18px;
  }

  .booking-reveal summary {
    width: 100%;
  }

  .booking-card .button {
    width: 100%;
  }

  .visual-strip figcaption {
    left: 12px;
    right: 12px;
    bottom: 12px;
    width: fit-content;
    max-width: calc(100% - 24px);
  }

  .quote-block {
    min-height: 190px;
    padding: 22px;
  }

  .intake-section {
    width: 100%;
    padding: 34px 14px;
    border-left: 0;
    border-right: 0;
  }

  .form-grid.two {
    grid-template-columns: 1fr;
  }

  .intake-form fieldset {
    padding: 18px 14px;
  }

  .choice-group {
    display: grid;
    grid-template-columns: 1fr;
  }

  .choice-group label {
    width: 100%;
  }

  .form-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .video-focus {
    padding: 34px 14px;
  }

  .reel-tabs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }

  .reel-tabs button {
    padding: 9px 6px;
    font-size: 13px;
  }

  .reel-player {
    min-height: 280px;
  }

  .cookie-banner {
    left: 10px;
    right: 10px;
    bottom: 10px;
    width: calc(100% - 20px);
    padding: 12px;
  }

  .cookie-banner p {
    font-size: 12px;
    line-height: 1.4;
  }

  .cookie-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .play-badge {
    width: 58px;
    height: 58px;
  }

  .play-badge::after {
    left: 23px;
    top: 17px;
    border-top-width: 12px;
    border-bottom-width: 12px;
    border-left-width: 18px;
  }
}
