/* ─── TOKENS ─────────────────────────────────────────── */
:root {
  --ink:     #2C322B;
  --ink-90:  rgba(44,50,43,.90);
  --navy:    #1E2C38;
  --cream:   #F5EEE1;
  --oat:     #ECE3D2;
  --ivory:   #F7F1E8;
  --ivory-d: #EDE6D8;
  --olive:   #6F7C53;
  --olive-d: #545F3E;
  --brass:   #B89B63;
  --brass-d: #9A8050;
  --sage:    #7E8F72;
  --stone:   #D8D1C4;
  --anchor:  #1E2A22;
  --white:   #FFFFFF;
  --serif:   'Newsreader', Georgia, serif;
  --sans:    'Inter', system-ui, sans-serif;
  --radius:  6px;
  --trans:   0.22s ease;
}

/* ─── RESET ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { background: var(--cream); color: var(--ink); font-family: var(--sans); -webkit-font-smoothing: antialiased; }
img { display: block; width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--sans); }

/* ─── UTILITIES ──────────────────────────────────────── */
.container { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 28px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }
@media (min-width: 901px) { .desktop-hidden { display: none !important; } }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: var(--radius);
  font-family: var(--sans); font-size: .9rem; font-weight: 500;
  letter-spacing: .02em; transition: var(--trans);
  white-space: nowrap;
}
.btn-primary {
  background: var(--olive-d); color: var(--cream);
}
.btn-primary:hover { background: #3f482e; transform: translateY(-1px); box-shadow: 0 6px 24px rgba(84,95,62,.34); }
.btn-outline {
  border: 1.5px solid currentColor; color: var(--ivory);
}
.btn-outline:hover { background: rgba(247,241,232,.08); }
.btn-outline-dark {
  border: 1.5px solid var(--navy); color: var(--navy);
}
.btn-outline-dark:hover { background: var(--navy); color: var(--cream); }

/* Photo placeholder */
.photo-placeholder {
  background: var(--stone);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 10px; padding: 40px 24px; text-align: center;
  color: #888; font-size: .8rem; font-family: var(--sans); line-height: 1.5;
}
.photo-placeholder span { font-size: 2rem; opacity: .4; }

/* Divider */
.divider {
  width: 48px; height: 2px; background: var(--olive); margin: 20px 0;
}
.divider-center { margin: 20px auto; }

/* Section labels */
.eyebrow {
  font-family: var(--sans); font-size: .72rem; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase; color: var(--olive);
}

/* Olive icon medallion */
.medallion {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--olive); color: var(--cream);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
}
.medallion svg { width: 22px; height: 22px; }
.medallion-overlap {
  margin-top: -46px; margin-bottom: 0; position: relative; z-index: 2;
  border: 3px solid var(--white);
}

/* Botanical logo mark */
.logo { display: inline-flex; align-items: center; gap: 10px; }
.logo-mark { width: 30px; height: 30px; flex-shrink: 0; color: var(--olive); }
.logo-mark svg { width: 100%; height: 100%; }
.logo-img { height: 110px; width: auto; display: block; }
@media (max-width: 600px) { .logo-img { height: 80px; } }

/* ─── HEADER ─────────────────────────────────────────── */
#header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: var(--cream);
  border-bottom: 1px solid rgba(30,44,56,.08);
  height: 120px; display: flex; align-items: center;
  transition: background var(--trans);
}
#header .container { display: flex; align-items: center; justify-content: space-between; }

.logo {
  font-family: var(--serif); font-size: 1.25rem; font-weight: 500;
  color: var(--navy); letter-spacing: .01em;
}
.logo-text > span { color: var(--olive); }

nav ul { display: flex; gap: 32px; }
nav a {
  font-size: .82rem; font-weight: 500; letter-spacing: .04em;
  color: rgba(30,44,56,.72); text-transform: uppercase;
  transition: color var(--trans); position: relative;
}
nav a::after {
  content: ''; position: absolute; left: 0; bottom: -3px;
  width: 0; height: 1px; background: var(--olive);
  transition: width var(--trans);
}
nav a:hover { color: var(--navy); }
nav a:hover::after { width: 100%; }
nav a[aria-current="page"] { color: var(--navy); }
nav a[aria-current="page"]::after { width: 100%; }

.header-cta { display: flex; align-items: center; gap: 16px; }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 1.5px; background: var(--navy); transition: var(--trans); }

/* Mobile nav drawer */
#mobile-nav {
  display: none; position: fixed; inset: 0; z-index: 99;
  background: var(--cream); padding: 100px 28px 40px;
  flex-direction: column; gap: 32px;
  transform: translateX(100%); transition: transform .3s ease;
}
#mobile-nav.open { transform: translateX(0); }
#mobile-nav a {
  font-family: var(--serif); font-size: 1.5rem; color: var(--navy);
  display: block; padding: 8px 0; border-bottom: 1px solid rgba(30,44,56,.1);
}
#mobile-nav .btn { margin-top: 8px; justify-content: center; }

/* Mobile sticky bottom CTA */
#mobile-cta-bar {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 98;
  background: var(--ink); border-top: 1px solid rgba(255,255,255,.08);
  padding: 12px 20px;
}
#mobile-cta-bar .btn { width: 100%; justify-content: center; font-size: .9rem; }

/* ─── HERO ───────────────────────────────────────────── */
#hero {
  min-height: 100vh; background: var(--cream);
  display: flex; align-items: center; padding-top: 120px;
  position: relative; overflow: visible; z-index: 0;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg picture { display: block; width: 100%; height: 100%; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; }
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(245,238,225,.80) 0%, rgba(245,238,225,.50) 32%, rgba(245,238,225,.12) 58%, rgba(245,238,225,0) 76%);
}
#hero .container { position: relative; z-index: 1; }

.hero-copy { position: relative; z-index: 1; max-width: 560px; }
.hero-copy h1, .hero-copy .sub { text-shadow: 0 1px 12px rgba(245,238,225,.55); }
.hero-copy h1 {
  font-family: var(--serif); font-size: clamp(2.8rem, 5.2vw, 4.4rem);
  font-weight: 400; line-height: 1.12; color: var(--navy);
  margin-bottom: 24px; letter-spacing: -.01em;
}
.hero-copy h1 em { font-style: italic; color: #8a6a33; }
.hero-copy .sub {
  font-size: 1.18rem; line-height: 1.7; color: #5a5f54;
  max-width: 560px; margin-bottom: 36px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* Hero photo card */
.hero-photo-wrap {
  position: relative; z-index: 1;
}
.hero-photo-frame {
  position: relative;
}
.hero-photo-frame::before {
  content: ''; position: absolute;
  top: 16px; right: -16px; bottom: -16px; left: 16px;
  border: 1.5px solid var(--olive); border-radius: var(--radius);
  opacity: .55; z-index: 0;
}
.hero-photo-frame .photo-inner {
  position: relative; z-index: 1; border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 4/5;
}
.hero-photo-frame .photo-inner img,
.hero-photo-frame .photo-inner .photo-placeholder {
  width: 100%; height: 100%; object-fit: cover;
  border-radius: var(--radius);
}

/* ─── TRUST BAR ──────────────────────────────────────── */
/* REVERT: #trust{background:var(--oat);border-top:1px solid rgba(30,44,56,.06);padding:28px 0}
   .trust-items{gap:0;border:1px solid rgba(30,44,56,.1);border-radius:var(--radius);overflow:hidden}
   .trust-item{flex:1 1 25%;border-right:1px solid rgba(30,44,56,.1);background:transparent;backdrop-filter:none;border-radius:0;box-shadow:none}
   .trust-item strong{color:var(--olive)} .trust-item span{color:#7a7c70}
   Remove margin-top:-72px and z-index:10 from #trust; restore overflow:hidden + remove z-index:0 from #hero */
#trust {
  background: transparent; border-top: none;
  padding: 0;
  position: relative; z-index: 10;
  margin-top: -90px;
}
.trust-items {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 12px; border: none; border-radius: 0; overflow: visible;
}
.trust-item {
  flex: 1 1 calc(25% - 12px); min-width: 0;
  padding: 22px 24px; text-align: center;
  display: flex; flex-direction: column; gap: 4px;
  background: rgba(245,238,225,0.62);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(245,238,225,0.55);
  border-radius: var(--radius);
  box-shadow: 0 4px 28px rgba(30,44,56,.22);
}
.trust-item strong {
  font-family: var(--serif); font-size: 1.1rem; color: var(--navy);
  font-weight: 400;
}
.trust-item span {
  font-size: .78rem; color: #4a4f44; letter-spacing: .04em;
}
/* 2-col at 860 */
@media (max-width: 860px) {
  .trust-item { flex: 1 1 calc(50% - 12px); }
}
/* 1-col at 460 (desktop glass + mobile oat both collapse to 1-col) */
@media (max-width: 460px) {
  .trust-item { flex: 1 1 100%; }
  .trust-item:nth-child(2) { border-right: none; }
  .trust-item { border-bottom: 1px solid rgba(30,44,56,.1); }
  .trust-item:last-child { border-bottom: none; }
}

/* ─── SECTION HEAD ───────────────────────────────────── */
.section-head { text-align: center; margin-bottom: 60px; }
.section-head h2 {
  font-family: var(--serif); font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 400; color: var(--navy); line-height: 1.25; margin-top: 16px;
}

/* ─── PHOTO DIVIDER ──────────────────────────────────── */
.photo-divider { display: none; }

/* ─── OUR MISSION ────────────────────────────────────── */
#mission {
  background: linear-gradient(rgba(30,42,34,.60), rgba(30,42,34,.68)), url('images/nature.webp') center/cover no-repeat;
  background-color: var(--anchor);
  padding: 120px 0;
  position: relative; overflow: hidden;
}
.feels-inner { max-width: 780px; margin: 0 auto; text-align: center; position: relative; z-index: 1; }
.quote-mark {
  font-family: var(--serif); font-size: 5rem; line-height: .6;
  color: var(--brass); opacity: .5; margin-bottom: 16px; display: block;
}
.feels-inner blockquote {
  font-family: var(--serif); font-size: clamp(1.45rem, 2.8vw, 2rem);
  font-weight: 400; line-height: 1.5; color: var(--ivory);
  margin-bottom: 48px; font-style: italic;
}
.mission-body { font-size: 1.05rem; line-height: 1.8; color: rgba(247,241,232,.78); max-width: 680px; margin: 0 auto; }
.about-pills { display: flex; gap: 12px; flex-wrap: wrap; margin: 24px 0 28px; }
.about-pills span {
  font-family: var(--sans); font-size: .76rem; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase; color: var(--olive-d);
  border: 1px solid var(--olive); border-radius: 100px; padding: 8px 18px;
}

/* ─── ABOUT ──────────────────────────────────────────── */
#about {
  background: var(--ivory-d) url('images/cream-texture.webp') center/cover;
  background-blend-mode: multiply;
  padding: 100px 0;
}
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.about-photo { border-radius: var(--radius); overflow: hidden; }
.about-photo img { aspect-ratio: 3/4; object-fit: cover; object-position: top; border-radius: var(--radius); width: 100%; }
.about-copy .eyebrow { margin-bottom: 14px; }
.about-copy h2 {
  font-family: var(--serif); font-size: clamp(1.7rem, 2.8vw, 2.4rem);
  font-weight: 400; line-height: 1.25; margin-bottom: 22px; color: var(--navy);
}
.about-copy p {
  font-size: 1rem; line-height: 1.8; color: #4a4a4a; margin-bottom: 20px;
}
.about-copy .btn { margin-top: 12px; }

/* ─── PILLAR CARDS (coaching.html photo+info hybrid) ─── */
.pillars-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
@media (max-width: 1100px) { .pillars-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .pillars-grid { grid-template-columns: 1fr; } }
.pillar-card {
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--stone); background: var(--white);
  transition: transform var(--trans), box-shadow var(--trans);
}
.pillar-card:hover { transform: translateY(-3px); box-shadow: 0 18px 44px rgba(30,44,56,.1); }
.pillar-card-photo { height: 220px; overflow: hidden; }
.pillar-card-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.pillar-card:hover .pillar-card-photo img { transform: scale(1.05); }
.pillar-card-body { padding: 28px; }
.pillar-card-body .medallion { margin-bottom: 0; }
.pillar-card-body h3 { font-family: var(--serif); font-size: 1.3rem; font-weight: 400; color: var(--navy); margin: 14px 0 10px; line-height: 1.2; }
.pillar-card-body .desc { font-size: .9rem; line-height: 1.7; color: #5a5f54; margin-bottom: 18px; }

/* ─── SERVICES ───────────────────────────────────────── */
#services {
  background: var(--cream); padding: 100px 0;
  position: relative; overflow: hidden;
}
#services .section-head h2 { color: var(--navy); }
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px; position: relative; z-index: 1;
}
.service-card {
  background: var(--white); border: 1px solid var(--stone); border-radius: var(--radius);
  padding: 40px 32px;
  transition: border-color var(--trans), transform var(--trans), box-shadow var(--trans);
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--olive); transform: scaleX(0); transform-origin: left;
  transition: transform .35s ease;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
  border-color: rgba(111,124,83,.4); transform: translateY(-3px);
  box-shadow: 0 18px 44px rgba(30,44,56,.1);
}
.service-num {
  font-family: var(--serif); font-size: .8rem; color: var(--olive);
  opacity: .5; margin-bottom: 10px; display: block; letter-spacing: .08em;
}
.leaf-art {
  position: absolute; top: 40px; right: -20px; width: 200px; height: 400px;
  color: var(--olive); opacity: .07; pointer-events: none; z-index: 0;
}
.leaf-art svg { width: 100%; height: 100%; }
.service-card h3 {
  font-family: var(--serif); font-size: 1.35rem; font-weight: 400;
  color: var(--navy); margin-bottom: 14px; line-height: 1.3;
}
.service-card .desc {
  font-size: .9rem; line-height: 1.7; color: #5a5f54;
  margin-bottom: 12px;
}
.service-link {
  font-size: .78rem; font-weight: 600; letter-spacing: .06em;
  text-transform: uppercase; color: var(--olive);
  display: inline-flex; align-items: center; gap: 8px;
  transition: gap var(--trans); margin-top: 6px;
}
.service-link:hover { gap: 14px; }
.service-link::after { content: '→'; }

/* ─── INTERACTIVE PILLARS (services) ─────────────────── */
.pillars {
  display: flex; gap: 14px; height: 460px;
  position: relative; z-index: 1;
}
.pillar {
  position: relative; flex: 1; min-width: 0; overflow: hidden;
  border-radius: var(--radius); cursor: pointer;
  transition: flex .5s cubic-bezier(.4,0,.2,1);
  display: block; text-decoration: none;
}
.pillar img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; transition: transform .6s ease;
}
.pillar:hover img { transform: scale(1.05); }
.pillar-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(18,26,20,.85) 0%, rgba(18,26,20,.45) 40%, rgba(18,26,20,.12) 75%);
  transition: background .4s ease;
}
.pillar-content {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 1;
  padding: 26px 24px; color: var(--ivory);
}
.pillar-content .medallion { margin-bottom: 14px; }
.pillar-content h3 {
  font-family: var(--serif); font-weight: 400; font-size: 1.3rem;
  line-height: 1.2; color: var(--ivory);
}
.pillar-desc, .pillar-cta {
  opacity: 0; max-height: 0; overflow: hidden;
  transition: opacity .4s ease, max-height .4s ease, margin .4s ease;
}
.pillar-desc {
  font-size: .92rem; line-height: 1.6; color: rgba(247,241,232,.82); margin-top: 0;
}
.pillar-cta {
  display: inline-block; font-size: .78rem; font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase; color: var(--brass);
}
/* expand interaction (desktop) */
.pillars:hover .pillar { flex: .65; }
.pillars .pillar:hover { flex: 2.6; }
.pillar:hover .pillar-desc { opacity: 1; max-height: 120px; margin-top: 12px; }
.pillar:hover .pillar-cta { opacity: 1; max-height: 40px; margin-top: 14px; }
.pillar:hover .pillar-scrim {
  background: linear-gradient(to top, rgba(18,26,20,.9) 0%, rgba(18,26,20,.55) 45%, rgba(18,26,20,.18) 80%);
}

@media (max-width: 900px) {
  .pillars { flex-direction: column; height: auto; }
  .pillar, .pillars:hover .pillar, .pillars .pillar:hover { flex: 0 0 auto; height: 320px; }
  .pillar img { object-position: center 28%; }
  .pillar-desc, .pillar-cta { opacity: 1; max-height: none; overflow: visible; }
  .pillar-desc { margin-top: 10px; }
  .pillar-cta { margin-top: 12px; }
}

/* ─── TESTIMONIALS ───────────────────────────────────── */
#testimonials {
  background: var(--oat); padding: 100px 0;
}
#testimonials .section-head h2 { color: var(--navy); }
.testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 960px) {
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .testimonials-grid { grid-template-columns: 1fr; }
}
.testimonial-card {
  background: var(--white); border: 1px solid var(--stone);
  border-radius: var(--radius); padding: 36px 30px;
  transition: box-shadow var(--trans), transform var(--trans);
}
.testimonial-card:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(30,44,56,.08); }
.testimonial-tag {
  font-size: .7rem; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; color: var(--olive); margin-bottom: 18px; display: block;
}
.testimonial-card blockquote {
  font-family: var(--serif); font-size: 1rem; line-height: 1.75;
  color: #45483f; font-style: italic; margin-bottom: 24px;
}
.testimonial-author {
  font-size: .8rem; color: #8a8a7e; letter-spacing: .04em;
}

/* ─── ARTICLES ───────────────────────────────────────── */
#articles {
  background: var(--ivory); padding: 100px 0;
}
.articles-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px; margin-top: 56px;
}
.article-card {
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--stone);
  transition: box-shadow var(--trans), transform var(--trans);
}
.article-card:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(13,21,28,.1); }
.article-thumb { aspect-ratio: 16/9; overflow: hidden; position: relative; }
.article-thumb img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.article-card:hover .article-thumb img { transform: scale(1.04); }
.article-thumb .photo-placeholder { height: 100%; }
.article-body { padding: 28px 24px; background: var(--white); }
.article-cat {
  font-size: .7rem; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; color: var(--olive); margin-bottom: 10px; display: block;
}
.article-body h3 {
  font-family: var(--serif); font-size: 1.1rem; font-weight: 400;
  line-height: 1.4; color: var(--navy); margin-bottom: 10px;
}
.article-body p { font-size: .85rem; color: #666; line-height: 1.65; margin-bottom: 18px; }
.article-link {
  font-size: .78rem; font-weight: 600; letter-spacing: .08em;
  text-transform: uppercase; color: var(--olive);
  display: inline-flex; align-items: center; gap: 6px;
  transition: gap var(--trans);
}
.article-link:hover { gap: 12px; }
.article-link::after { content: '→'; }

/* ─── FAQ ────────────────────────────────────────────── */
#faq {
  background: var(--ivory-d) url('images/cream-texture.webp') center/cover;
  background-blend-mode: multiply;
  padding: 100px 0;
}
.faq-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px 60px;
  margin-top: 56px;
}
.faq-item { padding-bottom: 28px; border-bottom: 1px solid var(--stone); }
.faq-item h4 {
  font-family: var(--serif); font-size: 1.05rem; font-weight: 400;
  color: var(--navy); margin-bottom: 10px;
}
.faq-item p { font-size: .9rem; line-height: 1.75; color: #555; }

/* ─── FINAL CTA ──────────────────────────────────────── */
#cta-final {
  background: linear-gradient(rgba(20,28,22,.80), rgba(20,28,22,.90)), url('images/cta-bg.webp') center/cover no-repeat;
  background-color: var(--anchor);
  padding: 120px 0; text-align: center;
  position: relative; overflow: hidden;
}
#cta-final::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(184,155,99,.12) 0%, transparent 70%);
  pointer-events: none;
}
#cta-final .eyebrow { color: var(--brass); }
.cta-inner { position: relative; z-index: 1; max-width: 620px; margin: 0 auto; }
.cta-inner .eyebrow { margin-bottom: 20px; }
.cta-inner h2 {
  font-family: var(--serif); font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400; color: var(--ivory); line-height: 1.2; margin-bottom: 20px;
}
.cta-inner p {
  font-size: 1rem; color: rgba(247,241,232,.6); line-height: 1.7; margin-bottom: 36px;
}
.cta-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 14px; }

/* ─── FOOTER ─────────────────────────────────────────── */
footer {
  background: var(--anchor); border-top: 1px solid rgba(255,255,255,.06);
  padding: 64px 0 0;
  color: rgba(247,241,232,.45);
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 56px;
}
.footer-brand .logo { font-size: 1.1rem; margin-bottom: 14px; color: var(--ivory); }
.footer-brand .logo .logo-text > span { color: var(--brass); }
.footer-brand p { font-size: .85rem; line-height: 1.7; max-width: 280px; }
.footer-brand .contact { margin-top: 20px; font-size: .85rem; line-height: 1.9; }
.footer-col h5 {
  font-family: var(--sans); font-size: .72rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase; color: rgba(247,241,232,.3);
  margin-bottom: 16px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a {
  font-size: .85rem; color: rgba(247,241,232,.45);
  transition: color var(--trans);
}
.footer-col ul a:hover { color: var(--brass); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06); padding: 24px 0;
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px;
  font-size: .75rem; color: rgba(247,241,232,.25);
}
.footer-disclaimer {
  background: rgba(255,255,255,.03); padding: 20px 28px;
  border-radius: var(--radius); margin-bottom: 24px;
  font-size: .78rem; line-height: 1.7; color: rgba(247,241,232,.3);
  max-width: 700px;
}

/* 4-pillar services grid */
.services-grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1100px) { .services-grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .services-grid-4 { grid-template-columns: 1fr; } }

/* ─── INDIVIDUAL COACHING DEEP-DIVE ──────────────────── */
#deep-dive { background: var(--ivory); padding: 100px 0; }
.deep-grid {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 64px; align-items: start;
}
.deep-left .eyebrow { margin-bottom: 14px; }
.deep-left h2 {
  font-family: var(--serif); font-size: clamp(1.7rem,2.8vw,2.4rem);
  font-weight: 400; line-height: 1.25; color: var(--navy); margin-bottom: 22px;
}
.deep-block { margin-bottom: 28px; }
.deep-block h4 {
  font-family: var(--sans); font-size: .72rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase; color: var(--olive);
  margin-bottom: 8px;
}
.deep-block p { font-size: 1rem; line-height: 1.7; color: #4a4a4a; }
.focus-list { display: flex; flex-direction: column; gap: 14px; margin-top: 4px; }
.focus-list li {
  display: flex; gap: 14px; align-items: flex-start;
  font-size: .98rem; line-height: 1.6; color: var(--ink);
  padding-bottom: 14px; border-bottom: 1px solid var(--stone);
}
.focus-list li:last-child { border-bottom: none; }
.focus-list .marker {
  flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%;
  background: var(--olive); color: var(--cream);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: .8rem; margin-top: 1px;
}
.deep-outcome {
  margin-top: 32px; padding: 24px 28px; border-left: 3px solid var(--olive);
  background: var(--white); border-radius: 0 var(--radius) var(--radius) 0;
}
.deep-outcome p {
  font-family: var(--serif); font-style: italic; font-size: 1.15rem;
  line-height: 1.5; color: var(--navy);
}

/* ─── IMAGE BAND ─────────────────────────────────────── */
#image-band { height: clamp(360px, 40vw, 640px); overflow: hidden; position: relative; }
#image-band img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
#image-band::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(245,238,225,.15), rgba(30,42,34,.18));
  pointer-events: none;
}
@media (max-width: 600px) { #image-band { height: 300px; } }

/* ─── FROM CHALLENGE TO CLARITY ──────────────────────── */
#clarity-map { background: var(--ivory-d); padding: 100px 0; }
#clarity-map .section-head h2 { color: var(--navy); }
.clarity-rows { display: flex; flex-direction: column; gap: 1px; background: var(--stone); border: 1px solid var(--stone); border-radius: var(--radius); overflow: hidden; }
.clarity-row {
  display: grid; grid-template-columns: 1fr 1.4fr auto 1.4fr; gap: 24px;
  align-items: center; padding: 26px 32px; background: var(--white);
  transition: background var(--trans);
}
.clarity-row:hover { background: #fbf8f1; }
.clarity-aud { font-family: var(--serif); font-size: 1.2rem; color: var(--navy); }
.clarity-from { font-size: .92rem; color: #8a8a7e; }
.clarity-arrow { color: var(--olive); font-size: 1.1rem; }
.clarity-to { font-size: .98rem; color: var(--olive-d); font-weight: 500; }
@media (max-width: 760px) {
  .clarity-row { grid-template-columns: 1fr; gap: 8px; text-align: left; padding: 22px 24px; }
  .clarity-arrow { display: none; }
  .clarity-to::before { content: '→ '; color: var(--olive); }
}

/* ─── WORKING TOGETHER ───────────────────────────────── */
#working { background: var(--ivory-d); padding: 100px 0; }
.working-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.working-card {
  background: var(--white); border: 1px solid var(--stone);
  border-radius: var(--radius); padding: 36px 30px;
  transition: transform var(--trans), box-shadow var(--trans);
}
.working-card:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(13,21,28,.08); }
.working-featured { border-color: var(--olive); position: relative; }
.working-badge {
  position: absolute; top: -11px; left: 30px;
  background: var(--olive); color: var(--cream);
  font-family: var(--sans); font-size: .68rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 5px 14px; border-radius: 100px;
}
.working-card h3 {
  font-family: var(--serif); font-size: 1.3rem; font-weight: 400;
  color: var(--navy); margin-bottom: 12px;
}
.working-card > p { font-size: .92rem; line-height: 1.65; color: #555; margin-bottom: 22px; }
.working-list { display: flex; flex-direction: column; gap: 12px; }
.working-list li {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: .9rem; line-height: 1.5; color: var(--ink);
}
.working-list .tick { color: var(--olive); flex-shrink: 0; font-weight: 600; }
@media (max-width: 860px) { .working-grid { grid-template-columns: 1fr; } }

/* ─── STATS BAND ─────────────────────────────────────── */
.stats-band {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  margin-top: 64px; padding-top: 56px; border-top: 1px solid rgba(30,44,56,.12);
}
.stat { text-align: center; }
.stat strong {
  display: block; font-family: var(--serif); font-size: clamp(2.2rem,4vw,3rem);
  font-weight: 400; color: var(--olive); line-height: 1;
}
.stat span { font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; color: #8a8a7e; margin-top: 10px; display: block; }
@media (max-width: 560px) { .stats-band { grid-template-columns: 1fr; gap: 32px; } }

/* ─── NEWSLETTER ─────────────────────────────────────── */
#newsletter { background: var(--cream); padding: 90px 0; }
.news-inner { max-width: 560px; margin: 0 auto; text-align: center; }
.news-inner h2 {
  font-family: var(--serif); font-size: clamp(1.6rem,2.6vw,2.2rem);
  font-weight: 400; color: var(--navy); margin: 14px 0 14px;
}
.news-inner p { font-size: .98rem; color: #555; line-height: 1.6; margin-bottom: 28px; }
.news-form { display: flex; gap: 10px; max-width: 440px; margin: 0 auto; }
.news-form input {
  flex: 1; padding: 14px 18px; border: 1.5px solid var(--stone);
  border-radius: var(--radius); font-family: var(--sans); font-size: .92rem;
  background: var(--white); color: var(--ink); transition: border-color var(--trans);
}
.news-form input:focus { outline: none; border-color: var(--olive); }
.news-form button { white-space: nowrap; }
@media (max-width: 480px) { .news-form { flex-direction: column; } }

/* ─── INNER PAGE HERO (subpages) ─────────────────────── */
#page-hero {
  background: var(--cream); padding: 132px 0 64px;
  position: relative; overflow: hidden;
}
.page-hero-grid {
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items: center;
}
.page-hero-copy h1 {
  font-family: var(--serif); font-size: clamp(2rem, 3.6vw, 3rem);
  font-weight: 400; line-height: 1.18; color: var(--navy); margin: 14px 0 20px;
}
.page-hero-copy .lead {
  font-size: 1.08rem; line-height: 1.7; color: #5a5f54; max-width: 520px; margin-bottom: 30px;
}
.page-hero-photo { border-radius: var(--radius); overflow: hidden; position: relative; }
.page-hero-photo img { width: 100%; height: auto; border-radius: var(--radius); }
@media (max-width: 860px) {
  .page-hero-grid { grid-template-columns: 1fr; gap: 32px; }
  #page-hero { padding: 110px 0 48px; }
}

/* Breadcrumb */
.breadcrumb { font-size: .76rem; letter-spacing: .04em; color: #8a8a7e; margin-bottom: 4px; }
.breadcrumb a { color: var(--olive); }
.breadcrumb a:hover { color: var(--olive-d); }
.breadcrumb span { margin: 0 6px; opacity: .6; }

/* Generic prose section for subpages */
.prose-section { padding: 90px 0; }
.prose-section.alt { background: var(--oat); }
.prose-wrap { max-width: 760px; margin: 0 auto; }
.prose-wrap h2 {
  font-family: var(--serif); font-size: clamp(1.6rem,2.6vw,2.2rem); font-weight: 400;
  color: var(--navy); margin-bottom: 18px; line-height: 1.3;
}
.prose-wrap h3 {
  font-family: var(--serif); font-size: 1.25rem; font-weight: 400;
  color: var(--navy); margin: 32px 0 12px;
}
.prose-wrap p { font-size: 1.02rem; line-height: 1.8; color: #4a4a4a; margin-bottom: 18px; }
.prose-wrap ul.checks { display: flex; flex-direction: column; gap: 14px; margin: 8px 0 8px; }
.prose-wrap ul.checks li {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 1rem; line-height: 1.6; color: var(--ink);
}
.prose-wrap ul.checks .tick { color: var(--olive); font-weight: 600; flex-shrink: 0; }

/* Related links grid (subpage cross-links) */
.related { background: var(--cream); padding: 80px 0; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px; }
.related-card {
  background: var(--white); border: 1px solid var(--stone); border-radius: var(--radius);
  padding: 28px 26px; transition: transform var(--trans), box-shadow var(--trans);
}
.related-card:hover { transform: translateY(-3px); box-shadow: 0 14px 36px rgba(30,44,56,.08); }
.related-card h3 { font-family: var(--serif); font-size: 1.15rem; font-weight: 400; color: var(--navy); margin-bottom: 8px; }
.related-card p { font-size: .88rem; color: #5a5f54; line-height: 1.6; margin-bottom: 14px; }
@media (max-width: 760px) { .related-grid { grid-template-columns: 1fr; } }

/* ─── RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 900px) {
  nav, .header-cta .btn { display: none; }
  .hamburger { display: flex; }
  #mobile-nav { display: flex; }
  #mobile-cta-bar { display: block; }
  body { padding-bottom: 72px; }

  #hero { display: block; min-height: 0; padding-top: 0; padding-bottom: 0; overflow: hidden; }
  #hero .container { padding-top: 96px; padding-bottom: 32px; }
  .hero-bg { position: relative; }
  .hero-bg::after { display: block; background: linear-gradient(to bottom, transparent 40%, rgba(30,42,34,.9) 95%); }
  .hero-bg img { height: 54vh; object-position: center 22%; }
  .hero-copy { max-width: none; }
  .hero-copy h1 { font-size: 2.5rem; }

  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-photo { max-width: 360px; }

  .deep-grid { grid-template-columns: 1fr; gap: 40px; }

  .steps { grid-template-columns: 1fr; gap: 40px; }

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

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-brand { grid-column: 1/-1; }

  /* On mobile the primary button duplicates the sticky "Let's Talk" CTA */
  .hero-actions .btn-primary { display: none; }

  /* Glass trust bar on mobile — matches desktop overlap effect */
  #trust {
    background: var(--anchor); border-top: none;
    padding: 0; margin-top: -60px; z-index: 10;
  }
  .trust-items {
    gap: 10px; border: none; border-radius: 0; overflow: visible;
  }
  .trust-item {
    flex: 1 1 calc(50% - 10px);
    background: rgba(245,238,225,0.62);
    backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(245,238,225,0.55);
    border-radius: var(--radius);
    box-shadow: 0 4px 28px rgba(30,44,56,.22);
    border-right: none;
  }
  .trust-item:nth-child(2) { border-right: none; }
  .trust-item:nth-child(1), .trust-item:nth-child(2) { border-bottom: none; }
  .trust-item strong { color: var(--navy); }
  .trust-item span { color: #4a4f44; }
}

@media (max-width: 600px) {
  .container { padding: 0 20px; }
  #mission, #about, #services,
  #testimonials, #articles, #faq, #cta-final { padding: 72px 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-col { display: none; }
  .footer-brand { grid-column: 1; }
  .hero-copy h1 { font-size: 2.2rem; }
  .feels-inner blockquote { font-size: 1.3rem; }
}
