/* ============================================
   SUNNY NOOK PLAY THERAPY – STYLESHEET
   ============================================ */

:root {
  --cream: #FAF6EF;
  --warm-white: #FEFCF8;
  --sage: #6B8F6E;
  --sage-dark: #4A6B4D;
  --sage-light: #EAF0EB;
  --terracotta: #B85C3A;
  --gold: #C49A3C;
  --text-dark: #252220;
  --text-mid: #524D48;
  --text-light: #8C857E;
  --warm-tan: #F0E8DC;
  --border: #E2D8CC;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', sans-serif;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(0,0,0,0.07);
}

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

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--warm-white);
  font-size: 16px;
  line-height: 1.7;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.2;
  color: var(--text-dark);
}

h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); margin-bottom: 1rem; }
h3 { font-size: 1.3rem; margin-bottom: 0.5rem; }

p { color: var(--text-mid); margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }
a { color: var(--sage-dark); text-decoration: none; }
a:hover { color: var(--terracotta); }
em { font-family: var(--font-display); font-style: italic; font-size: 1.05em; }

.container { max-width: 1100px; margin: 0 auto; padding: 0 2rem; }
.container.center { text-align: center; }
.section { padding: 5rem 0; }
.section-light { background: var(--warm-white); }
.section-warm { background: var(--warm-tan); }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }
.fees-layout { align-items: start; margin-top: 2.5rem; }

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 0.75rem;
}

.subheading {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

/* NAV */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 2rem;
  background: var(--warm-white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.1;
}

.nav-logo span {
  display: block;
  font-size: 0.75rem;
  font-family: var(--font-body);
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
}

.nav-links { display: flex; list-style: none; gap: 2rem; }
.nav-links a { font-size: 0.9rem; color: var(--text-mid); transition: color 0.2s; }
.nav-links a:hover { color: var(--sage-dark); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-dark);
}

/* HERO */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 90vh;
  align-items: stretch;
}

.hero-inner {
  padding: 5rem 3rem 5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  animation: fadeUp 0.9s ease both;
}

.hero-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 0.25rem;
}

.hero-quote-attr { font-size: 0.85rem; color: var(--text-light); margin-bottom: 2.5rem; }
.hero-headline { font-size: clamp(2.4rem, 4.5vw, 3.6rem); font-weight: 500; line-height: 1.15; margin-bottom: 1rem; }
.hero-sub { font-size: 1.1rem; color: var(--text-mid); margin-bottom: 2.5rem; }
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-image-wrap { overflow: hidden; position: relative; }
.hero-img { width: 100%; height: 100%; object-fit: cover; display: block; min-height: 500px; }

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 0.8rem 1.8rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.25s;
  border: 2px solid transparent;
  text-decoration: none;
}

.btn-primary { background: var(--sage); color: white; border-color: var(--sage); }
.btn-primary:hover { background: var(--sage-dark); border-color: var(--sage-dark); color: white; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(122,158,126,0.35); }
.btn-secondary { background: transparent; color: var(--text-dark); border-color: var(--border); }
.btn-secondary:hover { border-color: var(--sage); color: var(--sage-dark); }
.btn-outline { background: transparent; color: var(--sage-dark); border-color: var(--sage); padding: 0.65rem 1.4rem; font-size: 0.85rem; }
.btn-outline:hover { background: var(--sage); color: white; }

/* CARDS */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.card {
  background: white;
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: transform 0.25s, box-shadow 0.25s;
}

.card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(0,0,0,0.1); }
.card-icon { font-size: 1.8rem; margin-bottom: 0.75rem; }
.card h3 { font-family: var(--font-display); font-size: 1.15rem; }
.card p { font-size: 0.9rem; }

/* QUOTE CARD */
.quote-card {
  background: var(--sage-light);
  border-left: 4px solid var(--sage);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 2rem;
}

.quote-card p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.2rem;
  line-height: 1.6;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.quote-card span { font-size: 0.85rem; color: var(--sage-dark); font-weight: 500; }

/* PROFILE IMAGE */
.profile-img {
  width: 100%;
  border-radius: var(--radius);
  object-fit: cover;
  max-height: 480px;
  box-shadow: var(--shadow);
  display: block;
}

/* ETHOS */
.ethos-block {
  background: var(--warm-tan);
  border-radius: var(--radius);
  padding: 1.5rem 2rem;
  margin: 1.5rem 0;
}

.ethos-block p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--text-dark);
}

/* CREDENTIALS */
.cred-list { list-style: none; margin-top: 0.5rem; display: flex; flex-wrap: wrap; gap: 0.5rem; }
.cred-list li { background: var(--sage-light); color: var(--sage-dark); padding: 0.3rem 0.9rem; border-radius: 50px; font-size: 0.85rem; font-weight: 500; }

/* HOURS */
.hours-table { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; margin: 0 0 1.5rem; }
.hours-row { display: flex; justify-content: space-between; padding: 0.85rem 1.25rem; border-bottom: 1px solid var(--border); }
.hours-row:last-child { border-bottom: none; }
.hours-row:nth-child(even) { background: rgba(255,255,255,0.6); }
.day { font-weight: 500; color: var(--text-dark); }
.time { color: var(--text-mid); }

/* FEES BOX */
.fees-box { background: var(--sage-light); border-radius: var(--radius); padding: 1.5rem 2rem; }

/* FAQ */
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q { width: 100%; background: none; border: none; text-align: left; padding: 1.25rem 0; font-family: var(--font-display); font-size: 1.15rem; color: var(--text-dark); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.faq-q:hover { color: var(--sage-dark); }
.faq-q span { font-size: 1.4rem; color: var(--sage); transition: transform 0.2s; flex-shrink: 0; }
.faq-q.open span { transform: rotate(45deg); }
.faq-a { display: none; padding-bottom: 1.25rem; }
.faq-a.visible { display: block; }
.faq-a p { font-size: 0.95rem; }

/* CONTACT FORM */
.contact-form { margin-top: 1.5rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 500; color: var(--text-dark); margin-bottom: 0.4rem; }
.form-group input, .form-group textarea { width: 100%; padding: 0.75rem 1rem; border: 1.5px solid var(--border); border-radius: 8px; font-family: var(--font-body); font-size: 0.95rem; color: var(--text-dark); background: white; transition: border-color 0.2s; }
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--sage); }
.form-group textarea { resize: vertical; }

.disclaimer-note { font-size: 0.8rem; color: var(--text-light); font-style: italic; margin-bottom: 1rem; }

.contact-info-box { background: var(--warm-tan); border-radius: var(--radius); padding: 2rem; }
.contact-info-box h3 { font-family: var(--font-display); font-size: 1.2rem; margin-bottom: 1rem; }
.contact-info-box p { font-size: 0.95rem; margin-bottom: 0.5rem; }

/* FOOTER */
.footer-acknowledgement {
  background: #1a1714;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-acknowledgement p {
  color: #999;
  font-size: 0.82rem;
  line-height: 1.7;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.footer { background: var(--text-dark); color: #ccc; padding-top: 0; }
.footer-inner { display: flex; justify-content: space-between; gap: 3rem; padding: 2.5rem 0; border-bottom: 1px solid rgba(255,255,255,0.1); flex-wrap: wrap; }
.footer-brand strong { display: block; font-family: var(--font-display); font-size: 1.2rem; color: white; margin-bottom: 0.5rem; }
.footer-brand p, .footer-brand a { font-size: 0.9rem; color: #aaa; display: block; margin-bottom: 0.25rem; }
.footer-brand a:hover { color: var(--gold); }
.footer-links { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a { font-size: 0.9rem; color: #aaa; }
.footer-links a:hover { color: white; }
.footer-bottom { text-align: center; padding: 1.25rem 2rem; font-size: 0.78rem; color: #777; }

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

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .hero-image-wrap { min-height: 320px; }
  .hero-inner { padding: 4rem 2rem; }
  .two-col { grid-template-columns: 1fr; gap: 2.5rem; }
  .two-col.reverse { direction: ltr; }
  .cards-grid { grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); }
}

@media (max-width: 640px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 70px; left: 0; right: 0; background: var(--warm-white); padding: 1rem 2rem 2rem; border-bottom: 1px solid var(--border); gap: 1rem; z-index: 99; }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
  .section { padding: 3.5rem 0; }
  .footer-inner { flex-direction: column; gap: 2rem; }
  .hero-cta { flex-direction: column; }
  .btn { text-align: center; }
}
