/* ============================================================
   DIVYA REGO — COACHING SITE
   Palette: Cream / Sand / Terracotta / Sage / Charcoal
   ============================================================ */

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

:root {
  --cream:      #FBF8F3;
  --sand:       #E8DFD3;
  --terracotta: #C97D60;
  --terra-dark: #A96548;
  --sage:       #7D9183;
  --sage-light: #B3C4BA;
  --charcoal:   #4A4039;
  --charcoal-light: #7A6E66;
  --white:      #FFFFFF;

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

  --max-w: 1080px;
  --section-pad: 96px 24px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--charcoal);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.15;
  color: var(--charcoal);
}
h1 { font-size: clamp(2.6rem, 6vw, 4.2rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.9rem); }
p  { color: var(--charcoal-light); }

/* ── Utility ── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.text-terra  { color: var(--terracotta); }
.text-sage   { color: var(--sage); }
.text-center { text-align: center; }
.italic      { font-style: italic; }

/* ── Buttons ── */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 2px;
  transition: all 0.22s ease;
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: var(--terracotta);
  color: var(--white);
}
.btn-primary:hover { background: var(--terra-dark); transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  color: var(--terracotta);
  border: 1.5px solid var(--terracotta);
}
.btn-outline:hover { background: var(--terracotta); color: var(--white); }

/* ============================================================
   NAV
   ============================================================ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(251,248,243,0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--sand);
  height: 68px;
  display: flex;
  align-items: center;
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--charcoal);
  letter-spacing: 0.02em;
}
.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
  align-items: center;
}
.nav-links a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal-light);
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--terracotta); }
.nav-links .nav-cta a {
  color: var(--terracotta);
  border-bottom: 1.5px solid var(--terracotta);
  padding-bottom: 1px;
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  width: 24px; height: 1.5px;
  background: var(--charcoal);
  transition: all 0.25s;
  display: block;
}

/* ============================================================
   PAGE WRAPPER — offset for fixed nav
   ============================================================ */
.page { padding-top: 68px; display: none; }
.page.active { display: block; }

/* ============================================================
   HOME — HERO
   ============================================================ */
.hero {
  min-height: calc(100vh - 68px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 0;
}
.hero-text {
  padding: 80px 64px 80px 24px;
  max-width: 560px;
  margin-left: auto;
}
.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-eyebrow::before {
  content: '';
  width: 32px; height: 1px;
  background: var(--sage);
  display: block;
}
.hero-text h1 {
  margin-bottom: 28px;
}
.hero-text h1 em {
  font-style: italic;
  color: var(--terracotta);
}
.hero-text p {
  font-size: 1.05rem;
  margin-bottom: 40px;
  max-width: 440px;
  line-height: 1.8;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.hero-note {
  font-size: 0.78rem;
  color: var(--charcoal-light);
  letter-spacing: 0.05em;
}

.hero-image {
  height: calc(100vh - 68px);
  background: var(--sand);
  position: relative;
  overflow: hidden;
}
.hero-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: brightness(0.97) saturate(0.9);
}
.hero-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--cream) 0%, transparent 15%);
  pointer-events: none;
}

/* ── Home: Pull quote ── */
.pull-quote {
  background: var(--charcoal);
  padding: 80px 24px;
  text-align: center;
}
.pull-quote blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 300;
  font-style: italic;
  color: var(--cream);
  max-width: 760px;
  margin: 0 auto 24px;
  line-height: 1.45;
}
.pull-quote cite {
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage-light);
  font-style: normal;
}

/* ── Home: What I do ── */
.what-i-do { padding: var(--section-pad); background: var(--cream); }
.what-i-do .section-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 16px;
}
.what-i-do h2 { margin-bottom: 20px; }
.what-i-do .intro-text {
  font-size: 1.08rem;
  max-width: 600px;
  margin-bottom: 64px;
  line-height: 1.85;
}

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--sand);
}
.pillar {
  background: var(--cream);
  padding: 48px 36px;
}
.pillar-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 300;
  color: var(--sand);
  margin-bottom: 20px;
  line-height: 1;
}
.pillar h3 { margin-bottom: 14px; font-size: 1.3rem; }
.pillar p { font-size: 0.95rem; line-height: 1.75; }

/* ── Home: For who ── */
.for-who {
  background: var(--sand);
  padding: var(--section-pad);
}
.for-who-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.for-who h2 { margin-bottom: 32px; }
.for-who-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}
.for-who-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  font-size: 1rem;
  color: var(--charcoal-light);
  line-height: 1.65;
}
.for-who-list li::before {
  content: '—';
  color: var(--terracotta);
  flex-shrink: 0;
  margin-top: 2px;
}
.for-who-aside {
  background: var(--cream);
  padding: 48px;
  border-left: 3px solid var(--terracotta);
}
.for-who-aside p {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 300;
  font-style: italic;
  color: var(--charcoal);
  line-height: 1.55;
  margin-bottom: 28px;
}
.for-who-aside .attr {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage);
}

/* ── Home: CTA strip ── */
.cta-strip {
  background: var(--terracotta);
  padding: 80px 24px;
  text-align: center;
}
.cta-strip h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 16px;
}
.cta-strip p {
  color: rgba(255,255,255,0.82);
  margin-bottom: 36px;
  font-size: 1.05rem;
}
.btn-white {
  background: var(--white);
  color: var(--terracotta);
}
.btn-white:hover { background: var(--cream); transform: translateY(-1px); }

/* ============================================================
   ABOUT
   ============================================================ */
.about-hero {
  padding: 96px 24px 0;
  background: var(--cream);
}
.about-hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
}
.about-hero-text { padding-bottom: 80px; }
.about-hero-text .section-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 16px;
}
.about-hero-text h1 { margin-bottom: 32px; }
.about-hero-text p { font-size: 1.05rem; line-height: 1.85; margin-bottom: 20px; }
.about-image {
  height: 580px;
  background: var(--sand);
  overflow: hidden;
}
.about-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: brightness(0.97) saturate(0.9);
}

.about-credentials {
  background: var(--sand);
  padding: var(--section-pad);
}
.about-credentials h2 { margin-bottom: 48px; }
.credentials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--charcoal-light);
  margin-bottom: 48px;
}
.credential-item {
  background: var(--cream);
  padding: 32px 36px;
}
.credential-item .cred-body { font-size: 0.9rem; }
.credential-item .cred-issuer {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 8px;
}
.credential-item h3 { font-size: 1.15rem; font-weight: 500; color: var(--charcoal); }

.about-bio {
  background: var(--cream);
  padding: var(--section-pad);
}
.about-bio-inner {
  max-width: 680px;
  margin: 0 auto;
}
.about-bio .section-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 32px;
}
.about-bio p {
  font-size: 1.05rem;
  line-height: 1.9;
  margin-bottom: 24px;
  color: var(--charcoal-light);
}
.about-bio p.opening {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 300;
  font-style: italic;
  color: var(--charcoal);
  line-height: 1.55;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services-hero {
  padding: 96px 24px 80px;
  background: var(--cream);
  text-align: center;
}
.services-hero .section-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 16px;
}
.services-hero h1 { margin-bottom: 20px; }
.services-hero p { max-width: 560px; margin: 0 auto; font-size: 1.05rem; }

.services-grid {
  background: var(--sand);
  padding: var(--section-pad);
}
.services-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--charcoal-light);
  margin-bottom: 80px;
}
.service-card {
  background: var(--cream);
  padding: 48px 36px;
  display: flex;
  flex-direction: column;
}
.service-card .service-tag {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 20px;
}
.service-card h3 { margin-bottom: 16px; font-size: 1.25rem; }
.service-card p { font-size: 0.95rem; line-height: 1.8; flex-grow: 1; margin-bottom: 32px; }
.service-price {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--charcoal);
  padding-top: 24px;
  border-top: 1px solid var(--sand);
}
.service-price .free-badge {
  display: inline-block;
  background: var(--terracotta);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 2px;
}
.service-price .enquire {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--charcoal-light);
  letter-spacing: 0.06em;
}

.how-it-works {
  background: var(--cream);
  padding: var(--section-pad);
}
.how-it-works h2 { text-align: center; margin-bottom: 64px; }
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.step { text-align: center; }
.step-icon {
  width: 56px; height: 56px;
  border: 1.5px solid var(--terracotta);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--terracotta);
}
.step h3 { font-size: 1.1rem; margin-bottom: 10px; }
.step p { font-size: 0.9rem; line-height: 1.7; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-hero {
  padding: 96px 24px 80px;
  background: var(--charcoal);
  text-align: center;
}
.testimonials-hero h1 { color: var(--cream); margin-bottom: 16px; }
.testimonials-hero p { color: rgba(251,248,243,0.7); max-width: 520px; margin: 0 auto; }

.testimonials-placeholder {
  background: var(--cream);
  padding: var(--section-pad);
}
.placeholder-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--sand);
  margin-bottom: 80px;
}
.placeholder-card {
  background: var(--cream);
  padding: 48px 36px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 280px;
}
.placeholder-card .quote-mark {
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 1;
  color: var(--sand);
  margin-bottom: 16px;
}
.placeholder-card .quote-text {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--charcoal-light);
  line-height: 1.65;
  flex-grow: 1;
  margin-bottom: 24px;
}
.placeholder-card .quote-author {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage);
}
.coming-soon-note {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
  padding: 48px;
  background: var(--sand);
}
.coming-soon-note h3 { margin-bottom: 12px; }
.coming-soon-note p { font-size: 0.95rem; }

/* ============================================================
   BOOK A CALL
   ============================================================ */
.book-hero {
  padding: 96px 24px 64px;
  background: var(--cream);
  text-align: center;
}
.book-hero .section-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 16px;
}
.book-hero h1 { margin-bottom: 20px; }
.book-hero p { max-width: 520px; margin: 0 auto; font-size: 1.05rem; }

.book-details {
  background: var(--sand);
  padding: var(--section-pad);
}
.book-details-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.book-what h2 { margin-bottom: 32px; }
.book-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}
.book-points li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  font-size: 1rem;
  color: var(--charcoal-light);
  line-height: 1.65;
}
.book-points li::before {
  content: '✓';
  color: var(--sage);
  flex-shrink: 0;
  font-weight: 600;
  margin-top: 2px;
}
.book-embed {
  background: var(--cream);
  padding: 48px;
  border-top: 3px solid var(--terracotta);
  text-align: center;
}
.book-embed h3 { margin-bottom: 12px; }
.book-embed p { font-size: 0.95rem; margin-bottom: 32px; }
.calendly-placeholder {
  border: 2px dashed var(--sand);
  padding: 60px 24px;
  border-radius: 2px;
  text-align: center;
}
.calendly-placeholder p {
  font-size: 0.9rem;
  color: var(--charcoal-light);
  margin-bottom: 20px;
}

.payment-note {
  background: var(--cream);
  padding: var(--section-pad);
}
.payment-note-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.payment-note h2 { margin-bottom: 20px; }
.payment-note p { font-size: 1rem; margin-bottom: 16px; }
.paynow-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--sand);
  padding: 16px 28px;
  border-radius: 2px;
  margin-top: 16px;
  font-size: 0.9rem;
  color: var(--charcoal);
  font-weight: 500;
}
.paynow-badge .dot {
  width: 8px; height: 8px;
  background: var(--terracotta);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--charcoal);
  padding: 64px 24px 40px;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 64px;
  margin-bottom: 56px;
}
.footer-brand .logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--cream);
  margin-bottom: 16px;
}
.footer-brand p {
  font-size: 0.9rem;
  color: rgba(251,248,243,0.55);
  max-width: 280px;
  line-height: 1.7;
}
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sage-light);
  margin-bottom: 20px;
  font-weight: 500;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 0.9rem;
  color: rgba(251,248,243,0.6);
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--terracotta); }
.footer-bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: rgba(251,248,243,0.35);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-text { padding: 60px 24px; max-width: 100%; margin: 0; }
  .hero-image { height: 420px; }
  .hero-image-overlay { background: linear-gradient(to bottom, var(--cream) 0%, transparent 20%); }

  .pillars { grid-template-columns: 1fr; }
  .for-who-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-image { height: 360px; }
  .credentials-grid { grid-template-columns: 1fr; }
  .services-cards { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .placeholder-grid { grid-template-columns: 1fr; }
  .book-details-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-brand { grid-column: span 2; }

  .nav-links { display: none; position: fixed; top: 68px; left: 0; right: 0;
    background: var(--cream); flex-direction: column; gap: 0; border-bottom: 1px solid var(--sand); }
  .nav-links.open { display: flex; }
  .nav-links li a { display: block; padding: 16px 24px; border-bottom: 1px solid var(--sand); }
  .nav-toggle { display: flex; }
}
@media (max-width: 560px) {
  :root { --section-pad: 64px 20px; }
  .steps { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.7rem; }
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
}
