/* ============================================================
   Avelon-style demo — standalone, isolated from the main app.
   Design tokens taken from wgl-dsites.net/avelon/homepage-3.
   ============================================================ */

:root {
  /* Brand */
  --primary: #fb651b;       /* signature orange */
  --primary-2: #e2540d;
  --secondary: #0e2f3e;     /* deep navy */
  --ink: #0a0a0a;           /* heading text */
  --ink-2: #181a1c;
  --muted: #626262;         /* body text */
  --line: rgba(185, 185, 185, 0.4);
  --line-strong: rgba(10, 10, 10, 0.12);
  --bg: #ffffff;
  --bg-alt: #f5f5f5;
  --bg-deep: #0a0a0a;

  /* Typography */
  --display: "Space Grotesk", system-ui, -apple-system, sans-serif;
  --body: "Inter", system-ui, -apple-system, sans-serif;
  --italic: "Playfair Display", "Times New Roman", serif;
  --display-track: -0.04em;
  --body-track: normal;
  --body-lh: 1.875;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--body);
  font-size: 16px;
  font-weight: 400;
  line-height: var(--body-lh);
  color: var(--muted);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: var(--display-track);
  color: var(--ink);
  margin: 0;
}

.container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ---------- Reusable bits ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
}
.eyebrow--light { color: var(--primary); }

.display {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(2.2rem, 4.4vw, 3.5rem);
  line-height: 1.08;
  letter-spacing: var(--display-track);
  color: var(--ink);
  margin: 16px 0 18px;
}
.display em {
  font-family: var(--italic);
  font-style: italic;
  font-weight: 500;
  color: var(--ink);
}

.section-head {
  max-width: 720px;
  margin: 0 0 64px;
}
.section-head p {
  color: var(--muted);
  font-size: 16px;
  line-height: var(--body-lh);
  margin-top: 12px;
}
.section-head--row {
  max-width: none;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

/* Buttons — Avelon style: square, sharp, white→orange */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 15px 35px;
  border-radius: 0;
  border: 1px solid var(--ink);
  background: #fff;
  color: var(--ink);
  font-family: var(--display);
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0;
  text-transform: none;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.btn:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.btn--sm { padding: 11px 22px; font-size: 13px; line-height: 20px; }
.btn--accent {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.btn--accent:hover {
  background: var(--ink);
  border-color: var(--ink);
}
.btn--dark {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.btn--dark:hover {
  background: var(--primary);
  border-color: var(--primary);
}
.btn--ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
}
.btn--ghost:hover {
  background: #fff;
  color: var(--ink);
  border-color: #fff;
}
.btn i[data-icon] {
  width: 18px;
  height: 18px;
  transition: transform 0.25s ease;
}
.btn:hover i[data-icon] { transform: translateX(3px); }

/* ---------- Topbar ---------- */
.topbar {
  background: var(--secondary);
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-family: var(--body);
}
.topbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 28px;
  gap: 16px;
}
.topbar__meta {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.topbar__meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.topbar__meta i { width: 14px; height: 14px; color: var(--primary); }
.topbar__social { display: flex; gap: 16px; }
.topbar__social a { color: rgba(255, 255, 255, 0.78); transition: color 0.2s ease; }
.topbar__social a:hover { color: var(--primary); }
.topbar__social i { width: 16px; height: 16px; }
@media (max-width: 880px) {
  .topbar__meta span:nth-child(1) { display: none; }
}
@media (max-width: 640px) {
  .topbar__meta span:nth-child(3) { display: none; }
}

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.2s ease;
}
.nav.is-scrolled {
  box-shadow: 0 6px 30px -20px rgba(0, 0, 0, 0.18);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px;
  gap: 24px;
}
.nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.nav__brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  background: var(--primary);
  color: #fff;
  font-family: var(--display);
  font-weight: 700;
  font-size: 24px;
  letter-spacing: -0.04em;
}
.nav__brand-name {
  display: flex;
  flex-direction: column;
  font-family: var(--display);
  font-weight: 700;
  font-size: 24px;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--ink);
}
.nav__brand-name small {
  font-family: var(--body);
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
  margin-top: 6px;
}
.nav__links {
  display: flex;
  gap: 32px;
  font-family: var(--display);
  font-size: 15px;
  font-weight: 600;
}
.nav__links a {
  position: relative;
  padding: 8px 0;
  color: var(--ink);
  letter-spacing: 0;
  transition: color 0.2s ease;
}
.nav__links a:hover { color: var(--primary); }
.nav__links a.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  background: var(--primary);
}
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 4px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1px solid var(--line-strong);
  padding: 10px 8px;
}
.nav__burger span {
  display: block;
  height: 2px;
  background: var(--ink);
}
@media (max-width: 1024px) {
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .nav__links.is-open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: #fff;
    padding: 20px 28px 28px;
    border-bottom: 1px solid var(--line);
    gap: 8px;
  }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 720px;
  height: calc(100vh - 96px);
  max-height: 880px;
  overflow: hidden;
  isolation: isolate;
  color: #fff;
}
.hero__track {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero__slide {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 1.1s ease, transform 7s ease;
}
.hero__slide.is-active {
  opacity: 1;
  transform: scale(1);
}
.hero__scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 10, 10, 0.35) 0%, rgba(10, 10, 10, 0.5) 60%, rgba(10, 10, 10, 0.78) 100%),
    linear-gradient(90deg, rgba(14, 47, 62, 0.65), rgba(14, 47, 62, 0) 60%);
}
.hero__content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding-top: 60px;
  padding-bottom: 120px;
  max-width: 880px;
}
.hero__content .eyebrow { color: var(--primary); }
.hero__title {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(2.6rem, 6.6vw, 5.6rem);
  line-height: 1.05;
  letter-spacing: var(--display-track);
  margin: 24px 0 24px;
  color: #fff;
}
.hero__title span { display: block; }
.hero__title em {
  font-family: var(--italic);
  font-style: italic;
  font-weight: 500;
  color: var(--primary);
  letter-spacing: -0.02em;
}
.hero__lede {
  max-width: 580px;
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.78);
  margin: 0 0 36px;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 64px;
}
.hero__meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  max-width: 700px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.hero__meta-num {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1;
  letter-spacing: var(--display-track);
  color: #fff;
}
.hero__meta-num span {
  color: var(--primary);
  font-family: var(--italic);
  font-style: italic;
  font-weight: 500;
  margin-left: 4px;
}
.hero__meta-label {
  font-family: var(--body);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 10px;
}
@media (max-width: 640px) {
  .hero__meta { grid-template-columns: 1fr 1fr; }
}

.hero__controls {
  position: absolute;
  right: 32px;
  bottom: 40px;
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 2;
}
.hero__arrow {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 0;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.32);
  color: #fff;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.hero__arrow:hover {
  background: var(--primary);
  border-color: var(--primary);
}
.hero__dots { display: flex; gap: 6px; align-items: center; }
.hero__dots button {
  width: 30px;
  height: 3px;
  background: rgba(255, 255, 255, 0.3);
  border: 0;
  padding: 0;
  transition: background 0.2s ease, width 0.2s ease;
}
.hero__dots button.is-active {
  background: var(--primary);
  width: 50px;
}

.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 30px;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.78);
  font-family: var(--display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.hero__scroll span {
  width: 1px;
  height: 42px;
  background: rgba(255, 255, 255, 0.4);
  animation: pulse 2.4s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.5); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); }
}
@media (max-width: 780px) {
  .hero__scroll { display: none; }
}

/* ---------- Trust strip ---------- */
.strip {
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.strip__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
}
.strip__item {
  display: flex;
  gap: 22px;
  align-items: flex-start;
  padding: 52px 36px;
  border-left: 1px solid var(--line);
}
.strip__item:first-child { border-left: 0; padding-left: 0; }
.strip__item:last-child { padding-right: 0; }
.strip__item i {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  background: var(--primary);
  color: #fff;
}
.strip__item h4 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 22px;
  margin: 0 0 6px;
  letter-spacing: var(--display-track);
  line-height: 1.2;
}
.strip__item p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}
@media (max-width: 880px) {
  .strip__grid { grid-template-columns: 1fr; }
  .strip__item { border-left: 0; border-top: 1px solid var(--line); padding: 36px 0 !important; }
  .strip__item:first-child { border-top: 0; }
}

/* ---------- About ---------- */
.about { padding: 130px 0; }
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.about__media {
  position: relative;
  overflow: hidden;
}
.about__media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform 1s ease;
}
.about__media:hover img { transform: scale(1.04); }
.about__badge {
  position: absolute;
  left: 24px;
  bottom: 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 26px;
  background: var(--primary);
  color: #fff;
}
.about__badge-num {
  font-family: var(--display);
  font-weight: 700;
  font-size: 58px;
  line-height: 0.9;
  letter-spacing: var(--display-track);
}
.about__badge-label {
  font-family: var(--display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.3;
}
.about__copy p {
  color: var(--muted);
  font-size: 16px;
  line-height: var(--body-lh);
  max-width: 540px;
  margin: 0 0 28px;
}
.about__list {
  list-style: none;
  padding: 0;
  margin: 0 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 28px;
}
.about__list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--display);
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
}
.about__list i {
  width: 22px;
  height: 22px;
  background: var(--primary);
  color: #fff;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.about__sign {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
}
.about__sign strong {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: var(--display-track);
  display: block;
  color: var(--ink);
}
.about__sign small {
  font-family: var(--italic);
  font-style: italic;
  font-weight: 500;
  font-size: 15px;
  color: var(--primary);
}
@media (max-width: 980px) {
  .about { padding: 80px 0; }
  .about__grid { grid-template-columns: 1fr; gap: 48px; }
  .about__list { grid-template-columns: 1fr; }
}

/* ---------- Services ---------- */
.services {
  padding: 130px 0;
  background: var(--bg-alt);
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  background: var(--line);
  border: 1px solid var(--line);
}
.srv {
  position: relative;
  display: block;
  padding: 50px 40px 50px;
  background: #fff;
  transition: background 0.3s ease, color 0.3s ease;
  isolation: isolate;
}
.srv:hover {
  background: var(--secondary);
  color: #fff;
}
.srv:hover h3 { color: #fff; }
.srv:hover .srv__num { color: var(--primary); }
.srv:hover .srv__more { color: var(--primary); }
.srv__num {
  font-family: var(--display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.16em;
  color: var(--primary);
}
.srv h3 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 26px;
  letter-spacing: var(--display-track);
  margin: 22px 0 14px;
  color: var(--ink);
  transition: color 0.3s ease;
}
.srv p {
  margin: 0 0 32px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}
.srv:hover p { color: rgba(255, 255, 255, 0.72); }
.srv__more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  transition: color 0.2s ease, gap 0.2s ease;
}
.srv:hover .srv__more { gap: 14px; }
.srv__more i { width: 16px; height: 16px; }
.srv--accent {
  background: var(--primary);
}
.srv--accent h3 { color: #fff; }
.srv--accent .srv__num { color: #fff; }
.srv--accent .srv__more { color: #fff; }
.srv--accent p { color: rgba(255, 255, 255, 0.85); }
.srv--accent:hover {
  background: var(--secondary);
}
.srv--accent:hover .srv__num { color: var(--primary); }
.srv--accent:hover .srv__more { color: var(--primary); }
@media (max-width: 980px) {
  .services { padding: 80px 0; }
  .services__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .services__grid { grid-template-columns: 1fr; }
}

/* ---------- Projects ---------- */
.projects { padding: 130px 0; }
.projects__filter {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 4px;
}
.projects__filter button {
  padding: 12px 22px;
  border-radius: 0;
  border: 1px solid var(--line-strong);
  background: transparent;
  font-family: var(--display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ink);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.projects__filter button.is-active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.projects__filter button:not(.is-active):hover {
  border-color: var(--ink);
}

.projects__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 280px;
  gap: 16px;
}
.proj {
  position: relative;
  grid-column: span 4;
  grid-row: span 1;
  overflow: hidden;
  background: var(--ink);
}
.proj--tall { grid-column: span 4; grid-row: span 2; }
.proj--wide { grid-column: span 8; grid-row: span 1; }
.proj img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease, opacity 0.4s ease;
  opacity: 0.95;
}
.proj:hover img { transform: scale(1.08); opacity: 1; }
.proj__meta {
  position: absolute;
  inset: auto 0 0 0;
  padding: 28px;
  display: flex;
  align-items: end;
  gap: 16px;
  color: #fff;
  background: linear-gradient(180deg, transparent, rgba(10, 10, 10, 0.85));
}
.proj__meta span {
  display: block;
  font-family: var(--display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 8px;
}
.proj__meta h3 {
  font-family: var(--display);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: var(--display-track);
  margin: 0;
  color: #fff;
  flex: 1;
  line-height: 1.2;
}
.proj__meta i {
  width: 42px;
  height: 42px;
  background: var(--primary);
  color: #fff;
  display: grid;
  place-items: center;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.proj:hover .proj__meta i { transform: rotate(-45deg); background: #fff; color: var(--primary); }

.projects__footer {
  display: flex;
  justify-content: center;
  margin-top: 56px;
}
@media (max-width: 980px) {
  .projects { padding: 80px 0; }
  .projects__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 260px; }
  .proj { grid-column: span 1; grid-row: span 1; }
  .proj--tall { grid-column: span 1; grid-row: span 2; }
  .proj--wide { grid-column: span 2; grid-row: span 1; }
}
@media (max-width: 600px) {
  .projects__grid { grid-template-columns: 1fr; grid-auto-rows: 280px; }
  .proj, .proj--tall, .proj--wide { grid-column: span 1; grid-row: span 1; }
}

/* ---------- Stats ---------- */
.stats {
  position: relative;
  padding: 120px 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: #fff;
  isolation: isolate;
}
.stats__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(14, 47, 62, 0.95), rgba(14, 47, 62, 0.78));
  z-index: -1;
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: left;
}
.stats__num {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 1;
  letter-spacing: var(--display-track);
  color: var(--primary);
}
.stats__label {
  margin-top: 14px;
  font-family: var(--display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
}
@media (max-width: 880px) {
  .stats__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .stats { background-attachment: scroll; padding: 80px 0; }
}

/* ---------- Process ---------- */
.process {
  padding: 130px 0;
  background: #fff;
}
.process__grid {
  counter-reset: step;
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  border-right: 0;
}
.process__grid li {
  position: relative;
  padding: 44px 36px 44px;
  background: #fff;
  border-right: 1px solid var(--line);
  transition: background 0.3s ease;
}
.process__grid li:hover {
  background: var(--bg-alt);
}
.process__num {
  display: inline-block;
  font-family: var(--display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.18em;
  color: var(--primary);
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--primary);
}
.process__grid h3 {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: var(--display-track);
  margin: 0 0 12px;
}
.process__grid p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
  margin: 0;
}
@media (max-width: 980px) {
  .process { padding: 80px 0; }
  .process__grid { grid-template-columns: 1fr 1fr; border-bottom: 0; }
  .process__grid li { border-bottom: 1px solid var(--line); }
}
@media (max-width: 600px) {
  .process__grid { grid-template-columns: 1fr; }
  .process__grid li:nth-last-child(1) { border-bottom: 0; }
}

/* ---------- Quote ---------- */
.quote {
  padding: 110px 0;
  background: var(--secondary);
  color: #fff;
}
.quote__inner {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
  padding: 0 28px;
}
.quote__mark {
  display: inline-grid;
  place-items: center;
  width: 64px;
  height: 64px;
  background: var(--primary);
  color: #fff;
  margin-bottom: 32px;
}
.quote blockquote {
  font-family: var(--italic);
  font-weight: 500;
  font-style: italic;
  font-size: clamp(1.5rem, 2.6vw, 2.2rem);
  line-height: 1.45;
  letter-spacing: -0.01em;
  margin: 0 0 40px;
  color: #fff;
}
.quote footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.quote__avatar {
  width: 52px;
  height: 52px;
  background: var(--primary);
  color: #fff;
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: var(--display-track);
}
.quote footer strong {
  display: block;
  font-family: var(--display);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: var(--display-track);
  color: #fff;
}
.quote footer small {
  font-family: var(--body);
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
}

/* ---------- CTA ---------- */
.cta {
  position: relative;
  padding: 140px 0;
  background-size: cover;
  background-position: center;
  color: #fff;
  isolation: isolate;
}
.cta__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(10, 10, 10, 0.92), rgba(14, 47, 62, 0.7));
  z-index: -1;
}
.cta__inner { max-width: 760px; }
.cta .display { color: #fff; }
.cta .display em { color: var(--primary); }
.cta .eyebrow { color: var(--primary); }
.cta p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 17px;
  line-height: 1.75;
  margin: 0 0 36px;
}
.cta__form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.cta__form input {
  padding: 18px 22px;
  border-radius: 0;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-family: var(--body);
  font-size: 15px;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.cta__form input::placeholder { color: rgba(255, 255, 255, 0.48); }
.cta__form input:focus {
  outline: none;
  border-color: var(--primary);
  background: rgba(255, 255, 255, 0.1);
}
.cta__form input:nth-child(3) { grid-column: 1 / -1; }
.cta__form button {
  grid-column: 1 / -1;
  justify-self: start;
  padding: 18px 40px;
}
.cta__success {
  grid-column: 1 / -1;
  display: none;
  padding: 16px 20px;
  background: rgba(251, 101, 27, 0.15);
  border: 1px solid var(--primary);
  color: var(--primary);
  font-family: var(--display);
  font-size: 14px;
  font-weight: 600;
}
.cta__success.is-visible { display: block; }
@media (max-width: 700px) {
  .cta { padding: 90px 0; }
  .cta__form { grid-template-columns: 1fr; }
}

/* ---------- Footer ---------- */
.foot {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.72);
  padding-top: 90px;
  font-family: var(--body);
}
.foot__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 64px;
}
.foot__brand .nav__brand-mark { background: var(--primary); color: #fff; }
.foot__brand .nav__brand-name { color: #fff; }
.foot__brand .nav__brand-name small { color: rgba(255, 255, 255, 0.5); }
.foot__brand p {
  margin: 24px 0 30px;
  font-size: 15px;
  max-width: 360px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
}
.foot__social { display: flex; gap: 10px; }
.foot__social a {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.72);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.foot__social a:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.foot h5 {
  font-family: var(--display);
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: var(--display-track);
  margin: 0 0 24px;
}
.foot ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
  font-size: 15px;
  line-height: 1.6;
}
.foot a { transition: color 0.2s ease; }
.foot ul a:hover { color: var(--primary); }
.foot__bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
}
@media (max-width: 880px) {
  .foot__grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .foot__bar { flex-direction: column; gap: 6px; text-align: center; }
}
@media (max-width: 540px) {
  .foot__grid { grid-template-columns: 1fr; }
}

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
