/* ============================================================
   THE SKIN RETREAT — Global Stylesheet
   Brand Colors:
     Forest Green  #2C4A3E
     Warm Gold     #C9A84C
     Charcoal      #3A3A38
     Blush         #C4A89A
     Cream         #F7F3EE
     Off-White     #FDFAF6
   ============================================================ */

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

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

:root {
  --green:   #2C4A3E;
  --gold:    #C9A84C;
  --charcoal:#3A3A38;
  --blush:   #C4A89A;
  --cream:   #F7F3EE;
  --offwhite:#FDFAF6;
  --serif:   'Cormorant Garamond', Georgia, serif;
  --sans:    'Jost', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.75;
  color: var(--charcoal);
  background: var(--offwhite);
}

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

/* ── TYPOGRAPHY ─────────────────────────────────────────── */

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.15;
  color: var(--green);
}

h1 { font-size: clamp(2.6rem, 6vw, 4.8rem); letter-spacing: -.01em; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: 1.2rem; }

.eyebrow {
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: .75rem;
}

.lead {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.6;
  color: var(--charcoal);
}

/* ── LAYOUT UTILITIES ───────────────────────────────────── */

.container {
  width: min(1140px, 92vw);
  margin-inline: auto;
}

.section { padding: 7rem 0; }
.section--sm { padding: 4rem 0; }
.section--lg { padding: 10rem 0; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; }

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

.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: .9rem 2.4rem;
  border: 1.5px solid var(--green);
  color: var(--green);
  background: transparent;
  cursor: pointer;
  transition: background .25s, color .25s;
}
.btn:hover { background: var(--green); color: var(--offwhite); }

.btn--filled { background: var(--green); color: var(--offwhite); }
.btn--filled:hover { background: #1e3329; border-color: #1e3329; }

.btn--gold { border-color: var(--gold); color: var(--gold); }
.btn--gold:hover { background: var(--gold); color: var(--offwhite); }

.btn--white { border-color: var(--offwhite); color: var(--offwhite); }
.btn--white:hover { background: var(--offwhite); color: var(--green); }

/* ── NAVIGATION ─────────────────────────────────────────── */

.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.4rem 0;
  background: rgba(253, 250, 246, .96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(196,168,154,.2);
  transition: padding .3s;
}

.site-nav.scrolled { padding: .9rem 0; }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  line-height: 1;
}
.nav-logo-img {
  height: 52px;
  width: auto;
  display: block;
  transition: opacity .2s;
}
.nav-logo:hover .nav-logo-img { opacity: .8; }

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

.nav-links a {
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--charcoal);
  transition: color .2s;
}
.nav-links a:hover { color: var(--green); }

.nav-cta { margin-left: 2rem; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--charcoal);
  transition: transform .3s, opacity .3s;
}

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

.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 80px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem 5rem 6rem 0;
}

.hero-content h1 {
  margin: 1.2rem 0 1.8rem;
  color: var(--green);
}

.hero-content .lead {
  margin-bottom: 2.5rem;
  max-width: 480px;
}

.hero-actions { display: flex; gap: 1.2rem; flex-wrap: wrap; align-items: center; }

.hero-image {
  position: relative;
  overflow: hidden;
}

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

/* ── INTRO STRIP ────────────────────────────────────────── */

.intro-strip {
  background: var(--green);
  color: var(--offwhite);
  padding: 3rem 0;
  text-align: center;
}

.intro-strip p {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 2.2vw, 1.5rem);
  font-style: italic;
  font-weight: 300;
  max-width: 720px;
  margin-inline: auto;
  line-height: 1.6;
}

/* ── METHOD PILLARS ─────────────────────────────────────── */

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

.method-header { text-align: center; max-width: 640px; margin: 0 auto 4.5rem; }
.method-header h2 { margin: .75rem 0 1.2rem; }

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

.pillar {
  background: var(--offwhite);
  padding: 3.5rem 2.8rem;
  position: relative;
}

.pillar-number {
  font-family: var(--serif);
  font-size: 5rem;
  font-weight: 300;
  color: rgba(44,74,62,.08);
  line-height: 1;
  margin-bottom: .5rem;
}

.pillar h3 { font-size: 1.35rem; margin-bottom: 1rem; }
.pillar p { font-size: .95rem; line-height: 1.8; }

.pillar-accent {
  display: block;
  width: 32px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 1.2rem;
}

/* ── WHO I SERVE ────────────────────────────────────────── */

.serve-section { background: var(--offwhite); }

.serve-header { text-align: center; max-width: 560px; margin: 0 auto 4rem; }
.serve-header h2 { margin: .75rem 0 1rem; }

.serve-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5px; }

.serve-card {
  background: var(--cream);
  padding: 3rem 2.5rem;
  border-top: 3px solid transparent;
  transition: border-color .3s;
}
.serve-card:hover { border-top-color: var(--gold); }

.serve-card h3 { font-size: 1.3rem; margin-bottom: 1rem; }
.serve-card p { font-size: .93rem; line-height: 1.85; }

/* ── PROGRAMS ───────────────────────────────────────────── */

.programs-section { background: var(--green); color: var(--offwhite); }

.programs-section h2, .programs-section h3 { color: var(--offwhite); }

.programs-header { text-align: center; max-width: 560px; margin: 0 auto 4rem; }
.programs-header h2 { margin: .75rem 0 1rem; }
.programs-header p { color: rgba(253,250,246,.75); }

.program-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5px; }

.program-card {
  background: rgba(253,250,246,.06);
  padding: 3rem 2.5rem;
  border: 1px solid rgba(201,168,76,.25);
  transition: background .3s;
}
.program-card:hover { background: rgba(253,250,246,.1); }

.program-price {
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--gold);
  margin: .75rem 0 1rem;
  display: block;
}

.program-card p { font-size: .93rem; line-height: 1.85; color: rgba(253,250,246,.8); margin-bottom: 1.8rem; }
.program-card .btn--white { font-size: .72rem; }

.program-tag {
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201,168,76,.4);
  padding: .25rem .75rem;
  display: inline-block;
  margin-bottom: 1rem;
}

/* ── MELISSA STATEMENT ──────────────────────────────────── */

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

.statement-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 6rem;
  align-items: center;
}

.statement-image {
  position: relative;
}

.statement-image img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: top center;
}

.statement-image::after {
  content: '';
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 60%;
  height: 60%;
  border: 2px solid var(--gold);
  z-index: -1;
}

.statement-content .lead { margin: 1.2rem 0 2rem; }
.statement-content blockquote {
  border-left: 3px solid var(--gold);
  padding-left: 1.5rem;
  margin: 2rem 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--green);
}

/* ── BLOG PREVIEW ───────────────────────────────────────── */

.blog-section { background: var(--offwhite); }

.blog-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 3.5rem; }

.blog-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; }

.blog-card { cursor: pointer; }

.blog-card-image {
  overflow: hidden;
  aspect-ratio: 4/3;
  margin-bottom: 1.5rem;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.blog-card:hover .blog-card-image img { transform: scale(1.04); }

.blog-card-meta {
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .5rem;
}

.blog-card h3 {
  font-size: 1.25rem;
  margin-bottom: .75rem;
  transition: color .2s;
}
.blog-card:hover h3 { color: var(--gold); }

.blog-card p { font-size: .9rem; line-height: 1.8; color: #666; }

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

.site-footer {
  background: var(--charcoal);
  color: rgba(253,250,246,.7);
  padding: 5rem 0 2.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-brand .nav-logo { color: var(--offwhite); font-size: 1.5rem; margin-bottom: 1rem; display: block; }
.footer-logo-img { height: 72px; width: auto; display: block; margin-bottom: 1.2rem; filter: brightness(0) invert(1); opacity: .85; }

/* ── SOCIAL ICONS ───────────────────────────────────────── */
.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1.4rem;
}
.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(253,250,246,.25);
  color: rgba(253,250,246,.7);
  transition: border-color .2s, color .2s;
}
.social-links a:hover { border-color: var(--gold); color: var(--gold); }
.social-links svg { width: 16px; height: 16px; fill: currentColor; }

/* ── TESTIMONIALS ───────────────────────────────────────── */
.testimonials-section { background: var(--cream); }
.testimonials-header { text-align: center; max-width: 560px; margin: 0 auto 4rem; }
.testimonials-header h2 { margin: .75rem 0 1rem; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.testimonial-card {
  background: var(--offwhite);
  padding: 2.5rem 2rem;
  position: relative;
}
.testimonial-stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: .1em;
  margin-bottom: 1.2rem;
  display: block;
}
.testimonial-card blockquote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
  border: none;
  padding: 0;
}
.testimonial-author {
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--green);
}
.testimonial-source {
  font-size: .72rem;
  color: var(--blush);
  margin-top: .25rem;
}

/* ── NEWSLETTER SIGNUP ──────────────────────────────────── */
.newsletter-section {
  background: var(--green);
  color: var(--offwhite);
  padding: 6rem 0;
  text-align: center;
}
.newsletter-section h2 { color: var(--offwhite); margin: .75rem 0 1rem; }
.newsletter-section .lead { color: rgba(253,250,246,.8); margin-bottom: 2.5rem; }
.newsletter-form {
  display: flex;
  gap: 0;
  max-width: 480px;
  margin-inline: auto;
}
.newsletter-form input {
  flex: 1;
  padding: 1rem 1.4rem;
  border: 1.5px solid rgba(253,250,246,.4);
  border-right: none;
  background: rgba(253,250,246,.08);
  color: var(--offwhite);
  font-family: var(--sans);
  font-size: .88rem;
  outline: none;
  transition: border-color .2s;
}
.newsletter-form input::placeholder { color: rgba(253,250,246,.45); }
.newsletter-form input:focus { border-color: var(--gold); }
.newsletter-form button {
  padding: 1rem 2rem;
  background: var(--gold);
  color: var(--offwhite);
  border: 1.5px solid var(--gold);
  font-family: var(--sans);
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .2s;
  white-space: nowrap;
}
.newsletter-form button:hover { background: #b8943e; border-color: #b8943e; }
.newsletter-note { font-size: .78rem; color: rgba(253,250,246,.45); margin-top: 1rem; }
.footer-brand p { font-size: .88rem; line-height: 1.8; max-width: 280px; }

.footer-col h4 {
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: .6rem; }
.footer-col ul a { font-size: .88rem; transition: color .2s; }
.footer-col ul a:hover { color: var(--offwhite); }

.footer-bottom {
  border-top: 1px solid rgba(253,250,246,.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .8rem;
}

.footer-bottom a { transition: color .2s; }
.footer-bottom a:hover { color: var(--offwhite); }

/* ── PAGE HERO (inner pages) ────────────────────────────── */

.page-hero {
  padding: 10rem 0 5rem;
  background: var(--cream);
  text-align: center;
}

.page-hero h1 { margin: .75rem 0 1.2rem; }
.page-hero .lead { max-width: 600px; margin-inline: auto; }

/* ── SERVICES PAGE ──────────────────────────────────────── */

.services-intro { background: var(--offwhite); padding: 5rem 0; }

.service-group { padding: 5rem 0; border-top: 1px solid rgba(196,168,154,.3); }
.service-group:first-child { border-top: none; }

.service-group-label {
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 3rem;
  display: block;
}

.service-item {
  display: grid;
  grid-template-columns: 1fr 2fr auto;
  gap: 3rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid rgba(196,168,154,.2);
  align-items: start;
}
.service-item:last-child { border-bottom: none; }

.service-name { }
.service-name h3 { font-size: 1.4rem; margin-bottom: .3rem; }
.service-name .service-note {
  font-size: .8rem;
  color: var(--blush);
  font-style: italic;
}

.service-desc { font-size: .95rem; line-height: 1.85; }
.service-desc p + p { margin-top: .8rem; }
.service-desc .note {
  font-size: .83rem;
  color: #888;
  font-style: italic;
  margin-top: .8rem;
}

.service-price {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--green);
  white-space: nowrap;
  text-align: right;
}

.program-feature {
  background: var(--green);
  color: var(--offwhite);
  padding: 4rem;
  margin: 3rem 0;
}
.program-feature h3 { color: var(--offwhite); font-size: 1.8rem; margin-bottom: .5rem; }
.program-feature .program-price { color: var(--gold); font-size: 2.5rem; margin: .5rem 0 1.5rem; }
.program-feature p { color: rgba(253,250,246,.85); font-size: .95rem; line-height: 1.85; max-width: 640px; }
.program-feature ul { margin: 1.5rem 0 2rem 1.2rem; }
.program-feature ul li { color: rgba(253,250,246,.85); font-size: .93rem; line-height: 1.9; }
.program-feature .btn--white { margin-top: .5rem; }

.cherry-note {
  background: rgba(201,168,76,.1);
  border-left: 3px solid var(--gold);
  padding: 1rem 1.5rem;
  font-size: .88rem;
  color: var(--charcoal);
  margin-top: 1rem;
}

/* ── ABOUT PAGE ─────────────────────────────────────────── */

.about-hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 85vh;
  padding-top: 80px;
}

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

.about-hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem;
  background: var(--cream);
}

.about-hero-content h1 { margin: .75rem 0 1.5rem; }

.about-body { background: var(--offwhite); }

.about-body-inner {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 6rem;
  padding: 7rem 0;
}

.about-text h2 { margin: 2.5rem 0 1rem; }
.about-text p { margin-bottom: 1.4rem; font-size: .97rem; line-height: 1.9; }

.about-sidebar {}
.about-sidebar-card {
  background: var(--cream);
  padding: 2.5rem;
  margin-bottom: 2rem;
}
.about-sidebar-card h4 { font-size: 1rem; margin-bottom: .75rem; }
.about-sidebar-card p, .about-sidebar-card li {
  font-size: .88rem;
  line-height: 1.8;
  color: #666;
}
.about-sidebar-card ul { padding-left: 1.1rem; }

/* ── METHOD PAGE ────────────────────────────────────────── */

.method-hero { background: var(--green); color: var(--offwhite); padding: 10rem 0 6rem; text-align: center; }
.method-hero h1 { color: var(--offwhite); margin: .75rem 0 1.5rem; }
.method-hero .lead { color: rgba(253,250,246,.8); max-width: 620px; margin-inline: auto; }

.method-body { background: var(--offwhite); }

.method-pillar-full {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 5rem;
  padding: 5rem 0;
  border-bottom: 1px solid rgba(196,168,154,.25);
  align-items: start;
}
.method-pillar-full:last-child { border-bottom: none; }

.pillar-label-col { padding-top: .5rem; }
.pillar-big-num {
  font-family: var(--serif);
  font-size: 8rem;
  font-weight: 300;
  color: rgba(44,74,62,.07);
  line-height: .9;
  margin-bottom: .5rem;
}
.pillar-label-col h2 { font-size: 1.6rem; }

.pillar-body p { margin-bottom: 1.3rem; font-size: .97rem; line-height: 1.9; }
.pillar-body h3 { font-size: 1.1rem; margin: 2rem 0 .75rem; }

/* ── CONTACT PAGE ───────────────────────────────────────── */

.contact-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 80vh;
  padding-top: 80px;
}

.contact-info {
  background: var(--green);
  color: var(--offwhite);
  padding: 7rem 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-info h1 { color: var(--offwhite); margin: .75rem 0 1.5rem; }
.contact-info .lead { color: rgba(253,250,246,.8); margin-bottom: 3rem; }

.contact-detail { margin-bottom: 1.5rem; }
.contact-detail span {
  display: block;
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .3rem;
}
.contact-detail a { color: rgba(253,250,246,.85); font-size: .95rem; transition: color .2s; }
.contact-detail a:hover { color: var(--offwhite); }

.contact-form-area {
  background: var(--cream);
  padding: 7rem 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-form-area h2 { margin-bottom: 2rem; }

.form-group { margin-bottom: 1.5rem; }
.form-group label {
  display: block;
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: .5rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--offwhite);
  border: 1px solid rgba(196,168,154,.4);
  padding: .85rem 1rem;
  font-family: var(--sans);
  font-size: .95rem;
  color: var(--charcoal);
  outline: none;
  transition: border-color .2s;
  border-radius: 0;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--green); }
.form-group textarea { resize: vertical; min-height: 140px; }

.form-note { font-size: .82rem; color: #888; margin-top: 1rem; }

/* ── BLOG PAGE ──────────────────────────────────────────── */

.blog-page { background: var(--offwhite); padding: 5rem 0 7rem; }

.blog-featured {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 5rem;
  padding-bottom: 5rem;
  border-bottom: 1px solid rgba(196,168,154,.3);
}

.blog-featured-image {
  overflow: hidden;
  aspect-ratio: 4/3;
}
.blog-featured-image img { width: 100%; height: 100%; object-fit: cover; }

.blog-featured-content h2 { margin: .75rem 0 1.2rem; }
.blog-featured-content p { font-size: .97rem; line-height: 1.85; margin-bottom: 1.8rem; }

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

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

@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-content { padding: 7rem 0 3rem; }
  .hero-image { height: 70vw; min-height: 380px; }
  .hero-image img { object-position: center 10%; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; gap: 2.5rem; }
  .pillar-grid, .serve-cards, .program-cards { grid-template-columns: 1fr; gap: 2px; }
  .blog-cards, .blog-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .statement-grid { grid-template-columns: 1fr; }
  .statement-image::after { display: none; }
  .about-hero-split, .contact-split { grid-template-columns: 1fr; }
  .about-hero-image { height: 70vw; min-height: 320px; }
  .about-hero-content, .contact-info, .contact-form-area { padding: 4rem 2rem; }
  .about-body-inner { grid-template-columns: 1fr; gap: 3rem; }
  .method-pillar-full { grid-template-columns: 1fr; gap: 2rem; }
  .service-item { grid-template-columns: 1fr; gap: 1rem; }
  .service-price { text-align: left; }
  .blog-featured { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .hero-content { padding: 6rem 0 2.5rem; padding-right: 0; }
  .hero-image { height: 85vw; min-height: 360px; }
  .hero-image img { object-position: center 8%; }
  .section { padding: 5rem 0; }
  .blog-cards, .blog-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .program-feature { padding: 2.5rem; }
  .blog-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .hero-content h1 { font-size: clamp(2rem, 8vw, 3rem); }
  .hero-content .lead { font-size: .95rem; }
  /* Testimonials: stack to 1 col on mobile */
  .testimonials-grid { grid-template-columns: 1fr; }
  /* Newsletter form: stack input and button vertically */
  .newsletter-form { flex-direction: column; max-width: 100%; }
  .newsletter-form input { border-right: 1.5px solid rgba(253,250,246,.4); border-bottom: none; }
  .newsletter-form button { width: 100%; }
  /* About hero image: ensure face visible */
  .about-hero-image img { object-position: center 15%; }
  /* Service price on mobile */
  .service-price { text-align: left; }
  /* Intro strip text */
  .intro-strip .container { text-align: center; }
}

@media (max-width: 480px) {
  .hero-image { height: 95vw; min-height: 320px; }
  .hero-image img { object-position: center 8%; }
  .section { padding: 4rem 0; }
  .newsletter-section { padding: 4rem 0; }
  .hero-content { padding: 5rem 0 2rem; padding-right: 0; }
  .btn-group { flex-direction: column; align-items: flex-start; }
  .hero-actions { flex-direction: column; align-items: flex-start; gap: .8rem; }
  .program-block, .mentorship-block { padding: 2rem 1.5rem; }
  .page-hero { padding: 7rem 0 4rem; }
  /* Testimonial cards: reduce padding on small phones */
  .testimonial-card { padding: 2rem 1.5rem; }
  /* Program cards: ensure text doesn't overflow */
  .program-card { padding: 2.5rem 1.5rem; }
  /* Footer: center on small phones */
  .footer-brand p { max-width: 100%; }
  /* Method page download cards: stack fully */
  .method-download-cards { flex-direction: column !important; }
  /* Blog post related cards: reduce padding */
  .post-card { padding: 0; }
}

/* ── MOBILE NAV OPEN ────────────────────────────────────── */

.site-nav.nav-open .nav-links {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--offwhite);
  justify-content: center;
  align-items: center;
  gap: 2rem;
  z-index: 200;
  overflow-y: auto;
  padding: 5rem 2rem 3rem;
}
.site-nav.nav-open .nav-links a {
  font-size: 1.1rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--charcoal);
}
.site-nav.nav-open .nav-links a:hover { color: var(--green); }
.site-nav.nav-open .nav-cta { display: block; margin: .5rem 0 0; }

/* Close button shown when nav is open */
.site-nav.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.site-nav.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}
.site-nav.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}
.site-nav.nav-open .nav-toggle {
  position: fixed;
  top: 1.2rem;
  right: 1.5rem;
  z-index: 201;
}

/* ── DIVIDER ────────────────────────────────────────────── */
.divider { width: 48px; height: 2px; background: var(--gold); margin: 1.5rem 0; }
.divider--center { margin-inline: auto; }
