/* ============================================================
   page.css — Deep-page styles
   Components specific to /about, /tuition, /contact etc.
   Loads after styles.css.
============================================================ */

/* ============================================================
   Shared deep-page page-hero
============================================================ */
.page-hero {
  padding: clamp(24px, 2.6vw, 40px) 0 clamp(28px, 3vw, 44px);
  border-bottom: 1px solid var(--hairline);
  background: var(--paper-2);
}
.page-hero-inner {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 900px;
}
/* Pull the first content section up tight under the hero so the page's
   actual content is visible without scrolling (consistent across deep pages). */
.page-hero + section {
  padding-top: clamp(32px, 3.5vw, 48px);
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--muted);
}
.breadcrumb a {
  color: var(--ink-soft);
  text-decoration: none;
}
.breadcrumb a:hover { color: var(--accent); }

.page-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1.0;
  letter-spacing: -0.025em;
  margin: 4px 0;
  color: var(--ink);
}
.page-title em.accent { font-style: italic; color: var(--accent); }

.page-lede {
  font-size: clamp(17px, 1.25vw, 20px);
  line-height: 1.5;
  color: var(--ink-soft);
  max-width: 56ch;
  margin: 0;
}

.page-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 12px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.02em;
  color: var(--muted);
}
.page-meta strong {
  color: var(--ink);
  font-weight: 500;
}
.page-meta-sep {
  width: 4px; height: 4px;
  background: var(--hairline);
  border-radius: 50%;
  display: inline-block;
}

/* current-page nav indicator */
.nav a.nav-current {
  color: var(--ink);
  position: relative;
}
.nav a.nav-current::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: -4px;
  height: 2px;
  background: var(--accent);
}

/* section sub-lede under section-title */
.section-sub {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 16px 0 0;
  max-width: 60ch;
}

/* ============================================================
   PRICING
============================================================ */
.pricing {
  padding: clamp(72px, 10vw, 130px) 0;
}
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 980px;
}
.price-card {
  background: var(--paper);
  border: 1px solid var(--hairline);
  padding: 36px 32px 32px;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
}
.price-card-feature {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.price-feature-tag {
  position: absolute;
  top: -12px;
  right: 28px;
  background: var(--accent);
  color: var(--paper);
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
  font-weight: 500;
}
.price-card-head {
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-bottom: 1px solid var(--hairline);
  padding-bottom: 22px;
}
.price-card-feature .price-card-head {
  border-bottom-color: color-mix(in srgb, var(--paper) 18%, transparent);
}
.price-tag {
  display: inline-block;
  align-self: flex-start;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  padding: 4px 10px;
  border: 1px solid color-mix(in srgb, var(--accent) 40%, transparent);
  border-radius: 999px;
}
.price-card-feature .price-tag {
  color: var(--accent-soft);
  border-color: color-mix(in srgb, var(--accent-soft) 50%, transparent);
}
.price-tier {
  font-family: var(--font-display);
  font-size: 32px;
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: inherit;
  margin: 0;
  font-weight: 400;
}
.price-aud {
  margin: 0;
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.55;
}
.price-card-feature .price-aud { color: color-mix(in srgb, var(--paper) 70%, transparent); }
.price-amount {
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.price-from {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
}
.price-card-feature .price-from { color: color-mix(in srgb, var(--paper) 60%, transparent); }
.price-num {
  font-family: var(--font-display);
  font-size: 56px;
  line-height: 1;
  letter-spacing: -0.025em;
  color: inherit;
}
.price-unit {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.02em;
}
.price-card-feature .price-unit { color: color-mix(in srgb, var(--paper) 60%, transparent); }
.price-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
  flex-grow: 1;
}
.price-list li {
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--ink-soft);
  padding-left: 22px;
  position: relative;
}
.price-list li strong {
  color: var(--ink);
  font-weight: 500;
}
.price-card-feature .price-list li { color: color-mix(in srgb, var(--paper) 80%, transparent); }
.price-card-feature .price-list li strong { color: var(--paper); }
.price-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.7em;
  width: 12px; height: 1px;
  background: var(--accent);
}
.price-card-feature .price-list li::before { background: var(--accent-soft); }

.price-card .btn-primary {
  background: var(--ink);
  color: var(--paper);
}
.price-card .btn-primary:hover { background: var(--accent); }
.price-card-feature .btn-primary {
  background: var(--paper);
  color: var(--ink);
}
.price-card-feature .btn-primary:hover { background: var(--accent); color: var(--paper); }

/* ============================================================
   PROCESS
============================================================ */
.process {
  padding: clamp(72px, 10vw, 130px) 0;
  background: var(--paper-2);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.process-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  background: var(--paper);
}
.process-step {
  padding: 32px 28px 36px;
  border-right: 1px solid var(--hairline);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.process-step:last-child { border-right: 0; }
.process-num {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.08em;
  font-weight: 500;
  color: var(--accent);
  padding-bottom: 14px;
  border-bottom: 1px solid var(--hairline);
}
.process-body h3 {
  font-family: var(--font-display);
  font-size: 26px;
  line-height: 1.08;
  letter-spacing: -0.015em;
  margin: 0 0 10px;
  font-weight: 400;
  color: var(--ink);
}
.process-body p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-soft);
}

/* ============================================================
   EXAM BOARDS
============================================================ */
.boards {
  padding: clamp(72px, 10vw, 130px) 0;
}
.boards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--hairline);
  border: 1px solid var(--hairline);
}
.board-tile {
  background: var(--paper);
  padding: 32px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: background .15s ease;
  text-decoration: none;
  color: inherit;
}
.board-tile:hover { background: var(--paper-2); }
.board-tile-head {
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.board-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--accent);
  font-weight: 500;
}
.board-tile h3 {
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 1;
  letter-spacing: -0.015em;
  margin: 0;
  font-weight: 400;
  color: var(--ink);
}
.board-tile p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink-soft);
  flex-grow: 1;
}
.board-tile-meta {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  padding-top: 14px;
  border-top: 1px solid var(--hairline);
}

/* ============================================================
   WHAT'S INCLUDED
============================================================ */
.included {
  padding: clamp(72px, 10vw, 130px) 0;
  background: var(--paper-2);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.included-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.included-intro {
  position: sticky;
  top: 100px;
}
.included-intro .section-eyebrow { margin-bottom: 24px; }
.included-blurb {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 16px 0 28px;
  max-width: 36ch;
}
.included-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1px;
  background: var(--hairline);
  border: 1px solid var(--hairline);
  background-color: var(--hairline);
}
.included-list li {
  background: var(--paper);
  padding: 22px 24px;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 16px;
  align-items: start;
}
.included-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 28px;
  color: var(--accent);
  line-height: 1;
  padding-top: 2px;
}
.included-list strong {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15.5px;
  display: block;
  color: var(--ink);
  margin-bottom: 4px;
}
.included-list span {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-soft);
}

/* ============================================================
   ABOUT — page-sub-title under hero title
============================================================ */
.page-sub-title {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 8px;
}

/* ============================================================
   ABOUT — BIO
============================================================ */
.bio {
  padding: clamp(72px, 10vw, 130px) 0;
}
.bio-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.bio-copy { display: flex; flex-direction: column; }
.bio-heading {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 32px;
  color: var(--ink);
  max-width: 18ch;
}
.bio-prose {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 64ch;
}
.bio-prose p {
  margin: 0;
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--ink-soft);
}
.bio-prose strong { color: var(--ink); font-weight: 600; }

.bio-signature {
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--hairline);
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
}
.bio-signature-name {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 26px;
  color: var(--ink);
}
.bio-signature-meta {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.bio-photo {
  position: sticky;
  top: 100px;
  align-self: start;
}
.bio-photo img {
  width: 100%;
  aspect-ratio: 1 / 1.1;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: 0 1px 0 var(--hairline), 0 30px 60px -20px color-mix(in srgb, var(--ink) 22%, transparent);
  filter: contrast(1.02) saturate(0.95);
}
.bio-photo-meta {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--hairline);
}
.bio-photo-label {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  color: var(--ink);
  line-height: 1;
}
.bio-photo-sub {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 8px;
}

/* ============================================================
   ABOUT — CREDENTIALS
============================================================ */
.credentials {
  padding: clamp(72px, 10vw, 130px) 0;
  background: var(--paper-2);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.cred-list {
  list-style: none;
  padding: 0;
  margin: 0;
  background: var(--paper);
  border: 1px solid var(--hairline);
}
.cred-item {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 28px 32px;
  border-bottom: 1px solid var(--hairline);
}
.cred-item:last-child { border-bottom: 0; }
.cred-num {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--accent);
}
.cred-body h3 {
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin: 0 0 6px;
  font-weight: 400;
  color: var(--ink);
}
.cred-body p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 60ch;
}
.cred-tag {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 6px 10px;
  border: 1px solid var(--hairline);
  border-radius: 999px;
  white-space: nowrap;
  justify-self: end;
}

/* ============================================================
   ABOUT — OUTSIDE OF TEACHING
============================================================ */
.outside {
  padding: clamp(72px, 10vw, 130px) 0;
}
.outside-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.outside-photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 2px;
  background: var(--paper-3);
  box-shadow: 0 1px 0 var(--hairline), 0 30px 60px -20px color-mix(in srgb, var(--ink) 20%, transparent);
}
.outside-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: contrast(1.02) saturate(0.95);
}
.outside-copy {
  max-width: 56ch;
}
.outside-heading {
  font-family: var(--font-display);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(36px, 4.5vw, 56px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 16px 0 24px;
  color: var(--ink);
}
.outside-copy p {
  margin: 0 0 16px;
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--ink-soft);
}
.outside-cap {
  margin-top: 24px !important;
  padding-top: 16px;
  border-top: 1px solid var(--hairline);
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--muted) !important;
}

/* ============================================================
   CONTACT
============================================================ */
.contact {
  padding: clamp(64px, 9vw, 120px) 0;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

/* ── Form column ──────────────────────────────────────── */
.contact-form-wrap {
  background: var(--paper);
  border: 1px solid var(--hairline);
  padding: clamp(32px, 4vw, 48px);
  border-radius: 4px;
}
.contact-form-heading {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(32px, 3.4vw, 42px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 12px 0 12px;
  color: var(--ink);
}
.contact-form-sub {
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0 0 28px;
  max-width: 56ch;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.field label {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}
.field-hint {
  text-transform: none;
  letter-spacing: 0;
  font-size: 11px;
  color: color-mix(in srgb, var(--muted) 70%, transparent);
}
.field input,
.field textarea,
.field select {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--hairline);
  border-radius: 0;
  padding: 8px 0 10px;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  transition: border-color .15s ease;
}
.field input::placeholder,
.field textarea::placeholder {
  color: color-mix(in srgb, var(--muted) 75%, transparent);
  font-family: var(--font-body);
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: 0;
  border-bottom-color: var(--accent);
}
.field textarea {
  resize: vertical;
  min-height: 120px;
  padding-top: 12px;
}

.select-wrap {
  position: relative;
  display: block;
}
.select-wrap select {
  padding-right: 24px;
}
.select-arrow {
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--muted);
  font-size: 12px;
}

.form-actions {
  margin-top: 8px;
  padding-top: 24px;
  border-top: 1px solid var(--hairline);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.form-actions .btn {
  cursor: pointer;
  font-family: var(--font-body);
}
.form-meta {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.02em;
  color: var(--muted);
}
.form-meta a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}
.form-meta a:hover { color: var(--accent); }

/* ── Sidebar ──────────────────────────────────────────── */
.contact-side {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: sticky;
  top: 100px;
}
.contact-card {
  background: var(--paper);
  border: 1px solid var(--hairline);
  padding: 22px 22px 20px;
  border-radius: 4px;
}
.contact-card-quiet {
  background: var(--paper-2);
}
.contact-card-eyebrow {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 10px;
}
.contact-card-h {
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.1;
  letter-spacing: -0.012em;
  margin: 0 0 8px;
  color: var(--ink);
  font-weight: 400;
}
.contact-card p {
  margin: 0 0 14px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-soft);
}
.contact-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--hairline);
  padding-bottom: 4px;
  transition: color .15s, border-color .15s;
  word-break: break-all;
}
.contact-card-link:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
}
.contact-card-link .btn-arrow { font-size: 14px; }
.contact-card-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}
.contact-card-list li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-top: 8px;
  border-top: 1px solid var(--hairline);
  font-size: 12.5px;
}
.contact-card-list li:first-child {
  border-top: 0;
  padding-top: 0;
}
.contact-card-list span {
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
  color: var(--muted);
}
.contact-card-list strong {
  font-weight: 500;
  color: var(--ink);
}

.contact-socials {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contact-socials a {
  font-size: 14px;
  color: var(--ink);
  text-decoration: none;
  padding: 6px 0;
  border-bottom: 1px solid var(--hairline);
  transition: color .15s;
}
.contact-socials a:last-child { border-bottom: 0; }
.contact-socials a:hover { color: var(--accent); }

/* ============================================================
   EXPECT (what happens after enquiry)
============================================================ */
.expect {
  padding: clamp(72px, 10vw, 130px) 0;
  background: var(--paper-2);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.expect-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  background: var(--paper);
}
.expect-step {
  padding: 32px 28px 36px;
  border-right: 1px solid var(--hairline);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.expect-step:last-child { border-right: 0; }
.expect-num {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.08em;
  color: var(--accent);
  font-weight: 500;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--hairline);
}
.expect-step h3 {
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin: 0;
  font-weight: 400;
  color: var(--ink);
}
.expect-step p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink-soft);
}

/* ============================================================
   INSIGHTS — listing
============================================================ */
.insights-list {
  padding: clamp(64px, 9vw, 120px) 0;
}
.insights-list-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--hairline);
}

/* Featured article — bigger, spans full row */
.insight-feature {
  display: grid;
  grid-template-columns: 220px 1fr auto;
  gap: 32px;
  align-items: center;
  padding: 40px 0;
  border-bottom: 1px solid var(--hairline);
  text-decoration: none;
  color: inherit;
  transition: background .15s ease;
  position: relative;
}
.insight-feature::before {
  content: "";
  position: absolute;
  inset: 0 calc(-1 * var(--gutter));
  pointer-events: none;
  transition: background .15s ease;
  z-index: -1;
}
.insight-feature:hover::before { background: var(--paper-2); }
.insight-feature .insight-row-num {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.08em;
  color: var(--accent);
  font-weight: 500;
  text-transform: uppercase;
}
.insight-feature .insight-row-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}
.insight-feature .insight-row-body h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.05;
  letter-spacing: -0.018em;
  margin: 0 0 10px;
  color: var(--ink);
}
.insight-feature:hover .insight-row-body h3 { color: var(--accent); }
.insight-feature .insight-row-body p {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 60ch;
}
.insight-feature .insight-row-arrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  transition: color .15s, transform .15s;
}
.insight-feature:hover .insight-row-arrow {
  color: var(--accent);
  transform: translateX(4px);
}

/* Regular article rows */
.insight-row {
  display: grid;
  grid-template-columns: 220px 1fr auto;
  gap: 32px;
  align-items: center;
  padding: 32px 0;
  border-bottom: 1px solid var(--hairline);
  text-decoration: none;
  color: inherit;
  transition: background .15s ease;
  position: relative;
}
.insight-row::before {
  content: "";
  position: absolute;
  inset: 0 calc(-1 * var(--gutter));
  pointer-events: none;
  transition: background .15s ease;
  z-index: -1;
}
.insight-row:hover::before { background: var(--paper-2); }
.insight-row-num {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.08em;
  color: var(--accent);
  font-weight: 500;
  text-transform: uppercase;
}
.insight-row-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}
.insight-row-meta .insight-row-cat {
  color: var(--ink-soft);
  font-weight: 500;
}
.insight-row-body h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 24px;
  line-height: 1.15;
  letter-spacing: -0.012em;
  margin: 0 0 6px;
  color: var(--ink);
  transition: color .15s;
}
.insight-row:hover .insight-row-body h3 { color: var(--accent); }
.insight-row-body p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 64ch;
}
.insight-row-arrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  transition: color .15s, transform .15s;
}
.insight-row:hover .insight-row-arrow {
  color: var(--accent);
  transform: translateX(4px);
}

/* ============================================================
   INSIGHTS — article page
============================================================ */
.article-hero {
  padding: clamp(64px, 8vw, 100px) 0 clamp(48px, 6vw, 72px);
  border-bottom: 1px solid var(--hairline);
  background: var(--paper-2);
}
.article-hero-inner {
  max-width: 880px;
}
.article-category {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin: 16px 0 24px;
  padding: 5px 12px;
  border: 1px solid color-mix(in srgb, var(--accent) 40%, transparent);
  border-radius: 999px;
}
.article-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(36px, 5.4vw, 68px);
  line-height: 1.02;
  letter-spacing: -0.022em;
  margin: 0 0 28px;
  color: var(--ink);
  max-width: 22ch;
}
.article-standfirst {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(18px, 1.6vw, 24px);
  line-height: 1.45;
  color: var(--ink-soft);
  margin: 0 0 28px;
  max-width: 56ch;
}
.article-byline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  padding-top: 24px;
  border-top: 1px solid var(--hairline);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--muted);
  text-transform: uppercase;
}
.article-byline-name {
  color: var(--ink);
  font-weight: 500;
}
.article-byline-sep {
  width: 4px; height: 4px;
  background: var(--hairline);
  border-radius: 50%;
}

/* Article body — prose */
.article-body {
  padding: clamp(64px, 8vw, 100px) 0 clamp(40px, 6vw, 80px);
}
.article-body-inner {
  max-width: 680px;
  margin: 0 auto;
}
.article-body-inner > * { margin: 0 0 22px; }
.article-body-inner > p {
  font-size: 17.5px;
  line-height: 1.7;
  color: var(--ink-soft);
}
.article-body-inner > p strong { color: var(--ink); font-weight: 600; }
.article-body-inner > p em { font-style: italic; color: var(--ink); }
.article-body-inner > h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.1;
  letter-spacing: -0.018em;
  color: var(--ink);
  margin-top: 56px;
  margin-bottom: 18px;
}
.article-body-inner > h2:first-child { margin-top: 0; }
.article-body-inner > h3 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.005em;
  color: var(--ink);
  margin-top: 36px;
  margin-bottom: 12px;
}
.article-body-inner > ul,
.article-body-inner > ol {
  padding-left: 0;
  list-style: none;
  display: grid;
  gap: 12px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-soft);
}
.article-body-inner > ul li,
.article-body-inner > ol li {
  position: relative;
  padding-left: 28px;
}
.article-body-inner > ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.7em;
  width: 14px; height: 1px;
  background: var(--accent);
}
.article-body-inner > ol {
  counter-reset: ol-counter;
}
.article-body-inner > ol > li {
  counter-increment: ol-counter;
}
.article-body-inner > ol > li::before {
  content: counter(ol-counter, decimal-leading-zero) ".";
  position: absolute;
  left: 0; top: 0;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--accent);
  font-weight: 500;
  line-height: 1.85;
}
.article-body-inner li strong { color: var(--ink); font-weight: 600; }
.article-body-inner li em { color: var(--ink); }
.article-body-inner a {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  text-decoration-color: color-mix(in srgb, var(--accent) 50%, transparent);
  transition: color .15s, text-decoration-color .15s;
}
.article-body-inner a:hover {
  color: var(--accent);
  text-decoration-color: var(--accent);
}
.article-body-inner > hr {
  border: 0;
  border-top: 1px solid var(--hairline);
  width: 80px;
  margin: 48px 0;
}

.article-body-inner table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
  line-height: 1.55;
}
.article-body-inner th,
.article-body-inner td {
  padding: 10px 16px 10px 0;
  text-align: left;
  border-bottom: 1px solid var(--hairline);
  vertical-align: top;
}
.article-body-inner td:last-child,
.article-body-inner th:last-child {
  padding-right: 0;
}
.article-body-inner thead th {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--muted);
  padding-bottom: 8px;
  border-bottom: 1px solid var(--ink-soft);
}

.article-body-inner blockquote {
  margin: 32px 0;
  padding: 24px 28px;
  border-left: 3px solid var(--accent);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 20px;
  line-height: 1.5;
  color: var(--ink);
  background: var(--paper-2);
}

/* Inline CTA blocks within article */
.article-body-inner .call-to-action,
.article-body-inner .article-inline-cta {
  margin: 48px 0;
  padding: 32px;
  background: var(--paper-2);
  border: 1px solid var(--hairline);
  border-radius: 4px;
}
.article-body-inner .call-to-action h2 { margin-top: 0; }

/* Article footer CTA */
.article-cta {
  padding: clamp(48px, 7vw, 80px) 0;
  background: var(--paper-2);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.article-cta-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: left;
}
.article-cta h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 14px;
  color: var(--ink);
  max-width: 24ch;
}
.article-cta p {
  margin: 0 0 24px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 56ch;
}

/* Related articles */
.article-related {
  padding: clamp(56px, 8vw, 96px) 0;
}
.related-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--hairline);
  border: 1px solid var(--hairline);
  margin-top: 32px;
}
.related-card {
  background: var(--paper);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-decoration: none;
  color: inherit;
  transition: background .15s;
}
.related-card:hover { background: var(--paper-2); }
.related-card-meta {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}
.related-card h4 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: -0.012em;
  margin: 0;
  color: var(--ink);
}
.related-card:hover h4 { color: var(--accent); }
.related-card-arrow {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: auto;
  padding-top: 12px;
}
.related-card:hover .related-card-arrow { color: var(--accent); }

/* ============================================================
   RESPONSIVE
   NOTE: these blocks must stay at the END of the file. They share
   specificity with the base component rules above, so the cascade
   resolves ties by source order — placing them last is what lets
   them actually win at their breakpoints.
============================================================ */
@media (max-width: 980px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .process-step:nth-child(2) { border-right: 0; }
  .process-step:nth-child(1),
  .process-step:nth-child(2) { border-bottom: 1px solid var(--hairline); }
  .boards-grid { grid-template-columns: 1fr 1fr; }
  .included-grid { grid-template-columns: 1fr; }
  .included-intro { position: static; }
  .bio-grid { grid-template-columns: 1fr; gap: 40px; }
  .bio-photo { max-width: 320px; position: static; }
  .outside-grid { grid-template-columns: 1fr; gap: 32px; }
  .outside-photo { max-width: 480px; aspect-ratio: 4 / 3; }
  .cred-item { grid-template-columns: 48px 1fr; }
  .cred-tag { grid-column: 2 / 3; margin-top: 4px; justify-self: start; }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .contact-side { position: static; }
  .expect-grid { grid-template-columns: 1fr; }
  .expect-step { border-right: 0; border-bottom: 1px solid var(--hairline); }
  .expect-step:last-child { border-bottom: 0; }
  .insight-feature,
  .insight-row { grid-template-columns: 1fr auto; gap: 16px 24px; padding: 24px 0; }
  .insight-feature .insight-row-meta,
  .insight-row-meta { grid-column: 1 / -1; flex-direction: row; gap: 12px; align-items: center; }
  .insight-feature .insight-row-body,
  .insight-row-body { grid-column: 1 / 2; }
  .insight-feature .insight-row-arrow,
  .insight-row-arrow { grid-column: 2 / 3; align-self: center; }
  .related-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .process-grid { grid-template-columns: 1fr; }
  .process-step { border-right: 0 !important; border-bottom: 1px solid var(--hairline); }
  .process-step:last-child { border-bottom: 0; }
  .boards-grid { grid-template-columns: 1fr; }
  .price-card { padding: 28px 24px; }
  .included-list li { grid-template-columns: 44px 1fr; gap: 12px; padding: 18px 18px; }
  .page-sub-title { font-size: 16px; }
  .field-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 24px 20px; }
  .form-actions { flex-direction: column; align-items: stretch; }
}
