/* EYH College Coach - Stylesheet (1:1 Clone) */

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

:root {
  /* Exact colors from Squarespace CSS variables */
  --color-white: #ffffff;
  --color-light: #f4f4f4;           /* lightAccent: hsl(0,0%,95.69%) */
  --color-dark: #351e4b;            /* black-hsl: hsl(270.67,42.86%,20.59%) */
  --color-text: #351e4b;            /* Same dark for text */
  --color-text-muted: #6b5f78;      /* Lightened dark for secondary text */
  --color-text-light: #8a7f94;      /* Further lightened for captions */
  --color-border: #e5e0eb;          /* Soft purple-toned border */
  --color-accent: #90cebf;          /* accent: hsl(165.48,38.75%,68.63%) = teal */
  --color-bg: #ffffff;
  --color-bg-light: #f4f4f4;
  /* Fonts confirmed from Google Fonts URL on live site */
  --font-heading: 'Poppins', 'Helvetica Neue', Arial, sans-serif;
  --font-body: 'Open Sans', 'Helvetica Neue', Arial, sans-serif;
  --max-width: 1500px;
  --nav-height: 90px;
  --transition: 0.3s ease;
  --site-gutter: 4vw;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background-color: var(--color-bg);
  color: var(--color-text);
  font-size: 16px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

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

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text);
}

h1 { font-size: clamp(2.2rem, 4.5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.8rem); }
h4 { font-size: 1.15rem; font-weight: 600; }
h5 { font-size: 1rem; font-weight: 600; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* === BUTTONS — pill-shaped matching the original === */
.btn {
  display: inline-block;
  padding: 16px 40px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: none;
  cursor: pointer;
  border: none;
  border-radius: 50px;        /* Pill shape — confirmed from screenshots */
  transition: background var(--transition), color var(--transition), opacity var(--transition);
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
}

.btn-dark {
  background-color: var(--color-dark);
  color: #fff;
}
.btn-dark:hover { background-color: #4a2d68; }

.btn-outline {
  background: transparent;
  color: var(--color-text);
  border: 2px solid var(--color-text);
}
.btn-outline:hover {
  background: var(--color-text);
  color: #fff;
}

.btn-white {
  background-color: #fff;
  color: var(--color-dark);
}
.btn-white:hover { background-color: rgba(255,255,255,0.88); }

.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.7);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.15); }

/* Button on dark section (process steps "See Our Packages") — translucent white pill */
.btn-light-pill {
  background-color: rgba(255,255,255,0.15);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.45);
  backdrop-filter: blur(4px);
}
.btn-light-pill:hover { background-color: rgba(255,255,255,0.25); }

/* === CONTAINER === */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--site-gutter);
}

/* === NAVIGATION === */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  border-bottom: 1px solid rgba(53,30,75,0.12);
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: box-shadow var(--transition);
}

.site-nav.scrolled {
  box-shadow: 0 2px 20px rgba(53,30,75,0.1);
}

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

.nav-logo img {
  height: 70px;
  width: auto;
}

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

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.95rem;           /* Normal size, no uppercase — confirmed from screenshot */
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;         /* Normal case — matches screenshot */
  color: var(--color-text);
  transition: color var(--transition);
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--color-dark);
  border-bottom-color: var(--color-dark);
}

.nav-links .btn {
  border-bottom: none;
  padding: 14px 28px;
  font-size: 0.9rem;
}
.nav-links .btn:hover { border-bottom: none; }

/* Ensure btn colors are never overridden by nav-links a rule */
.nav-links a.btn-dark,
.nav-links a.btn-dark:hover { color: #fff; }
.nav-links a.btn-white,
.nav-links a.btn-white:hover { color: var(--color-dark); }
.nav-links a.btn-outline,
.nav-links a.btn-outline:hover { color: var(--color-dark); }

/* Global: ensure btn text colors always win */
.btn-dark { color: #fff !important; }
.btn-white { color: var(--color-dark) !important; }
.btn-light-pill { color: #fff !important; }

/* Mobile Menu Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--color-dark);
  transition: all var(--transition);
}

/* === HERO SECTION === */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--nav-height);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

/* Overlay — imageOverlayOpacity: 0.15, left-side gradient for text legibility */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(20,10,35,0.52) 0%, rgba(20,10,35,0.22) 50%, rgba(20,10,35,0.05) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 100px var(--site-gutter);
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
}

.hero-content h1 {
  color: #fff;
  max-width: 700px;
  margin-bottom: 1.25rem;
  font-weight: 700;
  line-height: 1.15;
}

.hero-content p {
  color: rgba(255,255,255,0.92);
  font-size: 1.2rem;
  max-width: 460px;
  margin-bottom: 2.5rem;
  font-weight: 400;
}

/* === PAGE HERO (inner pages) === */
.page-hero {
  position: relative;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: var(--nav-height);
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.page-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(53,30,75,0.5);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 var(--site-gutter);
}

.page-hero-content h1 {
  color: #fff;
  font-weight: 700;
}

.page-hero-content p {
  color: rgba(255,255,255,0.9);
  font-size: 1.1rem;
  max-width: 700px;
  margin: 1rem auto 0;
}

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

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

.section-dark {
  background-color: var(--color-dark);
  color: #fff;
}
.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4 {
  color: #fff;
}

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

/* === EYEBROW LABELS === */
.eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 0.9rem;
}

.section-dark .eyebrow {
  color: var(--color-accent);
}

/* === SECTION TITLE BLOCK === */
.section-title {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-title h2 {
  margin-bottom: 0.75rem;
}

.section-title p {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
}

.section-dark .section-title p {
  color: rgba(255,255,255,0.75);
}

/* === OVERVIEW SECTION === */
.overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.overview-text h2 {
  margin-bottom: 1.5rem;
}

.overview-text p {
  font-size: 1.02rem;
  color: var(--color-text-muted);
  margin-bottom: 1.2rem;
  line-height: 1.85;
}

.overview-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

/* === UNIVERSITY LOGOS === */
.unis-section {
  padding: 70px 0 80px;
  background: var(--color-light);   /* #F4F4F4 light gray — matches original */
}

.unis-heading {
  text-align: center;
  margin-bottom: 3rem;
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--color-text);         /* Bold dark purple H2 — confirmed from screenshot */
  letter-spacing: normal;
  text-transform: none;
}

.unis-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4rem;
  flex-wrap: wrap;
}

.unis-logos img {
  height: 90px;           /* Larger logos matching original */
  width: auto;
  object-fit: contain;
  opacity: 1;             /* Full color — no desaturation */
  transition: opacity var(--transition);
}

.unis-logos img:hover { opacity: 0.85; }

/* === SERVICES (text only section) === */
.services-section {
  background: var(--color-light);
}

.services-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}

.services-text h2 { margin-bottom: 1.25rem; }
.services-text p {
  font-size: 1.02rem;
  color: var(--color-text-muted);
  margin-bottom: 1.2rem;
}

.services-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

/* === PROCESS STEPS — DARK section confirmed from screenshots === */
.steps-section {
  background: var(--color-dark);   /* Dark purple #351E4B */
}

.steps-section .section-title h2 {
  color: #fff;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem;
  margin-top: 0;
}

.step-card {
  text-align: center;
  padding: 1.5rem 1rem;
  background: transparent;   /* No card background — just content on dark bg */
}

.step-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem;
  /* No circular container — bare icon on dark background */
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-icon img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  /* Icons are white PNGs — render white on dark bg */
  filter: brightness(0) invert(1);
}

.step-num {
  display: none;   /* Step number is embedded in h4 title on original */
}

.step-card h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.9rem;
  color: #fff;
  line-height: 1.3;
}

.step-card p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.75;
  margin: 0;
}

/* === PACKAGES === */
/* 4 images side by side, full bleed, tall */
.packages-fullbleed {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.package-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.package-card img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease;
}

.package-card:hover img {
  transform: scale(1.05);
}

.package-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2.5rem 2rem;
  background: linear-gradient(to top, rgba(53,30,75,0.9) 0%, rgba(53,30,75,0.4) 60%, transparent 100%);
  color: #fff;
}

.package-sessions {
  display: block;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 0.5rem;
}

.package-overlay h3 {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  line-height: 1.2;
}

.package-overlay p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.82);
  margin: 0;
}

/* Packages page detail cards */
.packages-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}

.package-detail-card {
  position: relative;
  overflow: hidden;
}

.package-detail-card img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

.package-detail-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2.5rem 2rem;
  background: linear-gradient(to top, rgba(53,30,75,0.92) 0%, rgba(53,30,75,0.5) 50%, transparent 100%);
  color: #fff;
}

.package-detail-overlay .sessions-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 0.5rem;
}

.package-detail-overlay h3 {
  color: #fff;
  font-size: 1.6rem;
  margin-bottom: 0.4rem;
}

.package-detail-overlay .ideal {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.8);
  margin: 0;
}

/* Features list */
.features-section {
  background: var(--color-light);
}

.features-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.features-col h4 {
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--color-dark);
}

.features-col ul li {
  padding: 0.75rem 0;
  font-size: 0.95rem;
  color: var(--color-text-muted);
  border-bottom: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.features-col ul li::before {
  content: '✓';
  color: var(--color-accent);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

/* === TESTIMONIALS === */
.testimonials-section {
  background: var(--color-light);
}

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

.testimonial-card {
  background: var(--color-white);
  padding: 2.5rem 2rem 2rem;
  position: relative;
}

.quote-mark {
  font-family: Georgia, serif;
  font-size: 5rem;
  line-height: 0.8;
  color: var(--color-accent);
  opacity: 0.5;
  display: block;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  margin-bottom: 1.75rem;
  line-height: 1.85;
  font-style: italic;
}

.testimonial-author {
  border-top: 1px solid var(--color-border);
  padding-top: 1.25rem;
}

.testimonial-author strong {
  display: block;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--color-text);
  font-style: normal;
}

.testimonial-author span {
  font-size: 0.82rem;
  color: var(--color-text-muted);
}

/* === ABOUT SECTION (homepage) === */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}

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

.about-text h2 { margin-bottom: 1.5rem; }
.about-text p {
  font-size: 1.02rem;
  color: var(--color-text-muted);
  margin-bottom: 1.2rem;
  line-height: 1.85;
}

/* === LIFE COACHING SECTION (LIGHT background on homepage) === */
.life-coaching-section {
  background: var(--color-white);
  padding: 90px var(--site-gutter);
  text-align: center;
}

.life-coaching-section h2 {
  margin-bottom: 1.25rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.life-coaching-section p {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  line-height: 1.85;
}

/* === EMAIL SIGNUP === DARK SECTION */
.email-signup {
  background: var(--color-dark);
  padding: 80px var(--site-gutter);
  text-align: center;
}

.email-signup h3 {
  color: #fff;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  max-width: 480px;
  margin: 0 auto 2rem;
  line-height: 1.7;
  font-family: var(--font-body);
}

.signup-form {
  display: flex;
  gap: 0;
  justify-content: center;
  max-width: 500px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.signup-form input[type="email"] {
  flex: 1;
  min-width: 220px;
  padding: 16px 22px;
  border: none;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.3);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: #fff;
  outline: none;
  transition: border-color var(--transition), background var(--transition);
}

.signup-form input[type="email"]::placeholder { color: rgba(255,255,255,0.55); }

.signup-form input[type="email"]:focus {
  border-color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.15);
}

.signup-form .btn {
  padding: 16px 32px;
  background: rgba(255,255,255,0.15);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.5);
  font-size: 0.75rem;
}

.signup-form .btn:hover {
  background: rgba(255,255,255,0.25);
}

.signup-success {
  display: none;
  color: var(--color-accent);
  font-weight: 600;
  font-size: 1rem;
}

/* === FOOTER === */
.site-footer {
  background: var(--color-dark);
  color: rgba(255,255,255,0.65);
  padding: 50px 0 30px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 2rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo img {
  height: 60px;
  width: auto;
}

.footer-nav {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.footer-nav a {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}

.footer-nav a:hover { color: #fff; }

.footer-bottom {
  text-align: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
}

/* === CONTACT PAGE === */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: start;
}

.contact-info h2 {
  font-size: 2rem;
  margin-bottom: 1.25rem;
}

.contact-info > p {
  color: var(--color-text-muted);
  font-size: 1.02rem;
  margin-bottom: 2rem;
  line-height: 1.85;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--color-border);
  font-size: 0.97rem;
}

.contact-detail:first-of-type {
  border-top: 1px solid var(--color-border);
}

.contact-detail .label {
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text);
  min-width: 65px;
  padding-top: 2px;
}

.contact-detail a { color: var(--color-text-muted); }
.contact-detail a:hover { color: var(--color-dark); }

.contact-form-wrapper {
  background: var(--color-light);
  padding: 3rem 3rem;
}

.contact-form-wrapper h3 {
  font-size: 1.6rem;
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
  color: var(--color-text);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--color-border);
  background: var(--color-white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-text);
  outline: none;
  transition: border-color var(--transition);
  border-radius: 10px;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--color-dark);
}

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

.form-note {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-top: 1rem;
}

.form-success {
  display: none;
  padding: 1.25rem;
  background: rgba(144,206,191,0.15);
  border: 1px solid var(--color-accent);
  color: #2a7a6a;
  font-size: 0.95rem;
  margin-top: 1rem;
  text-align: center;
  font-weight: 600;
}

/* === RESOURCES PAGE === */
.resources-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.resource-card {
  background: var(--color-white);
  overflow: hidden;
  border: 1px solid var(--color-border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.resource-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(53,30,75,0.1);
}

.resource-card-img {
  height: 210px;
  overflow: hidden;
}

.resource-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.resource-card:hover .resource-card-img img {
  transform: scale(1.05);
}

.resource-card-body {
  padding: 1.75rem;
}

.resource-meta {
  font-size: 0.73rem;
  color: var(--color-text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.resource-card-body h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  line-height: 1.35;
  color: var(--color-text);
}

.resource-card-body p {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  margin-bottom: 1.25rem;
  line-height: 1.7;
}

.read-more {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text);
  border-bottom: 2px solid var(--color-text);
  padding-bottom: 2px;
  display: inline-block;
  transition: color var(--transition), border-color var(--transition);
}

.read-more:hover {
  color: var(--color-accent);
  border-color: var(--color-accent);
}

/* === ABOUT PAGE === */
.about-page-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
}

.about-page-image img {
  width: 100%;
  height: auto;
  max-height: 680px;
  object-fit: cover;
  object-position: top center;
}

.about-page-text p {
  font-size: 1.02rem;
  color: var(--color-text-muted);
  margin-bottom: 1.2rem;
  line-height: 1.85;
}

.credentials-card {
  background: var(--color-light);
  padding: 2rem;
  margin-top: 2.5rem;
}

.credentials-card h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  color: var(--color-text);
}

.credentials-card ul li {
  padding: 0.6rem 0;
  font-size: 0.93rem;
  color: var(--color-text-muted);
  border-bottom: 1px solid var(--color-border);
  display: flex;
  gap: 0.75rem;
}

.credentials-card ul li::before {
  content: '—';
  color: var(--color-accent);
  flex-shrink: 0;
}

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

.membership-card {
  text-align: center;
  padding: 2.5rem 2rem;
  background: var(--color-light);
}

.membership-card h4 {
  font-size: 1rem;
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.membership-card p {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  margin: 0;
  line-height: 1.7;
}

/* === POST-GRADUATION === */
.post-grad-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.post-grad-text p {
  font-size: 1.02rem;
  color: var(--color-text-muted);
  margin-bottom: 1.2rem;
  line-height: 1.85;
}

.post-grad-list {
  margin: 1.5rem 0 2.5rem;
}

.post-grad-list li {
  padding: 0.7rem 0;
  font-size: 0.95rem;
  color: var(--color-text-muted);
  border-bottom: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.post-grad-list li::before {
  content: '→';
  color: var(--color-accent);
  flex-shrink: 0;
  font-size: 1rem;
}

.post-grad-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

/* === PRIVACY POLICY === */
.policy-content {
  max-width: 880px;
  margin: 0 auto;
  padding: calc(var(--nav-height) + 60px) var(--site-gutter) 80px;
}

.policy-content h1 { margin-bottom: 0.5rem; }

.policy-content .last-updated {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  margin-bottom: 3rem;
  display: block;
}

.policy-content h2 {
  font-size: 1.5rem;
  margin: 2.5rem 0 1rem;
}

.policy-content h3 {
  font-size: 1.15rem;
  margin: 2rem 0 0.75rem;
}

.policy-content p {
  font-size: 0.97rem;
  color: var(--color-text-muted);
  margin-bottom: 1rem;
  line-height: 1.85;
}

.policy-content ul, .policy-content ol {
  list-style: disc;
  padding-left: 1.5rem;
  margin: 1rem 0 1.5rem;
}

.policy-content li {
  font-size: 0.97rem;
  color: var(--color-text-muted);
  margin-bottom: 0.5rem;
  line-height: 1.75;
}

/* === CTA SECTION === */
.cta-section {
  text-align: center;
  padding: 90px var(--site-gutter);
  background: var(--color-white);
}

.cta-section h2 { margin-bottom: 1rem; }
.cta-section p {
  color: var(--color-text-muted);
  max-width: 520px;
  margin: 0 auto 2.5rem;
  font-size: 1.02rem;
  line-height: 1.8;
}

/* === UTILITIES === */
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-2 { margin-bottom: 2rem; }

/* === MOBILE RESPONSIVE === */
@media (max-width: 1100px) {
  .steps-grid { grid-template-columns: repeat(3, 1fr); }
  .packages-fullbleed { grid-template-columns: repeat(2, 1fr); }
  .packages-detail-grid { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .overview-grid,
  .about-grid,
  .contact-grid,
  .post-grad-grid,
  .about-page-grid,
  .services-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .overview-image img,
  .services-image img { height: 360px; }
  .about-image img { height: 450px; }

  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .resources-grid { grid-template-columns: 1fr 1fr; }
  .memberships-grid { grid-template-columns: 1fr; }

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

@media (max-width: 700px) {
  :root {
    --nav-height: 70px;
    --site-gutter: 5vw;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.98);
    flex-direction: column;
    padding: 2rem var(--site-gutter);
    gap: 1.5rem;
    border-bottom: 1px solid var(--color-border);
    z-index: 999;
    box-shadow: 0 10px 30px rgba(53,30,75,0.1);
    align-items: flex-start;
  }

  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }

  .packages-fullbleed { grid-template-columns: 1fr; }
  .packages-detail-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .resources-grid { grid-template-columns: 1fr; }
  .features-row { grid-template-columns: 1fr; gap: 2rem; }

  .package-card img { height: 400px; }
  .package-detail-card img { height: 340px; }

  .contact-form-wrapper { padding: 2rem 1.5rem; }

  .section { padding: 60px 0; }
  .life-coaching-section { padding: 60px var(--site-gutter); }
  .email-signup { padding: 60px var(--site-gutter); }
}

@media (max-width: 480px) {
  .steps-grid { grid-template-columns: 1fr; }
  .unis-logos { gap: 1.5rem; }
  .unis-logos img { height: 40px; }
  .signup-form { flex-direction: column; gap: 0.5rem; }
  .signup-form input { width: 100%; }
  .signup-form .btn { width: 100%; }
}

/* === SCROLL REVEAL ANIMATION === */
[data-reveal] {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}
