/* ============================================================
   Talk. Art. Therapy. — Stylesheet
   Nordic minimalism · Wabi-sabi · Dieter Rams
   ============================================================ */

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg-linen: #F5F0E8;
  --bg-offwhite: #FDFCFA;
  --text: #2C2C2C;
  --sage: #5C7A6B;
  --terracotta: #B5614B;
  --divider: #DDD8CF;
  --text-muted: #6B6560;
  --content-width: 680px;
  --section-padding: 7rem 2rem;
  --section-padding-mobile: 4rem 1.25rem;
}

html {
  font-size: 18px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'EB Garamond', Georgia, 'Times New Roman', serif;
  font-weight: 400;
  line-height: 1.7;
  color: var(--text);
  background-color: var(--bg-linen);
  position: relative;
}

/* Subtle grain texture overlay */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
}

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: 'EB Garamond', Georgia, serif;
  font-weight: 400;
  line-height: 1.25;
  color: var(--sage);
}

h1 {
  font-size: 2.8rem;
  letter-spacing: -0.02em;
}

h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
}

h3 {
  font-family: 'DM Sans', 'Helvetica Neue', sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1.25rem;
}

p:last-child {
  margin-bottom: 0;
}

a {
  color: var(--terracotta);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease;
}

a:hover {
  border-bottom-color: var(--terracotta);
}

a:focus-visible {
  outline: 2px solid var(--sage);
  outline-offset: 3px;
  border-radius: 2px;
}

blockquote {
  font-style: italic;
  font-size: 1.15rem;
  line-height: 1.75;
  color: var(--text-muted);
  border-left: 2px solid var(--divider);
  padding-left: 1.5rem;
  margin: 2rem 0;
}

/* --- Layout --- */
.container {
  max-width: var(--content-width);
  margin: 0 auto;
}

section {
  padding: var(--section-padding);
}

.section-alt {
  background-color: var(--bg-offwhite);
}

.divider {
  width: 48px;
  height: 1px;
  background-color: var(--divider);
  margin: 0 auto 2.5rem;
}

/* --- Navigation --- */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--bg-linen);
  border-bottom: 1px solid var(--divider);
  transition: box-shadow 0.3s ease;
}

.site-nav.scrolled {
  box-shadow: 0 1px 8px rgba(44, 44, 44, 0.06);
}

.nav-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 1.15rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.wordmark {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  border-bottom: none;
  letter-spacing: 0.02em;
}

.wordmark:hover {
  border-bottom: none;
}

.nav-link {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--terracotta);
  text-decoration: none;
  border-bottom: none;
  transition: opacity 0.3s ease;
}

.nav-link:hover {
  opacity: 0.7;
  border-bottom: none;
}

/* --- Hero --- */
.hero {
  padding: 8rem 2rem 7rem;
  text-align: center;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  max-width: 640px;
}

.hero h1 {
  margin-bottom: 1.75rem;
}

.hero-subtitle {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.cta-text {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--terracotta);
  border-bottom: 1px solid var(--terracotta);
  padding-bottom: 2px;
  transition: opacity 0.3s ease;
}

.cta-text:hover {
  opacity: 0.7;
}

/* --- Approach (Three Modalities) --- */
.approach-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
  max-width: 960px;
  margin: 0 auto;
}

.approach-item h3 {
  color: var(--sage);
}

.approach-item p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text-muted);
}

.modality-title {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--sage);
  margin-bottom: 0.75rem;
  text-transform: none;
  letter-spacing: 0;
}

/* --- Who This Is For --- */
.who-prose {
  max-width: var(--content-width);
  margin: 0 auto 3rem;
}

.who-prose p {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.8;
}

.concerns-list {
  max-width: var(--content-width);
  margin: 0 auto 2.5rem;
  list-style: none;
  columns: 2;
  column-gap: 2rem;
}

.concerns-list li {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  color: var(--text);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--divider);
  break-inside: avoid;
}

.concerns-list li::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background-color: var(--sage);
  border-radius: 50%;
  margin-right: 0.75rem;
  vertical-align: middle;
}

.who-cta {
  max-width: var(--content-width);
  margin: 0 auto;
  font-size: 1rem;
  color: var(--text-muted);
}

/* --- How It Works --- */
.steps {
  max-width: var(--content-width);
  margin: 0 auto 3.5rem;
}

.step {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  align-items: flex-start;
}

.step:last-child {
  margin-bottom: 0;
}

.step-number {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 2.2rem;
  color: var(--sage);
  line-height: 1;
  flex-shrink: 0;
  width: 2rem;
  text-align: center;
  padding-top: 0.15rem;
}

.step-content h3 {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--text);
  text-transform: none;
  letter-spacing: 0;
  margin-bottom: 0.4rem;
}

.step-content p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.75;
}

.practical-info {
  max-width: var(--content-width);
  margin: 0 auto;
  border-top: 1px solid var(--divider);
  padding-top: 2.5rem;
}

.practical-info dl {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.6rem 1.5rem;
}

.practical-info dt {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.practical-info dd {
  font-size: 0.95rem;
  color: var(--text);
}

/* --- About --- */
.about-layout {
  max-width: 880px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 4rem;
  align-items: start;
}

.about-photo {
  aspect-ratio: 3 / 4;
  background-color: #E8E0D4;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.about-text p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-muted);
}

.about-text .about-link {
  display: inline-block;
  margin-top: 1rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
}

/* --- Booking CTA --- */
.booking {
  text-align: center;
  padding: 6rem 2rem;
}

.booking h2 {
  margin-bottom: 1.25rem;
}

.booking p {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2.5rem;
}

.cta-button {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bg-offwhite);
  background-color: var(--terracotta);
  padding: 0.9rem 2.2rem;
  border: none;
  transition: opacity 0.3s ease;
}

.cta-button:hover {
  opacity: 0.85;
  border-bottom-color: transparent;
}

.booking-secondary {
  margin-top: 1.5rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.03em;
}

.booking-secondary a {
  color: var(--text);
}

/* --- Footer --- */
.site-footer {
  border-top: 1px solid var(--divider);
  padding: 3rem 2rem 2rem;
  text-align: center;
}

.footer-inner {
  max-width: var(--content-width);
  margin: 0 auto;
}

.footer-wordmark {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 0.75rem;
}

.footer-info {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  line-height: 2;
  color: var(--text-muted);
  letter-spacing: 0.03em;
}

.footer-info a {
  color: var(--text-muted);
  border-bottom: 1px solid var(--divider);
}

.footer-info a:hover {
  color: var(--text);
  border-bottom-color: var(--text);
}

.footer-credit {
  margin-top: 2rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.65rem;
  color: var(--divider);
  letter-spacing: 0.05em;
}

/* --- Responsive --- */
@media (max-width: 768px) {
  html {
    font-size: 16px;
  }

  section {
    padding: var(--section-padding-mobile);
  }

  .nav-inner {
    padding: 1rem 1.25rem;
  }

  .wordmark {
    font-size: 1.05rem;
  }

  h1 {
    font-size: 2.2rem;
  }

  h2 {
    font-size: 1.65rem;
  }

  .hero {
    padding: 5rem 1.25rem 4rem;
    min-height: 60vh;
  }

  .approach-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    max-width: var(--content-width);
  }

  .concerns-list {
    columns: 1;
  }

  .about-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about-photo {
    max-width: 280px;
    margin: 0 auto;
  }

  .step {
    gap: 1rem;
  }

  .practical-info dl {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }

  .practical-info dt {
    margin-top: 1rem;
  }

  .practical-info dt:first-child {
    margin-top: 0;
  }

  .booking {
    padding: 4rem 1.25rem;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.85rem;
  }

  .hero {
    min-height: 55vh;
  }

  .hero-subtitle {
    font-size: 1rem;
  }
}
