/* ============================================
   AUTHENTIC LIVING THERAPY
   Palette E — Desert Rose
   ============================================ */

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

:root {
  /* Palette E — Desert Rose */
  --coral:       #D97B6C;   /* PRIMARY background */
  --coral-dark:  #C46859;
  --coral-light: #E8967F;
  --terracotta:  #B5614A;
  --rose:        #9E3D5A;
  --rose-dark:   #7A2D46;
  --linen:       #F7EDE5;
  --linen-deep:  #EFE0D4;
  --sage:        #6B8C6B;
  --sage-deep:   #4A6650;
  --bark:        #5C3D2A;
  --bark-light:  #7A5540;
  --text:        #2C1A10;
  --text-mid:    #5C3A28;
  --text-light:  #9C7060;
  --white:       #FFF9F5;
  --off-white:   #FDF5EE;
}

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

body {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  background: var(--coral);
  color: var(--text);
  overflow-x: hidden;
  position: relative;
}

/* ── CYPRESS BACKGROUND ── */
#cypress-bg {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1000px;
  height: 100vh;
  pointer-events: none;
  z-index: 0;
  opacity: 0.10;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 3rem;
  background: rgba(217, 123, 108, 0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,249,245,0.18);
  transition: box-shadow 0.3s ease;
}

.nav-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,249,245,0.85);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--white); }

/* ── PAGE WRAPPER ── */
.page-content { position: relative; z-index: 1; }

/* ── HERO ── */
#hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 2rem 6rem;
  position: relative;
  background: var(--coral);
}

.hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,249,245,0.75);
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 0.9s 0.2s forwards;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.4rem, 8.5vw, 7rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 1.2rem;
  opacity: 0;
  animation: fadeUp 0.9s 0.4s forwards;
}

.hero-title em {
  font-style: italic;
  color: var(--linen);
}

.hero-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(0.95rem, 2vw, 1.25rem);
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,249,245,0.8);
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp 0.9s 0.6s forwards;
}

.hero-tagline {
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(255,249,245,0.88);
  max-width: 500px;
  line-height: 1.85;
  margin-bottom: 3.5rem;
  opacity: 0;
  animation: fadeUp 0.9s 0.8s forwards;
}

.hero-cta {
  display: inline-block;
  padding: 1rem 3rem;
  background: var(--white);
  color: var(--terracotta);
  font-family: 'Jost', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.25s, color 0.25s, transform 0.2s;
  opacity: 0;
  animation: fadeUp 0.9s 1.0s forwards;
}

.hero-cta:hover {
  background: var(--linen);
  color: var(--rose);
  transform: translateY(-2px);
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  animation: fadeUp 0.9s 1.4s forwards;
}

.hero-scroll span {
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,249,245,0.55);
}

.scroll-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, rgba(255,249,245,0.6), transparent);
  animation: scrollPulse 2.2s 2s infinite;
}

/* ── QUOTE BAND ── */
#intro {
  background: var(--bark);
  padding: 5.5rem 2rem;
  text-align: center;
}

#intro blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 300;
  font-style: italic;
  color: var(--linen);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.75;
}

#intro blockquote::before { content: '\201C'; }
#intro blockquote::after  { content: '\201D'; }

/* ── SECTION SHARED ── */
.section-label {
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 1rem;
  display: block;
}

.section-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  color: var(--bark);
  line-height: 1.2;
  margin-bottom: 2rem;
}

.section-heading em {
  font-style: italic;
  color: var(--rose);
}

.body-text {
  font-size: 0.97rem;
  font-weight: 300;
  line-height: 1.95;
  color: var(--text-mid);
  margin-bottom: 1.4rem;
}

/* ── ABOUT ── */
#about {
  padding: 8rem 2rem;
  background: var(--linen);
}

.about-inner {
  max-width: 1040px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.about-photo-wrap {
  position: relative;
}

.about-photo {
  width: 100%;
  max-width: 380px;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center top;
  border-radius: 2px;
  display: block;
  box-shadow: 8px 12px 40px rgba(92,61,42,0.18);
}

.photo-accent {
  position: absolute;
  top: -16px;
  left: -16px;
  width: 100%;
  max-width: 380px;
  aspect-ratio: 3/4;
  border: 2px solid var(--coral);
  border-radius: 2px;
  opacity: 0.45;
  pointer-events: none;
}

.about-text { padding-top: 0.5rem; }

.credential-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  margin-top: 2rem;
}

.credential-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.65;
}

.cred-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--coral);
  flex-shrink: 0;
  margin-top: 0.55rem;
}

/* ── APPROACH ── */
#approach {
  background: var(--linen-deep);
  padding: 8rem 2rem;
}

.approach-inner { max-width: 1040px; margin: 0 auto; }

.approach-header { text-align: center; margin-bottom: 4rem; }

.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.approach-card {
  padding: 2.5rem 2rem;
  background: var(--white);
  border-radius: 2px;
  border-top: 2px solid var(--coral);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.approach-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(92,61,42,0.10);
}

.approach-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--bark);
  margin-bottom: 1rem;
}

.approach-card p {
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.85;
  color: var(--text-mid);
}

/* ── SERVICES ── */
#services {
  padding: 8rem 2rem;
  background: var(--linen);
}

.services-inner {
  max-width: 1040px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.7fr;
  gap: 5rem;
  align-items: start;
}

.service-item {
  padding: 2rem 0;
  border-bottom: 1px solid rgba(181,97,74,0.15);
}

.service-item:first-child { padding-top: 0; }

.service-item h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--bark);
  margin-bottom: 0.65rem;
}

.service-item p {
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.85;
  color: var(--text-mid);
}

/* ── FEES ── */
#fees {
  padding: 8rem 2rem;
  background: var(--bark);
}

.fees-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

#fees .section-label { color: var(--coral-light); }
#fees .section-heading { color: var(--linen); }

.fee-amount {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.5rem, 7vw, 5.5rem);
  font-weight: 300;
  color: var(--coral);
  line-height: 1;
  margin: 2.5rem 0 0.5rem;
}

.fee-label {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--linen-deep);
  margin-bottom: 3rem;
  opacity: 0.6;
}

.fees-body {
  font-size: 0.97rem;
  font-weight: 300;
  line-height: 1.95;
  color: var(--linen-deep);
  max-width: 540px;
  margin: 0 auto 3rem;
  opacity: 0.8;
}

.insurance-box {
  display: inline-block;
  padding: 1.4rem 2.2rem;
  border: 1px solid rgba(217,123,108,0.35);
  border-radius: 2px;
  font-size: 0.875rem;
  color: var(--coral-light);
  line-height: 1.75;
  text-align: center;
}

.insurance-box strong { color: var(--coral); font-weight: 400; }

/* ── CONTACT ── */
#contact {
  padding: 8rem 2rem;
  background: var(--coral);
}

.contact-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 5rem;
  align-items: start;
}

#contact .section-label { color: rgba(255,249,245,0.7); }
#contact .section-heading { color: var(--white); }

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-top: 1rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-field label {
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,249,245,0.65);
}

.form-field input,
.form-field textarea {
  font-family: 'Jost', sans-serif;
  font-size: 0.95rem;
  font-weight: 300;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(255,249,245,0.3);
  border-radius: 2px;
  background: rgba(255,249,245,0.12);
  color: var(--white);
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}

.form-field input::placeholder,
.form-field textarea::placeholder { color: rgba(255,249,245,0.4); }

.form-field input:focus,
.form-field textarea:focus {
  border-color: rgba(255,249,245,0.65);
  background: rgba(255,249,245,0.18);
}

.form-field textarea { resize: vertical; min-height: 130px; }

.form-submit {
  padding: 1rem 2.2rem;
  background: var(--white);
  color: var(--terracotta);
  font-family: 'Jost', sans-serif;
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.2s;
  align-self: flex-start;
}

.form-submit:hover {
  background: var(--linen);
  color: var(--rose);
  transform: translateY(-2px);
}

.contact-info { padding-top: 0.5rem; }

.contact-info h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 2.5rem;
}

.contact-detail { margin-bottom: 1.6rem; }

.contact-detail .label {
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,249,245,0.6);
  margin-bottom: 0.3rem;
}

.contact-detail .value {
  font-size: 0.95rem;
  font-weight: 300;
  color: rgba(255,249,245,0.9);
  line-height: 1.65;
}

.contact-detail a {
  color: rgba(255,249,245,0.9);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,249,245,0.25);
  transition: border-color 0.2s;
}

.contact-detail a:hover { border-color: var(--white); }

.crisis-note {
  margin-top: 2.5rem;
  padding: 1.2rem 1.5rem;
  background: rgba(0,0,0,0.12);
  border-left: 2px solid rgba(255,249,245,0.4);
  font-size: 0.82rem;
  font-weight: 300;
  color: rgba(255,249,245,0.75);
  line-height: 1.75;
}

.crisis-note strong { color: var(--white); font-weight: 400; }

/* ── FOOTER ── */
footer {
  background: var(--text);
  padding: 3rem 2rem;
  text-align: center;
}

.footer-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--linen);
  letter-spacing: 0.1em;
  margin-bottom: 0.4rem;
}

.footer-license {
  font-size: 0.72rem;
  font-weight: 300;
  color: var(--text-light);
  letter-spacing: 0.08em;
  margin-bottom: 1.8rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  list-style: none;
  margin-bottom: 2rem;
}

.footer-links a {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--coral); }

.footer-copy {
  font-size: 0.7rem;
  color: var(--text-light);
  opacity: 0.45;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.35; }
  50%       { opacity: 0.85; }
}

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

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 820px) {
  nav { padding: 1rem 1.5rem; }
  .nav-links { gap: 1.4rem; }
  .about-inner,
  .services-inner,
  .contact-inner { grid-template-columns: 1fr; gap: 3rem; }
  .approach-grid { grid-template-columns: 1fr; }
  .about-photo { max-width: 100%; }
  .photo-accent { display: none; }
}
