@font-face {
  font-family: "Cormorant Garamond";
  src: url("../fonts/cormorant-garamond-400.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Cormorant Garamond";
  src: url("../fonts/cormorant-garamond-500.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Cormorant Garamond";
  src: url("../fonts/cormorant-garamond-600.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Cormorant Garamond";
  src: url("../fonts/cormorant-garamond-700.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("../fonts/inter-300.ttf") format("truetype");
  font-style: normal;
  font-weight: 300;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("../fonts/inter-400.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("../fonts/inter-500.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("../fonts/inter-600.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("../fonts/inter-700.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  --bg: #fffef8;
  --surface: #ffffff;
  --surface-soft: #faf6e8;
  --ink: #2a3518;
  --ink-soft: #5a6b48;
  --olive: #6b8e23;
  --olive-light: #8fbc3f;
  --olive-deep: #3d5a1c;
  --gold: #e6b800;
  --gold-bright: #ffd700;
  --gold-soft: #ffe066;
  --gold-deep: #cc9900;
  --line: rgba(107, 142, 35, 0.18);
  --shadow: 0 22px 60px rgba(61, 90, 28, 0.14);
  --shadow-gold: 0 18px 40px rgba(230, 184, 0, 0.2);
  --radius: 10px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Inter", sans-serif;
  line-height: 1.7;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

h1,
h2,
h3,
p,
li,
a,
button,
small,
strong,
span {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  line-height: 1;
}

p {
  margin: 0;
}

.site-header,
.hero,
.section,
.site-footer {
  padding-left: clamp(20px, 5vw, 72px);
  padding-right: clamp(20px, 5vw, 72px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 82px;
  border-bottom: 1px solid transparent;
  background: rgba(255, 253, 246, 0.9);
  backdrop-filter: blur(18px);
  transition: box-shadow 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 12px 30px rgba(53, 62, 35, 0.08);
}

.brand {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 280px;
}

.brand-logo {
  width: 80px;
  height: 80px;
  object-fit: contain;
  flex: 0 0 auto;
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.15));
}

.footer-logo {
  width: 100px;
  height: 100px;
  object-fit: contain;
  flex: 0 0 auto;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.brand-copy strong,
.brand-copy small {
  display: block;
}

.brand-copy strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.85rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.08em;
  color: var(--olive-deep);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.brand-copy small {
  color: var(--olive);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 3px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 32px);
  font-size: 0.92rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.site-nav a {
  color: var(--ink-soft);
}

.site-nav a:hover {
  color: var(--olive);
}

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 24px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 0.98rem;
  font-weight: 700;
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(135deg, var(--olive) 0%, var(--olive-deep) 100%);
  color: #ffffff;
  box-shadow: 0 18px 36px rgba(107, 142, 35, 0.28);
}

.button-primary:hover {
  background: linear-gradient(135deg, var(--olive-light) 0%, var(--olive) 100%);
  box-shadow: 0 22px 44px rgba(107, 142, 35, 0.35);
}

.button-secondary {
  border-color: var(--olive);
  border-width: 2px;
  color: var(--olive);
  background: rgba(255, 255, 255, 0.9);
}

.button-secondary:hover {
  background: var(--olive);
  color: #ffffff;
}

.button-gold {
  background: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold) 100%);
  color: var(--olive-deep);
  box-shadow: var(--shadow-gold);
  font-weight: 800;
}

.button-gold:hover {
  background: linear-gradient(135deg, var(--gold-soft) 0%, var(--gold-bright) 100%);
  box-shadow: 0 22px 50px rgba(230, 184, 0, 0.35);
}

.desktop-cta {
  white-space: nowrap;
}

.eyebrow {
  color: var(--gold-deep);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  margin-bottom: 18px;
  text-shadow: 0 1px 2px rgba(230, 184, 0, 0.15);
}

.eyebrow-light {
  color: rgba(244, 236, 208, 0.92);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, 500px);
  gap: clamp(42px, 7vw, 88px);
  align-items: center;
  max-width: calc(var(--max-width) + 144px);
  min-height: calc(100vh - 82px);
  margin: 0 auto;
  padding-top: clamp(40px, 6vw, 76px);
  padding-bottom: clamp(76px, 8vw, 112px);
  background:
    radial-gradient(circle at 8% 16%, rgba(255, 215, 0, 0.12), transparent 28%),
    radial-gradient(circle at 88% 24%, rgba(107, 142, 35, 0.1), transparent 26%),
    radial-gradient(circle at 50% 80%, rgba(230, 184, 0, 0.08), transparent 35%),
    linear-gradient(180deg, rgba(255, 254, 248, 0.98), rgba(255, 250, 230, 0.9));
}

.hero-copy h1 {
  max-width: 720px;
  font-size: clamp(3.2rem, 6.8vw, 6.8rem);
  color: var(--olive);
  line-height: 0.94;
}

.hero-text {
  max-width: 640px;
  margin-top: 26px;
  color: var(--ink-soft);
  font-size: clamp(1.08rem, 1.45vw, 1.28rem);
}

.hero-quote {
  max-width: 520px;
  margin-top: 32px;
  padding: 28px;
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 250, 230, 0.9) 100%);
  box-shadow: var(--shadow-gold);
}

.hero-quote p {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 3vw, 3rem);
  color: var(--olive);
  line-height: 1.06;
}

.hero-quote span {
  display: block;
  margin-top: 12px;
  color: var(--gold-deep);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.75rem;
  font-style: italic;
  font-weight: 600;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-card {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 640px;
  overflow: hidden;
  border: 4px solid var(--gold-bright);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 62% 18%, rgba(255, 254, 248, 0.95), transparent 40%),
    radial-gradient(circle at 24% 32%, rgba(255, 215, 0, 0.12), transparent 35%),
    linear-gradient(145deg, var(--bg) 0%, #faf6e8 50%, #f5ead5 100%);
  box-shadow: var(--shadow-gold);
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 18% 20%, rgba(212, 175, 55, 0.1), transparent 25%),
    radial-gradient(circle at 82% 16%, rgba(85, 107, 47, 0.08), transparent 28%);
}

.hero-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  height: 138px;
  background:
    radial-gradient(circle at 18% 10%, rgba(212, 175, 55, 0.12), transparent 18%),
    linear-gradient(180deg, rgba(85, 107, 47, 0), rgba(85, 107, 47, 0.12) 54%, rgba(85, 107, 47, 0.24));
}

.hero-cutout {
  position: absolute;
  right: 18px;
  top: 5px;
  z-index: 1;
  width: auto;
  max-width: min(68%, 318px);
  height: calc(100% - 90px);
  filter: drop-shadow(0 30px 44px rgba(47, 59, 31, 0.22));
}

.hero-badge {
  position: absolute;
  left: 26px;
  bottom: 15px;
  z-index: 2;
  width: 580px;
  max-width: calc(100% - 52px);
  padding: 20px 28px;
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 250, 230, 0.95) 100%);
  box-shadow: var(--shadow-gold);
}

.hero-badge h2 {
  font-size: 1.5rem;
  color: var(--olive);
  line-height: 1.2;
}

.hero-badge p {
  margin-top: 6px;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.section {
  padding-top: clamp(50px, 6vw, 80px);
  padding-bottom: clamp(50px, 6vw, 80px);
}

.section-soft {
  background: var(--surface-soft);
}

.values,
.discovery {
  background: linear-gradient(135deg, var(--olive) 0%, var(--olive-deep) 100%);
  color: #ffffff;
}

.values {
  padding: clamp(50px, 5vw, 70px) clamp(20px, 5vw, 72px);
}

.section-intro {
  max-width: 800px;
  margin: 0 auto 40px;
}

.section-intro.center {
  text-align: center;
}

.section-intro h2,
.about-copy h2,
.site-footer h2 {
  font-size: clamp(2.7rem, 5.2vw, 5rem);
  line-height: 0.96;
}

.section-intro p:last-child,
.about-copy p,
.site-footer p {
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.values .section-intro p:last-child,
.values .section-intro h2,
.discovery .section-intro h2,
.discovery .section-intro p:last-child {
  color: #ffffff;
}

/* ========================================
   Women's Journey Section - Card Grid
   ======================================== */

.journey {
  background: linear-gradient(180deg, var(--bg) 0%, rgba(255, 250, 230, 0.5) 50%, var(--surface-soft) 100%);
  padding-bottom: 30px;
}

.journey .section-intro h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
}

.journey-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.journey-card {
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.journey-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 80px rgba(53, 62, 35, 0.18);
}

.journey-card-image {
  width: 100%;
  height: 420px;
  overflow: hidden;
  background: var(--surface-soft);
}

.journey-card-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: var(--surface-soft);
}

.journey-card-content {
  padding: 24px;
}

.journey-card-content .stage-number {
  display: inline-block;
  width: auto;
  height: auto;
  padding: 5px 14px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold) 100%);
  color: var(--olive-deep);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 12px;
}

.journey-card-content h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--olive-deep);
  margin: 0 0 4px 0;
}

.stage-age {
  font-size: 0.75rem;
  color: var(--gold-deep);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 12px 0;
}

.stage-challenge {
  font-size: 0.95rem;
  color: var(--ink);
  margin: 0 0 12px 0;
  line-height: 1.5;
}

.stage-challenge strong {
  color: var(--olive-deep);
  font-style: italic;
}

.stage-struggles {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}

.stage-struggles li {
  font-size: 0.8rem;
  color: var(--ink-soft);
  padding-left: 16px;
  position: relative;
  line-height: 1.4;
}

.stage-struggles li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: bold;
}

.coaching-focus {
  margin-top: 16px;
  padding: 12px 16px;
  background: linear-gradient(135deg, rgba(230, 184, 0, 0.1) 0%, rgba(107, 142, 35, 0.1) 100%);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 0.9rem;
  font-style: italic;
  color: var(--olive-deep);
}

/* Universal Truth Banner */
.journey-universal {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 30px;
  max-width: var(--max-width);
  margin: 40px auto 0;
  padding: 0 20px;
  align-items: center;
}

.universal-image {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.universal-content {
  background: linear-gradient(135deg, var(--olive-light) 0%, var(--olive) 50%, var(--olive-deep) 100%);
  padding: 40px;
  border-radius: var(--radius);
  color: #ffffff;
  border: 2px solid var(--gold);
}

.universal-content .stage-number {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold) 100%);
  color: var(--olive-deep);
  padding: 10px 20px;
  border-radius: 20px;
  font-size: 1.5rem;
  margin-bottom: 16px;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.universal-content h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
  color: var(--gold-bright);
  margin: 0 0 4px 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.universal-content .stage-age {
  color: var(--gold-soft);
  margin-bottom: 20px;
}

.universal-message {
  font-size: 1.25rem;
  font-style: italic;
  margin-bottom: 16px;
}

.universal-message strong {
  color: var(--gold);
}

.universal-content p {
  line-height: 1.6;
  margin-bottom: 16px;
}

.universal-content em {
  color: var(--gold-soft);
  font-style: normal;
  font-weight: 500;
}

.universal-truths {
  list-style: none;
  padding: 0;
  margin: 0;
}

.universal-truths li {
  padding: 8px 0 8px 24px;
  position: relative;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.universal-truths li:last-child {
  border-bottom: none;
}

.universal-truths li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--gold);
}

/* ========================================
   Why Coaching Section
   ======================================== */

.why-coaching {
  padding: 50px 20px;
}

.why-coaching-container {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 40px;
  max-width: var(--max-width);
  margin: 0 auto;
  align-items: center;
}

.why-coaching-visual img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.why-coaching-content .eyebrow {
  margin-bottom: 8px;
}

.why-coaching-content h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: var(--olive-deep);
  margin: 0 0 16px 0;
}

.why-coaching-content .lead {
  font-size: 1.1rem;
  color: var(--ink);
  line-height: 1.7;
  margin-bottom: 32px;
}

.coaching-benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.benefit-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.benefit-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--surface);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(85, 107, 47, 0.1);
}

.benefit-text h4 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--olive-deep);
  margin: 0 0 4px 0;
}

.benefit-text p {
  font-size: 0.85rem;
  color: var(--ink-soft);
  line-height: 1.5;
  margin: 0;
}

/* Wellness Coaching Section */
.wellness-coaching {
  max-width: 1000px;
  margin: 60px auto;
  padding: 50px;
  background: linear-gradient(135deg, rgba(107, 142, 35, 0.08) 0%, rgba(230, 184, 0, 0.08) 100%);
  border-radius: var(--radius-lg);
  border: 2px solid var(--gold-soft);
}

.wellness-content h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--olive-deep);
  text-align: center;
  margin-bottom: 12px;
}

.wellness-lead {
  text-align: center;
  font-size: 1.1rem;
  color: var(--ink-soft);
  margin-bottom: 40px;
}

.wellness-pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 30px;
}

.wellness-pillar {
  background: var(--surface);
  padding: 30px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.wellness-pillar:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-gold);
}

.pillar-icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 15px;
}

.wellness-pillar h4 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.3rem;
  color: var(--olive);
  margin-bottom: 12px;
}

.wellness-pillar p {
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.6;
  margin: 0;
}

.wellness-note {
  text-align: center;
  font-style: italic;
  color: var(--gold);
  font-weight: 500;
  font-size: 1.05rem;
  margin: 0;
  padding-top: 20px;
  border-top: 1px solid var(--gold-soft);
}

.coaching-quote {
  max-width: 800px;
  margin: 40px auto;
  text-align: center;
}

.coaching-quote blockquote {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  color: var(--olive-deep);
  font-style: italic;
  line-height: 1.6;
  margin: 0;
  padding: 40px;
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  position: relative;
}

.coaching-quote blockquote::before {
  content: """;
  font-size: 4rem;
  color: var(--gold);
  position: absolute;
  top: 10px;
  left: 20px;
  line-height: 1;
  opacity: 0.5;
}

.coaching-quote blockquote em {
  color: var(--gold);
  font-style: normal;
  font-weight: 600;
}

.why-coaching-cta {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.why-coaching-cta p {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.25rem;
  color: var(--ink);
  margin-bottom: 24px;
}

/* Mobile responsiveness for journey */
@media (max-width: 900px) {
  .journey-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .journey-universal {
    grid-template-columns: 1fr;
  }

  .why-coaching-container {
    grid-template-columns: 1fr;
  }

  .why-coaching-visual {
    order: -1;
  }

  .coaching-benefits {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .journey-grid {
    grid-template-columns: 1fr;
    padding: 0 16px;
  }

  .journey-card-image {
    height: 150px;
  }

  .stage-struggles {
    grid-template-columns: 1fr;
  }

  .universal-content {
    padding: 28px;
  }

  .coaching-quote blockquote {
    padding: 30px 20px;
  }

  .coaching-quote blockquote::before {
    font-size: 3rem;
    top: 5px;
    left: 10px;
  }
}

/* ========================================
   End Journey & Why Coaching Sections
   ======================================== */


.value-grid,
.space-grid,
.discovery-grid {
  display: grid;
  gap: 18px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.value-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.value-card,
.space-card,
.discovery-card {
  border-radius: var(--radius);
  overflow: hidden;
}

.value-card {
  min-height: 220px;
  padding: 28px;
  border: 1px solid rgba(244, 236, 208, 0.18);
  background: rgba(255, 255, 255, 0.08);
}

.value-icon {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 10px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.25) 0%, rgba(230, 184, 0, 0.15) 100%);
  color: var(--gold-bright);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 215, 0, 0.3);
}

.value-card p {
  margin-top: 20px;
  color: rgba(244, 236, 208, 0.92);
}

.space-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.space-card {
  border: 1px solid rgba(212, 175, 55, 0.22);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.space-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.space-card-copy {
  padding: 28px;
}

.space-card-copy h3,
.discovery-card h3 {
  font-size: 2.5rem;
  color: var(--olive);
  line-height: 1.02;
}

.space-card-copy p {
  margin-top: 18px;
  color: var(--ink-soft);
}

.space-card-copy ul,
.check-list {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.space-card-copy li,
.check-list li {
  position: relative;
  padding-left: 18px;
  color: var(--ink);
  margin-top: 10px;
}

.space-card-copy li::before,
.check-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--gold);
}

.about {
  display: grid;
  grid-template-columns: minmax(260px, 380px) minmax(0, 1fr);
  gap: clamp(30px, 4vw, 50px);
  align-items: start;
  max-width: var(--max-width);
  margin: 0 auto;
}

.about-media img {
  display: block;
  width: auto;
  max-width: min(92%, 320px);
  max-height: calc(100% - 14px);
  height: calc(100% - 14px);
  margin: 0 auto;
  filter: drop-shadow(0 20px 30px rgba(47, 59, 31, 0.16));
}

.about-media {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 480px;
  overflow: hidden;
  border: 3px solid var(--gold-bright);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 56% 16%, rgba(255, 254, 248, 0.95), transparent 40%),
    radial-gradient(circle at 26% 26%, rgba(255, 215, 0, 0.1), transparent 35%),
    linear-gradient(160deg, var(--surface-soft) 0%, #faf6e8 50%, #f5ead5 100%);
  box-shadow: var(--shadow-gold);
  position: sticky;
  top: 100px;
}

.about-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(212, 175, 55, 0.1), transparent 25%),
    radial-gradient(circle at 76% 24%, rgba(85, 107, 47, 0.08), transparent 28%);
}

.about-cutout {
  position: absolute;
  left: 50%;
  bottom: 0;
  z-index: 1;
  transform: translateX(-50%);
}

.about-copy .lead {
  margin: 16px 0;
  color: var(--olive);
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.6;
}

.about-copy p + p {
  margin-top: 12px;
}

.about-copy .button {
  margin-top: 20px;
}

/* Specializations */
.about-specializations {
  margin-top: 16px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.8);
}

.about-specializations h4 {
  margin: 0 0 10px;
  color: var(--olive);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.15rem;
  font-weight: 700;
}

.spec-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.spec-tags span {
  display: inline-block;
  padding: 6px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface-soft);
  color: var(--ink);
  font-size: 0.8rem;
  font-weight: 500;
  transition: background 180ms ease, border-color 180ms ease;
}

.spec-tags span:hover {
  background: var(--olive);
  border-color: var(--olive);
  color: #ffffff;
}

/* ICF Credential Inline in About Section */
.icf-credential-inline {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 14px 0 16px;
  padding: 12px 16px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 250, 230, 0.9) 100%);
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  box-shadow: var(--shadow-gold);
}

.icf-inline-logo {
  width: 65px;
  height: auto;
  flex-shrink: 0;
  border-radius: 4px;
}

.credential-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

/* Coach Mission Statement */
.coach-mission {
  margin: 16px 0;
  padding: 24px 28px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--surface-soft) 0%, #fff 100%);
  border-left: 4px solid var(--gold);
  box-shadow: 0 4px 20px rgba(107, 142, 35, 0.1);
}

.mission-statement {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.25rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--ink);
  margin: 0;
}

.mission-statement em {
  color: var(--olive-deep);
  font-style: normal;
  font-weight: 600;
}

/* Coach Presence Grid */
.coach-presence {
  margin: 20px 0;
  padding: 20px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.coach-presence h4 {
  margin: 0 0 14px;
  color: var(--olive-deep);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
}

.presence-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.presence-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.presence-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
}

.presence-text strong {
  display: block;
  color: var(--olive-deep);
  font-size: 0.9rem;
  margin-bottom: 2px;
}

.presence-text p {
  font-size: 0.82rem;
  color: var(--ink-soft);
  line-height: 1.4;
  margin: 0;
}

/* Coach Goal Statement */
.coach-goal {
  margin: 20px 0;
  padding: 20px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.15) 0%, rgba(230, 184, 0, 0.08) 100%);
  border: 2px solid var(--gold);
  box-shadow: var(--shadow-gold);
}

.coach-goal h4 {
  margin: 0 0 10px;
  color: var(--gold-deep);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.2rem;
  font-weight: 700;
}

.goal-statement {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink);
  margin: 0;
}

.goal-statement strong {
  color: var(--olive-deep);
}

.goal-statement em {
  color: var(--gold-deep);
  font-style: italic;
  font-weight: 600;
}

/* About CTA */
.about-cta {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  text-align: center;
}

.about-cta .cta-text {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.15rem;
  color: var(--olive);
  margin-bottom: 12px;
}

.about-cta .button {
  margin-top: 0;
}

/* Mobile adjustments for about section */
@media (max-width: 900px) {
  .presence-grid {
    grid-template-columns: 1fr;
  }

  .icf-badge-container {
    bottom: 12px;
    right: 12px;
  }

  .icf-official-logo {
    width: 100px;
  }
}

@media (max-width: 600px) {
  .coach-mission,
  .coach-presence,
  .coach-goal {
    padding: 20px;
  }

  .mission-statement {
    font-size: 1.15rem;
  }

  .icf-badge-container {
    position: relative;
    bottom: auto;
    right: auto;
    flex-direction: row;
    justify-content: center;
    margin-top: 16px;
  }
}

.discovery-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}

.discovery-card {
  padding: clamp(28px, 4vw, 40px);
}

.discovery-card-dark {
  border: 1px solid rgba(244, 236, 208, 0.2);
  background: rgba(255, 255, 255, 0.08);
}

.discovery-card-dark h3 {
  color: var(--gold-soft);
}

.discovery-card-dark .check-list li {
  color: rgba(255, 255, 255, 0.92);
}

.discovery-card-light {
  background: var(--surface-soft);
  color: var(--olive);
  box-shadow: var(--shadow);
}

.time-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 24px 0;
}

.time-grid button {
  min-height: 52px;
  border: 0;
  border-radius: var(--radius);
  background: var(--olive);
  color: #ffffff;
  cursor: pointer;
  font-weight: 700;
}

.site-footer {
  padding-top: 50px;
  padding-bottom: 50px;
  border-top: 1px solid var(--line);
  text-align: center;
}

.site-footer h2 {
  color: var(--olive);
}

.footer-logo {
  margin: 0 auto 20px;
}

.footer-tag {
  margin-top: 10px;
  color: var(--gold-deep) !important;
  font-size: 0.82rem !important;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.footer-copy {
  max-width: 760px;
  margin: 24px auto 0;
}

.footer-name {
  margin-top: 24px;
  color: var(--olive) !important;
  font-family: "Cormorant Garamond", serif;
  font-size: 2.2rem !important;
  font-weight: 700;
}

.footer-role {
  margin-top: 6px;
}

.footer-phone {
  display: inline-block;
  margin-top: 14px;
  color: var(--gold-deep);
  font-size: 1.6rem;
  font-weight: 700;
  white-space: nowrap;
}

.footer-meta {
  margin-top: 20px;
  font-size: 0.92rem !important;
}

@media (max-width: 1080px) {
  .hero,
  .about,
  .space-grid,
  .value-grid,
  .discovery-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-card,
  .about-media {
    min-height: auto;
    flex-direction: column;
    padding: 20px;
  }

  .hero-card img {
    position: relative;
    max-height: 300px;
  }

  .hero-badge {
    position: static;
    width: 100%;
    max-width: none;
    margin-top: 16px;
  }
}

@media (max-width: 780px) {
  .site-header {
    min-height: 74px;
  }

  .desktop-cta {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 74px;
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: var(--shadow);
  }

  body.menu-open .site-nav {
    display: flex;
  }

  .hero {
    padding-top: 34px;
    padding-bottom: 72px;
  }

  .hero-copy h1 {
    font-size: clamp(2.8rem, 14vw, 4.8rem);
  }

  .hero-text,
  .about-copy .lead,
  .section-intro p:last-child {
    font-size: 1rem;
  }

  .button-row {
    flex-direction: column;
  }

  .button-row .button,
  .button-gold {
    width: 100%;
  }

  .hero-card,
  .about-media {
    min-height: 420px;
  }

  .about-media {
    position: relative;
    top: auto;
  }

  .hero-badge {
    position: static;
    z-index: 2;
    width: 100%;
    max-width: none;
    margin-top: 16px;
    padding: 16px 20px;
  }

  .hero-badge h2 {
    font-size: 1.1rem;
    white-space: normal;
    line-height: 1.3;
  }

  .hero-cutout {
    position: relative;
    right: auto;
    top: auto;
    max-width: 100%;
    width: 100%;
    height: auto;
    max-height: 350px;
    object-fit: contain;
    transform: none;
    margin: 0 auto;
  }

  .about-media img {
    max-width: min(92%, 300px);
    max-height: calc(100% - 14px);
    height: calc(100% - 14px);
  }

  .space-card img {
    height: 240px;
  }

  .space-card-copy,
  .discovery-card {
    padding: 22px;
  }

  .space-card-copy h3,
  .discovery-card h3 {
    font-size: 2rem;
  }

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

/* Credential Badge in Hero */
.credential-badge {
  display: inline-flex;
  align-items: center;
  margin-bottom: 20px;
}

.credential-badge .icf-badge {
  width: 32px;
  height: 32px;
}

.credential-badge .icf-badge.pcc-official {
  width: auto;
  height: 90px;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.credential-badge span {
  color: var(--olive);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Trust Indicators */
.trust-indicators {
  display: flex;
  gap: 32px;
  margin-top: 28px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-item {
  display: flex;
  flex-direction: column;
}

.trust-number {
  color: var(--olive);
  font-family: "Cormorant Garamond", serif;
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(135deg, var(--olive) 0%, var(--olive-deep) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.trust-label {
  color: var(--ink-soft);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 4px;
}

/* About Section Enhancements */
.credentials-line {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 16px 0 24px;
}

/* Mobile adjustments for ICF credential inline */
@media (max-width: 600px) {
  .icf-credential-inline {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }

  .icf-inline-logo {
    width: 70px;
  }

  .credential-tags {
    justify-content: center;
  }
}

.credential-tag {
  display: inline-block;
  padding: 7px 16px;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--olive) 0%, var(--olive-deep) 100%);
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.credential-tag:first-child {
  background: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold) 100%);
  color: var(--olive-deep);
}

.about-credentials {
  margin-top: 16px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.8);
}

.about-credentials h4 {
  margin: 0 0 10px;
  color: var(--olive);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.15rem;
  font-weight: 700;
}

.credentials-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.credentials-list li {
  position: relative;
  padding-left: 20px;
  margin-top: 6px;
  color: var(--ink);
  font-size: 0.88rem;
}

.credentials-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: bold;
}

/* Approach Section */
.approach {
  background: var(--bg);
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.approach-card {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  text-align: center;
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.approach-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.approach-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.approach-card h3 {
  color: var(--olive);
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.approach-card p {
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.6;
}

.approach-promise {
  max-width: 800px;
  margin: 36px auto 0;
  text-align: center;
}

.approach-promise blockquote {
  margin: 0;
  padding: 32px 40px;
  border: 3px solid var(--gold-bright);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 250, 230, 0.5) 100%);
  color: var(--olive);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-style: italic;
  line-height: 1.4;
  box-shadow: var(--shadow-gold);
}

/* Testimonials Section */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.testimonial-content {
  flex: 1;
}

.testimonial-content p {
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.7;
  font-style: italic;
}

.testimonial-content p::before {
  content: """;
  color: var(--gold);
  font-family: "Cormorant Garamond", serif;
  font-size: 3rem;
  line-height: 0;
  vertical-align: -0.4em;
  margin-right: 4px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--olive);
  color: #ffffff;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  font-weight: 700;
}

.testimonial-info {
  display: flex;
  flex-direction: column;
}

.testimonial-info strong {
  color: var(--olive);
  font-size: 1rem;
}

.testimonial-info span {
  color: var(--ink-soft);
  font-size: 0.85rem;
}

/* Programs Section */
.programs {
  background: linear-gradient(180deg, var(--bg) 0%, var(--surface-soft) 100%);
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.program-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  overflow: hidden;
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.program-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.program-card:first-child {
  border-color: var(--gold);
  border-width: 2px;
}

.program-header {
  padding: 28px;
  background: linear-gradient(135deg, var(--olive) 0%, var(--olive-deep) 100%);
  color: #ffffff;
  text-align: center;
}

.program-label {
  display: inline-block;
  padding: 4px 12px;
  margin-bottom: 12px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--olive-deep);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.program-header h3 {
  color: #ffffff;
  font-size: 2rem;
  margin-bottom: 8px;
}

.program-duration {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  font-weight: 600;
}

.program-body {
  flex: 1;
  padding: 28px;
}

.program-description {
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.program-features {
  margin: 0;
  padding: 0;
  list-style: none;
}

.program-features li {
  position: relative;
  padding-left: 24px;
  margin-top: 12px;
  color: var(--ink);
  font-size: 0.92rem;
}

.program-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: bold;
}

.program-ideal {
  margin-top: 20px;
  padding: 16px;
  border-radius: var(--radius);
  background: var(--surface-soft);
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.program-ideal strong {
  color: var(--olive);
}

.program-footer {
  padding: 0 28px 28px;
}

.program-footer .button {
  width: 100%;
}

.program-note {
  max-width: 600px;
  margin: 48px auto 0;
  padding: 24px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--gold);
  text-align: center;
}

.program-note p {
  color: var(--olive);
  font-size: 1.05rem;
}

/* ========================================
   Journey-Based Programs Grid
   ======================================== */

.program-journey-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.program-journey-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.program-journey-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(53, 62, 35, 0.18);
}

.program-journey-card.program-featured {
  border: 3px solid var(--gold-bright);
  box-shadow: var(--shadow-gold);
}

/* Executive & Leadership Card */
.program-journey-card.program-executive {
  border: 2px solid #1a365d;
  background: linear-gradient(135deg, rgba(26, 54, 93, 0.05) 0%, rgba(255, 255, 255, 1) 100%);
}

.program-journey-card.program-executive:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}

/* HR & High-Potential Talent Card */
.program-journey-card.program-hr {
  border: 2px solid #4a5568;
  background: linear-gradient(135deg, rgba(74, 85, 104, 0.05) 0%, rgba(255, 255, 255, 1) 100%);
}

.program-journey-card.program-hr:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}

.program-journey-card.program-wellness {
  border: 2px solid var(--olive-light);
  background: linear-gradient(135deg, rgba(107, 142, 35, 0.03) 0%, rgba(230, 184, 0, 0.03) 100%);
  grid-column: span 2;
}

.program-journey-card.program-wellness:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}

.wellness-highlight {
  font-style: italic;
  color: var(--gold);
  font-size: 0.9rem;
  margin: 16px 0;
  padding: 12px;
  background: rgba(230, 184, 0, 0.08);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--gold);
}

/* Corporate Workshop Card */
.program-journey-card.program-corporate {
  border: 2px solid var(--olive);
  background: linear-gradient(135deg, rgba(107, 142, 35, 0.05) 0%, rgba(255, 255, 255, 1) 100%);
  grid-column: span 2;
}

.program-journey-card.program-corporate:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}

.corporate-tag {
  background: linear-gradient(135deg, var(--olive-deep) 0%, var(--olive) 100%) !important;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.workshop-format {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0;
}

.format-tag {
  padding: 6px 12px;
  background: linear-gradient(135deg, var(--olive-light) 0%, var(--olive) 100%);
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 600;
  border-radius: 15px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

@media (max-width: 900px) {
  .program-journey-card.program-corporate,
  .program-journey-card.program-wellness {
    grid-column: span 1;
  }
}

.program-journey-image {
  position: relative;
  width: 100%;
  height: 180px;
  overflow: hidden;
}

.program-journey-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.program-journey-card:hover .program-journey-image img {
  transform: scale(1.05);
}

.program-stage-tag {
  position: absolute;
  bottom: 12px;
  left: 12px;
  padding: 7px 14px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--olive-light) 0%, var(--olive) 100%);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.program-popular-tag {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 7px 14px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold) 100%);
  color: var(--olive-deep);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

.program-journey-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 24px;
}

.program-journey-content h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--olive-deep);
  margin: 0 0 4px 0;
}

.program-tagline {
  font-size: 0.85rem;
  color: var(--gold-deep);
  font-weight: 600;
  font-style: italic;
  margin: 0 0 12px 0;
}

.program-journey-content .program-description {
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.6;
  margin: 0 0 16px 0;
}

.program-details {
  flex: 1;
  margin-bottom: 16px;
}

.program-duration-badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 4px;
  background: var(--surface-soft);
  color: var(--olive);
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.program-includes {
  list-style: none;
  padding: 0;
  margin: 0;
}

.program-includes li {
  font-size: 0.8rem;
  color: var(--ink-soft);
  padding: 6px 0 6px 20px;
  position: relative;
  border-bottom: 1px solid var(--line);
}

.program-includes li:last-child {
  border-bottom: none;
}

.program-includes li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: bold;
  font-size: 0.75rem;
}

.program-journey-content .button {
  width: 100%;
  margin-top: auto;
  font-size: 0.85rem;
  padding: 12px 20px;
}

@media (max-width: 900px) {
}

.program-custom-note {
  max-width: 800px;
  margin: 40px auto 0;
  padding: 0 20px;
}

.custom-note-content {
  background: linear-gradient(135deg, var(--olive-light) 0%, var(--olive) 50%, var(--olive-deep) 100%);
  padding: 40px;
  border-radius: var(--radius);
  text-align: center;
  color: #ffffff;
  border: 2px solid var(--gold);
}

.custom-note-content h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.85rem;
  color: var(--gold-bright);
  margin: 0 0 12px 0;
}

.custom-note-content p {
  font-size: 1rem;
  line-height: 1.6;
  margin: 0 0 24px 0;
  opacity: 0.9;
}

/* Programs responsive */
@media (max-width: 1200px) {
  .program-journey-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .program-journey-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .program-journey-image {
    height: 160px;
  }
}

@media (max-width: 600px) {
  .program-journey-grid {
    grid-template-columns: 1fr;
    padding: 0 16px;
  }

  .program-journey-image {
    height: 200px;
  }

  .program-journey-content {
    padding: 20px;
  }

  .custom-note-content {
    padding: 28px 20px;
  }
}

/* ========================================
   End Journey-Based Programs
   ======================================== */

/* Discovery Section Enhancements */
.discovery-subtext {
  color: var(--ink-soft);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.discovery-note {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.discovery-note p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

/* Booking Form Styles */
.booking-form {
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--olive-deep);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--surface);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--ink-soft);
  opacity: 0.6;
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23556b2f' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

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

.button-full {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.whatsapp-icon {
  font-size: 1.2rem;
}

.form-note {
  font-size: 0.8rem;
  color: var(--ink-soft);
  text-align: center;
  margin-top: 12px;
  line-height: 1.5;
}

.discovery-contact {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  margin-top: 20px;
}

.discovery-contact p {
  color: var(--ink-soft);
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.contact-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.whatsapp-direct {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: #25D366;
  color: #ffffff;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 0.2s ease, transform 0.2s ease;
}

.whatsapp-direct:hover {
  background: #128C7E;
  transform: translateY(-2px);
  color: #ffffff;
}

.wa-icon {
  font-size: 1.2rem;
}

.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--olive);
  font-size: 1.1rem;
  font-weight: 600;
}

.phone-link:hover {
  color: var(--gold);
}

/* Responsive form */
@media (max-width: 600px) {
  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 14px;
    font-size: 16px;
  }

  .contact-buttons {
    width: 100%;
  }

  .whatsapp-direct,
  .phone-link {
    width: 100%;
    justify-content: center;
  }
}

/* FAQ Section */
.faq-grid {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  overflow: hidden;
}

.faq-item summary {
  padding: 20px 24px;
  cursor: pointer;
  color: var(--olive);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.3rem;
  font-weight: 600;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  color: var(--gold);
  font-size: 1.5rem;
  font-weight: 400;
  transition: transform 200ms ease;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 24px 20px;
}

.faq-answer p {
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.7;
}

/* Enhanced Footer */
.footer-main {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 32px;
  max-width: var(--max-width);
  margin: 0 auto;
  text-align: left;
}

.footer-brand .footer-logo {
  margin: 0 0 16px;
}

.footer-brand h2 {
  text-align: left;
}

.footer-contact h4,
.footer-links h4,
.footer-credential h4 {
  color: var(--olive);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0 0 16px;
}

.footer-email {
  display: block;
  margin-top: 8px;
  color: var(--gold);
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--olive) 0%, var(--olive-deep) 100%);
  color: #ffffff;
  transition: background 180ms ease, transform 180ms ease;
}

.footer-social a:hover {
  background: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold) 100%);
  color: var(--olive-deep);
  transform: translateY(-3px);
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav a {
  color: var(--ink-soft);
  font-size: 0.95rem;
  transition: color 180ms ease;
}

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

.footer-credential {
  text-align: center;
}

.icf-member-badge {
  width: 100px;
  height: auto;
  margin: 0 auto 12px;
}

.credential-text {
  color: var(--ink-soft);
  font-size: 0.85rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: var(--max-width);
  margin: 30px auto 0;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

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

.footer-legal a {
  color: var(--ink-soft);
  font-size: 0.9rem;
}

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

/* Responsive Updates */
@media (max-width: 1080px) {
  .approach-grid,
  .testimonial-grid,
  .program-grid {
    grid-template-columns: 1fr;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .trust-indicators {
    flex-wrap: wrap;
    gap: 24px;
  }
}

@media (max-width: 780px) {
  .credential-badge {
    flex-direction: column;
    text-align: center;
    padding: 14px 20px;
  }

  .credential-badge .icf-badge.pcc-official {
    height: 70px;
  }

  .trust-indicators {
    justify-content: center;
  }

  .credentials-line {
    justify-content: center;
  }

  .approach-promise blockquote {
    padding: 24px;
    font-size: 1.3rem;
  }

  .footer-main {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand .footer-logo {
    margin: 0 auto 16px;
  }

  .footer-brand h2 {
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-nav {
    align-items: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

/* Fade-in animations */
.fade-in-element {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-element.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger animation for grid items */
.value-grid .fade-in-element:nth-child(1) { transition-delay: 0ms; }
.value-grid .fade-in-element:nth-child(2) { transition-delay: 100ms; }
.value-grid .fade-in-element:nth-child(3) { transition-delay: 200ms; }
.value-grid .fade-in-element:nth-child(4) { transition-delay: 300ms; }

.space-grid .fade-in-element:nth-child(1) { transition-delay: 0ms; }
.space-grid .fade-in-element:nth-child(2) { transition-delay: 150ms; }
.space-grid .fade-in-element:nth-child(3) { transition-delay: 300ms; }

.approach-grid .fade-in-element:nth-child(1) { transition-delay: 0ms; }
.approach-grid .fade-in-element:nth-child(2) { transition-delay: 100ms; }
.approach-grid .fade-in-element:nth-child(3) { transition-delay: 200ms; }
.approach-grid .fade-in-element:nth-child(4) { transition-delay: 300ms; }

.testimonial-grid .fade-in-element:nth-child(1) { transition-delay: 0ms; }
.testimonial-grid .fade-in-element:nth-child(2) { transition-delay: 150ms; }
.testimonial-grid .fade-in-element:nth-child(3) { transition-delay: 300ms; }

/* ========================================
   Trust Stats Banner
   ======================================== */
.trust-banner {
  background: linear-gradient(135deg, var(--olive-deep) 0%, var(--olive) 100%);
  padding: 40px 20px;
}

.trust-banner-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.trust-stat {
  padding: 20px;
}

.trust-stat-number {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold-bright);
  line-height: 1;
  margin-bottom: 8px;
}

.trust-stat-label {
  display: block;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

@media (max-width: 780px) {
  .trust-banner-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-stat-number {
    font-size: 2.2rem;
  }

  .trust-stat-label {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .trust-banner-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .trust-stat {
    padding: 12px;
  }
}

/* ========================================
   Skip Link (Accessibility)
   ======================================== */
.skip-link {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--olive-deep);
  color: white;
  padding: 12px 24px;
  border-radius: var(--radius);
  z-index: 9999;
  text-decoration: none;
  font-weight: 600;
}

.skip-link:focus {
  top: 10px;
}

/* ========================================
   Investment / Pricing Section
   ======================================== */
.investment {
  background: var(--bg);
}

.investment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.investment-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.investment-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.investment-card.investment-featured {
  border: 3px solid var(--gold);
  background: linear-gradient(145deg, rgba(255, 250, 230, 0.5) 0%, var(--surface) 100%);
  box-shadow: var(--shadow-gold);
  transform: scale(1.02);
}

.investment-card.investment-featured:hover {
  transform: scale(1.02) translateY(-6px);
}

.investment-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.investment-header h3 {
  font-size: 1.5rem;
  color: var(--olive-deep);
  margin-bottom: 16px;
}

.investment-price {
  margin-bottom: 16px;
}

.price-currency {
  font-size: 1.2rem;
  color: var(--ink-soft);
  vertical-align: top;
}

.price-amount {
  font-family: "Cormorant Garamond", serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--olive);
  line-height: 1;
}

.price-period {
  font-size: 0.9rem;
  color: var(--ink-soft);
}

.investment-desc {
  color: var(--ink-soft);
  font-size: 0.95rem;
  margin-bottom: 20px;
  min-height: 50px;
}

.investment-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  text-align: left;
}

.investment-features li {
  position: relative;
  padding: 8px 0 8px 28px;
  color: var(--ink);
  font-size: 0.9rem;
  border-bottom: 1px solid var(--line);
}

.investment-features li:last-child {
  border-bottom: none;
}

.investment-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--olive);
  font-weight: bold;
}

.investment-card .button {
  width: 100%;
}

.investment-note {
  text-align: center;
  margin-top: 32px;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.investment-note a {
  color: var(--olive);
  text-decoration: underline;
}

@media (max-width: 900px) {
  .investment-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

  .investment-card.investment-featured {
    transform: none;
    order: -1;
  }

  .investment-card.investment-featured:hover {
    transform: translateY(-6px);
  }
}

/* ========================================
   Lead Magnet / Email Signup Section
   ======================================== */
.lead-magnet {
  background: linear-gradient(135deg, var(--olive-deep) 0%, var(--olive) 100%);
}

.lead-magnet-container {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
  align-items: center;
}

.lead-magnet-content h2 {
  color: white;
  font-size: 2rem;
  margin-bottom: 16px;
}

.lead-magnet-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.lead-magnet-benefits {
  list-style: none;
  padding: 0;
  margin: 0;
}

.lead-magnet-benefits li {
  position: relative;
  padding: 8px 0 8px 28px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
}

.lead-magnet-benefits li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold-bright);
  font-weight: bold;
}

.lead-magnet-form {
  background: white;
  padding: 32px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.lead-magnet-form input {
  width: 100%;
  padding: 14px 16px;
  margin-bottom: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-size: 1rem;
}

.lead-magnet-form input:focus {
  outline: none;
  border-color: var(--olive);
  box-shadow: 0 0 0 3px rgba(107, 142, 35, 0.1);
}

.lead-magnet-form .button {
  width: 100%;
  margin-top: 8px;
}

.form-note {
  text-align: center;
  margin-top: 12px;
  font-size: 0.8rem;
  color: var(--ink-soft);
}

@media (max-width: 780px) {
  .lead-magnet-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .lead-magnet-benefits {
    display: inline-block;
    text-align: left;
  }

  .lead-magnet-content h2 {
    font-size: 1.6rem;
  }
}

.program-grid .fade-in-element:nth-child(1) { transition-delay: 0ms; }
.program-grid .fade-in-element:nth-child(2) { transition-delay: 150ms; }
.program-grid .fade-in-element:nth-child(3) { transition-delay: 300ms; }

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition: none !important;
  }

  .fade-in-element {
    opacity: 1;
    transform: none;
  }
}
