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

:root {
  --cream:        #FAF7F2;
  --warm-white:   #FDF9F5;
  --terracotta:   #C17B5A;
  --terra-dark:   #A86545;
  --sage:         #8B9E7D;
  --sage-light:   #C4D4BB;
  --sage-pale:    #E8F0E4;
  --blush:        #E8D5C4;
  --text:         #3D3430;
  --text-light:   #7A6E6A;
  --border:       #E0D5CC;
  --amber:        #D4956A;
  --amber-light:  #F7E8D8;
  --olive:        #6B8C5A;
  --olive-light:  #DDE8D6;
  --rust:         #B85C38;
  --gold:         #C9A84C;
  --gold-light:   #F2E8C8;
  --mauve:        #A87878;
  --mauve-light:  #EDD8D8;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Lora', Georgia, serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.7;
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-weight: 600;
  line-height: 1.2;
}

a { color: inherit; text-decoration: none; }

img { max-width: 100%; display: block; }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-label {
  font-family: 'Lora', Georgia, serif;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--text);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 560px;
}

/* ===== NAV ===== */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(250, 247, 242, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}

nav.scrolled { box-shadow: 0 2px 20px rgba(61,52,48,0.08); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.nav-logo {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text);
}

.nav-logo span { color: var(--terracotta); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-family: 'Lora', Georgia, serif;
  font-size: 0.875rem;
  color: var(--text-light);
  transition: color 0.2s;
}

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

.btn-portal {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--terracotta);
  color: #fff !important;
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 0.875rem !important;
  font-family: 'Lora', Georgia, serif;
  transition: background 0.2s, transform 0.15s;
}

.btn-portal:hover { background: var(--terra-dark); transform: translateY(-1px); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ===== HERO ===== */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #FDF8F2 0%, #F5E9DC 40%, #EDE0D0 100%);
  padding-top: 70px;
  position: relative;
  overflow: hidden;
}

#hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,149,106,0.22) 0%, transparent 70%);
}

#hero::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(107,140,90,0.2) 0%, transparent 70%);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-text h1 {
  font-size: clamp(2.8rem, 5vw, 4rem);
  color: var(--text);
  margin-bottom: 20px;
  line-height: 1.15;
}

.hero-text h1 em {
  font-style: italic;
  color: var(--terracotta);
}

.hero-text p {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 36px;
  max-width: 440px;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.btn-primary {
  display: inline-block;
  background: var(--terracotta);
  color: #fff;
  padding: 16px 36px;
  border-radius: 50px;
  font-family: 'Lora', Georgia, serif;
  font-size: 1rem;
  transition: background 0.2s, transform 0.15s;
}

.btn-primary:hover { background: var(--terra-dark); transform: translateY(-2px); }

.btn-secondary {
  display: inline-block;
  border: 1.5px solid var(--terracotta);
  color: var(--terracotta);
  padding: 16px 36px;
  border-radius: 50px;
  font-family: 'Lora', Georgia, serif;
  font-size: 1rem;
  transition: background 0.2s, color 0.2s, transform 0.15s;
}

.btn-secondary:hover {
  background: var(--terracotta);
  color: #fff;
  transform: translateY(-2px);
}

.hero-image {
  position: relative;
}

.hero-photo {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 200px 200px 160px 160px;
  background: var(--blush);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-photo-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: 200px 200px 160px 160px;
  background: linear-gradient(160deg, var(--blush), var(--sage-light));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 0.9rem;
  gap: 12px;
  object-fit: cover;
}

.hero-photo-small {
  width: 75%;
  max-width: 320px;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: center 45%;
  border-radius: 160px 160px 120px 120px;
  display: block;
  margin: 0 auto;
}

.specialty-cloud {
  background: rgba(255,255,255,0.6);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 28px 32px;
  backdrop-filter: blur(6px);
}

.specialty-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.specialty-tags span {
  background: var(--warm-white);
  border: 1.5px solid var(--border);
  color: var(--text);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.875rem;
  font-family: 'Lora', Georgia, serif;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  cursor: default;
}

.specialty-tags span:hover {
  background: var(--blush);
  border-color: var(--terracotta);
  color: var(--terracotta);
}

.hero-badge {
  margin-top: 24px;
  background: #fff;
  border-radius: 16px;
  padding: 14px 20px;
  box-shadow: 0 4px 20px rgba(61,52,48,0.10);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.hero-badge-icon {
  width: 40px; height: 40px;
  background: var(--sage-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.hero-badge-text strong {
  display: block;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1rem;
  color: var(--text);
}

.hero-badge-text span {
  font-size: 0.75rem;
  color: var(--text-light);
}

/* ===== ABOUT ===== */
#about {
  padding: 100px 0;
  background: linear-gradient(160deg, var(--warm-white) 0%, var(--amber-light) 100%);
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}

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

.about-photo-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: 120px 120px 80px 80px;
  background: linear-gradient(160deg, #E8D5C4, var(--sage-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 0.9rem;
  object-fit: cover;
}

.about-accent {
  position: absolute;
  top: -20px; right: -20px;
  width: 100px; height: 100px;
  border-radius: 50%;
  background: var(--sage-light);
  opacity: 0.6;
  z-index: -1;
}

.about-content .section-subtitle {
  margin-bottom: 24px;
  max-width: 100%;
}

.about-content p { color: var(--text-light); margin-bottom: 16px; }

.credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.credential-tag {
  background: var(--blush);
  color: var(--terracotta);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-family: 'Lora', Georgia, serif;
  letter-spacing: 0.05em;
}

.credential-tag:nth-child(2) { background: var(--olive-light); color: var(--olive); }
.credential-tag:nth-child(3) { background: var(--gold-light); color: var(--gold); }
.credential-tag:nth-child(4) { background: var(--amber-light); color: var(--amber); }
.credential-tag:nth-child(5) { background: var(--sage-pale); color: var(--olive); }
.credential-tag:nth-child(6) { background: var(--mauve-light); color: var(--mauve); }

/* ===== SERVICES ===== */
#services {
  padding: 100px 0;
  background: linear-gradient(160deg, var(--cream) 0%, var(--gold-light) 100%);
}

.services-header { margin-bottom: 56px; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-top: 4px solid var(--terracotta);
  border-radius: 24px;
  padding: 36px 28px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(61,52,48,0.10);
}

.service-card:nth-child(1) { border-top-color: var(--terracotta); }
.service-card:nth-child(1) .service-icon { background: var(--blush); color: var(--terracotta); }

.service-card:nth-child(2) { border-top-color: var(--olive); }
.service-card:nth-child(2) .service-icon { background: var(--olive-light); color: var(--olive); }

.service-card:nth-child(3) { border-top-color: var(--gold); }
.service-card:nth-child(3) .service-icon { background: var(--gold-light); color: var(--gold); }

.service-card:nth-child(4) { border-top-color: var(--amber); }
.service-card:nth-child(4) .service-icon { background: var(--amber-light); color: var(--amber); }

.service-card:nth-child(5) { border-top-color: var(--rust); }
.service-card:nth-child(5) .service-icon { background: var(--mauve-light); color: var(--rust); }

.service-card:nth-child(6) { border-top-color: var(--sage); }
.service-card:nth-child(6) .service-icon { background: var(--sage-pale); color: var(--sage); }

.service-icon {
  width: 52px; height: 52px;
  background: var(--blush);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--terracotta);
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}

.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--text);
}

.service-card p { font-size: 0.95rem; color: var(--text-light); }

/* ===== FAQ ===== */
#faq {
  padding: 100px 0;
  background: linear-gradient(160deg, var(--gold-light) 0%, var(--cream) 100%);
}

.faq-inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}

.faq-list { display: flex; flex-direction: column; gap: 12px; }

.faq-item {
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  background: var(--warm-white);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Lora', Georgia, serif;
  font-size: 0.975rem;
  color: var(--text);
  transition: background 0.2s;
  gap: 16px;
}

.faq-question:hover { background: var(--cream); }

.faq-icon {
  flex-shrink: 0;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--blush);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--terracotta);
  transition: transform 0.3s;
}

.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.3s;
  padding: 0 24px;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 24px 20px;
}

.faq-answer p { font-size: 0.93rem; color: var(--text-light); }

/* ===== CONTACT ===== */
#contact {
  padding: 100px 0;
  background: linear-gradient(160deg, var(--sage-pale) 0%, var(--olive-light) 100%);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.contact-info h3 {
  font-size: 1.3rem;
  margin-bottom: 24px;
  color: var(--text);
}

.contact-details { display: flex; flex-direction: column; gap: 16px; margin-bottom: 36px; }

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.contact-item-icon {
  width: 40px; height: 40px;
  background: var(--blush);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-item-text strong { display: block; font-size: 0.8rem; color: var(--terracotta); margin-bottom: 2px; letter-spacing: 0.08em; text-transform: uppercase; font-family: 'Lora', Georgia, serif; }
.contact-item-text span { font-size: 0.95rem; color: var(--text-light); }

.portal-cta {
  background: linear-gradient(135deg, var(--terracotta), var(--terra-dark));
  border-radius: 20px;
  padding: 28px;
  color: #fff;
  margin-top: 36px;
}

.portal-cta h4 { font-size: 1.2rem; margin-bottom: 8px; }
.portal-cta p { font-size: 0.9rem; opacity: 0.85; margin-bottom: 18px; }

.btn-portal-cta {
  display: inline-block;
  background: #fff;
  color: var(--terracotta);
  padding: 12px 28px;
  border-radius: 50px;
  font-family: 'Lora', Georgia, serif;
  font-size: 0.9rem;
  font-weight: 600;
  transition: transform 0.15s;
}

.btn-portal-cta:hover { transform: translateY(-2px); }

/* ===== FORM ===== */
.contact-form { display: flex; flex-direction: column; gap: 16px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-group { display: flex; flex-direction: column; gap: 6px; }

.form-group label {
  font-size: 0.8rem;
  font-family: 'Lora', Georgia, serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--terracotta);
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: 'Lora', Georgia, serif;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--warm-white);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 14px 16px;
  outline: none;
  transition: border-color 0.2s;
  resize: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--terracotta); }

.form-note {
  font-size: 0.8rem;
  color: var(--text-light);
  line-height: 1.5;
}

.btn-submit {
  align-self: flex-start;
  background: var(--terracotta);
  color: #fff;
  border: none;
  padding: 16px 36px;
  border-radius: 50px;
  font-family: 'Lora', Georgia, serif;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}

.btn-submit:hover { background: var(--terra-dark); transform: translateY(-2px); }

/* ===== PSYCHOLOGY TODAY BADGE ===== */
.pt-badge {
  display: inline-block;
  margin-top: 24px;
  background: var(--blush);
  color: var(--terracotta);
  border: 1.5px solid var(--terracotta);
  padding: 10px 22px;
  border-radius: 50px;
  font-family: 'Lora', Georgia, serif;
  font-size: 0.875rem;
  transition: background 0.2s, color 0.2s;
}

.pt-badge:hover {
  background: var(--terracotta);
  color: #fff;
}

/* ===== TIPS ===== */
#tips {
  padding: 100px 0;
  background: linear-gradient(160deg, var(--mauve-light) 0%, var(--warm-white) 100%);
}

.tips-header { margin-bottom: 56px; }

.tips-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.tip-card {
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--terracotta);
  border-radius: 24px;
  padding: 32px 28px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.tip-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(61,52,48,0.10);
}

.tip-card:nth-child(1) { border-left-color: var(--terracotta); }
.tip-card:nth-child(2) { border-left-color: var(--olive); }
.tip-card:nth-child(3) { border-left-color: var(--amber); }
.tip-card:nth-child(4) { border-left-color: var(--gold); }
.tip-card:nth-child(5) { border-left-color: var(--sage); }
.tip-card:nth-child(6) { border-left-color: var(--mauve); }

.tip-icon {
  font-size: 1.8rem;
  margin-bottom: 16px;
}

.tip-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--text);
}

.tip-card p { font-size: 0.93rem; color: var(--text-light); }

/* ===== FOOTER ===== */
footer {
  background: var(--text);
  color: rgba(255,255,255,0.7);
  padding: 40px 0;
  text-align: center;
  font-size: 0.875rem;
}

footer a { color: var(--blush); }
footer strong { color: #fff; }

/* ===== MOBILE NAV ===== */
@media (max-width: 768px) {
  .hamburger { display: flex; }

  .nav-links {
    display: none;
    position: absolute;
    top: 70px; left: 0; right: 0;
    background: var(--warm-white);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 24px rgba(61,52,48,0.08);
  }

  .nav-links.open { display: flex; }

  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-text p { margin: 0 auto 36px; }
  .hero-actions { justify-content: center; }
  .hero-image { order: -1; max-width: 300px; margin: 0 auto; }
  .hero-badge { left: 0; right: 0; width: fit-content; margin: 0 auto; bottom: 16px; }

  .about-inner,
  .faq-inner,
  .contact-inner { grid-template-columns: 1fr; gap: 40px; }

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

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