/* ==========================================================================
   SA SOLAR — components.css
   Buttons, cards, nav, footer, forms, data rows. Radius 6 / 12, padding 34,
   border #2A2A2A. Hover lifts brightness, not size.
   ========================================================================== */

/* --- Logo ---------------------------------------------------------------- */
.logo { display: inline-flex; align-items: center; color: var(--olive-ink); transition: color 0.35s var(--ease); }
.logo svg { width: var(--logo-w, 172px); height: auto; }
.logo:hover { color: #B9CE97; }
.logo--white { color: #fff; }
.logo--white:hover { color: #fff; }

/* --- Icons: Lucide, outline only, consistent 1.5px stroke ---------------- */
.ico {
  width: 24px; height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: none;
}
.ico--sm { width: 18px; height: 18px; }

/* --- Buttons ------------------------------------------------------------- */
.btn {
  --btn-bg: var(--olive);
  --btn-fg: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 26px;
  border-radius: var(--r-btn);
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-size: var(--t-small);
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1;
  white-space: nowrap;
  border: 1px solid transparent;
  transition: filter 0.28s var(--ease), background-color 0.28s var(--ease),
              border-color 0.28s var(--ease), color 0.28s var(--ease);
}
/* Hover lifts brightness, not size — brand rule, page 13 */
.btn:hover { filter: brightness(1.32); }
.btn:active { filter: brightness(1.1); }

.btn--secondary {
  --btn-bg: transparent;
  --btn-fg: #fff;
  border-color: #fff;
}
.btn--secondary:hover { filter: none; background: rgba(255, 255, 255, 0.09); }

.btn--quiet {
  --btn-bg: transparent;
  --btn-fg: var(--text);
  border-color: var(--border);
}
.btn--quiet:hover { filter: none; border-color: var(--olive-line); background: var(--surface-2); }

.btn--sm { padding: 11px 18px; font-size: var(--t-label); }
.btn--lg { padding: 18px 32px; font-size: 1rem; }
.btn--block { display: flex; width: 100%; }

/* Ghost — inline link with arrow */
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--olive-ink);
  font-size: var(--t-small);
  font-weight: 600;
  line-height: 1;
  transition: color 0.28s var(--ease), gap 0.28s var(--ease);
}
.btn-ghost svg { width: 17px; height: 17px; transition: transform 0.32s var(--ease); }
.btn-ghost:hover { color: #C0D6A0; }
.btn-ghost:hover svg { transform: translateX(5px); }

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

/* --- Corner brackets: the engineering-drawing motif ---------------------- */
.brackets { position: relative; }
.brackets::before,
.brackets::after {
  content: '';
  position: absolute;
  width: 13px; height: 13px;
  border: 1px solid var(--olive-line);
  opacity: 0.85;
  pointer-events: none;
}
.brackets::before { top: -1px; left: -1px; border-right: 0; border-bottom: 0; }
.brackets::after  { bottom: -1px; right: -1px; border-left: 0; border-top: 0; }

/* --- Cards --------------------------------------------------------------- */
.card {
  position: relative;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  padding: var(--pad-card);
  transition: border-color 0.34s var(--ease), background-color 0.34s var(--ease);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.card__icon { color: var(--olive-ink); margin-bottom: 22px; }
.card__icon svg { width: 34px; height: 34px; stroke-width: 1.5; }
.card__title { margin-bottom: 12px; }
.card__body { color: var(--text-2); font-size: var(--t-small); line-height: 1.6; }
.card__index {
  position: absolute; top: 20px; right: 24px;
  font-size: var(--t-micro); font-weight: 500; letter-spacing: 0.1em;
  color: var(--olive-dim);
  font-variant-numeric: tabular-nums;
  transition: color 0.34s var(--ease);
}
.card__foot { margin-top: auto; padding-top: 22px; }

a.card, .card--interactive { cursor: pointer; }
.card:hover { border-color: var(--olive-line); background: #1E2117; }
.card:hover .card__index { color: var(--olive-ink); }

/* Card on a #0D0D0D section reads one step down */
.section--surface .card { background: #131313; }
.section--surface .card:hover { background: #1B1E15; }

/* --- Audience / solution list rows --------------------------------------- */
.rowlist { border-top: 1px solid var(--border); }
.rowitem {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) minmax(0, 1.35fr) auto;
  gap: clamp(16px, 3vw, 44px);
  align-items: center;
  padding: 30px 4px;
  border-bottom: 1px solid var(--border);
  transition: background-color 0.34s var(--ease), padding-inline 0.34s var(--ease);
}
.rowitem:hover { background: var(--surface-2); padding-inline: 20px 14px; }
.rowitem__num { font-size: var(--t-micro); font-weight: 500; letter-spacing: 0.1em; color: var(--olive-ink); font-variant-numeric: tabular-nums; }
.rowitem__title { font-size: clamp(1.125rem, 1rem + 0.5vw, 1.4rem); font-weight: 600; letter-spacing: -0.015em; }
.rowitem__body { color: var(--text-2); font-size: var(--t-small); }
.rowitem__go { color: var(--muted); transition: color 0.3s var(--ease), transform 0.3s var(--ease); }
.rowitem__go svg { width: 20px; height: 20px; }
.rowitem:hover .rowitem__go { color: var(--olive-ink); transform: translateX(5px); }
@media (max-width: 900px) {
  .rowitem { grid-template-columns: 40px minmax(0, 1fr) auto; }
  .rowitem__body { grid-column: 2 / -1; }
}

/* --- Stat / credibility strip -------------------------------------------- */
.statbar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  overflow: hidden;
  background: var(--surface);
}
.statbar__cell {
  padding: 30px clamp(18px, 2.4vw, 32px);
  border-right: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 9px;
  transition: background-color 0.34s var(--ease);
}
.statbar__cell:last-child { border-right: 0; }
.statbar__cell:hover { background: var(--surface-2); }
.statbar__fig {
  font-size: clamp(1.75rem, 1.4rem + 1.3vw, 2.5rem);
  font-weight: 600; line-height: 1; letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
}
.statbar__fig .u { color: var(--olive-ink); }
.statbar__cap { font-size: var(--t-micro); letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-2); line-height: 1.45; }
@media (max-width: 700px) {
  .statbar { grid-template-columns: repeat(2, 1fr); }
  .statbar__cell { border-bottom: 1px solid var(--border); }
}

/* --- Spec / data rows (proposal-template language) ----------------------- */
.specrows { width: 100%; }
.specrow {
  display: flex; justify-content: space-between; align-items: baseline; gap: 20px;
  padding: 15px 0;
  border-bottom: 1px solid var(--border);
}
.specrow__k { color: var(--text-2); font-size: var(--t-small); }
.specrow__v { font-weight: 600; font-variant-numeric: tabular-nums; text-align: right; }
.specrow__v small { color: var(--text-2); font-weight: 400; font-size: var(--t-label); margin-left: 3px; }

/* --- Checklist ----------------------------------------------------------- */
.checklist li {
  display: grid; grid-template-columns: 26px minmax(0, 1fr);
  gap: 12px; align-items: start;
  padding: 13px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text-2);
  font-size: var(--t-small);
}
.checklist li::before {
  content: '';
  width: 15px; height: 15px; margin-top: 4px;
  background: var(--olive-ink);
  clip-path: polygon(14% 47%, 0 61%, 38% 100%, 100% 22%, 86% 8%, 38% 71%);
}
.checklist--dont li::before {
  background: var(--warn);
  clip-path: polygon(20% 0, 50% 34%, 80% 0, 100% 20%, 66% 50%, 100% 80%, 80% 100%, 50% 66%, 20% 100%, 0 80%, 34% 50%, 0 20%);
}
.checklist strong { color: var(--text); font-weight: 500; }

/* --- Numbered process timeline ------------------------------------------- */
.steps { position: relative; }
.steps::before {
  content: '';
  position: absolute; left: 27px; top: 24px; bottom: 24px;
  width: 1px; background: var(--border);
}
.steps__fill {
  position: absolute; left: 27px; top: 24px;
  width: 1px; background: var(--olive-line);
  height: var(--fill, 0%);
  transition: height 0.15s linear;
}
.step {
  position: relative;
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: clamp(20px, 3vw, 44px);
  padding-block: clamp(24px, 3vw, 40px);
}
.step__dot {
  position: relative; z-index: 1;
  width: 55px; height: 55px;
  display: grid; place-items: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: var(--bg);
  font-size: var(--t-label); font-weight: 600;
  font-variant-numeric: tabular-nums;
  color: var(--text-2);
  transition: color 0.4s var(--ease), border-color 0.4s var(--ease), background-color 0.4s var(--ease);
}
.section--surface .step__dot { background: var(--surface); }
.step.is-active .step__dot { color: #fff; border-color: var(--olive-line); background: var(--olive); }
.step__title { margin-bottom: 12px; }
.step__body { color: var(--text-2); max-width: 62ch; }
.step__body + .step__body { margin-top: 12px; }
@media (max-width: 640px) {
  .steps::before, .steps__fill { left: 21px; }
  .step { grid-template-columns: 44px minmax(0, 1fr); gap: 18px; }
  .step__dot { width: 43px; height: 43px; font-size: var(--t-micro); }
}

/* --- Header -------------------------------------------------------------- */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  height: var(--header-h);
  display: flex; align-items: center;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(14px) saturate(120%);
  -webkit-backdrop-filter: blur(14px) saturate(120%);
  border-bottom: 1px solid transparent;
  transition: border-color 0.4s var(--ease), background-color 0.4s var(--ease);
}
.header.is-stuck { border-bottom-color: var(--border); background: rgba(0, 0, 0, 0.9); }
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 28px; width: 100%; }
.header .logo { --logo-w: 150px; }

.nav { display: flex; align-items: center; gap: clamp(4px, 1.4vw, 22px); }
.nav__link {
  position: relative;
  padding: 9px 4px;
  font-size: var(--t-label);
  font-weight: 500;
  color: var(--text-2);
  letter-spacing: 0.005em;
  transition: color 0.28s var(--ease);
  white-space: nowrap;
}
.nav__link::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 1px; background: var(--olive-ink);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.34s var(--ease);
}
.nav__link:hover { color: var(--text); }
.nav__link:hover::after { transform: scaleX(1); }
.nav__link[aria-current='page'] { color: var(--text); }
.nav__link[aria-current='page']::after { transform: scaleX(1); }

.header__cta { display: flex; align-items: center; gap: 14px; }

.burger {
  display: none;
  width: 42px; height: 42px;
  border: 1px solid var(--border); border-radius: var(--r-btn);
  place-items: center;
  transition: border-color 0.3s var(--ease);
}
.burger:hover { border-color: var(--olive-line); }
.burger span { display: block; width: 17px; height: 1px; background: #fff; transition: transform 0.35s var(--ease), opacity 0.2s; }
.burger span + span { margin-top: 5px; }
.burger[aria-expanded='true'] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.burger[aria-expanded='true'] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded='true'] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 1040px) {
  .nav, .header__cta .btn { display: none; }
  .burger { display: grid; }
}

/* Mobile drawer */
.drawer {
  position: fixed; inset: var(--header-h) 0 0 0; z-index: 99;
  background: var(--bg);
  padding: 34px var(--gutter) 44px;
  display: flex; flex-direction: column; gap: 4px;
  transform: translateY(-8px);
  opacity: 0; visibility: hidden;
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), visibility 0.3s;
  overflow-y: auto;
}
.drawer.is-open { opacity: 1; visibility: visible; transform: none; }
.drawer__link {
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
  font-size: 1.3rem; font-weight: 500;
  display: flex; justify-content: space-between; align-items: center;
}
.drawer__link[aria-current='page'] { color: var(--olive-ink); }
.drawer .btn { margin-top: 28px; }

/* --- Footer -------------------------------------------------------------- */
.footer { background: var(--bg); border-top: 1px solid var(--border); padding-block: clamp(56px, 6vw, 88px) 34px; }
.footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) repeat(3, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 64px);
  padding-bottom: 52px;
}
.footer .logo { --logo-w: 190px; margin-bottom: 24px; }
.footer__tag { font-size: var(--t-sub); font-weight: 500; letter-spacing: -0.015em; margin-bottom: 14px; }
.footer__col h4 { font-size: var(--t-micro); letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-bottom: 20px; font-weight: 500; }
.footer__col li + li { margin-top: 12px; }
.footer__col a { font-size: var(--t-small); color: var(--text-2); transition: color 0.26s var(--ease); }
.footer__col a:hover { color: var(--olive-ink); }
.footer__bar {
  border-top: 1px solid var(--border);
  padding-top: 26px;
  display: flex; flex-wrap: wrap; gap: 12px 30px; justify-content: space-between; align-items: center;
}
.footer__legal { font-size: var(--t-micro); color: var(--muted); max-width: 74ch; line-height: 1.6; }
.footer__creds { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  font-size: var(--t-micro); letter-spacing: 0.06em; text-transform: uppercase;
  padding: 7px 12px; border: 1px solid var(--border); border-radius: var(--r-btn);
  color: var(--text-2);
}
@media (max-width: 860px) { .footer__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 520px) { .footer__grid { grid-template-columns: minmax(0, 1fr); } }

/* --- Forms --------------------------------------------------------------- */
.field { display: flex; flex-direction: column; gap: 9px; }
.field > label { font-size: var(--t-label); font-weight: 500; color: var(--text-2); }
.field > label .req { color: var(--olive-ink); }
.input, .select, .textarea {
  width: 100%;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--r-btn);
  padding: 14px 16px;
  font-size: var(--t-small);
  color: var(--text);
  transition: border-color 0.26s var(--ease), background-color 0.26s var(--ease);
  appearance: none;
}
.input::placeholder, .textarea::placeholder { color: var(--muted); }
.input:hover, .select:hover, .textarea:hover { border-color: #3A3A3A; }
.input:focus, .select:focus, .textarea:focus {
  outline: none;
  border-color: var(--olive-line);
  background: #1E2117;
}
.textarea { min-height: 148px; resize: vertical; line-height: 1.55; }
.select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  padding-right: 42px;
  cursor: pointer;
}
.select option { background: var(--surface-2); color: var(--text); }
.field.is-invalid .input, .field.is-invalid .select, .field.is-invalid .textarea { border-color: var(--warn); }
.field__err { font-size: var(--t-micro); color: var(--warn); display: none; }
.field.is-invalid .field__err { display: block; }

/* Segmented control — used in forms and in the yield instrument */
.segment { display: flex; flex-wrap: wrap; gap: 8px; }
.segment button {
  padding: 11px 16px;
  border: 1px solid var(--border);
  border-radius: var(--r-btn);
  background: var(--surface-2);
  font-size: var(--t-label); font-weight: 500;
  color: var(--text-2);
  transition: border-color 0.26s var(--ease), color 0.26s var(--ease), background-color 0.26s var(--ease);
}
.segment button:hover { border-color: var(--olive-line); color: var(--text); }
.segment button[aria-pressed='true'] { background: var(--olive); border-color: var(--olive); color: #fff; }

/* Range — precision instrument styling */
.range { width: 100%; appearance: none; background: transparent; height: 26px; cursor: grab; }
.range:active { cursor: grabbing; }
.range::-webkit-slider-runnable-track { height: 2px; background: var(--border); border-radius: 2px; }
.range::-moz-range-track { height: 2px; background: var(--border); border-radius: 2px; }
.range::-webkit-slider-thumb {
  appearance: none; width: 15px; height: 15px; margin-top: -6.5px;
  background: var(--olive-ink); border-radius: 2px;
  transition: box-shadow 0.2s var(--ease);
}
.range::-moz-range-thumb {
  width: 15px; height: 15px; border: 0;
  background: var(--olive-ink); border-radius: 2px;
}
.range:hover::-webkit-slider-thumb { box-shadow: 0 0 0 6px var(--olive-glow); }
.range:focus-visible::-webkit-slider-thumb { box-shadow: 0 0 0 6px var(--olive-glow); }

.form-note { font-size: var(--t-micro); color: var(--muted); line-height: 1.6; }
.form-status {
  padding: 16px 18px; border-radius: var(--r-btn);
  border: 1px solid var(--olive-line); background: rgba(72, 87, 48, 0.18);
  font-size: var(--t-small);
  display: none;
}
.form-status.is-shown { display: block; }


/* --- Contact / enquiry ---------------------------------------------------
   The form takes the wider column; the supporting column stays a quiet
   margin note beside it. Collapses one breakpoint earlier than .grid--split
   because two-up form fields need the room before the columns do.
   ------------------------------------------------------------------------ */
.grid--split-form { grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr); }

.enquiry .grid--2 { gap: 20px 24px; }
.field__opt { font-weight: 400; color: var(--text-2); }
.enquiry__foot {
  display: flex; flex-wrap: wrap; align-items: center;
  gap: 14px 24px;
  padding-top: 6px;
}
.enquiry__foot .form-note .req { color: var(--olive-ink); }
.enquiry .form-status { margin-top: -6px; }

.enquiry__aside { position: sticky; top: calc(var(--header-h) + 40px); }

/* Who gets in touch, and why — hairline rows, same language as .specrows */
.routes { border-top: 1px solid var(--border); }
.route {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}
.route__ico { color: var(--olive-ink); }
.route__ico svg { width: 22px; height: 22px; }
.route__title { font-size: 1rem; font-weight: 600; letter-spacing: -0.01em; margin-bottom: 5px; }
.route__body { font-size: var(--t-small); color: var(--text-2); line-height: 1.55; }

@media (max-width: 1000px) {
  .grid--split-form { grid-template-columns: minmax(0, 1fr); gap: clamp(48px, 8vw, 72px); }
  .enquiry__aside { position: static; }
}

/* --- Prose (long-form copy blocks) --------------------------------------- */
.prose p { color: var(--text-2); max-width: var(--maxw-text); }
.prose p + p { margin-top: 18px; }
.prose strong { color: var(--text); font-weight: 500; }

/* --- Lineage: two parent businesses resolving into one brand -------------
   Used on the About page. Reads as a single-line diagram: two origins,
   a junction, one outcome. Olive appears only as hairline and node.       */
.lineage__pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 2.6vw, 36px);
}
.origin {
  position: relative;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  background: var(--surface);
  padding: clamp(26px, 3vw, 40px);
  transition: border-color 0.34s var(--ease), background-color 0.34s var(--ease);
}
.section--surface .origin { background: #131313; }
.origin:hover { border-color: var(--olive-line); }
.origin__tag { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; }
.origin__tag::before { content: ''; width: 22px; height: 1px; background: var(--olive-line); flex: none; }
.origin__name { margin-bottom: 14px; }
.origin__body { color: var(--text-2); font-size: var(--t-small); line-height: 1.6; }
.origin__foot { margin-top: auto; padding-top: clamp(24px, 3vw, 34px); }
.origin__foot .hr { margin-bottom: 22px; }
.origin__tags { display: flex; flex-wrap: wrap; gap: 8px; }
.origin__fig { display: flex; align-items: baseline; gap: 16px; flex-wrap: wrap; }
.origin__fig-n {
  font-size: clamp(2.5rem, 1.9rem + 2.4vw, 3.5rem);
  font-weight: 600; line-height: 1; letter-spacing: -0.035em;
  font-variant-numeric: tabular-nums;
}
.origin__fig-n .u { color: var(--olive-ink); }
.origin__fig-c {
  font-size: var(--t-micro); letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--text-2); line-height: 1.45; max-width: 21ch;
}

.lineage__join { position: relative; height: clamp(58px, 7vw, 104px); }
.lineage__join span { position: absolute; background: var(--olive-line); display: block; }
.lineage__join .j-v { width: 1px; top: 0; height: 50%; }
.lineage__join .j-v--l { left: 25%; }
.lineage__join .j-v--r { left: 75%; }
.lineage__join .j-h { left: 25%; right: 25%; top: 50%; height: 1px; }
.lineage__join .j-drop { left: 50%; top: 50%; bottom: 0; width: 1px; }
.lineage__join .j-node {
  left: 50%; top: 50%; width: 7px; height: 7px;
  margin: -3px 0 0 -3px; background: var(--olive-ink); border-radius: 1px;
}

.merge {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: clamp(26px, 4vw, 64px);
  align-items: center;
  border: 1px solid var(--olive-line);
  border-radius: var(--r-card);
  background: var(--surface);
  padding: clamp(28px, 3.4vw, 52px);
}
.section--surface .merge { background: #131313; }
.merge__mark { color: var(--olive-ink); width: clamp(150px, 17vw, 220px); }
.merge__mark svg { width: 100%; height: auto; display: block; }
.merge__cap { margin-top: 14px; }

@media (max-width: 760px) {
  .lineage__pair { grid-template-columns: minmax(0, 1fr); gap: 0; }
  .lineage__pair .origin + .origin { margin-top: clamp(52px, 12vw, 72px); }
  /* keep the diagram legible once the pair stacks */
  .lineage__pair .origin + .origin::before {
    content: '';
    position: absolute;
    left: 50%; width: 1px;
    top: calc(-1 * clamp(52px, 12vw, 72px));
    height: clamp(52px, 12vw, 72px);
    background: var(--olive-line);
  }
  .lineage__join .j-v, .lineage__join .j-h { display: none; }
  .lineage__join .j-drop { top: 0; }
  .merge { grid-template-columns: minmax(0, 1fr); }
}


/* --- Bordered statement block ------------------------------------------- */
.statement {
  position: relative;
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  background: var(--bg);
  padding: clamp(30px, 4.4vw, 68px);
}
.statement__key {
  margin-top: clamp(26px, 3vw, 38px);
  padding-top: clamp(26px, 3vw, 38px);
  border-top: 1px solid var(--olive-line);
  font-size: clamp(1.5rem, 1.1rem + 1.5vw, 2.25rem);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.02em;
  max-width: 24ch;
}
.statement__names { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.statement__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 76px);
  align-items: start;
}
@media (max-width: 880px) { .statement__grid { grid-template-columns: minmax(0, 1fr); } }

/* --- Tile: compact bordered item — one icon, one line. For sector sets. -- */
.tile {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px clamp(18px, 2vw, 24px);
  border: 1px solid var(--border);
  border-radius: var(--r-btn);
  font-size: var(--t-small);
  font-weight: 500;
  line-height: 1.35;
  transition: border-color 0.34s var(--ease), background-color 0.34s var(--ease);
}
.tile .ico { width: 22px; height: 22px; color: var(--olive-ink); }
.tile:hover { border-color: var(--olive-line); background: var(--surface-2); }

/* --- Pull statement -------------------------------------------------------
   One sentence lifted out of the flow, marked by a single olive hairline —
   never a coloured panel behind copy. Works either as the text element
   itself (<p class="pull">) or as a wrapper around one (<div class="pull">).
   -------------------------------------------------------------------------- */
.pull {
  border-left: 1px solid var(--olive-line);
  padding: 6px 0 6px clamp(18px, 2.2vw, 28px);
  font-size: var(--t-sub);
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: -0.015em;
  max-width: 40ch;
}

/* --- Chip row ------------------------------------------------------------- */
.chiprow { display: flex; flex-wrap: wrap; gap: 10px; }

/* Long CTA labels wrap rather than run past the gutter on narrow screens ---- */
@media (max-width: 560px) {
  .btn--lg { white-space: normal; text-align: center; padding-inline: 24px; }
}
