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

/* === TOKENS === */
:root {
  --cream:        #FAF7F2;
  --cream-dark:   #F0EBE3;
  --terra:        #B09090;
  --terra-light:  #C8B0A8;
  --charcoal:     #2C2828;
  --mid:          #7A7070;
  --border:       #E8DDD8;

  --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-niche {
  font-size: 0.95rem;
  color: var(--mid);
  font-style: italic;
  max-width: 34ch;
  line-height: 1.6;
  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-cred {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--terra);
}
.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;
  position: relative;
  -webkit-mask-image: linear-gradient(to bottom, black 75%, transparent 100%);
  mask-image: linear-gradient(to bottom, black 75%, transparent 100%);
}
.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) brightness(0.97);
}
.about-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(250,247,242,0.15) 100%);
  pointer-events: none;
}

/* === 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; }
.image-frame {
  position: relative;
  border-radius: 2px;
  overflow: hidden;
}
.image-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(250,247,242,0.06) 0%, rgba(44,40,40,0.32) 100%),
    linear-gradient(135deg, rgba(176,144,144,0.22) 0%, transparent 55%);
  pointer-events: none;
}
.image-frame img {
  display: block;
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  filter: saturate(0.6) brightness(0.88);
  transition: transform 0.7s ease, filter 0.7s ease;
}
.image-frame:hover img {
  transform: scale(1.03);
  filter: saturate(0.8) brightness(0.93);
}
.image-frame--wide {
  margin-top: clamp(40px, 6vw, 70px);
  border-radius: 0;
  -webkit-mask-image:
    linear-gradient(to right, transparent 0%, black 12%, black 88%, transparent 100%),
    linear-gradient(to bottom, transparent 0%, black 12%, black 88%, transparent 100%);
  -webkit-mask-composite: destination-in;
  mask-image:
    linear-gradient(to right, transparent 0%, black 12%, black 88%, transparent 100%),
    linear-gradient(to bottom, transparent 0%, black 12%, black 88%, transparent 100%);
  mask-composite: intersect;
}
.image-frame--wide img {
  aspect-ratio: 21/9;
}
.how-image { display: none; }

/* === APPROACH LIST === */
.approach-list { list-style: none; margin: 1.1rem 0; }
.approach-list li {
  position: relative;
  padding-left: 1.4em;
  color: var(--mid);
  line-height: 1.7;
  margin-bottom: 0.6rem;
}
.approach-list li::before {
  content: '\2014';
  position: absolute;
  left: 0;
  color: var(--terra);
}
.therapy-card .approach-list { margin-top: 0.5rem; }
.therapy-card .approach-list li { color: var(--mid); font-size: 0.95rem; }

/* === 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    { display: none; }

/* === 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; }
.working-p {
  color: rgba(250,247,242,0.8);
  line-height: 1.9;
  margin-bottom: 1.2rem;
}
.working-p--muted {
  font-size: 0.85rem;
  color: rgba(250,247,242,0.4);
  margin-bottom: 2rem;
}

/* === SERVICES === */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 32px);
  margin-top: 3rem;
}
.service-card {
  border: 1px solid rgba(250,247,242,0.15);
  border-radius: 2px;
  padding: clamp(24px, 3vw, 32px) clamp(20px, 2.5vw, 28px);
}
.service-meta {
  display: block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terra-light);
  margin-bottom: 0.9rem;
}
.service-card h3 { color: var(--cream); margin-bottom: 0.7rem; }
.service-card p { color: rgba(250,247,242,0.65); font-size: 0.92rem; }

/* === SOCIAL LINKS === */
.social-links {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}
.social-link {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 8px 20px;
  transition: color 0.2s, border-color 0.2s;
}
.social-link:hover { color: var(--terra); border-color: var(--terra); }

/* === TESTIMONIALS === */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 56px);
  align-items: start;
}
.testimonial-card {
  background: var(--cream);
  padding: clamp(28px, 4vw, 48px);
  border-radius: 2px;
}
.testimonial-mark {
  display: block;
  font-family: var(--serif);
  font-size: 4rem;
  color: var(--terra);
  opacity: 0.4;
  line-height: 0.8;
  margin-bottom: 1rem;
}
.testimonial-card blockquote {
  font-family: var(--serif);
  font-size: clamp(1rem, 1.4vw, 1.1rem);
  font-style: italic;
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1.85;
  margin-bottom: 1.5rem;
}
.testimonial-card figcaption {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--terra);
}

/* === CONTACT === */
.contact-simple {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}
.contact-simple h2 { margin-bottom: 1.5rem; }
.contact-intro {
  color: var(--charcoal);
  opacity: 0.85;
  margin-bottom: 1rem;
  line-height: 1.8;
}
.contact-label {
  margin-top: 2.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--charcoal);
  opacity: 0.5;
  margin-bottom: 0.5rem;
}
.contact-email {
  display: inline-block;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--terra);
  transition: color 0.2s;
}
.contact-email:hover { color: var(--charcoal); }
.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-ukcp  { font-size: 0.68rem; letter-spacing: 0.08em; color: rgba(250,247,242,0.25); margin-bottom: 1rem; }
.footer-copy  { margin-top: 2.5rem; font-size: 0.7rem; color: rgba(250,247,242,0.2); }

/* === REVEAL === */
.reveal { opacity: 0; transform: translateY(44px); transition: opacity 1.1s cubic-bezier(0.22, 1, 0.36, 1), transform 1.1s cubic-bezier(0.22, 1, 0.36, 1); }
.reveal.visible { opacity: 1; transform: none; }

/* === HERO ENTRANCE === */
.hero-content > * {
  opacity: 0;
  animation: hero-fade-up 1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.hero-content > *:nth-child(1) { animation-delay: 0.1s; }
.hero-content > *:nth-child(2) { animation-delay: 0.28s; }
.hero-content > *:nth-child(3) { animation-delay: 0.44s; }
.hero-content > *:nth-child(4) { animation-delay: 0.58s; }
.hero-content > *:nth-child(5) { animation-delay: 0.72s; }

@keyframes hero-fade-up {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: none; }
}

/* Hero image scale on load */
.hero-image img {
  transform-origin: center top;
  animation: hero-img-in 1.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
@keyframes hero-img-in {
  from { transform: scale(1.06); }
  to   { transform: scale(1); }
}

/* === SECTION ORNAMENT === */
.section-ornament {
  height: 1px;
  margin: clamp(40px, 6vw, 70px) var(--px) 0;
  background: linear-gradient(to right, transparent, var(--terra) 30%, var(--terra) 70%, transparent);
  opacity: 0.25;
}

/* === SUBSTACK === */
.substack-section { background: var(--cream-dark); }
.substack-inner {
  max-width: 580px;
  margin: 0 auto;
  text-align: center;
}
.substack-inner h2 { margin-bottom: 1.2rem; }
.substack-text {
  color: var(--mid);
  line-height: 1.8;
  margin-bottom: 2rem;
}

/* === 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,
  .testimonials-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }

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

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