/* Sterling Sign Co — main.css
   Architecture: reset → tokens → utilities → components
   Three-layer system. Zero !important. Mobile-first.
   CSS Doctor 5-pass rebuild.
*/

/* ══ LAYER 0: RESET ══════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 100%; -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.65;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}
img, picture, video { max-width: 100%; height: auto; display: block; }
a { color: var(--color-accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--color-accent-hover); }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); line-height: 1.15; letter-spacing: -0.02em; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
input, textarea, select { font: inherit; }

/* ══ LAYER 1: TOKENS ══════════════════════════════════════════ */
:root {
  /* Palette */
  --color-dark:         #070d25;
  --color-dark-mid:     #0d1535;
  --color-bg:           #ffffff;
  --color-surface:      #f6f8fc;
  --color-text:         #1a1a2e;
  --color-text-muted:   #55607a;
  --color-text-light:   #8893a8;
  --color-accent:       #1a56db;
  --color-accent-hover: #1447bf;
  --color-accent-2:     #c9a84c;
  --color-border:       #e3e8f0;
  --color-border-dark:  rgba(255,255,255,0.10);

  /* Typography */
  --font-heading: 'Inter', system-ui, sans-serif;
  --font-body:    'Inter', system-ui, sans-serif;
  --text-xs:   0.75rem;
  --text-sm:   0.875rem;
  --text-base: 1rem;
  --text-lg:   1.125rem;
  --text-xl:   1.25rem;
  --text-2xl:  clamp(1.25rem, 2vw, 1.5rem);
  --text-3xl:  clamp(1.5rem, 3vw, 2rem);
  --text-4xl:  clamp(1.875rem, 4vw, 2.75rem);
  --text-5xl:  clamp(2.25rem, 5.5vw, 3.5rem);
  --text-hero: clamp(2.5rem, 6.5vw, 4.25rem);

  /* Spacing (4-px grid) */
  --sp-1:  0.25rem;
  --sp-2:  0.5rem;
  --sp-3:  0.75rem;
  --sp-4:  1rem;
  --sp-5:  1.25rem;
  --sp-6:  1.5rem;
  --sp-8:  2rem;
  --sp-10: 2.5rem;
  --sp-12: 3rem;
  --sp-16: 4rem;
  --sp-20: 5rem;
  --sp-24: 6rem;

  /* Layout */
  --container-max: 1200px;
  --container-pad: clamp(1.25rem, 5vw, 2rem);
  --nav-h:         72px;
  --radius-sm:     4px;
  --radius-md:     8px;
  --radius-lg:     16px;
  --radius-xl:     24px;
  --radius-full:   9999px;

  /* Elevation */
  --shadow-sm: 0 1px 3px rgba(7,13,37,.08);
  --shadow-md: 0 4px 16px rgba(7,13,37,.10);
  --shadow-lg: 0 20px 48px rgba(7,13,37,.14), 0 8px 16px rgba(7,13,37,.08);

  /* Z-Index Scale */
  --z-below:   -1;   /* content behind background */
  --z-base:     0;   /* normal flow / overlay resets */
  --z-raised:   1;   /* content above overlay */
  --z-nav:    100;   /* fixed navigation */
  --z-overlay: 200;  /* drawers, dropdowns */
  --z-modal:  300;   /* modal dialogs */
  --z-skip:   400;   /* skip-link — always topmost */

  /* Motion */
  --transition:     180ms ease;
  --transition-med: 300ms ease;
}

/* ══ LAYER 2: UTILITIES ══════════════════════════════════════ */
.u-sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ══ LAYER 3: COMPONENTS ════════════════════════════════════ */

/* -- Container -- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

/* -- Skip link -- */
.skip-link {
  position: absolute;
  top: -100%; left: var(--sp-4);
  padding: var(--sp-2) var(--sp-4);
  background: var(--color-accent);
  color: #fff;
  font-size: var(--text-sm);
  font-weight: 600;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  z-index: var(--z-skip);
  transition: top var(--transition);
}
.skip-link:focus { top: 0; }

/* -- Buttons -- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: 0.75rem 1.625rem;
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color var(--transition), color var(--transition),
              border-color var(--transition), box-shadow var(--transition);
}
.btn--primary {
  background: var(--color-accent);
  color: #fff;
  border-color: var(--color-accent);
}
.btn--primary:hover {
  background: var(--color-accent-hover);
  border-color: var(--color-accent-hover);
  color: #fff;
  box-shadow: 0 4px 14px rgba(26,86,219,.38);
}
.btn--ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.38);
}
.btn--ghost:hover {
  background: rgba(255,255,255,.10);
  border-color: rgba(255,255,255,.65);
  color: #fff;
}

/* -- Focus ring -- */
:focus-visible {
  outline: 3px solid var(--color-accent);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

/* -- Nav -- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: var(--z-nav);
  height: var(--nav-h);
  background: var(--color-dark);
  border-bottom: 1px solid var(--color-border-dark);
  transition: box-shadow var(--transition-med);
}
.nav.is-scrolled { box-shadow: 0 2px 20px rgba(0,0,0,.35); }
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}
.nav__logo img,
.nav__brand img { height: 40px; width: auto; }
.nav__brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: var(--sp-3);
}
.nav__brand-text {
  font-size: var(--text-xl);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
}
.nav__menu {
  display: none;
  align-items: center;
  gap: var(--sp-6);
  list-style: none;
}
.nav__link {
  font-size: var(--text-sm);
  font-weight: 500;
  color: rgba(255,255,255,.75);
  text-decoration: none;
  padding-block: var(--sp-1);
  position: relative;
  transition: color var(--transition);
}
.nav__link::after {
  content: "";
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--color-accent-2);
  border-radius: var(--radius-full);
  transition: width var(--transition-med);
}
.nav__link:hover,
.nav__link--active { color: #fff; }
.nav__link:hover::after,
.nav__link--active::after { width: 100%; }
.nav__actions {
  display: none;
  align-items: center;
  gap: var(--sp-3);
}
.nav__toggle {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: var(--sp-3);
  min-width: 44px;
  min-height: 44px;
  z-index: var(--z-nav);
}
.nav__toggle-line {
  display: block;
  width: 24px; height: 2px;
  background: #fff;
  border-radius: var(--radius-full);
  transition: transform var(--transition-med), opacity var(--transition-med);
}
.nav.nav--open .nav__menu {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0; bottom: 0;
  background: var(--color-dark);
  padding: var(--sp-4) 0;
  gap: 0;
  overflow-y: auto;
}
.nav.nav--open .nav__item {
  width: 100%;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.nav.nav--open .nav__item:first-child {
  border-top: 1px solid rgba(255,255,255,.08);
}
.nav.nav--open .nav__link {
  display: flex;
  align-items: center;
  padding: var(--sp-4) var(--container-pad);
  min-height: 56px;
  font-size: var(--text-base);
  font-weight: 600;
  color: rgba(255,255,255,.85);
  width: 100%;
}
.nav.nav--open .nav__link--active,
.nav.nav--open .nav__link:hover { color: #fff; background: rgba(255,255,255,.05); }
.nav.nav--open .nav__link::after { display: none; }
.nav.nav--open .nav__toggle-line:first-child  { transform: translateY(7px) rotate(45deg); }
.nav.nav--open .nav__toggle-line:nth-child(2) { opacity: 0; }
.nav.nav--open .nav__toggle-line:last-child   { transform: translateY(-7px) rotate(-45deg); }
@media (min-width: 900px) {
  .nav__menu    { display: flex; }
  .nav__actions { display: flex; }
  .nav__toggle  { display: none; }
  .nav.nav--open .nav__menu {
    position: static;
    flex-direction: row;
    background: none;
    padding: 0;
    overflow: visible;
  }
}

/* -- Hero -- */
.hero {
  background: var(--color-dark);
  color: #fff;
  overflow: hidden;
}
.hero--feature {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center 30%;
}
.hero--feature::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    rgba(10, 14, 22, 0.90) 0%,
    rgba(10, 14, 22, 0.72) 55%,
    rgba(10, 14, 22, 0.40) 100%
  );
  z-index: var(--z-base);
}
.hero--feature > .container { position: relative; z-index: var(--z-raised); }
.hero__centered {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  padding-top:    calc(var(--nav-h) + var(--sp-20));
  padding-bottom: var(--sp-20);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-6);
}
.hero__centered .hero__actions { justify-content: center; }
.hero__centered .hero__social-proof { justify-content: center; flex-wrap: wrap; }
.hero__feature-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-12);
  padding-top:    calc(var(--nav-h) + var(--sp-16));
  padding-bottom: var(--sp-16);
}
@media (min-width: 768px) {
  .hero__feature-inner {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: var(--sp-10);
    padding-top:    calc(var(--nav-h) + var(--sp-14));
    padding-bottom: var(--sp-14);
  }
}
@media (min-width: 900px) {
  .hero__feature-inner {
    gap: var(--sp-16);
    padding-top:    calc(var(--nav-h) + var(--sp-20));
    padding-bottom: var(--sp-20);
  }
}
@media (min-width: 1100px) {
  .hero__feature-inner { grid-template-columns: 55% 1fr; }
}
.hero__centered {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  padding-top:    calc(var(--nav-h) + var(--sp-20));
  padding-bottom: var(--sp-20);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-6);
}
.hero__centered .hero__actions { justify-content: center; }
.hero__centered .hero__social-proof { justify-content: center; flex-wrap: wrap; }
.hero__feature-text {
  display: flex;
  flex-direction: column;
  gap: var(--sp-6);
}
@media (max-width: 767px) {
  .hero__feature-text { text-align: center; }
  .hero__feature-text .hero__actions { justify-content: center; }
  .hero__social-proof { flex-wrap: wrap; justify-content: center; }
  .hero__feature-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 260px;
  }
  .hero__feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 25%;
  }
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-accent-2);
}
.hero__eyebrow::before {
  content: "";
  width: 24px; height: 2px;
  background: var(--color-accent-2);
  border-radius: var(--radius-full);
  flex-shrink: 0;
}
.hero__title {
  font-size: var(--text-hero);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: #fff;
}
.hero__title em { color: var(--color-accent-2); font-style: normal; }
.hero__subtitle {
  font-size: var(--text-lg);
  line-height: 1.7;
  color: rgba(255,255,255,.82);
  max-width: 52ch;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4);
  padding-top: var(--sp-2);
}
.hero__phone {
  font-size: var(--text-sm);
  color: rgba(255,255,255,.65);
}
.hero__phone a { color: var(--color-accent-2); font-weight: 600; }
.hero__phone a:hover { color: #fff; }
.hero__social-proof {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: var(--text-xs);
  color: rgba(255,255,255,.55);
}
.hero__social-proof-stars {
  color: var(--color-accent-2);
  font-size: var(--text-sm);
  letter-spacing: 0.05em;
}
.hero__feature-image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
@media (min-width: 768px) {
  .hero__feature-image { transform: rotate(1.5deg); }
}
.hero__feature-image img { width: 100%; height: auto; display: block; }
.hero__feature-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(7,13,37,.85) 0%, transparent 100%);
  padding: var(--sp-8) var(--sp-5) var(--sp-4);
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
}
.hero__feature-caption strong { font-size: var(--text-sm); font-weight: 700; color: #fff; }
.hero__feature-caption span   { font-size: var(--text-xs); color: var(--color-accent-2); font-weight: 600; }

/* -- Trust Bar -- */
.trust-bar {
  background: var(--color-dark-mid);
  border-top:    1px solid var(--color-border-dark);
  border-bottom: 1px solid var(--color-border-dark);
  padding-block: var(--sp-8);
}
.trust-bar__inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  text-align: center;
}
@media (min-width: 768px) {
  .trust-bar__inner { grid-template-columns: repeat(4, 1fr); }
}
.trust-bar__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--sp-1);
  padding: var(--sp-8) var(--sp-4);
  border-right: 1px solid var(--color-border-dark);
}
.trust-bar__item:nth-child(2n)  { border-right: none; }
.trust-bar__item:last-child     { border-right: none; }
@media (min-width: 768px) {
  .trust-bar__item               { border-right: 1px solid var(--color-border-dark); }
  .trust-bar__item:nth-child(2n) { border-right: 1px solid var(--color-border-dark); }
  .trust-bar__item:last-child    { border-right: none; }
}
.trust-bar__item strong {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #fff;
  line-height: 1;
}
.trust-bar__item span {
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255,255,255,.82);
  margin-top: 2px;
}

/* -- Section wrapper -- */
.section {
  padding-block: clamp(3rem, 8vw, 6rem);
  background: var(--color-bg);
}
.section--alt-soft { background: var(--color-surface); }
.section__header {
  text-align: center;
  max-width: 720px;
  margin-inline: auto;
  margin-bottom: var(--sp-12);
}
.section__eyebrow-tag {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--color-accent-2);
  margin-bottom: var(--sp-3);
}
.section__title {
  font-size: var(--text-4xl);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--color-text);
  margin-bottom: var(--sp-4);
  line-height: 1.15;
}
.section__subtitle {
  font-size: var(--text-lg);
  line-height: 1.65;
  color: var(--color-text-muted);
}

/* -- Services -- */
.svc-section { background: var(--color-bg); }
.svc-section__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-12);
}
@media (min-width: 900px) {
  .svc-section__inner {
    grid-template-columns: 1fr 2fr;
    gap: var(--sp-16);
    align-items: start;
  }
  .svc-section__header { position: sticky; top: calc(var(--nav-h) + var(--sp-6)); }
}
.svc-section__header { text-align: left; }
.svc-section__title {
  font-size: var(--text-4xl);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--color-text);
  line-height: 1.15;
  margin-block: var(--sp-3) var(--sp-4);
}
.svc-section__sub {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: 1.65;
  margin-bottom: var(--sp-6);
}
.svc-section__cta-btn { margin-top: var(--sp-6); }
.svc-section .section__eyebrow-tag { display: block; text-align: left; }
.svc-list { display: flex; flex-direction: column; }
.svc-list__item {
  display: grid;
  grid-template-columns: 3rem 1fr 1.5rem;
  gap: var(--sp-5);
  align-items: center;
  padding: var(--sp-6) 0;
  border-bottom: 1px solid var(--color-border);
  text-decoration: none;
  transition: background var(--transition);
}
.svc-list__item:first-child { border-top: 1px solid var(--color-border); }
.svc-list__num {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-accent);
  letter-spacing: 0.05em;
}
.svc-list__content { display: flex; flex-direction: column; gap: var(--sp-1); }
.svc-list__name {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: -0.01em;
}
.svc-list__name em { color: var(--color-accent-2); font-style: normal; }
.svc-list__desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
}
.svc-list__arrow {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--color-accent);
  transition: transform var(--transition-med);
  opacity: 0.85;
}
.svc-list__item:hover .svc-list__arrow { transform: translateX(5px); opacity: 1; }
@media (max-width: 767px) {
  .svc-section__inner { gap: var(--sp-8); }
  .svc-list__item {
    align-items: start;
    padding: var(--sp-4) 0;
  }
  .svc-list__num { padding-top: 0.15em; }
  .svc-list__name { font-size: var(--text-base); }
  .svc-list__arrow { padding-top: 0.2em; }
}

/* -- Featured Project / Case Study -- */
.case-study-card {
  display: grid;
  grid-template-columns: 1fr;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
@media (min-width: 900px) {
  .case-study-card { grid-template-columns: 1fr 1fr; align-items: stretch; }
}
.case-study-card__image-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}
@media (min-width: 900px) {
  .case-study-card__image-wrap { aspect-ratio: unset; min-height: 400px; }
}
/* picture must be block so height:100% resolves against its grid cell */
.case-study-card__image-wrap picture {
  display: block;
  width: 100%;
  height: 100%;
}
.case-study-card__img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.case-study-card__img-overlay {
  position: absolute;
  bottom: var(--sp-5); left: var(--sp-6);
}
.case-study-card__type {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--color-dark);
  color: var(--color-accent-2);
  padding: var(--sp-1) var(--sp-3);
  border-radius: var(--radius-full);
}
.case-study-card__body {
  padding: var(--sp-8) var(--sp-8) var(--sp-10);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.case-study-card__title {
  font-size: var(--text-3xl);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--color-text);
  margin-bottom: var(--sp-4);
  line-height: 1.25;
}
.case-study-card__desc {
  font-size: var(--text-base);
  line-height: 1.7;
  color: var(--color-text-muted);
  margin-bottom: var(--sp-6);
}
.case-study-card__specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-4);
  padding: var(--sp-6) 0;
  border-top: 1px solid var(--color-border);
  margin-bottom: var(--sp-6);
}
@media (max-width: 599px) {
  .case-study-card__specs { grid-template-columns: 1fr 1fr; }
}
.case-study-card__specs dt {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-light);
  margin-bottom: var(--sp-1);
}
.case-study-card__specs dd {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text);
}

/* -- Why Us -- */
.why-us-feature {
  background: var(--color-dark);
  color: #fff;
  padding-block: clamp(3.5rem, 8vw, 6rem);
}
.why-us-feature__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-12);
}
@media (min-width: 900px) {
  .why-us-feature__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-16);
    align-items: start;
  }
}
.why-us-feature__title {
  font-size: var(--text-4xl);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: var(--sp-5);
}
.why-us-feature__body {
  font-size: var(--text-base);
  color: rgba(255,255,255,.72);
  line-height: 1.65;
  margin-bottom: var(--sp-6);
}
.why-us-feature__list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  margin-bottom: var(--sp-8);
}
.why-us-feature__list li {
  font-size: var(--text-sm);
  color: rgba(255,255,255,.85);
  padding-left: var(--sp-6);
  position: relative;
  line-height: 1.55;
}
.why-us-feature__list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--color-accent-2);
  font-weight: 700;
}
.why-us-feature__list li strong { color: #fff; }
.why-us-feature__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: var(--sp-6);
}
.why-us-feature__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--sp-1);
  padding: var(--sp-6) var(--sp-4);
  border-right:  1px solid rgba(255,255,255,.12);
  border-bottom: 1px solid rgba(255,255,255,.12);
  text-align: center;
}
.why-us-feature__stat:nth-child(2n)        { border-right: none; }
.why-us-feature__stat:nth-last-child(-n+2) { border-bottom: none; }
.why-us-feature__stat strong {
  font-size: var(--text-3xl);
  font-weight: 900;
  color: var(--color-accent-2);
  line-height: 1;
  letter-spacing: -0.02em;
}
.why-us-feature__stat span {
  font-size: var(--text-sm);
  font-weight: 600;
  color: rgba(255,255,255,.80);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 2px;
}
.why-us-feature__creds {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}
.why-us-feature__cred {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: var(--text-sm);
  color: rgba(255,255,255,.72);
}
.why-us-feature__cred svg {
  width: 18px; height: 18px;
  flex-shrink: 0;
  color: var(--color-accent-2);
}

/* -- CTA Band -- */
.cta-band {
  background: var(--color-accent);
  padding-block: clamp(3rem, 8vw, 5.5rem);
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,.18) 0%, transparent 55%);
  pointer-events: none;
}
.cta-band__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--sp-6);
}
@media (min-width: 900px) {
  .cta-band__inner {
    flex-direction: row;
    text-align: left;
    justify-content: space-between;
    align-items: center;
  }
  .cta-band__text    { flex: 1; }
  .cta-band__actions { flex-shrink: 0; }
}
.cta-band__title {
  font-size: var(--text-4xl);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
  line-height: 1.12;
  margin-bottom: var(--sp-2);
}
.cta-band__sub {
  font-size: var(--text-lg);
  line-height: 1.6;
  color: rgba(255,255,255,.87);
}
.cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4);
  justify-content: center;
}
@media (min-width: 900px) {
  .cta-band__actions { justify-content: flex-start; }
}

/* -- Footer -- */
footer {
  background: var(--color-dark);
  color: rgba(255,255,255,.72);
  padding-top: var(--sp-16);
  border-top: 1px solid var(--color-border-dark);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-10);
  padding-bottom: var(--sp-12);
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
}
.footer-brand__name {
  display: block;
  font-size: var(--text-xl);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: var(--sp-3);
}
.footer-brand__tagline {
  font-size: var(--text-sm);
  line-height: 1.65;
  color: rgba(255,255,255,.6);
}
.footer-nav__title {
  display: block;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: var(--sp-5);
}
.footer-nav__list { display: flex; flex-direction: column; gap: var(--sp-3); list-style: none; }
.footer-nav__link {
  font-size: var(--text-sm);
  color: rgba(255,255,255,.65);
  text-decoration: none;
  transition: color var(--transition);
}
.footer-nav__link:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid var(--color-border-dark);
  padding-block: var(--sp-6);
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--sp-2);
  text-align: center;
}
@media (min-width: 768px) {
  .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; }
}
.footer-bottom__copy {
  font-size: var(--text-xs);
  color: var(--color-text-light);
}

/* -- Inner page header -- */
.page-header {
  background: var(--color-dark);
  padding-top:    calc(var(--nav-h) + var(--sp-16));
  padding-bottom: var(--sp-16);
  text-align: center;
}
.page-header__title {
  font-size: var(--text-5xl);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
  line-height: 1.1;
  margin-bottom: var(--sp-4);
}
.page-header__subtitle {
  font-size: var(--text-lg);
  color: rgba(255,255,255,.72);
  max-width: 56ch;
  margin-inline: auto;
}

/* -- Page Banner -- */
.page-banner {
  background: var(--color-dark);
  padding-top:    calc(var(--nav-h) + var(--sp-16));
  padding-bottom: var(--sp-16);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-banner--photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(7,13,37,.62);
  z-index: var(--z-base);
}
.page-banner--photo picture {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  display: block;
  z-index: var(--z-below);
}
.page-banner--photo img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 20%;
  z-index: var(--z-below);
}
.page-banner__title {
  position: relative;
  z-index: var(--z-raised);
  font-size: var(--text-5xl);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
  line-height: 1.1;
}

/* -- Blog / Posts -- */
.posts-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-8);
}
@media (min-width: 600px) { .posts-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .posts-grid { grid-template-columns: repeat(3, 1fr); } }
.post-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-med), box-shadow var(--transition-med);
  display: flex;
  flex-direction: column;
}
.post-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.post-card__img  { aspect-ratio: 16/9; object-fit: cover; width: 100%; }
.post-card__body { padding: var(--sp-6); flex: 1; display: flex; flex-direction: column; }
.post-card__date {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text-light);
  margin-bottom: var(--sp-2);
}
.post-card__title {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: -0.015em;
  margin-bottom: var(--sp-3);
  line-height: 1.3;
}
.post-card__excerpt {
  font-size: var(--text-sm);
  line-height: 1.65;
  color: var(--color-text-muted);
  flex: 1;
  margin-bottom: var(--sp-4);
}
.post-card__link {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-accent);
  transition: gap var(--transition), color var(--transition);
}
.post-card__link:hover { gap: var(--sp-3); color: var(--color-accent-hover); }

/* -- Prose (blog post body) -- */
.prose {
  max-width: 72ch;
  margin-inline: auto;
  font-size: var(--text-base);
  line-height: 1.75;
  color: var(--color-text);
}
.prose h2 { font-size: var(--text-3xl); margin-block: var(--sp-10) var(--sp-4); }
.prose h3 { font-size: var(--text-2xl); margin-block: var(--sp-8) var(--sp-3); }
.prose p  { margin-bottom: var(--sp-5); }
.prose ul, .prose ol { margin-bottom: var(--sp-5); padding-left: var(--sp-6); }
.prose ul { list-style: disc; }
.prose ol { list-style: decimal; }
.prose li { margin-bottom: var(--sp-2); }
.prose a  { color: var(--color-accent); text-decoration: underline; }
.prose a:hover { color: var(--color-accent-hover); }
.prose blockquote {
  border-left: 3px solid var(--color-accent-2);
  padding-left: var(--sp-6);
  margin-block: var(--sp-8);
  font-style: italic;
  color: var(--color-text-muted);
}
.prose pre {
  background: var(--color-surface);
  padding: var(--sp-6);
  border-radius: var(--radius-md);
  overflow-x: auto;
  font-size: var(--text-sm);
  margin-bottom: var(--sp-6);
}
.prose img {
  border-radius: var(--radius-md);
  margin-block: var(--sp-6);
}

/* ── 404 Page ─────────────────────────────────────────────── */
.error-404 {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: var(--nav-h);
}
.error-404__inner { max-width: 600px; padding: 4rem 1.5rem; }
.error-404__code {
  font-family: var(--font-heading);
  font-size: clamp(6rem, 20vw, 12rem);
  line-height: 1;
  color: var(--color-accent);
  margin: 0 0 1rem;
  letter-spacing: 0.05em;
  font-weight: 800;
}
.error-404__title {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: var(--color-text);
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
  font-weight: 700;
}
.error-404__message {
  color: var(--color-text-muted);
  font-size: 1rem;
  margin: 0 0 2rem;
  line-height: 1.65;
}

/* ── VQA: Internal Page Enhancements ──────────────────────────── */

/* Banner: photo variant — isolation creates stacking context so z-index:-1 picture
   paints inside the banner, not behind the page background */
.page-banner--photo { isolation: isolate; }

/* Banner: taller, vertically centered */
.page-banner {
  min-height: 300px;
  display: flex;
  align-items: center;
  padding-top:    calc(var(--nav-h) + var(--sp-20));
  padding-bottom: var(--sp-20);
}
.page-banner > .container { width: 100%; position: relative; z-index: var(--z-raised); }

/* Banner eyebrow — amber label above h1 */
.page-banner__eyebrow {
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent-2);
  margin-bottom: var(--sp-3);
  position: relative;
  z-index: var(--z-raised);
}

/* Prose h2 — amber left accent stripe */
.prose h2 {
  padding-left: var(--sp-4);
  border-left: 3px solid var(--color-accent-2);
}

/* Prose h3 — service item bottom rule */
.prose h3 {
  padding-bottom: var(--sp-3);
  border-bottom: 1px solid var(--color-border);
}

/* Prose ul — amber checkmark bullets */
.prose ul { list-style: none; padding-left: 0; }
.prose ul li { position: relative; padding-left: 1.75rem; margin-bottom: var(--sp-3); }
.prose ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-accent-2);
  font-weight: 700;
  font-size: 0.9em;
}

/* Prose hr — thin section separator */
.prose hr {
  border: none;
  border-top: 1px solid var(--color-border);
  margin-block: var(--sp-8);
}

/* Contact info card — paragraph starting with bold label */
.prose p:has(> strong:first-child) {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--sp-5) var(--sp-6);
  line-height: 2;
}

/* Back link — styled nav cue */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  font-weight: 600;
  text-decoration: none;
  padding: var(--sp-6) 0 var(--sp-10);
  transition: color var(--transition);
  letter-spacing: 0.03em;
}
.back-link:hover { color: var(--color-accent-2); }

/* ── Contrast fixes (WCAG AA 4.5:1) ─────────────────────────── */
/* Amber #c9a84c on white/surface = 2.2:1 → fails. Use #8B5E0C = 5.17:1 */
.section__eyebrow-tag { color: #8B5E0C; }
.svc-list__name em { color: #8B5E0C; }
/* #8893a8 on white = 2.88:1 → fails. Use --color-text-muted #55607a = 5.74:1 */
.case-study-card__specs dt { color: var(--color-text-muted); }
.post-card__date { color: var(--color-text-muted); }

/* ══ PAGE BANNER (shared across custom page layouts) ════════════ */
.page-banner__inner { text-align: center; }
.page-banner__subtitle {
  font-size: var(--text-lg);
  color: rgba(255,255,255,.85);
  max-width: 540px;
  margin: var(--sp-3) auto 0;
  line-height: 1.5;
}

/* ══ SERVICES PAGE ════════════════════════════════════════════════ */
.svc-page-intro { text-align: center; max-width: 680px; margin: 0 auto var(--sp-16); }
.svc-page-intro__title {
  font-size: var(--text-4xl);
  color: var(--color-text);
  margin-bottom: var(--sp-4);
}
.svc-page-intro__body { font-size: var(--text-lg); color: var(--color-text-muted); }

.svc-page-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--sp-6);
}

.svc-page-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--sp-8);
  transition: box-shadow var(--transition), transform var(--transition);
}
.svc-page-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.svc-page-card__icon {
  width: 48px;
  height: 48px;
  background: var(--color-accent);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-5);
  color: #fff;
}
.svc-page-card__icon svg { width: 26px; height: 26px; }
.svc-page-card__title {
  font-size: var(--text-xl);
  color: var(--color-text);
  margin-bottom: var(--sp-3);
}
.svc-page-card__desc { font-size: var(--text-base); color: var(--color-text-muted); line-height: 1.6; }

/* Materials strip */
.svc-materials {
  background: var(--color-dark);
  padding-block: var(--sp-10);
}
.svc-materials__label {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  text-align: center;
  margin-bottom: var(--sp-5);
}
.svc-materials__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--sp-3) var(--sp-6);
}
.svc-materials__item {
  font-size: var(--text-sm);
  font-weight: 600;
  color: rgba(255,255,255,.85);
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-full);
  padding: var(--sp-2) var(--sp-5);
}

/* ══ PAGE CTA (shared) ═══════════════════════════════════════════ */
.page-cta {
  background: linear-gradient(135deg, var(--color-dark) 0%, var(--color-dark-mid) 100%);
}
.page-cta__inner {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.page-cta__title {
  font-size: var(--text-3xl);
  color: #fff;
  margin-bottom: var(--sp-4);
}
.page-cta__body {
  font-size: var(--text-lg);
  color: rgba(255,255,255,.75);
  margin-bottom: var(--sp-8);
}

/* ══ ABOUT PAGE ══════════════════════════════════════════════════ */
.about-intro__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-12);
  align-items: start;
}
@media (min-width: 900px) {
  .about-intro__inner { grid-template-columns: 1fr 1fr; align-items: center; }
}
.about-intro__title {
  font-size: var(--text-4xl);
  color: var(--color-text);
  margin-bottom: var(--sp-5);
}
.about-intro__text p { color: var(--color-text-muted); margin-bottom: var(--sp-4); line-height: 1.7; }
.about-intro__text .btn { margin-top: var(--sp-4); }

.about-intro__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4);
}
.about-stat {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--sp-6);
  text-align: center;
}
.about-stat__num {
  display: block;
  font-family: var(--font-heading);
  font-size: var(--text-4xl);
  font-weight: 800;
  color: var(--color-accent);
  line-height: 1.1;
}
.about-stat__label {
  display: block;
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
  margin-top: var(--sp-2);
}

.about-features__heading {
  font-size: var(--text-3xl);
  color: var(--color-text);
  text-align: center;
  margin-bottom: var(--sp-12);
}
.about-features__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: var(--sp-6);
}
.about-feature-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--sp-8);
  transition: box-shadow var(--transition);
}
.about-feature-card:hover { box-shadow: var(--shadow-md); }
.about-feature-card__icon {
  width: 48px;
  height: 48px;
  background: rgba(26,86,219,.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  margin-bottom: var(--sp-5);
}
.about-feature-card__icon svg { width: 26px; height: 26px; }
.about-feature-card__title {
  font-size: var(--text-xl);
  color: var(--color-text);
  margin-bottom: var(--sp-3);
}
.about-feature-card__desc { font-size: var(--text-sm); color: var(--color-text-muted); line-height: 1.65; }

.about-commitment__inner {
  display: flex;
  gap: var(--sp-10);
  align-items: flex-start;
}
.about-commitment__badge {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  background: var(--color-accent);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.about-commitment__badge svg { width: 34px; height: 34px; }
.about-commitment__title {
  font-size: var(--text-3xl);
  color: var(--color-text);
  margin-bottom: var(--sp-4);
}
.about-commitment__text p { color: var(--color-text-muted); margin-bottom: var(--sp-3); line-height: 1.7; }
@media (max-width: 599px) {
  .about-commitment__inner { flex-direction: column; }
}

/* ══ CONTACT PAGE ════════════════════════════════════════════════ */
.contact-info-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-5);
}
@media (max-width: 639px) { .contact-info-cards { grid-template-columns: 1fr; } }
@media (min-width: 1024px) { .contact-info-cards { grid-template-columns: repeat(4, 1fr); } }
.contact-info-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--sp-6);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.contact-info-card__icon {
  width: 48px;
  height: 48px;
  background: var(--color-accent);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin: 0 auto var(--sp-4);
}
.contact-info-card__icon svg { width: 24px; height: 24px; }
.contact-info-card__label {
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
  margin-bottom: var(--sp-2);
}
.contact-info-card__value {
  display: block;
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--sp-2);
  text-decoration: none;
  transition: color var(--transition);
  white-space: nowrap;
}
a.contact-info-card__value:hover { color: var(--color-accent); }
.contact-info-card__note { font-size: var(--text-sm); color: var(--color-text-muted); }

/* Contact form layout */
.contact-form-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-12);
  align-items: start;
}
@media (min-width: 900px) {
  .contact-form-wrap { grid-template-columns: 1fr 1.6fr; }
}

.contact-form-copy__title {
  font-size: var(--text-3xl);
  color: var(--color-text);
  margin-bottom: var(--sp-4);
}
.contact-form-copy > p { color: var(--color-text-muted); margin-bottom: var(--sp-6); line-height: 1.65; }
.contact-form-copy__list { display: flex; flex-direction: column; gap: var(--sp-3); }
.contact-form-copy__list li {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text);
}
.contact-form-copy__check {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--color-accent);
}

/* Contact form fields */
.contact-form {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--sp-8) var(--sp-8);
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
}
.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4);
}
@media (max-width: 599px) { .contact-form__row { grid-template-columns: 1fr; } }
.contact-form__group { display: flex; flex-direction: column; gap: var(--sp-2); }
.contact-form__label {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text);
}
.contact-form__input {
  width: 100%;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--sp-3) var(--sp-4);
  font-size: var(--text-base);
  color: var(--color-text);
  background: var(--color-bg);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.contact-form__input.is-invalid { border-color: #ef4444; box-shadow: 0 0 0 3px rgba(239,68,68,.15); }
.contact-form__input:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(26,86,219,.15);
}
.contact-form__select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none' stroke='%2355607a' stroke-width='1.5'%3E%3Cpath d='M5 8l5 5 5-5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; background-size: 18px; padding-right: var(--sp-10); }
.contact-form__textarea { resize: vertical; min-height: 120px; }
.contact-form__submit { align-self: flex-start; }

/* ── Contact Form Banners ─────────────────────────────────────── */
.contact-form-banner { display: flex; align-items: flex-start; gap: var(--sp-3); padding: var(--sp-4) var(--sp-5); border-radius: var(--radius-md); font-size: var(--text-sm); font-weight: 600; line-height: 1.5; margin-top: var(--sp-6); }
.contact-form-banner svg { width: 20px; height: 20px; flex-shrink: 0; margin-top: 1px; }
.contact-form-banner--success { background: #ecfdf5; border: 1px solid #6ee7b7; color: #065f46; }
.contact-form-banner--error { background: #fef2f2; border: 1px solid #fca5a5; color: #991b1b; }
.contact-form-banner--error a { color: #991b1b; text-decoration: underline; }

/* Restore hidden attribute semantics — must come last so source order beats
   any display:flex/grid set on the same element by component rules above. */
[hidden] { display: none; }

/* ── Reilly Media credit ────────────────────────────────────── */
.footer-bottom__built-by { width: 100%; text-align: center; font-size: 0.7rem; color: rgba(255,255,255,.18); margin: 0; padding: 0.4rem 0 0.9rem; }
.footer-bottom__built-by a { color: rgba(255,255,255,.28); text-decoration: none; transition: color 0.2s; }
.footer-bottom__built-by a:hover { color: var(--color-accent); }
.footer-rm-link { display: inline-flex; align-items: center; gap: 0.45rem; }
.footer-rm-mark { display: inline-flex; align-items: center; justify-content: center; width: 26px; height: 26px; background: #fff; color: #0c0e14; border-radius: 4px; font-family: var(--font-body); font-size: 10px; font-weight: 800; letter-spacing: 0.02em; flex-shrink: 0; }

/* ── CSP helpers (replaces inline style=) ─────────────────────────────── */
.hero--feature { isolation: isolate; }
.hero--feature__bg-picture { position: absolute; inset: 0; width: 100%; height: 100%; display: block; z-index: var(--z-below); }
.hero--feature__bg-img    { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; display: block; }
.why-us-feature__cta      { margin-top: 2rem; }
.section--surface         { background: var(--color-surface); }
