:root {
  --sun: #f7b733;
  --orange: #f26624;
  --ember: #d13212;
  --ink: #101318;
  --charcoal: #171b21;
  --panel: #20262e;
  --paper: #f6f2ec;
  --white: #ffffff;
  --muted: #a8b0ba;
  --cyan: #64d6e8;
  --line: rgba(255, 255, 255, 0.14);
  --dark-line: rgba(16, 19, 24, 0.12);
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.32);
  --font-display: 'Montserrat', ui-sans-serif, system-ui, sans-serif;
  --font-body: 'Open Sans', ui-sans-serif, system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--white);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

body.menu-open {
  overflow: hidden;
}

button,
a,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  cursor: pointer;
}

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

.app-shell {
  min-height: 100vh;
  background:
    radial-gradient(circle at 15% 10%, rgba(242, 102, 36, 0.12), transparent 30rem),
    linear-gradient(180deg, #101318 0%, #15191f 48%, #101318 100%);
  overflow: clip;
}

.page-shell {
  min-height: 100vh;
}

.section-pad {
  padding: clamp(4.5rem, 8vw, 8rem) clamp(1.25rem, 5vw, 5rem);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--sun);
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: '';
  width: 2.2rem;
  height: 1px;
  background: linear-gradient(90deg, var(--sun), var(--orange));
}

.section-heading {
  max-width: 820px;
  margin-bottom: clamp(2.2rem, 5vw, 4rem);
}

.section-heading.center {
  margin-inline: auto;
  text-align: center;
}

.section-heading.center .eyebrow {
  justify-content: center;
}

.section-heading h2,
.intro-copy h2,
.service-content h2,
.service-selector h2,
.atlas-map-card h2,
.about-intro h2,
.method-copy h2,
.contact-outro h2,
.cta-band h2 {
  margin: 0.85rem 0 1rem;
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(2.15rem, 5vw, 4.4rem);
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.section-heading p,
.intro-copy p,
.service-selector p,
.atlas-map-card p,
.about-intro p,
.contact-outro p,
.cta-band p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  line-height: 1.75;
}

.quote-button,
.secondary-button,
.text-link,
.ghost-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  border: 0;
  text-decoration: none;
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease, border-color 220ms ease;
}

.quote-button {
  min-height: 3.35rem;
  padding: 0.95rem 1.35rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--sun), var(--orange) 52%, var(--ember));
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 16px 42px rgba(242, 102, 36, 0.35);
}

.quote-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 55px rgba(242, 102, 36, 0.48);
}

.quote-button.small {
  min-height: 2.7rem;
  padding: 0.7rem 1rem;
  font-size: 0.72rem;
}

.secondary-button {
  min-height: 3.35rem;
  padding: 0.95rem 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  backdrop-filter: blur(18px);
}

.secondary-button:hover {
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-2px);
}

.secondary-button.dark {
  border-color: rgba(16, 19, 24, 0.16);
  background: rgba(16, 19, 24, 0.06);
  color: var(--ink);
}

.text-link {
  padding: 0;
  background: transparent;
  color: var(--orange);
  font-family: var(--font-display);
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.text-link:hover {
  transform: translateX(4px);
}

/* Header */
.site-header {
  position: fixed;
  z-index: 100;
  top: 1rem;
  left: clamp(0.75rem, 2.5vw, 2rem);
  right: clamp(0.75rem, 2.5vw, 2rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(0.75rem, 2vw, 1.5rem);
  min-height: 4.7rem;
  padding: 0.65rem 0.8rem 0.65rem 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 1.35rem;
  background:
    linear-gradient(120deg, rgba(13, 16, 20, 0.9), rgba(13, 16, 20, 0.68) 58%, rgba(13, 16, 20, 0.84)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 18px);
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(24px) saturate(1.25);
}

.site-header::before {
  content: '';
  position: absolute;
  top: 0.5rem;
  right: 1.15rem;
  left: 1.15rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(247, 183, 51, 0.48), rgba(100, 214, 232, 0.28), transparent);
  opacity: 0.45;
  pointer-events: none;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  min-width: 0;
  color: var(--white);
  text-decoration: none;
}

.brand-mark {
  position: relative;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 3.15rem;
  height: 3.15rem;
  border: 1px solid rgba(247, 183, 51, 0.34);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.16), transparent 48%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.035));
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.06),
    0 10px 28px rgba(0, 0, 0, 0.26),
    0 0 26px rgba(247, 183, 51, 0.14);
  overflow: hidden;
}

.brand-mark::before {
  content: '';
  position: absolute;
  inset: 0.36rem;
  border: 1px dashed rgba(247, 183, 51, 0.5);
  border-radius: 50%;
  animation: radarSpin 12s linear infinite;
}

.brand-mark::after {
  content: '';
  position: absolute;
  inset: 0.42rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(247, 183, 51, 0.12), transparent 68%);
  pointer-events: none;
}

.brand-mark img {
  position: relative;
  z-index: 1;
  display: block;
  width: 2.2rem;
  height: 2.2rem;
  filter:
    drop-shadow(0 2px 7px rgba(0, 0, 0, 0.44))
    drop-shadow(0 0 7px rgba(247, 183, 51, 0.18));
  object-fit: contain;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
  text-align: left;
}

.brand-text strong {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 900;
  letter-spacing: 0.19em;
}

.brand-text small {
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.67rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.desktop-nav {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  gap: clamp(0.12rem, 0.5vw, 0.4rem);
  padding: 0.42rem 0.58rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0.55rem 1.25rem 0.55rem 1.25rem;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
    rgba(16, 19, 24, 0.5);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.nav-route-line {
  position: absolute;
  z-index: 0;
  top: 50%;
  right: 1.2rem;
  left: 1.2rem;
  height: 1px;
  background: repeating-linear-gradient(90deg, rgba(247, 183, 51, 0.38) 0 8px, transparent 8px 15px);
  opacity: 0.38;
  transform: translateY(-50%);
  pointer-events: none;
}

.desktop-nav a {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 0.52rem;
  min-height: 3rem;
  padding: 0.62rem 0.78rem;
  border: 1px solid transparent;
  border-radius: 0.35rem 0.95rem 0.35rem 0.95rem;
  color: rgba(255, 255, 255, 0.66);
  font-family: var(--font-display);
  text-decoration: none;
  text-transform: uppercase;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.nav-waypoint {
  position: relative;
  flex: 0 0 auto;
  width: 0.68rem;
  height: 0.68rem;
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(16, 19, 24, 0.86);
  transform: rotate(45deg);
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.nav-waypoint::after {
  content: '';
  position: absolute;
  inset: 2px;
  background: rgba(255, 255, 255, 0.36);
  transform: scale(0.68);
  transition: background 180ms ease, transform 180ms ease;
}

.nav-copy {
  display: flex;
  flex-direction: column;
  gap: 0.18rem;
  line-height: 1;
}

.nav-copy small {
  color: rgba(255, 255, 255, 0.34);
  font-size: 0.49rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.nav-copy span {
  color: inherit;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.11em;
}

.desktop-nav a:hover,
.desktop-nav a.active {
  border-color: rgba(247, 183, 51, 0.34);
  background: linear-gradient(135deg, rgba(247, 183, 51, 0.16), rgba(242, 102, 36, 0.08));
  color: var(--white);
}

.desktop-nav a:hover {
  transform: translateY(-1px);
}

.desktop-nav a.active {
  border-color: rgba(247, 183, 51, 0.55);
  background: linear-gradient(135deg, rgba(247, 183, 51, 0.24), rgba(242, 102, 36, 0.13));
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.desktop-nav a.active::after {
  content: '';
  position: absolute;
  right: 0.72rem;
  bottom: 0.36rem;
  left: 0.72rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--sun), var(--orange), transparent);
}

.desktop-nav a:hover .nav-waypoint {
  border-color: rgba(247, 183, 51, 0.78);
  transform: rotate(135deg);
}

.desktop-nav a.active .nav-waypoint {
  border-color: var(--sun);
  background: linear-gradient(135deg, var(--sun), var(--orange));
  animation: waypointPulse 2.4s ease-out infinite;
}

.desktop-nav a.active .nav-waypoint::after {
  background: var(--white);
  transform: scale(0.45);
}

.desktop-nav a.active .nav-copy small {
  color: rgba(247, 183, 51, 0.86);
}

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

.header-actions .quote-button.small {
  border-radius: 0.5rem 1.15rem 0.5rem 1.15rem;
}

.menu-button {
  display: none;
  place-items: center;
  width: 2.85rem;
  height: 2.85rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0.5rem 1rem 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.07);
  color: var(--white);
}

.mobile-nav {
  position: fixed;
  inset: 5.6rem clamp(0.65rem, 2.5vw, 2rem) auto;
  display: none;
  flex-direction: column;
  gap: 0.55rem;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 1.2rem 1.2rem 1.8rem 1.8rem;
  background:
    linear-gradient(145deg, rgba(13, 16, 20, 0.97), rgba(23, 27, 33, 0.94)),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.03) 0 1px, transparent 1px 18px);
  box-shadow: var(--shadow);
  backdrop-filter: blur(24px);
}

.mobile-nav::before {
  content: '';
  position: absolute;
  top: 5.25rem;
  bottom: 1.8rem;
  left: 2.06rem;
  width: 1px;
  background: repeating-linear-gradient(180deg, rgba(247, 183, 51, 0.42) 0 7px, transparent 7px 14px);
  opacity: 0.55;
  pointer-events: none;
}

.mobile-nav-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0 0.35rem 0.8rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-family: var(--font-display);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.mobile-nav-heading span {
  font-size: 0.78rem;
  font-weight: 900;
}

.mobile-nav-heading small {
  color: rgba(247, 183, 51, 0.78);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.mobile-nav a {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.8rem;
  padding: 0.95rem 0.75rem;
  border: 1px solid transparent;
  border-radius: 0.75rem 1.2rem 0.75rem 1.2rem;
  color: var(--white);
  font-family: var(--font-display);
  text-decoration: none;
  text-transform: uppercase;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.mobile-waypoint {
  width: 0.78rem;
  height: 0.78rem;
  border: 1px solid rgba(255, 255, 255, 0.36);
  background: rgba(16, 19, 24, 0.9);
  transform: rotate(45deg);
}

.mobile-route-copy {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
  line-height: 1;
}

.mobile-route-copy small {
  color: rgba(255, 255, 255, 0.36);
  font-size: 0.56rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.mobile-route-copy span {
  overflow: hidden;
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mobile-nav a.active,
.mobile-nav a:hover {
  border-color: rgba(247, 183, 51, 0.3);
  background: linear-gradient(135deg, rgba(242, 102, 36, 0.18), rgba(247, 183, 51, 0.08));
  color: var(--sun);
  transform: translateX(3px);
}

.mobile-nav a.active .mobile-waypoint {
  border-color: var(--sun);
  background: linear-gradient(135deg, var(--sun), var(--orange));
  box-shadow: 0 0 18px rgba(247, 183, 51, 0.42);
}

.desktop-nav a:focus-visible,
.mobile-nav a:focus-visible,
.menu-button:focus-visible {
  outline: 2px solid var(--sun);
  outline-offset: 3px;
}

@keyframes radarSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes waypointPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(247, 183, 51, 0.42);
  }

  70% {
    box-shadow: 0 0 0 8px rgba(247, 183, 51, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(247, 183, 51, 0);
  }
}

/* Home hero */
.home-hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 100svh;
  padding: clamp(7.5rem, 14vh, 10rem) clamp(1.25rem, 5vw, 5rem) clamp(5rem, 9vh, 7rem);
  overflow: hidden;
  isolation: isolate;
}

.hero-slide {
  position: absolute;
  inset: 0;
  z-index: -5;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1200ms ease, transform 5400ms ease;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero-vignette,
.page-hero-shade {
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(10, 13, 17, 0.9) 0%, rgba(10, 13, 17, 0.52) 42%, rgba(10, 13, 17, 0.3) 100%),
    linear-gradient(180deg, rgba(10, 13, 17, 0.36) 0%, rgba(10, 13, 17, 0.08) 48%, #101318 100%);
}

.hero-grid,
.page-hero-grid {
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, transparent, black 18%, black 72%, transparent);
}

.scan-line {
  position: absolute;
  z-index: -1;
  top: 18%;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(100, 214, 232, 0.72), transparent);
  box-shadow: 0 0 22px rgba(100, 214, 232, 0.52);
  animation: scan 7s ease-in-out infinite;
}

@keyframes scan {
  0%, 100% { transform: translateY(0); opacity: 0; }
  10%, 82% { opacity: 1; }
  50% { transform: translateY(48vh); }
}

.hero-telemetry {
  position: absolute;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  max-width: 18rem;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(12, 15, 19, 0.34);
  backdrop-filter: blur(16px);
}

.top-left-hud {
  top: 7.2rem;
  left: clamp(1.25rem, 5vw, 5rem);
  border-left: 3px solid var(--orange);
}

.top-right-hud {
  top: 7.2rem;
  right: clamp(1.25rem, 5vw, 5rem);
  text-align: right;
  border-right: 3px solid var(--cyan);
}

.hero-telemetry span,
.console-header,
.console-stats,
.hero-coordinate,
.service-hud,
.method-overlay-card,
.console-title,
.form-note {
  color: rgba(255, 255, 255, 0.58);
  font-family: var(--font-display);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-telemetry strong {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 900px;
}

.hero-content h1 {
  max-width: 980px;
  margin: 1rem 0 1.35rem;
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(4rem, 10.6vw, 9.6rem);
  font-weight: 900;
  letter-spacing: -0.085em;
  line-height: 0.84;
  text-wrap: balance;
}

.hero-content h1 span {
  display: block;
  background: linear-gradient(100deg, var(--sun) 5%, var(--orange) 48%, #ff9b5f 80%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-content p {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(1.05rem, 1.7vw, 1.35rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.flight-console {
  --console-accent: var(--sun);
  --console-accent-rgb: 247, 183, 51;
  position: absolute;
  z-index: 4;
  right: clamp(1.25rem, 5vw, 5rem);
  bottom: clamp(5.6rem, 10vh, 7rem);
  width: min(30rem, 36vw);
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 1.35rem;
  background: rgba(11, 14, 18, 0.72);
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
}

.flight-console[data-active-service="mapping"] {
  --console-accent: var(--cyan);
  --console-accent-rgb: 100, 214, 232;
}

.flight-console[data-active-service="inspection"] {
  --console-accent: var(--orange);
  --console-accent-rgb: 242, 102, 36;
}

.console-header {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.console-header span,
.console-stats button {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.console-header strong {
  color: var(--sun);
}

.flight-path {
  display: block;
  width: 100%;
  height: auto;
  margin: 0.15rem 0 0;
}

.flight-reticle {
  stroke: rgba(255, 255, 255, 0.2);
  stroke-width: 1;
}

.console-route {
  color: var(--console-accent);
  opacity: 0;
  transition: opacity 180ms ease;
}

.console-route.is-active {
  opacity: 1;
}

.route-shadow,
.route-line,
.route-marker-ring {
  fill: none;
}

.route-shadow {
  stroke: rgba(0, 0, 0, 0.5);
  stroke-width: 7;
}

.route-line {
  stroke: url("#consolePathGradient");
  stroke-width: 3;
  stroke-dasharray: 2.3 2.5;
}

.route-node {
  fill: currentColor;
  stroke: rgba(9, 12, 16, 0.82);
  stroke-width: 3;
}

.route-node-start {
  color: var(--sun);
}

.route-node-mid {
  color: var(--orange);
}

.route-marker-ring {
  stroke: currentColor;
  stroke-width: 2;
  opacity: 0.4;
  transform-box: fill-box;
  transform-origin: center;
}

.console-route.is-active .route-line {
  animation: routeFlow 900ms ease-out both;
}

.console-route.is-active .route-marker-ring {
  animation: consoleMarker 1100ms ease-out both;
}

.route-gradient-end {
  stop-color: var(--console-accent);
}

@keyframes routeFlow {
  to { stroke-dashoffset: -9.6; }
}

@keyframes consoleMarker {
  0%, 40% { opacity: 0.5; transform: scale(0.7); }
  80%, 100% { opacity: 0; transform: scale(1.35); }
}

.console-prompt {
  display: block;
  margin: 0 0 0.45rem;
  color: rgba(255, 255, 255, 0.52);
  font-family: var(--font-display);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.console-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.5rem;
}

.console-stats button {
  position: relative;
  justify-content: center;
  min-height: 2.9rem;
  padding: 0.65rem 0.45rem;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.62);
  font-family: var(--font-display);
  font-size: 0.61rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease, transform 180ms ease;
}

.console-stats button svg {
  flex: 0 0 auto;
}

.console-stats button:hover {
  border-color: rgba(var(--console-accent-rgb), 0.6);
  color: var(--white);
  transform: translateY(-1px);
}

.console-stats button[aria-selected="true"] {
  border-color: rgba(var(--console-accent-rgb), 0.82);
  background: rgba(var(--console-accent-rgb), 0.14);
  box-shadow: inset 0 0 0 1px rgba(var(--console-accent-rgb), 0.12), 0 0 18px rgba(var(--console-accent-rgb), 0.08);
  color: var(--white);
}

.console-stats button[aria-selected="true"]::after {
  position: absolute;
  top: 0.28rem;
  right: 0.34rem;
  color: var(--console-accent);
  content: "✓";
  font-size: 0.6rem;
  line-height: 1;
}

.console-stats button:focus-visible {
  outline: 2px solid var(--console-accent);
  outline-offset: 3px;
}

.console-readout {
  min-height: 7.4rem;
  margin-top: 0.75rem;
  padding: 0.8rem 0.9rem 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-left: 2px solid var(--console-accent);
  border-radius: 0.75rem;
  background: linear-gradient(110deg, rgba(var(--console-accent-rgb), 0.09), rgba(255, 255, 255, 0.025) 62%);
}

.console-panel[hidden] {
  display: none;
}

.console-panel {
  animation: consoleReadoutIn 180ms ease both;
}

.console-mode {
  display: block;
  margin-bottom: 0.2rem;
  color: var(--console-accent);
  font-family: var(--font-display);
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.console-panel h2 {
  margin: 0;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.console-panel p {
  margin: 0.25rem 0 0.5rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.77rem;
  line-height: 1.45;
}

.console-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
}

.console-link svg {
  color: var(--console-accent);
  transition: transform 180ms ease;
}

.console-link:hover svg,
.console-link:focus-visible svg {
  transform: translateX(0.25rem);
}

.console-link:focus-visible {
  border-radius: 0.2rem;
  outline: 2px solid var(--console-accent);
  outline-offset: 4px;
}

@keyframes consoleReadoutIn {
  from { opacity: 0; transform: translateY(0.3rem); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-slide-controls {
  position: absolute;
  z-index: 5;
  left: clamp(1.25rem, 5vw, 5rem);
  bottom: 2.2rem;
  display: flex;
  gap: 0.45rem;
}

.hero-slide-controls button {
  width: 2.3rem;
  height: 0.34rem;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
  transition: width 220ms ease, background 220ms ease;
}

.hero-slide-controls button.active {
  width: 4rem;
  background: linear-gradient(90deg, var(--sun), var(--orange));
}

.hero-coordinate {
  position: absolute;
  z-index: 3;
  right: clamp(1.25rem, 5vw, 5rem);
  bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.hero-coordinate i {
  width: 4rem;
  height: 1px;
  background: rgba(255, 255, 255, 0.25);
}

.signal-strip {
  display: flex;
  gap: 0;
  border-block: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.035);
  overflow-x: auto;
  scrollbar-width: none;
}

.signal-strip span {
  flex: 1 0 auto;
  padding: 1rem 1.25rem;
  border-right: 1px solid rgba(255, 255, 255, 0.09);
  color: rgba(255, 255, 255, 0.68);
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
}

/* Home sections */
.split-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(22rem, 1fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
  background: var(--paper);
  color: var(--ink);
}

.split-intro h2,
.split-intro p {
  color: var(--ink);
}

.split-intro p {
  color: rgba(16, 19, 24, 0.72);
}

.intro-copy .text-link {
  margin-top: 1.5rem;
}

.dual-card-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.dual-card-stack article {
  position: relative;
  min-height: 21rem;
  padding: 1.5rem;
  border: 1px solid rgba(16, 19, 24, 0.1);
  border-radius: 1.6rem;
  background: var(--white);
  box-shadow: 0 24px 70px rgba(16, 19, 24, 0.09);
  overflow: hidden;
}

.dual-card-stack article:nth-child(2) {
  transform: translateY(2.2rem);
  background: var(--charcoal);
  color: var(--white);
}

.dual-card-stack svg {
  color: var(--orange);
}

.card-index {
  position: absolute;
  right: 1rem;
  bottom: -1.2rem;
  color: rgba(242, 102, 36, 0.1);
  font-family: var(--font-display);
  font-size: 9rem;
  font-weight: 900;
  line-height: 1;
}

.dual-card-stack h3,
.service-preview-card h3,
.process-grid h3,
.outcome-grid h3,
.principles-grid h3 {
  margin: 1.3rem 0 0.65rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.dual-card-stack p,
.service-preview-card p,
.process-grid p,
.outcome-grid p,
.principles-grid p {
  margin: 0;
  color: rgba(16, 19, 24, 0.66);
  line-height: 1.65;
}

.dual-card-stack article:nth-child(2) p,
.service-preview-card p,
.outcome-grid p,
.principles-grid p {
  color: rgba(255, 255, 255, 0.66);
}

.dark-section {
  background:
    radial-gradient(circle at 80% 10%, rgba(242, 102, 36, 0.14), transparent 28rem),
    linear-gradient(180deg, #15191f, #101318);
}

.service-preview-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.85rem;
}

.service-preview-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 20rem;
  padding: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.055);
  color: var(--white);
  text-align: left;
  overflow: hidden;
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.service-preview-card::before {
  content: '';
  position: absolute;
  inset: auto -20% -35% -20%;
  height: 60%;
  background: radial-gradient(circle, rgba(242, 102, 36, 0.24), transparent 65%);
  opacity: 0;
  transition: opacity 220ms ease;
}

.service-preview-card:hover {
  transform: translateY(-6px);
  border-color: rgba(242, 102, 36, 0.45);
  background: rgba(255, 255, 255, 0.085);
}

.service-preview-card:hover::before {
  opacity: 1;
}

.service-preview-card svg {
  color: var(--sun);
}

.service-number {
  color: rgba(255, 255, 255, 0.38);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.card-arrow {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  display: grid;
  place-items: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  background: rgba(242, 102, 36, 0.16);
  color: var(--sun);
}

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

.portfolio-teaser .section-heading h2,
.portfolio-teaser .section-heading p {
  color: var(--ink);
}

.portfolio-teaser .section-heading p {
  color: rgba(16, 19, 24, 0.68);
}

.teaser-heading-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
}

.teaser-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  grid-auto-rows: 19rem;
  gap: 1rem;
}

.teaser-grid .image-frame:first-child {
  grid-row: span 2;
}

.image-frame {
  position: relative;
  min-height: 18rem;
  margin: 0;
  border-radius: 1.4rem;
  background: var(--charcoal);
  box-shadow: 0 24px 70px rgba(16, 19, 24, 0.16);
  overflow: hidden;
}

.image-frame.tall {
  min-height: 28rem;
}

.image-frame img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 700ms ease, filter 700ms ease;
}

.image-frame:hover img {
  transform: scale(1.06);
  filter: saturate(1.12);
}

.frame-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 45%, rgba(8, 10, 13, 0.82) 100%),
    linear-gradient(90deg, rgba(8, 10, 13, 0.25), transparent 45%);
}

.corner {
  position: absolute;
  width: 1.4rem;
  height: 1.4rem;
  border-color: rgba(255, 255, 255, 0.72);
  border-style: solid;
}

.top-left { top: 1rem; left: 1rem; border-width: 2px 0 0 2px; }
.top-right { top: 1rem; right: 1rem; border-width: 2px 2px 0 0; }
.bottom-left { bottom: 1rem; left: 1rem; border-width: 0 0 2px 2px; }
.bottom-right { right: 1rem; bottom: 1rem; border-width: 0 2px 2px 0; }

.image-frame figcaption {
  position: absolute;
  left: 1.25rem;
  right: 1.25rem;
  bottom: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.image-frame figcaption small {
  color: var(--sun);
  font-family: var(--font-display);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.image-frame figcaption strong {
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2vw, 2rem);
  font-weight: 900;
  letter-spacing: -0.04em;
}

.process-section {
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    #101318;
  background-size: 56px 56px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.12);
}

.process-grid article {
  min-height: 20rem;
  padding: 1.35rem;
  background: rgba(16, 19, 24, 0.94);
}

.process-grid article > span {
  color: var(--orange);
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.process-grid h3 {
  color: var(--white);
}

.process-grid p {
  color: rgba(255, 255, 255, 0.66);
}

.cta-band {
  position: relative;
  margin: clamp(1.25rem, 5vw, 5rem);
  padding: clamp(4rem, 8vw, 7rem) clamp(1.25rem, 5vw, 5rem);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 2rem;
  background:
    radial-gradient(circle at 85% 50%, rgba(247, 183, 51, 0.22), transparent 24rem),
    linear-gradient(135deg, #1b2027, #101318);
  text-align: center;
  overflow: hidden;
}

.cta-band .eyebrow {
  justify-content: center;
}

.cta-band p {
  max-width: 680px;
  margin-inline: auto;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.ghost-link {
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ghost-link:hover {
  color: var(--sun);
}

.cta-radar {
  position: absolute;
  right: -8rem;
  top: -8rem;
  width: 26rem;
  height: 26rem;
  border: 1px solid rgba(247, 183, 51, 0.22);
  border-radius: 50%;
  background:
    repeating-radial-gradient(circle, rgba(247, 183, 51, 0.14) 0 1px, transparent 1px 3.4rem),
    conic-gradient(from 0deg, rgba(247, 183, 51, 0.36), transparent 24%, transparent);
  animation: radar 9s linear infinite;
}

@keyframes radar {
  to { transform: rotate(360deg); }
}

/* Subpage hero */
.page-hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: 74svh;
  padding: 11rem clamp(1.25rem, 5vw, 5rem) 5rem;
  overflow: hidden;
  isolation: isolate;
}

.page-hero-image {
  position: absolute;
  inset: 0;
  z-index: -5;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero-content {
  max-width: 950px;
}

.page-hero-content h1 {
  margin: 1rem 0;
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(3rem, 7.6vw, 7.5rem);
  font-weight: 900;
  letter-spacing: -0.075em;
  line-height: 0.9;
  text-wrap: balance;
}

.page-hero-content p {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 1.45vw, 1.22rem);
  line-height: 1.7;
}

.page-hero-meta {
  position: absolute;
  right: clamp(1.25rem, 5vw, 5rem);
  bottom: 2rem;
  display: flex;
  gap: 1rem;
  color: rgba(255, 255, 255, 0.58);
  font-family: var(--font-display);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* Services */
.service-index {
  background: var(--paper);
  color: var(--ink);
}

.service-index .section-heading h2,
.service-index .section-heading p {
  color: var(--ink);
}

.service-index .section-heading p {
  color: rgba(16, 19, 24, 0.68);
}

.service-list {
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
}

.service-row {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(22rem, 0.98fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center;
}

.service-row.reverse {
  grid-template-columns: minmax(22rem, 0.98fr) minmax(0, 1.02fr);
}

.service-row.reverse .service-image-wrap {
  order: 2;
}

.service-image-wrap {
  position: relative;
  min-height: clamp(24rem, 42vw, 38rem);
  border-radius: 1.7rem;
  box-shadow: 0 30px 80px rgba(16, 19, 24, 0.18);
  overflow: hidden;
}

.service-image-wrap img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.service-image-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 58%, rgba(9, 12, 15, 0.72)),
    linear-gradient(90deg, rgba(9, 12, 15, 0.18), transparent);
}

.service-hud {
  position: absolute;
  z-index: 2;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 1rem;
  background: rgba(10, 13, 17, 0.52);
  backdrop-filter: blur(16px);
}

.service-hud strong {
  color: var(--sun);
  font-size: 1.4rem;
}

.service-content {
  padding: clamp(0.5rem, 2vw, 2rem);
}

.service-content h2 {
  color: var(--ink);
}

.service-content p {
  margin: 0;
  color: rgba(16, 19, 24, 0.72);
  font-size: 1.05rem;
  line-height: 1.75;
}

.service-content ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin: 1.5rem 0;
  padding: 0;
  list-style: none;
}

.service-content li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 3rem;
  padding: 0.75rem;
  border: 1px solid rgba(16, 19, 24, 0.1);
  border-radius: 0.8rem;
  background: rgba(255, 255, 255, 0.72);
  color: rgba(16, 19, 24, 0.78);
  font-weight: 700;
}

.service-content li svg {
  flex: 0 0 auto;
  color: var(--orange);
}

.outcome-grid,
.principles-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.outcome-grid article,
.principles-grid article {
  min-height: 17rem;
  padding: 1.35rem;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.055);
}

.outcome-grid svg,
.principles-grid svg {
  color: var(--sun);
}

.outcome-grid h3,
.principles-grid h3 {
  color: var(--white);
}

.service-selector {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  background: var(--paper);
  color: var(--ink);
}

.service-selector > div {
  max-width: 860px;
}

.service-selector h2,
.service-selector p {
  color: var(--ink);
}

.service-selector p {
  color: rgba(16, 19, 24, 0.7);
}

/* Portfolio */
.portfolio-board {
  background: var(--paper);
  color: var(--ink);
}

.portfolio-board .section-heading h2,
.portfolio-board .section-heading p {
  color: var(--ink);
}

.portfolio-board .section-heading p {
  color: rgba(16, 19, 24, 0.68);
}

.portfolio-toolbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: end;
}

.filter-panel {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.5rem;
  max-width: 34rem;
  margin-bottom: clamp(2.2rem, 5vw, 4rem);
}

.filter-panel > span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-right: 0.35rem;
  color: rgba(16, 19, 24, 0.56);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.filter-panel button {
  padding: 0.65rem 0.9rem;
  border: 1px solid rgba(16, 19, 24, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.64);
  color: rgba(16, 19, 24, 0.68);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.filter-panel button.active,
.filter-panel button:hover {
  border-color: var(--orange);
  background: var(--orange);
  color: var(--white);
}

.portfolio-grid {
  columns: 3 19rem;
  column-gap: 1rem;
}

.portfolio-grid.compact {
  columns: unset;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 22rem), 1fr));
  gap: 1rem;
}

.portfolio-grid .image-frame {
  display: inline-block;
  width: 100%;
  margin: 0 0 1rem;
  break-inside: avoid;
}

.portfolio-grid.compact .image-frame {
  display: block;
  margin: 0;
}

.atlas-note {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(22rem, 0.8fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
}

.atlas-map-card .quote-button {
  margin-top: 1.5rem;
}

.atlas-specs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.atlas-specs article {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 13rem;
  padding: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 1.2rem;
  background: rgba(255, 255, 255, 0.055);
}

.atlas-specs strong {
  color: var(--orange);
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.16em;
}

.atlas-specs span {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: -0.03em;
}

/* About */
.about-intro {
  display: grid;
  grid-template-columns: minmax(20rem, 0.8fr) minmax(0, 1fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
  background: var(--paper);
  color: var(--ink);
}

.about-intro h2,
.about-intro p {
  color: var(--ink);
}

.about-intro p {
  color: rgba(16, 19, 24, 0.72);
  margin-bottom: 1rem;
}

.about-intro .quote-button {
  margin-top: 1rem;
}

.about-logo-panel {
  display: grid;
  place-items: center;
  min-height: 32rem;
  padding: 2rem;
  border-radius: 1.7rem;
  background:
    linear-gradient(135deg, rgba(247, 183, 51, 0.9), rgba(242, 102, 36, 0.92), rgba(209, 50, 18, 0.9)),
    var(--orange);
  box-shadow: 0 30px 80px rgba(242, 102, 36, 0.26);
}

.about-logo-panel img {
  width: min(100%, 24rem);
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.18));
}

.about-logo-panel span {
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.method-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
  background: var(--paper);
  color: var(--ink);
}

.method-copy h2 {
  color: var(--ink);
}

.method-visual {
  position: relative;
  min-height: 42rem;
  border-radius: 1.7rem;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(16, 19, 24, 0.18);
}

.method-visual img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.method-overlay-card {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  display: flex;
  justify-content: space-between;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 1rem;
  background: rgba(10, 13, 17, 0.58);
  backdrop-filter: blur(16px);
}

.method-overlay-card strong {
  color: var(--sun);
}

.method-steps {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.method-steps article {
  display: grid;
  grid-template-columns: 4rem 1fr;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid rgba(16, 19, 24, 0.1);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.68);
}

.method-steps article > span {
  color: var(--orange);
  font-family: var(--font-display);
  font-weight: 900;
  letter-spacing: 0.12em;
}

.method-steps h3 {
  margin: 0 0 0.35rem;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 900;
}

.method-steps p {
  margin: 0;
  color: rgba(16, 19, 24, 0.68);
  line-height: 1.6;
}

/* Contact */
.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(24rem, 0.72fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: start;
  background: var(--paper);
  color: var(--ink);
}

.contact-section .section-heading h2,
.contact-section .section-heading p {
  color: var(--ink);
}

.contact-section .section-heading p {
  color: rgba(16, 19, 24, 0.68);
}

.contact-cards {
  display: grid;
  gap: 1rem;
}

.contact-cards article {
  padding: 1.25rem;
  border: 1px solid rgba(16, 19, 24, 0.1);
  border-radius: 1.1rem;
  background: rgba(255, 255, 255, 0.7);
}

.contact-cards svg {
  color: var(--orange);
}

.contact-cards span {
  display: block;
  margin: 1rem 0 0.35rem;
  color: rgba(16, 19, 24, 0.52);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-cards a {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 900;
  text-decoration: none;
}

.contact-cards p {
  margin: 0;
  color: rgba(16, 19, 24, 0.68);
  line-height: 1.6;
}

.quote-console {
  position: sticky;
  top: 7rem;
  display: grid;
  gap: 1rem;
  padding: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 1.5rem;
  background:
    radial-gradient(circle at 100% 0%, rgba(242, 102, 36, 0.22), transparent 18rem),
    #14181e;
  box-shadow: var(--shadow);
  color: var(--white);
}

.console-title {
  display: flex;
  justify-content: space-between;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.console-title strong {
  color: var(--sun);
}

.quote-console label {
  display: grid;
  gap: 0.45rem;
  color: rgba(255, 255, 255, 0.64);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.quote-console input,
.quote-console select,
.quote-console textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 0.85rem;
  background: rgba(255, 255, 255, 0.07);
  color: var(--white);
  outline: none;
  padding: 0.9rem 1rem;
  transition: border-color 180ms ease, background 180ms ease;
}

.quote-console select option {
  color: var(--ink);
}

.quote-console textarea {
  resize: vertical;
}

.quote-console input:focus,
.quote-console select:focus,
.quote-console textarea:focus {
  border-color: var(--orange);
  background: rgba(255, 255, 255, 0.1);
}

.form-note {
  margin: 0;
  line-height: 1.55;
  text-transform: none;
  letter-spacing: 0.04em;
}

.contact-outro {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.contact-outro > div {
  max-width: 820px;
}

/* Footer */
.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(10rem, 0.35fr) minmax(16rem, 0.45fr);
  gap: 2rem;
  padding: 4rem clamp(1.25rem, 5vw, 5rem) 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: #0c0f13;
}

.footer-brand img {
  width: 12rem;
  margin-bottom: 1rem;
}

.footer-brand p {
  max-width: 34rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.7;
}

.footer-links,
.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.65rem;
}

.footer-links span,
.footer-contact span {
  margin-bottom: 0.45rem;
  color: var(--sun);
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-links a,
.footer-contact a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: rgba(255, 255, 255, 0.68);
  text-decoration: none;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--white);
}

.footer-contact button {
  margin-top: 0.6rem;
  padding: 0.7rem 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.82rem;
}

@media (min-width: 1181px) and (max-height: 800px) {
  .home-hero {
    padding-top: 12rem;
  }
}

@media (max-width: 1180px) {
  .desktop-nav,
  .header-actions .quote-button {
    display: none;
  }

  .menu-button {
    display: grid;
  }

  .mobile-nav.open {
    display: flex;
  }
}

@media (max-width: 1180px) {
  .service-preview-grid,
  .process-grid,
  .outcome-grid,
  .principles-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-hero {
    align-content: center;
    gap: 2rem;
    min-height: auto;
    padding-top: clamp(12.5rem, 22vw, 14rem);
  }

  .flight-console {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(100%, 32rem);
    margin-top: 0.5rem;
  }
}

@media (max-width: 920px) {
  .desktop-nav,
  .header-actions .quote-button {
    display: none;
  }

  .menu-button {
    display: grid;
  }

  .mobile-nav.open {
    display: flex;
  }

  .site-header {
    border-radius: 1.5rem;
  }

  .brand-text small {
    display: none;
  }

  .split-intro,
  .service-row,
  .service-row.reverse,
  .atlas-note,
  .about-intro,
  .method-section,
  .contact-section,
  .portfolio-toolbar {
    grid-template-columns: 1fr;
  }

  .service-row.reverse .service-image-wrap {
    order: 0;
  }

  .teaser-heading-row,
  .service-selector,
  .contact-outro {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .quote-console {
    position: static;
  }

  .filter-panel {
    justify-content: flex-start;
    margin-bottom: 2rem;
  }

  .top-right-hud,
  .hero-coordinate,
  .page-hero-meta {
    display: none;
  }
}

@media (max-width: 640px) {
  .section-pad {
    padding-inline: 1rem;
  }

  .site-header {
    top: 0.65rem;
    left: 0.65rem;
    right: 0.65rem;
    min-height: 4.2rem;
  }

  .brand-mark {
    width: 2.7rem;
    height: 2.7rem;
  }

  .brand-mark img {
    width: 1.9rem;
    height: 1.9rem;
  }

  .brand-text strong {
    font-size: 0.82rem;
  }

  .home-hero {
    min-height: auto;
    padding: 10.25rem 1rem 5rem;
  }

  .flight-console {
    margin-top: 0;
    padding: 0.8rem;
    border-radius: 1rem;
  }

  .console-header {
    font-size: 0.57rem;
  }

  .console-stats {
    gap: 0.35rem;
  }

  .console-stats button {
    min-height: 3.1rem;
    padding: 0.55rem 0.25rem;
    font-size: 0.54rem;
    letter-spacing: 0.06em;
  }

  .console-stats button svg {
    width: 0.85rem;
    height: 0.85rem;
  }

  .console-readout {
    min-height: 8.15rem;
  }

  .top-left-hud {
    top: 5.6rem;
    left: 1rem;
    right: 1rem;
    max-width: none;
  }

  .hero-content h1 {
    font-size: clamp(3.3rem, 17vw, 5rem);
  }

  .hero-actions,
  .cta-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .quote-button,
  .secondary-button {
    width: 100%;
  }

  .hero-slide-controls {
    bottom: 1.25rem;
  }

  .dual-card-stack,
  .service-preview-grid,
  .process-grid,
  .outcome-grid,
  .principles-grid,
  .teaser-grid,
  .atlas-specs,
  .service-content ul {
    grid-template-columns: 1fr;
  }

  .dual-card-stack article:nth-child(2) {
    transform: none;
  }

  .service-preview-card,
  .process-grid article,
  .outcome-grid article,
  .principles-grid article {
    min-height: auto;
  }

  .teaser-grid {
    grid-auto-rows: 18rem;
  }

  .teaser-grid .image-frame:first-child {
    grid-row: auto;
  }

  .page-hero {
    min-height: 68svh;
    padding: 8.5rem 1rem 4rem;
  }

  .page-hero-content h1 {
    font-size: clamp(2.75rem, 14vw, 4.2rem);
  }

  .service-image-wrap,
  .method-visual,
  .about-logo-panel {
    min-height: 24rem;
  }

  .method-steps article {
    grid-template-columns: 1fr;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

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

/* --------------------------------------------------------------------------
   WordPress integration
   The presentation styles above are intentionally kept in parity with the
   source redesign; these rules adapt WordPress-generated markup and chrome.
   -------------------------------------------------------------------------- */

:root {
  --wp-admin-bar-offset: 0px;
}

body.admin-bar {
  --wp-admin-bar-offset: 32px;
}

body.admin-bar .site-header {
  top: calc(1rem + var(--wp-admin-bar-offset));
}

body.admin-bar .mobile-nav {
  top: calc(5.6rem + var(--wp-admin-bar-offset));
}

body.menu-open {
  overscroll-behavior: none;
}

/* WordPress' menu walker adds lists and current-page classes around links. */
.desktop-nav ul,
.desktop-nav .menu,
.mobile-nav ul,
.mobile-nav .menu {
  margin: 0;
  padding: 0;
  list-style: none;
}

.desktop-nav ul,
.desktop-nav .menu {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: clamp(0.12rem, 0.5vw, 0.4rem);
}

.desktop-nav li,
.mobile-nav li {
  margin: 0;
  padding: 0;
}

.desktop-nav a[aria-current="page"],
.desktop-nav .current-menu-item > a,
.desktop-nav .current_page_item > a,
.desktop-nav .current-menu-ancestor > a,
.desktop-nav .current_page_ancestor > a {
  border-color: rgba(247, 183, 51, 0.55);
  background: linear-gradient(135deg, rgba(247, 183, 51, 0.24), rgba(242, 102, 36, 0.13));
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  color: var(--white);
}

.desktop-nav a[aria-current="page"]::after,
.desktop-nav .current-menu-item > a::after,
.desktop-nav .current_page_item > a::after,
.desktop-nav .current-menu-ancestor > a::after,
.desktop-nav .current_page_ancestor > a::after {
  content: '';
  position: absolute;
  right: 0.72rem;
  bottom: 0.36rem;
  left: 0.72rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--sun), var(--orange), transparent);
}

.desktop-nav a[aria-current="page"] .nav-waypoint,
.desktop-nav .current-menu-item > a .nav-waypoint,
.desktop-nav .current_page_item > a .nav-waypoint,
.desktop-nav .current-menu-ancestor > a .nav-waypoint,
.desktop-nav .current_page_ancestor > a .nav-waypoint {
  border-color: var(--sun);
  background: linear-gradient(135deg, var(--sun), var(--orange));
  animation: waypointPulse 2.4s ease-out infinite;
}

.desktop-nav a[aria-current="page"] .nav-waypoint::after,
.desktop-nav .current-menu-item > a .nav-waypoint::after,
.desktop-nav .current_page_item > a .nav-waypoint::after,
.desktop-nav .current-menu-ancestor > a .nav-waypoint::after,
.desktop-nav .current_page_ancestor > a .nav-waypoint::after {
  background: var(--white);
  transform: scale(0.45);
}

.desktop-nav a[aria-current="page"] .nav-copy small,
.desktop-nav .current-menu-item > a .nav-copy small,
.desktop-nav .current_page_item > a .nav-copy small,
.desktop-nav .current-menu-ancestor > a .nav-copy small,
.desktop-nav .current_page_ancestor > a .nav-copy small {
  color: rgba(247, 183, 51, 0.86);
}

.mobile-nav > div,
.mobile-nav ul,
.mobile-nav .menu {
  width: 100%;
}

.mobile-nav ul,
.mobile-nav .menu {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.mobile-nav a[aria-current="page"],
.mobile-nav .current-menu-item > a,
.mobile-nav .current_page_item > a,
.mobile-nav .current-menu-ancestor > a,
.mobile-nav .current_page_ancestor > a {
  border-color: rgba(247, 183, 51, 0.3);
  background: linear-gradient(135deg, rgba(242, 102, 36, 0.18), rgba(247, 183, 51, 0.08));
  color: var(--sun);
  transform: translateX(3px);
}

.mobile-nav a[aria-current="page"] .mobile-waypoint,
.mobile-nav .current-menu-item > a .mobile-waypoint,
.mobile-nav .current_page_item > a .mobile-waypoint,
.mobile-nav .current-menu-ancestor > a .mobile-waypoint,
.mobile-nav .current_page_ancestor > a .mobile-waypoint {
  border-color: var(--sun);
  background: linear-gradient(135deg, var(--sun), var(--orange));
  box-shadow: 0 0 18px rgba(247, 183, 51, 0.42);
}

/* Icon state for the server-rendered mobile-menu button. */
.menu-icon-open,
.menu-icon-close {
  display: grid;
  place-items: center;
}

.menu-icon-close,
.menu-button.active .menu-icon-open,
.menu-toggle.active .menu-icon-open {
  display: none;
}

.menu-button.active .menu-icon-close,
.menu-toggle.active .menu-icon-close {
  display: grid;
}

.service-preview-card {
  text-decoration: none;
}

.footer-links nav,
.footer-links ul,
.footer-links .menu {
  width: 100%;
}

.footer-links ul,
.footer-links .menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.65rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links li {
  margin: 0;
  padding: 0;
}

.footer-contact .footer-quote-button {
  margin-top: 0.6rem;
  padding: 0.7rem 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* WordPress accessibility helper (also useful to script-generated status). */
.screen-reader-text,
.sr-only {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.screen-reader-text:focus,
.sr-only:focus {
  z-index: 100000;
  top: calc(0.5rem + var(--wp-admin-bar-offset));
  left: 0.5rem;
  display: block;
  width: auto;
  height: auto;
  margin: 0;
  padding: 0.85rem 1rem;
  clip: auto !important;
  clip-path: none;
  border-radius: 0.45rem;
  background: var(--white);
  box-shadow: 0 0 0 3px var(--orange);
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: normal;
  text-decoration: none;
}

:where(a, button, input, select, textarea):focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 3px;
}

[hidden],
.portfolio-grid .image-frame.is-hidden {
  display: none !important;
}

/* Generic WordPress pages, archives, and posts use the same paper/dark visual language. */
.generic-content {
  background: var(--paper);
  color: var(--ink);
}

.generic-content:not(.has-hero) {
  padding-top: clamp(8rem, 12vw, 10rem);
}

.generic-content__header,
.generic-content > .entry-content,
.generic-content > .archive-description,
.generic-content > .navigation {
  width: min(100%, 72rem);
  margin-right: auto;
  margin-left: auto;
}

.generic-content__header {
  margin-bottom: clamp(2rem, 5vw, 4rem);
}

.generic-content__header h1 {
  margin: 0.85rem 0 0;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 7vw, 6.5rem);
  font-weight: 900;
  letter-spacing: -0.065em;
  line-height: 0.94;
}

.archive-description {
  color: rgba(16, 19, 24, 0.68);
  line-height: 1.7;
}

.post-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 19rem), 1fr));
  gap: 1rem;
  width: min(100%, 88rem);
  margin: 0 auto;
}

.post-card {
  padding: 1.25rem;
  border: 1px solid rgba(16, 19, 24, 0.1);
  border-radius: 1.25rem;
  background: var(--white);
  box-shadow: 0 24px 70px rgba(16, 19, 24, 0.09);
}

.post-card > a:first-child img {
  width: 100%;
  aspect-ratio: 16 / 10;
  margin-bottom: 1.25rem;
  border-radius: 0.85rem;
  object-fit: cover;
}

.post-card > span {
  color: var(--orange);
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.post-card h2 {
  margin: 0.65rem 0;
  font-family: var(--font-display);
  font-size: 1.45rem;
  line-height: 1.12;
}

.post-card h2 a {
  color: var(--ink);
  text-decoration: none;
}

.post-card p {
  color: rgba(16, 19, 24, 0.68);
  line-height: 1.65;
}

.navigation.pagination {
  margin-top: 2rem;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.page-numbers {
  display: grid;
  place-items: center;
  min-width: 2.7rem;
  min-height: 2.7rem;
  padding: 0.5rem;
  border: 1px solid rgba(16, 19, 24, 0.12);
  border-radius: 999px;
  color: var(--ink);
  text-decoration: none;
}

.page-numbers.current,
.page-numbers:hover {
  border-color: var(--orange);
  background: var(--orange);
  color: var(--white);
}

/* Core content and media emitted by the block/classic editors. */
.entry-content,
.page-content {
  font-size: 1rem;
  line-height: 1.75;
  overflow-wrap: break-word;
}

.entry-content > :first-child,
.page-content > :first-child {
  margin-top: 0;
}

.entry-content > :last-child,
.page-content > :last-child {
  margin-bottom: 0;
}

.entry-content a:not(.quote-button):not(.secondary-button):not(.text-link):not(.ghost-link),
.page-content a:not(.quote-button):not(.secondary-button):not(.text-link):not(.ghost-link) {
  color: var(--orange);
  text-underline-offset: 0.18em;
}

.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6,
.page-content h1,
.page-content h2,
.page-content h3,
.page-content h4,
.page-content h5,
.page-content h6 {
  font-family: var(--font-display);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1.1;
}

.entry-content blockquote,
.page-content blockquote {
  margin: 2rem 0;
  padding: 0.25rem 0 0.25rem 1.25rem;
  border-left: 3px solid var(--orange);
  color: inherit;
  font-size: 1.15em;
}

.entry-content table,
.page-content table {
  width: 100%;
  border-collapse: collapse;
}

.entry-content th,
.entry-content td,
.page-content th,
.page-content td {
  padding: 0.75rem;
  border: 1px solid currentColor;
  border-color: rgba(127, 127, 127, 0.28);
  text-align: left;
}

.alignleft {
  float: left;
  margin: 0.35rem 1.5rem 1rem 0;
}

.alignright {
  float: right;
  margin: 0.35rem 0 1rem 1.5rem;
}

.aligncenter {
  display: block;
  margin-right: auto;
  margin-left: auto;
}

.alignwide {
  width: min(100%, 88rem);
  max-width: none;
  margin-right: auto;
  margin-left: auto;
}

.alignfull {
  width: 100%;
  max-width: none;
}

.wp-caption,
.wp-block-image,
.wp-block-gallery {
  max-width: 100%;
}

.wp-caption img {
  width: 100%;
}

.wp-caption-text,
.wp-element-caption,
.gallery-caption {
  margin: 0.65rem 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.82rem;
  line-height: 1.55;
}

.portfolio-board .wp-caption-text,
.portfolio-board .wp-element-caption,
.portfolio-board .gallery-caption,
.service-index .wp-caption-text,
.service-index .wp-element-caption,
.service-index .gallery-caption,
.about-intro .wp-caption-text,
.about-intro .wp-element-caption,
.about-intro .gallery-caption,
.contact-section .wp-caption-text,
.contact-section .wp-element-caption,
.contact-section .gallery-caption {
  color: rgba(16, 19, 24, 0.58);
}

.sticky {
  position: relative;
}

.bypostauthor {
  box-shadow: inset 3px 0 0 var(--orange);
}

@media (max-width: 1180px) {
  .mobile-nav {
    max-height: calc(100svh - 6.6rem - var(--wp-admin-bar-offset));
    overflow-y: auto;
  }
}

@media (max-width: 782px) {
  body.admin-bar {
    --wp-admin-bar-offset: 46px;
  }
}

@media (max-width: 640px) {
  body.admin-bar .site-header {
    top: calc(0.65rem + var(--wp-admin-bar-offset));
  }

  body.admin-bar .mobile-nav {
    top: calc(5.6rem + var(--wp-admin-bar-offset));
  }

  .alignleft,
  .alignright {
    float: none;
    margin-right: auto;
    margin-left: auto;
  }
}

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

  .hero-slide {
    transform: none;
  }
}

/* Generic WordPress pages, posts, archives and pagination. */
.generic-content {
  min-height: 70svh;
  padding-top: clamp(9rem, 14vw, 12rem);
  background: var(--paper);
  color: var(--ink);
}
.generic-content.has-hero {
  padding-top: clamp(4rem, 7vw, 7rem);
}
.generic-content > article,
.generic-content > .post-grid,
.generic-content > .navigation,
.generic-content__header {
  width: min(100%, 78rem);
  margin-right: auto;
  margin-left: auto;
}
.generic-content__header {
  margin-bottom: 3rem;
}
.generic-content__header h1 {
  max-width: 60rem;
  margin: 0.8rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 6.5rem);
  font-weight: 900;
  letter-spacing: -0.065em;
  line-height: 0.94;
}
.generic-content .entry-content {
  max-width: 56rem;
}
.generic-content .entry-content h2,
.generic-content .entry-content h3,
.generic-content .entry-content h4 {
  margin-top: 2em;
}
.single-featured-image {
  width: 100%;
  max-height: 48rem;
  margin-bottom: 3rem;
  border-radius: 1.5rem;
  object-fit: cover;
}
.post-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 20rem), 1fr));
  gap: 1.5rem;
}
.post-card {
  padding: 1rem;
  border: 1px solid rgba(16, 19, 24, 0.1);
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.7);
}
.post-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  margin-bottom: 1rem;
  border-radius: 0.85rem;
  object-fit: cover;
}
.post-card > span {
  color: rgba(16, 19, 24, 0.55);
  font-size: 0.78rem;
  text-transform: uppercase;
}
.post-card h2 {
  font-family: var(--font-display);
  font-size: 1.55rem;
  line-height: 1.1;
}
.post-card h2 a {
  color: inherit;
  text-decoration: none;
}
.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 3rem;
}
.nav-links a,
.nav-links .current {
  display: grid;
  min-width: 2.6rem;
  min-height: 2.6rem;
  place-items: center;
  border: 1px solid rgba(16, 19, 24, 0.14);
  border-radius: 999px;
  color: var(--ink);
  text-decoration: none;
}
.nav-links .current {
  border-color: var(--orange);
  background: var(--orange);
  color: var(--white);
}
