/* Page-level styles for the Alcan marketing site UI kit.
   All design tokens come from ../../colors_and_type.css */

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-sans);
  font-size: var(--fs-body);
  line-height: var(--lh-base);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 32px; }
.container-wide { max-width: var(--container-wide); margin: 0 auto; padding: 0 32px; }
.container-narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 32px; }

/* ===== Header ===== */
.header {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in oklab, var(--paper-100) 90%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 0;
}
.header .brand { display: flex; align-items: center; gap: 12px; cursor: pointer; background:none; border:0; padding:0; }
.header .brand img { height: 40px; display: block; }
.header .nav { display: flex; gap: 32px; }
.header .nav a {
  font-family: var(--font-sans); font-size: 14px; font-weight: 500;
  color: var(--ink-700); text-decoration: none; cursor: pointer;
  padding: 8px 0; position: relative; background:none; border:0;
  transition: color 160ms var(--ease-out);
}
.header .nav a:hover { color: var(--ink-900); }
.header .nav a.active { color: var(--ink-900); }
.header .nav a.active::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -1px;
  height: 2px; background: var(--sunrise-600);
}
.header .right { display: flex; gap: 10px; align-items: center; }

/* ===== Buttons ===== */
.btn {
  font-family: var(--font-sans); font-size: 14px; font-weight: 500;
  line-height: 1;
  padding: 13px 22px; border-radius: var(--radius-md);
  border: 1px solid transparent;
  cursor: pointer; text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
  transition: all 180ms var(--ease-out);
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--ink-900); color: #fff; }
.btn-primary:hover { background: var(--ink-800); }
.btn-secondary { background: transparent; color: var(--ink-900); border-color: var(--ink-900); }
.btn-secondary:hover { background: var(--ink-100); }
.btn-ghost { background: transparent; color: var(--ink-900); }
.btn-ghost:hover { background: var(--ink-100); }
.btn-accent { background: var(--sunrise-600); color: #fff; }
.btn-accent:hover { background: var(--sunrise-700); }
.btn-onDark { background: #fff; color: var(--ink-900); }
.btn-onDark:hover { background: var(--paper-100); }
.btn-link {
  background: transparent; color: var(--ink-900); padding: 0;
  font-weight: 500; border: 0;
}
.btn-link i { width: 14px; height: 14px; transition: transform 180ms var(--ease-out); }
.btn-link:hover { color: var(--sunrise-700); }
.btn-link:hover i { transform: translateX(3px); }
.btn-sm { font-size: 13px; padding: 9px 16px; }
.btn-lg { font-size: 15px; padding: 16px 28px; }
.btn i { width: 16px; height: 16px; }

/* ===== Eyebrow ===== */
.eyebrow {
  font-family: var(--font-sans); font-size: 12px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-900);
  display: inline-flex; align-items: center; gap: 8px;
}
.eyebrow::before {
  content: ''; width: 8px; height: 8px; border-radius: 50%;
  background: var(--sunrise-600);
}
.eyebrow.on-dark { color: #fff; }
.eyebrow.sunrise::before { background: var(--sunrise-600); }
.eyebrow.sun::before     { background: var(--sun-600); }
.eyebrow.leaf::before    { background: var(--leaf-600); }
.eyebrow.sky::before     { background: var(--sky-600); }
.eyebrow.iris::before    { background: var(--iris-600); }

/* ===== Sections ===== */
.section { padding: var(--section-y) 0; }
.section-canvas { background: var(--paper-100); }
.section-alt    { background: var(--paper-200); }
.section-tint   { background: var(--sunrise-50); }
.section-dark   { background: var(--ink-900); color: #fff; }
.section-dark h1, .section-dark h2, .section-dark h3 { color: #fff; }
.section-dark p { color: var(--ink-300); }
.section-dark .eyebrow { color: #fff; }

/* ===== Hero ===== */
.hero {
  position: relative;
  padding: 64px 0 0;
  background: var(--paper-100);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
  padding-bottom: 88px;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.4vw, 72px);
  line-height: 1;
  letter-spacing: -0.03em;
  font-weight: 500;
  color: var(--ink-900);
  margin: 22px 0 24px;
  text-wrap: balance;
}
.hero h1 em {
  font-style: italic;
  font-weight: 400;
}
.hero h1 .dot-orange { color: var(--sunrise-600); }
.hero h1 .dot-blue   { color: var(--sky-600); }

.hero p.lead {
  font-size: 19px;
  line-height: 1.5;
  color: var(--ink-700);
  max-width: 540px;
  margin: 0 0 32px;
}
.hero .cta-row { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.hero .image-wrap {
  position: relative;
}
.hero .image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 5 / 6;
  box-shadow: var(--shadow-lg);
}
.hero .image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero .image::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(14,15,18,0.0) 30%, rgba(14,15,18,0.25) 100%);
  pointer-events: none;
}

/* Floating canopy dots on hero image */
.hero .canopy-dots {
  position: absolute; bottom: -22px; right: -22px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px;
  padding: 14px; background: var(--ink-900);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.hero .canopy-dots span { width: 18px; height: 18px; border-radius: 50%; display: block; }

.hero-floater {
  position: absolute;
  bottom: 32px; left: 32px;
  background: rgba(14, 15, 18, 0.86);
  backdrop-filter: blur(8px);
  color: #fff;
  padding: 16px 18px;
  border-radius: var(--radius-md);
  font-family: var(--font-sans);
  font-size: 13px;
  display: flex; align-items: center; gap: 12px;
  max-width: 280px;
}
.hero-floater .stat {
  font-family: var(--font-display); font-size: 28px; font-weight: 600;
  color: #fff; line-height: 1;
}
.hero-floater .stat small { color: var(--sunrise-500); font-size: 18px; }
.hero-floater .lbl { color: var(--ink-300); font-size: 12px; line-height: 1.3; }

/* ===== Service strip (under hero) ===== */
.service-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--border);
  background: #fff;
}
.service-strip a {
  padding: 24px 16px 22px;
  text-align: center;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 500;
  color: var(--ink-900);
  text-decoration: none;
  border-right: 1px solid var(--border);
  cursor: pointer;
  transition: all 160ms var(--ease-out);
  display: flex; flex-direction: column; gap: 10px;
  align-items: center;
  position: relative;
  background: none; border-top: 0; border-bottom: 0; border-left: 0;
}
.service-strip a:last-child { border-right: 0; }
.service-strip a .dot {
  width: 10px; height: 10px; border-radius: 50%;
  transition: transform 200ms var(--ease-out);
}
.service-strip a:hover .dot { transform: scale(1.4); }
.service-strip a:nth-child(1) .dot { background: var(--sunrise-600); }
.service-strip a:nth-child(2) .dot { background: var(--sun-600); }
.service-strip a:nth-child(3) .dot { background: var(--leaf-600); }
.service-strip a:nth-child(4) .dot { background: var(--sky-600); }
.service-strip a:nth-child(5) .dot { background: var(--iris-600); }
.service-strip a:hover { background: var(--paper-100); }

/* ===== Section headers ===== */
.section-head { margin-bottom: 56px; max-width: 760px; }
.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 50px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin: 14px 0 18px;
  text-wrap: balance;
  color: var(--ink-900);
}
.section-head p { font-size: 18px; line-height: 1.55; color: var(--ink-700); max-width: 600px; margin:0; }
.section-dark .section-head h2 { color: #fff; }
.section-dark .section-head p { color: var(--ink-300); }

/* ===== Service cards grid (5-up canopy order) ===== */
.svc-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.svc-grid.three { grid-template-columns: repeat(3, 1fr); gap: 22px; }
.svc-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex; flex-direction: column; gap: 14px;
  transition: all 220ms var(--ease-out);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  --accent: var(--ink-900);
  --accent-tint: var(--ink-100);
}
.svc-card::before {
  content: ''; position: absolute;
  left: 0; top: 0; bottom: 0; width: 3px;
  background: var(--accent);
}
.svc-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}
.svc-card .tile {
  width: 52px; height: 52px;
  background: var(--accent-tint);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
}
.svc-card .tile i { width: 26px; height: 26px; color: var(--accent); }
.svc-card .eyebrow { color: var(--accent); font-size: 11px; }
.svc-card .eyebrow::before { background: var(--accent); }
.svc-card h3 {
  font-family: var(--font-display);
  font-size: 20px; font-weight: 500;
  letter-spacing: -0.01em; line-height: 1.15;
  color: var(--ink-900); margin: 0;
}
.svc-card p { font-size: 14px; line-height: 1.55; color: var(--ink-700); margin: 0; }
.svc-card .more {
  font-family: var(--font-sans); font-size: 13px; font-weight: 500;
  color: var(--ink-900); display: inline-flex; align-items: center; gap: 6px;
  margin-top: auto;
}
.svc-card .more i { width: 14px; height: 14px; transition: transform 160ms var(--ease-out); }
.svc-card:hover .more i { transform: translateX(4px); }

.svc-card.svc-sunrise { --accent: var(--sunrise-700); --accent-tint: var(--sunrise-100); }
.svc-card.svc-sun     { --accent: #5A4400;          --accent-tint: var(--sun-100); }
.svc-card.svc-leaf    { --accent: var(--leaf-700);  --accent-tint: var(--leaf-100); }
.svc-card.svc-sky     { --accent: var(--sky-700);   --accent-tint: var(--sky-100); }
.svc-card.svc-iris    { --accent: var(--iris-700);  --accent-tint: var(--iris-100); }

/* ===== Stat blocks (dark band) ===== */
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.stat-grid > div { padding: 36px 28px; border-right: 1px solid var(--border-on-dark); }
.stat-grid > div:last-child { border-right: 0; }
.stat-num {
  font-family: var(--font-display);
  font-size: 76px; font-weight: 500;
  letter-spacing: -0.03em; line-height: 0.9;
  color: #fff;
}
.stat-num small { font-size: 36px; margin-left: 2px; }
.stat-num small.sunrise { color: var(--sunrise-500); }
.stat-num small.sun     { color: var(--sun-500); }
.stat-num small.leaf    { color: var(--leaf-500); }
.stat-num small.sky     { color: var(--sky-500); }
.stat-label {
  font-family: var(--font-sans); font-size: 12px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-300);
  margin-top: 16px;
}

/* ===== Logo strip (client logos) ===== */
.logo-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.logo-strip .logo {
  padding: 30px 22px;
  display: flex; align-items: center; justify-content: center;
  border-right: 1px solid var(--border);
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  color: var(--ink-500);
  letter-spacing: -0.01em;
  text-align: center;
  min-height: 110px;
}
.logo-strip .logo:nth-child(6n) { border-right: 0; }
.logo-strip .logo:nth-child(n+7) { border-top: 1px solid var(--border); }

/* ===== Testimonial ===== */
.tm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.tm-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 38px;
  position: relative;
}
.tm-card .mark {
  position: absolute; top: 24px; left: 30px;
  font-family: var(--font-display); font-size: 80px;
  line-height: 0.4; color: var(--sunrise-500);
}
.tm-card q {
  display: block;
  font-family: var(--font-display);
  font-size: 21px; line-height: 1.4;
  font-style: italic; font-weight: 400;
  color: var(--ink-900);
  padding-left: 36px; margin: 4px 0 22px;
  quotes: none;
}
.tm-card q::before, .tm-card q::after { content: none; }
.tm-card .attr {
  display: flex; align-items: center; gap: 12px; padding-left: 36px;
}
.tm-card .av {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--ink-900); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 600; font-size: 16px;
}
.tm-card .who { font-family: var(--font-sans); font-size: 13px; }
.tm-card .who b { display: block; color: var(--ink-900); font-weight: 600; }
.tm-card .who span { color: var(--fg-subtle); }

/* ===== CTA band ===== */
.cta-band {
  background: var(--ink-900);
  color: #fff;
  padding: 88px 0;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: ''; position: absolute;
  right: -120px; top: -120px;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(240,96,24,0.32), rgba(240,96,24,0) 60%);
  pointer-events: none;
}
.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.6vw, 60px);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: #fff;
  max-width: 760px;
  margin: 14px 0 28px;
  text-wrap: balance;
  position: relative;
}
.cta-band p {
  font-size: 18px; color: var(--ink-300);
  max-width: 560px; margin: 0 0 32px;
  position: relative;
}
.cta-band .cta-row { position: relative; display: flex; gap: 12px; flex-wrap: wrap; }

/* ===== Footer ===== */
.footer {
  background: #0A0B0E;
  color: var(--ink-300);
  padding: 80px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer h5 {
  font-family: var(--font-sans);
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: #fff;
  margin: 0 0 18px;
}
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer a { color: var(--ink-300); text-decoration: none; font-size: 14px; cursor: pointer; }
.footer a:hover { color: #fff; }
.footer .brandCol .mark { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.footer .brandCol .mark img { height: 44px; }
.footer .brandCol p { color: var(--ink-300); font-size: 14px; line-height: 1.55; max-width: 340px; }
.footer-bottom {
  border-top: 1px solid var(--border-on-dark);
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; color: var(--ink-500);
}
.footer-bottom .socials { display: flex; gap: 14px; }
.footer-bottom .socials a i { width: 18px; height: 18px; color: var(--ink-300); }
.footer-bottom .socials a:hover i { color: #fff; }

/* ===== Forms ===== */
.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
  font-family: var(--font-sans); font-size: 12px;
  font-weight: 500; color: var(--ink-700);
  letter-spacing: 0.01em;
}
.field input, .field select, .field textarea {
  font-family: var(--font-sans);
  font-size: 14.5px; color: var(--ink-900);
  background: #fff;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-md);
  padding: 13px 14px;
  outline: none;
  transition: all 160ms var(--ease-out);
  width: 100%;
}
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--ink-900);
  box-shadow: 0 0 0 3px var(--focus-ring);
}
.field .checkbox-row { display: flex; gap: 10px; align-items: flex-start; font-size: 13.5px; color: var(--ink-700); line-height: 1.5; }
.field input[type="checkbox"] { width: 16px; height: 16px; margin-top: 2px; accent-color: var(--ink-900); }

/* ===== Chips ===== */
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-sans); font-size: 13px;
  padding: 8px 14px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-pill);
  background: #fff; color: var(--ink-800);
  cursor: pointer;
  transition: all 160ms var(--ease-out);
  font-weight: 500;
}
.chip:hover { border-color: var(--ink-900); }
.chip.active { background: var(--ink-900); color: #fff; border-color: var(--ink-900); }

/* ===== Insights / blog cards ===== */
.insights-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.insight {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: all 220ms var(--ease-out);
  display: flex; flex-direction: column;
}
.insight:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); }
.insight .ph {
  aspect-ratio: 16 / 10; overflow: hidden; position: relative;
  background: var(--ink-100);
}
.insight .ph img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 600ms var(--ease-out); }
.insight:hover .ph img { transform: scale(1.04); }
.insight .ph .tag {
  position: absolute; top: 14px; left: 14px;
  font-family: var(--font-sans); font-size: 11px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  background: #fff; color: var(--ink-900);
  padding: 5px 10px; border-radius: var(--radius-pill);
  display: inline-flex; align-items: center; gap: 6px;
}
.insight .ph .tag .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--sunrise-600); }
.insight .body { padding: 22px 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.insight .meta { font-family: var(--font-mono); font-size: 11px; color: var(--fg-subtle); letter-spacing: 0.04em; }
.insight h4 {
  font-family: var(--font-display);
  font-size: 19px; line-height: 1.2;
  font-weight: 500; letter-spacing: -0.01em;
  color: var(--ink-900); margin: 0;
}
.insight .more { font-size: 13px; font-weight: 500; color: var(--ink-900); margin-top: auto; display:inline-flex; align-items:center; gap:6px; }

/* ===== Process steps ===== */
.process { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; align-items: stretch; }
.step {
  padding: 24px 22px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  display: flex; flex-direction: column; gap: 10px;
  position: relative;
  --dot: var(--ink-900);
}
.step::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 36px; height: 4px; background: var(--dot);
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
}
.step .num {
  font-family: var(--font-mono); font-size: 11px; font-weight: 600;
  color: var(--fg-subtle); letter-spacing: 0.08em;
  padding-top: 6px;
}
.step h4 { font-family: var(--font-display); font-size: 18px; font-weight: 500; margin: 0; color: var(--ink-900); }
.step p { font-size: 13px; color: var(--ink-700); line-height: 1.5; margin: 0; }
.step:nth-child(1) { --dot: var(--sunrise-600); }
.step:nth-child(2) { --dot: var(--sun-600); }
.step:nth-child(3) { --dot: var(--leaf-600); }
.step:nth-child(4) { --dot: var(--sky-600); }
.step:nth-child(5) { --dot: var(--iris-600); }

/* ===== About hero ===== */
.about-hero {
  display: grid; grid-template-columns: 1.05fr 1fr;
  gap: 56px; align-items: center;
  padding: 72px 0 88px;
}
.about-hero .image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-md);
  background: var(--ink-100);
}
.about-hero .image img { width: 100%; height: 100%; object-fit: cover; }
.about-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 60px);
  line-height: 1.04; letter-spacing: -0.025em;
  font-weight: 500; color: var(--ink-900); margin: 16px 0 18px;
  text-wrap: balance;
}
.about-hero .lead { font-size: 19px; line-height: 1.5; color: var(--ink-700); }

/* ===== Industry grid (What we do) ===== */
.industry-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.industry {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  display: flex; align-items: center; gap: 12px;
  font-size: 14px; font-weight: 500; color: var(--ink-900);
}
.industry i { width: 18px; height: 18px; color: var(--ink-700); }

/* ===== Contact form card ===== */
.form-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px 40px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 18px 22px;
}
.form-card .full { grid-column: 1 / -1; }
.form-card .submit-row { grid-column: 1 / -1; display: flex; gap: 12px; align-items: center; margin-top: 8px; }
.form-card .submit-row .note { font-size: 12px; color: var(--fg-subtle); }

/* ===== Toast ===== */
.toast {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%);
  background: var(--ink-900); color: #fff;
  padding: 14px 22px; border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg); z-index: 100;
  font-size: 14px; font-weight: 500;
  display: flex; align-items: center; gap: 10px;
  animation: slideUp 320ms var(--ease-out);
}
.toast i { width: 16px; height: 16px; color: var(--leaf-500); }
@keyframes slideUp { from { opacity: 0; transform: translate(-50%, 20px); } to { opacity: 1; transform: translate(-50%, 0); } }

/* ===== Leadership grid ===== */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.member {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.member .ph { aspect-ratio: 4/5; background: var(--ink-100); overflow: hidden; position: relative; }
.member .ph img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.85); }
.member .ph::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 6px; background: var(--dot, var(--ink-900));
}
.member .body { padding: 18px 20px; }
.member h5 { font-family: var(--font-display); font-size: 19px; font-weight: 500; color: var(--ink-900); margin: 0 0 4px; letter-spacing: -0.01em; }
.member span { font-size: 13px; color: var(--ink-600); }
.member:nth-child(1) { --dot: var(--sunrise-600); }
.member:nth-child(2) { --dot: var(--sun-600); }
.member:nth-child(3) { --dot: var(--leaf-600); }
.member:nth-child(4) { --dot: var(--sky-600); }

/* Utility */
.row { display: flex; }
.col { display: flex; flex-direction: column; }
.gap-2 { gap: 8px; } .gap-3 { gap: 12px; } .gap-4 { gap: 16px; } .gap-6 { gap: 24px; }
