:root {
  --teal: #0d9488;
  --teal-deep: #0f5e56;
  --teal-dark: #123c38;
  --teal-mist: #dff7f2;
  --orange: #f97316;
  --orange-strong: #c2410c;
  --orange-soft: #fdba74;
  --cream: #fff7ed;
  --cream-deep: #fef3e7;
  --white: #ffffff;
  --line: rgba(15, 94, 86, 0.14);
  --shadow: 0 20px 60px rgba(18, 60, 56, 0.1);
  --radius: 2rem;
  --content: 74rem;
}

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

html {
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: 7rem;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--teal-dark);
  background: var(--cream);
  font-family: "Nunito Sans", system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.75;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  z-index: -1;
  inset: 0;
  background-image: radial-gradient(circle at 20% 10%, rgba(253, 186, 116, 0.15), transparent 28%),
    radial-gradient(circle at 90% 40%, rgba(13, 148, 136, 0.1), transparent 25%);
  content: "";
  pointer-events: none;
}

.error-page {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: clamp(1.25rem, 5vw, 3rem);
}

.error-page::before {
  z-index: 0;
}

.error-card {
  position: relative;
  z-index: 1;
  width: min(100%, 34rem);
  padding: clamp(2rem, 7vw, 4rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
  text-align: center;
}

.error-card::before {
  display: block;
  width: 5rem;
  height: 0.5rem;
  margin: 0 auto 1.75rem;
  border-radius: 999px;
  background: var(--orange);
  content: "";
}

.error-brand {
  display: inline-block;
  width: 6rem;
  height: 6rem;
  margin-bottom: 0.75rem;
}

.error-brand img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.error-card h1 {
  margin: 0 0 0.5rem;
  color: var(--teal-deep);
  font-size: clamp(3.5rem, 14vw, 6rem);
  line-height: 1;
}

.error-card p {
  max-width: 27rem;
  margin: 0 auto 1.75rem;
  font-size: clamp(1rem, 2.5vw, 1.15rem);
}

a {
  color: inherit;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.2em;
}

a:hover {
  color: var(--teal-deep);
  text-decoration-line: underline;
}

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

:focus-visible {
  outline: 3px solid var(--white);
  outline-offset: 3px;
  box-shadow: 0 0 0 6px var(--teal-deep);
}

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

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

p:last-child {
  margin-bottom: 0;
}

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: 0.6rem;
  color: var(--white);
  background: var(--teal-dark);
  font-weight: 700;
  text-decoration: none;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

.skip-link:focus-visible {
  color: var(--white);
  transform: translateY(0);
}

.narrow {
  width: min(100%, 50rem);
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid transparent;
  background: rgba(255, 247, 237, 0.92);
  backdrop-filter: blur(18px);
  transition: box-shadow 180ms ease, border-color 180ms ease;
}

.site-header[data-scrolled="true"] {
  border-color: var(--line);
  box-shadow: 0 8px 28px rgba(18, 60, 56, 0.07);
}

.header-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 5.75rem;
  gap: clamp(0.75rem, 1.5vw, 1.25rem);
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  color: var(--teal-deep);
  line-height: 0;
  text-decoration: none;
}

.brand:hover {
  color: var(--teal-deep);
}

/* Crop the PNG's transparent edge so sizing follows the visible 450 x 451 artwork. */
.brand-art {
  --brand-art-size: 4.25rem;
  position: relative;
  display: block;
  width: var(--brand-art-size);
  aspect-ratio: 450 / 451;
  overflow: hidden;
}

.brand-logo {
  position: absolute;
  top: -1.996%;
  left: -3.556%;
  display: block;
  width: 106.667%;
  max-width: none;
  height: auto;
}

.site-header .brand-art {
  filter: drop-shadow(0 0.2rem 0.25rem rgba(15, 94, 86, 0.12));
}

.primary-nav,
.nav-links {
  display: flex;
  align-items: center;
}

.nav-toggle {
  display: none;
  min-width: 3rem;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.6rem 0.85rem;
  border: 1px solid rgba(15, 94, 86, 0.28);
  border-radius: 999px;
  color: var(--teal-deep);
  background: var(--white);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.nav-toggle__icon,
.nav-toggle__icon::before,
.nav-toggle__icon::after {
  display: block;
  width: 1.25rem;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  content: "";
  transition: transform 160ms ease, opacity 160ms ease;
}

.nav-toggle__icon {
  position: relative;
}

.nav-toggle__icon::before {
  position: absolute;
  top: -0.4rem;
}

.nav-toggle__icon::after {
  position: absolute;
  top: 0.4rem;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__icon {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__icon::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__icon::after {
  top: 0;
  transform: rotate(-45deg);
}

.primary-nav {
  min-width: 0;
}

.nav-links {
  justify-content: flex-end;
  gap: clamp(0.65rem, 1.2vw, 1.3rem);
}

.nav-links > a,
.nav-links summary {
  color: var(--teal-deep);
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.25;
  text-decoration: none;
  white-space: nowrap;
}

.nav-links > a:not(.button):hover,
.nav-links summary:hover {
  color: var(--teal-dark);
  text-decoration: underline;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown summary {
  cursor: pointer;
  list-style: none;
}

.nav-dropdown summary::-webkit-details-marker {
  display: none;
}

.nav-dropdown summary::after {
  display: inline-block;
  width: 0.45rem;
  height: 0.45rem;
  margin: 0 0 0.2rem 0.4rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  content: "";
  transform: rotate(45deg);
  transition: transform 160ms ease;
}

.nav-dropdown[open] summary::after {
  transform: rotate(225deg) translate(-0.12rem, -0.12rem);
}

.dropdown-panel {
  position: absolute;
  top: calc(100% + 1rem);
  left: 50%;
  width: min(22rem, calc(100vw - 2rem));
  padding: 0.75rem;
  border: 1px solid var(--line);
  border-radius: 1.25rem;
  background: var(--white);
  box-shadow: var(--shadow);
  transform: translateX(-50%);
}

.dropdown-panel a {
  display: block;
  padding: 0.7rem 0.9rem;
  border-radius: 0.8rem;
  color: var(--teal-dark);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.35;
  text-decoration: none;
}

.dropdown-panel a:hover,
.dropdown-panel a[aria-current="page"] {
  color: var(--teal-deep);
  background: var(--teal-mist);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.15rem;
  padding: 0.72rem 1.3rem;
  border: 0;
  border-radius: 999px;
  color: var(--white) !important;
  background: var(--orange-strong);
  box-shadow: 0 9px 22px rgba(249, 115, 22, 0.25);
  font-size: 0.96rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  background: #9a3412;
  box-shadow: 0 12px 27px rgba(249, 115, 22, 0.31);
  transform: translateY(-2px);
}

.button--secondary {
  border: 2px solid currentColor;
  color: var(--teal-deep) !important;
  background: var(--cream);
  box-shadow: none;
}

.button--secondary:hover {
  color: var(--teal-dark) !important;
  background: var(--white);
  box-shadow: none;
}

main {
  overflow: hidden;
}

.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: min(47rem, calc(100vh - 5.25rem));
  padding: clamp(4.5rem, 10vw, 8rem) 0 clamp(6rem, 12vw, 9rem);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(18rem, 0.9fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 7rem);
}

.hero-copy {
  position: relative;
  z-index: 2;
  min-width: 0;
}

.hero h1,
.page-hero h1 {
  max-width: 12ch;
  margin-bottom: 1.4rem;
  color: var(--teal-deep);
  font-size: clamp(3.3rem, 8vw, 6.75rem);
  font-weight: 800;
  letter-spacing: -0.07em;
  line-height: 0.95;
}

.hero h1::after,
.page-hero h1::after {
  display: block;
  width: 1.15em;
  height: 0.13em;
  margin-top: 0.24em;
  border-radius: 999px;
  background: var(--orange);
  content: "";
  transform: rotate(-2deg);
}

.hero-copy > p {
  max-width: 32rem;
  margin-bottom: 2rem;
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  line-height: 1.6;
}

.sea-scene {
  position: relative;
  min-height: 29rem;
}

.sun {
  position: absolute;
  top: 0;
  right: 5%;
  width: clamp(7rem, 14vw, 10rem);
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--orange-soft);
  box-shadow: 0 0 0 1.5rem rgba(253, 186, 116, 0.16), 0 0 0 3rem rgba(253, 186, 116, 0.08);
}

.sea-orb {
  position: absolute;
  right: 0;
  bottom: 0;
  display: grid;
  width: min(100%, 26rem);
  aspect-ratio: 0.94;
  place-items: center;
  overflow: hidden;
  border: 0.75rem solid rgba(255, 255, 255, 0.75);
  border-radius: 48% 48% 46% 54% / 42% 55% 45% 58%;
  background: linear-gradient(160deg, #7ed9ce 0%, var(--teal) 45%, var(--teal-deep) 100%);
  box-shadow: var(--shadow);
  transform: rotate(2deg);
}

.sea-orb::before,
.sea-orb::after {
  position: absolute;
  left: -15%;
  width: 135%;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.23);
  content: "";
}

.sea-orb::before {
  top: 35%;
  height: 16%;
  transform: rotate(-8deg);
}

.sea-orb::after {
  top: 56%;
  height: 12%;
  transform: rotate(5deg);
}

.sea-orb p {
  position: relative;
  z-index: 1;
  max-width: 10ch;
  margin: 0;
  color: var(--white);
  font-size: clamp(1.7rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.08;
  text-align: center;
  transform: rotate(-2deg);
}

.bubble {
  position: absolute;
  border: 2px solid rgba(13, 148, 136, 0.25);
  border-radius: 50%;
}

.bubble--one {
  top: 21%;
  left: 3%;
  width: 3.5rem;
  height: 3.5rem;
}

.bubble--two {
  top: 10%;
  left: 24%;
  width: 1.4rem;
  height: 1.4rem;
}

.wave-divider {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: -1px;
  left: 0;
  display: block;
  width: 100%;
  height: clamp(3rem, 7vw, 6rem);
}

.wave-divider path:first-child {
  fill: rgba(13, 148, 136, 0.18);
}

.wave-divider path:last-child {
  fill: var(--white);
}

.section {
  position: relative;
  padding: clamp(5.5rem, 11vw, 9rem) 0;
}

.section--white {
  background: var(--white);
}

.section--cream {
  background: var(--cream);
}

.section-heading {
  max-width: 18ch;
  margin-bottom: clamp(2rem, 5vw, 3.75rem);
  color: var(--teal-deep);
  font-size: clamp(2.35rem, 5vw, 4.4rem);
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 1;
}

.section-heading--center {
  margin-inline: auto;
  text-align: center;
}

.prose {
  max-width: 46rem;
  font-size: clamp(1.03rem, 1.4vw, 1.14rem);
}

.prose p {
  margin-bottom: 1.5rem;
}

.coaching-overview {
  display: grid;
  grid-template-columns: minmax(16rem, 0.8fr) minmax(0, 1.2fr);
  align-items: start;
  gap: clamp(2.5rem, 7vw, 7rem);
  margin-bottom: clamp(3.5rem, 8vw, 6.5rem);
}

#about-coaching .section-heading {
  max-width: 12ch;
  margin-bottom: 0;
  font-size: clamp(2.75rem, 4.25vw, 3.75rem);
  line-height: 1.04;
}

.coaching-intro {
  max-width: 43rem;
  margin: 0.4rem 0 0;
  color: var(--teal-deep);
  font-size: clamp(1.12rem, 1.65vw, 1.32rem);
  line-height: 1.75;
}

.offer-editorial {
  display: grid;
  grid-template-columns: minmax(16rem, 0.78fr) minmax(0, 1.22fr);
  align-items: start;
  gap: clamp(2.5rem, 7vw, 7rem);
}

.offer-principle {
  position: relative;
  max-width: min(100%, 46rem);
  padding: clamp(2rem, 4vw, 3rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.offer-principle::before {
  display: block;
  width: 4.5rem;
  height: 0.48rem;
  margin-bottom: 1.8rem;
  border-radius: 999px;
  background: var(--orange);
  content: "";
}

.offer-principle p {
  margin-bottom: 1.25rem;
  color: var(--teal-deep);
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  font-weight: 700;
  line-height: 1.55;
}

.offer-statement {
  padding-bottom: clamp(2rem, 5vw, 3.5rem);
  border-bottom: 1px solid var(--line);
}

.offer-statement p:first-child {
  margin-bottom: 1.2rem;
  color: var(--teal-deep);
  font-size: clamp(1.75rem, 3.2vw, 2.65rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.22;
}

.offer-statement p:last-child {
  max-width: 38rem;
  margin-bottom: 0;
  font-size: clamp(1.08rem, 1.5vw, 1.25rem);
}

.offer-reflection {
  max-width: 43rem;
  padding-top: clamp(2rem, 5vw, 3.5rem);
}

.offer-dialogue {
  margin-top: clamp(2rem, 5vw, 3.5rem);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  border-left: 0.38rem solid var(--orange);
  border-radius: 0 1.5rem 1.5rem 0;
  background: rgba(255, 255, 255, 0.68);
}

.offer-dialogue p {
  margin-bottom: 0.65rem;
}

.offer-dialogue p:last-child {
  color: var(--teal-deep);
  font-weight: 800;
}

.stream-offer {
  width: min(100%, 46rem);
  margin-inline: auto;
}

.stream-offer .offer-reflection {
  max-width: none;
  padding-top: 0;
}

/* Offer section (point 3): price list first, then the narrative */
#offer .section-heading {
  max-width: 14ch;
  margin-bottom: clamp(2.5rem, 6vw, 4.5rem);
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.5rem, 3.5vw, 2.75rem);
  margin-bottom: clamp(2.5rem, 6vw, 4.5rem);
}

.price-panel {
  position: relative;
  padding: clamp(2rem, 4vw, 3rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream);
  box-shadow: var(--shadow);
}

.price-panel::before {
  display: block;
  width: 4.5rem;
  height: 0.48rem;
  margin-bottom: 1.8rem;
  border-radius: 999px;
  background: var(--orange);
  content: "";
}

.price-panel h3 {
  margin-bottom: 0.6rem;
  color: var(--teal-deep);
  font-size: clamp(1.6rem, 2.6vw, 2.15rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.price-panel .price {
  margin-top: 1.4rem;
  margin-bottom: 0;
  color: var(--teal-deep);
  font-size: clamp(2.1rem, 3.4vw, 2.9rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
}

.bespoke-block {
  max-width: 46rem;
}

.bespoke-block h3 {
  margin-bottom: 1.2rem;
  color: var(--teal-deep);
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.bespoke-cta {
  margin-top: 1.8rem;
}

.bespoke-cta a {
  color: var(--teal-deep);
  font-weight: 700;
  text-decoration-color: var(--orange);
  text-decoration-thickness: 0.14em;
  text-underline-offset: 0.28em;
}

.bespoke-cta a:hover {
  color: var(--orange);
}

.offer-narrative {
  max-width: 46rem;
  margin-top: clamp(3rem, 7vw, 5.5rem);
  padding-top: clamp(2rem, 5vw, 3.5rem);
  border-top: 1px solid var(--line);
}

.offer-narrative .offer-dialogue {
  width: min(100%, 36rem);
}

.offer-narrative .read-more {
  margin-top: clamp(2rem, 4vw, 3rem);
}

.quote-card {
  position: relative;
  margin: 0 0 clamp(3.5rem, 7vw, 6rem);
  padding: clamp(2rem, 5vw, 4rem);
  border: 1px solid rgba(249, 115, 22, 0.2);
  border-radius: var(--radius);
  background: var(--cream);
  box-shadow: var(--shadow);
}

.quote-card::before {
  position: absolute;
  top: -2.6rem;
  left: clamp(1.4rem, 4vw, 3rem);
  color: var(--orange-soft);
  content: "“";
  font-family: Georgia, serif;
  font-size: 8rem;
  line-height: 1;
}

.quote-card h3 {
  position: relative;
  color: var(--teal-deep);
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  letter-spacing: -0.04em;
  font-weight: 700;
}

.quote-card p {
  position: relative;
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
}

/* About You reads as ONE card: quote intro + flowing copy in the same panel */
.about-you-card > blockquote {
  margin: 0 0 clamp(1.75rem, 3.5vw, 2.75rem);
  padding: 0;
  border: 0;
  background: none;
  box-shadow: none;
}

.about-you-card > blockquote h3 {
  margin-bottom: 1.1rem;
}

.about-you-card > .about-you-copy {
  margin: 0;
}

.flow-band {
  position: relative;
  overflow: hidden;
  padding: clamp(4.5rem, 9vw, 7rem) 0;
  color: var(--white);
  background: var(--teal-deep);
}

.flow-band::before,
.flow-band::after {
  position: absolute;
  border: 2px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
  content: "";
}

.flow-band::before {
  top: -9rem;
  right: -3rem;
  width: 25rem;
  height: 25rem;
}

.flow-band::after {
  right: 13rem;
  bottom: -12rem;
  width: 20rem;
  height: 20rem;
}

.flow-band-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.flow-band h2 {
  max-width: 17ch;
  margin: 0;
  color: var(--white);
  font-size: clamp(2.25rem, 5vw, 4.25rem);
  letter-spacing: -0.055em;
  font-weight: 700;
  line-height: 1.05;
}

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

.stream-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 1.5rem;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(18, 60, 56, 0.05);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.stream-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-6px);
}

.stream-card::after {
  position: absolute;
  right: -3rem;
  bottom: -4rem;
  width: 12rem;
  height: 12rem;
  border: 1.4rem solid var(--teal-mist);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.stream-card > * {
  position: relative;
  z-index: 1;
}

.stream-card:nth-child(2)::after {
  border-color: rgba(253, 186, 116, 0.28);
}

.stream-card:nth-child(3)::after {
  border-color: rgba(13, 148, 136, 0.17);
}

.stream-card h3 {
  margin-bottom: 0.65rem;
  color: var(--teal-deep);
  font-size: clamp(1.55rem, 2.6vw, 2.1rem);
  letter-spacing: -0.04em;
  line-height: 1.12;
  font-weight: 700;
}

.stream-card > p {
  margin-bottom: 1.8rem;
}

.stream-card .tagline {
  color: var(--orange-strong);
  font-weight: 700;
}

/* Free Flow hub chooser (points 5+7): whole-card links, one clear target */
.stream-nav {
  margin: 0 0 clamp(2.5rem, 5vw, 4rem);
}

.stream-nav .stream-chooser {
  display: block;
  height: 100%;
  border-radius: var(--radius);
  color: inherit;
  text-decoration: none;
}

.stream-nav .stream-chooser .stream-card {
  height: 100%;
}

.stream-nav .stream-chooser:focus-visible {
  outline: 2px solid var(--orange-strong);
  outline-offset: 4px;
}

.stream-nav .stream-card .tagline {
  margin-top: auto;
}

.latest-post {
  position: relative;
  z-index: 1;
  margin-top: auto;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line);
}

.latest-post a {
  color: var(--teal-deep);
  font-size: 1.04rem;
  font-weight: 700;
  line-height: 1.35;
  text-decoration: none;
}

.latest-post a:hover {
  color: var(--teal-dark);
  text-decoration: underline;
}

.read-more {
  display: inline-block;
  margin-top: 1.1rem;
  color: var(--orange-strong);
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.35;
  text-decoration: underline;
  text-underline-offset: 0.22em;
}

.read-more a {
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;
  padding-block: 0.4rem;
  color: inherit;
  text-decoration: inherit;
}

.read-more a:hover {
  color: var(--teal-deep);
  text-decoration-thickness: 0.14em;
}

.reviews {
  position: relative;
  color: var(--white);
  background: var(--teal-deep);
}

.reviews .section-heading {
  color: var(--white);
}

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

.review-card {
  margin: 0;
  padding: clamp(1.7rem, 4vw, 3rem);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
  font-size: clamp(1.06rem, 1.7vw, 1.22rem);
  line-height: 1.7;
  backdrop-filter: blur(8px);
}

.review-card::before {
  content: "“";
  display: block;
  margin-bottom: 0.7rem;
  color: rgba(255, 247, 237, 0.62);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.75rem, 7vw, 5rem);
  font-weight: 700;
  line-height: 0.65;
}

.final-cta {
  padding: clamp(5rem, 10vw, 8.5rem) 0;
  text-align: center;
}

.final-cta p {
  max-width: 28ch;
  margin: 0 auto 2rem;
  color: var(--teal-deep);
  font-size: clamp(1.8rem, 4vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.25;
}

.site-footer {
  padding: 4rem 0 2rem;
  color: rgba(255, 255, 255, 0.85);
  background: var(--teal-dark);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  align-items: start;
  gap: 2.5rem;
}

.site-footer .brand {
  align-self: center;
  width: fit-content;
  padding: 0.65rem;
  border: 1px solid rgba(253, 186, 116, 0.35);
  border-radius: 1.25rem;
  color: var(--white);
  background: var(--cream);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.site-footer .brand-art {
  --brand-art-size: 6.75rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.65rem;
}

.footer-links a,
.footer-links span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.94rem;
  text-decoration: none;
}

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

.footer-streams {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-streams a {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.82rem;
  line-height: 1.45;
  text-decoration: none;
}

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

.page-hero {
  position: relative;
  padding: clamp(5rem, 11vw, 9rem) 0 clamp(7rem, 14vw, 11rem);
  background: var(--cream);
}

.page-hero::before {
  position: absolute;
  top: 12%;
  right: 8%;
  width: clamp(8rem, 18vw, 14rem);
  aspect-ratio: 1;
  border: clamp(1.3rem, 3vw, 2.5rem) solid rgba(253, 186, 116, 0.38);
  border-radius: 50%;
  content: "";
}

.page-hero h1 {
  position: relative;
  z-index: 1;
  max-width: 15ch;
  font-size: clamp(3rem, 7vw, 6rem);
}

.page-hero p {
  position: relative;
  z-index: 1;
  max-width: 38rem;
  margin-bottom: 0;
  font-size: clamp(1.25rem, 2.5vw, 1.7rem);
  font-weight: 600;
}

.page-hero .stream-tagline {
  margin-bottom: 0.75rem;
  color: var(--orange-strong);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  font-weight: 700;
}

.page-hero .stream-intro {
  max-width: 46rem;
  font-size: clamp(1.2rem, 2.4vw, 1.65rem);
  font-weight: 500;
  line-height: 1.55;
}

.stream-section + .stream-section {
  margin-top: clamp(4rem, 8vw, 6.5rem);
}

.stream-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(16rem, 0.65fr);
  align-items: end;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.stream-heading h2 {
  max-width: 14ch;
  margin: 0;
  color: var(--teal-deep);
  font-size: clamp(2.2rem, 5vw, 4rem);
  letter-spacing: -0.055em;
  line-height: 1.05;
  font-weight: 700;
}

.stream-heading p {
  margin: 0;
  color: var(--orange-strong);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 700;
}

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

.post-card {
  position: relative;
  padding: clamp(1.5rem, 4vw, 2.6rem);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 1.5rem;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(18, 60, 56, 0.05);
}

.post-card::before {
  position: absolute;
  right: -3rem;
  bottom: -5rem;
  width: 12rem;
  height: 12rem;
  border: 1.1rem solid rgba(13, 148, 136, 0.09);
  border-radius: 50%;
  content: "";
}

.post-card h2,
.post-card h3 {
  position: relative;
  max-width: 20ch;
  margin-bottom: 1.25rem;
  color: var(--teal-deep);
  font-size: clamp(1.55rem, 3vw, 2.25rem);
  letter-spacing: -0.045em;
  line-height: 1.15;
  font-weight: 700;
}

.post-card h2 a,
.post-card h3 a {
  color: inherit;
  text-decoration: none;
}

.post-card h2 a:hover,
.post-card h3 a:hover {
  color: var(--teal-dark);
  text-decoration: underline;
}

.post-card p {
  position: relative;
  max-width: 42rem;
}

.post-card em {
  color: var(--teal-deep);
  font-style: normal;
  font-weight: 700;
}

.post-grid--single {
  grid-template-columns: minmax(0, 1fr);
}

.archive-posts {
  padding-top: clamp(3.5rem, 7vw, 5.5rem);
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--orange-strong);
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.language-switch a {
  color: inherit;
  text-decoration: none;
}

.language-switch a[aria-current="page"] {
  padding-bottom: 0.2rem;
  border-bottom: 2px solid currentColor;
}

.eyebrow,
.page-eyebrow {
  color: var(--orange-strong);
  font-size: clamp(0.82rem, 1.3vw, 0.96rem);
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.4;
  text-transform: uppercase;
}

.hero-copy > .eyebrow {
  max-width: none;
  margin-bottom: 1.2rem;
  font-size: 0.9rem;
}

.hero-copy > .hero-signoff {
  margin: 1.1rem 0 1.7rem;
  color: var(--teal-deep);
  font-size: 1rem;
  font-weight: 800;
}

.prose--wide {
  max-width: 58rem;
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(16rem, 0.72fr) minmax(0, 1.28fr);
  align-items: center;
  gap: clamp(2.5rem, 7vw, 6.5rem);
}
.about-layout > .prose:only-child {
  grid-column: 1 / -1;
  max-width: 42rem;
}

.photo-frame {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: clamp(1.5rem, 4vw, 2.75rem);
  background: var(--teal-mist);
  box-shadow: var(--shadow);
}

.photo-frame::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(15, 94, 86, 0.12);
  border-radius: inherit;
  content: "";
  pointer-events: none;
}

.photo-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-frame--portrait {
  aspect-ratio: 4 / 5;
}

.credential-layout {
  display: grid;
  grid-template-columns: minmax(18rem, 0.62fr) minmax(0, 1.38fr);
  align-items: stretch;
  gap: clamp(1.5rem, 4vw, 3.25rem);
  margin-top: clamp(3.5rem, 8vw, 7rem);
}

.photo-frame--secondary {
  min-height: 26rem;
}

.photo-frame--secondary img {
  object-position: 38% center;
}

.credential-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-content: start;
  padding: clamp(1.5rem, 4vw, 3rem);
  border: 1px solid rgba(13, 148, 136, 0.18);
  border-radius: var(--radius);
  background: var(--cream);
  max-width: 58rem;
  margin-inline: auto;
  margin-top: clamp(3.5rem, 8vw, 7rem);
}

.credential-panel h3,
.session-section h2 {
  margin-bottom: 1.25rem;
  color: var(--teal-deep);
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  letter-spacing: -0.04em;
  line-height: 1.15;
  font-weight: 700;
}

.stream-page .session-section h2 {
  text-align: center;
}

.accreditation-badge {
  display: block;
  width: min(100%, 13.5rem);
  height: auto;
  margin: clamp(2rem, 5vw, 3rem) auto 0;
}

.session-section {
  margin-top: clamp(4rem, 9vw, 7rem);
  padding: clamp(2rem, 5vw, 3.5rem);
  border: 1px solid rgba(13, 148, 136, 0.18);
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 10px 28px rgba(18, 60, 56, 0.05);
}

.prose--columns {
  max-width: 46rem;
  margin-inline: auto;
}

.prose--columns p {
  margin-bottom: 1.65rem;
}

.prose--columns .session-question {
  margin-top: 2.25rem;
  padding: 1.2rem 1.4rem;
  border-left: 0.35rem solid var(--orange);
  border-radius: 0 1rem 1rem 0;
  color: var(--teal-deep);
  background: var(--cream);
  font-size: clamp(1.2rem, 2vw, 1.45rem);
  font-weight: 700;
}

.about-you-copy {
  margin: clamp(3rem, 7vw, 5rem) 0 0 auto;
}

.stream-heading h2 a {
  color: inherit;
  text-decoration: none;
}

.post-card-media {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  margin: -2rem -2rem 2rem;
  overflow: hidden;
  background: var(--teal-mist);
}

.post-card-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-feature {
  padding: clamp(3rem, 7vw, 5.5rem) 0 0;
}

.sea-video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: 34rem;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.stream-stories--asymmetric,
.stream-stories--featured {
  grid-template-columns: minmax(0, 1.25fr) minmax(18rem, 0.75fr);
  align-items: start;
}

.stream-stories .post-card--featured h2 {
  max-width: 18ch;
  font-size: clamp(1.9rem, 3.6vw, 2.8rem);
}

.stream-stories .post-card--featured .post-card-media {
  aspect-ratio: 16 / 10;
}

.stream-stories .post-card--secondary {
  margin-top: clamp(3rem, 7vw, 6rem);
  background: var(--cream);
  box-shadow: none;
}

.stream-stories--featured .post-card--featured {
  background: var(--teal-mist);
}

.stream-page--beneath .post-card--secondary {
  margin-top: clamp(5rem, 10vw, 9rem);
}

.coaching-feature-section {
  overflow: hidden;
}

.coaching-feature {
  isolation: isolate;
  min-height: clamp(22rem, 42vw, 32rem);
  display: grid;
  align-content: center;
  padding: clamp(2.5rem, 7vw, 6rem);
  color: var(--white);
  background: linear-gradient(145deg, var(--teal-dark), var(--teal-deep));
}

.coaching-feature::before,
.coaching-feature::after {
  position: absolute;
  z-index: -1;
  right: -8%;
  width: 70%;
  height: 38%;
  border: 1.75rem solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  content: "";
  transform: rotate(-8deg);
}

.coaching-feature::before {
  top: 14%;
}

.coaching-feature::after {
  top: 45%;
  right: 17%;
  border-color: rgba(253, 186, 116, 0.3);
  transform: rotate(7deg);
}

.coaching-feature h2 {
  max-width: 21ch;
  color: var(--white);
  font-size: clamp(2.2rem, 5vw, 4.4rem);
}

.coaching-feature h2 a:hover {
  color: var(--white);
}

.coaching-feature p {
  max-width: 43rem;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1.08rem, 1.8vw, 1.3rem);
}

.stream-page .final-cta {
  padding-block: clamp(3.5rem, 7vw, 5.5rem);
}

/* P.D.S.L. collaboration card (point 11): white logo plate inside the teal panel */
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.coaching-feature--pdsl {
  min-height: 0;
  grid-template-columns: minmax(0, 1fr);
  justify-items: center;
  gap: clamp(1.25rem, 2.5vw, 1.75rem);
  padding: clamp(2rem, 4vw, 3rem);
  text-align: center;
}

.coaching-feature--pdsl::before,
.coaching-feature--pdsl::after {
  top: 50%;
  right: auto;
  bottom: auto;
  left: 50%;
  width: 46rem;
  height: 46rem;
  border-width: 1px;
  border-color: rgba(255, 255, 255, 0.1);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.coaching-feature--pdsl::after {
  width: 60rem;
  height: 60rem;
  border-color: rgba(253, 186, 116, 0.16);
}

.coaching-feature--pdsl .coaching-feature__logo {
  width: min(100%, 24rem);
  margin: 0 auto;
  overflow: hidden;
  border-radius: 1.25rem;
  background: var(--white);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.2), 0 8px 24px rgba(6, 40, 36, 0.16);
}

.coaching-feature--pdsl .coaching-feature__logo img {
  display: block;
  width: 100%;
  height: auto;
}

.coaching-feature--pdsl h2 {
  max-width: 28ch;
  margin: 0;
  font-size: clamp(1.65rem, 3vw, 2.5rem);
  line-height: 1.2;
}

.coaching-feature--pdsl .coaching-feature__cta {
  justify-self: center;
  max-width: 100%;
  padding: 0.85rem clamp(1.25rem, 3vw, 1.9rem);
  border: 2px solid rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  color: var(--white);
  font-size: clamp(0.95rem, 1.5vw, 1.02rem);
  font-weight: 800;
  line-height: 1.3;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.coaching-feature--pdsl .coaching-feature__cta:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
}

.coaching-feature--pdsl .coaching-feature__cta:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
}

@media (max-width: 44rem) {
  .coaching-feature--pdsl {
    padding-inline: 1.25rem;
  }

  .coaching-feature--pdsl::before {
    width: 30rem;
    height: 30rem;
  }

  .coaching-feature--pdsl::after {
    width: 42rem;
    height: 42rem;
  }
}

.stream-page .final-cta p {
  font-size: clamp(1.55rem, 3vw, 2.45rem);
}

.article-hero {
  position: relative;
  padding: clamp(5rem, 10vw, 8rem) 0 clamp(7rem, 13vw, 10rem);
  background: var(--cream);
}

.article-hero h1 {
  max-width: 19ch;
  margin-bottom: 0;
  color: var(--teal-deep);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 800;
  letter-spacing: -0.065em;
  line-height: 0.98;
}

.page-eyebrow a {
  color: inherit;
  text-decoration: none;
}

.article-content {
  padding: clamp(4rem, 9vw, 8rem) 0;
}

.article-shell {
  width: min(calc(100% - 2rem), 68rem);
}

.article-lead {
  margin: 0 0 clamp(3rem, 7vw, 5rem);
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--teal-mist);
  box-shadow: var(--shadow);
}

.article-lead img {
  display: block;
  width: 100%;
  max-height: 42rem;
  object-fit: cover;
}

.article-body {
  max-width: 47rem;
  margin-inline: auto;
  font-size: clamp(1.04rem, 1.5vw, 1.14rem);
  line-height: 1.85;
}

.article-body .article-lesson {
  margin-block: clamp(2.5rem, 6vw, 4.5rem) 1.5rem;
  padding: 1.35rem 1.5rem;
  border-left: 0.35rem solid var(--orange);
  border-radius: 0 1.2rem 1.2rem 0;
  color: var(--teal-deep);
  background: var(--cream);
  font-size: clamp(1.08rem, 1.8vw, 1.25rem);
  font-weight: 800;
  line-height: 1.6;
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: clamp(3.5rem, 8vw, 6rem);
}

.media-grid img {
  display: block;
  width: 100%;
  height: clamp(15rem, 28vw, 23rem);
  object-fit: cover;
  border-radius: 1.35rem;
  box-shadow: 0 14px 36px rgba(18, 60, 56, 0.12);
}

/* Article comparison pair (poor-vis: AI illustration vs real photo) */
.photo-pair {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(1rem, 2.5vw, 1.75rem);
  margin: clamp(2.25rem, 5vw, 3.5rem) 0;
}

.photo-pair img {
  display: block;
  width: 100%;
  height: clamp(16rem, 32vw, 27rem);
  object-fit: cover;
  object-position: center 30%;
  border-radius: 1.35rem;
  box-shadow: 0 14px 36px rgba(18, 60, 56, 0.12);
}

@media (max-width: 44rem) {
  .photo-pair {
    grid-template-columns: 1fr;
  }

  .photo-pair img {
    height: auto;
    max-height: 32rem;
  }
}

/* Article photo gallery: uncropped thumbs + native-dialog lightbox */
.photo-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  align-items: center; /* mixed-aspect photos sit level in the row */
  margin-top: clamp(3.5rem, 8vw, 6rem);
  padding: 0;
  list-style: none;
}

.photo-gallery li {
  min-width: 0;
}

.photo-gallery a {
  display: block;
  border-radius: 1.35rem;
  overflow: hidden;
  box-shadow: 0 14px 36px rgba(18, 60, 56, 0.12);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.photo-gallery a:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.photo-gallery a:focus-visible {
  outline: 3px solid var(--orange-strong);
  outline-offset: 3px;
}

.photo-gallery img {
  display: block;
  width: 100%;
  height: auto;
}

/* Seagrass article: uniform card sizes for mixed-aspect photos (full image still opens in the lightbox) */
.photo-gallery--uniform a {
  height: clamp(15rem, 28vw, 23rem);
}

.photo-gallery--uniform img {
  height: 100%;
  object-fit: cover;
}

@media (max-width: 56rem) {
  .photo-gallery--uniform a {
    height: auto;
  }

  .photo-gallery--uniform img {
    height: auto;
    max-height: 34rem;
  }
}

@media (max-width: 56rem) {
  .photo-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 34rem) {
  .photo-gallery {
    grid-template-columns: 1fr;
  }
}

/* Lightbox dialog */
.gallery-dialog {
  width: min(94vw, 68rem);
  max-width: none;
  padding: 0;
  border: 0;
  border-radius: 1.5rem;
  background: rgba(15, 40, 38, 0.96);
  color: var(--white);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}

.gallery-dialog::backdrop {
  background: rgba(8, 24, 23, 0.82);
  backdrop-filter: blur(3px);
}

.gallery-dialog__frame {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  grid-template-rows: auto 1fr auto;
  gap: 0.25rem 0.5rem;
  align-items: center;
  padding: 0.75rem;
}

.gallery-dialog__stage {
  grid-column: 2;
  grid-row: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
}

.gallery-dialog__stage img {
  display: block;
  max-width: 100%;
  max-height: 76vh;
  width: auto;
  height: auto;
  border-radius: 0.75rem;
}

.gallery-dialog__close {
  grid-column: 3;
  grid-row: 1;
  justify-self: end;
}

.gallery-dialog__prev {
  grid-column: 1;
  grid-row: 2;
}

.gallery-dialog__next {
  grid-column: 3;
  grid-row: 2;
}

.gallery-dialog__status {
  grid-column: 2;
  grid-row: 3;
  justify-self: center;
  font-size: 0.9rem;
  opacity: 0.85;
}

.gallery-dialog__open {
  grid-column: 1;
  grid-row: 1;
  font-size: 0.9rem;
}

.gallery-dialog button {
  font: inherit;
  color: var(--white);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  padding: 0.45rem 1rem;
  cursor: pointer;
  transition: background 150ms ease, border-color 150ms ease;
}

.gallery-dialog button:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.7);
}

.gallery-dialog button:focus-visible {
  outline: 2px solid var(--orange-strong);
  outline-offset: 2px;
}

.gallery-dialog__prev,
.gallery-dialog__next {
  font-size: 1.6rem;
  line-height: 1;
  padding: 0.35rem 0.9rem;
}

.gallery-dialog__open {
  text-align: left;
}

@media (max-width: 44rem) {
  .gallery-dialog__frame {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .gallery-dialog__open {
    display: none;
  }
}

.booking-hero .button {
  margin-top: 1.5rem;
}

.booking-alt {
  margin-top: 0.85rem;
  font-size: 0.95rem;
  opacity: 0.78;
}

.review-grid--all {
  align-items: stretch;
}

@media (max-width: 66rem) {
  .site-header .brand-art {
    --brand-art-size: 3.75rem;
  }

  .nav-links {
    gap: 0.5rem;
  }

  .nav-links > a:not(.button),
  .nav-links summary {
    max-width: 8.5rem;
    font-size: 0.84rem;
    text-align: center;
    white-space: normal;
  }

  .credential-layout {
    grid-template-columns: 1fr;
  }

  .photo-frame--secondary {
    display: none;
  }
}

@media (max-width: 50rem) {
  .site-header {
    position: sticky;
  }

  .site-header[data-menu-open="true"] {
    max-height: 100svh;
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  body.menu-open {
    overflow: hidden;
  }

  .header-shell {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    min-height: 0;
    gap: 0.75rem;
    padding-block: 0.75rem;
  }

  /* The full lock-up becomes illegible at phone size. Crop the supplied
     artwork to its recognisable wave mark; the footer keeps the full logo. */
  .site-header .brand-art {
    width: 3.25rem;
    aspect-ratio: 1;
  }

  .site-header .brand-logo {
    top: -0.15rem;
    left: 50%;
    width: 5rem;
    transform: translateX(-50%);
  }

  .nav-toggle {
    display: inline-flex;
    grid-column: 3;
  }

  .primary-nav {
    grid-column: 1 / -1;
    width: 100%;
  }

  .js .primary-nav {
    display: none;
  }

  .js .site-header[data-menu-open="true"] .primary-nav {
    display: block;
  }

  .nav-links {
    width: 100%;
    align-items: stretch;
    flex-direction: column;
    gap: 0.25rem;
    padding: 0.25rem 0 0.5rem;
  }

  .nav-links > a,
  .nav-links summary,
  .language-switch {
    display: flex;
    width: 100%;
    max-width: none;
    min-height: 2.75rem;
    align-items: center;
    justify-content: flex-start;
    padding: 0.55rem 0.75rem;
    border-radius: 0.7rem;
    font-size: 1rem;
    text-align: left;
    white-space: normal;
  }

  .nav-links > .button {
    width: 100%;
    min-height: 2.75rem;
  }

  .language-switch {
    justify-content: flex-start;
  }

  .language-switch a {
    display: inline-flex;
    min-width: 2.75rem;
    min-height: 2.75rem;
    align-items: center;
    justify-content: center;
    padding-inline: 0.25rem;
  }

  .nav-dropdown summary {
    justify-content: space-between;
  }

  .hero-grid,
  .stream-heading,
  .about-layout,
  .credential-panel,
  .coaching-overview,
  .offer-editorial {
    grid-template-columns: 1fr;
  }

  .section {
    padding-block: 4.5rem;
  }

  .page-hero {
    padding-block: 4rem 6.5rem;
  }

  .article-hero {
    padding-block: 4rem 6.5rem;
  }

  .article-content {
    padding-block: 3.5rem 4.5rem;
  }

  .flow-band {
    padding-block: 4.25rem;
  }

  .final-cta {
    padding-block: 4.5rem;
  }

  .site-footer {
    padding-block: 3.25rem 1.5rem;
  }

  .prose,
  .article-body {
    max-width: 42rem;
  }

  .eyebrow,
  .page-eyebrow,
  .hero-copy > .eyebrow {
    font-size: 1rem;
    line-height: 1.45;
  }

  .article-hero h1 {
    font-size: clamp(2.55rem, 7vw, 3.4rem);
    letter-spacing: -0.045em;
    line-height: 1.04;
  }

  .coaching-overview {
    gap: 1.75rem;
    margin-bottom: 3.5rem;
  }

  #about-coaching .section-heading {
    max-width: 15ch;
  }

  .offer-editorial {
    gap: 2.5rem;
  }

  .offer-principle {
    width: min(100%, 34rem);
  }

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

  .hero {
    min-height: auto;
    padding-top: 3.5rem;
  }

  .hero-grid {
    gap: 1.5rem;
  }

  .dropdown-panel {
    position: static;
    width: 100%;
    margin-top: 0.25rem;
    padding: 0.35rem 0 0.35rem 0.75rem;
    border: 0;
    border-left: 2px solid var(--teal-mist);
    border-radius: 0;
    box-shadow: none;
    transform: none;
  }

  .dropdown-panel a {
    min-height: 2.75rem;
    padding: 0.65rem 0.8rem;
  }

  .sea-scene {
    min-height: 20rem;
  }

  .sea-orb {
    right: 8%;
    width: min(84%, 22rem);
  }

  .sun {
    right: 4%;
  }

  .card-grid,
  .review-grid,
  .post-grid,
  .stream-stories--asymmetric,
  .stream-stories--featured,
  .footer-grid,
  .footer-streams {
    grid-template-columns: 1fr;
  }

  .photo-frame--portrait {
    width: min(100%, 28rem);
  }

  .credential-panel {
    align-items: start;
  }

  .prose--columns {
    columns: auto;
  }

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

  .media-grid img {
    height: auto;
    max-height: 34rem;
  }

  .flow-band-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-streams {
    gap: 0.25rem;
    margin-top: 2rem;
    padding-top: 1.25rem;
  }

  .footer-grid {
    gap: 1.75rem;
  }

  .footer-links {
    gap: 0;
  }

  .footer-links a,
  .footer-streams a,
  .post-card h2 a,
  .post-card h3 a,
  .stream-heading h2 a,
  .latest-post a,
  .page-eyebrow a,
  .article-body a {
    display: inline-flex;
    min-height: 2.75rem;
    align-items: center;
  }

  .footer-links a,
  .footer-streams a {
    width: 100%;
    padding-block: 0.4rem;
    font-size: 1rem;
  }

  .footer-links span {
    font-size: 1rem;
    line-height: 1.55;
  }

  .article-body a {
    max-width: 100%;
    overflow-wrap: anywhere;
    vertical-align: middle;
  }

  .stream-section + .stream-section {
    margin-top: 3.75rem;
  }

  .video-feature {
    padding-top: 2.75rem;
  }

  .page-hero::before {
    top: 8%;
    right: -2rem;
  }

  .stream-stories .post-card--secondary,
  .stream-page--beneath .post-card--secondary {
    margin-top: 0;
  }
}

@media (max-width: 34rem) {
  .container {
    width: min(calc(100% - 1.5rem), var(--content));
  }

  .site-header .brand-art {
    width: 3.1rem;
  }

  .site-footer .brand-art {
    --brand-art-size: 5.75rem;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(2.8rem, 13vw, 3.5rem);
    letter-spacing: -0.055em;
    line-height: 0.98;
  }

  .article-hero h1 {
    font-size: clamp(2.45rem, 12vw, 2.8rem);
    letter-spacing: -0.04em;
    line-height: 1.04;
  }

  .hero {
    padding-block: 3.25rem 5.25rem;
  }

  .section {
    padding-block: 3.75rem;
  }

  .page-hero,
  .article-hero {
    padding-block: 3.5rem 5.75rem;
  }

  .article-content {
    padding-block: 3rem 4rem;
  }

  .flow-band,
  .final-cta {
    padding-block: 4rem;
  }

  .sea-scene {
    min-height: 18rem;
  }

  .sea-orb {
    right: 10%;
    width: min(80%, 18rem);
  }

  .hero-copy > p {
    margin-bottom: 1.5rem;
  }

  .offer-principle,
  .session-section,
  .post-card,
  .stream-card,
  .quote-card,
  .review-card {
    padding: 1.35rem;
  }

  .post-card-media {
    margin: -1.35rem -1.35rem 1.35rem;
  }

  .session-section {
    margin-top: 3.25rem;
  }

  .quote-card {
    margin-bottom: 3rem;
  }

  .final-cta p {
    font-size: 1.7rem;
  }

  .offer-principle,
  .post-card,
  .stream-card,
  .quote-card,
  .review-card {
    border-radius: 1.4rem;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* Persistent play/pause control for the decorative sea video. */
.video-frame {
  position: relative;
  width: min(100%, 60rem);
  aspect-ratio: 16 / 9;
  margin-inline: auto;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.video-frame .sea-video {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 0;
  box-shadow: none;
}
.video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(3.75rem, 12vw, 4.5rem);
  height: clamp(3.75rem, 12vw, 4.5rem);
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--orange-strong);
  color: #fff;
  box-shadow: 0 0.4rem 1.2rem rgba(0, 0, 0, 0.25);
  cursor: pointer;
  opacity: 0.96;
  transform: translate(-50%, -50%);
  transition: background-color 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
}

.video-play:hover {
  background: var(--teal-deep);
  opacity: 1;
}

.video-frame[data-video-state="playing"] .video-play {
  top: auto;
  right: 1rem;
  bottom: 1rem;
  left: auto;
  opacity: 0.78;
  transform: none;
}

.video-frame[data-video-state="playing"] .video-play:hover,
.video-frame[data-video-state="playing"] .video-play:focus-visible {
  opacity: 1;
}

.video-play__icon {
  width: 1.75rem;
  height: 1.75rem;
}

.video-play__icon--pause,
.video-frame[data-video-state="playing"] .video-play__icon--play {
  display: none;
}

.video-frame[data-video-state="playing"] .video-play__icon--pause {
  display: block;
}

.video-play:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 3px;
  box-shadow: 0 0 0 6px var(--teal-deep), 0 0.4rem 1.2rem rgba(0, 0, 0, 0.25);
}

/* Cookie consent banner (GA4, GDPR/PECR opt-in) */
.consent-banner {
  position: fixed;
  inset-inline: 0;
  bottom: 0;
  z-index: 60;
  padding: clamp(1rem, 2.5vw, 1.4rem) clamp(1.2rem, 4vw, 2rem);
  border-top: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 -12px 44px rgba(18, 60, 56, 0.14);
}

.consent-banner__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem 2rem;
  width: min(100%, 68rem);
  margin-inline: auto;
}

.consent-banner__message {
  flex: 1 1 24rem;
  margin: 0;
  color: var(--teal-deep);
  font-size: clamp(0.95rem, 1.3vw, 1.05rem);
  line-height: 1.55;
}

.consent-banner__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.8rem 1.2rem;
  margin: 0;
}

.consent-btn {
  padding: 0.7rem 1.5rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.consent-btn--accept {
  background: var(--teal-deep);
  color: #ffffff;
}

.consent-btn--accept:hover {
  background: #0b4a44;
}

.consent-btn--reject {
  border-color: var(--line);
  background: transparent;
  color: var(--teal-deep);
}

.consent-btn--reject:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.consent-privacy {
  color: var(--teal-deep);
  font-weight: 600;
  text-decoration-color: var(--orange);
  text-underline-offset: 0.22em;
}

.consent-privacy:hover {
  color: var(--orange);
}

.cookie-settings-link {
  padding: 0;
  border: 0;
  background: none;
  color: inherit;
  font: inherit;
  text-decoration: underline;
  text-decoration-color: currentColor;
  text-underline-offset: 0.22em;
  cursor: pointer;
}

.cookie-settings-link:hover {
  color: var(--orange);
}

@media (max-width: 44rem) {
  .consent-banner {
    padding-bottom: calc(clamp(0.8rem, 2vw, 1.1rem) + env(safe-area-inset-bottom, 0px));
  }

  .consent-banner__actions {
    width: 100%;
  }
}

/* Privacy notice pages */
.prose-policy h2 {
  margin-top: 2.4rem;
  margin-bottom: 0.8rem;
  color: var(--teal-deep);
  font-size: clamp(1.35rem, 2.2vw, 1.7rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.prose-policy ul {
  margin: 1rem 0 1.6rem;
  padding-left: 1.3rem;
}

.prose-policy li {
  margin-bottom: 0.55rem;
  line-height: 1.6;
}

.prose-policy a {
  color: var(--teal-deep);
  text-decoration-color: var(--orange);
  text-underline-offset: 0.2em;
}

