/* ==========================================================================
   48First — Luxury technology integrator
   Brand: navy #1e2a44 · logo gold #9B7648
   ========================================================================== */

:root {
  --navy: #1e2a44;
  --navy-deep: #0e1420;
  --navy-soft: #2a3854;
  --accent: #9b7648;
  --accent-light: #b8935f;
  --accent-muted: rgba(155, 118, 72, 0.65);
  --text: #1a1f2e;
  --text-soft: #5c6370;
  --muted: #8a919c;
  --bg: #fafaf8;
  --bg-elevated: #ffffff;
  --border: rgba(30, 42, 68, 0.08);
  --border-strong: rgba(30, 42, 68, 0.14);
  --white-90: rgba(255, 255, 255, 0.92);
  --white-70: rgba(255, 255, 255, 0.7);
  --white-50: rgba(255, 255, 255, 0.5);
  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-body: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --header-height: 5.25rem;
  --section-y: clamp(5rem, 9vw, 8rem);
  --container: min(72rem, calc(100% - 3rem));
  --container-wide: min(80rem, calc(100% - 3rem));
  --ease: cubic-bezier(0.25, 0.1, 0.25, 1);
}

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

.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;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg-elevated);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1.15;
  color: var(--navy);
}

p {
  margin: 0;
}

a {
  color: inherit;
}

/* Header
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition:
    border-color 0.3s var(--ease),
    background 0.3s var(--ease);
}

.site-header.is-scrolled {
  border-color: var(--border);
  background: rgba(255, 255, 255, 0.96);
}

.site-header-inner {
  width: var(--container-wide);
  max-width: 80rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  height: 100%;
}

.site-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  padding: 0.375rem 0;
}

.site-logo img {
  display: block;
  width: auto;
  height: 2.75rem;
  max-width: min(220px, 46vw);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.125rem;
}

.nav-link {
  padding: 0.5rem 0.75rem;
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  color: var(--text-soft);
  text-decoration: none;
  transition: color 0.2s var(--ease);
}

.nav-link:hover {
  color: var(--navy);
}

.nav-link-active {
  color: var(--navy);
  font-weight: 500;
}

.header-actions {
  display: flex;
  align-items: center;
}

.site-cta {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--navy);
  border: 1px solid var(--border-strong);
  transition:
    border-color 0.2s var(--ease),
    color 0.2s var(--ease);
}

.site-cta:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 1.25rem;
  height: 1px;
  margin: 0 auto;
  background: var(--navy);
  transition:
    transform 0.25s var(--ease),
    opacity 0.25s var(--ease);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

@media (max-width: 960px) {
  .nav-toggle {
    display: flex;
    margin-left: auto;
  }

  .header-actions {
    display: none;
  }

  .site-nav {
    position: fixed;
    inset: var(--header-height) 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1.5rem;
    background: var(--bg-elevated);
    border-bottom: 1px solid var(--border);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-4px);
    transition:
      opacity 0.25s var(--ease),
      transform 0.25s var(--ease),
      visibility 0.25s;
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-link {
    padding: 0.875rem 0;
    font-size: 0.9375rem;
    border-bottom: 1px solid var(--border);
  }

  .nav-link:last-child {
    border-bottom: none;
  }
}

/* Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  overflow: hidden;
  color: var(--white-90);
  background: var(--navy-deep);
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(14, 20, 32, 0.88) 0%,
    rgba(14, 20, 32, 0.55) 40%,
    rgba(14, 20, 32, 0.25) 100%
  );
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: var(--container);
  max-width: 72rem;
  margin: 0 auto;
}

.hero-eyebrow,
.hero-badge {
  display: block;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-muted);
}

.hero h1 {
  margin: 1.25rem 0 0;
  max-width: 16ch;
  font-size: clamp(2.5rem, 5.5vw, 4.25rem);
  font-weight: 300;
  line-height: 1.08;
  color: #fff;
}

.hero h1 em,
.hero h1 span {
  font-style: normal;
  color: #fff;
}

.hero-lead {
  max-width: 36rem;
  margin-top: 1.75rem;
  font-size: clamp(1rem, 1.8vw, 1.125rem);
  font-weight: 300;
  line-height: 1.75;
  color: var(--white-70);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2.75rem;
}

.hero-inner > .btn-primary,
.hero-inner > .btn {
  margin-top: 2.75rem;
}

body.page-home .hero {
  min-height: clamp(28rem, 82vh, 40rem);
  display: flex;
  align-items: center;
}

body.page-home .hero-inner {
  padding: clamp(5rem, 12vw, 8rem) 0;
}

body.page-contact .hero-inner,
body.page-retail .hero-inner,
body.page-managed .hero-inner,
body.page-about .hero-inner {
  padding: clamp(4.5rem, 10vw, 6.5rem) 0;
  max-width: 40rem;
}

body.page-retail .hero h1,
body.page-managed .hero h1,
body.page-about .hero h1,
body.page-contact .hero h1 {
  max-width: none;
}

body.page-retail .hero-lead,
body.page-managed .hero-lead {
  max-width: 32rem;
}

/* Credentials strip
   -------------------------------------------------------------------------- */
.credentials {
  position: relative;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
  overflow: hidden;
}

.credentials-map {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.45;
  pointer-events: none;
}

.credentials-map img {
  width: min(56rem, 100%);
  height: auto;
}

.credentials-inner {
  position: relative;
  z-index: 1;
  width: var(--container-wide);
  max-width: 80rem;
  margin: 0 auto;
  padding: 1.75rem 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 2rem;
  list-style: none;
}

.credentials li {
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--text-soft);
}

.credentials li strong {
  font-weight: 500;
  color: var(--navy);
}

/* Trusted brands
   -------------------------------------------------------------------------- */
.trusted-brands {
  padding: var(--section-y) 0;
  border-bottom: 1px solid var(--border);
  background: var(--bg-elevated);
}

.trusted-brands-inner {
  width: var(--container-wide);
  max-width: 80rem;
  margin: 0 auto;
  text-align: center;
}

.trusted-brands-inner .section-label {
  margin-bottom: 1rem;
}

.trusted-brands-inner h2 {
  font-weight: 300;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  max-width: 28rem;
  margin: 0 auto 1rem;
}

.trusted-brands-intro {
  max-width: 36rem;
  margin: 0 auto 3rem;
  color: var(--text-soft);
  font-size: 1.0625rem;
}

.trusted-brands-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1.25rem 1.75rem;
  list-style: none;
  padding: 0;
  margin: 0;
  align-items: center;
}

.trusted-brands-grid li {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 4.5rem;
  padding: 0.75rem 0.5rem;
}

.trusted-brands-grid img {
  display: block;
  max-width: 100%;
  max-height: 2.75rem;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.62;
  transition:
    opacity 0.35s var(--ease),
    filter 0.35s var(--ease);
}

.trusted-brands-grid li:hover img,
.trusted-brands-grid li:focus-within img {
  opacity: 0.92;
  filter: grayscale(0.35);
}

@media (max-width: 960px) {
  .trusted-brands-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .trusted-brands-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem 1.25rem;
  }

  .trusted-brands-grid img {
    max-height: 2.25rem;
  }
}

@media (max-width: 420px) {
  .trusted-brands-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (prefers-reduced-motion: reduce) {
  .trusted-brands-grid img {
    transition: none;
  }
}

/* Buttons
   -------------------------------------------------------------------------- */
.btn-primary,
.btn-secondary,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.625rem;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition:
    background 0.2s var(--ease),
    border-color 0.2s var(--ease),
    color 0.2s var(--ease);
}

.btn-primary,
.btn {
  color: var(--navy-deep);
  background: #fff;
  border: 1px solid #fff;
}

.btn-primary:hover,
.btn:hover {
  background: rgba(255, 255, 255, 0.92);
}

.btn-secondary {
  color: var(--white-90);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.6);
}

.btn-outline {
  color: var(--navy);
  background: transparent;
  border: 1px solid var(--border-strong);
}

.btn-outline:hover {
  border-color: var(--navy);
}

.btn-arrow::after {
  content: "→";
  font-weight: 400;
}

.hero .btn-primary {
  color: var(--navy-deep);
}

.section .btn-primary,
.cta-band .btn-primary {
  color: #fff;
  background: var(--accent);
  border-color: var(--accent);
}

.section .btn-primary:hover,
.cta-band .btn-primary:hover {
  background: var(--accent-light);
  border-color: var(--accent-light);
}

/* Sections
   -------------------------------------------------------------------------- */
.section {
  padding: var(--section-y) 0;
}

.section-inner {
  width: var(--container);
  max-width: 56rem;
  margin: 0 auto;
}

.section-label {
  display: block;
  margin-bottom: 1.25rem;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
}

.section h2 {
  margin: 0;
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 300;
  max-width: 22ch;
}

.section-inner--center {
  text-align: center;
}

.section-inner--center h2 {
  max-width: none;
  margin-left: auto;
  margin-right: auto;
}

.section-inner--center .section-intro {
  margin-left: auto;
  margin-right: auto;
}

.section-intro {
  max-width: 36rem;
  margin-top: 1.5rem;
  font-size: 1.0625rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--text-soft);
}

.section--alt {
  background: var(--bg);
}

.section--dark {
  background: var(--navy-deep);
  color: var(--white-70);
}

.section--dark h2,
.section--dark h3 {
  color: #fff;
}

.section--dark .section-label {
  color: var(--accent-muted);
}

.section--dark .section-intro {
  color: var(--white-50);
}

/* Capabilities
   -------------------------------------------------------------------------- */
.capabilities {
  width: var(--container);
  max-width: 56rem;
  margin: 3.5rem auto 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(9rem, 1fr));
  gap: 0.5rem 2rem;
}

.capabilities li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 0;
  font-size: 0.9375rem;
  font-weight: 400;
  color: var(--text-soft);
  border-bottom: 1px solid var(--border);
}

.capability-icon {
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
}

/* Service catalog
   -------------------------------------------------------------------------- */
.service-groups {
  width: var(--container-wide);
  max-width: 80rem;
  margin: 4rem auto 0;
}

.service-group + .service-group {
  margin-top: 3.5rem;
}

.service-group-label {
  margin: 0 0 1.25rem;
  padding-bottom: 0.75rem;
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  border-bottom: 1px solid var(--border);
}

.service-catalog {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--border);
}

.service-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 2rem 2rem 2rem 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  color: inherit;
  transition: background 0.2s var(--ease);
}

.service-catalog .service-card:nth-child(3n + 1) {
  padding-right: 2.5rem;
}

.service-catalog .service-card:nth-child(3n + 2) {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
}

.service-catalog .service-card:nth-child(3n) {
  padding-left: 2.5rem;
}

.service-card:hover {
  background: var(--bg);
}

.service-card h3 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--navy);
}

.service-card p {
  flex: 1;
  margin: 0;
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-soft);
}

.service-card-cta {
  margin-top: 1.25rem;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--accent);
}

.service-card-cta::after {
  content: " →";
}

.related-services {
  width: var(--container);
  max-width: 56rem;
  margin: 4rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.related-services h2 {
  margin: 0 0 1.25rem;
  font-size: 1.125rem;
  font-weight: 400;
}

.related-services ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
}

.related-services a {
  font-size: 0.875rem;
  color: var(--text-soft);
  text-decoration: none;
  transition: color 0.2s var(--ease);
}

.related-services a:hover {
  color: var(--accent);
}

@media (max-width: 900px) {
  .service-catalog {
    grid-template-columns: 1fr;
  }

  .service-catalog .service-card,
  .service-catalog .service-card:nth-child(3n + 1),
  .service-catalog .service-card:nth-child(3n + 2),
  .service-catalog .service-card:nth-child(3n) {
    padding: 1.75rem 0;
    border-left: none;
    border-right: none;
  }
}

/* Grid & cards
   -------------------------------------------------------------------------- */
.grid {
  display: grid;
  gap: 0;
  width: var(--container-wide);
  max-width: 80rem;
  margin: 4rem auto 0;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--border);
}

.grid--2 {
  max-width: 56rem;
  grid-template-columns: repeat(2, 1fr);
}

body.page-contact .grid--2 {
  padding-bottom: clamp(2rem, 5vw, 4rem);
}

.card {
  padding: 2.5rem 2rem 2.5rem 0;
  text-align: left;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border);
}

.card-media {
  margin-bottom: 1.5rem;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: var(--bg);
}

.card-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.grid .card:nth-child(odd) {
  padding-right: 3rem;
  border-right: 1px solid var(--border);
}

.grid .card:nth-child(even) {
  padding-left: 3rem;
}

.card h2,
.card h3 {
  margin: 0 0 1rem;
  font-size: 1.375rem;
  font-weight: 400;
}

.card p {
  color: var(--text-soft);
  line-height: 1.75;
  font-size: 0.9375rem;
  font-weight: 300;
}

.card p + p {
  margin-top: 0.75rem;
}

.card a {
  color: var(--navy);
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s var(--ease);
}

.card a:hover {
  color: var(--accent);
}

.card--contact {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.card--contact h2,
.card--contact h3 {
  font-size: 1.5rem;
}

.card-phone {
  margin-top: 1rem;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.card-phone a {
  text-decoration: none;
}

@media (max-width: 768px) {
  .grid,
  .grid--2 {
    grid-template-columns: 1fr;
  }

  .grid .card:nth-child(odd),
  .grid .card:nth-child(even) {
    padding: 2rem 0;
    border-right: none;
  }
}

/* Feature list
   -------------------------------------------------------------------------- */
.feature-list {
  width: var(--container);
  max-width: 56rem;
  margin: 4rem auto 0;
  padding: 0;
  display: grid;
  gap: 0;
}

.section .feature-list {
  margin-top: 4rem;
}

.feature-item {
  padding: 2.25rem 0;
  border-bottom: 1px solid var(--border);
}

.feature-item--media {
  display: grid;
  grid-template-columns: min(12rem, 34%) 1fr;
  gap: 2rem;
  align-items: center;
}

.feature-media {
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
}

.feature-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-item:first-child {
  border-top: 1px solid var(--border);
}

.feature-item h3 {
  margin: 0 0 0.75rem;
  font-size: 1.25rem;
  font-weight: 400;
}

.feature-item p {
  font-size: 0.9375rem;
  font-weight: 300;
  color: var(--text-soft);
  line-height: 1.75;
  max-width: 40rem;
}

/* CTA band
   -------------------------------------------------------------------------- */
.cta-band {
  padding: var(--section-y) 0;
  background: var(--navy-deep);
  color: var(--white-90);
}

.cta-band-inner {
  width: var(--container);
  max-width: 40rem;
  margin: 0 auto;
  text-align: center;
}

.cta-band h2 {
  margin: 0;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 300;
  color: #fff;
}

.cta-band p {
  margin-top: 1.25rem;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--white-70);
}

.cta-band .btn-primary {
  margin-top: 2.25rem;
}

/* Footer
   -------------------------------------------------------------------------- */
.site-footer {
  padding: 4.5rem 0 2.5rem;
  background: var(--bg);
  color: var(--text-soft);
}

.site-footer-inner {
  width: var(--container-wide);
  max-width: 80rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
}

.footer-logo {
  display: block;
  width: auto;
  height: 2.5rem;
  max-width: 200px;
}

.footer-blurb {
  max-width: 24rem;
  margin-top: 1.25rem;
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.75;
}

.footer-heading {
  margin: 0 0 1.25rem;
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-nav a {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--text-soft);
  text-decoration: none;
  transition: color 0.2s var(--ease);
}

.footer-nav a:hover {
  color: var(--navy);
}

.footer-bottom {
  width: var(--container-wide);
  max-width: 80rem;
  margin: 0 auto;
  padding-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 2rem;
  justify-content: space-between;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--muted);
}

@media (max-width: 768px) {
  .site-footer-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

/* About page
   -------------------------------------------------------------------------- */
.about-split {
  width: var(--container-wide);
  max-width: 80rem;
  margin: 0 auto;
  display: grid;
  gap: 4rem;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: start;
}

.about-mission {
  padding: 2.5rem;
  background: var(--navy-deep);
  color: var(--white-90);
}

.about-mission h2 {
  color: #fff;
  font-weight: 300;
}

.about-mission p {
  margin-top: 1.25rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--white-70);
}

.about-mission .section-label {
  color: var(--accent-muted);
}

.about-prose h2 {
  font-weight: 300;
  max-width: none;
}

.about-prose p {
  margin-top: 1.25rem;
  font-size: 1.0625rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--text-soft);
}

.about-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.about-meta dt {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.about-meta dd {
  margin: 0.375rem 0 0;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--navy);
}

.why-grid {
  width: var(--container);
  max-width: 56rem;
  margin: 4rem auto 0;
  display: grid;
  gap: 0;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--border);
}

.why-item {
  padding: 2.5rem 2rem 2.5rem 0;
  border-bottom: 1px solid var(--border);
}

.why-item:not(:last-child) {
  border-right: 1px solid var(--border);
}

.why-item h3 {
  margin: 0 0 1rem;
  font-size: 1.125rem;
  font-weight: 400;
}

.why-item p {
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--text-soft);
}

.partners-strip {
  padding: 3rem 0;
  border-block: 1px solid var(--border);
  background: var(--bg);
}

.partners-strip-inner {
  width: var(--container);
  max-width: 56rem;
  margin: 0 auto;
}

.partners-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2.5rem;
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
}

.partners-list li {
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--muted);
}

.section-split {
  width: var(--container-wide);
  max-width: 80rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.section-split .section-inner {
  max-width: none;
  width: 100%;
}

.section-split .capabilities {
  width: 100%;
  max-width: none;
}

.about-mission-wrap {
  width: var(--container-wide);
  max-width: 80rem;
  margin: 4rem auto 0;
}

.section-figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-elevated);
}

.section-figure img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.section-figure figcaption {
  padding: 0.75rem 1rem;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  color: var(--muted);
  border-top: 1px solid var(--border);
}

.diagram-band {
  width: var(--container);
  max-width: 48rem;
  margin: 4rem auto 0;
}

.diagram-band img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid var(--border);
}

.about-visual {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--border);
}

.about-visual img {
  display: block;
  width: 100%;
  height: auto;
}

.about-split--story {
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}

@media (max-width: 900px) {
  .about-split {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-split--story {
    grid-template-columns: 1fr;
  }

  .section-split {
    grid-template-columns: 1fr;
  }

  .feature-item--media {
    grid-template-columns: 1fr;
  }

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

  .why-item {
    padding: 2rem 0;
    border-right: none !important;
  }

  .site-logo img {
    height: 2.25rem;
  }
}
