/* ================================================================
   StudyPass — Design System
   style.css · 2026/27 Edition
   ================================================================ */

/* ── Reset ──────────────────────────────────────────────────────── */

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
}

body {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 400;
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

/* ── Design Tokens ──────────────────────────────────────────────── */

:root {
  --forest:  #13432D;
  --green:   #1B6847;
  --green-m: #239059;
  --green-b: #2EBF72;
  --green-w: #EAF5EF;
  --cream:   #F6F3EE;
  --cream-d: #EDE9E2;
  --white:   #FEFEFE;
  --ink:     #0D0D0B;
  --ink-70:  #525250;
  --ink-40:  #999997;
  --ink-12:  rgba(13,13,11,.12);
  --gold:    #9A6E1A;
  --gold-w:  #FDF3E0;
  --red:     #B83333;
  --red-w:   #FDECEA;
  --serif:   'Playfair Display', Georgia, serif;
  --sans:    'DM Sans', system-ui, sans-serif;
}

/* ── Layout ─────────────────────────────────────────────────────── */

.container {
  max-width: 1040px;
  margin-inline: auto;
  padding-inline: 2rem;
}

section, .section {
  padding-block: 5.5rem;
}

.section-sm  { padding-block: 3.5rem; }
.section-lg  { padding-block: 8rem; }
.section-cream    { background: var(--cream); }
.section-cream-d  { background: var(--cream-d); }
.section-white    { background: var(--white); }
.section-forest   { background: var(--forest); color: var(--cream); }
.section-ink      { background: var(--ink);    color: var(--cream); }

/* ── Typography ─────────────────────────────────────────────────── */

h1, .h1 {
  font-family: var(--serif);
  font-size: clamp(2.25rem, 6vw, 4.25rem);
  font-weight: 400;
  line-height: 1.06;
  letter-spacing: -0.02em;
}

h2, .h2 {
  font-family: var(--serif);
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

h3, .h3 {
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.015em;
}

h4, .h4 {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.4;
}

.eyebrow {
  font-family: var(--sans);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-m);
  display: block;
  margin-bottom: 1rem;
}

.section-forest .eyebrow,
.section-ink    .eyebrow { color: var(--green-b); }

p.lead {
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.75;
  color: var(--ink-70);
  max-width: 58ch;
}

.section-forest p.lead,
.section-ink    p.lead { color: rgba(246,243,238,.65); }

.caption {
  font-size: 0.8125rem;
  color: var(--ink-40);
  line-height: 1.5;
}

/* ── Section header ─────────────────────────────────────────────── */

.sh           { margin-bottom: 3.5rem; }
.sh-center    { text-align: center; }
.sh-center p.lead { margin-inline: auto; }

.sh h2        { margin-top: 0.625rem; }
.sh p.lead    { margin-top: 1.25rem; }

/* ── Buttons ────────────────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--sans);
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  padding: 0.75rem 1.75rem;
  border-radius: 100px;
  border: 1.5px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
  line-height: 1;
  transition: background 120ms ease, color 120ms ease, border-color 120ms ease, opacity 120ms ease;
}

/* Primary — forest fill */
.btn-primary {
  background: var(--forest);
  color: var(--cream);
  border-color: var(--forest);
}
.btn-primary:hover {
  background: var(--green);
  border-color: var(--green);
}

/* White — cream fill (use on dark sections) */
.btn-white {
  background: var(--cream);
  color: var(--forest);
  border-color: var(--cream);
}
.btn-white:hover { background: #ece9e4; border-color: #ece9e4; }

/* Ghost — transparent, cream border (use on dark sections) */
.btn-ghost {
  background: transparent;
  color: var(--cream);
  border-color: rgba(246,243,238,.4);
}
.btn-ghost:hover { border-color: var(--cream); background: rgba(246,243,238,.06); }

/* Outline — transparent, forest border (use on light sections) */
.btn-outline {
  background: transparent;
  color: var(--forest);
  border-color: var(--forest);
}
.btn-outline:hover { background: var(--forest); color: var(--cream); }

/* Green accent */
.btn-green {
  background: var(--green-m);
  color: var(--white);
  border-color: var(--green-m);
}
.btn-green:hover { background: #1e7d4d; border-color: #1e7d4d; }

/* WhatsApp */
.btn-wa {
  background: #25D366;
  color: #fff;
  border-color: #25D366;
}
.btn-wa:hover { background: #1ebe5d; border-color: #1ebe5d; }

/* Discord */
.btn-discord {
  background: #5865F2;
  color: #fff;
  border-color: #5865F2;
}
.btn-discord:hover { background: #4752c4; border-color: #4752c4; }

/* Sizes */
.btn-sm { font-size: 0.8125rem; padding: 0.5rem 1.25rem; }
.btn-lg { font-size: 1rem;      padding: 1rem 2.25rem; }
.btn-xl { font-size: 1.0625rem; padding: 1.125rem 2.75rem; }

/* Full width */
.btn-full { width: 100%; justify-content: center; }

/* ── Navigation ─────────────────────────────────────────────────── */

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  height: 58px;
  background: rgba(246,243,238,.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 0.5px solid var(--ink-12);
}

.nav-inner {
  height: 58px;
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-logo {
  font-family: var(--serif);
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--forest);
  letter-spacing: -0.01em;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--forest);
  flex-shrink: 0;
}

.nav-center {
  display: none;
  align-items: center;
  gap: 2rem;
  flex: 1;
  justify-content: center;
}

.nav-center a {
  font-size: 0.9375rem;
  font-weight: 400;
  color: var(--ink-70);
  transition: color 120ms ease;
}

.nav-center a:hover,
.nav-center a.active { color: var(--forest); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-left: auto;
}

.nav-wa {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--forest);
  white-space: nowrap;
}

.nav-wa:hover { opacity: 0.7; }

/* Hamburger */
.nav-burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
  cursor: pointer;
}

.nav-burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--ink);
  transition: transform 200ms ease, opacity 200ms ease;
}

.nav-burger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.nav-burger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav-burger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* Mobile overlay */
.nav-overlay {
  position: fixed;
  top: 58px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--cream);
  z-index: 499;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 260ms cubic-bezier(.4,0,.2,1);
  border-top: 0.5px solid var(--ink-12);
}

.nav-overlay.open { transform: translateX(0); }

.nav-overlay-inner {
  padding: 2rem 0 4rem;
  display: flex;
  flex-direction: column;
}

.nav-overlay-inner a {
  padding: 1rem 0;
  font-size: 1.5rem;
  font-family: var(--serif);
  font-weight: 400;
  color: var(--ink);
  border-bottom: 0.5px solid var(--ink-12);
  transition: color 120ms ease;
}

.nav-overlay-inner a:hover { color: var(--forest); }

.nav-overlay-actions {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.nav-wa-large {
  font-size: 1rem;
  font-weight: 500;
  color: var(--forest);
  display: block;
  padding: 0 !important;
  border-bottom: none !important;
}

/* ── Footer ─────────────────────────────────────────────────────── */

.site-footer {
  margin-top: 0;
}

.footer-top {
  background: var(--forest);
  padding: 4rem 0;
}

.footer-top-inner {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.footer-brand .nav-logo {
  color: var(--cream);
  margin-bottom: 0.75rem;
}

.footer-brand .nav-dot { background: var(--cream); }

.footer-brand p {
  font-size: 0.9375rem;
  color: rgba(246,243,238,.5);
  line-height: 1.6;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-nav a {
  font-size: 0.9375rem;
  color: rgba(246,243,238,.6);
  transition: color 120ms ease;
}

.footer-nav a:hover { color: var(--cream); }

.footer-bottom {
  background: var(--ink);
  padding: 1.25rem 0;
}

.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.footer-bottom-inner span,
.footer-bottom-inner a {
  font-size: 0.8125rem;
  color: rgba(246,243,238,.28);
  line-height: 1.5;
}

.footer-bottom-inner a:hover { color: rgba(246,243,238,.55); }

/* ── Page offset (nav height) ───────────────────────────────────── */

.page-body { padding-top: 58px; }

/* ── Hero — dark ────────────────────────────────────────────────── */

.hero-dark {
  background: var(--forest);
  color: var(--cream);
  padding-top: 58px;
  min-height: 100svh;
  display: flex;
  align-items: center;
}

.hero-dark-inner {
  padding-block: 6rem;
}

/* Pill label */
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(246,243,238,.1);
  border: 0.5px solid rgba(246,243,238,.25);
  border-radius: 100px;
  padding: 0.375rem 0.875rem;
  font-size: 0.8125rem;
  color: rgba(246,243,238,.8);
  margin-bottom: 2rem;
}

.hero-dark h1 { color: var(--cream); margin-bottom: 1.5rem; }

.hero-dark h1 em {
  font-style: italic;
  color: rgba(246,243,238,.75);
}

.hero-dark p.lead {
  color: rgba(246,243,238,.65);
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  margin-bottom: 3.5rem;
}

/* Stat row below CTAs */
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  border-top: 0.5px solid rgba(246,243,238,.15);
  padding-top: 2rem;
}

.hero-stat-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.hero-stat-num {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--cream);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.8125rem;
  color: rgba(246,243,238,.45);
  line-height: 1.4;
}

/* ── Hero — light (cream/editorial) ────────────────────────────── */

.hero-light {
  background: var(--cream);
  padding-top: 58px;
  padding-block-end: 5.5rem;
  border-bottom: 0.5px solid var(--ink-12);
}

.hero-light-inner { padding-top: 4.5rem; }

.hero-light h1 { margin-bottom: 1.5rem; }
.hero-light p.lead { margin-bottom: 2rem; }

/* ── Social proof strip ─────────────────────────────────────────── */

.proof-strip {
  background: var(--white);
  border-bottom: 0.5px solid var(--ink-12);
  padding-block: 2.5rem;
}

.proof-strip-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.proof-item {
  border-left: 2px solid var(--forest);
  padding-left: 1.5rem;
}

.proof-quote {
  font-family: var(--serif);
  font-size: 1rem;
  font-style: italic;
  color: var(--ink);
  line-height: 1.65;
  margin-bottom: 0.5rem;
}

.proof-attr {
  font-size: 0.8125rem;
  color: var(--ink-40);
}

/* ── "What we do" rows ──────────────────────────────────────────── */

.work-list {
  border-top: 0.5px solid var(--ink-12);
}

.work-row {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 2rem;
  padding: 2.5rem 0;
  border-bottom: 0.5px solid var(--ink-12);
  align-items: start;
}

.work-num {
  font-family: var(--serif);
  font-size: 1.125rem;
  font-style: italic;
  color: var(--ink-40);
  padding-top: 0.25rem;
}

.work-content h3 { margin-bottom: 0.5rem; }

.work-content p {
  font-size: 0.9375rem;
  color: var(--ink-70);
  line-height: 1.7;
  max-width: 60ch;
}

.work-content .work-price {
  margin-top: 0.875rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--forest);
}

/* ── Featured service banner ────────────────────────────────────── */

.featured-banner {
  background: var(--forest);
  color: var(--cream);
  padding-block: 5.5rem;
}

.featured-banner-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.featured-banner-label {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-b);
  margin-bottom: 1rem;
}

.featured-banner h2 { color: var(--cream); margin-bottom: 1rem; }

.featured-banner p.lead {
  color: rgba(246,243,238,.65);
  margin-bottom: 0;
}

.featured-banner-note {
  font-size: 0.875rem;
  font-style: italic;
  color: rgba(246,243,238,.5);
  margin-top: 0.625rem;
}

.featured-banner-points {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  margin-block: 2rem;
}

.featured-banner-points li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: rgba(246,243,238,.78);
  line-height: 1.55;
}

.featured-banner-points li::before {
  content: '';
  width: 5px;
  height: 5px;
  background: var(--green-b);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 0.55em;
}

.featured-price {
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--cream);
  line-height: 1;
  margin-bottom: 1.5rem;
}

.featured-price small {
  font-size: 1.125rem;
  color: rgba(246,243,238,.45);
  font-family: var(--sans);
  margin-left: 0.5rem;
}

/* ── Service rows (listing) ─────────────────────────────────────── */

.service-list {
  border-top: 0.5px solid var(--ink-12);
}

.service-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.625rem;
  padding: 2rem 0;
  border-bottom: 0.5px solid var(--ink-12);
  align-items: baseline;
}

.service-row-name {
  font-family: var(--serif);
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  font-weight: 400;
  color: var(--ink);
  line-height: 1.2;
}

.service-row-price {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--forest);
}

.service-row-desc {
  font-size: 0.9375rem;
  color: var(--ink-70);
  line-height: 1.6;
}

.service-row-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--forest);
  white-space: nowrap;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.service-row-link:hover { opacity: 0.7; }

/* ── Guide cover — CSS visual ───────────────────────────────────── */

.guide-cover {
  aspect-ratio: 3 / 4;
  background: var(--forest);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 10px;
  max-width: 320px;
  position: relative;
  overflow: hidden;
}

/* Subtle texture lines */
.guide-cover::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(246,243,238,.025) 1px, transparent 1px);
  background-size: 100% 48px;
  pointer-events: none;
}

.guide-cover-top {
  position: relative;
  z-index: 1;
}

.guide-cover-pub {
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(246,243,238,.4);
  margin-bottom: 0.5rem;
}

.guide-cover-year {
  font-size: 0.6875rem;
  font-weight: 500;
  color: var(--green-b);
  letter-spacing: 0.1em;
}

.guide-cover-middle {
  position: relative;
  z-index: 1;
}

.guide-cover-title {
  font-family: var(--serif);
  font-size: 1.875rem;
  font-weight: 400;
  color: var(--cream);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.guide-cover-title em {
  font-style: italic;
  color: rgba(246,243,238,.65);
}

.guide-cover-sub {
  font-size: 0.8125rem;
  color: rgba(246,243,238,.5);
  line-height: 1.5;
}

.guide-cover-bottom {
  position: relative;
  z-index: 1;
  border-top: 0.5px solid rgba(246,243,238,.15);
  padding-top: 1rem;
}

.guide-cover-meta {
  font-size: 0.6875rem;
  color: rgba(246,243,238,.35);
  letter-spacing: 0.04em;
}

/* ── Guide preview section ──────────────────────────────────────── */

.guide-preview-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: start;
}

.guide-feature-list {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  margin-block: 1.75rem;
}

.guide-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: var(--ink-70);
  line-height: 1.55;
}

.guide-feature-list li::before {
  content: '';
  width: 5px;
  height: 5px;
  background: var(--green-m);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 0.6em;
}

.guide-price-pair {
  display: flex;
  align-items: baseline;
  gap: 1.25rem;
  margin-bottom: 1.75rem;
  flex-wrap: wrap;
}

.price-main {
  font-family: var(--serif);
  font-size: 2.25rem;
  font-weight: 400;
  color: var(--forest);
  line-height: 1;
}

.price-alt {
  font-size: 1.125rem;
  color: var(--ink-40);
}

.price-sep {
  font-size: 0.875rem;
  color: var(--ink-40);
}

.guide-cover-side {
  display: flex;
  justify-content: center;
}

/* ── Accordion ──────────────────────────────────────────────────── */

.accordion {
  border-top: 0.5px solid var(--ink-12);
}

.acc-dark { border-top-color: rgba(246,243,238,.12); }

.accordion-item {
  border-bottom: 0.5px solid var(--ink-12);
}

.acc-dark .accordion-item { border-bottom-color: rgba(246,243,238,.12); }

.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.5rem 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}

.accordion-trigger:hover .acc-title { color: var(--forest); }
.acc-dark .accordion-trigger:hover .acc-title { color: var(--cream); }

.acc-label {
  font-family: var(--serif);
  font-size: clamp(0.9375rem, 2vw, 1.0625rem);
  font-weight: 400;
  color: var(--ink);
  line-height: 1.35;
  flex: 1;
  transition: color 120ms ease;
}

.acc-dark .acc-label { color: rgba(246,243,238,.85); }

.acc-title { /* alias */ }

.acc-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 0.5px solid var(--ink-12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.25rem;
  position: relative;
}

.acc-dark .acc-icon { border-color: rgba(246,243,238,.2); }

.acc-icon::before,
.acc-icon::after {
  content: '';
  position: absolute;
  background: var(--ink);
  transition: transform 200ms ease, opacity 200ms ease;
}

.acc-icon::before { width: 9px; height: 1px; }
.acc-icon::after  { width: 1px; height: 9px; }

.acc-dark .acc-icon::before,
.acc-dark .acc-icon::after { background: rgba(246,243,238,.65); }

.accordion-trigger[aria-expanded="true"] .acc-icon::after {
  transform: scaleY(0);
  opacity: 0;
}

.accordion-panel {
  overflow: hidden;
  transition: max-height 320ms cubic-bezier(.4,0,.2,1);
}

.accordion-body {
  padding-bottom: 1.75rem;
}

.accordion-body p {
  font-size: 0.9375rem;
  color: var(--ink-70);
  line-height: 1.75;
  margin-bottom: 0.875rem;
}

.accordion-body p:last-child { margin-bottom: 0; }

.acc-dark .accordion-body p { color: rgba(246,243,238,.6); }

.accordion-body ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.accordion-body ul li {
  font-size: 0.9375rem;
  color: var(--ink-70);
  padding-left: 1.25rem;
  position: relative;
  line-height: 1.6;
}

.acc-dark .accordion-body ul li { color: rgba(246,243,238,.55); }

.accordion-body ul li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--green-m);
}

/* ── Process steps ──────────────────────────────────────────────── */

.process-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 0.5px solid var(--ink-12);
}

.process-step {
  display: grid;
  grid-template-columns: 2.5rem 1fr;
  gap: 1.75rem;
  padding: 2rem 0;
  border-bottom: 0.5px solid var(--ink-12);
  align-items: start;
}

.process-step-num {
  font-family: var(--serif);
  font-size: 1rem;
  font-style: italic;
  color: var(--ink-40);
  padding-top: 0.2rem;
}

.process-step h4 { margin-bottom: 0.5rem; }

.process-step p {
  font-size: 0.9375rem;
  color: var(--ink-70);
  line-height: 1.7;
}

/* Dark version */
.process-dark .process-step { border-color: rgba(246,243,238,.12); }
.process-dark .process-list { border-top-color: rgba(246,243,238,.12); }
.process-dark .process-step-num { color: rgba(246,243,238,.35); }
.process-dark .process-step h4 { color: var(--cream); }
.process-dark .process-step p   { color: rgba(246,243,238,.6); }

/* ── Timeline ───────────────────────────────────────────────────── */

.timeline {
  position: relative;
  padding-left: 3rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0.625rem;
  top: 0.5rem;
  bottom: 0.5rem;
  width: 0.5px;
  background: var(--ink-12);
}

.timeline-item {
  position: relative;
  padding-bottom: 2.5rem;
}

.timeline-item:last-child { padding-bottom: 0; }

.timeline-dot {
  position: absolute;
  left: -2.375rem;
  top: 0.375rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--forest);
  border: 2px solid var(--cream-d);
}

.timeline-item h4 { margin-bottom: 0.375rem; }

.timeline-item p {
  font-size: 0.9375rem;
  color: var(--ink-70);
  line-height: 1.7;
}

.timeline-tag {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-m);
  margin-bottom: 0.375rem;
  display: block;
}

/* ── Service comparison table ───────────────────────────────────── */

.table-wrap {
  border: 0.5px solid var(--ink-12);
  border-radius: 10px;
  overflow: hidden;
}

.service-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9375rem;
}

.service-table thead th {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-40);
  text-align: left;
  padding: 1rem 1.25rem;
  border-bottom: 0.5px solid var(--ink-12);
  background: var(--cream);
  white-space: nowrap;
}

.service-table tbody td {
  padding: 1.125rem 1.25rem;
  border-bottom: 0.5px solid var(--ink-12);
  vertical-align: top;
  color: var(--ink);
  line-height: 1.55;
  word-break: break-word;
}

.service-table tbody tr:last-child td { border-bottom: none; }

.service-table tbody tr:hover td { background: rgba(13,13,11,.015); }

.td-service-name {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 400;
}

.td-price {
  font-weight: 500;
  color: var(--forest);
  white-space: nowrap;
}

.td-link a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--forest);
  text-decoration: underline;
  text-underline-offset: 3px;
  white-space: nowrap;
}

.td-link a:hover { opacity: 0.7; }

/* ── Insider knowledge / callout box ────────────────────────────── */

.callout {
  border: 0.5px solid var(--ink-12);
  border-radius: 10px;
  padding: 1.75rem;
  background: var(--cream);
}

.callout-forest {
  border: 2px solid var(--forest);
  border-radius: 16px;
  padding: 2rem;
  background: var(--white);
}

.callout-gold {
  border: 0.5px solid var(--gold);
  border-radius: 10px;
  padding: 1.75rem;
  background: var(--gold-w);
}

.callout-eyebrow {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--forest);
  margin-bottom: 0.75rem;
  display: block;
}

.callout-gold .callout-eyebrow { color: var(--gold); }

.callout h4 { margin-bottom: 0.625rem; }

.callout p {
  font-size: 0.9375rem;
  color: var(--ink-70);
  line-height: 1.72;
}

/* ── Pull quote ─────────────────────────────────────────────────── */

.pull-quote {
  font-family: var(--serif);
  font-size: clamp(1.1875rem, 3vw, 1.5rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.55;
  color: var(--forest);
  padding-left: 1.75rem;
  border-left: 2px solid var(--forest);
  margin-block: 2.5rem;
}

.pull-quote-attr {
  display: block;
  margin-top: 0.875rem;
  font-family: var(--sans);
  font-style: normal;
  font-size: 0.875rem;
  color: var(--ink-40);
}

/* ── Story block ────────────────────────────────────────────────── */

.story-block {
  border: 0.5px solid var(--ink-12);
  border-radius: 16px;
  padding: 2.5rem;
  background: var(--cream);
}

.story-eyebrow {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-m);
  margin-bottom: 1rem;
  display: block;
}

.story-block blockquote {
  font-family: var(--serif);
  font-size: clamp(1rem, 2vw, 1.1875rem);
  font-style: italic;
  line-height: 1.65;
  color: var(--ink);
  margin-bottom: 1.25rem;
}

.story-attr {
  font-size: 0.875rem;
  color: var(--ink-40);
}

/* ── Deliverables list (service pages) ──────────────────────────── */

.deliverables {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  border-top: 0.5px solid var(--ink-12);
  padding-top: 1.5rem;
}

.deliverable-item {
  display: grid;
  grid-template-columns: 1.5rem 1fr;
  gap: 0.875rem;
  align-items: start;
}

.deliverable-num {
  font-family: var(--serif);
  font-size: 0.875rem;
  font-style: italic;
  color: var(--green-m);
  padding-top: 0.125rem;
}

.deliverable-item h4 { margin-bottom: 0.25rem; }

.deliverable-item p {
  font-size: 0.9375rem;
  color: var(--ink-70);
  line-height: 1.65;
}

/* ── Forms ──────────────────────────────────────────────────────── */

.form-wrap {
  background: var(--white);
  border: 0.5px solid var(--ink-12);
  border-radius: 16px;
  padding: 2.5rem;
}

.form-heading {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 1.75rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  margin-bottom: 1.25rem;
}

.form-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-70);
}

.form-label .req { color: var(--red); margin-left: 2px; }

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  font-family: var(--sans);
  font-size: 0.9375rem;
  font-weight: 400;
  color: var(--ink);
  background: transparent;
  border: 0.5px solid var(--ink-12);
  border-radius: 10px;
  padding: 0.875rem 1rem;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  transition: border-color 120ms ease;
  line-height: 1.5;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--green-m);
  border-width: 1px;
}

.form-input::placeholder,
.form-textarea::placeholder { color: var(--ink-40); }

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

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23999997' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.875rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form-error-msg {
  font-size: 0.8125rem;
  color: var(--red);
  line-height: 1.4;
  display: none;
}

.form-error-msg.visible { display: block; }

.form-input.is-error,
.form-textarea.is-error,
.form-select.is-error {
  border-color: var(--red);
  border-width: 1px;
}

.form-submit-row {
  margin-top: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.form-note {
  font-size: 0.8125rem;
  color: var(--ink-40);
  line-height: 1.55;
  text-align: center;
}

/* Form success banner */
.form-success {
  background: var(--green-w);
  border: 0.5px solid var(--green-m);
  border-radius: 10px;
  padding: 1.25rem 1.5rem;
  display: none;
}

.form-success.visible { display: block; }

.form-success p {
  font-size: 0.9375rem;
  color: var(--forest);
  font-weight: 500;
}

/* ── Contact methods ────────────────────────────────────────────── */

.contact-methods {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.contact-card {
  border: 0.5px solid var(--ink-12);
  border-radius: 16px;
  padding: 2rem;
  background: var(--white);
}

.contact-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.contact-card-icon-wa      { background: rgba(37,211,102,.12); }
.contact-card-icon-email   { background: var(--green-w); }
.contact-card-icon-cal     { background: var(--gold-w); }

.contact-card h3 { margin-bottom: 0.375rem; font-size: 1.1875rem; }

.contact-card-handle {
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--forest);
  margin-bottom: 0.625rem;
  display: block;
}

.contact-card p {
  font-size: 0.9375rem;
  color: var(--ink-70);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

/* ── Who is this for (3-up) ─────────────────────────────────────── */

.for-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 0.5px solid var(--ink-12);
}

.for-item {
  padding: 2rem 0;
  border-bottom: 0.5px solid var(--ink-12);
  display: grid;
  grid-template-columns: 2.5rem 1fr;
  gap: 1.5rem;
  align-items: start;
}

.for-num {
  font-family: var(--serif);
  font-size: 0.9375rem;
  font-style: italic;
  color: var(--ink-40);
  padding-top: 0.2rem;
}

.for-item h4 { margin-bottom: 0.5rem; }

.for-item p {
  font-size: 0.9375rem;
  color: var(--ink-70);
  line-height: 1.7;
}

/* ── FAQ section headers ────────────────────────────────────────── */

.faq-section {
  margin-bottom: 1rem;
}

.faq-section-title {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--ink);
  padding-block: 1.25rem;
  border-bottom: 0.5px solid var(--ink-12);
  margin-bottom: 0;
}

/* ── Price display ──────────────────────────────────────────────── */

.price-display {
  margin-block: 2rem;
}

.price-display-main {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 400;
  color: var(--forest);
  line-height: 1;
}

.section-forest .price-display-main { color: var(--cream); }

.price-display-or {
  font-size: 1rem;
  color: var(--ink-40);
  margin-inline: 0.875rem;
}

.price-display-alt {
  font-size: 1.75rem;
  font-family: var(--serif);
  color: var(--ink-40);
}

.price-display-note {
  font-size: 0.875rem;
  color: var(--ink-40);
  margin-top: 0.5rem;
  display: block;
}

/* ── Utility ────────────────────────────────────────────────────── */

.text-forest  { color: var(--forest); }
.text-muted   { color: var(--ink-70); }
.text-faint   { color: var(--ink-40); }
.text-cream   { color: var(--cream); }

.mt-sm  { margin-top: 1rem; }
.mt-md  { margin-top: 2rem; }
.mt-lg  { margin-top: 3.5rem; }
.mb-sm  { margin-bottom: 1rem; }
.mb-md  { margin-bottom: 2rem; }

.row-2 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
}

.divider-h {
  height: 0.5px;
  background: var(--ink-12);
  margin-block: 2rem;
}

/* ── FAQ teaser accordion override ─────────────────────────────── */

.faq-teaser a.see-all {
  display: inline-block;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--forest);
  text-decoration: underline;
  text-underline-offset: 3px;
  margin-top: 2rem;
}

.faq-teaser a.see-all:hover { opacity: 0.7; }

/* ── Responsive ─────────────────────────────────────────────────── */

@media (min-width: 540px) {
  .proof-strip-inner { grid-template-columns: 1fr 1fr; }
  .contact-methods   { grid-template-columns: 1fr; }
  .for-grid { grid-template-columns: 1fr; }
}

@media (min-width: 768px) {
  .container { padding-inline: 2.5rem; }

  .nav-center  { display: flex; }
  .nav-burger  { display: none; }
  .nav-right .btn { display: inline-flex; }

  .footer-top-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }

  .footer-nav {
    flex-direction: row;
    gap: 2rem;
  }

  .footer-bottom-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .featured-banner-inner { grid-template-columns: 1fr 1fr; }

  .guide-preview-grid { grid-template-columns: 1fr 1fr; align-items: center; }

  .service-row {
    grid-template-columns: 1.5fr auto auto auto;
    gap: 2rem;
    align-items: baseline;
  }

  .contact-methods { grid-template-columns: repeat(3, 1fr); }

  .for-grid { grid-template-columns: repeat(3, 1fr); gap: 0; }

  .for-item {
    padding: 2rem;
    border-bottom: none;
    border-right: 0.5px solid var(--ink-12);
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .for-item:last-child { border-right: none; }
  .for-num { padding-top: 0; }
}

@media (min-width: 1024px) {
  .container { padding-inline: 2rem; }
}
