/*
Theme Name:  Whole Self Somatics
Theme URI:   https://wholeselfsomatics.com
Author:      Sarah Hartmann, LMFT
Description: Custom therapy practice theme for Whole Self Somatics.
Version:     3.0.0
License:     GNU General Public License v2 or later
Text Domain: whole-self-somatics
*/

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400&family=Jost:wght@300;400;500&display=swap');

:root {
  --cream:            #F5F0E8;
  --sand:             #E8DECA;
  --sage:             #8A9E8C;
  --sage-light:       #B8C9B8;
  --sage-dark:        #5C7560;
  --terracotta:       #C4855A;
  --terracotta-light: #D9A882;
  --stone:            #8C7B6E;
  --stone-light:      #BDB0A4;
  --clay:             #6B5C4E;
  --warm-white:       #FDFAF5;
  --text-dark:        #3A2E26;
  --text-mid:         #6B5C4E;
  --text-light:       #9A8C82;
  --max-width:        1100px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  background-color: var(--warm-white);
  color: var(--text-dark);
  line-height: 1.95;
  font-size: 1.05rem;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--sage-dark); text-decoration: none; transition: color 0.3s; }
a:hover { color: var(--clay); }
ul, ol { list-style: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  color: var(--text-dark);
  line-height: 1.15;
}
h1 { font-size: clamp(2.8rem, 5vw, 4.2rem); }
h2 { font-size: clamp(2rem, 3.5vw, 2.8rem); }
h3 { font-size: 1.6rem; }
h4 { font-size: 1.25rem; }

p { color: var(--text-mid); font-size: 1.05rem; line-height: 1.95; font-weight: 400; }
p + p { margin-top: 1rem; }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 2rem; }
section { padding: 6rem 2rem; }

/* ── HEADER BANNER ── */
#site-banner {
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.banner-img {
  width: 100%;
  height: auto;
  max-height: 480px;
  object-fit: cover;
  object-position: center center;
  display: block;
}

/* ── NAVIGATION ── */
#masthead {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(253,250,245,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--sand);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0.6rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo-link {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
}

.nav-logo {
  width: 44px;
  height: 44px;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: 0 !important;
}

.nav-brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
}

.site-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-dark);
  letter-spacing: 0.02em;
  margin: 0;
  line-height: 1.2;
}

.site-description {
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage-dark);
  font-weight: 400;
  margin: 0;
  line-height: 1.2;
}

.main-navigation ul { display: flex; gap: 2.5rem; align-items: center; }
.main-navigation a {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-mid);
  font-weight: 400;
  transition: color 0.3s;
}
.main-navigation a:hover { color: var(--sage-dark); }

.nav-cta-link {
  background: var(--sage-dark);
  color: var(--warm-white) !important;
  padding: 0.55rem 1.4rem;
  border-radius: 2px;
}
.nav-cta-link:hover { background: var(--clay); color: var(--warm-white) !important; }

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  flex-direction: column;
  gap: 5px;
}
.menu-toggle span { display: block; width: 24px; height: 2px; background: var(--text-dark); }

/* ── HERO ── */
#hero {
  min-height: 90vh;
  background: var(--cream);
  display: flex;
  align-items: center;
  padding: 6rem 2rem 4rem;
  position: relative;
  overflow: hidden;
}
#hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(138,158,140,0.18) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
#hero::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(196,133,90,0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 5rem;
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.hero-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 400;
  font-style: italic;
  color: var(--terracotta);
  margin-bottom: 2rem;
  line-height: 1.4;
}

.hero-body { max-width: 520px; margin-bottom: 2.5rem; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-photo { position: relative; }

.hero-photo img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 4px;
}

/* Placeholder boxes */
.photo-placeholder-box {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(145deg, #E8DECA 0%, #B8C9B8 50%, #BDB0A4 100%);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.photo-placeholder-box.tall { aspect-ratio: 4/5; }
.photo-placeholder-label {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}

.photo-accent {
  position: absolute;
  bottom: -20px; right: -20px;
  width: 120px; height: 120px;
  border: 2px solid var(--terracotta-light);
  border-radius: 2px;
  opacity: 0.5;
  pointer-events: none;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  background: var(--sage-dark);
  color: var(--warm-white);
  padding: 0.9rem 2.2rem;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  transition: background 0.3s, transform 0.2s;
}
.btn-primary:hover { background: var(--clay); color: var(--warm-white); transform: translateY(-1px); }

.btn-secondary {
  display: inline-block;
  border: 1px solid var(--sage-dark);
  color: var(--sage-dark);
  padding: 0.9rem 2.2rem;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 2px;
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  transition: all 0.3s;
}
.btn-secondary:hover { background: var(--sage-dark); color: var(--warm-white); }

.btn-light {
  display: inline-block;
  background: var(--warm-white);
  color: var(--clay);
  padding: 0.9rem 2.5rem;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 2px;
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  transition: all 0.3s;
}
.btn-light:hover { background: var(--cream); transform: translateY(-2px); }

/* ── LABELS & DIVIDERS ── */
.section-label {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 1rem;
  font-weight: 400;
  display: block;
}
.section-label.sage { color: var(--sage-light); }
.divider { width: 40px; height: 1px; background: var(--sage-light); margin: 1.5rem 0; }

/* ── WHO THIS IS FOR ── */
#who { background: var(--warm-white); padding-top: 2rem; }
.who-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; margin-top: 1rem; }.who-grid > div:first-child { order: 2; }
.who-grid > div:last-child { order: 1; }
.who-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
  display: block;
}
.resonance-list { display: flex; flex-direction: column; gap: 1rem; }
.resonance-list li {
  display: flex; align-items: flex-start; gap: 1rem;
  font-size: 0.95rem; line-height: 1.6; color: var(--text-mid);
  padding: 1rem 1.2rem; background: var(--cream);
  border-left: 2px solid var(--sage-light); border-radius: 0 2px 2px 0;
  transition: border-color 0.3s, background 0.3s;
}
.resonance-list li:hover { border-color: var(--sage-dark); background: var(--sand); }
.resonance-dot { width: 6px; height: 6px; background: var(--sage-dark); border-radius: 50%; margin-top: 0.5rem; flex-shrink: 0; }
/* — WHO CARDS — */
.who-cards-wrap {
  background: var(--sage);
  padding: 3rem 2rem;
  margin-top: 3rem;
}
.who-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: var(--max-width);
  margin: 0 auto;
}
.who-card {
  background: var(--cream);
  border-radius: 4px;
  padding: 2rem 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.who-card-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--sage-dark);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}
.who-card-circle::after {
  content: '';
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid var(--sage-dark);
  background: transparent;
}
.who-card p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--text-dark);
  line-height: 1.5;
}
@media (max-width: 900px) {
  .who-cards-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
  .who-cards-grid { grid-template-columns: 1fr; }
}
/* ── HOW I WORK ── */
#how { background: var(--sage-dark); color: var(--warm-white); position: relative; overflow: hidden; }
#how::before {
  content: ''; position: absolute; top: 0; right: 0;
  width: 500px; height: 100%;
  background: rgba(255,255,255,0.03);
  clip-path: polygon(100px 0, 100% 0, 100% 100%, 0 100%);
  pointer-events: none;
}
#how p { color: rgba(253,250,245,0.82); }
#how h2 { color: var(--warm-white); }

.how-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; margin-top: 3rem; position: relative; z-index: 1; align-items: start; }

.how-left { display: flex; flex-direction: column; gap: 0; }
.how-left p + p { margin-top: 1rem; }

/* Stones photo — sits under text in left column, naturally sized */
.how-photo-wrap {
  margin-top: 2rem;
}
.how-photo-wrap img {
  width: 100%;
  max-height: 200px;
  object-fit: cover;
  object-position: center 55%;
  border-radius: 4px;
  opacity: 0.88;
  box-shadow: 0 6px 24px rgba(0,0,0,0.2);
  display: block;
}
.photo-caption {
  font-size: 0.7rem !important;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(253,250,245,0.4) !important;
  text-align: left;
  margin-top: 0.5rem !important;
  font-style: italic;
}

.pillars { display: flex; flex-direction: column; gap: 1.2rem; }
.pillar { padding: 1.2rem 1.5rem; border: 1px solid rgba(255,255,255,0.15); border-radius: 2px; transition: background 0.3s, border-color 0.3s; }
.pillar:hover { background: rgba(255,255,255,0.07); border-color: rgba(255,255,255,0.3); }
.pillar-title { font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--terracotta-light); margin-bottom: 0.4rem; font-weight: 400; }
.pillar p { font-size: 0.9rem; color: rgba(253,250,245,0.75); }

/* ── ABOUT ── */
#about { background: var(--cream); }
.about-grid { display: grid; grid-template-columns: 340px 1fr; gap: 5rem; align-items: start; }
.about-photo-wrap { position: sticky; top: 80px; }
.about-photo-wrap img { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: 4px; }
.about-photo-wrap .photo-placeholder-box { aspect-ratio: 4/5; }
.about-content { display: flex; flex-direction: column; gap: 2.5rem; }
.about-block-label { font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--sage-dark); margin-bottom: 0.8rem; font-weight: 400; display: block; }
.about-block-title { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 400; color: var(--text-dark); margin-bottom: 0.8rem; }
.credential-bar { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 1.2rem; }
.credential-tag { padding: 0.4rem 1rem; border: 1px solid var(--sage-light); border-radius: 20px; font-size: 0.75rem; color: var(--sage-dark); letter-spacing: 0.06em; background: rgba(138,158,140,0.08); }

/* ── SERVICES ── */
#services { background: var(--warm-white); }
.services-intro { max-width: 600px; margin-bottom: 3.5rem; }
.services-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.service-card { padding: 2.5rem; background: var(--cream); border-radius: 4px; border-top: 3px solid var(--sage); transition: transform 0.3s, box-shadow 0.3s; }
.service-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(58,46,38,0.08); }
.service-card.featured { border-top-color: var(--terracotta); }
.service-type { font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--sage-dark); margin-bottom: 0.8rem; font-weight: 400; }
.service-name { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-weight: 400; color: var(--text-dark); margin-bottom: 1rem; }
.service-fee { display: flex; align-items: baseline; gap: 0.4rem; margin-bottom: 0.4rem; }
.fee-amount { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 300; color: var(--text-dark); }
.fee-label { font-size: 0.75rem; color: var(--text-light); letter-spacing: 0.08em; }
.sliding-note { font-size: 0.82rem; color: var(--sage-dark); font-style: italic; margin-bottom: 1.5rem; line-height: 1.5; }
.neuro-note { font-size: 0.95rem; color: var(--sage-dark); margin-top: 1rem; margin-bottom: 0.5rem; line-height: 1.6; border-left: 2px solid var(--sage); padding-left: 0.75rem; }
.insurance-card { padding: 2.5rem; background: var(--sand); border-radius: 4px; grid-column: span 2; }
.insurance-title { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 400; color: var(--text-dark); margin-bottom: 1rem; }
.insurance-list { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-bottom: 1rem; }
.insurance-tag { padding: 0.5rem 1.2rem; background: var(--warm-white); border-radius: 2px; font-size: 0.82rem; color: var(--text-mid); border: 1px solid var(--stone-light); }
.first-session-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 1.5rem; }
.step-num { font-family: 'Cormorant Garamond', serif; font-size: 2.5rem; font-weight: 300; color: var(--stone-light); line-height: 1; margin-bottom: 0.5rem; }

/* ── WHOLE SELF SOMATICS ── */
#whole-self { background: var(--sand); position: relative; overflow: hidden; }
#whole-self::after { content: ''; position: absolute; bottom: 0; right: 0; width: 300px; height: 300px; background: radial-gradient(circle, rgba(196,133,90,0.15) 0%, transparent 70%); pointer-events: none; }
.wss-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; position: relative; z-index: 1; }
.principles-list { display: flex; flex-direction: column; }
.principle-item { display: flex; gap: 1.5rem; align-items: flex-start; padding: 1.5rem 0; border-bottom: 1px solid var(--stone-light); }
.principle-item:last-child { border-bottom: none; }
.principle-num { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; font-weight: 300; color: var(--stone-light); line-height: 1; flex-shrink: 0; width: 2rem; }
.principle-name { font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--sage-dark); margin-bottom: 0.3rem; font-weight: 400; }

/* ── CLOSING CTA ── */
#cta-closing { background: var(--clay); text-align: center; padding: 7rem 2rem; position: relative; overflow: hidden; }
#cta-closing::before { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 700px; height: 700px; background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%); border-radius: 50%; pointer-events: none; }
.cta-quote { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.6rem, 3.5vw, 2.6rem); font-weight: 300; font-style: italic; color: var(--warm-white); max-width: 700px; margin: 0 auto 1rem; line-height: 1.4; position: relative; z-index: 1; }
.cta-sub { color: rgba(253,250,245,0.75); margin-bottom: 2.5rem; position: relative; z-index: 1; }

/* ── CONTACT ── */
#contact { background: var(--warm-white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.contact-info-block { margin-bottom: 2rem; }
.contact-info-label { font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--stone); margin-bottom: 0.4rem; font-weight: 400; display: block; }
.contact-note { font-size: 0.88rem; line-height: 1.75; color: var(--text-mid); font-style: italic; padding: 1.2rem 1.5rem; background: var(--cream); border-left: 2px solid var(--sage-light); margin-top: 1.5rem; }
.contact-form { display: flex; flex-direction: column; gap: 1.2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--stone); font-weight: 400; }
.form-group input, .form-group textarea, .form-group select {
  padding: 0.8rem 1rem; border: 1px solid var(--stone-light); border-radius: 2px;
  background: var(--cream); font-family: 'Jost', sans-serif; font-size: 0.93rem;
  color: var(--text-dark); font-weight: 400; width: 100%; appearance: none;
  transition: border-color 0.3s, background 0.3s;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { outline: none; border-color: var(--sage-dark); background: var(--warm-white); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-legal { font-size: 0.75rem; color: var(--text-light); text-align: center; line-height: 1.6; }

/* ── FOOTER ── */
#colophon { background: var(--text-dark); color: rgba(253,250,245,0.6); padding: 3rem 2rem; text-align: center; }
.footer-name { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; color: var(--warm-white); margin-bottom: 0.3rem; }
.footer-sub { font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--sage-light); margin-bottom: 1.5rem; }
.footer-nav { display: flex; justify-content: center; gap: 2rem; margin-bottom: 1.5rem; flex-wrap: wrap; }
.footer-nav a { color: rgba(253,250,245,0.5); font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; transition: color 0.3s; }
.footer-nav a:hover { color: var(--sage-light); }
.footer-legal { font-size: 0.75rem; line-height: 1.7; color: rgba(253,250,245,0.35); max-width: 500px; margin: 0 auto; }

/* ── ANIMATIONS ── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
.hero-title    { animation: fadeUp 0.7s 0.1s ease both; }
.hero-subtitle { animation: fadeUp 0.7s 0.25s ease both; }
.hero-body     { animation: fadeUp 0.7s 0.4s ease both; }
.hero-actions  { animation: fadeUp 0.7s 0.55s ease both; }
.hero-photo    { animation: fadeUp 0.9s 0.2s ease both; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  section { padding: 4rem 1.5rem; }
  .menu-toggle { display: flex; }
  .main-navigation ul { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--warm-white); padding: 1.5rem 2rem; border-bottom: 1px solid var(--sand); gap: 1.2rem; }
  .main-navigation ul.toggled { display: flex; }
  .hero-inner, .who-grid, .how-grid, .about-grid, .wss-grid, .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .services-grid { grid-template-columns: 1fr; }
  .insurance-card { grid-column: span 1; }
  .first-session-steps { grid-template-columns: 1fr; gap: 1.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .about-photo-wrap { position: static; }
  .hero-photo { order: 2; }
  .banner-img { max-height: 180px; }
  .nav-logo { width: 36px; height: 36px; }
  .how-pillars { grid-template-columns: repeat(2, 1fr) !important; }
}
