:root {
  --ivory: #f7f2e9;
  --cream: #eee5d7;
  --olive: #68713c;
  --olive-deep: #37402d;
  --ink: #23261f;
  --muted: #707167;
  --line: rgba(55,64,45,.18);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Manrope", Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--ivory);
  font-family: var(--sans);
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

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

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: .98;
}

h1 {
  font-size: clamp(3.5rem, 6.5vw, 7.4rem);
  letter-spacing: -.045em;
}

h2 {
  font-size: clamp(2.7rem, 4.5vw, 5.2rem);
  letter-spacing: -.035em;
}

h3 {
  font-size: clamp(1.6rem, 2vw, 2.35rem);
}

em {
  color: var(--olive);
  font-weight: 500;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: 88px;
  padding: 1rem clamp(1.2rem, 4vw, 4.5rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(55,64,45,.08);
  background: rgba(247,242,233,.94);
  backdrop-filter: blur(14px);
}

.brand-name {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 2.3vw, 2.7rem);
  letter-spacing: .02em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  font-size: .75rem;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.nav a:not(.nav-cta) {
  padding: .35rem 0;
  border-bottom: 1px solid transparent;
}

.nav a:not(.nav-cta):hover {
  border-color: var(--olive);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: .9rem 1.55rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: transform .2s ease, background .2s ease;
}

.nav-cta,
.button-primary {
  color: #fff;
  background: var(--olive);
}

.nav-cta:hover,
.button:hover {
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 1px;
  margin: 6px 0;
  background: var(--ink);
}

.eyebrow {
  margin-bottom: 1rem;
  color: var(--olive-deep);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.rule {
  width: 64px;
  height: 1px;
  margin: 1.8rem 0;
  background: var(--olive);
}

.mini-rule {
  width: 42px;
  height: 1px;
  margin: 1rem 0 1.25rem;
  background: var(--olive);
}

.text-link {
  display: inline-flex;
  gap: .6rem;
  align-items: center;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.text-link span {
  transition: transform .2s ease;
}

.text-link:hover span {
  transform: translateX(5px);
}

.hero {
  min-height: calc(100vh - 88px);
  display: grid;
  grid-template-columns: .82fr 1.18fr;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(4rem, 8vw, 8rem) clamp(1.3rem, 5vw, 5.5rem);
}

.hero h1 {
  max-width: 760px;
  margin-bottom: 0;
}

.hero-sub,
.hero-words {
  margin-bottom: .25rem;
  color: var(--muted);
}

.hero-words {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--olive);
}

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

.hero-image {
  min-height: 680px;
}

.philosophy {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  background: #fbf8f2;
}

.philosophy-image {
  min-height: 650px;
}

.philosophy-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(4rem, 8vw, 8rem);
}

.philosophy-copy p:not(.eyebrow) {
  max-width: 680px;
  margin-bottom: .7rem;
  color: var(--muted);
}

.process {
  padding: clamp(5rem, 8vw, 8rem) clamp(1.3rem, 5vw, 5rem);
}

.section-heading {
  max-width: 900px;
  margin: 0 auto 4rem;
  text-align: center;
}

.steps {
  max-width: 1500px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.step {
  padding: 1.2rem 2rem;
  border-left: 1px solid var(--line);
}

.step:first-child {
  border-left: 0;
}

.step-number {
  width: 50px;
  height: 50px;
  margin-bottom: 1.5rem;
  display: grid;
  place-items: center;
  border: 1px solid #cdbf9e;
  border-radius: 50%;
  color: var(--olive);
  font-family: var(--serif);
  font-size: 1.5rem;
}

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

.listening-pause {
  min-height: 78vh;
  display: grid;
  place-items: center;
  padding: 5rem 1.5rem;
  color: white;
  background: var(--olive-deep);
  text-align: center;
}

.listening-pause p {
  margin-bottom: 0;
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 4rem);
}

.listening-pause h2 {
  margin-bottom: 0;
  font-size: clamp(4rem, 9vw, 9rem);
  font-style: italic;
}

.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #f1e9dc;
}

.about-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(4rem, 8vw, 8rem);
}

.about-copy p {
  max-width: 650px;
  color: var(--muted);
}

.about-image {
  min-height: 680px;
}

.begin {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 5rem 1.5rem;
  background: #fbf8f2;
  text-align: center;
}

.begin-inner {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.begin h2 {
  margin-bottom: 2rem;
}

.botanical {
  position: absolute;
  width: 300px;
  height: 300px;
  opacity: .18;
  background:
    radial-gradient(ellipse at 50% 80%, transparent 48%, var(--olive) 49%, transparent 51%) 0 0/70px 140px;
}

.botanical-left {
  left: -120px;
  bottom: -100px;
  transform: rotate(-28deg);
}

.botanical-right {
  right: -120px;
  bottom: -100px;
  transform: rotate(28deg) scaleX(-1);
}

.footer {
  display: grid;
  grid-template-columns: 1.2fr 2fr 1fr;
  gap: 3rem;
  align-items: end;
  padding: 3.5rem clamp(1.3rem, 5vw, 5rem);
  background: #f0e8db;
  font-size: .8rem;
}

.footer-brand p,
.footer-note,
.footer-copy {
  margin-bottom: 0;
  color: var(--muted);
}

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

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

.inquiry-page {
  background: #f6f0e6;
}

.inquiry-shell {
  width: min(100% - 2rem, 900px);
  margin: 0 auto;
  padding: 6rem 0 8rem;
}

.inquiry-intro {
  margin-bottom: 3rem;
}

.inquiry-intro p:last-child {
  max-width: 680px;
  color: var(--muted);
}

.inquiry-form {
  display: grid;
  gap: 1.4rem;
  padding: 2rem;
  background: rgba(255,255,255,.5);
  border: 1px solid var(--line);
}

.inquiry-form label {
  display: grid;
  gap: .55rem;
  font-size: .85rem;
  font-weight: 600;
}

.inquiry-form input,
.inquiry-form textarea,
.inquiry-form select {
  width: 100%;
  padding: 1rem;
  border: 1px solid rgba(55,64,45,.22);
  background: #fffdf8;
  color: var(--ink);
  font: inherit;
}

.consent {
  grid-template-columns: auto 1fr !important;
  align-items: start;
  font-weight: 400 !important;
}

.consent input {
  width: auto;
  margin-top: .3rem;
}

.form-note {
  margin-top: 1rem;
  color: var(--muted);
  font-size: .8rem;
}

@media (max-width: 1000px) {
  .menu-toggle {
    display: block;
  }

  .nav {
    position: fixed;
    inset: 88px 0 auto 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem;
    background: var(--ivory);
    border-bottom: 1px solid var(--line);
  }

  .nav.open {
    display: flex;
  }

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

  .hero-image {
    order: -1;
    min-height: 520px;
  }

  .philosophy-image,
  .about-image {
    min-height: 500px;
  }

  .steps {
    grid-template-columns: 1fr 1fr;
  }

  .step:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .step:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .footer {
    grid-template-columns: 1fr;
    align-items: start;
  }
}

@media (max-width: 680px) {
  .site-header {
    min-height: 74px;
    padding: .85rem 1rem;
  }

  .nav {
    inset: 74px 0 auto 0;
  }

  h1 {
    font-size: clamp(3rem, 15vw, 4.9rem);
  }

  h2 {
    font-size: clamp(2.7rem, 12vw, 4.2rem);
  }

  .hero-copy,
  .philosophy-copy,
  .about-copy {
    padding: 3.5rem 1.2rem;
  }

  .hero-image {
    min-height: 420px;
  }

  .hero-words {
    font-size: 1.25rem;
  }

  .philosophy-image,
  .about-image {
    min-height: 390px;
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .step,
  .step:first-child,
  .step:nth-child(3),
  .step:nth-child(4) {
    padding: 2rem 0;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .step:first-child {
    border-top: 0;
  }

  .listening-pause {
    min-height: 62vh;
  }

  .begin {
    min-height: 430px;
  }

  .inquiry-shell {
    padding: 4rem 0 6rem;
  }

  .inquiry-form {
    padding: 1.2rem;
  }
}
