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

:root {
  --teal: #2D6B5E;
  --teal-dark: #1A3D35;
  --teal-light: #E1F5EE;
  --gold: #B08A2E;
  --gold-light: #F4EFE7;
  --cream: #FAF8F4;
  --text: #1A1A1A;
  --text-muted: #6B6560;
  --border: #E2DAD0;
  --white: #FFFFFF;
}

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

html { scroll-behavior: smooth; }

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

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  line-height: 1.25;
}

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

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

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

/* NAV */
nav {
  background: var(--teal);
  padding: 0 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 64px;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  color: var(--gold-light);
  font-size: 18px;
  letter-spacing: 0.5px;
}

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

.nav-links a {
  color: #9ECEC4;
  font-size: 13px;
  letter-spacing: 0.5px;
  transition: color 0.2s;
}

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

.nav-cta {
  background: var(--gold);
  color: var(--gold-light);
  padding: 8px 20px;
  font-size: 12px;
  letter-spacing: 1.5px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s;
}

.nav-cta:hover { opacity: 0.9; }

/* HERO */
.hero {
  display: grid;
  grid-template-columns: 1fr 420px;
  min-height: 580px;
}

.hero-content {
  background: var(--teal);
  padding: 72px 64px 72px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 20px;
  font-weight: 500;
}

.hero-h1 {
  font-size: 42px;
  color: var(--gold-light);
  margin-bottom: 24px;
  line-height: 1.2;
}

.hero-sub {
  font-size: 16px;
  color: #9ECEC4;
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 480px;
}

.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--gold-light);
  padding: 14px 32px;
  font-size: 12px;
  letter-spacing: 2px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s;
  font-family: 'DM Sans', sans-serif;
  align-self: flex-start;
}

.btn-primary:hover { opacity: 0.9; }

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--teal);
  padding: 14px 32px;
  font-size: 12px;
  letter-spacing: 2px;
  font-weight: 500;
  border: 1.5px solid var(--teal);
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'DM Sans', sans-serif;
}

.btn-secondary:hover {
  background: var(--teal);
  color: var(--gold-light);
}

.hero-note {
  font-size: 11px;
  color: #5DCAA5;
  margin-top: 12px;
  letter-spacing: 0.5px;
}

.hero-image {
  background: var(--teal-dark);
  overflow: hidden;
  position: relative;
}

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

/* STATS BAR */
.stats-bar {
  background: var(--gold-light);
  border-bottom: 2px solid var(--gold);
  display: flex;
}

.stat-item {
  flex: 1;
  padding: 20px 16px;
  text-align: center;
  border-right: 1px solid var(--border);
}

.stat-item:last-child { border-right: none; }

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  color: var(--teal);
  display: block;
}

.stat-label {
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--text-muted);
  margin-top: 4px;
}

/* SECTIONS */
.section { padding: 80px 0; }

.section-alt { background: var(--cream); }

.section-dark {
  background: var(--teal);
  color: var(--gold-light);
}

.section-eyebrow {
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 16px;
  font-weight: 500;
}

.section-dark .section-eyebrow { color: #9ECEC4; }

.section-h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: var(--text);
}

.section-dark .section-h2 { color: var(--gold-light); }

.section-body {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 20px;
}

.section-dark .section-body { color: #9ECEC4; }

/* PROBLEM GRID */
.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}

.problem-item {
  background: var(--white);
  padding: 20px 24px;
  border-left: 3px solid var(--teal);
}

.problem-item p {
  font-size: 15px;
  color: var(--text);
  line-height: 1.6;
}

/* GUIDE SECTION */
.guide-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 64px;
  align-items: start;
}

.guide-photo {
  position: relative;
}

.guide-photo img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center top;
}

.guide-photo::after {
  content: '';
  position: absolute;
  bottom: -12px;
  right: -12px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--gold);
  z-index: -1;
}

.stats-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0;
}

.stat-pill {
  background: var(--teal);
  color: var(--gold-light);
  padding: 6px 16px;
  font-size: 12px;
  letter-spacing: 0.5px;
}

/* PROGRAMS */
.programs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
}

.program-card {
  border: 1px solid var(--border);
  padding: 32px;
  background: var(--white);
  position: relative;
}

.program-card.featured {
  border: 2px solid var(--teal);
}

.program-badge {
  font-size: 9px;
  letter-spacing: 2px;
  color: var(--teal);
  background: var(--teal-light);
  padding: 4px 10px;
  display: inline-block;
  margin-bottom: 16px;
}

.program-name {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: var(--text);
  margin-bottom: 6px;
}

.program-duration {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.program-price {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  color: var(--teal);
  margin-bottom: 20px;
}

.program-features {
  list-style: none;
  margin-bottom: 28px;
}

.program-features li {
  font-size: 14px;
  color: var(--text-muted);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.program-features li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  margin-top: 7px;
  flex-shrink: 0;
}

/* TESTIMONIALS */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  margin-top: 40px;
}

.testimonial-card {
  background: var(--white);
  padding: 28px;
  border-top: 3px solid var(--teal);
}

.testimonial-quote {
  font-size: 14px;
  color: var(--text);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 16px;
}

.testimonial-name {
  font-size: 11px;
  letter-spacing: 1.5px;
  color: var(--gold);
  font-weight: 500;
}

/* AS SEEN IN */
.as-seen-in {
  background: var(--gold-light);
  padding: 32px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.as-seen-label {
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 20px;
}

.logos-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.logo-item {
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 1px;
  font-weight: 500;
  opacity: 0.7;
}

/* CTA SECTION */
.cta-section {
  background: var(--teal-dark);
  padding: 80px 0;
  text-align: center;
}

.cta-section h2 {
  font-size: 40px;
  color: var(--gold-light);
  margin-bottom: 16px;
}

.cta-section p {
  font-size: 16px;
  color: #9ECEC4;
  margin-bottom: 36px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}

/* FOOTER */
footer {
  background: var(--teal-dark);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  color: #9ECEC4;
  font-size: 15px;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  color: #5DCAA5;
  font-size: 12px;
  letter-spacing: 0.5px;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--gold-light); }

.footer-copy {
  font-size: 11px;
  color: #5DCAA5;
  opacity: 0.6;
}

/* PAGE HERO (inner pages) */
.page-hero {
  background: var(--teal);
  padding: 72px 32px;
  text-align: center;
}

.page-hero h1 {
  font-size: 48px;
  color: var(--gold-light);
  margin-bottom: 16px;
}

.page-hero p {
  font-size: 18px;
  color: #9ECEC4;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ABOUT PAGE */
.about-grid {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 72px;
  align-items: start;
}

.about-photo {
  position: sticky;
  top: 80px;
}

.about-photo img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: center top;
}

.about-photo-caption {
  background: var(--gold);
  padding: 16px 20px;
}

.about-photo-caption p {
  font-size: 12px;
  color: var(--gold-light);
  letter-spacing: 0.5px;
  line-height: 1.6;
}

.about-content h3 {
  font-size: 26px;
  color: var(--text);
  margin: 32px 0 16px;
}

.about-content h3:first-child { margin-top: 0; }

.about-content p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 16px;
}

.about-content strong {
  color: var(--text);
  font-weight: 500;
}

.values-list {
  list-style: none;
  margin: 16px 0;
}

.values-list li {
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
  color: var(--text-muted);
  display: flex;
  gap: 12px;
}

.values-list li::before {
  content: '';
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
  margin-top: 10px;
  flex-shrink: 0;
}

/* MEDIA PAGE */
.media-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 32px;
}

.media-card {
  border: 1px solid var(--border);
  padding: 24px;
  background: var(--white);
}

.media-show {
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 8px;
  font-weight: 500;
}

.media-title {
  font-size: 15px;
  color: var(--text);
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 6px;
}

.media-date {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.media-link {
  font-size: 12px;
  color: var(--teal);
  letter-spacing: 0.5px;
  font-weight: 500;
  border-bottom: 1px solid var(--teal);
  padding-bottom: 2px;
}

.speaking-item {
  display: flex;
  gap: 24px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}

.speaking-date {
  font-size: 11px;
  color: var(--gold);
  min-width: 80px;
  letter-spacing: 0.5px;
  padding-top: 3px;
  font-weight: 500;
}

.speaking-info h3 {
  font-size: 16px;
  color: var(--text);
  margin-bottom: 4px;
}

.speaking-info p {
  font-size: 13px;
  color: var(--text-muted);
}

.upcoming-tag {
  font-size: 9px;
  background: var(--teal-light);
  color: var(--teal);
  padding: 2px 8px;
  letter-spacing: 1px;
  margin-left: 8px;
  font-weight: 500;
}

/* CASE STUDIES */
.case-study {
  background: var(--white);
  border: 1px solid var(--border);
  margin-bottom: 24px;
  overflow: hidden;
}

.case-study-header {
  background: var(--teal);
  padding: 24px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.case-study-header h3 {
  font-size: 20px;
  color: var(--gold-light);
}

.case-result {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  color: var(--gold);
}

.case-study-body {
  padding: 32px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
}

.case-section h4 {
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 12px;
  font-weight: 500;
}

.case-section p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* FRACTIONAL SERVICES */
.services-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.services-list {
  list-style: none;
  margin-top: 24px;
}

.services-list li {
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.service-num {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  color: var(--teal);
  opacity: 0.3;
  min-width: 32px;
  line-height: 1;
}

.service-content h4 {
  font-size: 16px;
  color: var(--text);
  margin-bottom: 4px;
}

.service-content p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* BLOG */
.blog-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
}

.blog-card {
  border: 1px solid var(--border);
  background: var(--white);
}

.blog-card-header {
  background: var(--teal);
  padding: 32px 24px;
}

.blog-category {
  font-size: 10px;
  letter-spacing: 2px;
  color: #9ECEC4;
  margin-bottom: 12px;
}

.blog-card-header h3 {
  font-size: 20px;
  color: var(--gold-light);
  line-height: 1.3;
}

.blog-card-body {
  padding: 24px;
}

.blog-card-body p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.blog-read-more {
  font-size: 12px;
  color: var(--teal);
  letter-spacing: 0.5px;
  font-weight: 500;
  border-bottom: 1px solid var(--teal);
  padding-bottom: 2px;
}

/* DIAGNOSTIC BANNER */
.diagnostic-banner {
  background: var(--gold-light);
  border: 1px solid var(--gold);
  padding: 32px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 48px 0;
}

.diagnostic-banner h3 {
  font-size: 22px;
  color: var(--text);
  margin-bottom: 6px;
}

.diagnostic-banner p {
  font-size: 14px;
  color: var(--text-muted);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero { grid-template-columns: 1fr; }
  .hero-image { height: 300px; }
  .hero-content { padding: 48px 24px; }
  .hero-h1 { font-size: 32px; }
  .guide-grid { grid-template-columns: 1fr; }
  .programs-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .media-grid { grid-template-columns: 1fr; }
  .case-study-body { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .services-intro { grid-template-columns: 1fr; }
  .problem-grid { grid-template-columns: 1fr; }
  nav { padding: 0 16px; }
  .nav-links { display: none; }
  .container { padding: 0 20px; }
}
