:root {
  --paper: #fbfaf6;
  --soft: #f1eee6;
  --mist: #e8eee8;
  --ink: #25302b;
  --muted: #69736b;
  --line: #d7d0c4;
  --sage: #6f816e;
  --sage-dark: #465747;
  --blue: #6c86a8;
  --white: #ffffff;
  --header-height: 78px;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  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;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

.skip-link {
  background: var(--ink);
  color: var(--white);
  left: 1rem;
  padding: .7rem 1rem;
  position: fixed;
  top: .8rem;
  transform: translateY(-140%);
  transition: transform .2s ease;
  z-index: 20;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  align-items: center;
  background: rgba(251, 250, 246, .94);
  border-bottom: 1px solid rgba(37, 48, 43, .12);
  display: flex;
  gap: 1.5rem;
  height: var(--header-height);
  justify-content: space-between;
  left: 0;
  padding: 0 clamp(1.25rem, 4vw, 4.5rem);
  position: sticky;
  right: 0;
  top: 0;
  z-index: 10;
}

.logo {
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  line-height: 1;
  text-decoration: none;
}

.site-nav {
  align-items: center;
  display: flex;
  gap: clamp(.8rem, 2vw, 1.9rem);
}

.site-nav a,
.site-footer a,
.text-link {
  color: var(--ink);
  font-size: .82rem;
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-nav a:hover,
.site-footer a:hover,
.text-link:hover {
  color: var(--sage-dark);
  text-decoration: underline;
  text-underline-offset: .35em;
}

.menu-toggle {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ink);
  display: none;
  font: inherit;
  padding: .55rem .8rem;
}

.hero {
  align-items: center;
  display: grid;
  gap: clamp(2rem, 5vw, 5rem);
  grid-template-columns: minmax(0, 1fr) minmax(320px, 42vw);
  min-height: calc(100svh - var(--header-height));
  padding: clamp(2rem, 5vw, 5rem) clamp(1.25rem, 6vw, 6rem);
}

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

.eyebrow {
  color: var(--sage-dark);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .14em;
  margin: 0 0 1.1rem;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: 0;
  line-height: .98;
}

h1 {
  font-size: clamp(3rem, 7vw, 6.5rem);
  max-width: 900px;
}

h2 {
  font-size: clamp(2.2rem, 4.7vw, 4.6rem);
}

h3 {
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 400;
  line-height: 1.2;
}

.intro {
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  max-width: 680px;
}

.hero-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 1.1rem 1.4rem;
  margin-top: 2rem;
}

.button {
  background: var(--sage-dark);
  color: var(--white);
  display: inline-flex;
  font-size: .82rem;
  justify-content: center;
  letter-spacing: .08em;
  padding: .9rem 1.15rem;
  text-decoration: none;
  text-transform: uppercase;
}

.button:hover {
  background: var(--ink);
}

.hero-portrait {
  aspect-ratio: 4 / 5;
  border-radius: 48% 48% 0 0 / 28% 28% 0 0;
  margin: 0;
  min-height: 480px;
  overflow: hidden;
}

.hero-portrait img {
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  width: 100%;
}

.statement {
  background: var(--mist);
  padding: clamp(4rem, 8vw, 7rem) clamp(1.25rem, 8vw, 9rem);
}

.statement p {
  font-family: var(--serif);
  font-size: clamp(2rem, 4.6vw, 4.5rem);
  line-height: 1.08;
  margin: 0 auto;
  max-width: 1180px;
}

.section {
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: clamp(2rem, 5vw, 5rem);
  grid-template-columns: minmax(240px, .85fr) minmax(0, 1.35fr);
  padding: clamp(4rem, 8vw, 7.5rem) clamp(1.25rem, 6vw, 6rem);
  scroll-margin-top: calc(var(--header-height) + 1rem);
}

.section-heading {
  max-width: 520px;
}

.section-body,
.booking-copy {
  max-width: 760px;
}

.prose p {
  color: #39443e;
  margin-bottom: 1.1rem;
}

.credentials {
  border-left: 1px solid var(--sage);
  margin-top: 2rem;
  padding-left: 1.4rem;
}

.credentials ul,
.offerings-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.credentials li {
  margin-bottom: .55rem;
}

.offerings-section {
  background: var(--soft);
}

.offerings-list {
  display: grid;
  gap: 1px;
}

.offerings-list article {
  background: rgba(255, 255, 255, .36);
  border-top: 1px solid var(--line);
  display: grid;
  gap: 1.2rem;
  grid-template-columns: 3rem minmax(160px, .55fr) minmax(0, 1fr);
  padding: 1.5rem clamp(1rem, 2vw, 1.75rem);
}

.offerings-list span {
  color: var(--sage);
  font-family: var(--serif);
  font-size: 1.35rem;
}

.offerings-list h3,
.offerings-list p {
  margin: 0;
}

.booking-section {
  background: var(--paper);
  display: block;
}

.booking-section .section-heading,
.booking-copy {
  max-width: 780px;
}

.calendly-inline-widget {
  background: var(--white);
  border: 1px solid var(--line);
  margin-top: 2rem;
  width: 100%;
}

.contact-band {
  align-items: center;
  background: var(--sage-dark);
  color: var(--white);
  display: flex;
  gap: 2rem;
  justify-content: space-between;
  padding: clamp(3rem, 6vw, 5rem) clamp(1.25rem, 6vw, 6rem);
  scroll-margin-top: calc(var(--header-height) + 1rem);
}

.contact-band .eyebrow {
  color: #d9e3d6;
}

.contact-band h2 {
  margin-bottom: 0;
}

address {
  font-style: normal;
}

.contact-name {
  display: block;
  margin-bottom: .75rem;
}

.email-reveal {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .65);
  color: var(--white);
  cursor: pointer;
  font: inherit;
  padding: .8rem 1rem;
}

.email-reveal.is-revealed {
  text-transform: none;
}

.site-footer {
  align-items: center;
  display: flex;
  gap: 1rem;
  justify-content: center;
  padding: 1.5rem clamp(1.25rem, 6vw, 6rem);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.legal-main {
  margin: 0 auto;
  max-width: 980px;
  padding: clamp(3rem, 7vw, 6rem) clamp(1.25rem, 5vw, 4rem);
}

.legal-hero {
  border-bottom: 1px solid var(--line);
  margin-bottom: 3rem;
  padding-bottom: 3rem;
}

.legal-hero h1 {
  font-size: clamp(2.8rem, 6vw, 5.5rem);
}

.legal-hero > p:not(.eyebrow) {
  color: var(--muted);
  max-width: 760px;
}

.legal-block {
  border-bottom: 1px solid var(--line);
  padding: 0 0 3rem;
  margin-bottom: 3rem;
}

.legal-block h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  margin-bottom: 1.4rem;
}

.legal-block h3 {
  margin: 2rem 0 .5rem;
}

.legal-block p {
  color: #39443e;
}

@media (max-width: 900px) {
  :root {
    --header-height: 68px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    align-items: flex-start;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    display: none;
    flex-direction: column;
    gap: 1.2rem;
    left: 0;
    padding: 1.5rem clamp(1.25rem, 6vw, 4rem) 2rem;
    position: absolute;
    right: 0;
    top: var(--header-height);
  }

  .about-section h2 {
    line-height: 1.08;
  }

  body.menu-open .site-nav {
    display: flex;
  }

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

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

  .hero-portrait {
    min-height: 0;
    max-height: 760px;
  }

  .offerings-list article {
    grid-template-columns: 2.5rem minmax(0, 1fr);
    padding-left: 1.1rem;
    padding-right: 1.1rem;
  }

  .offerings-list p {
    grid-column: 2;
  }

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

@media (max-width: 540px) {
  body {
    font-size: 16px;
  }

  .site-header {
    padding: 0 1rem;
  }

  .logo {
    font-size: 1.35rem;
  }

  .hero,
  .section,
  .statement,
  .contact-band,
  .site-footer {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  h1 {
    font-size: clamp(2.65rem, 15vw, 4rem);
  }

  h2 {
    font-size: clamp(2rem, 11vw, 3rem);
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-portrait {
    aspect-ratio: 3 / 4;
    border-radius: 48% 48% 0 0 / 22% 22% 0 0;
  }

  .calendly-inline-widget {
    border-left: 0;
    border-right: 0;
    margin-left: -1rem;
    width: calc(100% + 2rem);
  }
}
