/* ==========================================================================
   Multi Bev Co - shared styles
   Tokens, typography, buttons and form styles per Master Build Spec (sec 2-5).
   Mobile-first at 390px, responsive to 1440px. Type scales ~20% up at desktop.
   ========================================================================== */

/* ----- Design tokens (spec section 2) ----- */
:root {
  /* Backgrounds */
  --color-bg-dark: #1a1814;
  --color-bg-mid: #222018;
  --color-bg-light: #f5f0e8;
  --color-bg-card-dark: #2a2820;

  /* Accents */
  --color-accent-primary: #D4922A;
  --color-accent-card: #C99A45;

  /* Text */
  --color-text-primary-light: #ffffff;
  --color-text-primary-dark: #1a1814;
  --color-text-muted: #8a7d6a;
  --color-text-accent: #D4922A;

  /* Lines */
  --color-border: rgba(255, 255, 255, 0.15);

  /* Derived, practical helpers (shades of the tokens above) */
  --color-muted-on-light: rgba(26, 24, 20, 0.62);
  --color-border-dark: rgba(26, 24, 20, 0.14);

  --maxw: 1200px;
  --gutter: 24px;
  --header-h: 64px;

  --font: 'DM Sans', 'Inter', system-ui, -apple-system, sans-serif;
}

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

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

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text-primary-light);
  background: var(--color-bg-dark);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a { color: inherit; }

h1, h2, h3, h4, p, ul, ol, figure { margin: 0; }

ul { list-style: none; padding: 0; }

button { font-family: inherit; }

:focus-visible {
  outline: 2px solid var(--color-accent-primary);
  outline-offset: 3px;
}

/* ----- Typography classes (spec section 3) ----- */
.display-hero      { font-size: 38px; font-weight: 300; line-height: 1.15; letter-spacing: -0.01em; }
.heading-section   { font-size: 30px; font-weight: 800; line-height: 1.2; letter-spacing: -0.01em; }
.heading-label     { font-size: 13px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }
.subheading-accent { font-size: 17px; font-weight: 600; color: var(--color-accent-primary); line-height: 1.4; }
.body              { font-size: 16px; font-weight: 400; line-height: 1.6; }
.body-bold         { font-size: 16px; font-weight: 700; }
.caption-label     { font-size: 12px; font-weight: 500; }

/* ----- Layout helpers ----- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.measure { max-width: 340px; }

.section { padding: 56px 0; }
.section--tight { padding: 40px 0; }

.section--dark      { background: var(--color-bg-dark); color: var(--color-text-primary-light); }
.section--mid       { background: var(--color-bg-mid); color: var(--color-text-primary-light); }
.section--card-dark { background: var(--color-bg-card-dark); color: var(--color-text-primary-light); }
.section--light     { background: var(--color-bg-light); color: var(--color-text-primary-dark); }

.text-accent { color: var(--color-accent-primary); }
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

.section--light .heading-label { color: var(--color-muted-on-light); }
.section--dark  .heading-label,
.section--mid   .heading-label,
.section--card-dark .heading-label { color: var(--color-text-muted); }

.muted { color: var(--color-text-muted); }
.section--light .muted { color: var(--color-muted-on-light); }

.stack > * + * { margin-top: 16px; }
.stack-sm > * + * { margin-top: 8px; }

/* ----- Buttons (spec section 4) ----- */
.btn-primary {
  display: inline-block;
  background: var(--color-accent-primary);
  color: #1a1814;
  padding: 13px 30px;
  border-radius: 24px;
  font-weight: 600;
  font-size: 15px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.18s ease, transform 0.18s ease;
}
.btn-primary:hover { background: #e0a23d; }
.btn-primary:active { transform: translateY(1px); }

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--color-accent-primary);
  padding: 13px 30px;
  border-radius: 24px;
  font-weight: 600;
  font-size: 15px;
  border: 1.5px solid var(--color-accent-primary);
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.18s ease, color 0.18s ease;
}
.btn-outline:hover { background: var(--color-accent-primary); color: #1a1814; }

/* ==========================================================================
   Header + navigation
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: transparent;
  transition: background-color 0.25s ease, box-shadow 0.25s ease;
}
.site-header.is-solid {
  background: var(--color-bg-dark);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06);
}

.site-header__inner {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand { display: inline-flex; align-items: center; }
.brand__logo { height: 26px; width: auto; }

/* Desktop inline nav (hidden on mobile) */
.nav-desktop { display: none; }
.nav-desktop ul { display: flex; gap: 30px; align-items: center; }
.nav-desktop a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.01em;
  transition: color 0.15s ease;
}
.nav-desktop a:hover,
.nav-desktop a[aria-current="page"] { color: var(--color-accent-primary); }

/* Hamburger */
.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 9px;
  background: transparent;
  border: none;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: #fff;
  border-radius: 2px;
}

/* Full-screen mobile overlay */
.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  flex-direction: column;
  padding: 22px var(--gutter) 40px;
  background-color: var(--color-bg-dark);
  background-image:
    linear-gradient(rgba(16, 14, 11, 0.86), rgba(16, 14, 11, 0.92)),
    url('assets/images/img-hero-tanks.png');
  background-size: cover;
  background-position: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
}
.nav-overlay.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
body.nav-open { overflow: hidden; }

.nav-overlay__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  margin-bottom: 24px;
}
.nav-overlay__logo { height: 26px; width: auto; }

.nav-close {
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.nav-close svg { width: 26px; height: 26px; }

.nav-overlay nav { margin-top: 12px; }
.nav-overlay ul { display: flex; flex-direction: column; gap: 8px; }
.nav-overlay a {
  display: inline-block;
  text-decoration: none;
  color: #fff;
  font-size: 30px;
  font-weight: 400;
  line-height: 1.5;
  padding: 6px 0;
}
.nav-overlay a:hover,
.nav-overlay a[aria-current="page"] { color: var(--color-accent-primary); }

/* ==========================================================================
   Hero (Home)
   ========================================================================== */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: flex-end;
  padding: calc(var(--header-h) + 40px) 0 56px;
  overflow: hidden;
}
.hero__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(to top, rgba(16, 14, 11, 0.92) 4%, rgba(16, 14, 11, 0.45) 45%, rgba(16, 14, 11, 0.55) 100%);
}
.hero__content { position: relative; max-width: 620px; }
.hero__title { margin-bottom: 16px; }
.hero__tagline {
  color: rgba(255, 255, 255, 0.86);
  max-width: 440px;
  margin-bottom: 28px;
}

/* Warm, slightly desaturated treatment to unify mixed placeholders */
.media-warm { filter: saturate(0.92) contrast(1.02) brightness(0.97); }

/* ==========================================================================
   Logo / proof strip
   ========================================================================== */
.logo-strip { padding: 28px 0; border-bottom: 1px solid var(--color-border); }
.logo-strip__label {
  text-align: center;
  color: var(--color-text-muted);
  margin-bottom: 18px;
}
.logo-strip__track {
  display: flex;
  gap: 28px;
  align-items: center;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: none;
}
.logo-strip__track::-webkit-scrollbar { display: none; }
.logo-chip {
  flex: 0 0 auto;
  height: 30px;
  min-width: 104px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.55);
  border: 1px solid var(--color-border);
  border-radius: 6px;
  padding: 0 18px;
  font-weight: 700;
  letter-spacing: 0.08em;
  font-size: 13px;
  text-transform: uppercase;
}

/* ==========================================================================
   Centred intro / section heading block
   ========================================================================== */
.intro-block { max-width: 680px; }
.intro-block .heading-section { margin-bottom: 14px; }

/* ==========================================================================
   Stat band
   ========================================================================== */
.stats { display: grid; gap: 28px; margin-top: 36px; }
.stat__title {
  color: var(--color-accent-primary);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.stat__body { font-size: 15px; }
.section--light .stat__body { color: var(--color-muted-on-light); }

/* ==========================================================================
   Feature cards (Home)
   ========================================================================== */
.feature-grid { display: grid; gap: 20px; }
.feature-card {
  background: var(--color-bg-card-dark);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 28px 24px;
}
.feature-card__title { margin-bottom: 8px; }
.feature-card__lead { color: rgba(255, 255, 255, 0.78); font-size: 15px; margin-bottom: 18px; }
.feature-card .btn-outline { margin-top: 22px; }

/* ----- Checklist (amber circle-check) ----- */
.checklist { display: flex; flex-direction: column; gap: 12px; }
.checklist li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  align-items: start;
}
.checklist svg { width: 22px; height: 22px; margin-top: 1px; flex: 0 0 auto; }
.check-title { font-weight: 600; font-size: 15px; }
.check-desc { color: var(--color-text-muted); font-size: 14px; display: block; margin-top: 2px; }
.section--light .check-desc { color: var(--color-muted-on-light); }

/* ==========================================================================
   Section banner (full-bleed image + gradient + label)
   ========================================================================== */
.banner {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 62vh;
  padding: calc(var(--header-h) + 48px) 0 44px;
  overflow: hidden;
  color: #fff;
}
.banner__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}
.banner::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to top, rgba(16, 14, 11, 0.9) 6%, rgba(16, 14, 11, 0.4) 60%, rgba(16, 14, 11, 0.5) 100%);
}
.banner__content { position: relative; max-width: 620px; }
.banner__label { margin-bottom: 14px; color: var(--color-accent-primary); }
.banner__blurb { color: rgba(255, 255, 255, 0.88); max-width: 460px; }
.banner__heading { margin-bottom: 14px; }

/* ==========================================================================
   Founder card (Who We Are)
   ========================================================================== */
.founder { display: grid; gap: 24px; }
.founder__portrait {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--color-accent-card);
}
.founder__label { color: var(--color-accent-primary); margin-bottom: 6px; }
.founder__name { margin-bottom: 14px; }
.founder__bio { color: rgba(255, 255, 255, 0.82); margin-bottom: 24px; }

/* ==========================================================================
   Step cards (Our Process)
   ========================================================================== */
.steps { display: grid; gap: 16px; margin-top: 32px; }
.step-card {
  border: 1px solid var(--color-border-dark);
  border-radius: 14px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.4);
}
.step-card__num { color: var(--color-muted-on-light); margin-bottom: 10px; letter-spacing: 0.12em; }
.step-card__title { font-size: 19px; font-weight: 700; margin-bottom: 6px; }
.step-card__body { color: var(--color-muted-on-light); font-size: 15px; }

.step-card--featured {
  background: var(--color-accent-card);
  border-color: var(--color-accent-card);
  color: #1a1814;
}
.step-pill {
  display: inline-block;
  background: #1a1814;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}
.step-card--featured .step-card__title { font-size: 24px; font-weight: 800; }
.step-card--featured .step-card__body { color: rgba(26, 24, 20, 0.78); font-size: 16px; }

/* ==========================================================================
   Accordion (Our Capabilities)
   ========================================================================== */
.accordion { display: grid; gap: 14px; margin-top: 24px; }
.accordion__item {
  background: var(--color-bg-card-dark);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  overflow: hidden;
}
.accordion__header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  background: transparent;
  border: none;
  color: #fff;
  cursor: pointer;
  text-align: left;
}
.accordion__header .heading-label { color: #fff; }
.accordion__icon {
  position: relative;
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
}
.accordion__icon::before,
.accordion__icon::after {
  content: "";
  position: absolute;
  background: var(--color-accent-primary);
  border-radius: 2px;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.accordion__icon::before { top: 10px; left: 0; width: 22px; height: 2px; }
.accordion__icon::after  { top: 0; left: 10px; width: 2px; height: 22px; }
.accordion__header[aria-expanded="true"] .accordion__icon::after { opacity: 0; transform: rotate(90deg); }

.accordion__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.28s ease;
}
.accordion__panel-inner { overflow: hidden; }
.accordion__item.is-open .accordion__panel { grid-template-rows: 1fr; }

.accordion__intro {
  padding: 0 22px 4px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}
.accordion__rows { padding: 4px 22px 20px; }
.accordion__rows li {
  padding: 13px 0;
  border-top: 1px solid var(--color-border);
  font-size: 15px;
  color: rgba(255, 255, 255, 0.9);
}
.accordion__rows li:first-child { border-top: none; }
.accordion__rows strong { color: #fff; }
.accordion__note {
  padding: 6px 22px 20px;
  color: var(--color-text-muted);
  font-size: 13px;
}

/* Capability section block (image + heading + accordions) */
.cap-block { display: grid; gap: 20px; }
.cap-block__media {
  width: 100%;
  border-radius: 14px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.cap-block__title { margin-bottom: 8px; }
.cap-block__sub { margin-bottom: 14px; }
.cap-extra { margin-top: 18px; }
.cap-extra h3 { font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.cap-extra p { font-size: 15px; margin-bottom: 4px; }

/* Generic media + copy two-up (product development, etc.) */
.media-copy { display: grid; gap: 24px; }
.media-copy__img {
  width: 100%;
  border-radius: 14px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

/* ==========================================================================
   Forms (spec sections 4 + 11)
   ========================================================================== */
.form-block { max-width: 560px; }
.form-block__heading { margin-bottom: 8px; }
.form-block__sub { color: rgba(255, 255, 255, 0.7); margin-bottom: 28px; }

.brief-form { display: grid; gap: 22px; }
.form-grid { display: grid; gap: 22px; }

.form-field { display: flex; flex-direction: column; }
.form-field > label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 6px;
}
.req { color: var(--color-accent-primary); }

.form-input,
.form-select,
.form-textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  font-size: 16px;
  font-family: inherit;
  padding: 12px 0;
  width: 100%;
  outline: none;
  transition: border-color 0.18s ease;
}
.form-input::placeholder,
.form-textarea::placeholder { color: rgba(255, 255, 255, 0.4); }
.form-input:focus,
.form-select:focus,
.form-textarea:focus { border-bottom-color: var(--color-accent-primary); }
.form-textarea { resize: vertical; min-height: 92px; }

.form-select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9'%3E%3Cpath d='M1 1l6 6 6-6' stroke='%23D4922A' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 2px center;
  padding-right: 26px;
  cursor: pointer;
}
.form-select option { background: var(--color-bg-card-dark); color: #fff; }

/* Checkbox group */
.checkbox-group > span.group-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 12px;
}
.checkbox-options { display: flex; flex-wrap: wrap; gap: 10px; }
.checkbox-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 22px;
  padding: 9px 16px;
  font-size: 14px;
  cursor: pointer;
  user-select: none;
  transition: border-color 0.15s ease, background-color 0.15s ease;
}
.checkbox-pill input {
  appearance: none;
  -webkit-appearance: none;
  width: 16px;
  height: 16px;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  border-radius: 5px;
  margin: 0;
  cursor: pointer;
  position: relative;
  flex: 0 0 auto;
}
.checkbox-pill input:checked {
  background: var(--color-accent-primary);
  border-color: var(--color-accent-primary);
}
.checkbox-pill input:checked::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 1px;
  width: 5px;
  height: 9px;
  border: solid #1a1814;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.checkbox-pill:has(input:checked) {
  border-color: var(--color-accent-primary);
  background: rgba(212, 146, 42, 0.12);
}

/* Honeypot - visually hidden but reachable to bots */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }

.form-success {
  display: none;
  border: 1px solid var(--color-accent-primary);
  background: rgba(212, 146, 42, 0.1);
  border-radius: 12px;
  padding: 20px 22px;
  color: #fff;
  font-size: 16px;
  line-height: 1.5;
}
.form-success.is-visible { display: block; }
.form-error {
  display: none;
  color: #f0b6b6;
  font-size: 14px;
  margin-top: 4px;
}
.form-error.is-visible { display: block; }

/* ==========================================================================
   Contact details block
   ========================================================================== */
.contact-details { display: grid; gap: 26px; margin-top: 8px; }
.contact-detail__label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 6px;
}
.contact-detail__value { font-size: 17px; }
.contact-detail__value a { text-decoration: none; color: #fff; }
.contact-detail__value a:hover { color: var(--color-accent-primary); }

/* ==========================================================================
   Privacy policy content
   ========================================================================== */
.policy { max-width: 760px; }
.policy__updated {
  color: var(--color-muted-on-light);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 8px 0 28px;
}
.policy p { margin-bottom: 16px; }
.policy h2 {
  font-size: 19px;
  font-weight: 800;
  margin: 30px 0 10px;
}
.policy ul { margin: 0 0 16px; padding-left: 0; }
.policy ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
}
.policy ul li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-accent-primary);
}
.policy strong { font-weight: 700; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: var(--color-bg-dark);
  border-top: 1px solid var(--color-border);
  padding: 44px 0 28px;
  text-align: center;
}
.site-footer__logo { height: 40px; width: auto; margin: 0 auto 28px; }
.site-footer__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid var(--color-border);
  padding-top: 20px;
  font-size: 14px;
  color: var(--color-text-muted);
}
.site-footer__bar a { text-decoration: none; color: var(--color-text-muted); }
.site-footer__bar a:hover { color: var(--color-accent-primary); }

/* ==========================================================================
   Generic page-section CTA row
   ========================================================================== */
.cta-row { margin-top: 30px; display: flex; gap: 16px; flex-wrap: wrap; }
.lead-tight { max-width: 640px; }

/* 404 */
.error-page {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px var(--gutter) 80px;
}

/* ==========================================================================
   Responsive - tablet / desktop (type scales up ~20%, multi-column)
   ========================================================================== */
@media (min-width: 768px) {
  :root { --header-h: 80px; --gutter: 40px; }

  .display-hero      { font-size: 60px; }
  .heading-section   { font-size: 38px; }
  .subheading-accent { font-size: 20px; }
  .body              { font-size: 17px; }
  .heading-label     { font-size: 14px; }

  .section { padding: 88px 0; }
  .measure { max-width: 640px; }

  .nav-desktop { display: block; }
  .nav-toggle { display: none; }

  .brand__logo, .nav-overlay__logo { height: 32px; }

  .hero { min-height: 92vh; }
  .hero__title { margin-bottom: 20px; }

  .stats { grid-template-columns: repeat(3, 1fr); gap: 36px; }
  .feature-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .feature-card { padding: 36px 32px; }

  .founder { grid-template-columns: 200px 1fr; align-items: center; gap: 40px; }
  .founder__portrait { width: 200px; height: 200px; }

  .steps { grid-template-columns: 1fr 1fr; gap: 20px; }
  .step-card--featured { grid-column: 1 / -1; }

  .cap-block { grid-template-columns: 1fr 1fr; align-items: start; gap: 40px; }
  .cap-block__media { position: sticky; top: 100px; }
  .media-copy { grid-template-columns: 1fr 1fr; align-items: center; gap: 44px; }
  .media-copy--reverse .media-copy__img { order: 2; }

  .form-grid--2 { grid-template-columns: 1fr 1fr; }

  .banner { min-height: 56vh; }

  .site-footer__logo { height: 52px; }
}

@media (min-width: 1024px) {
  .display-hero { font-size: 68px; }
  .heading-section { font-size: 42px; }
  .hero__content, .banner__content { max-width: 700px; }
}

/* Respect reduced-motion preferences */
@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition-duration: 0.01ms !important; }
}
