/* =========================================================
   Elevate PA Prep — Shared Stylesheet
   Brand: Pine Teal #12443B, Sage Green #65A46E, Mint Cream #E6EFE8,
          Tuscan Sun #F3C968, White #ffffff
   Type:  Playfair Display (headings), DM Sans (body/UI)
   ========================================================= */

:root {
  --pine-teal: #12443B;
  --pine-teal-deep: #0d322c;
  --sage-green: #65A46E;
  --sage-green-soft: #8fbf96;
  --mint-cream: #E6EFE8;
  --mint-cream-deep: #d6e3d9;
  --tuscan-sun: #F3C968;
  --tuscan-sun-deep: #e6b94d;
  --white: #ffffff;
  --body: #1a1a1a;
  --muted: #5a6b5e;
  --border: rgba(18, 68, 59, 0.12);

  --serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --sans: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;

  --container: 1200px;
  --container-narrow: 920px;
  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 2px 8px rgba(18, 68, 59, 0.06);
  --shadow: 0 8px 28px rgba(18, 68, 59, 0.10);
  --shadow-lg: 0 20px 60px rgba(18, 68, 59, 0.18);

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--body);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--pine-teal);
  text-decoration: none;
  transition: color 0.2s var(--ease);
}

a:hover {
  color: var(--sage-green);
}

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 600;
  color: var(--pine-teal);
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin: 0 0 0.5em;
  text-wrap: balance;
}

p {
  margin: 0 0 1em;
  text-wrap: pretty;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.container-narrow {
  width: 100%;
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--tuscan-sun);
  margin: 0 0 18px;
  display: inline-block;
}

.eyebrow.on-light {
  color: var(--sage-green);
  font-size: 17px;
  font-weight: 700;
}

/* =========================================================
   Navigation
   ========================================================= */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--pine-teal);
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

/* =========================================================
   NAV — Desktop
   ========================================================= */
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 6px 24px 6px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav-logo img {
  height: 60px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: var(--white);
  font-size: 15px;
  font-weight: 500;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  transition: color 0.2s var(--ease), background 0.2s var(--ease);
}

.nav-links a:hover {
  color: var(--tuscan-sun);
}

.nav-links a.active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.18);
  outline: 1px solid rgba(255, 255, 255, 0.35);
}

.nav-cta {
  background: var(--tuscan-sun) !important;
  color: var(--pine-teal) !important;
  font-weight: 600 !important;
  margin-left: 12px;
  padding: 10px 18px !important;
  border-radius: 999px !important;
  line-height: 1 !important;
  display: inline-flex !important;
  align-items: center;
  white-space: nowrap;
}

.nav-cta:hover {
  background: var(--tuscan-sun-deep) !important;
  color: var(--pine-teal) !important;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  color: var(--white);
  width: 44px;
  height: 44px;
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.nav-toggle svg {
  width: 28px;
  height: 28px;
}

/* =========================================================
   NAV — Mobile (rebuilt)
   ========================================================= */
@media (max-width: 880px) {
  .nav {
    height: auto !important;
    padding-top: calc(env(safe-area-inset-top, 0px) + 17px);
  }

  .nav-inner {
    height: 58px;
    padding: 0 12px 0 12px;
    gap: 8px;
  }

  .nav-logo {
    display: flex;
    align-items: center;
    flex: 0 1 auto;
    min-width: 0;
    overflow: hidden;
    max-width: calc(100% - 56px);
  }

  .nav-logo img {
    height: 44px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    object-position: left center;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--pine-teal);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.32s var(--ease), padding 0.32s var(--ease);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
  }

  .nav-links.open {
    max-height: 520px;
    padding: 8px 20px 20px;
  }

  .nav-links li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .nav-links li:last-child {
    border-bottom: 0;
    margin-top: 12px;
  }

  .nav-links a {
    display: block;
    padding: 16px 4px;
    font-size: 16px;
    border-radius: 0;
    color: var(--white);
  }

  .nav-links a.active {
    color: var(--tuscan-sun);
    background: transparent;
  }

  .nav-links a:hover {
    color: var(--tuscan-sun);
  }

  .nav-cta {
    margin: 0 !important;
    text-align: center;
    justify-content: center;
    padding: 14px 22px !important;
    font-size: 15px !important;
  }
}

/* =========================================================
   Buttons
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.005em;
  padding: 16px 28px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.18s var(--ease), background 0.2s var(--ease), color 0.2s var(--ease), box-shadow 0.2s var(--ease), border-color 0.2s var(--ease);
  white-space: nowrap;
  line-height: 1;
}

.btn-primary {
  background: var(--tuscan-sun);
  color: var(--pine-teal);
  box-shadow: 0 6px 20px rgba(243, 201, 104, 0.35);
}

.btn-primary:hover {
  background: var(--tuscan-sun-deep);
  color: var(--pine-teal);
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(243, 201, 104, 0.45);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.6);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border-color: var(--white);
}

.btn-secondary.on-light {
  color: var(--pine-teal);
  border-color: var(--pine-teal);
}

.btn-secondary.on-light:hover {
  background: var(--pine-teal);
  color: var(--white);
}

.btn-ghost {
  background: transparent;
  color: var(--pine-teal);
  border-color: var(--border);
}

.btn-ghost:hover {
  border-color: var(--pine-teal);
  background: var(--mint-cream);
}

.btn-block { width: 100%; }
.btn-sm { padding: 12px 20px; font-size: 14px; }
.btn-lg { padding: 18px 34px; font-size: 17px; }

.btn-arrow::after {
  content: "→";
  font-weight: 400;
  transition: transform 0.2s var(--ease);
}
.btn:hover .btn-arrow::after,
.btn-arrow:hover::after { transform: translateX(3px); }

/* =========================================================
   Sections + general layout
   ========================================================= */
section {
  padding: 56px 0;
}

@media (max-width: 768px) {
  section { padding: 40px 0; }
}

.section-light    { background: var(--white); color: var(--body); }
.section-mint     { background: var(--mint-cream); color: var(--body); }
.section-pine     { background: var(--pine-teal); color: var(--white); }
.section-pine h1, .section-pine h2, .section-pine h3, .section-pine h4 { color: var(--white); }

.section-heading {
  font-size: clamp(32px, 4.5vw, 48px);
  margin: 0 0 24px;
}

.section-sub {
  font-size: 18px;
  color: var(--muted);
  max-width: 640px;
  margin: 0 auto 56px;
  text-align: center;
}

.section-pine .section-sub { color: rgba(255, 255, 255, 0.78); }

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

/* =========================================================
   Hero (Home)
   ========================================================= */
.hero {
  position: relative;
  background: var(--pine-teal);
  color: var(--white);
  overflow: hidden;
  padding: 96px 0 110px;
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.squarespace-cdn.com/content/v1/611882ba4f11da601903bd68/1725914785931-JEPS99F6TD44NG61MMS7/unsplash-image-NFvdKIhxYlU.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.55;
  z-index: -2;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(18,68,59,0.35) 0%, rgba(18,68,59,0.55) 60%, rgba(18,68,59,0.85) 100%);
}

.hero-grain {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(101,164,110,0.18), transparent 55%),
    radial-gradient(ellipse at 100% 100%, rgba(243,201,104,0.10), transparent 50%);
  z-index: -1;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  max-width: 880px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.hero-inner .eyebrow {
  font-size: 17px;
  letter-spacing: 0.2em;
  margin-bottom: 22px;
}

.hero h1 {
  font-size: clamp(40px, 6vw, 72px);
  color: var(--white);
  margin: 0 0 22px;
  letter-spacing: -0.02em;
}

.hero-sub {
  font-size: clamp(17px, 1.6vw, 20px);
  color: rgba(255, 255, 255, 0.82);
  max-width: 640px;
  margin: 0 auto 36px;
  line-height: 1.55;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Credibility strip */
.cred-strip {
  background: var(--mint-cream);
  border-top: 1px solid var(--mint-cream-deep);
  border-bottom: 1px solid var(--mint-cream-deep);
  padding: 18px 0;
}
.cred-strip-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 14px 28px;
  font-size: 13.5px;
  color: var(--pine-teal);
  font-weight: 500;
  letter-spacing: 0.02em;
}
.cred-strip-inner span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.cred-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--sage-green);
  display: inline-block;
}

/* =========================================================
   Why Eric — inline portrait that flows with the text
   ========================================================= */
.why-eric h2 {
  font-size: clamp(30px, 3.6vw, 42px);
  margin-bottom: 28px;
}

.inline-portrait {
  float: right;
  width: 240px;
  margin: 6px 0 18px 36px;
  shape-outside: margin-box;
}

.inline-portrait img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 18%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: block;
}

.inline-portrait figcaption {
  margin: 14px 0 0;
  font-size: 14px;
  color: var(--pine-teal);
  font-weight: 600;
  line-height: 1.45;
}

.inline-portrait figcaption span {
  display: block;
  font-weight: 400;
  color: var(--muted);
  font-size: 13.5px;
  margin-top: 2px;
}

.why-eric p {
  font-size: 17px;
  line-height: 1.7;
}

@media (max-width: 640px) {
  .inline-portrait {
    float: right;
    width: 130px;
    margin: 4px 0 14px 18px;
    shape-outside: margin-box;
  }
  .inline-portrait figcaption { text-align: left; font-size: 12px; }
  .why-eric h2 { margin-bottom: 18px; }
}
.two-col {
  display: grid;
  grid-template-columns: 0.7fr 1.5fr;
  gap: 72px;
  align-items: center;
}

.two-col.image-right {
  grid-template-columns: 1.5fr 0.7fr;
}

.two-col-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--mint-cream-deep);
  max-width: 260px;
  width: 100%;
  justify-self: center;
}

.two-col-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
}

.two-col-img::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(18,68,59,0.08);
  border-radius: var(--radius-lg);
  pointer-events: none;
}

.two-col h2 { font-size: clamp(30px, 3.6vw, 42px); }

@media (max-width: 880px) {
  .two-col, .two-col.image-right {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .two-col-img { max-width: 420px; margin: 0 auto; aspect-ratio: 1 / 1.05; }
}

/* =========================================================
   How It Works (3 step)
   ========================================================= */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.step {
  position: relative;
  padding: 36px 28px 32px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius);
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease), transform 0.25s var(--ease);
}

.step:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(243,201,104,0.4);
  transform: translateY(-3px);
}

.step-num {
  font-family: var(--serif);
  font-size: 56px;
  font-style: italic;
  color: var(--tuscan-sun);
  line-height: 1;
  margin-bottom: 18px;
}

.step h3 {
  color: var(--white);
  font-size: 22px;
  margin: 0 0 12px;
}

.step p {
  color: rgba(255,255,255,0.78);
  font-size: 15.5px;
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 880px) {
  .steps { grid-template-columns: 1fr; gap: 20px; }
}

/* =========================================================
   Featured Package Card
   ========================================================= */
.featured-pkg {
  position: relative;
  max-width: 920px;
  margin: 0 auto;
  background: var(--pine-teal-deep);
  border: 2px solid var(--sage-green);
  border-radius: var(--radius-lg);
  padding: 56px 56px 48px;
  color: var(--white);
  box-shadow: 0 30px 80px rgba(0,0,0,0.25);
}

.featured-pkg::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  pointer-events: none;
  background: radial-gradient(ellipse at top right, rgba(101,164,110,0.18), transparent 60%);
}

.popular-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--tuscan-sun);
  color: var(--pine-teal);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 999px;
  white-space: nowrap;
}

.featured-pkg h2 {
  color: var(--white);
  font-size: clamp(30px, 3.6vw, 40px);
  margin: 0 0 16px;
  text-align: center;
}

.featured-pkg .pkg-sub {
  color: rgba(255,255,255,0.82);
  text-align: center;
  max-width: 600px;
  margin: 0 auto 36px;
  font-size: 16.5px;
}

.pkg-includes {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 32px;
}

.pkg-includes li {
  flex: 0 0 calc(50% - 16px);
}

@media (max-width: 720px) {
  .pkg-includes li { flex-basis: 100%; }
}

.pkg-includes li {
  position: relative;
  padding-left: 32px;
  color: rgba(255,255,255,0.92);
  font-size: 15.5px;
  line-height: 1.5;
}

.pkg-includes li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--tuscan-sun);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='%2312443B' d='M8.2 13.4 4.6 9.8l1.2-1.2 2.4 2.4 5.4-5.4 1.2 1.2z'/%3E%3C/svg%3E");
  background-size: 20px 20px;
  background-repeat: no-repeat;
}

.pkg-math {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius);
  padding: 22px 24px;
  margin: 0 0 16px;
}

.pkg-math p {
  margin: 0;
  font-size: 17.5px;
  line-height: 1.6;
  color: rgba(255,255,255,0.92);
}

.pkg-math strong {
  color: var(--tuscan-sun);
  font-weight: 600;
}

.pkg-returning {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  margin: 0 0 12px;
  text-align: center;
}

.pkg-note {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  margin: 0 0 32px;
  text-align: center;
}

.featured-pkg .btn {
  display: flex;
  width: 100%;
  max-width: 340px;
  margin: 0 auto;
}

@media (max-width: 720px) {
  .featured-pkg { padding: 56px 24px 36px; }
  .pkg-includes { grid-template-columns: 1fr; gap: 12px; }
}

/* =========================================================
   Service Cards Grid
   ========================================================= */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  margin-top: 24px;
}

.svc-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px 32px;
  display: flex;
  flex-direction: column;
  min-width: 0;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
}

.svc-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(101,164,110,0.5);
}

.svc-card-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 8px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 16px;
  flex-wrap: wrap;
}

.svc-card h3 {
  font-size: 22px;
  color: var(--pine-teal);
  margin: 0;
  flex: 1;
}

.svc-price {
  font-family: var(--serif);
  font-size: 32px;
  color: var(--sage-green);
  font-weight: 700;
  white-space: nowrap;
}

.svc-tagline {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--pine-teal);
  margin: 18px 0 12px;
}

.svc-desc {
  color: var(--body);
  font-size: 15.5px;
  line-height: 1.65;
  margin: 0 0 18px;
}

.svc-includes-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
  font-weight: 600;
  margin: 8px 0 10px;
}

.svc-includes {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  font-size: 14.5px;
  color: var(--body);
  line-height: 1.55;
}

.svc-includes li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 8px;
}

.svc-includes li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sage-green);
}

.svc-card .btn {
  margin-top: auto;
  align-self: stretch;
  width: 100%;
  text-align: center;
}

@media (max-width: 768px) {
  .svc-grid { grid-template-columns: minmax(0, 1fr); gap: 20px; }
  .svc-card { padding: 28px 24px; }
}

/* =========================================================
   About — credentials list (Pine Teal section)
   ========================================================= */
.cred-list {
  list-style: none;
  padding: 0;
  margin: 32px auto 0;
  max-width: 760px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.cred-list li {
  position: relative;
  padding: 14px 16px 14px 48px;
  border-top: 1px solid rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.92);
  font-size: 16.5px;
  line-height: 1.5;
}

.cred-list li:last-child {
  border-bottom: 1px solid rgba(255,255,255,0.10);
}

.cred-list li::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 20px;
  width: 18px;
  height: 2px;
  background: var(--tuscan-sun);
}

@media (max-width: 600px) {
  .cred-list li {
    padding: 16px 8px 16px 40px;
    font-size: 15.5px;
  }
  .cred-list li::before { left: 8px; top: 22px; width: 14px; }
}

/* About hero — slightly tighter top padding since no two-line H1 */
.hero-about { padding: 72px 0 80px; }
.hero-about h1 { font-size: clamp(40px, 6vw, 68px); }

/* =========================================================
   FAQ — accordion list with smooth expand
   ========================================================= */
.faq-section-head {
  text-align: center;
  margin-bottom: 40px;
}

.faq-section-head h2 {
  font-size: clamp(30px, 3.8vw, 40px);
  margin: 8px 0 12px;
}

.faq-section-sub {
  color: var(--muted);
  font-size: 17px;
  margin: 0;
}

.section-pine .faq-section-sub { color: rgba(255,255,255,0.78); }

.faq-list {
  max-width: 820px;
  margin: 0 auto;
  border-top: 1px solid var(--border);
}

.section-mint .faq-list {
  border-top-color: rgba(18,68,59,0.16);
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.section-mint .faq-item {
  border-bottom-color: rgba(18,68,59,0.16);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 56px 22px 4px;
  position: relative;
  font-family: var(--serif);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 600;
  color: var(--pine-teal);
  line-height: 1.35;
  transition: color 0.2s var(--ease);
  user-select: none;
}

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

.faq-item summary:hover {
  color: var(--sage-green);
}

.faq-item summary::after {
  content: "";
  position: absolute;
  right: 8px;
  top: 50%;
  width: 14px;
  height: 14px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-70%) rotate(45deg);
  transition: transform 0.32s var(--ease);
}

.faq-item[open] summary::after {
  transform: translateY(-30%) rotate(-135deg);
}

.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.32s var(--ease);
}

.faq-answer > *:first-child { margin-top: 0; padding-top: 0; }

.faq-answer p {
  color: var(--body);
  font-size: 16.5px;
  line-height: 1.7;
  margin: 0 0 14px;
  padding-right: 56px;
}

.faq-answer p:last-child { margin-bottom: 22px; }

.faq-answer .faq-note {
  margin-top: 18px;
  padding: 14px 18px;
  background: var(--mint-cream);
  border-left: 3px solid var(--tuscan-sun);
  border-radius: 4px;
  font-size: 15.5px;
  color: var(--pine-teal);
}

.section-mint .faq-answer .faq-note {
  background: var(--white);
  border-left-color: var(--tuscan-sun);
}

.faq-answer .faq-note a {
  color: var(--pine-teal);
  font-weight: 600;
  border-bottom: 1px solid currentColor;
}

@media (max-width: 600px) {
  .faq-item summary {
    font-size: 17px;
    padding: 18px 44px 18px 0;
  }
  .faq-item summary::after { right: 4px; width: 11px; height: 11px; }
  .faq-answer p { padding-right: 8px; font-size: 15.5px; }
}

/* =========================================================
   Articles index — card grid
   ========================================================= */
.article-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  max-width: 1080px;
  margin: 0 auto;
}

.article-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px 28px;
  text-decoration: none;
  color: var(--body);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
  min-width: 0;
}

.article-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(101,164,110,0.5);
  color: var(--body);
}

.article-card-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 36px;
  color: var(--tuscan-sun);
  line-height: 1;
  margin-bottom: 18px;
}

.article-card h2 {
  font-size: 22px;
  color: var(--pine-teal);
  line-height: 1.25;
  margin: 0 0 14px;
}

.article-card p {
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.6;
  margin: 0 0 22px;
  flex-grow: 1;
}

.article-card-cta {
  font-weight: 600;
  font-size: 15px;
  color: var(--pine-teal);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
}

.article-card:hover .article-card-cta { color: var(--sage-green); }

@media (max-width: 880px) {
  .article-grid { grid-template-columns: minmax(0, 1fr); gap: 18px; }
}

/* =========================================================
   Article body — long-form
   ========================================================= */
.article-body {
  max-width: 720px;
  margin: 0 auto;
}

.article-meta {
  display: block;
  font-size: 14px;
  color: var(--muted);
  font-style: italic;
  margin: 0 0 8px;
  letter-spacing: 0.01em;
}

.article-body h1 {
  font-size: clamp(32px, 4.4vw, 46px);
  margin: 0 0 18px;
  line-height: 1.18;
}

.article-body .article-intro {
  font-size: 19px;
  line-height: 1.65;
  color: var(--body);
  margin: 0 0 28px;
}

.article-body h2 {
  font-size: clamp(22px, 2.4vw, 28px);
  margin: 40px 0 16px;
  color: var(--pine-teal);
}

.article-body p {
  font-size: 17px;
  line-height: 1.75;
  color: var(--body);
  margin: 0 0 18px;
}

.article-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--sage-green);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 28px;
}
.article-back:hover { color: var(--pine-teal); }

.article-next {
  margin-top: 56px;
  padding: 28px 32px;
  background: var(--mint-cream);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.article-next-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
  font-weight: 600;
}

.article-next a {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--pine-teal);
  line-height: 1.3;
}

.article-next a:hover { color: var(--sage-green); }

@media (max-width: 600px) {
  .article-body h1 { font-size: 30px; }
  .article-body .article-intro { font-size: 17px; }
  .article-body h2 { font-size: 22px; margin-top: 32px; }
  .article-body p { font-size: 16px; }
  .article-next { padding: 22px; }
  .article-next a { font-size: 19px; }
}

/* =========================================================
   Thank-you pages
   ========================================================= */
.ty-section {
  background: var(--mint-cream);
  padding: 80px 0 96px;
  min-height: calc(100vh - 200px);
}

.ty-card {
  background: var(--white);
  border-radius: var(--radius-lg, 14px);
  padding: 56px clamp(28px, 5vw, 64px) 48px;
  box-shadow: 0 24px 56px rgba(18,68,59,0.08), 0 4px 12px rgba(18,68,59,0.04);
  border: 1px solid var(--border);
  text-align: left;
}

.ty-check {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--sage-green);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.ty-check svg { width: 34px; height: 34px; }

.ty-card .eyebrow { display: block; margin-bottom: 14px; }

.ty-card h1 {
  font-size: clamp(30px, 4.2vw, 42px);
  margin: 0 0 16px;
  line-height: 1.18;
}

.ty-lede {
  font-size: 18px;
  line-height: 1.65;
  color: var(--body);
  margin: 0 0 36px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}

.ty-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  margin-bottom: 36px;
}

.ty-step-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 30px;
  color: var(--tuscan-sun);
  line-height: 1;
  padding-top: 4px;
}

.ty-step-body h2 {
  font-size: 22px;
  color: var(--pine-teal);
  margin: 0 0 10px;
}

.ty-step-body p {
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--body);
  margin: 0 0 18px;
}

.ty-btn { margin-top: 4px; }

.ty-body {
  font-size: 18px;
  line-height: 1.7;
  color: var(--body);
  margin: 0 0 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}

.ty-actions {
  margin-bottom: 28px;
}

.ty-foot {
  margin-top: 12px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  font-size: 15.5px;
  color: var(--muted);
}

.ty-foot a {
  color: var(--pine-teal);
  font-weight: 600;
  border-bottom: 1px solid currentColor;
}

@media (max-width: 600px) {
  .ty-section { padding: 48px 0 64px; }
  .ty-card { padding: 36px 22px 32px; }
  .ty-step { gap: 14px; }
  .ty-step-num { font-size: 24px; }
  .ty-step-body h2 { font-size: 19px; }
}

/* =========================================================
   Reviews embed
   ========================================================= */
.reviews-embed {
  margin-top: 32px;
  text-align: left;
}

/* =========================================================
   Bio strip (Section 8)
   ========================================================= */
.bio-strip { padding: 60px 0; }

.bio-strip-inner {
  display: flex;
  align-items: center;
  gap: 40px;
}

.bio-strip-avatar {
  flex: 0 0 auto;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 3px solid var(--white);
}

.bio-strip-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
}

.bio-strip-text { flex: 1; min-width: 0; }

.bio-strip-text h2 {
  font-size: clamp(28px, 3.4vw, 36px);
  margin: 4px 0 14px;
}

.bio-strip-text p {
  font-size: 17px;
  line-height: 1.65;
  margin: 0 0 14px;
  max-width: 560px;
}

@media (max-width: 640px) {
  .bio-strip-inner { flex-direction: column; text-align: center; gap: 24px; }
  .bio-strip-avatar { width: 132px; height: 132px; }
  .bio-strip-text p { margin-left: auto; margin-right: auto; }
}

.bio-strip h2 { font-size: clamp(28px, 3.4vw, 36px); }

.bio-strip-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--pine-teal);
  font-weight: 600;
  margin-top: 8px;
}
.bio-strip-link::after {
  content: "→";
  transition: transform 0.2s var(--ease);
}
.bio-strip-link:hover::after { transform: translateX(4px); }

/* =========================================================
   Final CTA
   ========================================================= */
.final-cta { text-align: center; }
.final-cta h2 {
  font-size: clamp(34px, 4.5vw, 52px);
  color: var(--white);
  margin: 0 0 20px;
}
.final-cta p {
  color: rgba(255,255,255,0.82);
  font-size: 18px;
  max-width: 620px;
  margin: 0 auto 36px;
}
.final-cta-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.final-cta-foot {
  font-size: 14.5px;
  color: rgba(255,255,255,0.65);
}
.final-cta-foot a {
  color: var(--tuscan-sun);
  border-bottom: 1px solid rgba(243,201,104,0.4);
}
.final-cta-foot a:hover {
  color: var(--tuscan-sun-deep);
  border-bottom-color: var(--tuscan-sun-deep);
}

/* =========================================================
   Footer
   ========================================================= */
.footer {
  background: var(--pine-teal-deep);
  color: rgba(255,255,255,0.82);
  padding: 64px 0 32px;
}

.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.footer-logo img {
  height: 44px;
  width: auto;
  margin-bottom: 16px;
  /* Source logo is dark — convert to a soft mint/white tone for contrast on Pine Teal */
  filter: brightness(0) invert(1) sepia(8%) saturate(150%) hue-rotate(80deg);
  opacity: 0.95;
}

.footer-tag {
  font-size: 14.5px;
  color: rgba(255,255,255,0.65);
  max-width: 320px;
  line-height: 1.55;
}

.footer h4 {
  color: var(--white);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin: 0 0 18px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: rgba(255,255,255,0.78);
  font-size: 15px;
}

.footer-links a:hover { color: var(--tuscan-sun); }

.footer-text-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--tuscan-sun);
  color: var(--pine-teal);
  font-weight: 600;
  padding: 12px 20px;
  border-radius: 999px;
  font-size: 15px;
  margin-bottom: 16px;
}
.footer-text-cta:hover {
  background: var(--tuscan-sun-deep);
  color: var(--pine-teal);
}

.footer-phone {
  font-size: 14.5px;
  color: rgba(255,255,255,0.65);
}

.footer-bottom {
  max-width: var(--container);
  margin: 48px auto 0;
  padding: 24px 24px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13.5px;
  color: rgba(255,255,255,0.55);
}

@media (max-width: 768px) {
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* =========================================================
   Scroll-fade animation utility
   ========================================================= */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  will-change: opacity, transform;
}

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

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  .fade-in { opacity: 1; transform: none; }
}

/* =========================================================
   Misc utility
   ========================================================= */
.section-eyebrow-center {
  display: block;
  text-align: center;
  margin: 0 auto 14px;
}
