/* Bharath International — site styles */
@import url("https://fonts.googleapis.com/css2?family=Archivo:wdth,wght@62..125,400..900&family=Bebas+Neue&display=swap");

:root {
  --ink: #0b0b0d;
  --ink-2: #141418;
  --ink-3: #1d1d23;
  --paper: #f4f1ea;
  --paper-2: #e9e4d8;
  --red: #e0311f;
  --red-deep: #b5230f;
  --yellow: #f5b800;
  --muted: #b8b4aa;
  --muted-dark: #3f3d38;
  --line: rgba(244, 241, 234, 0.12);
  --line-dark: rgba(11, 11, 13, 0.12);
  --display: "Archivo", "Helvetica Neue", Arial, sans-serif;
  --num: "Bebas Neue", "Archivo", Impact, sans-serif;
  --gutter: clamp(20px, 5vw, 72px);
  --max: 1360px;
}

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

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

body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--display);
  font-variation-settings: "wdth" 100, "wght" 400;
  font-size: 20px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img,
video {
  display: block;
  max-width: 100%;
}

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

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--display);
  font-weight: 900;
  font-variation-settings: "wdth" 88, "wght" 900;
  letter-spacing: -0.03em;
  line-height: 0.95;
}

p {
  margin: 0;
}

.wrap {
  width: min(var(--max), 100% - var(--gutter) * 2);
  margin-inline: auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--yellow);
}

.eyebrow::before {
  content: "";
  width: 36px;
  height: 4px;
  background: var(--red);
}

.accent {
  color: var(--red);
}

.accent-y {
  color: var(--yellow);
}

/* Grain overlay */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 999;
  opacity: 0.06;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 28px;
  font-family: var(--display);
  font-variation-settings: "wdth" 95, "wght" 800;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn svg {
  width: 18px;
  height: 18px;
  transition: transform 0.2s ease;
}

.btn:hover svg {
  transform: translateX(4px);
}

.btn-red {
  background: var(--red);
  color: var(--paper);
}

.btn-red:hover {
  background: var(--paper);
  color: var(--ink);
}

.btn-ghost {
  border-color: var(--paper);
  color: var(--paper);
}

.btn-ghost:hover {
  background: var(--paper);
  color: var(--ink);
}

.btn-ink {
  background: var(--ink);
  color: var(--paper);
}

.btn-ink:hover {
  background: var(--red);
}

/* Header */
.topbar {
  height: 6px;
  background: linear-gradient(90deg, var(--red) 0 60%, var(--yellow) 60% 100%);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #ffffff;
  color: var(--ink);
  border-bottom: 2px solid var(--ink);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 104px;
}

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

.brand-mark {
  width: 52px;
  height: 52px;
  background: var(--red);
  display: grid;
  place-items: center;
  font-family: var(--num);
  font-size: 32px;
  line-height: 1;
  color: var(--paper);
  letter-spacing: 0.02em;
  flex: none;
}

.brand-name {
  font-weight: 900;
  font-variation-settings: "wdth" 90, "wght" 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  font-size: 26px;
  line-height: 1;
}

.brand-sub {
  display: block;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted-dark);
  margin-top: 5px;
  font-weight: 600;
}

.nav {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav a {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.01em;
  color: var(--ink);
  position: relative;
  padding: 6px 0;
}

.nav a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.nav a:not(.btn):hover::after,
.nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav .btn {
  padding: 18px 32px;
  font-size: 17px;
  color: var(--paper);
}

.nav-toggle {
  display: none;
  background: none;
  border: 2px solid var(--ink);
  color: var(--ink);
  padding: 12px 16px;
  font-family: var(--display);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
}

/* Hero */
.hero {
  position: relative;
  min-height: min(calc(100svh - 82px), 820px);
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 20% 50%;
  filter: saturate(0.9) contrast(1.02);
  transform: scale(1.06);
  animation: heroZoom 14s ease-out forwards;
}

@keyframes heroZoom {
  to {
    transform: scale(1);
  }
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(11, 11, 13, 0.25) 0%, rgba(11, 11, 13, 0.05) 30%, rgba(11, 11, 13, 0.7) 70%, rgba(11, 11, 13, 0.9) 100%),
    linear-gradient(90deg, rgba(11, 11, 13, 0.55) 0%, rgba(11, 11, 13, 0) 55%);
}

.hero-body {
  padding-block: clamp(80px, 12vw, 140px) clamp(48px, 7vw, 96px);
}

.hero h1 {
  font-size: clamp(48px, 9.5vw, 140px);
  line-height: 0.9;
  max-width: 12ch;
}

.hero h1 {
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.55);
}

.hero h1 .line {
  display: block;
  opacity: 0;
  transform: translateY(40px);
  animation: rise 0.9s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.hero h1 .line:nth-child(2) {
  animation-delay: 0.12s;
  color: var(--red);
  -webkit-text-stroke: 0;
}

.hero-lede {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 40px;
  align-items: end;
  margin-top: clamp(28px, 4vw, 48px);
  opacity: 0;
  animation: rise 0.9s 0.35s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.hero-lede p {
  font-size: clamp(21px, 1.9vw, 26px);
  line-height: 1.45;
  max-width: 34ch;
  color: var(--paper);
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.7);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-end;
}

.hero-tag {
  position: absolute;
  top: clamp(24px, 4vw, 48px);
  right: var(--gutter);
  writing-mode: vertical-rl;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(244, 241, 234, 0.6);
  font-weight: 700;
}

@keyframes rise {
  to {
    opacity: 1;
    transform: none;
  }
}

/* Stats band */
.stats {
  background: var(--red);
  color: var(--paper);
  border-top: 6px solid var(--yellow);
}

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

.stat {
  padding: clamp(32px, 4vw, 56px) clamp(16px, 2.5vw, 40px);
  border-left: 1px solid rgba(244, 241, 234, 0.25);
}

.stat:first-child {
  border-left: 0;
  padding-left: 0;
}

.stat-num {
  font-family: var(--num);
  font-size: clamp(56px, 7.2vw, 112px);
  line-height: 0.9;
  letter-spacing: 0.01em;
}

.stat-label {
  margin-top: 14px;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  max-width: 22ch;
  color: rgba(244, 241, 234, 0.85);
}

/* Section header */
.section {
  padding-block: clamp(80px, 10vw, 150px);
}

.section-head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 32px;
  margin-bottom: clamp(40px, 6vw, 80px);
}

.section-head h2 {
  font-size: clamp(38px, 5.8vw, 88px);
  margin-top: 18px;
}

.section-head p {
  max-width: 34ch;
  color: rgba(244, 241, 234, 0.9);
  font-size: 22px;
  line-height: 1.5;
}

/* Services list */
/* Light capabilities section */
.section-light {
  background: #ffffff;
  color: var(--ink);
}

.section-light .eyebrow {
  color: var(--red-deep);
}

.section-light .section-head p {
  color: var(--muted-dark);
}

.services {
  border-top: 2px solid var(--ink);
}

.service {
  display: grid;
  grid-template-columns: 90px minmax(0, 1.1fr) minmax(0, 1fr);
  gap: clamp(20px, 4vw, 64px);
  padding: clamp(28px, 3.5vw, 48px) 0;
  border-bottom: 1px solid var(--line-dark);
  align-items: start;
  position: relative;
  transition: padding-left 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.service::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  background: var(--red);
  transition: width 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.service:hover {
  padding-left: 20px;
}

.service:hover::before {
  width: 6px;
}

.service-idx {
  font-family: var(--num);
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1;
  color: var(--red);
}

.service-tag {
  font-size: 14px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
  margin-bottom: 12px;
}

.service h3 {
  font-size: clamp(24px, 2.8vw, 38px);
  letter-spacing: -0.025em;
}

.service p {
  color: var(--muted-dark);
  font-size: 22px;
  line-height: 1.6;
  max-width: 44ch;
}

/* Founder teaser (light) */
.teaser {
  background: var(--paper);
  color: var(--ink);
  overflow: hidden;
  border-top: 1px solid var(--line-dark);
}

.teaser .wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: clamp(32px, 6vw, 96px);
  align-items: center;
}

.teaser .eyebrow {
  color: var(--red-deep);
}

.teaser h2 {
  font-size: clamp(34px, 4.8vw, 70px);
  margin-top: 18px;
  letter-spacing: -0.03em;
}

.teaser-body {
  margin-top: 28px;
  font-size: 23px;
  line-height: 1.55;
  color: var(--muted-dark);
  max-width: 40ch;
}

.teaser .btn {
  margin-top: 36px;
}

.teaser-figure {
  position: relative;
  aspect-ratio: 4 / 5;
  max-height: 640px;
}

.teaser-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.2) contrast(1.05);
}

.teaser-figure::before {
  content: "";
  position: absolute;
  inset: -18px 18px 18px -18px;
  border: 3px solid var(--red);
  z-index: -1;
  pointer-events: none;
}

.teaser-figure::after {
  content: "";
  position: absolute;
  right: -18px;
  bottom: -18px;
  width: 42%;
  height: 26%;
  background: var(--yellow);
  z-index: -1;
}

.teaser-caption {
  position: absolute;
  left: 0;
  bottom: 0;
  background: var(--ink);
  color: var(--paper);
  padding: 16px 22px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
}

.teaser-caption strong {
  display: block;
  font-size: 18px;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}

/* Videos */
.videos {
  background: var(--ink-2);
  border-top: 1px solid var(--line);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.video-card {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--ink-3);
}

.video-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.85);
  transition: transform 0.6s ease;
}

.video-card:hover video {
  transform: scale(1.04);
}

.video-card figcaption {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 22px;
  background: linear-gradient(180deg, transparent, rgba(11, 11, 13, 0.85));
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.video-card figcaption span {
  font-weight: 800;
  font-size: 20px;
  letter-spacing: 0;
}

.video-card figcaption small {
  font-family: var(--num);
  font-size: 22px;
  color: var(--yellow);
}

/* Partner */
.partner {
  background: var(--paper);
  color: var(--ink);
}

.partner .wrap {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.4fr);
  gap: clamp(32px, 6vw, 96px);
  align-items: center;
  padding-block: clamp(56px, 7vw, 96px);
  border-top: 1px solid var(--line-dark);
}

.partner-logo {
  display: grid;
  place-items: center;
  background: var(--ink);
  padding: 48px;
}

.partner-logo img {
  width: 220px;
  height: auto;
}

.partner .eyebrow {
  color: var(--red-deep);
}

.partner h2 {
  font-size: clamp(30px, 4vw, 54px);
  margin-top: 16px;
  color: var(--ink);
}

.partner p {
  margin-top: 22px;
  color: var(--muted-dark);
  font-size: 23px;
  line-height: 1.55;
  max-width: 46ch;
}

/* Marquee */
.marquee {
  background: var(--yellow);
  color: var(--ink);
  overflow: hidden;
  padding: 18px 0;
  border-block: 4px solid var(--ink);
}

.marquee-track {
  display: flex;
  gap: 56px;
  width: max-content;
  animation: scroll 32s linear infinite;
  white-space: nowrap;
  font-weight: 900;
  font-variation-settings: "wdth" 90, "wght" 900;
  text-transform: uppercase;
  font-size: 20px;
  letter-spacing: 0.04em;
}

.marquee-track span::after {
  content: "◆";
  margin-left: 56px;
  color: var(--red);
  font-size: 12px;
  vertical-align: middle;
}

@keyframes scroll {
  to {
    transform: translateX(-50%);
  }
}

/* Contact */
.contact {
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: "";
  position: absolute;
  right: -10%;
  top: -20%;
  width: 60vw;
  height: 60vw;
  max-width: 900px;
  max-height: 900px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(224, 49, 31, 0.28), transparent 62%);
  pointer-events: none;
}

.contact .wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(40px, 6vw, 110px);
  position: relative;
}

.contact h2 {
  font-size: clamp(40px, 6.2vw, 96px);
  margin-top: 18px;
}

.contact-lede {
  margin-top: 28px;
  font-size: 23px;
  line-height: 1.55;
  color: rgba(244, 241, 234, 0.88);
  max-width: 38ch;
}

.contact-meta {
  margin-top: 44px;
  display: grid;
  gap: 18px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.contact-meta dt {
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
}

.contact-meta dd {
  margin: 4px 0 0;
  font-size: 22px;
  font-weight: 700;
}

.contact-meta a:hover {
  color: var(--yellow);
}

.form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-content: start;
  padding-top: 8px;
}

.field {
  display: grid;
  gap: 8px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--muted);
}

.field input,
.field textarea {
  width: 100%;
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-bottom: 2px solid rgba(244, 241, 234, 0.35);
  color: var(--paper);
  font: inherit;
  padding: 16px 16px;
  border-radius: 0;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.field textarea {
  min-height: 150px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus {
  border-bottom-color: var(--yellow);
  background: var(--ink-3);
}

.form .btn {
  grid-column: 1 / -1;
  justify-self: start;
  margin-top: 8px;
}

.form-note {
  grid-column: 1 / -1;
  font-size: 17px;
  color: var(--muted);
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 40px 0 0;
}

.site-footer .wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding-bottom: 32px;
}

.site-footer .brand-name {
  font-size: 18px;
  color: var(--paper);
}

.footer-meta {
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}

.footer-links {
  display: flex;
  gap: 24px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
}

.footer-links a:hover {
  color: var(--yellow);
}

/* Company page */
.page-hero {
  padding-block: clamp(72px, 10vw, 140px) clamp(48px, 6vw, 90px);
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  font-size: clamp(44px, 8vw, 124px);
  margin-top: 20px;
  max-width: 12ch;
}

.page-hero-text {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 4vw, 56px);
  margin-top: clamp(32px, 5vw, 64px);
  font-size: 22px;
  line-height: 1.6;
  color: rgba(244, 241, 234, 0.92);
}

.page-hero-text p:first-child {
  font-size: 26px;
  color: var(--paper);
}

.profile {
  background: var(--paper);
  color: var(--ink);
}

.profile .wrap {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.4fr);
  gap: clamp(32px, 6vw, 96px);
  align-items: start;
}

.profile-photo {
  position: sticky;
  top: 110px;
}

.profile-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: top;
}

.profile-photo .name-block {
  background: var(--ink);
  color: var(--paper);
  padding: 22px 24px;
}

.profile-photo .name-block strong {
  display: block;
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1;
}

.profile-photo .name-block span {
  display: block;
  margin-top: 8px;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--yellow);
  font-weight: 700;
}

.profile .eyebrow {
  color: var(--red-deep);
}

.profile h2 {
  font-size: clamp(34px, 4.6vw, 66px);
  margin-top: 18px;
}

.profile-text {
  margin-top: 32px;
  display: grid;
  gap: 22px;
  font-size: 21px;
  line-height: 1.65;
  color: var(--muted-dark);
}

.profile-text p:first-child {
  font-size: 25px;
  color: var(--ink);
  font-weight: 500;
}

.bullets {
  margin: 40px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 2px solid var(--ink);
}

.bullets li {
  padding: 20px 0;
  border-bottom: 1px solid var(--line-dark);
  font-weight: 800;
  font-size: 19px;
  letter-spacing: 0;
  display: flex;
  gap: 14px;
  align-items: center;
}

.bullets li::before {
  content: "";
  width: 12px;
  height: 12px;
  background: var(--red);
  flex: none;
}

.timeline {
  border-top: 1px solid var(--line);
}

.timeline-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-left: 1px solid var(--line);
}

.milestone {
  padding: 32px 28px 40px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  transition: background 0.25s ease;
}

.milestone:hover {
  background: var(--ink-2);
}

.milestone-year {
  font-family: var(--num);
  font-size: clamp(48px, 5vw, 72px);
  line-height: 1;
  color: var(--yellow);
}

.milestone h3 {
  font-size: 24px;
  margin-top: 18px;
  letter-spacing: -0.01em;
}

.milestone p {
  margin-top: 12px;
  color: rgba(244, 241, 234, 0.9);
  font-size: 19px;
  line-height: 1.55;
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.in {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
  .hero h1 .line,
  .hero-lede {
    opacity: 1;
    transform: none;
  }
}

/* Responsive */
@media (max-width: 1024px) {
  .service {
    grid-template-columns: 64px minmax(0, 1fr);
  }
  .service p {
    grid-column: 2;
  }
  .timeline-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 820px) {
  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #ffffff;
    border-bottom: 2px solid var(--ink);
    display: none;
  }
  .nav.open {
    display: flex;
  }
  .nav a {
    padding: 20px var(--gutter);
    border-top: 1px solid var(--line-dark);
    font-size: 20px;
  }
  .nav .btn {
    margin: 12px var(--gutter) 20px;
    justify-content: center;
  }
  .nav-toggle {
    display: inline-block;
  }
  .hero-lede,
  .teaser .wrap,
  .partner .wrap,
  .contact .wrap,
  .profile .wrap,
  .page-hero-text,
  .section-head {
    grid-template-columns: 1fr;
  }
  .hero-cta {
    justify-content: flex-start;
  }
  .hero-tag {
    display: none;
  }
  .stats .wrap {
    grid-template-columns: 1fr;
  }
  .stat {
    border-left: 0;
    padding-left: 0;
    border-top: 1px solid rgba(244, 241, 234, 0.25);
    padding-block: 28px;
  }
  .stat:first-child {
    border-top: 0;
  }
  .video-grid {
    grid-template-columns: 1fr;
  }
  .video-card {
    aspect-ratio: 16 / 10;
  }
  .form {
    grid-template-columns: 1fr;
  }
  .teaser-figure {
    max-height: none;
    margin-inline: 18px;
  }
  .profile-photo {
    position: static;
  }
  .bullets {
    grid-template-columns: 1fr;
  }
  .timeline-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .brand-sub {
    display: none;
  }
  .brand-name {
    font-size: 18px;
  }
  .brand-mark {
    width: 44px;
    height: 44px;
    font-size: 28px;
  }
}
