/* Plainsight Journal — editorial wellbeing publication
   Palette: cocoa #5A4A3A · sage #7C8A77 · gold #B98A2E · cream #F5F5F0 · ink #2C2A26
   Fonts: Brygada 1918 (display), Anuphan (body), Victor Mono (mono) */

:root {
  --cocoa: #5A4A3A;
  --cocoa-deep: #423629;
  --sage: #7C8A77;
  --sage-deep: #5E6C59;
  --sage-soft: #E4E8E0;
  --gold: #B98A2E;
  --gold-deep: #9A7322;
  --cream: #F5F5F0;
  --cream-warm: #EDEBE2;
  --cream-deep: #E3E1D6;
  --ink: #2C2A26;
  --ink-soft: #4A463F;
  --muted: #6E695F;
  --line: #DCDACE;
  --line-soft: #E8E6DC;
  --surface: #FBFBF7;

  --radius: 14px;          /* single corner-radius system, scaled by multiples */
  --radius-sm: 8px;
  --radius-lg: 22px;
  --radius-pill: 999px;

  --shadow-sm: 0 1px 2px rgba(44,42,38,0.05), 0 4px 14px rgba(44,42,38,0.04);
  --shadow-md: 0 6px 18px rgba(44,42,38,0.07), 0 18px 48px rgba(44,42,38,0.06);

  --maxw: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  --font-display: "Brygada 1918", Georgia, serif;
  --font-body: "Anuphan", system-ui, -apple-system, sans-serif;
  --font-mono: "Victor Mono", ui-monospace, "SFMono-Regular", monospace;
}

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

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

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* layered cream background */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(1100px 700px at 82% -8%, rgba(124,138,119,0.16), transparent 60%),
    radial-gradient(900px 620px at -6% 12%, rgba(90,74,58,0.08), transparent 58%),
    linear-gradient(180deg, var(--cream) 0%, var(--cream-warm) 100%);
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--cocoa); text-decoration-color: rgba(90,74,58,0.32); text-underline-offset: 3px; }
a:hover { color: var(--gold-deep); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.12;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin: 0 0 0.5em;
}

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--cocoa); color: var(--cream); padding: 12px 18px;
  border-radius: 0 0 var(--radius-sm) 0; font-weight: 600;
}
.skip-link:focus { left: 0; }

/* focus visibility — never color alone */
:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(245,245,240,0.82);
  backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--line-soft);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; height: 74px;
}
.brand-lockup { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand-lockup:hover { color: inherit; }
.brand-mark {
  width: 38px; height: 38px; border-radius: 11px;
  display: grid; place-items: center; flex: 0 0 auto;
  background: linear-gradient(150deg, var(--cocoa) 0%, var(--cocoa-deep) 100%);
  box-shadow: var(--shadow-sm);
}
.brand-mark svg { width: 21px; height: 21px; }
.brand-name {
  font-family: var(--font-display); font-weight: 700; font-size: 1.18rem;
  color: var(--ink); letter-spacing: -0.01em; line-height: 1;
}
.brand-sub {
  display: block; font-family: var(--font-mono); font-size: 0.62rem;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted);
  margin-top: 4px; font-weight: 500;
}
.nav { display: flex; align-items: center; gap: 6px; }
.nav a {
  font-size: 0.95rem; font-weight: 500; color: var(--ink-soft);
  text-decoration: none; padding: 8px 13px; border-radius: var(--radius-pill);
  transition: background .25s var(--ease), color .25s var(--ease);
}
.nav a:hover { background: var(--sage-soft); color: var(--cocoa-deep); }
.nav a.is-active { color: var(--cocoa-deep); background: var(--cream-deep); }
.nav-cta {
  margin-left: 8px; background: var(--gold) !important; color: #fff !important;
  font-weight: 600 !important; box-shadow: var(--shadow-sm);
}
.nav-cta:hover { background: var(--gold-deep) !important; color: #fff !important; }

.menu-toggle {
  display: none; background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-sm); width: 44px; height: 44px; cursor: pointer;
  color: var(--cocoa);
}
.menu-toggle svg { width: 22px; height: 22px; margin: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-body); font-weight: 600; font-size: 1rem;
  padding: 14px 26px; border-radius: var(--radius-pill); border: 1.5px solid transparent;
  cursor: pointer; text-decoration: none; line-height: 1;
  transition: transform .2s var(--ease), background .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--gold); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--gold-deep); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-secondary { background: transparent; color: var(--cocoa-deep); border-color: var(--cocoa); }
.btn-secondary:hover { background: var(--cocoa); color: var(--cream); transform: translateY(-2px); }
.btn-ghost { background: var(--surface); color: var(--cocoa-deep); border-color: var(--line); }
.btn-ghost:hover { background: var(--cream-deep); transform: translateY(-2px); }

/* ---------- Hero ---------- */
.hero { position: relative; padding: 92px 0 76px; overflow: hidden; }
.hero-blob {
  position: absolute; z-index: 0; top: 8%; left: 50%;
  width: 560px; height: 560px; pointer-events: none;
  border-radius: 50%; filter: blur(46px); opacity: 0.55;
  background: radial-gradient(circle at 38% 36%, rgba(124,138,119,0.62), transparent 62%),
              radial-gradient(circle at 66% 70%, rgba(185,138,46,0.34), transparent 64%);
  transform: translate(-50%, 0);
  will-change: transform;
}
.hero-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 60px; align-items: center;
}
.hero-kicker {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-mono); font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--sage-deep);
  margin-bottom: 22px;
}
.hero-kicker .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--sage); }
.hero h1 {
  font-size: clamp(2.7rem, 5.4vw, 4.05rem); font-weight: 600;
  line-height: 1.04; margin: 0 0 22px; letter-spacing: -0.02em;
}
.hero h1 em { font-style: italic; color: var(--cocoa); font-weight: 500; }
.hero-lede { font-size: 1.2rem; color: var(--ink-soft); max-width: 30ch; margin: 0 0 30px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

.hero-figure { position: relative; }
.hero-figure img {
  width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-md);
  aspect-ratio: 5/6; object-fit: cover;
}
.hero-badge {
  position: absolute; left: -22px; bottom: 30px;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 16px 20px; box-shadow: var(--shadow-md);
  max-width: 230px;
}
.hero-badge .num { font-family: var(--font-display); font-size: 1.7rem; font-weight: 700; color: var(--cocoa); line-height: 1; }
.hero-badge .lbl { font-size: 0.85rem; color: var(--muted); margin-top: 4px; }

/* ---------- Sections ---------- */
.section { padding: 84px 0; position: relative; }
.section-alt { background: linear-gradient(180deg, var(--cream-warm), var(--cream)); border-block: 1px solid var(--line-soft); }
.section-cocoa { background: linear-gradient(160deg, var(--cocoa) 0%, var(--cocoa-deep) 100%); color: var(--cream); }
.section-cocoa h2, .section-cocoa h3 { color: var(--cream); }

.kicker {
  font-family: var(--font-mono); font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--sage-deep);
  display: inline-block; margin-bottom: 16px;
}
.section-cocoa .kicker { color: #C9D0C2; }
.section-head { max-width: 60ch; margin-bottom: 48px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { font-size: clamp(2rem, 3.4vw, 2.7rem); }
.section-head p { font-size: 1.12rem; color: var(--ink-soft); margin: 14px 0 0; }
.section-cocoa .section-head p { color: #D9D6CC; }

/* ---------- Stats strip ---------- */
.stats-strip {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: var(--line); border: 1px solid var(--line);
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm);
}
.stat { background: var(--surface); padding: 30px 24px; }
.stat .v { font-family: var(--font-display); font-size: 1.85rem; font-weight: 700; color: var(--cocoa); line-height: 1; }
.stat .l { font-size: 0.92rem; color: var(--muted); margin-top: 8px; }

/* ---------- Pillars / topics ---------- */
.pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.pillar-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 34px; position: relative; overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.pillar-card::after {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 4px;
  background: linear-gradient(90deg, var(--sage), var(--cocoa));
}
.pillar-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--sage); }
.pillar-icon {
  width: 52px; height: 52px; border-radius: 13px; display: grid; place-items: center;
  background: var(--sage-soft); color: var(--sage-deep); margin-bottom: 18px;
}
.pillar-icon svg { width: 26px; height: 26px; }
.pillar-card h3 { font-size: 1.45rem; margin-bottom: 10px; }
.pillar-card p { color: var(--ink-soft); margin: 0 0 18px; }
.pillar-points { list-style: none; padding: 0; margin: 0 0 22px; }
.pillar-points li { display: flex; gap: 10px; padding: 6px 0; color: var(--ink-soft); font-size: 0.98rem; }
.pillar-points svg { width: 18px; height: 18px; color: var(--sage-deep); flex: 0 0 auto; margin-top: 4px; }
.pillar-link {
  font-weight: 600; color: var(--cocoa-deep); text-decoration: none;
  display: inline-flex; align-items: center; gap: 7px;
}
.pillar-link svg { width: 17px; height: 17px; transition: transform .25s var(--ease); }
.pillar-link:hover svg { transform: translateX(4px); }

/* ---------- Approach ---------- */
.approach-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.approach-item {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(245,245,240,0.16);
  border-radius: var(--radius-lg); padding: 30px;
}
.approach-num { font-family: var(--font-mono); font-size: 0.8rem; letter-spacing: 0.16em; color: #C9D0C2; }
.approach-item h3 { font-size: 1.3rem; margin: 14px 0 10px; }
.approach-item p { color: #D9D6CC; margin: 0; }

/* ---------- Insights / article cards ---------- */
.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.post-card {
  display: flex; flex-direction: column; background: var(--surface);
  border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden;
  text-decoration: none; color: inherit;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.post-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--sage); color: inherit; }
.post-card .thumb { aspect-ratio: 16/10; overflow: hidden; background: var(--cream-deep); }
.post-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.post-card:hover .thumb img { transform: scale(1.05); }
.post-card .body { padding: 22px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.tag {
  align-self: flex-start; font-family: var(--font-mono); font-size: 0.66rem;
  letter-spacing: 0.14em; text-transform: uppercase; font-weight: 500;
  color: var(--sage-deep); background: var(--sage-soft);
  padding: 5px 11px; border-radius: var(--radius-pill); margin-bottom: 14px;
}
.post-card h3 { font-size: 1.28rem; line-height: 1.18; margin-bottom: 10px; }
.post-card p { color: var(--ink-soft); font-size: 0.97rem; margin: 0 0 16px; flex: 1; }
.post-meta { display: flex; gap: 12px; font-size: 0.84rem; color: var(--muted); font-family: var(--font-mono); }

/* ---------- Resources blogroll ---------- */
.resources-list { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.resource-item {
  display: flex; align-items: center; gap: 14px;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 16px 20px; text-decoration: none; color: var(--ink);
  transition: transform .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.resource-item:hover { transform: translateX(4px); border-color: var(--sage); box-shadow: var(--shadow-sm); color: var(--cocoa-deep); }
.resource-item .ico {
  width: 38px; height: 38px; flex: 0 0 auto; border-radius: 10px;
  background: var(--cream-deep); display: grid; place-items: center; color: var(--cocoa);
}
.resource-item .ico svg { width: 19px; height: 19px; }
.resource-item .txt { display: flex; flex-direction: column; min-width: 0; }
.resource-item .anchor { font-weight: 600; font-size: 1rem; }
.resource-item .host { font-family: var(--font-mono); font-size: 0.78rem; color: var(--muted); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

/* ---------- Testimonials ---------- */
.quotes-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.quote-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 32px 30px; position: relative;
}
.quote-mark { font-family: var(--font-display); font-size: 3.4rem; color: var(--sage); line-height: 0.5; height: 28px; }
.quote-card blockquote { margin: 0 0 22px; font-size: 1.08rem; color: var(--ink); line-height: 1.55; }
.quote-foot { display: flex; align-items: center; gap: 13px; }
.quote-avatar {
  width: 44px; height: 44px; border-radius: 50%; flex: 0 0 auto;
  background: linear-gradient(150deg, var(--sage), var(--sage-deep));
  color: #fff; display: grid; place-items: center; font-weight: 700; font-family: var(--font-display); font-size: 0.95rem;
}
.quote-name { font-weight: 600; font-size: 0.98rem; }
.quote-ctx { font-size: 0.84rem; color: var(--muted); }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(155deg, var(--sage-deep) 0%, var(--cocoa) 100%);
  border-radius: var(--radius-lg); padding: 56px; color: var(--cream);
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 36px; align-items: center;
  box-shadow: var(--shadow-md);
}
.cta-band h2 { color: #fff; font-size: clamp(1.8rem, 3vw, 2.4rem); margin-bottom: 12px; }
.cta-band p { color: rgba(245,245,240,0.88); margin: 0; font-size: 1.08rem; }
.cta-band .actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: flex-end; }
.cta-band .btn-primary { background: var(--gold); }
.cta-band .btn-secondary { border-color: var(--cream); color: var(--cream); }
.cta-band .btn-secondary:hover { background: var(--cream); color: var(--cocoa-deep); }

/* ---------- Footer ---------- */
.site-footer { background: var(--cocoa-deep); color: #D9D6CC; padding: 64px 0 32px; margin-top: 8px; }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 36px; }
.footer-brand .brand-name { color: var(--cream); }
.footer-brand p { color: #C2BDB2; max-width: 34ch; margin: 16px 0 0; font-size: 0.96rem; }
.footer-col h4 { color: var(--cream); font-family: var(--font-body); font-weight: 600; font-size: 0.82rem; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 16px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: #C2BDB2; text-decoration: none; font-size: 0.95rem; }
.footer-col a:hover { color: var(--cream); }
.footer-bottom {
  margin-top: 48px; padding-top: 24px; border-top: 1px solid rgba(245,245,240,0.14);
  display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap;
  font-size: 0.88rem; color: #ABA69B;
}
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 10px; display: grid; place-items: center;
  background: rgba(245,245,240,0.08); color: #D9D6CC; text-decoration: none; font-size: 0.78rem; font-weight: 600;
}
.footer-social a:hover { background: var(--sage-deep); color: #fff; }

/* ---------- Page hero (interior) ---------- */
.page-hero { padding: 70px 0 50px; position: relative; }
.page-hero h1 { font-size: clamp(2.3rem, 4.6vw, 3.4rem); margin-bottom: 16px; }
.page-hero p { font-size: 1.18rem; color: var(--ink-soft); max-width: 58ch; margin: 0; }
.breadcrumb { font-family: var(--font-mono); font-size: 0.78rem; color: var(--muted); margin-bottom: 20px; }
.breadcrumb a { color: var(--muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--cocoa); }

/* ---------- About ---------- */
.about-split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.about-split img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.prose p { color: var(--ink-soft); font-size: 1.1rem; }
.prose h2 { margin-top: 1.5em; }
.values-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.value-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; }
.value-card h3 { font-size: 1.2rem; margin-bottom: 8px; display: flex; align-items: center; gap: 10px; }
.value-card .vico { width: 30px; height: 30px; border-radius: 8px; background: var(--cocoa); color: var(--cream); display: grid; place-items: center; flex: 0 0 auto; }
.value-card .vico svg { width: 17px; height: 17px; }
.value-card p { margin: 0; color: var(--ink-soft); }

.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.team-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 30px; text-align: center; }
.team-avatar {
  width: 72px; height: 72px; border-radius: 50%; margin: 0 auto 16px;
  background: linear-gradient(150deg, var(--cocoa), var(--cocoa-deep)); color: var(--cream);
  display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; font-size: 1.5rem;
}
.team-card h3 { font-size: 1.22rem; margin-bottom: 4px; }
.team-card .role { font-family: var(--font-mono); font-size: 0.76rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--sage-deep); margin-bottom: 12px; }
.team-card p { color: var(--ink-soft); font-size: 0.96rem; margin: 0; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item { border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); margin-bottom: 14px; overflow: hidden; }
.faq-q { width: 100%; text-align: left; background: none; border: none; cursor: pointer; padding: 22px 26px; font-family: var(--font-display); font-weight: 600; font-size: 1.14rem; color: var(--ink); display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-q svg { width: 22px; height: 22px; color: var(--cocoa); flex: 0 0 auto; transition: transform .3s var(--ease); }
.faq-item.open .faq-q svg { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.faq-a-inner { padding: 0 26px 24px; color: var(--ink-soft); }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: start; }
.contact-form {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 38px; box-shadow: var(--shadow-sm);
}
.field { margin-bottom: 22px; }
.field label { display: block; font-weight: 600; font-size: 0.95rem; color: var(--ink); margin-bottom: 8px; }
.field .req { color: var(--gold-deep); }
.field input, .field textarea {
  width: 100%; font-family: var(--font-body); font-size: 1rem; color: var(--ink);
  background: var(--cream); border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  padding: 13px 15px; transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--sage); box-shadow: 0 0 0 3px rgba(124,138,119,0.25); }
.field textarea { resize: vertical; min-height: 140px; }
.field .hint { font-size: 0.84rem; color: var(--muted); margin-top: 6px; }
.form-alert {
  display: none; background: var(--sage-soft); border: 1px solid var(--sage);
  border-radius: var(--radius-sm); padding: 14px 16px; margin-bottom: 22px;
  color: var(--cocoa-deep); font-weight: 500;
}
.form-alert.error { background: #F6E4DE; border-color: #C97B5E; color: #8A4226; }
.form-alert.show { display: block; }
.contact-aside .info-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 30px; margin-bottom: 20px; }
.contact-aside h3 { font-size: 1.2rem; margin-bottom: 14px; }
.info-row { display: flex; gap: 13px; align-items: flex-start; padding: 9px 0; }
.info-row .ico { width: 38px; height: 38px; border-radius: 10px; background: var(--sage-soft); color: var(--sage-deep); display: grid; place-items: center; flex: 0 0 auto; }
.info-row .ico svg { width: 19px; height: 19px; }
.info-row a { color: var(--cocoa-deep); text-decoration: none; font-weight: 600; }
.info-row .label { font-size: 0.82rem; color: var(--muted); }

/* ---------- Article ---------- */
.article-shell { padding: 50px 0 80px; }
.article-layout { display: grid; grid-template-columns: minmax(0,1fr) 280px; gap: 56px; align-items: start; }
.article-main { min-width: 0; }
.article-hero-img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); margin-bottom: 36px; width: 100%; aspect-ratio: 16/8; object-fit: cover; }
.article-body { font-size: 1.1rem; line-height: 1.78; color: var(--ink-soft); }
.article-body[dir="rtl"] { text-align: right; }
.article-body h2 { font-size: 1.85rem; margin: 1.7em 0 0.5em; color: var(--ink); }
.article-body h3 { font-size: 1.32rem; margin: 1.4em 0 0.4em; color: var(--ink); }
.article-body p { margin: 0 0 1.15em; }
.article-body a { color: var(--cocoa-deep); font-weight: 600; text-decoration: underline; text-decoration-color: var(--gold); text-underline-offset: 3px; }
.article-body a:hover { color: var(--gold-deep); }
.article-body img { border-radius: var(--radius); margin: 1.6em auto; box-shadow: var(--shadow-sm); }
.article-body ul, .article-body ol { margin: 0 0 1.2em; padding-left: 1.4em; }
.article-body li { margin-bottom: 0.5em; }
.article-body blockquote {
  margin: 1.6em 0; padding: 18px 26px; border-left: 4px solid var(--sage);
  background: var(--cream-warm); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; color: var(--ink); font-style: italic;
}
.article-body table { width: 100%; border-collapse: collapse; margin: 1.5em 0; font-size: 0.98rem; }
.article-body th, .article-body td { border: 1px solid var(--line); padding: 11px 14px; text-align: left; }
.article-body th { background: var(--cream-deep); font-family: var(--font-display); }
.article-body figure { margin: 1.6em 0; }
.article-body figcaption { font-size: 0.85rem; color: var(--muted); text-align: center; margin-top: 8px; font-family: var(--font-mono); }
.article-body section { margin-bottom: 0.6em; }

.article-meta-row { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; margin-bottom: 22px; color: var(--muted); font-family: var(--font-mono); font-size: 0.85rem; }
.article-title { font-size: clamp(2rem, 4.2vw, 3rem); line-height: 1.08; margin-bottom: 18px; }

.article-aside { position: sticky; top: 96px; }
.aside-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 26px; margin-bottom: 22px; }
.aside-card h4 { font-size: 1.05rem; margin-bottom: 14px; }
.aside-card ul { list-style: none; padding: 0; margin: 0; }
.aside-card li { margin-bottom: 12px; }
.aside-card a { color: var(--ink-soft); text-decoration: none; font-size: 0.94rem; display: block; }
.aside-card a:hover { color: var(--cocoa-deep); }
.aside-source { display: flex; align-items: center; gap: 8px; font-weight: 600; color: var(--cocoa-deep); text-decoration: none; }
.aside-source svg { width: 16px; height: 16px; }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(26px); }
.reveal.is-in { opacity: 1; transform: none; transition: opacity .7s var(--ease), transform .7s var(--ease); }

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
  .reveal, .reveal.is-in { opacity: 1 !important; transform: none !important; transition: none !important; }
  .hero-blob { display: none !important; }
  .btn:hover, .post-card:hover, .pillar-card:hover { transform: none !important; }
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-figure { order: -1; max-width: 460px; }
  .hero-lede { max-width: 46ch; }
  .about-split, .contact-grid, .article-layout { grid-template-columns: 1fr; gap: 36px; }
  .article-aside { position: static; }
  .cta-band { grid-template-columns: 1fr; }
  .cta-band .actions { justify-content: flex-start; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 760px) {
  .nav { display: none; position: absolute; top: 74px; left: 0; right: 0; flex-direction: column; align-items: stretch; background: var(--cream); border-bottom: 1px solid var(--line); padding: 14px; gap: 4px; }
  .nav.open { display: flex; }
  .nav a { padding: 13px 16px; }
  .nav-cta { margin: 6px 0 0; text-align: center; justify-content: center; }
  .menu-toggle { display: grid; place-items: center; }
  .pillars, .cards-grid, .quotes-grid, .approach-grid, .stats-strip, .team-grid, .values-grid, .resources-list { grid-template-columns: 1fr; }
  .stats-strip { grid-template-columns: 1fr 1fr; }
  .section { padding: 60px 0; }
  .cta-band { padding: 36px 28px; }
  .contact-form { padding: 28px 22px; }
}
@media (max-width: 420px) {
  .stats-strip { grid-template-columns: 1fr; }
}
