@import url("https://fonts.googleapis.com/css2?family=Caveat:wght@400;600&family=Lato:wght@300;400;700&display=swap");

:root {
  --mist: #e1ebe9;
  --mist-2: #dbe7e5;
  --sage: #67998f;
  --sage-dark: #4f7f76;
  --ink: #626867;
  --soft-ink: #737373;
  --white: #ffffff;
  --paper: #fbfdfc;
  --line: rgba(103, 153, 143, .22);
  --shadow: 0 24px 80px rgba(79, 127, 118, .16);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Lato, Arial, sans-serif;
  font-size: 18px;
  line-height: 1.75;
}

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

.skip-link {
  position: absolute;
  left: 16px;
  top: 12px;
  z-index: 100;
  transform: translateY(-140%);
  padding: 8px 12px;
  background: var(--sage-dark);
  color: white;
}

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

.site-header {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 42px max(22px, calc((100vw - 980px) / 2)) 10px;
  background: var(--mist);
}

.brand {
  justify-self: center;
  grid-column: 1 / -1;
  color: var(--soft-ink);
  font-family: Caveat, cursive;
  font-size: clamp(42px, 7vw, 68px);
  line-height: 1;
  text-decoration: none;
}

.site-nav {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-top: 1px solid rgba(115, 115, 115, .12);
  padding-top: 14px;
}

.site-nav a {
  padding: 10px 14px;
  color: var(--soft-ink);
  font-size: 14px;
  letter-spacing: 0;
  text-decoration: none;
  text-transform: uppercase;
}

.site-nav a:hover,
.site-nav a:focus {
  background: var(--sage);
  color: white;
  outline: 0;
}

.menu-toggle { display: none; }

.hero {
  background: linear-gradient(var(--mist) 0 46%, var(--white) 46% 100%);
  padding: 10px max(20px, calc((100vw - 980px) / 2)) 70px;
  text-align: center;
}

.hero-frame {
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(14px, 2.4vw, 28px);
  background: white;
}

.hero-frame img {
  width: 100%;
  aspect-ratio: 3.05 / 1;
  object-fit: cover;
  object-position: center;
}

.hero-copy {
  max-width: 760px;
  margin: 48px auto 0;
}

.kicker,
.eyebrow,
h1,
h2 {
  font-family: Caveat, cursive;
  font-weight: 600;
  letter-spacing: 0;
}

h1 {
  margin: 0 0 12px;
  color: var(--soft-ink);
  font-size: clamp(54px, 8vw, 90px);
  line-height: 1;
}

h2 {
  margin: 0 0 22px;
  color: var(--sage);
  font-size: clamp(42px, 5.8vw, 60px);
  line-height: 1.08;
}

h3 {
  margin: 0 0 10px;
  color: var(--sage-dark);
  font-family: Caveat, cursive;
  font-size: 36px;
  font-weight: 600;
  line-height: 1.1;
}

p { margin: 0 0 22px; }

.kicker {
  color: var(--soft-ink);
  font-size: clamp(38px, 5vw, 52px);
  line-height: 1.1;
}

.eyebrow {
  display: block;
  margin-bottom: 10px;
  color: var(--sage);
  font-size: 40px;
  line-height: 1;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 11px 22px;
  border: 0;
  background: var(--sage);
  color: white;
  cursor: pointer;
  font: inherit;
  font-weight: 700;
  text-decoration: none;
}

.button:hover,
.button:focus {
  background: var(--sage-dark);
  outline: 0;
}

.section {
  width: min(980px, calc(100% - 40px));
  margin: auto;
  padding: clamp(70px, 8vw, 112px) 0;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 6vw, 76px);
  align-items: center;
}

.section-copy p {
  color: var(--soft-ink);
}

.soft-photo {
  margin: 0;
  padding: 16px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.soft-photo img {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
}

.quote-band {
  width: 100%;
  padding: clamp(54px, 7vw, 78px) max(24px, calc((100vw - 820px) / 2));
  background: var(--mist);
  text-align: center;
}

.quote-band p {
  margin: 0;
  color: var(--soft-ink);
  font-size: clamp(22px, 2.5vw, 30px);
  font-style: italic;
  font-weight: 700;
}

.section-head {
  max-width: 760px;
  margin-bottom: 32px;
}

.section-head.centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.text-grid,
.rate-grid,
.experience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.text-card,
.rate-card,
.experience,
.contact-panel {
  background: white;
  border: 1px solid var(--line);
  box-shadow: 0 18px 54px rgba(103, 153, 143, .09);
}

.text-card,
.rate-card,
.experience {
  padding: 28px;
}

.session {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.calm-list {
  display: grid;
  gap: 10px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.calm-list li {
  position: relative;
  padding-left: 28px;
  color: var(--soft-ink);
}

.calm-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .72em;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--sage);
}

.rates {
  width: 100%;
  max-width: none;
  padding-left: max(20px, calc((100vw - 980px) / 2));
  padding-right: max(20px, calc((100vw - 980px) / 2));
  background: var(--mist-2);
}

.rate-card span {
  color: var(--sage-dark);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 13px;
}

.rate-card a {
  color: var(--sage-dark);
  font-weight: 700;
  text-decoration: none;
}

.rate-card.featured {
  transform: translateY(-12px);
  border-color: rgba(103, 153, 143, .42);
  box-shadow: var(--shadow);
}

.experiences {
  text-align: center;
}

.experience p {
  margin: 0;
  color: var(--soft-ink);
  font-style: italic;
}

.contact-panel {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(24px, 5vw, 54px);
  padding: clamp(26px, 5vw, 56px);
}

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

label {
  display: grid;
  gap: 7px;
  color: var(--sage-dark);
  font-weight: 700;
}

input,
textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid var(--line);
  background: #f8fbfa;
  color: var(--ink);
  font: inherit;
  padding: 10px 13px;
}

textarea { resize: vertical; }

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px 28px;
  padding: 34px 22px;
  background: var(--mist);
  color: var(--soft-ink);
  text-align: center;
}

.site-footer p {
  width: 100%;
  margin: 0;
  font-family: Caveat, cursive;
  font-size: 40px;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.site-footer a {
  text-decoration: none;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .55s ease, transform .55s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 840px) {
  .site-header {
    grid-template-columns: 1fr auto;
    padding: 24px 20px 12px;
  }

  .brand {
    grid-column: auto;
    justify-self: start;
    font-size: 40px;
  }

  .menu-toggle {
    display: grid;
    gap: 5px;
    width: 42px;
    height: 42px;
    place-content: center;
    border: 1px solid var(--line);
    background: white;
  }

  .menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--sage-dark);
  }

  .site-nav {
    display: none;
    grid-column: 1 / -1;
    grid-template-columns: 1fr;
    justify-items: start;
    border-top: 1px solid var(--line);
  }

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

  .hero {
    background: linear-gradient(var(--mist) 0 34%, var(--white) 34% 100%);
    padding-top: 8px;
  }

  .hero-frame img {
    aspect-ratio: 1.45 / 1;
  }

  .split,
  .text-grid,
  .rate-grid,
  .experience-grid,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .soft-photo img { min-height: 320px; }
  .rate-card.featured { transform: none; }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

.contact-privacy { grid-template-columns: auto 1fr; align-items: start; font-size: 15px; font-weight: 400; }
.contact-privacy input { width: 18px; min-height: 18px; margin-top: 5px; }
.contact-honeypot { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.contact-form-status { min-height: 1.75em; margin: 0; font-size: 15px; }
.privacy-page { width: min(760px, calc(100% - 40px)); margin: 0 auto; padding: 56px 0 90px; }
.privacy-page h1 { font-size: clamp(48px, 7vw, 72px); }
.privacy-page h2 { margin-top: 42px; font-size: clamp(34px, 5vw, 46px); }

@media (max-width: 480px) {
  .privacy-page h1 { font-size: clamp(36px, 11vw, 48px); }
}
