:root {
  color-scheme: light;
  --ink: #172225;
  --muted: #5f6f73;
  --soft: #f7faf8;
  --paper: #fffefd;
  --line: #dce5df;
  --sage: #43685c;
  --sage-dark: #23483d;
  --berry: #80546f;
  --clay: #b75f48;
  --blue: #335e7d;
  --shadow: 0 22px 70px rgba(23, 34, 37, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

a {
  color: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 14px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid rgba(220, 229, 223, 0.86);
  background: rgba(255, 254, 253, 0.92);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 190px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: var(--sage);
  color: #fff;
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 15px;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 3vw, 30px);
  color: var(--muted);
  font-size: 14px;
}

.main-nav a,
.site-footer a,
.trust-strip a {
  text-decoration: none;
}

.main-nav a:hover,
.site-footer a:hover,
.trust-strip a:hover {
  color: var(--sage-dark);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 8px;
  font-weight: 760;
  text-decoration: none;
  white-space: nowrap;
}

.header-cta {
  min-width: 96px;
  padding: 10px 18px;
  background: var(--ink);
  color: #fff;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 480px);
  gap: clamp(30px, 6vw, 80px);
  align-items: center;
  min-height: calc(100svh - 72px);
  padding: clamp(42px, 7vw, 86px) clamp(18px, 5vw, 72px) 32px;
  background:
    linear-gradient(90deg, rgba(255, 254, 253, 0.96) 0%, rgba(255, 254, 253, 0.78) 52%, rgba(221, 235, 226, 0.58) 100%),
    var(--paper);
}

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

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

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

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(48px, 8vw, 96px);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 19px;
  line-height: 1.18;
  letter-spacing: 0;
}

.hero-lede {
  max-width: 660px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: clamp(18px, 2.1vw, 23px);
}

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

.button {
  padding: 13px 20px;
}

.button.primary {
  background: var(--sage);
  color: #fff;
}

.button.primary:hover {
  background: var(--sage-dark);
}

.button.secondary {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
}

.button.secondary:hover {
  border-color: var(--sage);
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 760px;
  margin: 0;
}

.hero-facts div,
.direction-grid article,
.service-list article,
.credential-grid article,
.article-grid a,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 254, 253, 0.92);
}

.hero-facts div {
  min-height: 116px;
  padding: 18px;
}

.hero-facts dt {
  font-size: 25px;
  font-weight: 850;
  color: var(--sage-dark);
}

.hero-facts dd {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.hero-media {
  margin: 0;
  align-self: stretch;
}

.hero-media img {
  width: 100%;
  height: min(72svh, 690px);
  object-fit: cover;
  object-position: 50% 18%;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-media figcaption {
  margin-top: 12px;
  color: var(--muted);
  font-size: 13px;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #edf4ef;
}

.trust-strip a {
  min-height: 64px;
  display: grid;
  place-items: center;
  padding: 12px;
  color: var(--sage-dark);
  font-weight: 780;
}

.trust-strip a + a {
  border-left: 1px solid var(--line);
}

.section {
  padding: clamp(56px, 8vw, 106px) clamp(18px, 5vw, 72px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(220px, 0.42fr) minmax(0, 0.58fr);
  gap: 30px;
  align-items: end;
  margin-bottom: 32px;
}

.about {
  display: grid;
  grid-template-columns: minmax(220px, 0.42fr) minmax(0, 0.58fr);
  gap: clamp(28px, 6vw, 80px);
  background: var(--paper);
}

.about .section-heading {
  display: block;
  margin-bottom: 0;
}

.about-body {
  color: var(--muted);
  font-size: 18px;
}

.about-body p:last-child {
  margin-bottom: 0;
}

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

.direction-grid article {
  min-height: 190px;
  padding: 24px;
}

.direction-grid article:nth-child(2n) {
  border-top: 4px solid var(--berry);
}

.direction-grid article:nth-child(2n + 1) {
  border-top: 4px solid var(--sage);
}

.direction-grid p,
.service-list p,
.credential-grid p,
.article-grid small,
.faq-list p {
  color: var(--muted);
}

.services {
  background: #f0f5f7;
}

.booking-section {
  background: #fffefd;
}

.booking-frame-wrap {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f2f6f4;
  box-shadow: var(--shadow);
}

.booking-frame {
  display: block;
  width: 100%;
  height: min(86svh, 980px);
  min-height: 720px;
  border: 0;
  background: #f2f6f4;
}

.booking-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 18px;
}

.service-list {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-list article {
  min-height: 168px;
  padding: 22px;
}

.service-list span,
.article-grid span,
.credential-grid span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 820;
  text-transform: uppercase;
}

.flow {
  background: var(--ink);
  color: #fff;
}

.flow .eyebrow {
  color: #e5ad8e;
}

.flow-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding: 0;
  margin: 0;
  list-style: none;
  counter-reset: flow;
}

.flow-list li {
  position: relative;
  min-height: 210px;
  padding: 66px 24px 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  counter-increment: flow;
}

.flow-list li::before {
  content: counter(flow, decimal-leading-zero);
  position: absolute;
  top: 22px;
  left: 24px;
  color: #9fcbc0;
  font-weight: 860;
}

.flow-list strong,
.flow-list span {
  display: block;
}

.flow-list span {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.72);
}

.credential-grid article {
  min-height: 182px;
  padding: 22px;
}

.credential-grid article.is-highlight {
  border-color: rgba(128, 84, 111, 0.45);
  background: #fff8fb;
}

.article-grid a {
  min-height: 190px;
  padding: 24px;
  text-decoration: none;
}

.article-grid a:hover {
  border-color: var(--sage);
}

.article-grid strong {
  display: block;
  min-height: 76px;
  font-size: 20px;
  line-height: 1.2;
}

.article-grid small {
  display: block;
  margin-top: 18px;
}

.faq {
  background: var(--paper);
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 920px;
}

.faq-list details {
  padding: 20px 22px;
}

.faq-list summary {
  cursor: pointer;
  font-size: 18px;
  font-weight: 780;
}

.faq-list p {
  margin: 14px 0 0;
}

.final-cta {
  padding: clamp(56px, 8vw, 104px) clamp(18px, 5vw, 72px);
  background: #e8f0ec;
}

.final-cta h2 {
  max-width: 760px;
  margin-bottom: 24px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 24px clamp(18px, 5vw, 72px);
  color: var(--muted);
  font-size: 14px;
  background: var(--ink);
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  margin-left: 18px;
  color: #d8e9e0;
}

@media (max-width: 980px) {
  .main-nav {
    display: none;
  }

  .hero,
  .about,
  .section-heading {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-media {
    order: -1;
  }

  .hero-media img {
    height: min(68svh, 620px);
  }

  .direction-grid,
  .service-list,
  .credential-grid,
  .article-grid,
  .flow-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .site-header {
    min-height: 66px;
  }

  .brand {
    min-width: 0;
  }

  .brand small {
    display: none;
  }

  .header-cta {
    min-width: 78px;
    padding-inline: 14px;
  }

  .hero {
    padding-top: 28px;
  }

  h1 {
    font-size: 46px;
  }

  .hero-facts,
  .trust-strip,
  .direction-grid,
  .service-list,
  .credential-grid,
  .article-grid,
  .flow-list {
    grid-template-columns: 1fr;
  }

  .hero-media img {
    height: 520px;
  }

  .trust-strip a + a {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .site-footer {
    display: block;
  }

  .site-footer p + p {
    margin-top: 14px;
  }

  .site-footer a {
    margin-left: 0;
    margin-right: 16px;
  }

  .booking-frame {
    min-height: 760px;
    height: 82svh;
  }

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

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