:root {
  --ink:    #0E1117;
  --paper:  #F8F5EF;
  --cream:  #EDE8DF;
  --teal:   #1286B5;
  --teal2:  #0E6EA0;
  --gold:   #C8860A;
  --coral:  #D04F3A;
  --purple: #5B3FA0;
  --sage:   #5A7A52;
  --sky:    #2766A8;
  --muted:  #6B6558;
  --border: rgba(14,17,23,0.1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--paper);
  color: var(--ink);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ── NOISE TEXTURE ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1000;
  opacity: 0.4;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: rgba(248,245,239,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 3rem;
}
.nav-brand { display: flex; align-items: center; text-decoration: none; }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a { font-size: .85rem; font-weight: 600; color: var(--muted); text-decoration: none; letter-spacing: .02em; transition: color .2s; }
.nav-links a:hover { color: var(--teal); }
.nav-cta {
  background: var(--teal); color: white; border: none; padding: .55rem 1.4rem;
  border-radius: 2px; font-size: .85rem; font-weight: 700; cursor: pointer;
  font-family: 'DM Sans', sans-serif; letter-spacing: .03em; transition: background .2s;
}
.nav-cta:hover { background: var(--teal2); }

/* ── HERO ── */
.hero {
  min-height: 30vh;
  background: #1B2A3B;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}

/* Animated gradient orbs */
.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  left: -10%;
  width: 70%;
  height: 80%;
  background: radial-gradient(ellipse, rgba(18,134,181,.18) 0%, transparent 65%);
  animation: hero-orb1 8s ease-in-out infinite alternate;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -20%;
  right: -10%;
  width: 60%;
  height: 70%;
  background: radial-gradient(ellipse, rgba(200,134,10,.12) 0%, transparent 65%);
  animation: hero-orb2 10s ease-in-out infinite alternate;
  pointer-events: none;
}
@keyframes hero-orb1 {
  from { transform: translate(0,0) scale(1); }
  to   { transform: translate(4%,3%) scale(1.08); }
}
@keyframes hero-orb2 {
  from { transform: translate(0,0) scale(1); }
  to   { transform: translate(-3%,-4%) scale(1.1); }
}

/* Grid lines texture */
.hero-grid-lines {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-left {
  display: flex; flex-direction: column; justify-content: center; align-items: flex-start;
  text-align: left;
  padding: 1rem 3rem 0rem 4rem;
  position: relative; z-index: 2;
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  font-size: .62rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--gold);
  background: rgba(200,134,10,.1);
  border: 1px solid rgba(200,134,10,.25);
  padding: .3rem .85rem;
  border-radius: 100px;
  margin-bottom: 1rem;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -.03em;
  margin-bottom: .8rem;
  color: white;
}
.hero h1 em { font-style: italic; color: #29C5F6; display: block; font-weight: 900; text-shadow: 0 0 32px rgba(41,197,246,.35); }
.hero h1 .hero-highlight {
  color: var(--teal);
  -webkit-text-stroke: 0;
  display: block;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: .92;
  letter-spacing: -.04em;
}
.hero h1 .hero-title-large {
  color: white;
  display: block;
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  letter-spacing: -.03em;
  line-height: 1.05;
  font-style: normal;
}

.hero-sub {
  font-size: .88rem; color: rgba(255,255,255,.68); max-width: 400px; line-height: 1.7;
  margin: 0 0 1.4rem;
}
.hero-sub strong { color: white; }

.hero-actions { display: flex; gap: .7rem; flex-wrap: wrap; justify-content: flex-start; margin-bottom: 1.5rem; }

.btn-primary {
  background: var(--teal); color: white; padding: .65rem 1.6rem;
  border: none; border-radius: 3px; font-family: 'DM Sans', sans-serif;
  font-size: .82rem; font-weight: 700; cursor: pointer; text-decoration: none;
  display: inline-flex; align-items: center; gap: .5rem;
  transition: all .25s; letter-spacing: .02em;
  box-shadow: 0 4px 20px rgba(18,134,181,.4);
}
.btn-primary:hover { background: var(--teal2); transform: translateY(-3px); box-shadow: 0 12px 32px rgba(18,134,181,.5); }

.btn-outline {
  background: rgba(255,255,255,.07); color: rgba(255,255,255,.88); padding: .65rem 1.6rem;
  border: 1.5px solid rgba(255,255,255,.22); border-radius: 3px; font-family: 'DM Sans', sans-serif;
  font-size: .82rem; font-weight: 600; cursor: pointer; text-decoration: none;
  display: inline-flex; align-items: center; gap: .5rem; transition: all .25s;
}
.btn-outline:hover { background: rgba(255,255,255,.15); border-color: rgba(255,255,255,.4); color: white; transform: translateY(-2px); }

/* Floating skill badges */
.hero-badges {
  display: flex; flex-wrap: wrap; gap: .35rem; justify-content: flex-start;
  max-width: 480px; margin: 0 0 1.5rem;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: .4rem;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 100px;
  padding: .22rem .65rem;
  font-size: .67rem; font-weight: 600; color: rgba(255,255,255,.68);
  transition: all .2s;
  animation: badge-float 0.4s ease both;
}
.hero-badge:hover { background: rgba(18,134,181,.2); border-color: var(--teal); color: white; }
.hero-badge span { font-size: .85rem; }
@keyframes badge-float {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-badge:nth-student(1)  { animation-delay: .1s; }
.hero-badge:nth-student(2)  { animation-delay: .15s; }
.hero-badge:nth-student(3)  { animation-delay: .2s; }
.hero-badge:nth-student(4)  { animation-delay: .25s; }
.hero-badge:nth-student(5)  { animation-delay: .3s; }
.hero-badge:nth-student(6)  { animation-delay: .35s; }
.hero-badge:nth-student(7)  { animation-delay: .4s; }
.hero-badge:nth-student(8)  { animation-delay: .45s; }
.hero-badge:nth-student(9)  { animation-delay: .5s; }
.hero-badge:nth-student(10) { animation-delay: .55s; }
.hero-badge:nth-student(11) { animation-delay: .6s; }
.hero-badge:nth-student(12) { animation-delay: .65s; }

/* Stats bar */
.hero-stats {
  display: flex; gap: 0;
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 1.2rem;
  width: 100%;
  max-width: 380px;
}
.stat-item {
  display: flex; flex-direction: column; align-items: flex-start;
  padding: 0 1.4rem;
  border-right: 1px solid rgba(255,255,255,.1);
}
.stat-item:first-student { padding-left: 0; }
.stat-item:last-student { border-right: none; }
.stat-num { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 900; color: var(--teal); line-height: 1; }
.stat-lbl { font-size: .6rem; font-weight: 600; color: rgba(255,255,255,.38); letter-spacing: .07em; text-transform: uppercase; margin-top: .15rem; }

.hero-right {
  position: relative;
  overflow: hidden;
  padding-top: 2.5rem;
}
.hero-right-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
/* The bleed — image fades into the dark background from left */
.hero-right::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    #1B2A3B 0%,
    rgba(27,42,59,.85) 12%,
    rgba(27,42,59,.4) 32%,
    rgba(27,42,59,.0) 58%
  );
  z-index: 1;
  pointer-events: none;
}
/* Bottom fade so image dissolves into the page below */
.hero-right::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 35%;
  background: linear-gradient(to top, #1B2A3B 0%, transparent 100%);
  z-index: 2;
  pointer-events: none;
}
.hero-right-inner {
  padding: 1rem 2.5rem 0rem 2.5rem;
  position: relative; z-index: 2;
  width: 100%;
  display: flex; flex-direction: column; justify-content: center;
  gap: 1rem;
}
.hero-visual-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem; font-weight: 900;
  color: white; margin-bottom: 1rem;
  line-height: 1.15;
}
.hero-visual-title span { color: var(--gold); font-style: italic; }

/* Skill cards replacing pills */
.brain-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: .65rem;
  flex: 1;
}
.brain-pill {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 10px;
  padding: 1.1rem 1rem;
  display: flex; flex-direction: column; gap: .5rem;
  cursor: default; transition: all .25s;
  animation: float-in .5s ease both;
  min-height: 110px;
}
.brain-pill:hover {
  background: rgba(255,255,255,.14);
  border-color: rgba(255,255,255,.28);
  transform: translateY(-2px);
}
.brain-pill-top { display: flex; align-items: center; gap: .6rem; }
.brain-pill .dot { width: 9px; height: 9px; border-radius: 50%; flex-shrink: 0; }
.brain-pill-icon { font-size: 1.5rem; margin-bottom: .2rem; }
.brain-pill-name {
  font-size: .95rem; font-weight: 800; color: #ffffff; line-height: 1.2;
  letter-spacing: -.01em;
}
.brain-pill-desc {
  font-size: .78rem; color: rgba(255,255,255,.72); line-height: 1.5;
}
@keyframes float-in {
  from { opacity: 0; transform: translateX(20px); }
  to   { opacity: 1; transform: translateX(0); }
}
/* stagger */
.brain-pill:nth-student(1)  { animation-delay: .05s; }
.brain-pill:nth-student(2)  { animation-delay: .10s; }
.brain-pill:nth-student(3)  { animation-delay: .15s; }
.brain-pill:nth-student(4)  { animation-delay: .20s; }
.brain-pill:nth-student(5)  { animation-delay: .25s; }
.brain-pill:nth-student(6)  { animation-delay: .30s; }
.brain-pill:nth-student(7)  { animation-delay: .35s; }
.brain-pill:nth-student(8)  { animation-delay: .40s; }
.brain-pill:nth-student(9)  { animation-delay: .45s; }
.brain-pill:nth-student(10) { animation-delay: .50s; }
.brain-pill:nth-student(11) { animation-delay: .55s; }
.brain-pill:nth-student(12) { animation-delay: .60s; }

.hero-bg-text {
  position: absolute; bottom: -2rem; right: -1rem;
  font-family: 'Playfair Display', serif;
  font-size: 9rem; font-weight: 900;
  color: rgba(255,255,255,.03); line-height: 1;
  user-select: none; pointer-events: none;
  white-space: nowrap;
}

/* ── SECTION COMMONS ── */
section { padding: 4.5rem 3rem; }
.section-inner { max-width: 1120px; margin: 0 auto; }
.section-kicker {
  font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--teal); margin-bottom: .8rem; display: flex; align-items: center; gap: .5rem;
}
.section-kicker::before { content: ''; width: 20px; height: 2px; background: var(--teal); }
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  font-weight: 900; line-height: 1.1; letter-spacing: -.02em;
  margin-bottom: 1rem;
}
.section-title em { color: var(--teal); font-style: italic; }
.section-lead {
  font-size: 1.02rem; color: var(--muted); max-width: 600px; line-height: 1.75;
  margin-bottom: 3rem;
}

/* ── WHAT IS EF ── */
.what-section { background: white; }
.what-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.what-title-row { margin-bottom: 1rem; }
.what-body-row {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 3rem;
  align-items: stretch;
  margin: 2rem 0 3rem;
}
.what-body-text { display: flex; flex-direction: column; gap: 1rem; }
.what-body-image { border-radius: 12px; overflow: hidden; box-shadow: 0 8px 32px rgba(0,0,0,0.1); display: flex; flex-direction: column; height: 100%; }
.what-body-image img { width: 100%; flex: 1; min-height: 320px; display: block; object-fit: cover; object-position: center top; }
.what-body-image figcaption { background: var(--ink); color: rgba(255,255,255,0.85); font-size: .88rem; font-style: italic; padding: 1.2rem 1.3rem; line-height: 1.65; }
@media (max-width: 860px) {
  .what-body-row { grid-template-columns: 1fr; }
  .what-body-image img { height: 240px; }
}
.what-section .quote-block {
  border-left: 4px solid var(--teal);
  padding: 1.5rem 2rem;
  background: var(--cream);
  margin: 0 0 2rem;
  border-radius: 0 8px 8px 0;
}
.what-section .quote-block blockquote {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem; font-style: italic; color: var(--ink); line-height: 1.65;
  margin: 0;
}
.what-section .quote-block cite { font-size: .8rem; color: var(--muted); margin-top: .5rem; display: block; font-style: normal; }
.what-body { font-size: 1rem; color: var(--muted); line-height: 1.8; }
.what-body + .what-body { margin-top: 1rem; }
.what-right-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .55rem; }
.what-card {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 7px;
  padding: .75rem 1rem;
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  transition: all .25s;
  cursor: default;
}
.what-card:hover { border-color: var(--teal); transform: translateY(-2px); box-shadow: 0 6px 16px rgba(0,0,0,.06); }
.what-card-icon { font-size: 1.1rem; flex-shrink: 0; margin-top: .1rem; }
.what-card h4 { font-size: .78rem; font-weight: 700; color: var(--ink); margin-bottom: .15rem; }
.what-card p  { font-size: .72rem; color: var(--muted); line-height: 1.45; margin: 0; }

/* ── SKILLS SECTION ── */
.skills-section { background: #0D2233; }
.skills-section .section-kicker { color: var(--gold); font-size: .68rem; margin-bottom: .5rem; }
.skills-section .section-kicker::before { background: var(--gold); }
.skills-section .section-title { color: white; font-size: clamp(1.4rem, 2.5vw, 2rem); margin-bottom: .6rem; }
.skills-section .section-lead { color: rgba(255,255,255,.55); font-size: .88rem; line-height: 1.6; margin-bottom: 1.5rem; }

.skills-filter {
  display: flex; gap: .5rem; flex-wrap: wrap; margin-bottom: 2rem;
}
.filter-btn {
  padding: .32rem .8rem; border-radius: 100px;
  border: 1.5px solid rgba(255,255,255,.15);
  background: transparent; color: rgba(255,255,255,.55);
  font-family: 'DM Sans', sans-serif; font-size: .72rem; font-weight: 600;
  cursor: pointer; transition: all .2s; letter-spacing: .03em;
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--teal); border-color: var(--teal); color: white;
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: .9rem;
}

.skill-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 10px;
  padding: 1.1rem 1.2rem;
  cursor: pointer;
  transition: all .3s;
  position: relative;
  overflow: hidden;
  opacity: 1;
}
.skill-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--accent-color, var(--teal));
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s;
}
.skill-card:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.18); transform: translateY(-3px); }
.skill-card:hover::before { transform: scaleX(1); }

.skill-card-header { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: .7rem; }
.skill-icon {
  width: 38px; height: 38px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  background: var(--accent-color, var(--teal));
  flex-shrink: 0;
}
.skill-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem; font-weight: 900;
  color: rgba(255,255,255,.06); line-height: 1;
}
.skill-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: .95rem; font-weight: 700;
  color: white; margin-bottom: .35rem;
}
.skill-card p {
  font-size: .78rem; color: rgba(255,255,255,.55); line-height: 1.55; margin-bottom: .7rem;
}
.skill-tag {
  display: inline-flex; align-items: center; gap: .35rem;
  font-size: .65rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  color: var(--accent-color, var(--teal));
  border: 1px solid var(--accent-color, var(--teal));
  padding: .15rem .5rem; border-radius: 100px;
}
.skill-examples {
  margin-top: .7rem; padding-top: .7rem; border-top: 1px solid rgba(255,255,255,.08);
  display: none;
}
.skill-card.expanded .skill-examples { display: block; }
.skill-example-title { font-size: .68rem; font-weight: 700; color: rgba(255,255,255,.35); letter-spacing: .08em; text-transform: uppercase; margin-bottom: .5rem; }
.skill-examples ul { list-style: none; display: flex; flex-direction: column; gap: .35rem; }
.skill-examples li { font-size: .76rem; color: rgba(255,255,255,.65); padding-left: .9rem; position: relative; }
.skill-examples li::before { content: '→'; position: absolute; left: 0; color: var(--accent-color, var(--teal)); font-size: .7rem; }
.expand-btn {
  display: flex; align-items: center; gap: .4rem;
  margin-top: .7rem; font-size: .72rem; font-weight: 600;
  color: rgba(255,255,255,.35); background: none; border: none;
  cursor: pointer; font-family: 'DM Sans', sans-serif; transition: color .2s;
  padding: 0;
}
.expand-btn:hover { color: var(--accent-color, var(--teal)); }
.expand-icon { transition: transform .3s; font-size: .7rem; }
.skill-card.expanded .expand-icon { transform: rotate(180deg); }

/* hidden */
.skill-card.hidden { display: none; }

/* ── ADHD SECTION ── */
.adhd-section { background: var(--cream); }
.adhd-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.adhd-intro { font-size: 1rem; color: var(--muted); line-height: 1.8; margin-bottom: 2rem; }
.adhd-callout {
  background: var(--teal); color: white;
  padding: 2.2rem 3rem;
  border-radius: 10px;
  margin-top: 2rem;
  width: 100%;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  align-items: center;
}
.adhd-callout h4 { font-family: 'Playfair Display', serif; font-size: 1.25rem; font-weight: 700; white-space: nowrap; }
.adhd-callout p { font-size: .95rem; opacity: .9; line-height: 1.7; margin: 0; }

.adhd-list { display: flex; flex-direction: column; gap: 1rem; }
.adhd-item {
  background: white; border: 1px solid var(--border); border-radius: 8px;
  padding: 1.4rem; display: flex; gap: 1rem; align-items: flex-start;
  transition: all .25s;
}
.adhd-item:hover { border-color: var(--teal); box-shadow: 0 4px 16px rgba(0,0,0,.06); }
.adhd-item-icon {
  width: 40px; height: 40px; border-radius: 8px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
  background: var(--cream);
}
.adhd-item h4 { font-size: .92rem; font-weight: 700; margin-bottom: .2rem; }
.adhd-item p  { font-size: .82rem; color: var(--muted); line-height: 1.55; }

/* ── STRATEGIES SECTION ── */
.strategies-section { background: white; }
.strategies-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.strategy-card {
  padding: 2rem; border-radius: 10px;
  border: 1px solid var(--border);
  position: relative; overflow: hidden;
  transition: all .25s;
}
.strategy-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,.08); }
.strategy-card-accent {
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
}
.strategy-card h3 { font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 700; margin-bottom: .6rem; margin-top: .4rem; }
.strategy-card p { font-size: .85rem; color: var(--muted); line-height: 1.65; }
.strategy-age {
  display: inline-block; font-size: .7rem; font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase; background: var(--cream); color: var(--muted);
  padding: .2rem .6rem; border-radius: 100px; margin-bottom: .8rem;
}

/* ── CALLOUT BAND ── */
.band {
  background: var(--teal);
  padding: 4.5rem 3rem;
  text-align: center;
}
.band h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem); font-weight: 900;
  color: white; margin-bottom: 1rem;
}
.band p { font-size: 1rem; color: rgba(255,255,255,.75); max-width: 550px; margin: 0 auto 2rem; line-height: 1.75; }
.band-cta {
  display: inline-flex; align-items: center; gap: .5rem;
  background: white; color: var(--teal); padding: .9rem 2.2rem;
  border-radius: 2px; font-weight: 800; font-size: .95rem;
  text-decoration: none; transition: all .2s; font-family: 'DM Sans', sans-serif;
}
.band-cta:hover { background: var(--cream); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.2); }

/* ── FAQ ── */
.faq-section { background: var(--paper); }
.faq-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 5rem; }
.faq-left h2 { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 900; line-height: 1.15; margin-bottom: 1rem; }
.faq-left p { font-size: .92rem; color: var(--muted); line-height: 1.7; margin-bottom: 1.5rem; }
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item {
  border-bottom: 1px solid var(--border); padding: 1.2rem 0; cursor: pointer;
}
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  font-size: .95rem; font-weight: 700; color: var(--ink); user-select: none;
}
.faq-arrow { font-size: 1rem; color: var(--teal); transition: transform .3s; flex-shrink: 0; }
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-a { display: none; padding-top: .8rem; font-size: .88rem; color: var(--muted); line-height: 1.75; }
.faq-item.open .faq-a { display: block; }

/* ── FOOTER ── */
footer {
  background: var(--ink); color: rgba(255,255,255,.45); padding: 3rem;
  text-align: center; font-size: .82rem;
}
footer a { color: var(--teal); text-decoration: none; }
.footer-logo { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 900; color: white; margin-bottom: .5rem; display: block; }

/* ── BLOG SECTION ── */
.blog-section { background: var(--cream); }
.blog-header-row { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 3rem; flex-wrap: wrap; gap: 1rem; }
.blog-header-row .section-title { margin-bottom: 0; }
.blog-all-link { font-size: .85rem; font-weight: 700; color: var(--teal); text-decoration: none; letter-spacing: .03em; white-space: nowrap; transition: opacity .2s; }
.blog-all-link:hover { opacity: .7; }
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.5rem; }
.blog-card { background: white; border-radius: 10px; overflow: hidden; border: 1px solid var(--border); transition: all .25s; display: flex; flex-direction: column; }
.blog-card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(0,0,0,.09); }
.blog-card-thumb { height: 180px; position: relative; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.blog-card-thumb .thumb-emoji { font-size: 3.5rem; z-index: 1; }
.blog-card-thumb .thumb-bg { position: absolute; inset: 0; }
.blog-card-thumb .thumb-number { position: absolute; bottom: .5rem; right: 1rem; font-family: 'Playfair Display', serif; font-size: 4.5rem; font-weight: 900; color: rgba(255,255,255,.1); line-height: 1; user-select: none; }
.blog-card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.blog-meta { display: flex; align-items: center; gap: .65rem; margin-bottom: .75rem; flex-wrap: wrap; }
.blog-tag { font-size: .67rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: .18rem .6rem; border-radius: 100px; border: 1.5px solid var(--teal); color: var(--teal); }
.blog-date { font-size: .74rem; color: var(--muted); }
.blog-card h3 { font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 700; line-height: 1.35; margin-bottom: .5rem; color: var(--ink); }
.blog-card p.blog-excerpt { font-size: .84rem; color: var(--muted); line-height: 1.65; flex: 1; }
.blog-card-footer { display: flex; align-items: center; justify-content: space-between; margin-top: 1.1rem; padding-top: 1rem; border-top: 1px solid var(--border); }
.blog-read-time { font-size: .74rem; color: var(--muted); }
.blog-read-btn { font-size: .8rem; font-weight: 700; color: var(--teal); text-decoration: none; transition: opacity .2s; }
.blog-read-btn:hover { opacity: .7; }
.blog-add-card { background: white; border-radius: 10px; border: 2px dashed rgba(18,134,181,.3); display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 2rem; gap: .7rem; min-height: 320px; transition: all .25s; cursor: pointer; text-decoration: none; }
.blog-add-card:hover { border-color: var(--teal); background: var(--paper); }
.blog-add-icon { font-size: 2.4rem; opacity: .4; }
.blog-add-card h4 { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 700; color: var(--ink); }
.blog-add-card p { font-size: .81rem; color: var(--muted); line-height: 1.6; max-width: 180px; }
.seo-tip { background: rgba(18,134,181,.07); border: 1px solid rgba(18,134,181,.18); border-radius: 8px; padding: 1rem 1.4rem; display: flex; align-items: flex-start; gap: .9rem; margin-top: 2.5rem; }
.seo-tip p { font-size: .82rem; color: var(--muted); line-height: 1.6; }
.seo-tip p strong { color: var(--ink); }

/* ── REVEAL ANIMATION ── */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .hero-right { min-height: 55vw; }
  .hero-right::before { background: linear-gradient(to bottom, var(--ink) 0%, rgba(14,17,23,.5) 40%, transparent 100%); }
  .hero-left { align-items: center; text-align: center; padding: 4rem 2rem 5rem; }
  .hero-badges { justify-content: center; max-width: 100%; }
  .hero-stats { justify-content: center; max-width: 100%; }
  .stat-item { align-items: center; }
  .what-grid, .adhd-grid, .faq-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .strategies-grid { grid-template-columns: 1fr 1fr; }
  nav { padding: 1rem 1.5rem; }
  .nav-links { display: none; }
  section { padding: 4rem 1.5rem; }
}
@media (max-width: 600px) {
  .strategies-grid { grid-template-columns: 1fr; }
  .hero-left { padding: 3rem 1.5rem; }
  .hero-stats { gap: 0; }
}




/* ── EDITORIAL PHOTO LAYOUTS ── */
.photo-break {
  width: 100%; border-radius: 12px; overflow: hidden;
  margin: 2rem 0;
  box-shadow: 0 6px 28px rgba(0,0,0,0.1);
  position: relative;
}
.photo-break img {
  width: 100%; display: block;
  object-fit: cover; object-position: center top;
}
.photo-break figcaption {
  background: rgba(14,17,23,0.82); color: rgba(255,255,255,0.7);
  font-size: .74rem; font-style: italic; padding: .5rem 1rem;
  line-height: 1.4;
}
/* Inline text-wrap pairs */
.text-photo-pair {
  display: grid;
  gap: 2.5rem;
  align-items: start;
  margin: 2rem 0;
}
.text-photo-pair.photo-right { grid-template-columns: 1fr auto; }
.text-photo-pair.photo-left  { grid-template-columns: auto 1fr; }
.text-photo-pair figure {
  width: 280px; border-radius: 12px; overflow: hidden;
  box-shadow: 0 6px 28px rgba(0,0,0,0.1); flex-shrink: 0;
}
.text-photo-pair figure img {
  width: 100%; height: 320px; display: block;
  object-fit: cover; object-position: center top;
}
.text-photo-pair figure figcaption {
  background: var(--ink); color: rgba(255,255,255,0.65);
  font-size: .72rem; font-style: italic; padding: .45rem .85rem;
  line-height: 1.4;
}
.text-photo-pair .pair-text { display: flex; flex-direction: column; gap: 1rem; }
/* Hero photo strip */
.hero-photo-strip {
  width: 100%; border-radius: 10px; overflow: hidden;
  margin: 1.8rem 0; box-shadow: 0 6px 24px rgba(0,0,0,0.15);
}
.hero-photo-strip img {
  width: 100%; height: 240px; display: block;
  object-fit: cover; object-position: center 30%;
}
.hero-photo-strip figcaption {
  background: var(--teal); color: white;
  font-size: .75rem; padding: .5rem 1rem; line-height: 1.4; font-style: italic;
}
@media (max-width: 700px) {
  .text-photo-pair.photo-right,
  .text-photo-pair.photo-left { grid-template-columns: 1fr; }
  .text-photo-pair figure { width: 100%; }
  .text-photo-pair figure img { height: 220px; }
}

/* ── PHONE BAR ── */
.phone-bar {
  background: var(--ink);
  color: rgba(255,255,255,.7);
  font-size: .76rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .45rem 3rem;
  gap: 1rem;
  position: relative;
  z-index: 201;
}
.phone-bar-announcement {
  font-size: .73rem;
  letter-spacing: .02em;
}
.phone-bar-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.phone-bar-number {
  color: rgba(255,255,255,.7);
  text-decoration: none;
  font-weight: 600;
  font-size: .76rem;
  transition: color .2s;
}
.phone-bar-number:hover { color: white; }
.phone-bar-cta {
  background: var(--teal);
  color: white;
  padding: .25rem .8rem;
  border-radius: 2px;
  font-size: .72rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s;
  white-space: nowrap;
}
.phone-bar-cta:hover { background: var(--teal2); }

/* When phone bar exists, push nav down */
.phone-bar ~ nav#main-nav {
  top: 0;
  position: sticky;
}

/* ── NAV BRAND TEXT (fallback) ── */
.nav-brand-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--ink);
}

/* ── NAV HAMBURGER ── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 210;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: all .3s;
}
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── MOBILE NAV OVERLAY ── */
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 199;
  background: rgba(248,245,239,0.98);
  backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s, visibility .3s;
}
.mobile-nav-overlay.open {
  opacity: 1;
  visibility: visible;
}
.mobile-nav-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .4rem;
  margin-bottom: 1rem;
}
.mobile-nav-links a {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
  transition: color .2s;
  display: block;
  padding: .3rem 0;
}
.mobile-nav-links a:hover { color: var(--teal); }
.mobile-nav-cta {
  margin-top: .5rem;
  font-size: .9rem;
}
.mobile-nav-phone {
  font-size: .85rem;
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
}

@media (max-width: 900px) {
  .nav-hamburger { display: flex; }
  .nav-cta { display: none; }
  .phone-bar { flex-direction: column; text-align: center; padding: .5rem 1.5rem; gap: .4rem; }
}
@media (max-width: 600px) {
  .phone-bar-announcement { font-size: .68rem; }
  .phone-bar-actions { gap: .6rem; }
}

/* ── FOOTER COLUMNS ── */
.footer-logo-img {
  height: 40px;
  width: auto;
  display: block;
  margin: 0 auto .75rem;
}
.footer-columns {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  margin: .8rem 0 1.2rem;
  font-size: .82rem;
}
.footer-col {
  text-align: left;
}
.footer-col-label {
  font-weight: 700;
  color: rgba(255,255,255,.55);
  font-size: .7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: .3rem;
}
.footer-col-sub {
  color: rgba(255,255,255,.45);
  font-size: .75rem;
  margin-top: .2rem;
}
.footer-bottom-links {
  margin-top: .5rem;
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: .8rem;
}
.footer-copyright {
  margin-top: .6rem;
  font-size: .74rem;
  opacity: .35;
}
.footer-disclaimer {
  margin-top: .4rem;
  font-size: .72rem;
  opacity: .3;
}

/* ── STATES GRID ── */
.states-grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 10px;
  max-width: 900px;
  margin: 0 auto 2rem;
}
.state-link {
  background: white;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 10px 16px;
  text-align: center;
  font-size: .85rem;
  font-weight: 600;
  color: var(--teal);
  text-decoration: none;
  transition: all 0.2s;
}
.state-link:hover {
  background: var(--teal);
  color: white;
}
.state-link.active {
  background: var(--teal);
  color: white;
  border-color: var(--teal);
  box-shadow: 0 4px 12px rgba(18,134,181,.25);
  pointer-events: none;
}

/* ── PAGE HERO (State/Province/City pages) ── */
.page-hero {
  background: #1B2A3B;
  padding: 7rem 4rem 5rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -20%; left: -10%;
  width: 70%; height: 120%;
  background: radial-gradient(ellipse, rgba(18,134,181,.18) 0%, transparent 65%);
  pointer-events: none;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -20%; right: -10%;
  width: 55%; height: 80%;
  background: radial-gradient(ellipse, rgba(200,134,10,.1) 0%, transparent 65%);
  pointer-events: none;
}
.page-hero-inner {
  max-width: 720px;
  position: relative;
  z-index: 2;
}
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 900;
  color: white;
  line-height: 1.05;
  letter-spacing: -.03em;
  margin-bottom: .8rem;
}
.page-hero h1 em {
  font-style: italic;
  color: #29C5F6;
}
.page-hero p {
  font-size: .95rem;
  color: rgba(255,255,255,.68);
  max-width: 560px;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}
.hero-ctas {
  display: flex;
  gap: .8rem;
  flex-wrap: wrap;
}

/* ── WHY CARDS ── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.why-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.8rem;
  position: relative;
  overflow: hidden;
  transition: all .25s;
}
.why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,.08);
}
.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--teal);
  border-radius: 4px 0 0 4px;
}
.why-card-icon {
  font-size: 2rem;
  margin-bottom: .8rem;
}
.why-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: .4rem;
}
.why-card p {
  font-size: .85rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ── PAGE HERO / WHY CARDS — Responsive ── */
@media (max-width: 700px) {
  .page-hero { padding: 6rem 1.5rem 3.5rem; }
  .why-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .why-grid { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; }
}

/* ── NEARBY CITIES ── */
.nearby-section {
  background: var(--cream);
  padding: 3.5rem 4rem;
}
.nearby-section h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-align: center;
  color: var(--ink);
}
.nearby-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .6rem;
}
.nearby-link {
  background: white;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: .45rem 1rem;
  font-size: .84rem;
  font-weight: 600;
  color: var(--teal);
  text-decoration: none;
  transition: all .2s;
}
.nearby-link:hover {
  background: var(--teal);
  color: white;
  border-color: var(--teal);
}
@media (max-width: 700px) {
  .nearby-section { padding: 2.5rem 1.5rem; }
}

/* ── STATE CITIES DIRECTORY ── */
.state-cities-section {
  background: var(--paper);
  padding: 4rem 3rem;
}
.state-cities-section .section-kicker { justify-content: center; }
.state-cities-section .section-kicker::before { background: var(--teal); }
.state-cities-section .section-title { text-align: center; }
.state-cities-section .section-lead { text-align: center; margin: 0 auto 2rem; }
.state-cities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: .65rem;
  max-width: 1120px;
  margin: 0 auto;
}
.state-city-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .75rem 1.1rem;
  background: white;
  border: 1px solid var(--border);
  border-radius: 8px;
  text-decoration: none;
  color: var(--ink);
  transition: all .25s ease;
  position: relative;
  overflow: hidden;
}
.state-city-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--teal);
  opacity: 0;
  transition: opacity .25s;
}
.state-city-card:hover {
  border-color: var(--teal);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(18,134,181,.1);
}
.state-city-card:hover::before { opacity: 1; }
.state-city-name {
  font-size: .88rem;
  font-weight: 600;
}
.state-city-arrow {
  color: var(--muted);
  font-size: .85rem;
  opacity: 0;
  transform: translateX(-4px);
  transition: all .25s;
}
.state-city-card:hover .state-city-arrow {
  opacity: 1;
  transform: translateX(0);
  color: var(--teal);
}
.state-cities-count {
  text-align: center;
  font-size: .82rem;
  color: var(--muted);
  font-weight: 600;
  margin-top: 1.5rem;
}
@media (max-width: 700px) {
  .state-cities-section { padding: 3rem 1.5rem; }
  .state-cities-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .state-cities-grid { grid-template-columns: 1fr; }
}

/* ── WORDPRESS ADMIN BAR OFFSET ── */
.admin-bar nav#main-nav { top: 32px; }
@media (max-width: 782px) {
  .admin-bar nav#main-nav { top: 46px; }
}

/* ── STATES DIRECTORY ── */
.states-hero {
  background: #1B2A3B;
  padding: 7rem 3rem 3.5rem;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.states-hero .section-kicker { justify-content: center; }
.states-hero .section-kicker::before { background: var(--gold); }
.states-hero .section-title { color: white; }
.states-hero .section-lead { margin: 0 auto 2rem; }

/* Search input */
.states-search-wrap {
  max-width: 420px;
  margin: 0 auto 1.5rem;
}
.states-search {
  width: 100%;
  padding: .75rem 1.2rem;
  border: 2px solid rgba(255,255,255,.15);
  border-radius: 8px;
  background: rgba(255,255,255,.06);
  color: white;
  font-family: 'DM Sans', sans-serif;
  font-size: .95rem;
  outline: none;
  transition: border-color .25s, background .25s;
}
.states-search::placeholder { color: rgba(255,255,255,.4); }
.states-search:focus {
  border-color: var(--teal);
  background: rgba(255,255,255,.1);
}

/* Alphabet bar */
.states-alpha-bar {
  display: flex;
  justify-content: center;
  gap: .3rem;
  flex-wrap: wrap;
}
.alpha-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px; height: 30px;
  border-radius: 6px;
  font-size: .72rem;
  font-weight: 700;
  color: rgba(255,255,255,.45);
  text-decoration: none;
  transition: all .2s;
  border: 1px solid rgba(255,255,255,.08);
}
.alpha-link:hover {
  color: white;
  background: var(--teal);
  border-color: var(--teal);
}

/* Directory section */
.states-directory {
  background: white;
  padding: 3rem 3rem 4rem;
}
.states-count {
  font-size: .82rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
  font-weight: 600;
}
.states-count span {
  color: var(--teal);
  font-weight: 800;
}

/* Grid */
.states-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .75rem;
}
.state-card {
  display: flex;
  align-items: center;
  gap: .8rem;
  padding: 1rem 1.2rem;
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 10px;
  text-decoration: none;
  color: var(--ink);
  transition: all .25s ease;
  position: relative;
  overflow: hidden;
}
.state-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--teal);
  opacity: 0;
  transition: opacity .25s;
}
.state-card:hover {
  border-color: var(--teal);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(18,134,181,.12);
}
.state-card:hover::before { opacity: 1; }

.state-abbr {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 8px;
  background: var(--teal);
  color: white;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .05em;
  flex-shrink: 0;
}
.state-name {
  flex: 1;
  font-size: .92rem;
  font-weight: 600;
}
.state-arrow {
  color: var(--muted);
  font-size: .9rem;
  opacity: 0;
  transform: translateX(-4px);
  transition: all .25s;
}
.state-card:hover .state-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* Empty state */
.states-empty {
  text-align: center;
  padding: 3rem 0;
}
.states-empty p {
  color: var(--muted);
  font-size: 1rem;
}

/* CTA section */
.states-cta {
  background: var(--paper);
  padding: 4rem 3rem;
}

/* Responsive */
@media (max-width: 960px) {
  .states-grid { grid-template-columns: repeat(3, 1fr); }
  .states-hero { padding: 6rem 2rem 3rem; }
}
@media (max-width: 700px) {
  .states-grid { grid-template-columns: repeat(2, 1fr); }
  .states-directory { padding: 2.5rem 1.5rem 3rem; }
  .alpha-link { width: 26px; height: 26px; font-size: .65rem; }
}
@media (max-width: 480px) {
  .states-grid { grid-template-columns: 1fr; }
  .states-hero { padding: 5.5rem 1.2rem 2.5rem; }
}

/* ══════════════════════════════════════════════════════════════
   ABOUT PAGE — Dedicated Template Styles
   ══════════════════════════════════════════════════════════════ */

/* ── PAGE EYEBROW ── */
.page-eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  font-size: .62rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--gold);
  background: rgba(200,134,10,.1);
  border: 1px solid rgba(200,134,10,.25);
  padding: .3rem .85rem;
  border-radius: 100px;
  margin-bottom: 1rem;
}

/* ── WHO WE ARE ── */
.who-section {
  background: white;
  padding: 5rem 3rem;
}
.who-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: start;
  max-width: 1120px;
  margin: 0 auto;
}
.who-body p {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 1rem;
}
.who-body p strong { color: var(--ink); }
.who-body-cta {
  display: flex;
  gap: .8rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}
.btn-ghost {
  background: transparent;
  color: var(--teal);
  padding: .65rem 1.6rem;
  border: 1.5px solid var(--teal);
  border-radius: 3px;
  font-family: 'DM Sans', sans-serif;
  font-size: .82rem; font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex; align-items: center; gap: .5rem;
  transition: all .25s;
}
.btn-ghost:hover {
  background: var(--teal);
  color: white;
  transform: translateY(-2px);
}

/* Stat cards */
.stat-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
}
.stat-card {
  background: var(--paper);
  border: 1px solid var(--border);
  border-top: 4px solid;
  border-radius: 10px;
  padding: 1.4rem 1.2rem;
  transition: all .25s;
}
.stat-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
}
.stat-card-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: .6rem;
}
.stat-card p {
  font-size: .82rem;
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
}

/* ── ADHD FOCUS / CHALLENGES ── */
.adhd-focus-section {
  background: var(--paper);
  padding: 5rem 3rem;
}
.adhd-focus-section .section-kicker::before { background: var(--gold); }
.challenges-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  max-width: 1120px;
  margin: 0 auto;
}
.challenge-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.8rem 1.5rem;
  transition: all .25s;
}
.challenge-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,.08);
  border-color: var(--teal);
}
.challenge-icon {
  font-size: 1.8rem;
  margin-bottom: .8rem;
}
.challenge-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: .5rem;
  color: var(--ink);
}
.challenge-card p {
  font-size: .85rem;
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}

/* ── APPROACH STEPS ── */
.approach-section {
  background: white;
  padding: 5rem 3rem;
}
.approach-steps {
  max-width: 700px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.approach-step {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
}
.approach-step:last-child { border-bottom: none; }
.step-num {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--teal);
  color: white;
  font-family: 'Playfair Display', serif;
  font-size: .9rem; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.step-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: .3rem;
  color: var(--ink);
}
.step-body p {
  font-size: .88rem;
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

/* ── PROVINCES GRID ── */
.provinces-section {
  background: var(--paper);
  padding: 5rem 3rem;
  text-align: center;
}
.provinces-section .section-kicker { justify-content: center; }
.provinces-section .section-title { text-align: center; }
.provinces-section .section-lead { margin: 0 auto 2rem; text-align: center; }
.provinces-grid {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  justify-content: center;
  max-width: 800px;
  margin: 0 auto;
}
.province-pill {
  background: white;
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: .55rem 1.3rem;
  font-size: .85rem;
  font-weight: 600;
  color: var(--ink);
  transition: all .2s;
  cursor: default;
}
.province-pill:hover {
  border-color: var(--teal);
  color: var(--teal);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,.06);
}

/* ── About page responsive ── */
@media (max-width: 900px) {
  .who-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .challenges-grid { grid-template-columns: 1fr 1fr; }
  .who-section, .adhd-focus-section, .approach-section, .provinces-section { padding: 3.5rem 1.5rem; }
}
@media (max-width: 600px) {
  .challenges-grid { grid-template-columns: 1fr; }
  .stat-cards { grid-template-columns: 1fr; }
}


/* ══════════════════════════════════════════════════════════════
   CONTACT PAGE — Dedicated Template Styles
   ══════════════════════════════════════════════════════════════ */

/* ── SECTION EYEBROW ── */
.section-eyebrow {
  font-size: .68rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--teal);
  margin-bottom: .5rem;
}

/* ── CONTACT SECTION ── */
.contact-section {
  background: var(--paper);
  padding: 5rem 3rem;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  max-width: 1120px;
  margin: 0 auto;
  align-items: start;
}

/* Office cards */
.office-card {
  background: white;
  border: 1px solid var(--border);
  border-left: 4px solid var(--teal);
  border-radius: 0 10px 10px 0;
  padding: 1.2rem 1.5rem;
  margin-bottom: 1rem;
}
.office-label {
  font-size: .68rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--teal);
  margin-bottom: .3rem;
}
.office-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem; font-weight: 700;
  color: var(--ink);
  margin-bottom: .4rem;
}
.office-addr {
  font-size: .88rem;
  color: var(--muted);
  line-height: 1.6;
}

/* Contact details */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: .6rem;
  margin-top: 1.2rem;
}
.contact-detail-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: white;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1rem 1.2rem;
  text-decoration: none;
  color: var(--ink);
  transition: all .25s;
}
.contact-detail-row:hover {
  border-color: var(--teal);
  box-shadow: 0 4px 16px rgba(0,0,0,.06);
  transform: translateY(-2px);
}
.detail-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}
.detail-label {
  font-size: .68rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--muted);
  margin-bottom: .1rem;
}
.detail-value {
  font-size: .95rem;
  font-weight: 600;
  color: var(--ink);
}

/* Virtual badge */
.virtual-badge {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.4rem 1.5rem;
  margin-top: 1.5rem;
}
.virtual-badge-icon {
  font-size: 2rem;
  flex-shrink: 0;
}
.virtual-badge h4 {
  font-family: 'Playfair Display', serif;
  font-size: .95rem; font-weight: 700;
  margin-bottom: .3rem;
  color: var(--ink);
}
.virtual-badge p {
  font-size: .82rem;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

/* ── CONTACT FORM ── */
.contact-form-wrap {
  background: white;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 8px 32px rgba(0,0,0,.06);
}
.form-header h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; font-weight: 900;
  margin-bottom: .5rem;
  color: var(--ink);
}
.form-header p {
  font-size: .88rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group {
  margin-bottom: 1rem;
}
.form-group label {
  display: block;
  font-size: .82rem; font-weight: 700;
  color: var(--ink);
  margin-bottom: .35rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .7rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: .9rem;
  color: var(--ink);
  background: var(--paper);
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(18,134,181,.1);
}
.form-group textarea {
  min-height: 120px;
  resize: vertical;
}
.form-group select {
  -webkit-appearance: none;
  -moz-appearance: none;
  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='%236B6558' d='M2 4l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}
.form-submit {
  width: 100%;
  padding: .85rem 2rem;
  background: var(--teal);
  color: white;
  border: none;
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: .95rem; font-weight: 700;
  cursor: pointer;
  transition: all .25s;
  margin-top: .5rem;
}
.form-submit:hover {
  background: var(--teal2);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(18,134,181,.35);
}
.form-note {
  font-size: .78rem;
  color: var(--muted);
  margin-top: .8rem;
  text-align: center;
}
.success-message {
  text-align: center;
  padding: 2rem 0;
}
.success-message p {
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.6;
}

/* ── HOURS & PROVINCES ── */
.hours-provinces-section {
  background: white;
  padding: 4rem 3rem;
}
.hp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 1120px;
  margin: 0 auto;
}
.hp-card {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2.2rem 2rem;
}
.hp-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem; font-weight: 900;
  margin-bottom: 1.2rem;
  color: var(--ink);
}
.hours-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .6rem 0;
  border-bottom: 1px solid var(--border);
}
.hours-row:last-child { border-bottom: none; }
.hours-day {
  font-size: .9rem;
  font-weight: 700;
  color: var(--ink);
}
.hours-time {
  font-size: .88rem;
  color: var(--muted);
}
.hours-time.available { color: var(--ink); }

/* Province cloud */
.province-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}
.province-tag {
  display: inline-flex;
  align-items: center;
  padding: .35rem .9rem;
  border: 1.5px solid var(--teal);
  border-radius: 100px;
  font-size: .78rem; font-weight: 600;
  color: var(--teal);
  transition: all .2s;
  cursor: default;
}
.province-tag:hover {
  background: var(--teal);
  color: white;
}

/* ── Contact page responsive ── */
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .hp-grid { grid-template-columns: 1fr; }
  .contact-section, .hours-provinces-section { padding: 3.5rem 1.5rem; }
}
@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 1.5rem; }
}
