/* ============================================================
   Maya Shan Coaching — Global Stylesheet
   ============================================================ */

@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 {
  --navy:      #1C2B3A;
  --navy-mid:  #2A3F54;
  --teal:      #2A7F7F;
  --bronze:    #B08D6A;
  --cream:     #F5F0EA;
  --offwhite:  #E8DDD0;
  --emerald:   #2E8B6F;
  --emerald-dark: #236B55;
  --text-dark: #1C2B3A;
  --text-light: #F5F0EA;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  color: var(--text-dark);
  background: var(--cream);
  line-height: 1.7;
  font-size: 16px;
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }

p { font-size: 1rem; line-height: 1.8; }

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

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

/* ── HEADER / NAV ─────────────────────────────────────────── */

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--navy);
  border-bottom: 1px solid rgba(176,141,106,0.25);
  transition: box-shadow 0.3s;
}

.site-header.scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,0.25);
}

.header-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-placeholder {
  width: 40px;
  height: 40px;
  border: 1.5px solid var(--bronze);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bronze);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 500;
  flex-shrink: 0;
  transition: background 0.2s;
}

.logo:hover .logo-placeholder {
  background: rgba(176,141,106,0.15);
}

.logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--cream);
  letter-spacing: 0.04em;
  line-height: 1.1;
}

.logo-text span {
  display: block;
  font-size: 0.65rem;
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  letter-spacing: 0.18em;
  color: var(--bronze);
  text-transform: uppercase;
}

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

.nav-links a {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245,240,234,0.75);
  padding: 0.4rem 0.75rem;
  border-radius: 4px;
  transition: color 0.2s, background 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--cream);
  background: rgba(255,255,255,0.07);
}

.nav-cta {
  background: var(--emerald) !important;
  color: white !important;
  padding: 0.5rem 1.1rem !important;
  border-radius: 4px !important;
}

.nav-cta:hover {
  background: var(--emerald-dark) !important;
}

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

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

.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── FOOTER ───────────────────────────────────────────────── */

.site-footer {
  background: var(--navy);
  color: var(--cream);
  padding: 3rem 2rem 2rem;
  border-top: 1px solid rgba(176,141,106,0.25);
}

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

.footer-brand .logo-text { color: var(--cream); }
.footer-tagline {
  margin-top: 0.5rem;
  font-size: 0.85rem;
  color: rgba(245,240,234,0.55);
  line-height: 1.5;
  max-width: 280px;
}

.footer-cta-block {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.75rem;
}

.footer-cta-label {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--bronze);
}

.footer-book-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--emerald);
  color: white;
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  transition: background 0.2s, transform 0.2s;
}

.footer-book-btn:hover {
  background: var(--emerald-dark);
  transform: translateY(-1px);
}

.footer-book-btn svg {
  width: 16px; height: 16px;
  fill: none;
  stroke: white;
  stroke-width: 2;
}

.footer-bottom {
  max-width: 1160px;
  margin: 2rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(245,240,234,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 0.75rem;
  color: rgba(245,240,234,0.4);
}

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

.footer-nav-links a {
  font-size: 0.75rem;
  color: rgba(245,240,234,0.4);
  transition: color 0.2s;
}

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

/* ── MAIN CONTENT OFFSET ──────────────────────────────────── */

main { padding-top: 72px; }

/* ── BUTTONS ──────────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.85rem 2rem;
  border-radius: 4px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
  text-decoration: none;
}

.btn-emerald {
  background: var(--emerald);
  color: white;
}

.btn-emerald:hover {
  background: var(--emerald-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(46,139,111,0.35);
}

.btn-outline-cream {
  background: transparent;
  color: var(--cream);
  border: 1.5px solid rgba(245,240,234,0.5);
}

.btn-outline-cream:hover {
  border-color: var(--cream);
  background: rgba(245,240,234,0.08);
}

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

.btn-outline-navy:hover {
  background: var(--navy);
  color: var(--cream);
}

/* ── HERO SECTIONS ────────────────────────────────────────── */

.hero {
  background: var(--navy);
  color: var(--cream);
  padding: 5rem 2rem 4.5rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(42,127,127,0.12) 0%, transparent 65%),
              radial-gradient(ellipse at 20% 80%, rgba(176,141,106,0.08) 0%, transparent 55%);
  pointer-events: none;
}

.hero-inner {
  max-width: 860px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 1.25rem;
}

.hero h1 {
  color: var(--cream);
  margin-bottom: 1.25rem;
}

.hero-sub {
  font-size: 1.1rem;
  color: rgba(245,240,234,0.75);
  max-width: 560px;
  margin-bottom: 2.5rem;
  line-height: 1.75;
}

/* ── SECTION CONTAINERS ───────────────────────────────────── */

.section {
  padding: 5rem 2rem;
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-inner-narrow {
  max-width: 720px;
  margin: 0 auto;
}

.section-heading {
  margin-bottom: 0.75rem;
}

.section-subheading {
  font-size: 1rem;
  color: rgba(28,43,58,0.65);
  margin-bottom: 3rem;
  max-width: 560px;
}

/* background variants */
.bg-cream     { background: var(--cream); }
.bg-offwhite  { background: var(--offwhite); }
.bg-navy      { background: var(--navy); color: var(--cream); }
.bg-emerald   { background: var(--emerald); color: var(--cream); }
.bg-teal      { background: var(--teal); color: var(--cream); }

/* ── CARDS / GRID ─────────────────────────────────────────── */

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

.card {
  background: white;
  border-radius: 8px;
  padding: 2rem;
  border: 1px solid rgba(28,43,58,0.08);
  transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(28,43,58,0.1);
}

.card-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1.25rem;
  color: var(--teal);
}

.card h3 { margin-bottom: 0.6rem; }
.card p { font-size: 0.95rem; color: rgba(28,43,58,0.7); }

/* ── TESTIMONIALS ─────────────────────────────────────────── */

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

.testimonial-card {
  background: white;
  border-radius: 8px;
  padding: 2rem;
  border: 1px solid rgba(28,43,58,0.08);
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  color: var(--bronze);
  opacity: 0.4;
  position: absolute;
  top: 0.5rem;
  left: 1.25rem;
  line-height: 1;
}

.testimonial-card p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: rgba(28,43,58,0.8);
  margin-top: 1rem;
}

.testimonial-card .attribution {
  margin-top: 1.25rem;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--bronze);
  text-transform: uppercase;
}

/* ── CREDENTIALS STRIP ────────────────────────────────────── */

.credentials-strip {
  background: var(--offwhite);
  padding: 2.5rem 2rem;
}

.credentials-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 3rem;
  align-items: center;
  justify-content: center;
}

.credential-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy-mid);
}

.credential-dot {
  width: 6px; height: 6px;
  background: var(--bronze);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── FOCUS AREAS ──────────────────────────────────────────── */

.focus-area {
  padding: 4rem 2rem;
}

.focus-area-inner {
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  align-items: start;
}

.focus-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  font-weight: 300;
  color: var(--bronze);
  opacity: 0.5;
  line-height: 1;
}

.focus-content h3 { margin-bottom: 0.75rem; }
.focus-content p { color: rgba(28,43,58,0.7); }

/* ── COACHING STYLE LIST ──────────────────────────────────── */

.style-list {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  margin-top: 3rem;
}

.style-item {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 2rem;
  align-items: start;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(28,43,58,0.08);
}

.style-item:last-child { border-bottom: none; padding-bottom: 0; }

.style-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--teal);
  padding-top: 0.2rem;
  line-height: 1.3;
}

/* ── PACKAGES (WORK WITH ME) ──────────────────────────────── */

.package-section {
  padding: 5rem 2rem;
}

.package-inner {
  max-width: 840px;
  margin: 0 auto;
}

.package-card {
  border-radius: 12px;
  padding: 3rem;
  margin-bottom: 1.5rem;
}

.package-card.bg-cream   { border: 1px solid rgba(28,43,58,0.1); }
.package-card.bg-offwhite { border: 1px solid rgba(28,43,58,0.08); }

.package-label {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 0.5rem;
}

.package-card.bg-emerald .package-label { color: rgba(245,240,234,0.7); }
.package-card.bg-navy .package-label { color: var(--bronze); }

.package-card h3 { margin-bottom: 0.3rem; }

.package-meta {
  font-size: 0.85rem;
  color: rgba(28,43,58,0.55);
  margin-bottom: 1.25rem;
  letter-spacing: 0.05em;
}

.package-card.bg-emerald .package-meta,
.package-card.bg-navy .package-meta { color: rgba(245,240,234,0.65); }

.package-card p { margin-bottom: 1.25rem; }

.package-includes {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.package-includes li {
  font-size: 0.9rem;
  padding-left: 1.25rem;
  position: relative;
  color: rgba(28,43,58,0.75);
}

.package-card.bg-emerald .package-includes li,
.package-card.bg-navy .package-includes li { color: rgba(245,240,234,0.8); }

.package-includes li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--bronze);
}

.popular-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(245,240,234,0.15);
  border: 1px solid rgba(245,240,234,0.3);
  color: var(--cream);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: 2rem;
  margin-left: 0.75rem;
  vertical-align: middle;
}

/* ── FAQ ACCORDION ────────────────────────────────────────── */

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 2rem;
}

.faq-item {
  border-bottom: 1px solid rgba(28,43,58,0.1);
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 1.5rem 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: color 0.2s;
}

.faq-question:hover { color: var(--teal); }

.faq-icon {
  width: 20px; height: 20px;
  flex-shrink: 0;
  color: var(--bronze);
  transition: transform 0.3s;
}

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

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

.faq-answer-inner {
  padding-bottom: 1.5rem;
  font-size: 0.95rem;
  color: rgba(28,43,58,0.7);
  line-height: 1.8;
}

.faq-item.open .faq-answer { max-height: 300px; }

/* ── DISCOVERY FORM ───────────────────────────────────────── */

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

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

.form-group.full { grid-column: 1 / -1; }

.form-group label {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy-mid);
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 0.8rem 1rem;
  border: 1.5px solid rgba(28,43,58,0.15);
  border-radius: 4px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--navy);
  background: white;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(42,127,127,0.12);
}

.form-group textarea { resize: vertical; min-height: 110px; }

.checkbox-group,
.radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.25rem;
}

.checkbox-group label,
.radio-group label {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.88rem;
  font-weight: 300;
  letter-spacing: 0;
  text-transform: none;
  cursor: pointer;
  color: var(--navy);
}

.form-note {
  font-size: 0.8rem;
  color: rgba(28,43,58,0.5);
  margin-top: 0.75rem;
  line-height: 1.5;
}

/* ── IMAGE PLACEHOLDER ────────────────────────────────────── */

.img-placeholder {
  background: rgba(28,43,58,0.07);
  border: 2px dashed rgba(28,43,58,0.15);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: rgba(28,43,58,0.35);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.img-placeholder svg {
  width: 32px; height: 32px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
}

/* ── ABOUT LAYOUT ─────────────────────────────────────────── */

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.7fr;
  gap: 4rem;
  align-items: start;
}

/* ── CTA SECTION ──────────────────────────────────────────── */

.cta-section {
  text-align: center;
  padding: 5rem 2rem;
}

.cta-section h2 { margin-bottom: 1rem; }
.cta-section p {
  max-width: 480px;
  margin: 0 auto 2rem;
  font-size: 1rem;
  color: rgba(245,240,234,0.75);
}

/* ── BOOKING PAGE ─────────────────────────────────────────── */

.calendly-embed-wrapper {
  min-height: 700px;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(28,43,58,0.08);
}

/* ── PAYMENT PAGE ─────────────────────────────────────────── */

.payment-card {
  background: white;
  border-radius: 12px;
  padding: 3rem;
  border: 1px solid rgba(28,43,58,0.08);
  max-width: 560px;
  margin: 0 auto;
  box-shadow: 0 8px 32px rgba(28,43,58,0.07);
}

.payment-card h3 { margin-bottom: 0.5rem; }
.payment-card p { font-size: 0.95rem; color: rgba(28,43,58,0.65); margin-bottom: 2rem; }

.paypal-placeholder {
  background: var(--offwhite);
  border: 2px dashed rgba(28,43,58,0.15);
  border-radius: 8px;
  padding: 2.5rem;
  text-align: center;
  color: rgba(28,43,58,0.45);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.paypal-placeholder svg {
  width: 40px; height: 40px;
  margin: 0 auto 0.75rem;
  fill: rgba(28,43,58,0.25);
}

/* ── DIVIDER ──────────────────────────────────────────────── */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(176,141,106,0.35), transparent);
  max-width: 320px;
  margin: 0 auto;
}

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

.fade-up { animation: fadeUp 0.65s ease forwards; }
.fade-up-1 { animation-delay: 0.1s; opacity: 0; }
.fade-up-2 { animation-delay: 0.22s; opacity: 0; }
.fade-up-3 { animation-delay: 0.34s; opacity: 0; }

/* ── RESPONSIVE ───────────────────────────────────────────── */

@media (max-width: 900px) {
  .three-col,
  .testimonials-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .style-item { grid-template-columns: 1fr; gap: 0.5rem; }
  .focus-area-inner { grid-template-columns: 1fr; gap: 1rem; }
  .focus-number { font-size: 2.5rem; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-cta-block { align-items: flex-start; }
}

@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0; background: var(--navy); border-bottom: 1px solid rgba(176,141,106,0.2); padding: 1rem; gap: 0.25rem; }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .form-grid { grid-template-columns: 1fr; }
  .form-group.full { grid-column: 1; }
  .package-card { padding: 2rem 1.5rem; }
  .section { padding: 3.5rem 1.25rem; }
  .hero { padding: 3.5rem 1.25rem 3rem; }
}

@media (max-width: 480px) {
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .payment-card { padding: 2rem 1.25rem; }
}
