/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* === TOKENS === */
:root {
  --cream:        #FAF7F2;
  --cream-dark:   #F0EBE3;
  --terra:        #B8735A;
  --terra-light:  #D4987E;
  --charcoal:     #1E1E1E;
  --mid:          #5A5A5A;
  --border:       #E2D9D0;

  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans:  'DM Sans', system-ui, sans-serif;

  --w:  1160px;
  --px: clamp(24px, 5vw, 60px);
  --py: clamp(80px, 10vw, 140px);
}

/* === BASE === */
html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--charcoal);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.75;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a   { color: inherit; text-decoration: none; }
p   { color: var(--mid); }
p + p { margin-top: 1.1rem; }
strong { color: var(--charcoal); font-weight: 500; }

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.1;
  color: var(--charcoal);
}
h1 { font-size: clamp(4rem, 9vw, 8rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(2.2rem, 4vw, 3.4rem); }
h3 { font-size: 1.3rem; }

/* === LAYOUT === */
.container {
  max-width: var(--w);
  margin: 0 auto;
  padding: 0 var(--px);
}
.section     { padding: var(--py) 0; }
.section-alt  { background: var(--cream-dark); }
.section-dark { background: var(--charcoal); }

/* === LABELS === */
.section-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 2rem;
}
.section-dark .section-label { color: var(--terra-light); }

.section-heading { margin-bottom: clamp(40px, 6vw, 72px); }

/* === BUTTONS === */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 15px 36px;
  border: none;
  border-radius: 1px;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.btn-primary { background: var(--terra); color: #fff; }
.btn-primary:hover { background: var(--charcoal); transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(250,247,242,0.4);
}
.btn-outline:hover { background: rgba(250,247,242,0.1); border-color: var(--cream); }
.btn-full { width: 100%; text-align: center; }

/* === NAV === */
#nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 200;
  padding: 28px 0;
  transition: padding 0.35s, background 0.35s, box-shadow 0.35s;
}
#nav.scrolled {
  background: rgba(250,247,242,0.94);
  backdrop-filter: blur(12px);
  padding: 18px 0;
  box-shadow: 0 1px 0 var(--border);
}
.nav-inner {
  max-width: var(--w);
  margin: 0 auto;
  padding: 0 var(--px);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--charcoal);
  letter-spacing: 0.03em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--charcoal); }
.nav-cta {
  background: var(--terra) !important;
  color: #fff !important;
  padding: 10px 22px;
  border-radius: 1px;
}
.nav-cta:hover { background: var(--charcoal) !important; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 201;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--charcoal);
  transition: transform 0.25s, opacity 0.25s;
}
.nav-toggle[aria-expanded="true"] span:first-child { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:last-child  { transform: translateY(-7.5px) rotate(-45deg); }

/* === HERO === */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100svh;
  overflow: hidden;
}
.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px var(--px) 80px calc(max((100vw - var(--w)) / 2, var(--px)));
}
.eyebrow {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 1.5rem;
}
.hero h1       { margin-bottom: 1rem; }
.hero-subtitle {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 1.8vw, 1.45rem);
  font-style: italic;
  color: var(--mid);
  line-height: 1.5;
  margin-bottom: 1.8rem;
}
.hero-tagline {
  font-size: 1rem;
  color: var(--charcoal);
  margin-bottom: 2.5rem;
}
.hero-image {
  position: relative;
  overflow: hidden;
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.hero-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--cream) 0%, transparent 18%),
              linear-gradient(to top, var(--cream) 0%, transparent 15%);
  pointer-events: none;
}

/* === ABOUT === */
.about-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: clamp(40px, 7vw, 100px);
  align-items: center;
}
.about-text h2  { margin-bottom: 1.8rem; }
.about-close {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-style: italic;
  color: var(--terra) !important;
  margin-top: 1.8rem;
  line-height: 1.4;
}
.about-image {
  border-radius: 2px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
}
.about-image img { width: 100%; height: 100%; object-fit: cover; }

/* === HOW I WORK === */
.how-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 7vw, 100px);
}
.how-callout { display: flex; flex-direction: column; gap: 32px; }
.callout-inner {
  border-left: 2px solid var(--terra);
  padding-left: clamp(20px, 3vw, 40px);
}
.callout-inner p {
  font-family: var(--serif);
  font-size: clamp(1.15rem, 1.8vw, 1.3rem);
  font-weight: 300;
  line-height: 1.7;
  color: var(--charcoal);
}
.callout-close em { color: var(--terra); font-style: italic; }
.how-image { border-radius: 2px; width: 100%; aspect-ratio: 4/3; object-fit: cover; }

/* === WHAT IS THERAPY === */
.pull-quote {
  max-width: 720px;
  margin: 0 auto clamp(50px, 8vw, 90px);
  text-align: center;
  padding: clamp(30px, 5vw, 60px) clamp(20px, 4vw, 40px);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.pull-quote blockquote {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.8vw, 2.1rem);
  font-style: italic;
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1.5;
  margin-bottom: 1rem;
}
.pull-quote figcaption {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--terra);
}
.therapy-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: clamp(40px, 7vw, 100px);
  align-items: start;
}
.therapy-text h2  { margin-bottom: 1.8rem; }
.therapy-aside    { display: flex; flex-direction: column; gap: 24px; }
.therapy-card     { background: var(--cream-dark); padding: 28px 32px; border-radius: 2px; }
.therapy-card h3  { margin-bottom: 0.8rem; font-size: 1.15rem; }
.therapy-image    { border-radius: 2px; width: 100%; aspect-ratio: 4/3; object-fit: cover; }

/* === WHERE & PRICES === */
.where-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 7vw, 100px);
  align-items: start;
}
.section-dark h2 { color: var(--cream); }
.section-dark p  { color: rgba(250,247,242,0.65); }
.availability {
  margin-top: 2rem;
  border: 1px solid rgba(250,247,242,0.15);
  border-radius: 2px;
  padding: 24px 28px;
}
.availability-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(250,247,242,0.08);
  font-size: 0.9rem;
  color: rgba(250,247,242,0.65);
}
.availability-row:last-of-type { border-bottom: none; }
.availability-row span:last-child { color: var(--cream); font-weight: 500; }
.availability-note { font-size: 0.8rem; opacity: 0.45; margin-top: 1rem !important; }
.price-list { margin: 1.5rem 0; }
.price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 18px 0;
  border-bottom: 1px solid rgba(250,247,242,0.1);
  font-size: 0.9rem;
  color: rgba(250,247,242,0.65);
}
.price-val {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--cream);
}
.price-note { font-size: 0.82rem; opacity: 0.5; margin-bottom: 2rem !important; }

/* === CONTACT === */
.contact-grid {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: clamp(40px, 7vw, 100px);
  align-items: start;
}
.contact-text h2 { margin-bottom: 1.5rem; }
.contact-email {
  display: inline-block;
  margin-top: 1.8rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--terra);
  transition: color 0.2s;
}
.contact-email:hover { color: var(--charcoal); }
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-group   { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--charcoal);
}
.form-group input,
.form-group textarea {
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--charcoal);
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 1px;
  padding: 13px 16px;
  outline: none;
  transition: border-color 0.2s;
  resize: vertical;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--terra); }
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}

/* === FOOTER === */
.footer {
  background: #141414;
  padding: 64px 0;
  text-align: center;
}
.footer-name  { font-family: var(--serif); font-size: 1.6rem; color: var(--cream); margin-bottom: 0.4rem; }
.footer-cred  { font-size: 0.75rem; letter-spacing: 0.06em; color: rgba(250,247,242,0.35); margin-bottom: 1rem; }
.footer-email { display: inline-block; font-size: 0.85rem; color: var(--terra-light); transition: color 0.2s; }
.footer-email:hover { color: var(--cream); }
.footer-copy  { margin-top: 2.5rem; font-size: 0.7rem; color: rgba(250,247,242,0.2); }

/* === REVEAL === */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.85s ease, transform 0.85s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* === MOBILE NAV === */
@media (max-width: 860px) {
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--cream);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 28px;
    z-index: 200;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1rem; }
  .nav-cta { padding: 14px 36px !important; }
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-image { height: 55vw; order: -1; }
  .hero-fade { background: linear-gradient(to bottom, transparent 50%, var(--cream) 100%); }
  .hero-content { padding: 48px var(--px) 80px; }

  .about-grid,
  .how-grid,
  .therapy-grid,
  .where-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }

  .about-image { aspect-ratio: 16/9; order: -1; }
}
