/* ================================================================
   DAMINI NAYAK — THERAPY WEBSITE
   style.css

   Palette:
   --cream      : warm off-white background
   --charcoal   : primary text
   --sage       : muted sage green accent
   --sage-light : soft sage tint for backgrounds
   --ink        : deep ink for headings
   --stone      : mid-tone for labels/secondary text
   --border     : subtle divider lines

   Fonts:
   Display : Cormorant Garamond (elegant, warm)
   Body    : DM Sans (clean, readable)
================================================================ */

/* ----------------------------------------------------------------
   CSS VARIABLES — Edit colours here to retheme the whole site
---------------------------------------------------------------- */
:root {
  --cream:        #F8F5F0;
  --cream-deep:   #F0EBE3;
  --charcoal:     #2C2B28;
  --ink:          #1A1917;
  --sage:         #7A9E87;
  --sage-mid:     #9CB8A5;
  --sage-light:   #EAF0EC;
  --stone:        #8A8680;
  --border:       #DDD8D0;
  --highlight:    #C9DDD0;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  --max-width:    1080px;
  --nav-h:        64px;
  --radius:       6px;
  --transition:   0.22s ease;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ----------------------------------------------------------------
   UTILITY
---------------------------------------------------------------- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.section-pad { padding: 6rem 0; }

.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 1rem;
}

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 400;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 1.8rem;
}

/* ----------------------------------------------------------------
   BUTTONS
---------------------------------------------------------------- */
.btn {
  display: inline-block;
  padding: 0.8rem 1.8rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), transform var(--transition), box-shadow var(--transition);
  text-align: center;
}

.btn-primary {
  background: var(--sage);
  color: #fff;
  border: 2px solid var(--sage);
}
.btn-primary:hover {
  background: #5e8a6c;
  border-color: #5e8a6c;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(90,140,100,0.18);
}

.btn-secondary {
  background: transparent;
  color: var(--charcoal);
  border: 2px solid var(--border);
}
.btn-secondary:hover {
  border-color: var(--sage);
  color: var(--sage);
  transform: translateY(-1px);
}

/* ----------------------------------------------------------------
   NAVIGATION
---------------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(248,245,240,0.93);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  height: var(--nav-h);
}

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

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--stone);
  letter-spacing: 0.02em;
  position: relative;
  transition: color var(--transition);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--sage);
  transition: width var(--transition);
}
.nav-links a:hover { color: var(--charcoal); }
.nav-links a:hover::after { width: 100%; }

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

/* ----------------------------------------------------------------
   HERO
---------------------------------------------------------------- */
.hero {
  min-height: 100vh;
  padding-top: var(--nav-h);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--cream);
}

.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 4rem 2rem 3rem;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
}

/* Profile photo */
.hero-photo-wrap {
  position: relative;
  width: 100%;
  max-width: 380px;
  aspect-ratio: 4 / 5;
  border-radius: 240px 240px 120px 120px;
  overflow: hidden;
  background: var(--sage-light);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.photo-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--sage);
  text-align: center;
}
.photo-fallback span {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 300;
  opacity: 0.5;
}
.photo-fallback p {
  font-size: 0.75rem;
  opacity: 0.55;
  line-height: 1.5;
}

/* When JS hides broken img */
.hero-photo[style*="display:none"] ~ .photo-fallback { display: flex; }

.hero-text-col {
  padding: 1rem 0;
}

.hero-eyebrow {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 1rem;
}

.hero-name {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 6vw, 5.5rem);
  font-weight: 300;
  line-height: 1;
  color: var(--ink);
  margin-bottom: 1.4rem;
  letter-spacing: -0.01em;
}

.hero-tagline {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--stone);
  margin-bottom: 2rem;
  max-width: 420px;
}

.hero-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.hero-location {
  font-size: 0.8rem;
  color: var(--stone);
  letter-spacing: 0.04em;
}

.hero-scroll-hint {
  text-align: center;
  color: var(--sage-mid);
  font-size: 1.2rem;
  padding-bottom: 2rem;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(6px); }
}

/* ----------------------------------------------------------------
   ABOUT
---------------------------------------------------------------- */
.about {
  background: var(--cream-deep);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.two-col {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 3rem;
}

.about-label-col {
  padding-top: 0.25rem;
}

.about-text-col p {
  margin-bottom: 1.2rem;
  font-size: 0.98rem;
  color: var(--charcoal);
  max-width: 620px;
}

.about-personal {
  font-style: italic;
  color: var(--stone) !important;
}

.credentials-row {
  display: flex;
  gap: 3rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}

.credential-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.cred-number {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 400;
  color: var(--sage);
  line-height: 1;
}
.cred-label {
  font-size: 0.78rem;
  color: var(--stone);
  letter-spacing: 0.03em;
}

/* ----------------------------------------------------------------
   APPROACH
---------------------------------------------------------------- */
.approach {
  background: var(--cream);
}

.approach-header {
  margin-bottom: 3rem;
}

.approach-body {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.approach-intro p {
  margin-bottom: 1.2rem;
  font-size: 0.97rem;
  color: var(--charcoal);
}

.approach-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.pillar {
  background: var(--sage-light);
  border: 1px solid var(--highlight);
  border-radius: var(--radius);
  padding: 1.4rem;
}

.pillar-icon {
  font-size: 1rem;
  color: var(--sage);
  margin-bottom: 0.6rem;
}

.pillar h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 0.4rem;
}

.pillar p {
  font-size: 0.85rem;
  color: var(--stone);
  line-height: 1.6;
}

/* ----------------------------------------------------------------
   AREAS OF SUPPORT
---------------------------------------------------------------- */
.areas {
  background: var(--cream-deep);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.areas-intro {
  font-size: 0.95rem;
  color: var(--stone);
  margin-bottom: 2.5rem;
  max-width: 560px;
}

.chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.chip {
  display: inline-block;
  padding: 0.45rem 1.1rem;
  border: 1.5px solid var(--sage-mid);
  border-radius: 50px;
  font-size: 0.85rem;
  color: var(--charcoal);
  background: transparent;
  transition: background var(--transition), color var(--transition);
}
.chip:hover {
  background: var(--sage);
  border-color: var(--sage);
  color: #fff;
}

/* ----------------------------------------------------------------
   SERVICES
---------------------------------------------------------------- */
.services {
  background: var(--cream);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-top: 0.5rem;
}

.service-card {
  background: var(--cream-deep);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.6rem;
  transition: box-shadow var(--transition), transform var(--transition);
}
.service-card:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transform: translateY(-2px);
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 0.6rem;
}
.service-card p {
  font-size: 0.87rem;
  color: var(--stone);
  line-height: 1.65;
}

.service-card--highlight {
  background: var(--sage-light);
  border-color: var(--highlight);
}
.service-card--highlight h3 { color: var(--sage); }

/* ----------------------------------------------------------------
   TESTIMONIALS
---------------------------------------------------------------- */
.testimonials {
  background: var(--cream-deep);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 1.2rem;
  margin-top: 0.5rem;
  align-items: start;
}

.testimonial-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.8rem;
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 1rem; left: 1.5rem;
  font-family: var(--font-display);
  font-size: 4rem;
  line-height: 1;
  color: var(--sage-light);
  pointer-events: none;
}

.testimonial-card blockquote {
  font-size: 0.93rem;
  line-height: 1.75;
  color: var(--charcoal);
  font-style: italic;
  padding-top: 1.4rem;
  margin-bottom: 1rem;
}

.testimonial-card cite {
  font-style: normal;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sage);
}

.testimonial-card--large {
  background: var(--sage-light);
  border-color: var(--highlight);
}

/* ----------------------------------------------------------------
   FAQ
---------------------------------------------------------------- */
.faq {
  background: var(--cream);
}

.faq-grid {
  max-width: 740px;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--cream-deep);
  transition: box-shadow var(--transition);
}
.faq-item:hover { box-shadow: 0 2px 10px rgba(0,0,0,0.05); }

.faq-item summary {
  padding: 1.1rem 1.4rem;
  cursor: pointer;
  font-weight: 500;
  font-size: 0.93rem;
  color: var(--ink);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.3rem;
  color: var(--sage);
  transition: transform var(--transition);
  flex-shrink: 0;
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p,
.faq-item ul {
  padding: 0 1.4rem 1.2rem;
  font-size: 0.9rem;
  color: var(--stone);
  line-height: 1.75;
}
.faq-item ul {
  padding-left: 2.5rem;
  list-style: disc;
}
.faq-item ul li { margin-bottom: 0.3rem; }
.faq-policy p { padding-bottom: 0.4rem; }
.faq-policy p strong { color: var(--charcoal); }

/* ----------------------------------------------------------------
   CONTACT
---------------------------------------------------------------- */
.contact {
  background: var(--sage-light);
  border-top: 1px solid var(--highlight);
  border-bottom: 1px solid var(--highlight);
}

.contact-inner {
  max-width: 600px;
}

.contact-body {
  font-size: 1rem;
  color: var(--charcoal);
  margin-bottom: 2rem;
  max-width: 500px;
}

.contact-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.contact-location {
  font-size: 0.82rem;
  color: var(--stone);
}

/* ----------------------------------------------------------------
   FOOTER
---------------------------------------------------------------- */
.site-footer {
  background: var(--ink);
  padding: 3rem 0;
}

.footer-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  color: rgba(255,255,255,0.7);
}

.footer-disclaimer {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.38);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

.footer-copy {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
}

/* ----------------------------------------------------------------
   RESPONSIVE — TABLET (≤ 900px)
---------------------------------------------------------------- */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2.5rem;
    justify-items: center;
  }
  .hero-photo-wrap {
    max-width: 260px;
  }
  .hero-tagline { margin: 0 auto 2rem; }
  .hero-actions { justify-content: center; }
  .hero-location { text-align: center; }

  .two-col {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .about-label-col { display: none; }

  .approach-body {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonial-grid {
    grid-template-columns: 1fr 1fr;
  }
  .testimonial-card--large {
    grid-column: 1 / -1;
  }
}

/* ----------------------------------------------------------------
   RESPONSIVE — MOBILE (≤ 600px)
---------------------------------------------------------------- */
@media (max-width: 600px) {
  .section-pad { padding: 4rem 0; }

  .nav-toggle { display: block; }
  .nav-links {
    display: none;
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 1.5rem 2rem;
    gap: 1.2rem;
    z-index: 99;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1rem; color: var(--charcoal); }

  .hero-name { font-size: 3rem; }

  .approach-pillars {
    grid-template-columns: 1fr;
  }

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

  .testimonial-grid {
    grid-template-columns: 1fr;
  }
  .testimonial-card--large { grid-column: auto; }

  .credentials-row {
    gap: 2rem;
  }

  .contact-actions {
    flex-direction: column;
  }
  .contact-actions .btn {
    text-align: center;
  }


}

/* ----------------------------------------------------------------
   LOGO
---------------------------------------------------------------- */
.nav-logo-img {
  height: 36px;
  width: auto;
  display: block;
}

.hero-logo-wrap {
  margin-bottom: 1.5rem;
}

.hero-logo-img {
  height: 52px;
  width: auto;
  display: block;
}

@media (max-width: 900px) {
  .hero-logo-img {
    margin: 0 auto;
  }
}
