/* css/styles.css */

/* ===========================
   Telos Ops - Base + Theme
   No Tailwind. Pure CSS.
   =========================== */

:root {
  --forest: #0a3d2f;
  --forest-2: #073428;
  --gold: #d4af37;
  --gold-2: #c79f27;
  --charcoal: #1c2526;
  --offwhite: #f8f5f0;
  --white: #ffffff;

  --text: #1c2526;
  --muted: rgba(28, 37, 38, 0.68);
  --muted-2: rgba(28, 37, 38, 0.55);

  --shadow-sm: 0 10px 20px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 18px 40px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 26px 60px rgba(0, 0, 0, 0.20);

  --radius-lg: 22px;
  --radius-xl: 28px;
  --radius-2xl: 34px;

  --container: 1280px;

  --nav-h: 78px;

  /* Motion tokens */
  --ease-out: cubic-bezier(0.2, 0.8, 0.2, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --dur-fast: 260ms;
  --dur: 520ms;
  --dur-slow: 760ms;
}

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

html {
  scroll-behavior: smooth;
}

body.site {
  margin: 0;
  background: var(--offwhite);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  line-height: 1.5;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.hidden {
  display: none !important;
}

/* Optional utility if you ever want it */
.flex {
  display: flex !important;
}

/* Focus states */
:focus-visible {
  outline: 3px solid rgba(212, 175, 55, 0.5);
  outline-offset: 3px;
  border-radius: 10px;
}

/* ===========================
   Motion (Scroll Reveal)
   - JS adds .reveal to sections/cards and toggles .is-in
   =========================== */

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity var(--dur) var(--ease-out),
    transform var(--dur) var(--ease-out);
  will-change: opacity, transform;
}

.reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger support (JS sets style.transitionDelay on elements) */
.reveal[data-reveal="1"] {
  /* no-op hook */
}

/* Hero entrance (JS adds .hero--in to .hero) */
.hero__content,
.hero__visual,
.hero__scroll {
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity var(--dur-slow) var(--ease-out),
    transform var(--dur-slow) var(--ease-out);
  will-change: opacity, transform;
}

.hero--in .hero__content,
.hero--in .hero__visual,
.hero--in .hero__scroll {
  opacity: 1;
  transform: translateY(0);
}

/* Small stagger inside hero without extra markup */
.hero__content .pill {
  transition-delay: 80ms;
}
.hero__content .hero__title {
  transition-delay: 140ms;
}
.hero__content .hero__lede {
  transition-delay: 200ms;
}
.hero__content .hero__cards {
  transition-delay: 260ms;
}
.hero__content .cta-panel {
  transition-delay: 320ms;
}
.hero__visual {
  transition-delay: 220ms;
}
.hero__scroll {
  transition-delay: 420ms;
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal,
  .hero__content,
  .hero__visual,
  .hero__scroll,
  * {
    animation: none !important;
    transition: none !important;
  }
}

/* ===========================
   Layout Helpers
   =========================== */

.container {
  width: min(var(--container), calc(100% - 48px));
  margin-inline: auto;
}

.section {
  padding: 96px 0;
}

.section--white {
  background: var(--white);
}

.section--offwhite {
  background: var(--offwhite);
}

.section--forest {
  background: var(--forest);
  color: var(--white);
}

.section--charcoal {
  background: var(--charcoal);
  color: var(--white);
}

/* Optional use for the new Websites section if you want it to feel slightly distinct */
.section--websites {
  background:
    radial-gradient(900px 500px at 85% 10%, rgba(212, 175, 55, 0.06), transparent 60%),
    var(--white);
}

.section__head {
  margin-bottom: 56px;
}

.section__head--center {
  text-align: center;
  max-width: 900px;
  margin-inline: auto;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
  font-weight: 600;
  color: var(--gold);
}

.eyebrow--gold {
  color: var(--gold);
}

.eyebrow--forest {
  color: var(--forest);
}

.h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(34px, 3.2vw, 52px);
  line-height: 1.05;
  margin: 14px 0 0;
  letter-spacing: -0.02em;
}

.h2--light {
  color: var(--white);
}

.h3 {
  margin: 10px 0 0;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.lede {
  margin: 14px auto 0;
  max-width: 720px;
  color: var(--muted);
  font-size: 18px;
}

.lede--light {
  color: rgba(255, 255, 255, 0.78);
}

.muted {
  color: var(--muted);
  margin: 10px 0 0;
}

/* ===========================
   NAV
   =========================== */

.nav {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--nav-h);
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.18);
}

.nav__inner {
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 180px;
}

/* ✅ FIX: avoid "double logo" in corner.
   - Mobile: show emblem only
   - Desktop: show horizontal lockup only */
.brand__mark {
  height: 38px;
  width: auto;
  filter: drop-shadow(0 10px 12px rgba(0, 0, 0, 0.18));
}

.brand__lockup {
  height: 36px;
  width: auto;
  display: none; /* show on desktop only */
  opacity: 0.98;
}

.nav__links {
  display: none; /* show on desktop */
  align-items: center;
  gap: 26px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(28, 37, 38, 0.82);
}

.nav__link {
  transition: color 180ms ease;
}

.nav__link:hover {
  color: var(--gold);
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav__burger {
  border: 0;
  background: transparent;
  color: var(--forest);
  font-size: 28px;
  padding: 10px 10px;
  border-radius: 14px;
  cursor: pointer;
}

.nav__burger:hover {
  background: rgba(10, 61, 47, 0.06);
}

/* Mobile Menu */
.mobile-menu {
  border-top: 1px solid rgba(212, 175, 55, 0.18);
  background: rgba(255, 255, 255, 0.98);
}

.mobile-menu__inner {
  padding: 18px 0 22px;
  display: grid;
  gap: 12px;
}

.mobile-menu__link {
  padding: 10px 6px;
  font-weight: 600;
  color: rgba(28, 37, 38, 0.9);
}

.mobile-menu__link:hover {
  color: var(--gold);
}

/* ===========================
   Buttons
   =========================== */

.btn {
  appearance: none;
  border: 0;
  cursor: pointer;
  font-weight: 700;
  letter-spacing: -0.01em;
  border-radius: var(--radius-xl);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition:
    transform var(--dur-fast) var(--ease-out),
    background var(--dur-fast) var(--ease-out),
    color var(--dur-fast) var(--ease-out),
    border-color var(--dur-fast) var(--ease-out),
    box-shadow var(--dur-fast) var(--ease-out);
  user-select: none;
}

.btn:active {
  transform: translateY(1px);
}

.btn--nav {
  padding: 12px 16px;
  font-size: 13px;
  white-space: nowrap;
}

.btn--solid {
  background: var(--forest);
  color: var(--white);
  box-shadow: 0 14px 24px rgba(10, 61, 47, 0.18);
}

.btn--solid:hover {
  background: var(--charcoal);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.22);
}

.btn--ghost {
  background: transparent;
  color: var(--forest);
  border: 1.5px solid rgba(10, 61, 47, 0.8);
}

.btn--ghost:hover {
  background: var(--forest);
  color: var(--white);
  border-color: var(--forest);
}

.btn--gold {
  background: var(--gold);
  color: var(--forest);
  box-shadow: 0 18px 40px rgba(212, 175, 55, 0.28);
}

.btn--gold:hover {
  background: var(--white);
  color: var(--forest);
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.22);
}

.btn--outline {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.78);
  color: var(--white);
}

.btn--outline:hover {
  background: var(--white);
  color: var(--forest);
  border-color: var(--white);
}

.btn--cta {
  padding: 18px 18px;
  font-size: 16px;
  border-radius: var(--radius-2xl);
  width: 100%;
}

.btn--mobile {
  padding: 16px 16px;
  border-radius: var(--radius-2xl);
  width: 100%;
}

.btn--submit {
  width: 100%;
  padding: 18px 18px;
  font-size: 16px;
  border-radius: var(--radius-2xl);
}

.btn--light {
  width: 100%;
  padding: 18px 18px;
  border-radius: var(--radius-2xl);
  background: var(--white);
  color: var(--charcoal);
}

.btn--light:hover {
  background: var(--gold);
  color: var(--white);
}

/* Hide big nav button on small screens */
.btn--nav.btn--solid {
  display: none;
}

/* ===========================
   HERO
   =========================== */
.hero {
  position: relative;
  min-height: 100svh;
  min-height: 100vh;
  padding-top: var(--nav-h);
  overflow: hidden;
  color: var(--white);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--forest) 0%, var(--charcoal) 100%);
}

.hero__bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(820px 640px at 14% 16%, rgba(212, 175, 55, 0.14), transparent 62%),
    radial-gradient(920px 720px at 85% 25%, rgba(255, 255, 255, 0.08), transparent 62%),
    radial-gradient(980px 980px at 50% 104%, rgba(0, 0, 0, 0.34), transparent 58%);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  min-height: calc(100svh - var(--nav-h));
  min-height: calc(100vh - var(--nav-h));
  padding: clamp(28px, 5.5vh, 74px) 0 clamp(86px, 10vh, 120px);
  display: grid;
  grid-template-columns: 1fr;
  gap: 42px;
  align-items: center;
}

.hero__title {
  font-family: "Playfair Display", serif;
  font-size: clamp(46px, 5.2vw, 78px);
  line-height: 0.98;
  letter-spacing: -0.03em;
  margin: 18px 0 0;
}

.hero__title-accent {
  color: var(--gold);
}

.hero__lede {
  margin: 18px 0 0;
  max-width: 620px;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.82);
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.20);
  font-weight: 600;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.92);
}

.pill__dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 0 6px rgba(212, 175, 55, 0.12);
  animation: pulse 1.8s ease-in-out infinite;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 0.85; }
  50% { transform: scale(1.15); opacity: 1; }
  100% { transform: scale(1); opacity: 0.85; }
}

.hero__cards {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  max-width: 760px;
}

.hero-card {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 14px;
  padding: 18px 18px;
  border-radius: var(--radius-2xl);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(12px);
  transition: transform var(--dur) var(--ease-spring), background var(--dur-fast) var(--ease-out);
}

.hero-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.10);
}

.hero-card__icon {
  font-size: 26px;
  color: var(--gold);
  margin-top: 2px;
}

.hero-card__title {
  font-weight: 800;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.95);
}

.hero-card__text {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

.cta-panel {
  margin-top: 18px;
  padding: 16px;
  border-radius: var(--radius-2xl);
  background: rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  max-width: 720px;
}

/* ===========================
   HERO VISUAL - Emblem Only (Clean & Premium)
   =========================== */
.hero__visual {
  display: none;
  justify-content: center;
  align-items: center;
}

.hero__mark-surface {
  background: transparent;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  width: clamp(260px, 40vw, 460px);
}

.hero__mark-wrap {
  position: relative;
  display: inline-block;
  filter: 
    drop-shadow(0 35px 70px rgba(0, 0, 0, 0.48))
    drop-shadow(0 18px 40px rgba(0, 0, 0, 0.30));
  transition: transform 0.7s var(--ease-spring);
}

.hero__mark-wrap:hover {
  transform: translateY(-18px) scale(1.06);
}

.hero__mark {
  position: relative;
  width: 100%;
  height: auto;
  filter: 
    drop-shadow(0 0 35px rgba(212, 175, 55, 0.28))   /* gold rim glow */
    drop-shadow(0 40px 60px rgba(0, 0, 0, 0.45));
  transition: filter 0.4s ease;
}

.hero__mark:hover {
  filter: 
    drop-shadow(0 0 50px rgba(212, 175, 55, 0.40))
    drop-shadow(0 48px 75px rgba(0, 0, 0, 0.52));
}

.hero__scroll {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 11px;
  letter-spacing: 0.20em;
  pointer-events: none;
}

.hero__scroll-icon {
  animation: bounce 1.4s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); opacity: 0.9; }
  50% { transform: translateY(6px); opacity: 1; }
}

/* ===========================
   Grids + Cards
   =========================== */

.grid {
  display: grid;
  gap: 18px;
}

.grid--3 {
  grid-template-columns: 1fr;
}

.grid--4 {
  grid-template-columns: 1fr;
}

.card {
  background: var(--white);
  border: 1px solid rgba(28, 37, 38, 0.08);
  border-radius: var(--radius-2xl);
  padding: 26px 24px;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  transition:
    transform var(--dur) var(--ease-spring),
    box-shadow var(--dur) var(--ease-out),
    border-color var(--dur-fast) var(--ease-out);
}

.card__icon {
  font-size: 30px;
  color: var(--gold);
  margin-bottom: 10px;
}

.card--lift:hover {
  transform: translateY(-10px);
  box-shadow: 0 26px 50px rgba(0, 0, 0, 0.12);
  border-color: rgba(212, 175, 55, 0.35);
}

/* Outcomes layout */
.outcomes {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: start;
}

.outcomes__left {
  position: relative;
}

.outcomes__right {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.outcome-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-2xl);
  padding: 22px 22px;
  backdrop-filter: blur(12px);
  transition: transform var(--dur) var(--ease-spring), background var(--dur-fast) var(--ease-out);
}

.outcome-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.12);
}

.outcome-card__icon {
  font-size: 34px;
  color: var(--gold);
  margin-bottom: 10px;
}

.outcome-card__title {
  font-weight: 800;
  font-size: 18px;
  margin-top: 2px;
}

.outcome-card__text {
  color: rgba(255, 255, 255, 0.78);
  margin-top: 8px;
  font-size: 14px;
}

/* Steps */
.step {
  background: var(--white);
  border: 1px solid rgba(28, 37, 38, 0.08);
  border-radius: var(--radius-2xl);
  padding: 28px 22px 24px;
  position: relative;
  transition:
    transform var(--dur) var(--ease-spring),
    box-shadow var(--dur) var(--ease-out),
    border-color var(--dur-fast) var(--ease-out);
}

.step:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 46px rgba(0, 0, 0, 0.10);
  border-color: rgba(212, 175, 55, 0.35);
}

.step__num {
  position: absolute;
  top: -16px;
  left: 22px;
  width: 42px;
  height: 42px;
  border-radius: 16px;
  background: var(--gold);
  color: var(--white);
  display: grid;
  place-items: center;
  font-weight: 900;
  box-shadow: 0 14px 26px rgba(212, 175, 55, 0.22);
}

/* Services */
.service {
  background: var(--white);
  border-radius: var(--radius-2xl);
  padding: 30px 26px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(28, 37, 38, 0.06);
  transition: transform var(--dur) var(--ease-spring), box-shadow var(--dur) var(--ease-out);
}

.service:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 28px 60px rgba(10, 61, 47, 0.18);
}

.service__badge {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  font-size: 30px;
  background: rgba(10, 61, 47, 0.08);
  color: var(--forest);
  margin-bottom: 16px;
}

.service__badge i {
  font-size: 28px;
  line-height: 1;
}

.list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
  font-size: 14px;
  color: rgba(28, 37, 38, 0.76);
}

.list i {
  color: var(--gold);
  margin-right: 10px;
}

/* Websites section helper */
.websites-cta {
  margin: 36px auto 0;
  max-width: 720px;
}

/* Testimonials */
.quote {
  background: var(--offwhite);
  border-radius: var(--radius-2xl);
  padding: 26px 24px;
  border: 1px solid rgba(28, 37, 38, 0.06);
}

.quote__text {
  margin: 0;
  font-style: italic;
  color: rgba(28, 37, 38, 0.82);
}

.quote__who {
  margin-top: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.avatar {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: var(--forest);
  color: var(--white);
  display: grid;
  place-items: center;
  font-weight: 900;
}

.quote__name {
  font-weight: 800;
}

.quote__meta {
  font-size: 12px;
  color: rgba(28, 37, 38, 0.58);
}

/* About */
.about {
  text-align: center;
  max-width: 900px;
  margin-inline: auto;
}

.about__mark {
  height: 88px;
  width: auto;
  margin: 0 auto 22px;
  opacity: 0.86;
  filter: drop-shadow(0 18px 24px rgba(0, 0, 0, 0.35));
}

.about__sig {
  margin-top: 18px;
  color: var(--gold);
  font-weight: 700;
}

/* ===========================
   Form
   =========================== */

.form-wrap {
  max-width: 720px;
  margin-inline: auto;
}

.form {
  display: grid;
  gap: 18px;
  margin-top: 22px;
}

.form__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.field label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 8px;
  color: rgba(28, 37, 38, 0.86);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(28, 37, 38, 0.22);
  background: var(--white);
  font: inherit;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.field textarea {
  border-radius: 22px;
  resize: none;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(212, 175, 55, 0.9);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.18);
}

.fineprint {
  text-align: center;
  font-size: 12px;
  color: rgba(28, 37, 38, 0.52);
  margin: 0;
}

/* Success state */
.success {
  text-align: center;
  padding: 54px 0 10px;
}

.success__icon {
  font-size: 72px;
  color: var(--gold);
}

.success__title {
  margin: 14px 0 0;
  font-size: 26px;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.success__text {
  margin: 10px 0 0;
  color: var(--muted);
}

/* ===========================
   Footer
   =========================== */

.footer {
  background: var(--charcoal);
  color: var(--white);
  padding: 70px 0 26px;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
  align-items: start;
}

.footer__logo {
  height: 38px;
  width: auto;
  margin-bottom: 14px;
  opacity: 0.92;
}

.footer__brand p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  max-width: 420px;
}

.footer__col a {
  display: block;
  padding: 6px 0;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 600;
}

.footer__col a:hover {
  color: var(--gold);
}

.footer__head {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 10px;
}

.footer__bottom {
  margin-top: 44px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.42);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  text-align: left;
}

.footer__social {
  display: flex;
  gap: 14px;
}

.footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--offwhite);
  text-decoration: none;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.footer__social a:hover {
  background: var(--gold);
  color: var(--charcoal);
  transform: translateY(-2px);
}

/* ===========================
   Mobile Layout
   =========================== */

@media (max-width: 520px) {
  .footer__bottom {
    justify-content: center;
    text-align: center;
  }
}

/* ===========================
   Responsive
   =========================== */

@media (min-width: 640px) {
  .cta-panel {
    grid-template-columns: 1fr 1fr;
    padding: 18px;
  }

  .btn--nav.btn--solid {
    display: inline-flex;
  }

  .hero__cards {
    grid-template-columns: 1fr 1fr;
  }

  .form__grid {
    grid-template-columns: 1fr 1fr;
  }

  .grid--3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 820px) {
  .hero__visual {
    display: flex;
  }
}

@media (min-width: 900px) {
  .nav__links {
    display: flex;
  }

  .nav__burger {
    display: none;
  }

  .mobile-menu {
    display: none !important;
  }

  .brand__mark {
    display: none;
  }

  .brand__lockup {
    display: block;
  }

  .hero__inner {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 48px;
    padding: clamp(36px, 6vh, 78px) 0 clamp(92px, 10vh, 130px);
  }

  .hero__visual {
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }

  .outcomes {
    grid-template-columns: 0.95fr 1.05fr;
    gap: 44px;
    align-items: start;
  }

  .outcomes__left {
    position: sticky;
    top: calc(var(--nav-h) + 22px);
    align-self: start;
  }

  .outcomes__right {
    grid-template-columns: 1fr 1fr;
  }

  .grid--3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .grid--4 {
    grid-template-columns: repeat(4, 1fr);
  }

  .footer__inner {
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: 40px;
  }
}

@media (min-width: 1100px) {
  .hero__lede {
    font-size: 19px;
  }
}