:root {
  --ink: #263b42;
  --ink-soft: #4b5f63;
  --pine: #365145;
  --meadow: #6f8067;
  --meadow-pale: #e8eee6;
  --sky: #7195a9;
  --sky-deep: #476f83;
  --sky-pale: #e5eff2;
  --cream: #f8f4eb;
  --sand: #dfd1b7;
  --paper: #fffefa;
  --white: #ffffff;
  --line: rgba(38, 59, 66, 0.15);
  --shadow: 0 20px 55px rgba(38, 59, 66, 0.12);
  --radius-sm: 0.55rem;
  --radius-md: 1.1rem;
  --radius-lg: 2rem;
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --sans: "Avenir Next", Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
  --content: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; text-underline-offset: 0.18em; }

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

:focus-visible {
  outline: 3px solid rgba(71, 111, 131, 0.5);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  left: 1rem;
  top: 1rem;
  transform: translateY(-150%);
  padding: 0.65rem 1rem;
  border-radius: 0.4rem;
  background: var(--ink);
  color: white;
}

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

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 254, 250, 0.96);
  backdrop-filter: blur(16px);
}

.header-inner {
  width: min(calc(100% - 2rem), var(--content));
  min-height: 88px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.brand { flex: 0 0 auto; }

.brand img { width: 270px; height: auto; }

.nav-toggle {
  display: none;
  margin-left: auto;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
  color: var(--ink);
  padding: 0.55rem 0.9rem;
  font-weight: 700;
}

.site-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 1.15rem;
}

.site-nav a {
  position: relative;
  color: var(--ink-soft);
  font-size: 0.79rem;
  font-weight: 700;
  letter-spacing: 0.025em;
  text-decoration: none;
  white-space: nowrap;
}

.site-nav a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -0.45rem;
  left: 0;
  height: 2px;
  background: var(--sky);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after { transform: scaleX(1); }

.site-nav a[aria-current="page"] { color: var(--ink); }

.nav-cta,
.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.72rem 1.35rem;
  background: var(--sky-deep);
  color: white !important;
  font-size: 0.83rem;
  font-weight: 800;
  letter-spacing: 0.035em;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.nav-cta:hover,
.button:hover {
  background: #365d70;
  box-shadow: 0 10px 25px rgba(71, 111, 131, 0.2);
  transform: translateY(-2px);
}

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

.button.secondary:hover { background: var(--sky-pale); box-shadow: none; }

.button-stacked {
  min-width: 150px;
  flex-direction: column;
  gap: 0.08rem;
  line-height: 1.15;
}

.button-stacked small {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.055em;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0 0 1rem;
  color: var(--sky-deep);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

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

h1, h2, h3 {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.08;
  text-wrap: balance;
}

h1 { font-size: clamp(3.1rem, 7vw, 6.5rem); letter-spacing: -0.045em; }
h2 { font-size: clamp(2.25rem, 4.2vw, 4.3rem); letter-spacing: -0.035em; }
h3 { font-size: clamp(1.35rem, 2vw, 1.8rem); letter-spacing: -0.02em; }

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

.lead {
  color: var(--ink-soft);
  font-size: clamp(1.08rem, 1.5vw, 1.28rem);
  line-height: 1.65;
}

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

.section { padding: clamp(5rem, 9vw, 8.5rem) 0; }
.section.compact { padding: clamp(3.5rem, 6vw, 5.5rem) 0; }
.section.sky { background: var(--sky-pale); }
.section.cream { background: var(--cream); }
.section.meadow { background: var(--meadow-pale); }
.section.dark { background: var(--pine); color: white; }
.section.dark h2, .section.dark h3 { color: white; }
.section.dark .intro-grid {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(3rem, 6vw, 6rem);
}
.section.dark .eyebrow { color: #f3f7f4; }
.section.dark .prose {
  max-width: 56ch;
  padding-top: 2.75rem;
}
.section.dark .prose p {
  color: #f3f7f4;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.65;
}
.section.dark .prose .lead {
  color: white;
  font-size: clamp(1.16rem, 1.5vw, 1.32rem);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(3rem, 7vw, 6.6rem) 0 clamp(4rem, 8vw, 7rem);
  background: linear-gradient(110deg, var(--paper) 0 57%, var(--sky-pale) 57% 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(350px, 0.78fr);
  align-items: center;
  gap: clamp(2.5rem, 6vw, 6.5rem);
}

.hero-copy { position: relative; z-index: 2; }
.hero-copy h1 { max-width: 780px; }
.hero-copy .lead { max-width: 640px; margin-top: 1.6rem; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 2rem; }

.contact-number {
  margin: 0.85rem 0 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
  font-weight: 650;
  line-height: 1.5;
}
.contact-number a { color: inherit; text-decoration-thickness: 1px; }

.availability {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1.2rem;
  margin-top: 2rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.86rem;
  font-weight: 650;
}

.availability span + span::before { margin-right: 1.2rem; color: var(--sand); content: "\2022"; }

.hero-photo {
  position: relative;
  min-height: 620px;
}

.hero-photo .photo-main {
  width: calc(100% - 2.8rem);
  height: 600px;
  margin-left: auto;
  border-radius: 11rem 11rem var(--radius-lg) var(--radius-lg);
  object-fit: cover;
  object-position: 50% 32%;
  box-shadow: var(--shadow);
}

.hero-photo .photo-inset {
  position: absolute;
  left: -2.5rem;
  bottom: -1.7rem;
  width: 44%;
  aspect-ratio: 1 / 1.18;
  border: 10px solid var(--paper);
  border-radius: var(--radius-lg) var(--radius-lg) 7rem var(--radius-lg);
  object-fit: cover;
  box-shadow: var(--shadow);
}

.route-note {
  position: absolute;
  top: 1rem;
  right: -1rem;
  padding: 0.8rem 1rem;
  border-radius: 0.45rem;
  background: var(--sand);
  color: var(--pine);
  font-family: var(--serif);
  font-size: 1rem;
  line-height: 1.2;
  transform: rotate(2deg);
}

.intro-grid,
.split {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  align-items: start;
  gap: clamp(2.5rem, 7vw, 7rem);
}

.split.center { align-items: center; }
.split.reverse { grid-template-columns: 1.1fr 0.9fr; }

.section-heading { max-width: 760px; }
.section-heading.centered { margin: 0 auto 3rem; text-align: center; }
.section-heading.centered .eyebrow { justify-content: center; }

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

.support-row {
  display: grid;
  grid-template-columns: 3rem 0.95fr 1.2fr;
  gap: 1.5rem;
  padding: 1.4rem 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}

.support-number {
  color: var(--sky-deep);
  font-family: var(--serif);
  font-size: 1.1rem;
  font-style: italic;
}

.support-row h3 { font-size: 1.3rem; }
.support-row p { color: var(--ink-soft); font-size: 0.95rem; }

.photo-window {
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.photo-window img { width: 100%; height: 100%; object-fit: cover; }
.photo-window.landscape { aspect-ratio: 4 / 3; }
.photo-window.portrait { aspect-ratio: 4 / 5; }
.photo-window.wide { aspect-ratio: 3 / 2; }

.photo-pair {
  position: relative;
  min-height: 600px;
}

.photo-pair .back {
  position: absolute;
  inset: 0 18% 18% 0;
  width: 82%;
  height: 82%;
  border-radius: 9rem 9rem var(--radius-lg) var(--radius-lg);
  object-fit: cover;
}

.photo-pair .front {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 50%;
  height: 48%;
  border: 10px solid var(--paper);
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: var(--shadow);
}

.photo-pair .front.botanical-detail { object-position: 28% 50%; }

.lisa-video-card {
  width: min(100%, 470px);
  margin-inline: auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 7rem 7rem var(--radius-lg) var(--radius-lg);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.lisa-video-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 9 / 16;
  background: var(--pine);
}

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

.lisa-video-play {
  position: absolute;
  z-index: 2;
  top: 72%;
  left: 50%;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  min-height: 48px;
  padding: 0.75rem 1rem;
  border: 2px solid var(--white);
  border-radius: 999px;
  background: var(--pine);
  color: var(--white);
  box-shadow: 0 12px 30px rgba(38, 59, 66, 0.3);
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  transform: translate(-50%, -50%);
}

.lisa-video-play:hover { background: var(--ink); }
.lisa-video-play:focus-visible { outline: 3px solid var(--white); outline-offset: 4px; }
.lisa-video-play .ico { width: 1rem; height: 1rem; }
.lisa-video-play[hidden] { display: none; }

.lisa-video-copy {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.35rem 1.4rem 1rem;
}

.lisa-video-copy .eyebrow { margin-bottom: 0.45rem; }
.lisa-video-copy h3 { font-size: 1.35rem; line-height: 1.2; }

.video-duration {
  flex: 0 0 auto;
  padding: 0.36rem 0.55rem;
  border-radius: 999px;
  background: var(--sky-pale);
  color: var(--pine);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.video-transcript {
  margin: 0 1.4rem 1.3rem;
  padding-top: 0.9rem;
  border-top: 1px solid var(--line);
}

.video-transcript summary {
  width: fit-content;
  color: var(--pine);
  cursor: pointer;
  font-size: 0.84rem;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.video-transcript p {
  margin-top: 0.9rem;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.quote {
  margin: 2rem 0;
  padding: 1.6rem 0 1.6rem 1.6rem;
  border-left: 3px solid var(--sky);
  color: var(--pine);
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.3vw, 2rem);
  font-style: italic;
  line-height: 1.35;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}

.step {
  min-height: 285px;
  padding: 2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.72);
}

.step-number {
  display: inline-flex;
  width: 2.6rem;
  height: 2.6rem;
  align-items: center;
  justify-content: center;
  margin-bottom: 3rem;
  border-radius: 50%;
  background: var(--sky-pale);
  color: var(--sky-deep);
  font-family: var(--serif);
  font-size: 1.2rem;
  font-style: italic;
}

.step p { margin-top: 0.8rem; color: var(--ink-soft); font-size: 0.96rem; }

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

.detail {
  min-height: 160px;
  padding: 1.8rem;
  border-right: 1px solid var(--line);
}

.detail:last-child { border-right: 0; }
.detail small { display: block; color: var(--sky-deep); font-size: 0.7rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; }
.detail strong { display: block; margin-top: 0.55rem; font-family: var(--serif); font-size: 1.35rem; font-weight: 500; line-height: 1.25; }
.detail span { display: block; margin-top: 0.45rem; color: var(--ink-soft); font-size: 0.86rem; line-height: 1.45; }

.cta-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 2rem;
  padding: clamp(2.4rem, 6vw, 5.5rem);
  border-radius: var(--radius-lg);
  background: var(--pine);
  color: white;
}

.cta-panel::after {
  position: absolute;
  right: -8%;
  bottom: -65%;
  width: 24rem;
  height: 24rem;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
  box-shadow: 0 0 0 4rem rgba(255,255,255,.035), 0 0 0 8rem rgba(255,255,255,.025);
  content: "";
}

.cta-panel h2 { color: white; }
.cta-panel p { max-width: 680px; margin-top: 1.2rem; color: #dbe7e0; }
.cta-actions { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: stretch; gap: 0.8rem; }
.cta-actions .button { background: var(--paper); color: var(--pine) !important; }
.cta-actions .button.secondary { border-color: rgba(255,255,255,.5); background: transparent; color: white !important; }
.cta-actions .contact-number {
  flex-basis: 100%;
  width: 100%;
  margin-top: 0.15rem;
  color: #f3f7f4;
  text-align: center;
}

.page-hero { padding: clamp(4rem, 8vw, 7.5rem) 0; background: var(--cream); }
.page-hero-grid { display: grid; grid-template-columns: 1fr 0.82fr; align-items: center; gap: clamp(2.5rem, 7vw, 7rem); }
.page-hero h1 { font-size: clamp(3.4rem, 6vw, 5.8rem); }
.page-hero .lead { max-width: 650px; margin-top: 1.5rem; }
.page-hero .photo-window { max-height: 600px; }
.contact-hero .photo-window { max-height: 560px; }
.contact-hero .photo-window img { object-position: 50% 35%; }
.fees-hero .photo-window img { object-position: 50% 46%; }

.credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 1.8rem 0;
}

.credential {
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  background: var(--sky-pale);
  color: var(--sky-deep);
  font-size: 0.78rem;
  font-weight: 800;
}

.prose { max-width: 760px; }
.prose h2 { margin-bottom: 1.5rem; }
.prose h3 { margin: 2.2rem 0 0.8rem; }
.prose p, .prose li { color: var(--ink-soft); }

.gallery-band {
  display: grid;
  grid-template-columns: 1fr 0.78fr 1fr;
  gap: 0.8rem;
}

.gallery-band figure { margin: 0; overflow: hidden; border-radius: var(--radius-sm); }
.gallery-band img { width: 100%; height: 360px; object-fit: cover; }
.gallery-band figure:nth-child(2) img { object-position: 50% 35%; }

.support-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  margin-top: 3rem;
  background: var(--line);
  border: 1px solid var(--line);
}

.support-card { min-height: 250px; padding: 2.2rem; background: var(--paper); }
.support-card span { display: block; margin-bottom: 2.5rem; color: var(--sky-deep); font-family: var(--serif); font-style: italic; }
.support-card p { margin-top: 0.8rem; color: var(--ink-soft); font-size: 0.94rem; }

.context-image {
  overflow: hidden;
  aspect-ratio: 4 / 3;
  margin: clamp(2rem, 4vw, 3rem) 0 0;
  border-radius: var(--radius-md);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.context-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.faq-list { max-width: 900px; margin: 3rem auto 0; border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  border: 0;
  background: transparent;
  color: var(--ink);
  padding: 1.4rem 0;
  text-align: left;
  cursor: pointer;
}
.faq-item button span:first-child { font-family: var(--serif); font-size: 1.35rem; }
.faq-symbol { flex: 0 0 auto; color: var(--sky-deep); font-family: var(--sans); font-size: 0.72rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }
.faq-answer { max-width: 760px; overflow: hidden; }
.faq-answer[hidden] { display: none; }
.faq-answer p { padding: 0 0 1.5rem; color: var(--ink-soft); }

.timeline { max-width: 900px; margin: 3rem auto 0; }
.timeline-row { display: grid; grid-template-columns: 6rem 1fr; gap: 2rem; padding: 2rem 0; border-top: 1px solid var(--line); }
.timeline-row:last-child { border-bottom: 1px solid var(--line); }
.timeline-number { color: var(--sky-deep); font-family: var(--serif); font-size: 2rem; font-style: italic; }
.timeline-row p { max-width: 650px; margin-top: 0.7rem; color: var(--ink-soft); }

.info-table { margin-top: 2.5rem; border-top: 1px solid var(--line); }
.info-row { display: grid; grid-template-columns: 0.7fr 1.3fr; gap: 2rem; padding: 1.4rem 0; border-bottom: 1px solid var(--line); }
.info-row dt { color: var(--sky-deep); font-size: 0.78rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }
.info-row dd { margin: 0; color: var(--ink-soft); }

.notice {
  margin-top: 2rem;
  padding: 1.2rem 1.35rem;
  border-left: 3px solid var(--sky);
  background: var(--sky-pale);
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.contact-layout { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: clamp(2.5rem, 7vw, 7rem); align-items: start; }

.contact-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--cream);
  box-shadow: var(--shadow);
}

.contact-card img { width: 100%; height: 410px; object-fit: cover; object-position: 50% 34%; }
.contact-card-body { padding: 2rem; }
.contact-line { padding: 1rem 0; border-bottom: 1px solid var(--line); }
.contact-line:last-child { border-bottom: 0; }
.contact-line small { display: block; color: var(--sky-deep); font-size: 0.7rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; }
.contact-line a, .contact-line span { display: inline-block; margin-top: 0.3rem; font-family: var(--serif); font-size: 1.18rem; line-height: 1.4; }

.contact-next-step {
  padding: clamp(1.9rem, 4vw, 3.25rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: white;
}
.contact-next-step h2 { max-width: 12ch; font-size: clamp(2.45rem, 4.5vw, 4rem); }
.contact-next-step > .lead { max-width: 580px; margin-top: 1rem; }
.contact-journey { margin: 2.5rem 0 0; padding: 0; list-style: none; }
.contact-journey li {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1.2rem;
  padding: 1.4rem 0;
  border-top: 1px solid var(--line);
}
.contact-journey li:last-child { border-bottom: 1px solid var(--line); }
.contact-step-number {
  display: inline-flex;
  width: 2.55rem;
  height: 2.55rem;
  align-items: center;
  justify-content: center;
  color: var(--sky-deep);
  font-family: var(--serif);
  font-size: 1.15rem;
  font-style: italic;
}
.contact-journey h3 { font-size: 1.42rem; }
.contact-journey p { max-width: 540px; margin-top: 0.35rem; color: var(--ink-soft); }
.contact-next-actions { display: flex; flex-wrap: wrap; gap: 0.85rem; margin-top: 2rem; }
.contact-privacy-note {
  margin-top: 1.4rem;
  padding: 1rem 1.1rem;
  border-left: 3px solid var(--sky);
  background: var(--sky-pale);
  color: var(--ink-soft);
  font-size: 0.88rem;
}
.contact-privacy-note strong { color: var(--ink); }

.contact-form { padding: clamp(1.6rem, 4vw, 3rem); border: 1px solid var(--line); border-radius: var(--radius-lg); background: white; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.15rem; }
.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 0.78rem; font-weight: 800; letter-spacing: 0.03em; }
.field input, .field textarea, .field select {
  width: 100%;
  border: 1px solid rgba(38, 59, 66, 0.24);
  border-radius: 0.45rem;
  background: var(--paper);
  color: var(--ink);
  padding: 0.85rem 0.9rem;
}
.field textarea { min-height: 145px; resize: vertical; }
.form-privacy { margin: 1.2rem 0; color: var(--ink-soft); font-size: 0.78rem; line-height: 1.5; }
.form-status { margin: 1rem 0 0; color: var(--pine); font-size: 0.86rem; font-weight: 700; }

.thank-you { min-height: 67vh; display: grid; place-items: center; padding: 5rem 0; text-align: center; }
.thank-you-inner { max-width: 760px; }
.thank-you .brand-mark { width: 145px; margin: 0 auto 2rem; }
.thank-you .lead { margin: 1.5rem auto 2rem; }

.site-footer { background: #20363a; color: #dce7e4; }
.footer-main { display: grid; grid-template-columns: 1.2fr 0.8fr 0.8fr; gap: 3rem; padding: 4rem 0 3rem; }
.footer-brand img { width: 300px; filter: brightness(0) invert(1); opacity: 0.95; }
.footer-brand p { max-width: 430px; margin-top: 1.3rem; color: #bdd0cc; font-size: 0.9rem; }
.footer-column h2 { color: white; font-family: var(--sans); font-size: 0.7rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; }
.footer-column a, .footer-column span { display: block; margin-top: 0.65rem; color: #dce7e4; font-size: 0.88rem; text-decoration-color: rgba(255,255,255,.35); }
.footer-bottom { padding: 1.2rem 0 1.5rem; border-top: 1px solid rgba(255,255,255,.12); color: #9fb7b2; font-size: 0.74rem; line-height: 1.6; }
.crisis-note { margin-top: 1rem; color: #b9cdc8; }

.mobile-contact { display: none; }

@media (max-width: 1080px) {
  .brand img { width: 225px; }
  .site-nav { gap: 0.75rem; }
  .site-nav a { font-size: 0.72rem; }
  .nav-cta { padding-inline: 1rem; }
  .hero-photo { min-height: 540px; }
  .hero-photo .photo-main { height: 520px; }
}

@media (max-width: 900px) {
  body { padding-bottom: 64px; }
  .header-inner { min-height: 76px; }
  .brand img { width: 230px; }
  .nav-toggle { display: inline-flex; }
  .site-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: none;
    margin: 0;
    padding: 1.2rem max(1rem, calc((100vw - var(--content)) / 2));
    border-bottom: 1px solid var(--line);
    background: var(--paper);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    box-shadow: 0 15px 30px rgba(38,59,66,.08);
  }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 0.75rem 0; font-size: 0.84rem; }
  .site-nav a::after { display: none; }
  .site-nav .nav-cta { margin-top: 0.5rem; }
  .hero { background: linear-gradient(180deg, var(--paper) 0 62%, var(--sky-pale) 62% 100%); }
  .hero-grid, .page-hero-grid, .intro-grid, .split, .split.reverse, .contact-layout { grid-template-columns: 1fr; }
  .hero-photo { width: min(620px, 100%); margin: 0 auto; }
  .intro-grid, .split, .contact-layout { gap: 3rem; }
  .section.dark .intro-grid { grid-template-columns: 1fr; gap: 3rem; }
  .section.dark .prose { max-width: 640px; padding-top: 0; }
  .steps { grid-template-columns: 1fr; }
  .step { min-height: 0; }
  .step-number { margin-bottom: 1.5rem; }
  .detail-strip { grid-template-columns: repeat(2, 1fr); }
  .detail:nth-child(2) { border-right: 0; }
  .detail:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .cta-panel { grid-template-columns: 1fr; }
  .cta-actions { align-items: flex-start; flex-direction: row; flex-wrap: wrap; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .mobile-contact {
    position: fixed;
    z-index: 70;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 0.55rem;
    border-top: 1px solid rgba(255,255,255,.22);
    background: var(--pine);
    box-shadow: 0 -8px 24px rgba(38,59,66,.18);
  }
  .mobile-contact a { padding: 0.45rem 0.8rem; color: white; font-size: 0.78rem; font-weight: 800; text-align: center; text-decoration: none; }
  .mobile-contact a + a { border-left: 1px solid rgba(255,255,255,.25); }
}

@media (max-width: 620px) {
  body { font-size: 16px; }
  .brand img { width: 205px; }
  .wrap { width: min(calc(100% - 1.3rem), var(--content)); }
  h1 { font-size: clamp(2.75rem, 14vw, 4.2rem); }
  h2 { font-size: clamp(2.15rem, 10vw, 3.2rem); }
  .hero { padding-top: 2.5rem; }
  .hero-photo { min-height: 430px; }
  .hero-photo .photo-main { width: calc(100% - 1rem); height: 420px; border-radius: 7rem 7rem 1.5rem 1.5rem; }
  .hero-photo .photo-inset { left: 0; bottom: -1rem; width: 43%; border-width: 6px; }
  .route-note { top: .4rem; right: -.2rem; font-size: .82rem; }
  .availability { display: grid; gap: 0.4rem; }
  .availability span + span::before { display: none; }
  .support-row { grid-template-columns: 2.2rem 1fr; gap: 0.8rem; }
  .support-row p { grid-column: 2; }
  .photo-pair { min-height: 470px; }
  .lisa-video-card { width: min(100%, 420px); border-radius: 5rem 5rem 1.2rem 1.2rem; }
  .lisa-video-play { top: 70%; }
  .lisa-video-copy { padding-inline: 1.05rem; }
  .video-transcript { margin-inline: 1.05rem; }
  .detail-strip { grid-template-columns: 1fr; }
  .detail, .detail:nth-child(2) { border-right: 0; border-bottom: 1px solid var(--line); }
  .detail:last-child { border-bottom: 0; }
  .cta-panel { border-radius: 1.2rem; }
  .cta-actions { flex-direction: column; align-items: stretch; }
  .page-hero { padding-top: 3rem; }
  .page-hero h1 { font-size: clamp(2.8rem, 14vw, 4.3rem); }
  .gallery-band { grid-template-columns: 1fr 1fr; }
  .gallery-band figure:last-child { grid-column: 1 / -1; }
  .gallery-band img { height: 240px; }
  .support-grid { grid-template-columns: 1fr; }
  .support-card { min-height: 0; }
  .context-image { border-radius: 1.2rem; }
  .timeline-row { grid-template-columns: 3.5rem 1fr; gap: 1rem; }
  .info-row { grid-template-columns: 1fr; gap: .45rem; }
  .contact-next-step { padding: 1.45rem; }
  .contact-next-step h2 { font-size: clamp(2.2rem, 11vw, 3.15rem); }
  .contact-journey li { grid-template-columns: 2.65rem 1fr; gap: .85rem; }
  .contact-step-number { width: 2.3rem; height: 2.3rem; }
  .contact-next-actions { align-items: stretch; flex-direction: column; }
  .contact-next-actions .button { width: 100%; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
}

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