/* Biolite Aesthetic Clinic — editorial medical + longevity prototype */
:root {
  --paper: #FAF7F1;
  --paper-2: #F1ECE2;
  --surface: #FFFFFF;
  --ink: #1B2724;
  --ink-2: #2E3B36;
  --moss: #2C463F;
  --moss-deep: #1F332E;
  --sage: #6B8278;
  --sage-soft: #9AAAA1;
  --gold-1: #FCEDC9;
  --gold-2: #EAC175;
  --gold-deep: #B79766;
  --line: #E5DECD;
  --line-soft: #EDE7D8;
  --danger: #9A3D2D;
  --brand-grad: linear-gradient(180deg, #FCEDC9 0%, #EAC175 100%);
  --brand-grad-h: linear-gradient(90deg, #FCEDC9 0%, #EAC175 100%);

  --font-serif: "Cormorant Garamond", "EB Garamond", Georgia, serif;
  --font-sans: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, Menlo, monospace;

  --maxw: 1320px;
  --gutter: 32px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: var(--paper); color: var(--ink); }
body {
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.55;
  font-weight: 350;
  letter-spacing: 0.005em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; }
button { font-family: inherit; }
a { color: inherit; text-decoration: none; }

/* Type ramp */
.serif { font-family: var(--font-serif); font-weight: 400; letter-spacing: -0.005em; }
.mono { font-family: var(--font-mono); font-weight: 400; }
.eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 500;
}
.eyebrow.sage { color: var(--sage); }
.eyebrow.ink { color: var(--ink); }

.h-display {
  font-family: var(--font-serif);
  font-weight: 350;
  font-size: clamp(48px, 7vw, 104px);
  line-height: 0.96;
  letter-spacing: -0.025em;
  color: var(--ink);
}
.h-display em { font-style: italic; color: var(--moss); font-weight: 400; }

.h1 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.02em;
}
.h1 em { font-style: italic; color: var(--moss); }

.h2 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(30px, 3.4vw, 44px);
  line-height: 1.08;
  letter-spacing: -0.015em;
}
.h2 em { font-style: italic; color: var(--moss); }

.h3 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 26px;
  line-height: 1.15;
  letter-spacing: -0.005em;
}

.lede {
  font-family: var(--font-serif);
  font-weight: 350;
  font-size: clamp(20px, 1.7vw, 26px);
  line-height: 1.42;
  color: var(--ink-2);
  letter-spacing: -0.005em;
}

.body { font-size: 15px; line-height: 1.65; color: var(--ink-2); }
.body p { margin: 0 0 1em; }
.small { font-size: 13px; line-height: 1.55; color: var(--sage); }
.micro { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.06em; color: var(--sage); }

/* Layout */
.page { min-height: 100vh; }
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }
.wide { max-width: 1480px; margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: 96px 0; }
.section-sm { padding: 56px 0; }
.section-lg { padding: 140px 0; }

/* Hairline accents */
.hr {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 0;
}
.hr-gold {
  border: 0;
  height: 1px;
  background: var(--brand-grad-h);
  margin: 0;
}
.hr-vert { width: 1px; background: var(--line); align-self: stretch; }

/* Top nav */
.nav {
  position: sticky;
  top: 0; left: 0; right: 0;
  z-index: 80;
  background: rgba(250, 247, 241, 0.92);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--line-soft);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 14px var(--gutter);
  max-width: 1480px;
  margin: 0 auto;
}
.nav-logo { display: flex; align-items: center; gap: 12px; cursor: pointer; }
.nav-logo svg { height: 44px; width: auto; }
.nav-items { display: flex; align-items: center; gap: 28px; margin-left: 8px; }
.nav-item {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--ink);
  cursor: pointer;
  padding: 6px 0;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.nav-item:hover { color: var(--moss); }
.nav-item.active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 1px;
  background: var(--brand-grad-h);
}
.nav-right { margin-left: auto; display: flex; align-items: center; gap: 16px; }
.nav-meta {
  display: flex; align-items: center; gap: 14px;
  font-family: var(--font-mono); font-size: 11px;
  color: var(--sage); letter-spacing: 0.04em;
}
.nav-locale {
  display: inline-flex; gap: 4px; padding: 4px 8px;
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.12em; color: var(--sage);
  border: 1px solid var(--line);
}
.nav-locale span { padding: 2px 4px; cursor: pointer; }
.nav-locale span.active { color: var(--ink); background: var(--paper-2); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .25s ease;
  border-radius: 0;
}
.btn:hover { background: var(--moss); border-color: var(--moss); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: var(--paper); }
.btn-light {
  background: transparent;
  color: var(--paper);
  border-color: var(--gold-2);
}
.btn-light:hover { background: var(--gold-2); color: var(--moss-deep); border-color: var(--gold-2); }
.btn-gold {
  background: transparent;
  color: var(--gold-deep);
  border: 0;
  padding: 8px 0;
  letter-spacing: 0.16em;
  border-bottom: 1px solid var(--gold-2);
  border-radius: 0;
}
.btn-gold:hover { color: var(--moss); border-color: var(--moss); }
.btn-sm { padding: 10px 14px; font-size: 11px; }
.btn-lg { padding: 18px 28px; }
.btn-arrow::after {
  content: "→"; font-size: 14px; letter-spacing: 0; margin-left: 4px;
  display: inline-block; transition: transform .25s ease;
}
.btn:hover .btn-arrow::after, .btn-arrow:hover::after { transform: translateX(4px); }

/* Hero */
.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 0;
  border-bottom: 1px solid var(--line);
}
.hero-text {
  padding: 80px var(--gutter) 64px;
  display: flex; flex-direction: column; justify-content: space-between;
  position: relative;
}
.hero-image {
  position: relative;
  background: var(--paper-2);
  min-height: 92vh;
  overflow: hidden;
}
.hero-image img { width: 100%; height: 100%; object-fit: cover; }
.hero-image::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(27,39,36,0) 60%, rgba(27,39,36,0.25) 100%);
  z-index: 2;
}
.hero-overlay-card {
  position: absolute; left: 32px; bottom: 32px; right: 32px;
  z-index: 3;
  background: rgba(27,39,36,0.78);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 20px 24px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  color: var(--paper);
  border-top: 1px solid var(--gold-2);
}

/* Grid utilities */
.row { display: grid; gap: 32px; }
.row-2 { grid-template-columns: repeat(2, 1fr); }
.row-3 { grid-template-columns: repeat(3, 1fr); }
.row-4 { grid-template-columns: repeat(4, 1fr); }
.row-12 { grid-template-columns: repeat(12, 1fr); }
.col-span-4 { grid-column: span 4; }
.col-span-5 { grid-column: span 5; }
.col-span-6 { grid-column: span 6; }
.col-span-7 { grid-column: span 7; }
.col-span-8 { grid-column: span 8; }

.flex { display: flex; }
.between { justify-content: space-between; align-items: center; }
.center { align-items: center; }
.stack { display: flex; flex-direction: column; gap: 16px; }

/* Treatment area cards */
.tarea {
  background: var(--surface);
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: all .35s ease;
  display: flex; flex-direction: column;
}
.tarea:hover { border-color: var(--gold-2); }
.tarea-img {
  aspect-ratio: 4/5;
  background: var(--paper-2);
  overflow: hidden;
  position: relative;
}
.tarea-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s ease;
  filter: saturate(0.95);
}
.tarea:hover .tarea-img img { transform: scale(1.04); }
.tarea-img::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(27,39,36,0.5) 100%);
}
.tarea-body { padding: 24px; display: flex; flex-direction: column; gap: 12px; }
.tarea-num {
  position: absolute; top: 16px; left: 20px; z-index: 2;
  color: var(--paper);
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.12em;
}
.tarea-name {
  position: absolute; bottom: 20px; left: 20px; right: 20px; z-index: 2;
  font-family: var(--font-serif);
  font-size: 30px; line-height: 1.05; color: var(--paper);
  letter-spacing: -0.01em;
}

/* Treatment list rows */
.t-row {
  display: grid;
  grid-template-columns: 60px 1fr 220px 140px 30px;
  align-items: center;
  gap: 24px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  cursor: pointer;
  transition: background .2s ease, padding .2s ease;
}
.t-row:hover { background: var(--paper-2); padding-left: 12px; padding-right: 12px; }
.t-row:last-of-type { border-bottom: 1px solid var(--line); }
.t-row .num { font-family: var(--font-mono); font-size: 11px; color: var(--gold-deep); letter-spacing: 0.1em; }
.t-row .name { font-family: var(--font-serif); font-size: 22px; color: var(--ink); letter-spacing: -0.005em; }
.t-row .tags { font-family: var(--font-mono); font-size: 11px; color: var(--sage); letter-spacing: 0.04em; text-transform: uppercase; }
.t-row .meta { font-size: 12px; color: var(--sage); }
.t-row .arrow { color: var(--sage); font-size: 18px; text-align: right; transition: transform .2s ease, color .2s ease; }
.t-row:hover .arrow { color: var(--moss); transform: translateX(6px); }

/* Filter chips */
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  padding: 8px 14px;
  border: 1px solid var(--line);
  background: transparent;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sage);
  cursor: pointer;
  transition: all .2s ease;
}
.chip:hover { border-color: var(--gold-2); color: var(--ink); }
.chip.active { background: var(--ink); color: var(--paper); border-color: var(--ink); }

/* Doctor card */
.doctor {
  background: var(--surface);
  border: 1px solid var(--line);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: border-color .25s ease;
}
.doctor:hover { border-color: var(--gold-2); }
.doctor-img { aspect-ratio: 3/4; background: var(--paper-2); overflow: hidden; }
.doctor-img img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.9) contrast(0.98); }
.doctor-body { padding: 22px 22px 24px; display: flex; flex-direction: column; gap: 8px; }
.verified-pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 8px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid var(--line);
  color: var(--sage);
  width: fit-content;
}
.verified-pill.verified { color: var(--moss); border-color: var(--moss); }
.verified-pill.pending { color: var(--gold-deep); border-color: var(--gold-deep); }

/* Founder section */
.founder {
  background: var(--moss-deep);
  color: var(--paper);
  position: relative;
}
.founder-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  align-items: stretch;
  min-height: 700px;
}
.founder-image { background: #000; overflow: hidden; position: relative; }
.founder-image img { width: 100%; height: 100%; object-fit: cover; opacity: 0.94; }
.founder-text { padding: 100px 80px; display: flex; flex-direction: column; justify-content: center; gap: 24px; }
.founder .h1 { color: var(--paper); }
.founder .h1 em { color: var(--gold-2); }
.founder .lede { color: rgba(250,247,241,0.85); }
.founder .eyebrow { color: var(--gold-2); }

/* Compliance / care notes */
.note {
  border-left: 2px solid var(--gold-2);
  padding: 12px 16px;
  background: var(--paper-2);
  font-size: 13px;
  color: var(--ink-2);
}
.note .mono { color: var(--gold-deep); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; display: block; margin-bottom: 4px; }

/* Wellness / Longevity */
.well {
  background: var(--paper-2);
  background-image: radial-gradient(circle at 20% 10%, rgba(234,193,117,0.08) 0%, transparent 50%);
}
.well-card {
  background: var(--surface);
  border: 1px solid var(--line);
  display: flex; flex-direction: column;
  overflow: hidden;
}
.well-card .img { aspect-ratio: 16/11; overflow: hidden; background: var(--paper-2); }
.well-card .img img { width: 100%; height: 100%; object-fit: cover; }
.well-card .body { padding: 24px; }
.well-card .qualified {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--gold-deep);
  text-transform: uppercase;
  display: inline-block;
  border-top: 1px solid var(--line);
  padding-top: 12px;
  margin-top: 16px;
  width: 100%;
}

/* Reviews / proof */
.proof-strip {
  background: var(--ink);
  color: var(--paper);
}
.proof-strip .num {
  font-family: var(--font-serif);
  font-size: clamp(56px, 6vw, 88px);
  line-height: 1;
  color: var(--paper);
  letter-spacing: -0.02em;
}
.proof-strip .num em { color: var(--gold-2); font-style: italic; }
.proof-strip .label { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--sage-soft); margin-top: 12px; }

/* Booking modal */
.modal-backdrop {
  position: fixed; inset: 0;
  background: rgba(27,39,36,0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 200;
  display: flex; align-items: stretch; justify-content: flex-end;
  animation: fadeIn .25s ease;
}
.modal {
  background: var(--paper);
  width: min(560px, 100%);
  height: 100%;
  overflow-y: auto;
  position: relative;
  animation: slideInRight .35s ease;
  display: flex; flex-direction: column;
}
.modal-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 32px;
  border-bottom: 1px solid var(--line);
}
.modal-close {
  width: 32px; height: 32px; border: 1px solid var(--line); background: transparent;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  font-size: 16px; color: var(--ink);
}
.modal-body { padding: 32px; flex: 1; }
.modal-foot { padding: 20px 32px; border-top: 1px solid var(--line); display: flex; gap: 12px; }

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideInRight {
  from { transform: translateX(40px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}
@keyframes slideUp {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* Form fields */
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.field label { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.12em; color: var(--sage); text-transform: uppercase; }
.input, .select, .textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  padding: 10px 0;
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--ink);
  outline: none;
  transition: border-color .2s ease;
  border-radius: 0;
}
.input:focus, .select:focus, .textarea:focus { border-color: var(--gold-2); }
.textarea { min-height: 80px; resize: vertical; }
.radio-group { display: flex; flex-wrap: wrap; gap: 8px; }
.radio-pill {
  padding: 10px 14px;
  border: 1px solid var(--line);
  font-size: 13px;
  cursor: pointer;
  transition: all .2s ease;
  background: transparent;
  font-family: var(--font-sans);
  color: var(--ink-2);
}
.radio-pill.active { background: var(--moss); color: var(--paper); border-color: var(--moss); }

/* Steps indicator */
.steps { display: flex; gap: 4px; margin-bottom: 28px; }
.step-bar { flex: 1; height: 2px; background: var(--line); }
.step-bar.done { background: var(--gold-2); }
.step-bar.active { background: var(--ink); }

/* Footer */
.footer {
  background: var(--ink);
  color: var(--paper);
  padding: 96px 0 32px;
}
.footer .col { display: flex; flex-direction: column; gap: 10px; }
.footer .col h4 { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-2); margin: 0 0 12px; }
.footer a:hover { color: var(--gold-2); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); margin-top: 64px; padding-top: 24px; display: flex; justify-content: space-between; gap: 24px; font-family: var(--font-mono); font-size: 11px; color: var(--sage-soft); letter-spacing: 0.04em; }

/* Sticky booking rail (mobile) */
.book-rail {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--ink); color: var(--paper);
  padding: 14px 20px;
  z-index: 70;
  display: none;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--gold-2);
}

/* Brand mark wrappers */
.gold-mark {
  display: inline-block;
  background: var(--brand-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Image placeholder for pending content */
.placeholder {
  background:
    repeating-linear-gradient(45deg, var(--paper-2) 0 8px, var(--line-soft) 8px 16px);
  display: flex; align-items: center; justify-content: center;
  color: var(--sage);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  padding: 24px;
}

/* Section header with number */
.sec-head {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  align-items: end;
  gap: 32px;
  padding-bottom: 32px;
  margin-bottom: 56px;
  border-bottom: 1px solid var(--line);
}
.sec-head .roman { font-family: var(--font-serif); font-style: italic; font-size: 28px; color: var(--gold-deep); }
.sec-head .title { font-family: var(--font-serif); font-size: clamp(34px, 4vw, 56px); line-height: 1; letter-spacing: -0.02em; }
.sec-head .title em { font-style: italic; color: var(--moss); }
.sec-head .meta { font-family: var(--font-mono); font-size: 11px; color: var(--sage); letter-spacing: 0.1em; text-transform: uppercase; text-align: right; }

/* Reveal animation */
.fadein { animation: slideUp .6s ease both; }

/* Map */
.map-wrap {
  position: relative; aspect-ratio: 4/3; overflow: hidden;
  border: 1px solid var(--line); background: var(--paper-2);
}
.map-wrap img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.7); }
.map-pin {
  position: absolute; top: 48%; left: 52%;
  width: 14px; height: 14px;
  background: var(--gold-2); border: 2px solid var(--ink);
  border-radius: 50%;
  box-shadow: 0 0 0 8px rgba(234,193,117,0.25);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(234,193,117,0.5); }
  100% { box-shadow: 0 0 0 14px rgba(234,193,117,0); }
}

/* Decorative sunburst (mini logo for sections) */
.mark-mini { width: 40px; height: 40px; }

/* Selected state for tabs */
.tabs { display: flex; gap: 0; border-bottom: 1px solid var(--line); }
.tab {
  padding: 16px 24px;
  font-family: var(--font-mono); font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--sage);
  cursor: pointer;
  background: transparent; border: 0;
  border-bottom: 1px solid transparent;
  margin-bottom: -1px;
  transition: all .2s ease;
}
.tab:hover { color: var(--ink); }
.tab.active { color: var(--ink); border-color: var(--gold-2); }

/* Treatment detail journey */
.journey {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 32px 0;
}
.journey > div { padding: 0 16px; border-left: 1px solid var(--line); }
.journey > div:first-child { border-left: 0; padding-left: 0; }
.journey .step-num { font-family: var(--font-mono); font-size: 11px; color: var(--gold-deep); letter-spacing: 0.12em; }
.journey .step-name { font-family: var(--font-serif); font-size: 22px; line-height: 1.1; margin: 6px 0 8px; }

/* FAQ */
.faq-item { border-top: 1px solid var(--line); padding: 18px 0; cursor: pointer; }
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-q { display: flex; justify-content: space-between; gap: 16px; align-items: center; font-family: var(--font-serif); font-size: 22px; }
.faq-a { padding-top: 12px; color: var(--sage); max-width: 800px; }
.faq-toggle { font-family: var(--font-serif); font-size: 28px; color: var(--gold-deep); line-height: 1; flex-shrink: 0; }

/* Before / after locked card */
.ba-locked {
  background: var(--paper-2);
  border: 1px dashed var(--line);
  aspect-ratio: 4/5;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px;
  padding: 24px;
  position: relative;
  text-align: center;
}
.ba-locked .lock-icon { width: 36px; height: 36px; border: 1px solid var(--gold-deep); display: flex; align-items: center; justify-content: center; color: var(--gold-deep); }

/* Mobile */
@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-image { min-height: 60vh; }
  .row-2, .row-3, .row-4 { grid-template-columns: 1fr; }
  .nav-items { display: none; }
  .book-rail { display: flex; }
  .founder-grid { grid-template-columns: 1fr; }
  .founder-text { padding: 56px 28px; }
  .section { padding: 64px 0; }
  .section-lg { padding: 80px 0; }
  .journey { grid-template-columns: 1fr 1fr; }
  .journey > div:nth-child(odd) { border-left: 0; padding-left: 0; }
  .sec-head { grid-template-columns: 1fr; gap: 12px; }
  .sec-head .meta { text-align: left; }
  .t-row { grid-template-columns: 40px 1fr 30px; }
  .t-row .tags, .t-row .meta { display: none; }
}
