/* ============================================================
   Path & Purpose — Brand-locked stylesheet
   Fonts: Anton (display) · Thabit (body & UI)
   Palette: Off-white / Soft Blue Grey / Steel Blue / Deep Navy /
            Charcoal / Black + 4 official gradients.
   ============================================================ */

:root {
  /* Brand palette */
  --black: #040402;
  --charcoal: #171716;
  --soft-blue: #a1b3bf;
  --steel-blue: #4b659d;
  --deep-navy: #1a2356;
  --off-white: #ededE6;

  --bg: var(--off-white);
  --bg-elev: #f5f4ee;
  --ink: var(--black);
  --ink-2: var(--charcoal);
  --muted: #5a5a58;
  --line: rgba(4, 4, 2, 0.12);
  --line-soft: rgba(4, 4, 2, 0.06);

  /* Brand gradients */
  --grad-01: linear-gradient(180deg, #ededE6 0%, #040402 100%);
  --grad-02: linear-gradient(180deg, #ededE6 0%, #a1b3bf 50%, #040402 100%);
  --grad-03: linear-gradient(180deg, #ededE6 0%, #4b659d 55%, #040402 100%);
  --grad-04: linear-gradient(180deg, #ededE6 0%, #1a2356 55%, #040402 100%);

  /* Type */
  --f-display: "Anton", "Helvetica Neue", Arial, sans-serif;
  --f-body: "Thabit", ui-monospace, "Menlo", "Consolas", monospace;

  /* Rhythm */
  --maxw: 1340px;
  --gutter: clamp(20px, 4vw, 64px);
  --radius: 18px;
  --radius-sm: 10px;

  /* Motion */
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
}

/* ----------- reset ----------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: var(--f-body);
  font-weight: 400;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img,
svg {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
  cursor: pointer;
  background: none;
  border: 0;
  color: inherit;
}
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}
::selection {
  background: var(--deep-navy);
  color: var(--off-white);
}

/* Accessibility helpers */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  padding: 12px 20px;
  background: var(--ink);
  color: var(--off-white);
  font-family: var(--f-body);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.skip-link:focus {
  left: 16px;
  top: 16px;
}
*:focus-visible {
  outline: 2px solid var(--steel-blue);
  outline-offset: 3px;
  border-radius: 4px;
}
.btn:focus-visible,
.nav__cta:focus-visible {
  outline-offset: 4px;
}

/* ----------- shared section primitives ----------- */
.section {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(80px, 11vw, 150px) var(--gutter);
}
.section__head {
  max-width: 820px;
  margin-bottom: clamp(36px, 5vw, 64px);
}
.section__title {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(28px, 3.6vw, 52px);
  line-height: 1.05;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin: 18px 0 0;
}
.section__lede {
  margin-top: 22px;
  color: var(--ink-2);
  font-size: clamp(15px, 1.25vw, 17px);
  max-width: 64ch;
}
.eyebrow {
  font-family: var(--f-body);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0;
}

/* ----------- navigation ----------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px var(--gutter);
  background: color-mix(in srgb, var(--off-white) 88%, transparent);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), padding 0.3s var(--ease);
}
.nav.is-scrolled {
  border-bottom-color: var(--line);
  padding-top: 12px;
  padding-bottom: 12px;
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--ink);
}
.nav__mark {
  height: 58px;
  width: auto;
  transition: height 0.3s var(--ease);
}
.nav__wordmark {
  height: 14px;
  width: auto;
  transition: height 0.3s var(--ease), opacity 0.3s var(--ease);
}
.nav.is-scrolled .nav__mark {
  height: 48px;
}
.nav.is-scrolled .nav__wordmark {
  height: 12px;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav__links a {
  font-family: var(--f-body);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-2);
  position: relative;
  padding: 6px 0;
  transition: color 0.2s var(--ease);
}
.nav__links a:not(.nav__cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 0;
  height: 1px;
  background: var(--ink);
  transition: width 0.3s var(--ease);
}
.nav__links a:hover {
  color: var(--ink);
}
.nav__links a:hover::after {
  width: 100%;
}
.nav__cta {
  background: var(--ink);
  color: var(--off-white) !important;
  padding: 11px 20px !important;
  border-radius: 100px;
  letter-spacing: 0.12em;
  transition: transform 0.2s var(--ease), background 0.2s var(--ease);
}
.nav__cta:hover {
  transform: translateY(-1px);
  background: var(--deep-navy);
}
.nav__toggle {
  display: none;
  width: 52px;
  height: 52px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  border-radius: 100px;
  transition: background 0.2s var(--ease);
}
.nav__toggle:hover {
  background: rgba(4, 4, 2, 0.04);
}
.nav__toggle span {
  width: 24px;
  height: 1.5px;
  background: var(--ink);
  transition: transform 0.3s var(--ease), opacity 0.2s var(--ease);
}
.nav__toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.nav__toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav__toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 64px 0 0;
  z-index: 45;
  background: var(--off-white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 32px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease),
    visibility 0s linear 0.3s;
}
.mobile-menu:not([hidden]) {
  opacity: 1;
  visibility: visible;
  transform: none;
  transition-delay: 0s, 0s, 0s;
}
.mobile-menu a {
  font-family: var(--f-display);
  font-size: 38px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
}
@media (min-width: 961px) {
  .mobile-menu {
    display: none !important;
  }
}

/* ----------- HERO ----------- */
.hero {
  position: relative;
  background: var(--off-white);
  padding: clamp(20px, 2.8vw, 48px) var(--gutter) clamp(56px, 7vw, 100px);
  overflow: hidden;
}
.hero__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.95fr);
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
}
.hero__col--text {
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 2vw, 26px);
}
.hero__title {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(48px, 7.2vw, 112px);
  line-height: 0.98;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  margin: 0;
}
.hero__title-row {
  display: block;
}
.hero__title em {
  font-style: normal;
  color: var(--steel-blue);
}
.hero__title .amp {
  font-style: normal;
  font-size: 0.7em;
  color: var(--muted);
  margin: 0 0.12em;
  vertical-align: 0.1em;
}
.hero__lede {
  font-size: clamp(15px, 1.25vw, 17px);
  color: var(--ink-2);
  max-width: 56ch;
  margin: 0;
  line-height: 1.65;
}
.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.hero__col--media {
  display: flex;
  justify-content: flex-end;
}
.hero__portrait {
  position: relative;
  width: 100%;
  max-width: 520px;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  overflow: hidden;
  margin: 0;
  background: var(--bg-elev);
}
.hero__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.hero__portrait-caption {
  position: absolute;
  left: 20px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: var(--off-white);
  font-family: var(--f-body);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}
.hero__portrait-caption span:first-child {
  font-family: var(--f-display);
  font-size: 18px;
  letter-spacing: 0.04em;
}

.hero__scroll {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 40px;
  border: 1px solid var(--ink-2);
  border-radius: 100px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}
.hero__scroll span {
  width: 2px;
  height: 8px;
  background: var(--ink-2);
  border-radius: 2px;
  animation: scroll-dot 1.8s var(--ease) infinite;
}
@keyframes scroll-dot {
  0%,
  100% {
    transform: translateY(0);
    opacity: 1;
  }
  50% {
    transform: translateY(8px);
    opacity: 0.3;
  }
}

/* ----------- buttons ----------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 100px;
  font-family: var(--f-body);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease),
    color 0.25s var(--ease), box-shadow 0.25s var(--ease),
    border-color 0.25s var(--ease);
  white-space: nowrap;
}
.btn--solid {
  background: var(--ink);
  color: var(--off-white);
  box-shadow: 0 8px 24px -12px rgba(4, 4, 2, 0.5);
}
.btn--solid:hover {
  background: var(--deep-navy);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -14px rgba(26, 35, 86, 0.55);
}
.btn--ghost {
  border: 1px solid var(--ink);
  color: var(--ink);
  background: transparent;
}
.btn--ghost:hover {
  background: var(--ink);
  color: var(--off-white);
  transform: translateY(-2px);
}

/* ----------- trust strip ----------- */
.trust {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 32px var(--gutter);
  text-align: center;
  background: var(--bg-elev);
}
.trust__label {
  font-family: var(--f-body);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 16px;
}
.trust__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 24px;
  font-family: var(--f-display);
  font-size: clamp(16px, 1.8vw, 22px);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-2);
}
.trust__row .dot {
  color: var(--soft-blue);
}

/* ----------- ABOUT ----------- */
.about__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
.about__head {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
}
.about__head .section__title {
  margin-bottom: 36px;
}
.about__copy p {
  font-size: clamp(15px, 1.2vw, 17px);
  color: var(--ink-2);
  margin: 0 0 22px;
  line-height: 1.75;
  text-align: justify;
  hyphens: auto;
  -webkit-hyphens: auto;
}
.about__copy p:last-child {
  margin-bottom: 0;
}
.about__copy p em {
  color: var(--ink);
  font-style: normal;
  background: var(--off-white);
  box-shadow: inset 0 -0.4em 0 0 color-mix(in srgb, var(--soft-blue) 55%, transparent);
}
.about__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: clamp(48px, 6vw, 80px);
  padding-top: clamp(32px, 3.5vw, 48px);
  border-top: 1px solid var(--line);
}
.about__stats li {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.about__stats-num {
  display: block;
  font-family: var(--f-display);
  font-size: clamp(40px, 4.6vw, 64px);
  line-height: 1;
  color: var(--ink);
  letter-spacing: 0.02em;
}
.about__stats-label {
  font-family: var(--f-body);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ----------- FOUNDER ----------- */
.founder {
  margin-top: clamp(48px, 6vw, 80px);
  padding-top: clamp(40px, 4vw, 56px);
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
.founder__head {
  display: flex;
  flex-direction: column;
}
.founder__title {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(26px, 2.8vw, 40px);
  line-height: 1.05;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin: 14px 0 0;
  color: var(--ink);
}
.founder__body p {
  font-size: clamp(15px, 1.2vw, 17px);
  color: var(--ink-2);
  line-height: 1.75;
  margin: 0 0 28px;
  text-align: justify;
  hyphens: auto;
  -webkit-hyphens: auto;
}
.founder__skills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.founder__skills li {
  font-family: var(--f-body);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--steel-blue);
  padding: 7px 14px;
  border: 1px solid color-mix(in srgb, var(--steel-blue) 30%, transparent);
  border-radius: 100px;
  background: color-mix(in srgb, var(--steel-blue) 5%, transparent);
}

/* ----------- SERVICES (full-bleed dark) ----------- */
.services {
  background: var(--deep-navy);
  color: var(--off-white);
  max-width: none;
  margin: 0;
  padding-left: 0;
  padding-right: 0;
  position: relative;
  overflow: hidden;
}
.services::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 75% 55% at 50% 0%,
    rgba(75, 101, 157, 0.4) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.services .section__head,
.services__grid {
  position: relative;
  max-width: var(--maxw);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
.services .section__head {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 80px);
  align-items: end;
  max-width: var(--maxw);
}
.services .section__head > .eyebrow,
.services .section__head > .section__title {
  grid-column: 1;
}
.services .section__head > .section__title {
  margin-top: 14px;
  color: var(--off-white);
}
.services .eyebrow {
  color: rgba(237, 237, 230, 0.6);
}
.services .section__head > .section__lede {
  grid-column: 2;
  grid-row: 1 / span 2;
  margin-top: 0;
  align-self: end;
  padding-bottom: 4px;
  color: rgba(237, 237, 230, 0.78);
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.service {
  background: rgba(237, 237, 230, 0.04);
  border-radius: var(--radius);
  padding: clamp(28px, 3vw, 40px);
  border: 1px solid rgba(237, 237, 230, 0.14);
  transition: transform 0.4s var(--ease), background 0.4s var(--ease),
    border-color 0.4s var(--ease), box-shadow 0.4s var(--ease),
    color 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}
.service::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    transparent 55%,
    rgba(75, 101, 157, 0.18)
  );
  pointer-events: none;
  border-radius: var(--radius);
  transition: opacity 0.4s var(--ease);
}
.service:hover {
  transform: translateY(-4px);
  background: var(--off-white);
  border-color: var(--off-white);
  box-shadow: 0 30px 60px -30px rgba(0, 0, 0, 0.5);
}
.service:hover::before {
  opacity: 0;
}
.service:hover .service__num,
.service:hover h3 {
  color: var(--ink);
}
.service:hover p,
.service:hover ul li {
  color: var(--ink-2);
}
.service:hover ul {
  border-top-color: var(--line-soft);
}
.service:hover ul li::before {
  color: var(--steel-blue);
}
.service__num {
  font-family: var(--f-body);
  font-size: 12px;
  letter-spacing: 0.2em;
  color: rgba(237, 237, 230, 0.6);
  transition: color 0.4s var(--ease);
}
.service h3 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.05;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin: 14px 0 12px;
  color: var(--off-white);
  transition: color 0.4s var(--ease);
}
.service p {
  color: rgba(237, 237, 230, 0.78);
  margin: 0 0 20px;
  font-size: 14.5px;
  line-height: 1.65;
  transition: color 0.4s var(--ease);
}
.service ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 16px;
  border-top: 1px solid rgba(237, 237, 230, 0.14);
  transition: border-top-color 0.4s var(--ease);
}
.service ul li {
  font-family: var(--f-body);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: rgba(237, 237, 230, 0.85);
  padding-left: 18px;
  position: relative;
  transition: color 0.4s var(--ease);
}
.service ul li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--soft-blue);
  transition: color 0.4s var(--ease);
}

/* ----------- APPROACH (light) ----------- */
.approach__steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 3vw, 56px);
}
.approach__steps li {
  padding-top: 26px;
  border-top: 1px solid var(--ink);
  position: relative;
}
.approach__num {
  font-family: var(--f-body);
  font-size: 12px;
  letter-spacing: 0.22em;
  color: var(--muted);
  position: absolute;
  top: -22px;
  left: 0;
  background: var(--off-white);
  padding-right: 12px;
}
.approach__steps h3 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(24px, 2.4vw, 36px);
  line-height: 1.05;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin: 0 0 14px;
  color: var(--ink);
}
.approach__steps p {
  color: var(--ink-2);
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
}
.approach__steps p em {
  font-style: normal;
  color: var(--ink);
  background: var(--off-white);
  box-shadow: inset 0 -0.4em 0 0 color-mix(in srgb, var(--soft-blue) 55%, transparent);
}

/* ----------- VOICES / Testimonials ----------- */
.voices {
  background: var(--bg-elev);
  max-width: none;
  margin: 0;
  padding-left: 0;
  padding-right: 0;
}
.voices .section__head,
.voices__grid {
  max-width: var(--maxw);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
.voices__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.quote {
  margin: 0;
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 36px 32px 28px;
  border: 1px solid var(--line-soft);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}
.quote::before {
  content: "\201C";
  position: absolute;
  top: 6px;
  left: 22px;
  font-family: var(--f-display);
  font-size: 86px;
  line-height: 1;
  color: var(--soft-blue);
  pointer-events: none;
}
.quote blockquote {
  margin: 24px 0 0;
  font-family: var(--f-body);
  font-size: clamp(14px, 1.15vw, 16px);
  line-height: 1.7;
  color: var(--ink);
}
.quote figcaption {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid var(--line-soft);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-family: var(--f-body);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.quote figcaption strong {
  color: var(--ink);
  font-weight: 400;
  font-family: var(--f-display);
  font-size: 20px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ----------- CONTACT ----------- */
.contact {
  position: relative;
  text-align: center;
  background: var(--black);
  color: var(--off-white);
  max-width: none;
  margin: 0;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  overflow: hidden;
}
.contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 70% 60% at 50% 0%,
    rgba(75, 101, 157, 0.55) 0%,
    rgba(26, 35, 86, 0.3) 40%,
    transparent 75%
  );
  pointer-events: none;
}
.contact .eyebrow {
  color: rgba(237, 237, 230, 0.65);
}
.contact__inner {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}
.contact__title {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(40px, 5.2vw, 72px);
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin: 16px 0 24px;
  color: var(--off-white);
}
.contact__title em {
  font-style: normal;
  color: var(--soft-blue);
}
.contact__lede {
  color: var(--off-white);
  font-size: clamp(15px, 1.25vw, 17px);
  margin: 0 auto 36px;
  max-width: 56ch;
  line-height: 1.7;
}
.contact__actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.contact .btn--solid {
  background: var(--off-white);
  color: var(--ink);
  box-shadow: 0 8px 24px -12px rgba(0, 0, 0, 0.7);
}
.contact .btn--solid:hover {
  background: var(--soft-blue);
  color: var(--ink);
}
.contact .btn--ghost {
  border-color: var(--off-white);
  color: var(--off-white);
}
.contact .btn--ghost:hover {
  background: var(--off-white);
  color: var(--ink);
}

/* ----------- BRAND OUTRO ----------- */
.brand-outro {
  background: var(--black);
  padding: clamp(28px, 4vw, 52px) var(--gutter);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid rgba(237, 237, 230, 0.08);
  overflow: hidden;
}
.brand-outro__mark {
  height: clamp(22px, 2.6vw, 36px);
  width: auto;
  max-width: 100%;
  filter: invert(1) brightness(1.06);
  opacity: 0.96;
}
.brand-outro__tag {
  font-family: var(--f-body);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(237, 237, 230, 0.5);
  margin: 0;
}

/* ----------- FOOTER ----------- */
.footer {
  background: var(--black);
  color: var(--off-white);
  padding: clamp(24px, 3vw, 36px) var(--gutter);
}
.footer__bottom {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-family: var(--f-body);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(237, 237, 230, 0.5);
}
.footer__social {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(237, 237, 230, 0.25);
  border-radius: 50%;
  color: rgba(237, 237, 230, 0.75);
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease),
    background 0.2s var(--ease), transform 0.2s var(--ease);
}
.footer__icon svg {
  width: 16px;
  height: 16px;
}
.footer__icon:hover {
  color: var(--ink);
  background: var(--off-white);
  border-color: var(--off-white);
  transform: translateY(-1px);
}

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

/* ----------- responsive ----------- */
@media (max-width: 960px) {
  .nav__links {
    display: none;
  }
  .nav__toggle {
    display: flex;
  }
  .hero__inner {
    grid-template-columns: 1fr;
  }
  .hero__col--media {
    justify-content: center;
    order: -1;
  }
  .hero__portrait {
    max-width: 440px;
  }
  .about__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .about__head {
    position: static;
  }
  .about__head .section__title {
    margin-bottom: 24px;
  }
  .founder {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .services .section__head {
    grid-template-columns: 1fr;
    gap: 20px;
    align-items: start;
  }
  .services .section__head > .section__lede {
    grid-column: 1;
    grid-row: auto;
  }
  .services__grid,
  .approach__steps,
  .voices__grid {
    grid-template-columns: 1fr;
  }
  .approach__steps li {
    padding-top: 24px;
  }
  .hero__scroll {
    display: none;
  }
}

@media (max-width: 540px) {
  .hero {
    padding-top: 32px;
  }
  .hero__title {
    font-size: clamp(40px, 12vw, 64px);
  }
  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }
  .hero__actions .btn {
    justify-content: center;
  }
  .about__stats {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .contact__actions {
    flex-direction: column;
    align-items: stretch;
  }
  .contact__actions .btn {
    justify-content: center;
  }
  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }
  .nav__mark {
    height: 48px;
  }
  .nav__wordmark {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}
