/* NJM ALNYL — shared styles (static site) */

:root {
  --color-bg: #eef1f6;
  --color-bg-warm: #ebe8e4;
  --color-surface: #ffffff;
  --color-text: #121a26;
  --color-muted: #5a6575;
  --color-border: #d8dee6;
  --color-primary: #0b4f8c;
  --color-primary-hover: #083a68;
  --color-accent: #0b6cff;
  --color-accent-soft: rgba(11, 108, 255, 0.09);
  --shadow-sm: 0 1px 2px rgba(10, 22, 40, 0.06);
  --shadow-md: 0 12px 32px rgba(10, 22, 40, 0.1);
  --shadow-lg: 0 24px 56px rgba(8, 20, 40, 0.18);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --font: "Source Sans 3", system-ui, -apple-system, sans-serif;
  --font-display: "Outfit", system-ui, sans-serif;
  --header-h: 72px;
  --container: min(1120px, calc(100% - 2.5rem));
  --container-wide: min(1280px, calc(100% - 2.5rem));
  --transition: 180ms ease;
}

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

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--color-primary);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

a:hover {
  color: var(--color-primary-hover);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 9999;
  padding: 0.75rem 1.25rem;
  background: var(--color-primary);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  border-radius: 0 0 var(--radius-sm) 0;
}

.skip-link:focus {
  left: 0;
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.container-wide {
  width: var(--container-wide);
  margin-inline: auto;
}

/* ——— Navbar ——— */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  position: relative;
  width: var(--container);
  margin-inline: auto;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
}

.nav-brand:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 4px;
  border-radius: var(--radius-sm);
}

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

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  color: var(--color-text);
}

.brand-tag {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--color-muted);
  max-width: 200px;
}

@media (max-width: 520px) {
  .brand-tag {
    display: none;
  }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  display: block;
  padding: 0.5rem 1rem;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--color-muted);
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}

.nav-links a:hover {
  color: var(--color-primary);
  background: var(--color-accent-soft);
}

.nav-links a.active {
  color: var(--color-primary);
  background: var(--color-accent-soft);
}

.nav-links a:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

.nav-cta {
  margin-left: 0.5rem;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
  margin-left: auto;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-text);
  margin-inline: auto;
  transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

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

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

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

@media (min-width: 769px) {
  .nav-toggle {
    display: none;
    margin-left: 0;
  }

  .nav-links-wrap {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex: 1;
    gap: 0.5rem;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links-wrap {
    position: absolute;
    top: 100%;
    left: 50%;
    width: 100vw;
    margin-left: -50vw;
    z-index: 99;
    background: var(--color-surface);
    border-bottom: 1px solid var(--color-border);
    box-shadow: var(--shadow-md);
    padding: 1rem 1.25rem 1.25rem;
    transform: translateY(-6px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform 220ms ease, opacity 220ms ease, visibility 220ms;
  }

  .nav-links-wrap.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav-links {
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
  }

  .nav-links a {
    padding: 0.75rem 1rem;
  }

  .nav-cta {
    margin-left: 0;
    margin-top: 0.75rem;
  }

  .nav-cta .btn {
    width: 100%;
    text-align: center;
  }
}

/* ——— Buttons ——— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem 1.35rem;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.btn:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

.btn-primary {
  background: var(--color-primary);
  color: #fff;
  box-shadow: 0 4px 14px rgba(11, 79, 140, 0.35);
}

.btn-primary:hover {
  background: var(--color-primary-hover);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(11, 79, 140, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--color-primary);
  border-color: rgba(11, 79, 140, 0.35);
}

.btn-outline:hover {
  background: var(--color-accent-soft);
  border-color: var(--color-primary);
  color: var(--color-primary-hover);
}

.btn-lg {
  padding: 0.85rem 1.75rem;
  font-size: 1rem;
}

/* ——— Hero (photographic) ——— */
.hero--photo {
  position: relative;
  isolation: isolate;
  min-height: min(88vh, 860px);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

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

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.4s ease-in-out;
  pointer-events: none;
}

.hero-slide.is-active {
  opacity: 1;
  z-index: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.03);
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide {
    transition: none;
  }

  .hero-slide img {
    transform: none;
  }
}

.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    110deg,
    rgba(6, 14, 28, 0.94) 0%,
    rgba(8, 26, 52, 0.82) 38%,
    rgba(10, 45, 82, 0.5) 72%,
    rgba(12, 55, 95, 0.35) 100%
  );
  pointer-events: none;
}

.hero-shell {
  position: relative;
  z-index: 3;
  width: var(--container-wide);
  margin-inline: auto;
  padding: clamp(5rem, 12vh, 7rem) 0 clamp(2.5rem, 6vw, 4rem);
}

.hero-grid-new {
  display: grid;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: end;
}

@media (min-width: 960px) {
  .hero-grid-new {
    grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.75fr);
    align-items: end;
  }
}

.hero-eyebrow {
  margin: 0 0 1rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.hero-eyebrow span {
  color: #8ec5ff;
}

.hero--photo h1 {
  font-family: var(--font-display);
  margin: 0 0 1.25rem;
  font-size: clamp(2.35rem, 5.2vw, 3.65rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  max-width: 15ch;
}

.hero-lead-new {
  margin: 0 0 1.75rem;
  font-size: clamp(1.05rem, 1.35vw, 1.2rem);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.88);
  max-width: 38ch;
  font-weight: 400;
}

.hero-actions-new {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.btn-hero-solid {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.6rem;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  color: #071525;
  background: #fff;
  border: none;
  border-radius: 2px;
  box-shadow: var(--shadow-lg);
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.btn-hero-solid:hover {
  background: #e8f1ff;
  color: #071525;
  transform: translateY(-2px);
}

.btn-hero-solid:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

.btn-hero-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.5rem;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  color: #fff;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 2px;
  transition: background var(--transition), border-color var(--transition);
}

.btn-hero-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.75);
  color: #fff;
}

.btn-hero-ghost:focus-visible {
  outline: 2px solid #8ec5ff;
  outline-offset: 3px;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem 1.5rem;
  margin: 0;
  padding: 1.35rem 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-proof div {
  margin: 0;
}

.hero-proof dt {
  margin: 0 0 0.2rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.hero-proof dd {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
}

.hero-proof a {
  color: #b8d9ff;
  text-decoration: none;
}

.hero-proof a:hover {
  text-decoration: underline;
  color: #fff;
}

.hero-side {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 960px) {
  .hero-side {
    margin-bottom: 0.25rem;
  }
}

.hero-inset {
  margin: 0;
  position: relative;
  border-left: 4px solid var(--color-accent);
  box-shadow: var(--shadow-lg);
}

.hero-inset img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.hero-inset figcaption {
  padding: 0.65rem 1rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(8px);
}

.hero-stack {
  list-style: none;
  margin: 0;
  padding: 0.85rem 1rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  backdrop-filter: blur(12px);
}

.hero-stack li {
  display: grid;
  grid-template-columns: 2.25rem 1fr;
  gap: 0.65rem;
  align-items: baseline;
  padding: 0.5rem 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stack li:last-child {
  border-bottom: none;
}

.hero-stack span {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  color: #8ec5ff;
  letter-spacing: 0.04em;
}

/* ——— Editorial band ——— */
.band-dark {
  background: #071525;
  color: rgba(255, 255, 255, 0.92);
  padding: 1.75rem 0;
  border-block: 1px solid rgba(255, 255, 255, 0.08);
}

.band-dark-inner {
  width: var(--container-wide);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 720px) {
  .band-dark-inner {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.band-item h3 {
  font-family: var(--font-display);
  margin: 0 0 0.35rem;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #fff;
}

.band-item p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.65);
}

/* ——— Showcase (zigzag) ——— */
.section-showcase {
  background: var(--color-surface);
}

.showcase-intro {
  width: var(--container);
  margin-inline: auto;
  padding: clamp(3.5rem, 6vw, 5rem) 0 2rem;
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .showcase-intro {
    grid-template-columns: 1fr 1.2fr;
    align-items: end;
  }
}

.showcase-intro .section-label {
  margin-bottom: 0.35rem;
}

.showcase-intro h2 {
  font-family: var(--font-display);
  margin: 0;
  font-size: clamp(1.85rem, 3.2vw, 2.5rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--color-text);
}

.showcase-intro .lead {
  margin: 0;
  font-size: 1.05rem;
  color: var(--color-muted);
  line-height: 1.65;
  max-width: 48ch;
}

.showcase-rows {
  width: var(--container-wide);
  margin-inline: auto;
  padding-bottom: clamp(3rem, 6vw, 5rem);
  display: flex;
  flex-direction: column;
  gap: 0;
}

.showcase-row {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--color-border);
}

@media (min-width: 880px) {
  .showcase-row {
    grid-template-columns: 1fr 1fr;
    min-height: 320px;
  }

  .showcase-row--flip .showcase-visual {
    order: 2;
  }

  .showcase-row--flip .showcase-copy {
    order: 1;
  }
}

.showcase-visual {
  position: relative;
  min-height: 240px;
  overflow: hidden;
}

.showcase-visual img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
}

.showcase-copy {
  padding: clamp(1.75rem, 4vw, 2.75rem) clamp(1.25rem, 3vw, 2.5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--color-bg);
}

.showcase-copy .tag {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 0.65rem;
}

.showcase-copy h3 {
  font-family: var(--font-display);
  margin: 0 0 0.75rem;
  font-size: clamp(1.35rem, 2vw, 1.6rem);
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: -0.02em;
}

.showcase-copy p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--color-muted);
  max-width: 42ch;
}

/* ——— Process ——— */
.section-process {
  background: var(--color-bg-warm);
  position: relative;
}

.section-process::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%230b4f8c' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 1;
  pointer-events: none;
}

.process-wrap {
  position: relative;
  width: var(--container);
  margin-inline: auto;
  padding: clamp(3.5rem, 6vw, 5rem) 0;
}

.process-head {
  max-width: 520px;
  margin-bottom: 2.5rem;
}

.process-head h2 {
  font-family: var(--font-display);
  margin: 0 0 0.65rem;
  font-size: clamp(1.75rem, 3vw, 2.2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.process-head p {
  margin: 0;
  color: var(--color-muted);
  font-size: 1.05rem;
  line-height: 1.6;
}

.process-track {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-left: 2px solid rgba(11, 79, 140, 0.2);
  padding-left: 1.75rem;
}

@media (min-width: 768px) {
  .process-track {
    border-left: none;
    padding-left: 0;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
  }

  .process-track li {
    border-left: 2px solid rgba(11, 79, 140, 0.25);
    padding-left: 1.25rem;
    margin-left: 0;
  }
}

.process-track li {
  padding-bottom: 1.75rem;
}

@media (min-width: 768px) {
  .process-track li {
    padding-bottom: 0;
  }
}

.process-num {
  font-family: var(--font-display);
  display: block;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  color: var(--color-primary);
  opacity: 0.35;
  margin-bottom: 0.5rem;
}

.process-track h3 {
  font-family: var(--font-display);
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
  font-weight: 700;
}

.process-track p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--color-muted);
  line-height: 1.55;
}

/* ——— Quote panel ——— */
.section-quote {
  background: var(--color-surface);
  padding: 0;
}

.quote-panel {
  width: var(--container-wide);
  margin-inline: auto;
  display: grid;
}

@media (min-width: 900px) {
  .quote-panel {
    grid-template-columns: 0.9fr 1.1fr;
    min-height: 380px;
  }
}

.quote-panel-visual {
  min-height: 280px;
  overflow: hidden;
}

.quote-panel-visual img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

.quote-panel-copy {
  padding: clamp(2rem, 5vw, 3.5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(135deg, #f8f9fc 0%, #eef2f8 100%);
  border-top: 1px solid var(--color-border);
}

@media (min-width: 900px) {
  .quote-panel-copy {
    border-top: none;
    border-left: 1px solid var(--color-border);
  }
}

.quote-panel blockquote {
  margin: 0;
  padding: 0 0 0 1.25rem;
  border-left: 4px solid var(--color-primary);
}

.quote-panel blockquote p {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.2vw, 1.55rem);
  font-weight: 600;
  line-height: 1.45;
  color: var(--color-text);
  letter-spacing: -0.02em;
}

.quote-panel cite {
  font-size: 0.85rem;
  font-style: normal;
  font-weight: 600;
  color: var(--color-muted);
  letter-spacing: 0.04em;
}

/* ——— CTA with photo ——— */
.cta-photo {
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(3rem, 8vw, 5rem) 1.5rem;
  overflow: hidden;
}

.cta-photo-bg {
  position: absolute;
  inset: 0;
}

.cta-photo-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 12, 24, 0.75) 0%, rgba(7, 21, 37, 0.88) 100%);
  z-index: 1;
}

.cta-photo-inner {
  position: relative;
  z-index: 2;
  max-width: 560px;
}

.cta-photo-inner h2 {
  font-family: var(--font-display);
  margin: 0 0 0.75rem;
  font-size: clamp(1.65rem, 3vw, 2.15rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
}

.cta-photo-inner p {
  margin: 0 0 1.5rem;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.55;
}

.cta-photo .btn-hero-solid {
  color: var(--color-primary);
}

.cta-photo .btn-hero-solid:hover {
  background: #fff;
}

/* ——— Sections ——— */
.section {
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.section.section--flush-top {
  padding-top: 0;
}

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

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2.75rem;
}

.section-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.section-title {
  font-family: var(--font-display);
  margin: 0 0 0.75rem;
  font-size: clamp(1.65rem, 3vw, 2.1rem);
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: -0.02em;
}

.section-subtitle {
  margin: 0;
  color: var(--color-muted);
  font-size: 1.05rem;
}

/* ——— Services grid ——— */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1000px) {
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
  }
}

.service-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), border-color var(--transition), transform var(--transition);
}

.service-card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(13, 110, 253, 0.25);
  transform: translateY(-2px);
}

.service-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-accent-soft);
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
}

.service-icon svg {
  color: var(--color-primary);
}

.service-card h3 {
  font-family: var(--font-display);
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  font-weight: 600;
}

.service-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--color-muted);
  line-height: 1.55;
}

/* ——— Split / about blocks ——— */
.split {
  display: grid;
  gap: 2rem;
  align-items: start;
}

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

.prose-block {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
}

.prose-block h2 {
  font-family: var(--font-display);
  margin: 0 0 0.75rem;
  font-size: 1.25rem;
  color: var(--color-primary);
}

.prose-block p {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.98rem;
}

.prose-block + .prose-block {
  margin-top: 1.25rem;
}

/* ——— CTA band ——— */
.cta-band {
  background: linear-gradient(135deg, var(--color-primary) 0%, #0a3d6b 100%);
  color: #fff;
  text-align: center;
  padding: clamp(2.75rem, 5vw, 4rem) 1.5rem;
}

.cta-band h2 {
  font-family: var(--font-display);
  margin: 0 0 0.75rem;
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
}

.cta-band p {
  margin: 0 0 1.5rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 520px;
  margin-inline: auto;
}

.cta-band .btn-primary {
  background: #fff;
  color: var(--color-primary);
  box-shadow: var(--shadow-md);
}

.cta-band .btn-primary:hover {
  background: #eef4ff;
}

/* ——— Contact ——— */
.contact-layout {
  display: grid;
  gap: 2rem;
}

@media (min-width: 900px) {
  .contact-layout {
    grid-template-columns: 1fr 1.1fr;
    align-items: start;
  }
}

.contact-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
}

.contact-card h2 {
  font-family: var(--font-display);
  margin: 0 0 1rem;
  font-size: 1.2rem;
}

.contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.contact-list li {
  display: flex;
  gap: 0.75rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--color-border);
  font-size: 0.95rem;
}

.contact-list li:last-child {
  border-bottom: none;
}

.contact-list strong {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-muted);
  margin-bottom: 0.2rem;
}

.contact-list a {
  font-weight: 500;
  word-break: break-word;
}

.form-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 520px) {
  .form-grid .row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
}

label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: var(--color-text);
}

input,
textarea {
  width: 100%;
  padding: 0.65rem 0.85rem;
  font-family: inherit;
  font-size: 1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: #fff;
  transition: border-color var(--transition), box-shadow var(--transition);
}

input:focus,
textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.2);
}

textarea {
  min-height: 140px;
  resize: vertical;
}

.form-hint {
  margin: 0.75rem 0 0;
  font-size: 0.8rem;
  color: var(--color-muted);
}

.form-status {
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  display: none;
}

.form-status.is-visible {
  display: block;
}

.form-status.success {
  background: #ecfdf5;
  color: #047857;
  border: 1px solid #a7f3d0;
}

.form-status.error {
  background: #fef2f2;
  color: #b91c1c;
  border: 1px solid #fecaca;
}

.map-wrap {
  margin-top: 1.25rem;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  aspect-ratio: 16 / 10;
  min-height: 220px;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* ——— Footer ——— */
.footer {
  background: #0c1929;
  color: rgba(255, 255, 255, 0.85);
  padding: 3rem 0 1.5rem;
  margin-top: 0;
}

.footer a {
  color: #fff;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

.footer-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 2rem;
  }
}

.footer-brand-box {
  display: inline-flex;
  align-items: center;
  background: #fff;
  border-radius: var(--radius-sm);
  padding: 0.5rem 0.75rem;
  margin-bottom: 1rem;
}

.footer-logo {
  height: 36px;
  width: auto;
}

.footer-legal {
  font-size: 0.8rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.75);
  max-width: 320px;
}

.footer h3 {
  font-family: var(--font-display);
  margin: 0 0 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.95);
}

.footer p,
.footer address {
  margin: 0;
  font-size: 0.9rem;
  font-style: normal;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
}

.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
}

/* ——— Page main ——— */
main:focus {
  outline: none;
}

.page-intro {
  padding: 2.25rem 0 0;
}

.page-intro .container {
  max-width: 720px;
}

.page-intro h1 {
  font-family: var(--font-display);
  margin: 0 0 0.5rem;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
}

.page-intro p {
  margin: 0;
  color: var(--color-muted);
  font-size: 1.05rem;
}

/* ——— Inner page hero (photo) ——— */
.page-hero {
  position: relative;
  isolation: isolate;
  min-height: min(52vh, 420px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
  margin-bottom: 0;
}

.page-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

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

.page-hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(6, 14, 28, 0.92) 0%,
    rgba(8, 28, 52, 0.78) 45%,
    rgba(10, 50, 88, 0.45) 100%
  );
  pointer-events: none;
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  width: var(--container-wide);
  margin-inline: auto;
  padding: clamp(4rem, 10vh, 5.5rem) 0 clamp(2rem, 4vw, 2.75rem);
}

.page-hero-inner .hero-eyebrow {
  margin-bottom: 0.65rem;
}

.page-hero-inner h1 {
  font-family: var(--font-display);
  margin: 0 0 0.75rem;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  max-width: 18ch;
}

.page-hero-lead {
  margin: 0;
  max-width: 42ch;
  font-size: clamp(1rem, 1.25vw, 1.125rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.88);
}

/* ——— About: editorial story ——— */
.about-story {
  width: var(--container-wide);
  margin-inline: auto;
  padding: clamp(3rem, 6vw, 4.5rem) 0;
  display: grid;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: start;
}

@media (min-width: 960px) {
  .about-story {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
    gap: 3rem;
  }

  .about-story-visual {
    position: sticky;
    top: calc(var(--header-h) + 1.5rem);
  }
}

.about-story-visual {
  margin: 0;
  border-left: 4px solid var(--color-accent);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.about-story-visual img {
  width: 100%;
  aspect-ratio: 4 / 5;
  max-height: 520px;
  object-fit: cover;
  display: block;
}

.about-story-visual figcaption {
  padding: 0.65rem 1rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-muted);
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
}

.about-story-body .section-label {
  margin-bottom: 0.5rem;
}

.about-story-body > h2 {
  font-family: var(--font-display);
  margin: 0 0 1rem;
  font-size: clamp(1.65rem, 2.8vw, 2.1rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--color-text);
}

.about-story-body .lead {
  margin: 0 0 1.5rem;
  font-size: 1.08rem;
  line-height: 1.65;
  color: var(--color-text);
  font-weight: 500;
}

.about-story-body p {
  margin: 0 0 1.1rem;
  color: var(--color-muted);
  font-size: 1.02rem;
  line-height: 1.65;
}

.about-story-body p:last-child {
  margin-bottom: 0;
}

/* ——— About: mission / vision cards ——— */
.about-mv {
  background: var(--color-bg-warm);
  position: relative;
  padding: clamp(3rem, 6vw, 4.5rem) 0;
}

.about-mv::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%230b4f8c' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.about-mv-inner {
  position: relative;
  width: var(--container);
  margin-inline: auto;
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .about-mv-inner {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

.mv-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  padding: clamp(1.75rem, 3vw, 2.25rem);
  border-radius: 2px;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--color-primary);
}

.mv-card h3 {
  font-family: var(--font-display);
  margin: 0 0 0.75rem;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: -0.02em;
}

.mv-card p {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--color-muted);
}

/* ——— About: principles ——— */
.about-principles {
  padding: clamp(3rem, 6vw, 4.5rem) 0;
  background: var(--color-surface);
}

.about-principles-inner {
  width: var(--container-wide);
  margin-inline: auto;
}

.about-principles-head {
  max-width: 540px;
  margin-bottom: 2rem;
}

.about-principles-head h2 {
  font-family: var(--font-display);
  margin: 0 0 0.5rem;
  font-size: clamp(1.6rem, 2.8vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.about-principles-head p {
  margin: 0;
  color: var(--color-muted);
  font-size: 1.05rem;
  line-height: 1.6;
}

.principles-grid {
  display: grid;
  gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

@media (min-width: 720px) {
  .principles-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
}

.principles-grid li {
  padding: 1.35rem 1.25rem;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 2px;
  border-top: 3px solid var(--color-accent);
}

.principles-grid strong {
  font-family: var(--font-display);
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 0.4rem;
  letter-spacing: -0.01em;
}

.principles-grid span {
  font-size: 0.92rem;
  color: var(--color-muted);
  line-height: 1.55;
}

/* ——— Legal name strip ——— */
.legal-strip {
  background: #071525;
  color: rgba(255, 255, 255, 0.88);
  padding: 1.5rem 0;
  text-align: center;
  border-block: 1px solid rgba(255, 255, 255, 0.08);
}

.legal-strip p {
  margin: 0 auto;
  max-width: min(920px, 92vw);
  font-size: clamp(0.75rem, 1.5vw, 0.85rem);
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1.5;
  text-transform: uppercase;
}

/* ——— Contact page shell ——— */
.contact-page-bg {
  background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-surface) 35%);
}

.contact-page-grid {
  width: var(--container-wide);
  margin-inline: auto;
  padding: clamp(2.5rem, 5vw, 3.5rem) 0 clamp(3.5rem, 7vw, 5rem);
  display: grid;
  gap: clamp(1.75rem, 3vw, 2.5rem);
}

@media (min-width: 960px) {
  .contact-page-grid {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 1.05fr);
    align-items: start;
    gap: 2.5rem 3rem;
  }
}

/* Contact page: details + map only */
.contact-page-grid--details {
  grid-template-columns: 1fr;
  align-items: stretch;
}

@media (min-width: 900px) {
  .contact-page-grid--details {
    grid-template-columns: minmax(280px, 380px) minmax(0, 1fr);
    gap: 2rem 2.75rem;
    align-items: stretch;
  }

  .contact-map-column {
    min-height: 100%;
  }
}

.contact-detail-column {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-map-column {
  display: flex;
  flex-direction: column;
  min-height: 280px;
}

.contact-map-frame {
  flex: 1;
  display: flex;
  flex-direction: column;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 2px;
  border-left: 4px solid var(--color-accent);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  min-height: 360px;
}

.contact-map-label {
  margin: 0;
  padding: 0.85rem 1.1rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-muted);
  border-bottom: 1px solid var(--color-border);
  background: var(--color-bg);
}

.map-wrap--feature {
  flex: 1;
  margin: 0;
  border: none;
  border-radius: 0;
  min-height: 300px;
  aspect-ratio: auto;
}

.map-wrap--feature iframe {
  min-height: 300px;
}

@media (min-width: 900px) {
  .contact-map-frame {
    min-height: 480px;
  }

  .map-wrap--feature {
    flex: 1;
    min-height: 0;
  }

  .map-wrap--feature iframe {
    height: 100%;
    min-height: 360px;
  }
}

.contact-aside-stack {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-card--accent {
  border-left: 4px solid var(--color-primary);
  border-radius: 2px;
  box-shadow: var(--shadow-md);
}

.contact-quick {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

@media (max-width: 480px) {
  .contact-quick {
    grid-template-columns: 1fr;
  }
}

.contact-quick a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 72px;
  padding: 0.85rem 1rem;
  text-decoration: none;
  color: var(--color-text);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 2px;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.contact-quick a:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-sm);
}

.contact-quick a span:first-child {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 0.25rem;
}

.contact-quick a span:last-child {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-primary);
  word-break: break-word;
}

.contact-brief {
  background: var(--color-bg);
  border: 1px dashed var(--color-border);
  border-radius: 2px;
  padding: 1rem 1.15rem;
  margin-bottom: 0;
}

.contact-brief h3 {
  font-family: var(--font-display);
  margin: 0 0 0.5rem;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text);
}

.contact-brief ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--color-muted);
  font-size: 0.88rem;
  line-height: 1.55;
}

.contact-brief li {
  margin-bottom: 0.35rem;
}

.contact-brief li:last-child {
  margin-bottom: 0;
}

.contact-card-title {
  font-family: var(--font-display);
  margin: 0.35rem 0 0;
  font-size: 1.2rem;
  font-weight: 700;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
