/* ============================================================
   THE HOLLIS PRACTICE — emotional wellbeing & resilience studio
   Display: Domine · Body/UI: Be Vietnam Pro · Mono: Roboto Mono
   Palette: deep emerald · ivory · blush-pink
   ============================================================ */

:root {
  /* core palette */
  --emerald-900: #06281f;
  --emerald-800: #0a3a2c;
  --emerald-700: #0f4d3a;
  --emerald-600: #166949;
  --emerald-500: #2a8c66;
  --emerald-300: #7cc3a6;
  --ivory: #f6f2e9;
  --ivory-2: #efe8da;
  --paper: #fbf9f3;
  --blush: #f3b6c0;
  --blush-bright: #ef94a4;
  --blush-soft: #f8d7dd;
  --ink: #11201b;
  --ink-soft: #3a4b44;
  --line: rgba(10, 58, 44, 0.14);

  --shadow-sm: 0 2px 10px rgba(6, 40, 31, 0.06);
  --shadow-md: 0 18px 50px -20px rgba(6, 40, 31, 0.35);
  --shadow-lg: 0 40px 90px -35px rgba(6, 40, 31, 0.45);

  --r-sm: 10px;
  --r-md: 18px;
  --r-lg: 30px;
  --r-pill: 999px;

  --maxw: 1180px;
  --gut: clamp(20px, 5vw, 64px);

  --f-display: "Domine", Georgia, serif;
  --f-body: "Be Vietnam Pro", system-ui, -apple-system, sans-serif;
  --f-mono: "Roboto Mono", ui-monospace, monospace;

  --ease-spring: cubic-bezier(0.16, 1.16, 0.3, 1);
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  font-family: var(--f-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  font-size: 17px;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a { color: var(--emerald-700); text-decoration-color: var(--blush); text-underline-offset: 3px; }

h1, h2, h3, h4 { font-family: var(--f-display); font-weight: 500; line-height: 1.08; letter-spacing: -0.01em; color: var(--emerald-900); margin: 0 0 0.5em; }

/* skip link & focus */
.skip {
  position: absolute; left: -999px; top: 0; z-index: 999;
  background: var(--emerald-900); color: var(--ivory);
  padding: 12px 20px; border-radius: 0 0 var(--r-sm) 0; font-family: var(--f-mono); font-size: 13px;
}
.skip:focus { left: 0; }

a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, .btn:focus-visible {
  outline: 3px solid var(--blush-bright);
  outline-offset: 3px;
  border-radius: 4px;
}

/* layout helpers */
.wrap { max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gut); }
.eyebrow {
  font-family: var(--f-mono); font-size: 12.5px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--emerald-600); font-weight: 500; display: inline-flex; align-items: center; gap: 10px;
}
.eyebrow::before { content: ""; width: 26px; height: 1px; background: var(--blush-bright); display: inline-block; }
.eyebrow.center::before { display: none; }

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--f-body); font-weight: 600; font-size: 15px;
  padding: 15px 28px; border-radius: var(--r-pill);
  text-decoration: none; cursor: pointer; border: 1.5px solid transparent;
  transition: transform .4s var(--ease-spring), background .3s ease, color .3s ease, box-shadow .3s ease;
}
.btn-primary { background: var(--emerald-700); color: var(--ivory); box-shadow: var(--shadow-md); }
.btn-primary:hover { transform: translateY(-3px); background: var(--emerald-800); }
.btn-ghost { background: transparent; color: var(--emerald-800); border-color: var(--line); }
.btn-ghost:hover { transform: translateY(-3px); background: var(--ivory); border-color: var(--emerald-600); }
.btn-blush { background: var(--blush); color: var(--emerald-900); }
.btn-blush:hover { transform: translateY(-3px); background: var(--blush-bright); }
.btn .arr { transition: transform .4s var(--ease-spring); }
.btn:hover .arr { transform: translateX(5px); }

/* cursor blob */
#blob {
  position: fixed; top: 0; left: 0; width: 380px; height: 380px; border-radius: 50%;
  pointer-events: none; z-index: 0; mix-blend-mode: multiply; opacity: 0.5;
  background: radial-gradient(circle at 35% 35%, var(--blush-soft), rgba(243,182,192,0.25) 45%, transparent 70%);
  filter: blur(20px);
  transform: translate(-50%, -50%); will-change: transform;
}

/* ---------------- HEADER ---------------- */
.site-head {
  position: sticky; top: 0; z-index: 100;
  background: rgba(251, 249, 243, 0.78);
  backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 16px 0; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand .mark { width: 38px; height: 38px; flex: none; }
.brand .name { font-family: var(--f-display); font-size: 19px; font-weight: 600; color: var(--emerald-900); line-height: 1; }
.brand .sub { font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--emerald-600); }
.nav-links { display: flex; align-items: center; gap: 30px; list-style: none; margin: 0; padding: 0; }
.nav-links a { font-size: 15px; font-weight: 500; color: var(--ink-soft); text-decoration: none; position: relative; }
.nav-links a::after { content: ""; position: absolute; left: 0; bottom: -5px; width: 0; height: 2px; background: var(--blush-bright); transition: width .35s var(--ease-spring); }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--emerald-900); }
.nav-links a:hover::after, .nav-links a[aria-current="page"]::after { width: 100%; }
.nav-cta { display: inline-flex; }
.menu-btn { display: none; background: none; border: 1px solid var(--line); border-radius: var(--r-sm); padding: 9px 11px; cursor: pointer; color: var(--emerald-900); }

@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .menu-btn { display: inline-flex; }
  .nav-links.open {
    display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--paper); padding: 20px var(--gut) 28px; gap: 18px; border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
  }
}

/* ---------------- HERO ---------------- */
.hero { position: relative; overflow: hidden; padding: clamp(60px, 9vw, 120px) 0 clamp(56px, 8vw, 100px); }
.hero-bg { position: absolute; inset: 0; z-index: -2; background:
    radial-gradient(120% 90% at 12% 8%, var(--blush-soft) 0%, transparent 42%),
    radial-gradient(120% 100% at 92% 18%, #d8eadf 0%, transparent 40%),
    radial-gradient(140% 120% at 88% 100%, var(--ivory-2) 0%, transparent 55%),
    linear-gradient(180deg, var(--paper), var(--ivory)); }
.mesh { position: absolute; inset: -10%; z-index: -1; pointer-events: none; opacity: 0.85; }
.mesh span { position: absolute; border-radius: 50%; filter: blur(60px); will-change: transform; }
.mesh .m1 { width: 360px; height: 360px; left: -4%; top: 6%; background: radial-gradient(circle, rgba(124,195,166,0.55), transparent 70%); animation: float1 18s ease-in-out infinite; }
.mesh .m2 { width: 300px; height: 300px; right: 6%; top: 0; background: radial-gradient(circle, rgba(243,182,192,0.6), transparent 70%); animation: float2 22s ease-in-out infinite; }
.mesh .m3 { width: 420px; height: 420px; right: 18%; bottom: -16%; background: radial-gradient(circle, rgba(42,140,102,0.28), transparent 70%); animation: float1 26s ease-in-out infinite reverse; }
@keyframes float1 { 0%,100%{ transform: translate(0,0) scale(1);} 50%{ transform: translate(28px,-30px) scale(1.08);} }
@keyframes float2 { 0%,100%{ transform: translate(0,0) scale(1);} 50%{ transform: translate(-34px,26px) scale(1.1);} }

.hero-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.hero h1 { font-size: clamp(2.5rem, 5.6vw, 4.5rem); margin-top: 18px; }
.hero h1 .em { font-style: italic; color: var(--emerald-600); }
.hero .lede { font-size: clamp(1.05rem, 1.6vw, 1.28rem); color: var(--ink-soft); max-width: 36ch; margin: 22px 0 30px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-meta { display: flex; gap: 30px; margin-top: 40px; flex-wrap: wrap; }
.hero-meta .stat .n { font-family: var(--f-display); font-size: 2rem; color: var(--emerald-900); line-height: 1; }
.hero-meta .stat .l { font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--emerald-600); margin-top: 6px; }

.hero-art { position: relative; }
.hero-art .photo { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4/5; }
.hero-art .photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-art .badge {
  position: absolute; left: -26px; bottom: 34px; background: var(--ivory); border: 1px solid var(--line);
  border-radius: var(--r-md); padding: 16px 20px; box-shadow: var(--shadow-md); max-width: 210px;
}
.hero-art .badge .q { font-family: var(--f-display); font-style: italic; font-size: 15px; color: var(--emerald-800); line-height: 1.4; }
.hero-art .badge .by { font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--emerald-600); margin-top: 8px; }
.hero-art .ring { position: absolute; right: -22px; top: -22px; width: 96px; height: 96px; border-radius: 50%; background: var(--blush); display: grid; place-items: center; box-shadow: var(--shadow-md); }
.hero-art .ring span { font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--emerald-900); text-align: center; line-height: 1.3; font-weight: 500; }

@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-art { max-width: 440px; }
  .hero-art .badge { left: 12px; }
}

/* ---------------- SECTIONS ---------------- */
section { position: relative; }
.section { padding: clamp(64px, 9vw, 120px) 0; }
.section-head { max-width: 640px; margin-bottom: 52px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { font-size: clamp(1.9rem, 3.6vw, 3rem); margin-top: 16px; }
.section-head p { color: var(--ink-soft); font-size: 1.08rem; margin: 14px 0 0; }

/* trust bar */
.trust { background: var(--emerald-900); color: var(--ivory); }
.trust .wrap { display: flex; flex-wrap: wrap; gap: 18px 40px; align-items: center; justify-content: space-between; padding-block: 26px; }
.trust .lab { font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--emerald-300); }
.trust ul { display: flex; flex-wrap: wrap; gap: 14px 30px; list-style: none; margin: 0; padding: 0; }
.trust li { font-size: 14px; color: rgba(246,242,233,0.86); display: flex; align-items: center; gap: 9px; font-weight: 500; }
.trust li::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--blush); }

/* approach / pillars */
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.pillar {
  background: var(--ivory); border: 1px solid var(--line); border-radius: var(--r-md); padding: 32px 28px;
  transition: transform .5s var(--ease-spring), box-shadow .5s ease, border-color .4s ease;
}
.pillar:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: var(--emerald-300); }
.pillar .ico { width: 50px; height: 50px; border-radius: 14px; background: var(--blush-soft); display: grid; place-items: center; margin-bottom: 20px; }
.pillar .ico svg { width: 26px; height: 26px; stroke: var(--emerald-700); }
.pillar h3 { font-size: 1.3rem; }
.pillar p { color: var(--ink-soft); font-size: 0.98rem; margin: 0; }
.pillar .num { font-family: var(--f-mono); font-size: 11px; color: var(--blush-bright); letter-spacing: 0.18em; display: block; margin-bottom: 14px; }

/* split feature */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 6vw, 80px); align-items: center; }
.split.flip .split-media { order: 2; }
.split-media { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-md); position: relative; }
.split-media img { width: 100%; aspect-ratio: 5/4; object-fit: cover; }
.split-body h2 { font-size: clamp(1.7rem, 3.2vw, 2.6rem); }
.split-body p { color: var(--ink-soft); }
.checklist { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 14px; }
.checklist li { display: flex; gap: 13px; align-items: flex-start; font-size: 1rem; }
.checklist li svg { flex: none; width: 22px; height: 22px; margin-top: 2px; stroke: var(--emerald-600); }
@media (max-width: 800px) { .split { grid-template-columns: 1fr; } .split.flip .split-media { order: 0; } }

/* stats band */
.stats-band { background: linear-gradient(135deg, var(--emerald-800), var(--emerald-900)); color: var(--ivory); border-radius: var(--r-lg); padding: clamp(40px, 5vw, 64px); position: relative; overflow: hidden; }
.stats-band::after { content: ""; position: absolute; right: -60px; top: -60px; width: 260px; height: 260px; border-radius: 50%; background: radial-gradient(circle, rgba(243,182,192,0.3), transparent 70%); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; position: relative; }
.stats-grid .s .n { font-family: var(--f-display); font-size: clamp(2.2rem, 4vw, 3.2rem); line-height: 1; }
.stats-grid .s .n .blush { color: var(--blush); }
.stats-grid .s .l { font-family: var(--f-mono); font-size: 11.5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--emerald-300); margin-top: 12px; }
@media (max-width: 720px) { .stats-grid { grid-template-columns: 1fr 1fr; gap: 26px; } }

/* services list */
.svc-list { display: grid; gap: 0; border-top: 1px solid var(--line); }
.svc-row { display: grid; grid-template-columns: auto 1fr auto; gap: 28px; align-items: center; padding: 30px 4px; border-bottom: 1px solid var(--line); transition: padding .4s var(--ease-spring), background .3s ease; }
.svc-row:hover { background: var(--ivory); padding-inline: 22px; }
.svc-row .idx { font-family: var(--f-mono); font-size: 13px; color: var(--blush-bright); letter-spacing: 0.1em; }
.svc-row h3 { font-size: 1.45rem; margin: 0 0 6px; }
.svc-row p { margin: 0; color: var(--ink-soft); font-size: 0.98rem; max-width: 60ch; }
.svc-row .price { font-family: var(--f-mono); font-size: 13px; color: var(--emerald-700); white-space: nowrap; text-align: right; }
@media (max-width: 700px) { .svc-row { grid-template-columns: auto 1fr; } .svc-row .price { grid-column: 2; text-align: left; } }

/* testimonials */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.quote { background: var(--ivory); border: 1px solid var(--line); border-radius: var(--r-md); padding: 30px 28px; display: flex; flex-direction: column; gap: 18px; }
.quote .stars { color: var(--blush-bright); letter-spacing: 3px; font-size: 14px; }
.quote blockquote { margin: 0; font-family: var(--f-display); font-size: 1.12rem; line-height: 1.45; color: var(--emerald-900); }
.quote .who { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.quote .av { width: 42px; height: 42px; border-radius: 50%; background: var(--emerald-700); color: var(--ivory); display: grid; place-items: center; font-family: var(--f-display); font-size: 16px; flex: none; }
.quote .who .nm { font-weight: 600; font-size: 14px; color: var(--emerald-900); }
.quote .who .rl { font-family: var(--f-mono); font-size: 11px; color: var(--emerald-600); letter-spacing: 0.06em; }
@media (max-width: 820px) { .quotes { grid-template-columns: 1fr; } .pillars { grid-template-columns: 1fr; } }

/* team */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.member { text-align: left; }
.member .ph { border-radius: var(--r-md); overflow: hidden; aspect-ratio: 1/1; background: var(--ivory-2); margin-bottom: 16px; box-shadow: var(--shadow-sm); }
.member .ph img { width: 100%; height: 100%; object-fit: cover; }
.member h3 { font-size: 1.2rem; margin: 0 0 2px; }
.member .role { font-family: var(--f-mono); font-size: 11.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--blush-bright); }
.member p { color: var(--ink-soft); font-size: 0.95rem; margin: 12px 0 0; }
@media (max-width: 820px) { .team-grid { grid-template-columns: 1fr; } }

/* insights / posts */
.insights-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.post-card {
  display: flex; flex-direction: column; background: var(--ivory); border: 1px solid var(--line);
  border-radius: var(--r-md); overflow: hidden; text-decoration: none; color: inherit;
  transition: transform .5s var(--ease-spring), box-shadow .5s ease;
}
.post-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.post-card .thumb { aspect-ratio: 16/10; overflow: hidden; }
.post-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease-spring); }
.post-card:hover .thumb img { transform: scale(1.06); }
.post-card .pc-body { padding: 24px 24px 28px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.post-card .tag { font-family: var(--f-mono); font-size: 10.5px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--emerald-600); }
.post-card h3 { font-size: 1.22rem; margin: 0; }
.post-card p { color: var(--ink-soft); font-size: 0.95rem; margin: 0; }
.post-card .more { margin-top: auto; font-family: var(--f-mono); font-size: 12px; letter-spacing: 0.08em; color: var(--emerald-700); display: inline-flex; align-items: center; gap: 8px; }
@media (max-width: 820px) { .insights-grid { grid-template-columns: 1fr; } }

/* resources blogroll */
.resources { background: var(--emerald-900); color: var(--ivory); border-radius: var(--r-lg); padding: clamp(40px, 5vw, 60px); }
.resources h2 { color: var(--ivory); }
.resources p.sub { color: rgba(246,242,233,0.78); max-width: 54ch; }
.res-list { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.res-list a {
  font-family: var(--f-mono); font-size: 13px; letter-spacing: 0.04em; color: var(--ivory);
  text-decoration: none; border: 1px solid rgba(246,242,233,0.28); border-radius: var(--r-pill);
  padding: 11px 20px; display: inline-flex; align-items: center; gap: 9px;
  transition: background .3s, border-color .3s, transform .4s var(--ease-spring), color .3s;
}
.res-list a:hover { background: var(--blush); color: var(--emerald-900); border-color: var(--blush); transform: translateY(-3px); }
.res-list a::after { content: "↗"; font-size: 12px; opacity: 0.7; }

/* CTA band */
.cta-band { text-align: center; background:
    radial-gradient(100% 120% at 50% 0%, var(--blush-soft), transparent 60%),
    linear-gradient(180deg, var(--ivory), var(--paper)); border-radius: var(--r-lg); padding: clamp(56px, 7vw, 92px) var(--gut); border: 1px solid var(--line); }
.cta-band h2 { font-size: clamp(2rem, 4vw, 3.2rem); max-width: 18ch; margin-inline: auto; }
.cta-band p { color: var(--ink-soft); max-width: 46ch; margin: 16px auto 32px; }

/* ---------------- FOOTER ---------------- */
.site-foot { background: var(--emerald-900); color: rgba(246,242,233,0.8); padding: 72px 0 36px; margin-top: 0; }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; }
.foot-grid h4 { font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--emerald-300); margin: 0 0 18px; }
.foot-grid a { color: rgba(246,242,233,0.8); text-decoration: none; display: block; margin-bottom: 11px; font-size: 14.5px; transition: color .3s; }
.foot-grid a:hover { color: var(--blush); }
.foot-brand .name { font-family: var(--f-display); font-size: 22px; color: var(--ivory); margin-bottom: 12px; }
.foot-brand p { font-size: 14.5px; max-width: 34ch; }
.foot-bottom { display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between; align-items: center; margin-top: 56px; padding-top: 26px; border-top: 1px solid rgba(246,242,233,0.16); font-family: var(--f-mono); font-size: 12px; letter-spacing: 0.04em; color: rgba(246,242,233,0.6); }
@media (max-width: 820px) { .foot-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }

/* ---------------- ARTICLE ---------------- */
.article-head { padding: clamp(48px, 7vw, 90px) 0 0; position: relative; }
.breadcrumb { font-family: var(--f-mono); font-size: 12px; letter-spacing: 0.06em; color: var(--emerald-600); margin-bottom: 20px; }
.breadcrumb a { color: var(--emerald-600); text-decoration: none; }
.breadcrumb a:hover { color: var(--blush-bright); }
.article-head h1 { font-size: clamp(2rem, 4.4vw, 3.4rem); max-width: 18ch; }
.article-meta { display: flex; flex-wrap: wrap; gap: 22px; font-family: var(--f-mono); font-size: 12.5px; letter-spacing: 0.04em; color: var(--ink-soft); margin-top: 20px; }
.article-meta span { display: inline-flex; align-items: center; gap: 8px; }
.article-hero { margin: 40px 0 8px; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.article-hero img { width: 100%; max-height: 460px; object-fit: cover; }

.prose { max-width: 720px; margin-inline: auto; font-size: 1.08rem; }
.prose > * { margin-inline: auto; }
.prose p { margin: 0 0 1.35em; color: var(--ink-soft); }
.prose h2 { font-size: clamp(1.5rem, 2.6vw, 2.1rem); margin: 1.8em 0 0.6em; color: var(--emerald-900); }
.prose h3 { font-size: 1.28rem; margin: 1.5em 0 0.5em; color: var(--emerald-800); }
.prose strong { color: var(--emerald-900); }
.prose a { color: var(--emerald-700); font-weight: 600; text-decoration: underline; text-decoration-color: var(--blush); text-decoration-thickness: 2px; }
.prose a:hover { color: var(--blush-bright); }
.prose ul, .prose ol { padding-left: 1.3em; margin: 0 0 1.5em; color: var(--ink-soft); }
.prose li { margin-bottom: 0.6em; }
.prose img { border-radius: var(--r-md); margin: 1.6em auto; box-shadow: var(--shadow-sm); }
.prose figure { margin: 1.8em 0; }
.prose section { margin-bottom: 0.4em; }
.prose h2 + section, .prose section { color: var(--ink-soft); }
.prose section[itemscope] { background: var(--ivory); border: 1px solid var(--line); border-radius: var(--r-md); padding: 24px 28px; margin: 1.4em 0; }
.prose section[itemscope] h2 { margin-top: 0; }

.article-foot { max-width: 720px; margin: 56px auto 0; padding-top: 34px; border-top: 1px solid var(--line); }

/* page hero (about/services/contact) */
.page-hero { position: relative; overflow: hidden; padding: clamp(56px, 8vw, 110px) 0 clamp(40px, 5vw, 70px); }
.page-hero .bg { position: absolute; inset: 0; z-index: -2; background:
    radial-gradient(110% 90% at 88% 10%, var(--blush-soft) 0%, transparent 45%),
    linear-gradient(180deg, var(--paper), var(--ivory)); }
.page-hero h1 { font-size: clamp(2.4rem, 5vw, 4rem); max-width: 16ch; margin-top: 18px; }
.page-hero .lede { font-size: 1.2rem; color: var(--ink-soft); max-width: 52ch; margin-top: 20px; }

/* contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 6vw, 72px); align-items: start; }
.form-card { background: var(--ivory); border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(28px, 4vw, 44px); box-shadow: var(--shadow-md); }
.field { margin-bottom: 22px; }
.field label { display: block; font-family: var(--f-mono); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--emerald-700); margin-bottom: 9px; }
.field input, .field textarea {
  width: 100%; font-family: var(--f-body); font-size: 16px; color: var(--ink);
  background: var(--paper); border: 1.5px solid var(--line); border-radius: var(--r-sm); padding: 14px 16px;
  transition: border-color .3s, box-shadow .3s;
}
.field input:focus, .field textarea:focus { border-color: var(--emerald-600); box-shadow: 0 0 0 4px rgba(42,140,102,0.12); outline: none; }
.field textarea { resize: vertical; min-height: 130px; }
.contact-aside .info-row { display: flex; gap: 14px; align-items: flex-start; padding: 18px 0; border-bottom: 1px solid var(--line); }
.contact-aside .info-row svg { flex: none; width: 22px; height: 22px; stroke: var(--emerald-600); margin-top: 3px; }
.contact-aside .info-row .lab { font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--emerald-600); }
.contact-aside .info-row .val { font-size: 1.02rem; color: var(--emerald-900); font-weight: 500; }
.contact-aside .info-row a { color: var(--emerald-900); text-decoration: none; }
.contact-aside .info-row a:hover { color: var(--blush-bright); }
@media (max-width: 820px) { .contact-grid { grid-template-columns: 1fr; } }

/* timeline (about) */
.timeline { display: grid; gap: 0; }
.t-row { display: grid; grid-template-columns: 120px 1fr; gap: 28px; padding: 28px 0; border-top: 1px solid var(--line); }
.t-row .yr { font-family: var(--f-mono); font-size: 13px; color: var(--blush-bright); letter-spacing: 0.08em; }
.t-row h3 { font-size: 1.3rem; margin: 0 0 6px; }
.t-row p { margin: 0; color: var(--ink-soft); }
@media (max-width: 640px) { .t-row { grid-template-columns: 1fr; gap: 8px; } }

/* values grid */
.values { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.value { background: var(--ivory); border: 1px solid var(--line); border-radius: var(--r-md); padding: 28px; }
.value h3 { font-size: 1.25rem; display: flex; align-items: baseline; gap: 12px; }
.value h3 .n { font-family: var(--f-mono); font-size: 12px; color: var(--blush-bright); }
.value p { margin: 0; color: var(--ink-soft); font-size: 0.98rem; }
@media (max-width: 640px) { .values { grid-template-columns: 1fr; } }

/* reveal animations */
.reveal { opacity: 0; transform: translateY(28px); }
.is-in.reveal { opacity: 1; transform: none; transition: opacity .8s ease, transform .9s var(--ease-spring); }
[data-stagger] > * { opacity: 0; transform: translateY(24px); }
[data-stagger].is-in > * { opacity: 1; transform: none; transition: opacity .7s ease, transform .8s var(--ease-spring); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal, [data-stagger] > * { opacity: 1 !important; transform: none !important; }
  #blob { display: none !important; }
  .mesh span { animation: none !important; }
}
