:root {
  color-scheme: light;
  --bg: #f8fbff;
  --paper: #ffffff;
  --sage: #6f8da6;
  --sage-dark: #285678;
  --sage-soft: #edf6ff;
  --logo-blue: #70aae6;
  --logo-blue-deep: #2d73a8;
  --logo-blue-ink: #174f79;
  --blue-soft: #e9f5ff;
  --charcoal: #1f2d36;
  --muted: #61717d;
  --line: #d6e2eb;
  --sun: #eab75d;
  --coral: #cf745f;
  --butter: #fff4d8;
  --rose-soft: #f8ebe5;
  --sky-soft: #eaf4f6;
  --shadow: 0 24px 60px rgba(31, 45, 54, 0.14);
  --soft-shadow: 0 14px 38px rgba(31, 45, 54, 0.09);
  --radius: 8px;
  --max: 1160px;
  --gutter: clamp(20px, 5vw, 56px);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--charcoal);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, rgba(233, 245, 255, 0.96) 0, rgba(246, 251, 255, 0.86) 330px, rgba(255, 244, 216, 0.14) 610px, rgba(248, 251, 255, 0) 820px),
    var(--bg);
  color: var(--charcoal);
  font-size: 16px;
  line-height: 1.6;
}

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

a {
  color: inherit;
}

p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.05;
  letter-spacing: 0;
  font-family: Georgia, "Times New Roman", serif;
  color: #1c2b34;
}

h1 {
  font-size: 3.7rem;
  max-width: none;
  white-space: nowrap;
}

h2 {
  font-size: 2.8rem;
}

h3 {
  font-size: 1.35rem;
}

p {
  margin: 0;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 20;
  padding: 10px 14px;
  border-radius: var(--radius);
  background: var(--charcoal);
  color: #fff;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px var(--gutter);
  border-bottom: 1px solid rgba(45, 115, 168, 0.18);
  background: rgba(248, 251, 255, 0.92);
  backdrop-filter: blur(16px);
  transition: box-shadow 0.2s ease, background 0.2s ease, padding 0.2s ease;
}

.site-header.is-scrolled {
  padding-block: 10px;
  background: rgba(248, 251, 255, 0.97);
  box-shadow: 0 10px 30px rgba(31, 45, 54, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  color: var(--charcoal);
  text-decoration: none;
  font-weight: 800;
}

.brand-logo {
  display: block;
  height: auto;
}

.brand-logo--header {
  width: 176px;
}

.brand-text {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: normal;
  contain: strict;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a,
.nav-toggle {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 8px 12px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  color: #263845;
  font: inherit;
  font-size: 0.93rem;
  font-weight: 700;
  text-decoration: none;
  background: transparent;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--logo-blue-ink);
  background: var(--blue-soft);
}

.site-nav .nav-cta {
  border-color: rgba(45, 115, 168, 0.28);
  background: #fff;
}

.nav-toggle {
  display: none;
}

.hero,
.page-hero,
.section-band,
.credential-strip,
.activity-stack,
.faq-shell,
.faq-list,
.contact-layout {
  width: min(var(--max), calc(100% - var(--gutter)));
  margin-inline: auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(320px, 1.12fr);
  gap: clamp(28px, 5vw, 60px);
  align-items: center;
  min-height: min(760px, calc(92vh - 92px));
  padding: clamp(38px, 6vw, 76px) 0 34px;
}

.hero-copy {
  display: grid;
  gap: 18px;
}

.hero h1 {
  max-width: none;
}

.home-hero h1 {
  color: var(--sage-dark);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 2.45rem;
  font-weight: 900;
  line-height: 1.08;
}

.hero-wordmark {
  width: min(540px, 100%);
  height: auto;
  margin-bottom: 2px;
}

.hero-logo-image {
  filter: drop-shadow(0 12px 18px rgba(86, 142, 198, 0.12));
}

.hero-lede {
  max-width: 620px;
  color: var(--sage-dark);
  font-size: 1.55rem;
  font-weight: 800;
  line-height: 1.3;
}

.hero-copy p:not(.hero-lede) {
  max-width: 650px;
  color: var(--muted);
  font-size: 1.1rem;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 8px 0 0;
}

.hero-proof div {
  padding: 12px 14px;
  border: 1px solid rgba(45, 115, 168, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: var(--soft-shadow);
}

.hero-proof dt {
  color: var(--logo-blue-ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  font-weight: 800;
  line-height: 1;
}

.hero-proof dd {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1.2;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  line-height: 1.1;
  text-decoration: none;
  cursor: pointer;
}

.button.primary {
  color: #fff;
  background: linear-gradient(135deg, var(--logo-blue-ink), var(--logo-blue-deep));
  box-shadow: 0 12px 28px rgba(23, 79, 121, 0.2);
}

.button.primary:hover {
  background: linear-gradient(135deg, #123f63, #1f6598);
}

.button.secondary {
  color: var(--logo-blue-ink);
  border-color: rgba(45, 115, 168, 0.32);
  background: #fff;
}

.button.secondary:hover {
  border-color: var(--logo-blue-deep);
}

.text-link {
  color: var(--logo-blue-ink);
  font-weight: 800;
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
}

.hero-points {
  display: none;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 4px 0 0;
  list-style: none;
}

.hero-points li {
  padding: 8px 10px;
  border: 1px solid rgba(45, 115, 168, 0.24);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.7);
  color: #285678;
  font-size: 0.9rem;
  font-weight: 750;
}

.hero-media {
  margin: 0;
}

.hero-photo {
  position: relative;
}

.hero-media img,
.framed-image,
.media-hero img,
.preview-rail img,
.angled-media img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-media img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.hero-media,
.preview-rail article,
.angled-media {
  isolation: isolate;
}

.angled-media {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
}

.hero-media img,
.framed-image,
.media-hero img,
.preview-rail img,
.angled-media img {
  transition: transform 0.55s ease, filter 0.55s ease, box-shadow 0.55s ease;
}

.motion-photo:hover,
.media-hero img:hover,
.preview-rail article:hover img,
.activity-row:hover .angled-media img {
  transform: scale(1.025);
  filter: saturate(1.04) brightness(1.02);
}

figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.86rem;
}

.credential-strip {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr);
  gap: 8px 16px;
  align-items: center;
  margin-top: -10px;
  margin-bottom: 34px;
  padding: 14px 16px;
  border: 1px solid rgba(112, 170, 230, 0.3);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 12px 30px rgba(31, 45, 54, 0.06);
}

.credential-kicker,
.credential-note {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
}

.credential-kicker {
  grid-row: 1 / span 2;
  color: var(--logo-blue-ink);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.credential-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.credential-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 6px 10px 6px 7px;
  border: 1px solid rgba(45, 115, 168, 0.2);
  border-radius: var(--radius);
  color: #213442;
  background: linear-gradient(180deg, #fff 0, rgba(233, 245, 255, 0.72) 100%);
  font-size: 0.9rem;
  font-weight: 850;
}

.credential-mark {
  display: inline-grid;
  place-items: center;
  min-width: 30px;
  height: 28px;
  padding-inline: 5px;
  border-radius: 7px;
  color: #fff;
  background: linear-gradient(135deg, var(--logo-blue-ink), var(--logo-blue-deep));
  font-size: 0.7rem;
  font-weight: 900;
  line-height: 1;
}

.credential-note {
  grid-column: 2;
}

.section-band {
  padding: clamp(64px, 9vw, 108px) 0;
}

.daily-rhythm {
  padding-top: 34px;
  border-top: 1px solid rgba(45, 115, 168, 0.16);
}

.rhythm-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 14px;
}

.rhythm-tabs button {
  min-height: 42px;
  padding: 10px 15px;
  border: 1px solid rgba(45, 115, 168, 0.24);
  border-radius: var(--radius);
  color: var(--sage-dark);
  font: inherit;
  font-weight: 850;
  background: #fff;
  cursor: pointer;
}

.rhythm-tabs button[aria-pressed="true"] {
  color: #fff;
  border-color: var(--logo-blue-ink);
  background: var(--logo-blue-ink);
}

.rhythm-panel {
  display: grid;
  gap: 6px;
  min-height: 118px;
  padding: 24px;
  border: 1px solid rgba(112, 170, 230, 0.34);
  border-radius: var(--radius);
  background: linear-gradient(135deg, #fff 0, rgba(233, 245, 255, 0.94) 100%);
  box-shadow: 0 14px 38px rgba(45, 115, 168, 0.1);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.rhythm-panel.is-changing {
  opacity: 0.2;
  transform: translateY(4px);
}

.rhythm-panel strong {
  color: var(--charcoal);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.65rem;
  line-height: 1.1;
}

.rhythm-panel p {
  max-width: 800px;
  color: var(--muted);
}

.section-grid {
  display: grid;
  gap: clamp(26px, 5vw, 58px);
  align-items: center;
}

.two-column {
  grid-template-columns: minmax(0, 1fr) minmax(310px, 0.9fr);
}

.section-grid p,
.section-heading p,
.activity-copy p,
.page-hero p {
  color: var(--muted);
  font-size: 1.04rem;
}

.trust-band {
  border-top: 1px solid rgba(45, 115, 168, 0.16);
  padding-top: clamp(48px, 7vw, 78px);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.proof-grid p {
  display: grid;
  gap: 6px;
  min-height: 130px;
  padding: 18px;
  border: 1px solid rgba(45, 115, 168, 0.18);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #fff 0, rgba(233, 245, 255, 0.48) 100%);
}

.proof-grid strong {
  color: var(--logo-blue-ink);
  font-size: 1rem;
}

.proof-grid span {
  color: var(--muted);
  font-size: 0.94rem;
}

.section-heading {
  display: grid;
  gap: 12px;
  max-width: 760px;
  margin-bottom: 30px;
}

.split-heading {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  max-width: none;
}

.preview-rail {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.preview-rail article,
.review-grid article {
  display: grid;
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 30px rgba(31, 45, 54, 0.05);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.parent-theme-grid article {
  position: relative;
  overflow: hidden;
  min-height: 174px;
  padding: 22px;
  border-color: rgba(45, 115, 168, 0.18);
  background: linear-gradient(180deg, #fff 0, rgba(233, 245, 255, 0.68) 100%);
}

.parent-theme-grid article::before {
  position: absolute;
  left: 0;
  top: 18px;
  bottom: 18px;
  width: 4px;
  border-radius: 0 4px 4px 0;
  background: linear-gradient(180deg, var(--logo-blue), var(--logo-blue-deep));
  content: "";
}

.lift-card:hover,
.review-grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(207, 116, 95, 0.35);
  box-shadow: var(--soft-shadow);
}

.preview-rail img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.preview-rail h3,
.review-grid h3 {
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 1.05rem;
  line-height: 1.25;
}

.preview-rail p,
.review-grid p {
  color: var(--muted);
  font-size: 0.95rem;
}

.parent-proof {
  border-top: 1px solid rgba(45, 115, 168, 0.16);
  border-bottom: 1px solid rgba(45, 115, 168, 0.16);
}

blockquote {
  margin: 0;
  padding: clamp(24px, 4vw, 40px);
  border-left: 5px solid var(--sun);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 34px rgba(31, 45, 54, 0.08);
}

blockquote p {
  color: #243745;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  line-height: 1.22;
}

blockquote cite {
  display: block;
  margin-top: 14px;
  color: var(--muted);
  font-style: normal;
  font-weight: 700;
}

.final-cta,
.review-actions,
.provider-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: clamp(34px, 6vw, 54px);
  border: 1px solid rgba(45, 115, 168, 0.18);
  border-radius: var(--radius);
  background: linear-gradient(135deg, #fff 0, #f3f9ff 62%, #edf6ff 100%);
}

.final-cta {
  margin-bottom: clamp(44px, 6vw, 76px);
}

.final-cta p,
.review-actions p {
  margin-top: 8px;
  color: var(--muted);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: clamp(18px, 5vw, 58px);
  padding: 34px var(--gutter);
  border-top: 1px solid rgba(45, 115, 168, 0.22);
  background: #1f2d36;
  color: #fff;
}

.site-footer p {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.76);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-content: start;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.86);
  text-decoration: none;
}

.site-footer a:hover {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.page-hero {
  padding: 56px 0 30px;
}

.compact-hero {
  max-width: 840px;
}

.compact-hero h1 {
  max-width: none;
}

.compact-hero p {
  max-width: 720px;
  margin-top: 18px;
  font-size: 1.35rem;
}

.page-proof {
  max-width: 720px;
  margin-top: 22px;
}

.media-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(300px, 1fr);
  gap: clamp(26px, 5vw, 58px);
  align-items: center;
}

.media-hero h1 {
  max-width: none;
}

.media-hero p {
  margin-top: 18px;
}

.media-hero .button-row {
  margin-top: 24px;
}

.media-hero img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.activity-stack {
  display: grid;
  gap: clamp(58px, 8vw, 104px);
  padding: clamp(24px, 4vw, 46px) 0 clamp(76px, 10vw, 128px);
}

.activity-row {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(300px, 0.88fr);
  gap: clamp(32px, 6vw, 72px);
  align-items: center;
}

.activity-row.image-right {
  grid-template-columns: minmax(300px, 0.88fr) minmax(0, 1.04fr);
}

.activity-row.image-right .angled-media {
  order: 2;
}

.angled-media {
  margin: 0;
}

.angled-media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.image-left .angled-media img {
  clip-path: polygon(0 0, 94% 0, 100% 100%, 0 100%);
}

.image-right .angled-media img {
  clip-path: polygon(6% 0, 100% 0, 100% 100%, 0 100%);
}

.activity-copy {
  display: grid;
  gap: 18px;
}

.activity-copy h2 {
  font-size: 2.35rem;
  white-space: nowrap;
}

.check-list {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 22px;
  color: #354a59;
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--coral);
  content: "";
}

.photo-note {
  max-width: 860px;
  padding-top: 36px;
}

.photo-note p {
  margin-top: 10px;
  color: var(--muted);
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.quote-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.quote-band {
  border-top: 1px solid rgba(45, 115, 168, 0.16);
  border-bottom: 1px solid rgba(45, 115, 168, 0.16);
}

.quote-heading {
  margin-bottom: 24px;
}

.quote-card {
  position: relative;
  display: grid;
  align-content: start;
  gap: 12px;
  overflow: hidden;
  min-height: 250px;
  padding: 28px;
  border: 1px solid rgba(45, 115, 168, 0.2);
  border-top: 5px solid var(--logo-blue);
  border-left: 0;
  background: linear-gradient(160deg, #fff 0, #f5fbff 100%);
}

.quote-card p {
  position: relative;
  z-index: 1;
  font-size: 1.34rem;
}

.quote-mark {
  position: absolute;
  right: 18px;
  top: -30px;
  color: rgba(112, 170, 230, 0.18);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 8.5rem;
  line-height: 1;
  pointer-events: none;
}

.quote-source {
  position: relative;
  z-index: 1;
  align-self: end;
  color: var(--logo-blue-ink);
  font-size: 0.92rem;
  font-weight: 850;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.review-actions {
  margin-bottom: clamp(54px, 8vw, 92px);
}

.qr-code {
  width: 132px;
  min-width: 132px;
  image-rendering: pixelated;
  border: 10px solid #fff;
  border-radius: var(--radius);
  box-shadow: 0 12px 30px rgba(31, 45, 54, 0.12);
}

.faq-shell {
  display: grid;
  grid-template-columns: minmax(240px, 0.58fr) minmax(0, 1.42fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
  padding: 28px 0 clamp(76px, 10vw, 124px);
}

.faq-intro {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 14px;
  padding-left: 22px;
  border-left: 5px solid var(--logo-blue);
}

.faq-intro h2,
.faq-group h2 {
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  line-height: 1.14;
}

.faq-intro h2 {
  color: var(--logo-blue-ink);
  font-size: 1.55rem;
}

.faq-intro p {
  color: var(--muted);
}

.faq-list {
  display: grid;
  gap: 30px;
  max-width: none;
  padding: 0;
}

.faq-group {
  display: grid;
  gap: 10px;
  padding-top: 18px;
  border-top: 1px solid rgba(45, 115, 168, 0.18);
}

.faq-group h2 {
  color: var(--logo-blue-ink);
  font-size: 1.2rem;
}

details {
  overflow: hidden;
  border: 1px solid rgba(45, 115, 168, 0.18);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 10px 26px rgba(31, 45, 54, 0.05);
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

details[open],
details:hover {
  border-color: rgba(45, 115, 168, 0.28);
  box-shadow: 0 16px 34px rgba(23, 79, 121, 0.08);
}

summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  cursor: pointer;
  padding: 18px 20px;
  color: #213442;
  font-weight: 850;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 26px;
  height: 26px;
  border: 1px solid rgba(45, 115, 168, 0.24);
  border-radius: 50%;
  color: var(--logo-blue-ink);
  background: var(--blue-soft);
  content: "+";
}

details[open] summary::after {
  content: "-";
}

details p {
  padding: 0 20px 20px;
  color: var(--muted);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: clamp(28px, 5vw, 58px);
  align-items: start;
  padding: 20px 0 clamp(54px, 8vw, 92px);
}

.contact-panel,
.tour-form {
  display: grid;
  gap: 18px;
}

.contact-list {
  display: grid;
  gap: 12px;
  margin: 0;
}

.contact-list div {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.contact-list dt {
  color: var(--logo-blue-ink);
  font-weight: 850;
}

.contact-list dd {
  margin: 4px 0 0;
  color: var(--muted);
}

.location-map {
  display: grid;
  grid-template-columns: minmax(0, 0.68fr) minmax(420px, 1fr);
  gap: clamp(28px, 5vw, 58px);
  align-items: center;
  scroll-margin-top: 110px;
  margin-bottom: clamp(28px, 5vw, 48px);
  padding: clamp(42px, 7vw, 72px) 0;
  border-top: 1px solid rgba(45, 115, 168, 0.14);
  border-bottom: 1px solid rgba(45, 115, 168, 0.14);
}

#location-map-title {
  scroll-margin-top: 110px;
}

.location-map-copy {
  display: grid;
  gap: 12px;
}

.location-map-copy h2 {
  white-space: nowrap;
}

.location-map-copy p {
  max-width: 540px;
  color: var(--muted);
}

.map-frame {
  overflow: hidden;
  min-height: 360px;
  border: 1px solid rgba(45, 115, 168, 0.22);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 14px 34px rgba(31, 45, 54, 0.08);
}

.map-frame iframe {
  display: block;
  width: 100%;
  min-height: 360px;
  height: 100%;
  border: 0;
}

.tour-form {
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 15px 40px rgba(31, 45, 54, 0.08);
}

.tour-form p {
  color: var(--muted);
}

.tour-form label {
  display: grid;
  gap: 6px;
  color: #263845;
  font-weight: 760;
}

.tour-form input,
.tour-form textarea {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid #cddce7;
  border-radius: var(--radius);
  color: var(--charcoal);
  font: inherit;
  background: #f8fbff;
}

.tour-form textarea {
  resize: vertical;
}

.form-note,
.muted {
  color: var(--muted);
  font-size: 0.92rem;
}

.provider-section {
  justify-content: start;
  margin-bottom: clamp(34px, 6vw, 54px);
}

.provider-section img {
  width: 156px;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: var(--shadow);
}

.can-reveal [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.42s ease, transform 0.42s ease;
}

.can-reveal [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.can-reveal .activity-row .angled-media img {
  transform: scale(1.045) translateY(10px);
}

.can-reveal .activity-row.is-visible .angled-media img {
  transform: scale(1);
}

.can-reveal .activity-row.is-visible:hover .angled-media img {
  transform: scale(1.025);
}

@media (max-width: 900px) {
  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: var(--gutter);
    right: var(--gutter);
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    justify-content: center;
  }

  .hero,
  .media-hero,
  .two-column,
  .faq-shell,
  .activity-row,
  .activity-row.image-right,
  .contact-layout,
  .location-map {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  h1 {
    font-size: 2.45rem;
    max-width: none;
  }

  .hero h1 {
    max-width: none;
  }

  .home-hero h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 2.35rem;
  }

  .activity-copy h2 {
    font-size: 2rem;
  }

  .hero-lede {
    font-size: 1.22rem;
  }

  .hero-proof {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  blockquote p {
    font-size: 1.55rem;
  }

  .compact-hero p {
    font-size: 1.2rem;
  }

  .activity-row.image-right .angled-media {
    order: 0;
  }

  .image-left .angled-media img,
  .image-right .angled-media img {
    clip-path: none;
  }

  .proof-grid,
  .preview-rail,
  .review-grid,
  .quote-list {
    grid-template-columns: 1fr;
  }

  .faq-intro {
    position: static;
  }

  .split-heading {
    grid-template-columns: 1fr;
  }

  .final-cta,
  .review-actions,
  .provider-section,
  .credential-strip,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .credential-kicker,
  .credential-note {
    grid-column: auto;
    grid-row: auto;
  }
}

@media (max-width: 560px) {
  h1 {
    font-size: 1.58rem;
  }

  h2 {
    font-size: 1.82rem;
  }

  .activity-copy h2 {
    font-size: 1.5rem;
  }

  .brand-logo--header {
    width: 132px;
  }

  .site-header {
    gap: 12px;
  }

  .hero {
    padding: 28px 0 38px;
  }

  .page-hero {
    padding: 38px 0 20px;
  }

  .hero-copy {
    gap: 16px;
  }

  .hero-wordmark {
    width: min(344px, 100%);
  }

  .hero-lede {
    font-size: 1.05rem;
  }

  .home-hero h1 {
    font-size: 1.5rem;
  }

  .hero-copy p:not(.hero-lede) {
    display: none;
  }

  .hero-media figcaption {
    display: none;
  }

  .hero-proof {
    grid-template-columns: 1fr;
  }

  .hero-proof div {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 12px;
  }

  .hero-proof dt {
    font-size: 1.2rem;
  }

  .hero-proof dd {
    margin: 0;
    text-align: right;
  }

  .button,
  .button-row {
    width: 100%;
  }

  .rhythm-tabs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-points {
    display: none;
  }

  .final-cta,
  .review-actions,
  .provider-section {
    padding: 22px;
  }

  .location-map {
    padding: 30px 0;
  }

  .credential-strip {
    gap: 10px;
    margin-bottom: 28px;
    padding: 12px;
  }

  .credential-kicker {
    font-size: 0.75rem;
  }

  .credential-badges {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .credential-badge {
    gap: 6px;
    min-height: 38px;
    padding: 6px;
    font-size: 0.8rem;
  }

  .credential-mark {
    min-width: 28px;
    height: 26px;
    font-size: 0.62rem;
  }

  .credential-note {
    font-size: 0.8rem;
    line-height: 1.35;
  }

  .map-frame,
  .map-frame iframe {
    min-height: 270px;
  }
}

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

  .can-reveal [data-reveal] {
    opacity: 1;
    transform: none;
  }

  .can-reveal .activity-row .angled-media img,
  .can-reveal .activity-row.is-visible:hover .angled-media img,
  .motion-photo:hover,
  .media-hero img:hover,
  .preview-rail article:hover img,
  .activity-row:hover .angled-media img {
    transform: none;
    filter: none;
  }
}
