:root {
  --black: #050505;
  --black-soft: #0b0b0b;
  --ink: #f7f2ea;
  --muted: #aaa39a;
  --dim: #6f6961;
  --champagne: #d8c8ad;
  --line: rgba(247, 242, 234, 0.22);
  --line-soft: rgba(247, 242, 234, 0.11);
  --glow: #d8c8ad;
  --glow-soft: rgba(216, 200, 173, 0.18);
  --ease-luxury: cubic-bezier(0.16, 1, 0.3, 1);
  --font-sans: "Manrope", Arial, sans-serif;
  --font-display: "Cormorant Garamond", Georgia, serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--black);
}

body {
  margin: 0;
  background: var(--black);
  color: var(--ink);
  font-family: var(--font-sans);
  text-rendering: optimizeLegibility;
  animation: site-fade-in 900ms var(--ease-luxury) both;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  display: grid;
  width: 100%;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 1.1rem 3.5vw;
  border-bottom: 1px solid var(--line-soft);
  background: rgba(5, 5, 5, 0.72);
  backdrop-filter: blur(18px);
  animation: header-arrive 900ms var(--ease-luxury) 120ms both;
}

.brand {
  width: 4.4rem;
  min-width: 4.4rem;
  height: 4.4rem;
  overflow: hidden;
}

.brand img,
.footer-brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 1.3rem rgba(255, 255, 255, 0.08));
}

.desktop-nav {
  display: flex;
  gap: clamp(1.4rem, 3vw, 3.2rem);
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.desktop-nav a,
.text-link {
  position: relative;
}

.desktop-nav a.active {
  color: var(--ink);
}

.desktop-nav a::after,
.text-link::after {
  position: absolute;
  right: 0;
  bottom: -0.45rem;
  left: 0;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after,
.text-link:hover::after,
.text-link:focus-visible::after,
.text-link.is-screen-highlight::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta,
.button {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(247, 242, 234, 0.66);
  color: var(--ink);
  background: transparent;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  transition:
    border-color 220ms ease,
    color 220ms ease,
    background 220ms ease,
    transform 260ms var(--ease-luxury),
    box-shadow 260ms var(--ease-luxury);
}

.header-cta::before,
.button::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.18) 45%, transparent 64%);
  opacity: 0;
  transform: translateX(-120%);
  transition:
    opacity 240ms ease,
    transform 700ms var(--ease-luxury);
  pointer-events: none;
}

.header-cta {
  justify-self: end;
  min-height: 2.8rem;
  padding: 0.75rem 1rem;
}

.mobile-menu-toggle {
  position: relative;
  z-index: 42;
  display: none;
  align-items: center;
  gap: 0.68rem;
  min-height: 2.82rem;
  border: 1px solid rgba(247, 242, 234, 0.34);
  border-radius: 999px;
  padding: 0.76rem 1rem 0.76rem 1.08rem;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(247, 242, 234, 0.08), rgba(247, 242, 234, 0.02)),
    rgba(5, 5, 5, 0.66);
  box-shadow:
    0 0.9rem 2rem rgba(0, 0, 0, 0.34),
    inset 0 0 0 1px rgba(255, 255, 255, 0.035);
  font: inherit;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  backdrop-filter: blur(16px);
  transition:
    border-color 360ms var(--ease-luxury),
    background 360ms var(--ease-luxury),
    box-shadow 360ms var(--ease-luxury),
    transform 360ms var(--ease-luxury);
}

.mobile-menu-toggle::before {
  position: absolute;
  inset: -0.42rem;
  border-radius: inherit;
  content: "";
}

.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus-visible,
.mobile-menu-toggle[aria-expanded="true"] {
  border-color: rgba(216, 200, 173, 0.58);
  background:
    linear-gradient(135deg, rgba(216, 200, 173, 0.12), rgba(247, 242, 234, 0.025)),
    rgba(5, 5, 5, 0.78);
  box-shadow:
    0 1rem 2.25rem rgba(0, 0, 0, 0.44),
    0 0 0 1px rgba(216, 200, 173, 0.12),
    inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.mobile-menu-toggle:active {
  transform: translateY(1px) scale(0.985);
}

.mobile-menu-toggle span {
  display: block;
}

.mobile-menu-label {
  min-width: 3.2rem;
  text-align: left;
}

.mobile-menu-lines {
  position: relative;
  width: 1.35rem;
  height: 0.58rem;
}

.mobile-menu-lines::before,
.mobile-menu-lines::after {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  content: "";
  background: currentColor;
  transform-origin: center;
  transition:
    transform 420ms var(--ease-luxury),
    top 420ms var(--ease-luxury);
}

.mobile-menu-lines::before {
  top: 0;
}

.mobile-menu-lines::after {
  top: 0.52rem;
}

.mobile-menu-toggle[aria-expanded="true"] .mobile-menu-lines::before {
  top: 0.26rem;
  transform: rotate(38deg);
}

.mobile-menu-toggle[aria-expanded="true"] .mobile-menu-lines::after {
  top: 0.26rem;
  transform: rotate(-38deg);
}

.mobile-nav-panel {
  position: fixed;
  z-index: 35;
  inset: 0;
  display: none;
  align-content: center;
  padding: 7.6rem 1.2rem 2rem;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.98), rgba(5, 5, 5, 0.88)),
    radial-gradient(circle at 18% 16%, rgba(216, 200, 173, 0.1), transparent 28rem),
    rgba(5, 5, 5, 0.94);
  backdrop-filter: blur(22px);
  opacity: 0;
  transform: translate3d(0, -0.6rem, 0) scale(0.992);
  transition:
    opacity 620ms var(--ease-luxury),
    transform 620ms var(--ease-luxury);
  pointer-events: none;
}

.mobile-nav-panel.is-open {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  pointer-events: auto;
}

.mobile-nav-panel nav {
  display: grid;
  gap: 1px;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}

.mobile-nav-panel a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 4.6rem;
  border-bottom: 1px solid var(--line-soft);
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 12vw, 4rem);
  font-weight: 400;
  letter-spacing: 0.02em;
  opacity: 0.88;
  transform: translateY(0.55rem);
  transition:
    color 360ms var(--ease-luxury),
    opacity 520ms var(--ease-luxury),
    transform 520ms var(--ease-luxury);
}

.mobile-nav-panel.is-open a {
  opacity: 1;
  transform: translateY(0);
}

.mobile-nav-panel.is-open a:nth-child(2) {
  transition-delay: 45ms;
}

.mobile-nav-panel.is-open a:nth-child(3) {
  transition-delay: 90ms;
}

.mobile-nav-panel.is-open a:nth-child(4) {
  transition-delay: 135ms;
}

.mobile-nav-panel.is-open a:nth-child(5) {
  transition-delay: 180ms;
}

.mobile-nav-panel.is-open a:nth-child(6) {
  transition-delay: 225ms;
}

.mobile-nav-panel a:last-child {
  border-bottom: 0;
}

.mobile-nav-panel a::after {
  content: "↓";
  color: var(--glow);
  font-family: var(--font-sans);
  font-size: 0.72rem;
  line-height: 1;
  opacity: 0.76;
  transform: rotate(-90deg);
}

.mobile-nav-panel a.active {
  color: var(--ink);
}

body.mobile-menu-open {
  overflow: hidden;
}

.button {
  min-height: 3.35rem;
  padding: 0.9rem 1.25rem;
}

.header-cta:hover,
.header-cta:focus-visible,
.button:hover,
.button:focus-visible,
.header-cta.is-screen-highlight,
.button.is-screen-highlight {
  border-color: var(--ink);
  background: rgba(247, 242, 234, 0.08);
  box-shadow: 0 1.1rem 2.6rem rgba(0, 0, 0, 0.28), 0 0 0 1px rgba(216, 200, 173, 0.14);
  transform: translateY(-1px);
}

.header-cta:hover::before,
.header-cta:focus-visible::before,
.button:hover::before,
.button:focus-visible::before,
.header-cta.is-screen-highlight::before,
.button.is-screen-highlight::before {
  opacity: 1;
  transform: translateX(120%);
}

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  grid-template-columns: minmax(27rem, 0.96fr) minmax(28rem, 1.04fr);
  overflow: hidden;
  background:
    radial-gradient(circle at 67% 70%, rgba(216, 200, 173, 0.11), transparent 23rem),
    var(--black);
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 18vh;
  content: "";
  background: linear-gradient(0deg, var(--black) 0%, transparent 100%);
  pointer-events: none;
}

.hero-copy-block {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 9rem 3.5vw 5.5rem;
  animation: editorial-rise 1050ms var(--ease-luxury) 180ms both;
}

.rule {
  width: min(100%, 33.5rem);
  height: 1px;
  margin-bottom: 2.1rem;
  background: rgba(247, 242, 234, 0.72);
  transform-origin: left;
  animation: rule-draw 1100ms var(--ease-luxury) 300ms both;
}

.rule.short {
  width: min(83%, 28rem);
  margin-top: 1.75rem;
  margin-bottom: 1.7rem;
}

.eyebrow,
.section-kicker {
  margin: 0;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.46em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 9.4ch;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(4.3rem, 7.5vw, 8.7rem);
  font-weight: 400;
  line-height: 0.86;
  text-transform: uppercase;
  text-shadow: 0 0.08em 0.45em rgba(0, 0, 0, 0.42);
}

.subline {
  max-width: 32rem;
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
}

.hero-actions,
.contact-actions {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 2.2rem;
  flex-wrap: wrap;
}

.text-link {
  color: var(--ink);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.inline-link {
  display: inline-block;
  margin-top: 1rem;
  color: var(--ink);
  font-weight: 700;
}

.hero-art {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: var(--black-soft);
  animation: image-shell-reveal 1200ms var(--ease-luxury) 260ms both;
}

.hero-art::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, var(--black) 0%, rgba(5, 5, 5, 0.58) 18%, transparent 45%),
    linear-gradient(0deg, var(--black) 0%, transparent 28%);
  pointer-events: none;
}

.hero-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 82% center;
  filter: saturate(0.86) contrast(1.05);
  transform: scale(1.04);
  animation: hero-image-settle 1800ms var(--ease-luxury) 180ms both;
  will-change: transform, opacity;
}

.hero-art:hover img {
  transform: scale(1.055);
  transition: transform 1400ms var(--ease-luxury);
}

.section-pad {
  padding: clamp(5rem, 9vw, 8.5rem) 5vw;
  background: var(--black);
}

.flush-top {
  padding-top: clamp(3.5rem, 6vw, 5.5rem);
}

.intro,
.services,
.process,
.contact {
  border-top: 1px solid var(--line-soft);
}

.intro,
.services,
.process,
.contact,
.split-feature,
.image-band,
.gallery-grid,
.area-grid,
.faq {
  position: relative;
}

.intro::before,
.services::before,
.process::before,
.split-feature::before,
.faq::before {
  position: absolute;
  top: -1px;
  left: 5vw;
  width: min(12rem, 32vw);
  height: 1px;
  content: "";
  background: linear-gradient(90deg, rgba(216, 200, 173, 0.55), transparent);
}

.intro-grid,
.section-head,
.process-grid,
footer {
  display: grid;
  grid-template-columns: 1fr 1.55fr;
  gap: clamp(2rem, 6vw, 6.5rem);
}

.intro-grid,
.section-head {
  margin-top: 1.8rem;
}

h2,
h3,
p {
  margin-top: 0;
}

.intro h2,
.section-head h2,
.contact h2 {
  margin-bottom: 0;
  font-family: var(--font-display);
  font-size: clamp(3rem, 5.8vw, 6.6rem);
  font-weight: 400;
  line-height: 0.95;
  text-transform: uppercase;
}

.intro p,
.service-grid p,
.process-grid p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.85;
}

.page-hero {
  min-height: 68svh;
  padding: clamp(9rem, 15vw, 13rem) 5vw clamp(4.5rem, 8vw, 7rem);
  border-bottom: 1px solid var(--line-soft);
  background:
    radial-gradient(circle at 82% 28%, rgba(216, 200, 173, 0.1), transparent 24rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 52%),
    var(--black);
  animation: page-hero-arrive 1000ms var(--ease-luxury) both;
}

.page-hero h1 {
  max-width: 10.5ch;
  margin: 1.6rem 0 1.8rem;
  font-family: var(--font-display);
  font-size: clamp(4.2rem, 8vw, 9.4rem);
  font-weight: 400;
  line-height: 0.86;
  text-transform: uppercase;
  animation: editorial-rise 1050ms var(--ease-luxury) 100ms both;
}

.page-hero p:last-child {
  max-width: 45rem;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  line-height: 1.85;
}

.split-feature {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2.4rem, 6vw, 7rem);
  align-items: center;
  border-top: 1px solid var(--line-soft);
}

.split-feature.reverse > div {
  order: 2;
}

.split-feature.reverse figure {
  order: 1;
}

.split-feature h2,
.contact-panel h2 {
  margin: 1.6rem 0 1.4rem;
  font-family: var(--font-display);
  font-size: clamp(3rem, 5.8vw, 6.2rem);
  font-weight: 400;
  line-height: 0.95;
  text-transform: uppercase;
}

.split-feature p,
.contact-panel p {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.9;
}

.split-feature figure {
  position: relative;
  min-height: clamp(26rem, 52vw, 42rem);
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  background: var(--black-soft);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.025);
}

.split-feature figure::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(0deg, rgba(5, 5, 5, 0.42), transparent 36%),
    linear-gradient(90deg, rgba(5, 5, 5, 0.24), transparent 42%);
  pointer-events: none;
}

.split-feature figcaption {
  position: absolute;
  z-index: 2;
  left: 1.6rem;
  bottom: 1.4rem;
  color: var(--ink);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.split-feature img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  filter: saturate(0.8) brightness(0.76) contrast(1.08);
  transform: scale(1.01);
  transition:
    transform 1100ms var(--ease-luxury),
    filter 900ms ease;
}

.split-feature figure:hover img,
.split-feature figure.is-screen-highlight img {
  transform: scale(1.035);
  filter: saturate(0.86) brightness(0.84) contrast(1.06);
}

.image-band {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  min-height: 36rem;
  background: var(--black);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}

.image-band figure {
  position: relative;
  min-height: 36rem;
  margin: 0;
  overflow: hidden;
}

.image-band figure + figure {
  border-left: 1px solid var(--line-soft);
}

.image-band img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.4) brightness(0.54) contrast(1.18);
  transition: transform 1100ms var(--ease-luxury), filter 900ms ease;
}

.image-band figure:hover img,
.image-band figure.is-screen-highlight img {
  transform: scale(1.045);
  filter: grayscale(0.15) brightness(0.72) contrast(1.12);
}

.image-band figcaption {
  position: absolute;
  left: 1.6rem;
  bottom: 1.4rem;
  color: var(--ink);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 4.5rem;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.compact-grid article {
  min-height: 18rem;
}

.service-grid article {
  min-height: 22rem;
  padding: clamp(1.5rem, 3vw, 2.4rem);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.035), transparent 56%);
  transition:
    background 360ms ease,
    border-color 360ms ease,
    transform 420ms var(--ease-luxury),
    box-shadow 420ms var(--ease-luxury);
}

.service-grid article:hover,
.process-grid article:hover,
.area-grid article:hover,
.panel-card:hover,
.service-grid article.is-screen-highlight,
.process-grid article.is-screen-highlight,
.area-grid article.is-screen-highlight,
.panel-card.is-screen-highlight {
  background: linear-gradient(145deg, rgba(216, 200, 173, 0.07), rgba(255, 255, 255, 0.025) 52%, transparent);
  border-color: rgba(247, 242, 234, 0.28);
  box-shadow: 0 1.4rem 3rem rgba(0, 0, 0, 0.24);
  transform: translateY(-4px);
}

.service-grid span,
.process-grid span {
  display: inline-block;
  margin-bottom: 5rem;
  color: var(--dim);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.service-grid h3,
.process-grid h3 {
  max-width: 11ch;
  margin-bottom: 1rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 3.1rem);
  font-weight: 400;
  line-height: 1;
}

.testimonial-grid {
  position: relative;
  overflow: hidden;
  margin-top: 4.5rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.testimonial-grid::before,
.testimonial-grid::after {
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  width: clamp(2rem, 8vw, 8rem);
  pointer-events: none;
  content: "";
}

.testimonial-grid::before {
  left: 0;
  background: linear-gradient(90deg, var(--black), transparent);
}

.testimonial-grid::after {
  right: 0;
  background: linear-gradient(270deg, var(--black), transparent);
}

.testimonial-track {
  display: flex;
  gap: clamp(0.9rem, 2vw, 1.5rem);
  width: max-content;
  padding: clamp(1.5rem, 3vw, 2.4rem) 0;
  will-change: transform;
}

.testimonial-track.is-loop-ready {
  animation: testimonial-drift 74s linear infinite;
}

.testimonial-card {
  position: relative;
  display: flex;
  flex: 0 0 clamp(22rem, 34vw, 31rem);
  flex-direction: column;
  min-height: 17rem;
  padding: clamp(1.45rem, 2.2vw, 2.1rem);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid rgba(216, 200, 173, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.024), rgba(255, 255, 255, 0.006)),
    rgba(0, 0, 0, 0.26);
}

.review-stars {
  margin-bottom: 1.25rem;
  color: var(--champagne);
  font-size: 0.67rem;
  letter-spacing: 0.5em;
  text-shadow: 0 0 1.5rem rgba(216, 200, 173, 0.22);
}

.testimonial-card p {
  position: relative;
  z-index: 1;
  max-width: 43ch;
  color: var(--muted);
  font-family: var(--font-sans);
  font-size: clamp(0.98rem, 1.05vw, 1.12rem);
  font-weight: 400;
  line-height: 1.78;
  letter-spacing: 0.01em;
}

.testimonial-card footer {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  margin-top: auto;
  padding-top: 2rem;
  color: var(--champagne);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.review-name {
  color: var(--champagne);
}

.review-company {
  color: var(--champagne);
}

.true-north-logo {
  width: clamp(4.8rem, 7vw, 7rem);
  height: auto;
  opacity: 0.78;
  filter: drop-shadow(0 0 1rem rgba(216, 200, 173, 0.1));
}

@keyframes testimonial-drift {
  from {
    transform: translate3d(-50%, 0, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .testimonial-track {
    animation: none;
    transform: none;
  }
}

.process-grid {
  margin-top: 4.5rem;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}

.process-grid article {
  min-height: 21rem;
  padding: 2rem 2.5rem 0 0;
  transition:
    transform 420ms var(--ease-luxury),
    background 360ms ease,
    box-shadow 420ms var(--ease-luxury);
}

.process-grid article + article {
  padding-left: 2.5rem;
  border-left: 1px solid var(--line-soft);
}

.contact {
  position: relative;
  overflow: hidden;
}

.contact::before {
  position: absolute;
  right: -8vw;
  bottom: -4rem;
  content: "NERM";
  color: rgba(255, 255, 255, 0.035);
  font-family: var(--font-display);
  font-size: clamp(11rem, 25vw, 28rem);
  line-height: 0.75;
}

.contact > * {
  position: relative;
  z-index: 1;
}

.contact h2 {
  max-width: 12ch;
  margin-top: 1.8rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}

.gallery-grid figure {
  position: relative;
  min-height: 24rem;
  margin: 0;
  overflow: hidden;
  background: var(--black-soft);
}

.gallery-grid figure.wide {
  grid-column: span 2;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.34) brightness(0.62) contrast(1.14);
  transition:
    transform 1100ms var(--ease-luxury),
    filter 900ms ease;
}

.gallery-grid figure:hover img,
.gallery-grid figure.is-screen-highlight img {
  transform: scale(1.045);
  filter: grayscale(0.08) brightness(0.82) contrast(1.08);
}

.gallery-grid figcaption {
  position: absolute;
  left: 1.4rem;
  bottom: 1.3rem;
  color: var(--ink);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.area-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  border-top: 1px solid var(--line-soft);
}

.area-grid article {
  min-height: 26rem;
  padding: clamp(2rem, 4.5vw, 4rem);
  border: 1px solid var(--line-soft);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.04), transparent 56%),
    var(--black);
  transition:
    background 360ms ease,
    border-color 360ms ease,
    transform 420ms var(--ease-luxury),
    box-shadow 420ms var(--ease-luxury);
}

.area-grid span {
  display: inline-block;
  margin-bottom: 4rem;
  color: var(--dim);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.area-grid h2 {
  max-width: 13ch;
  margin-bottom: 1.2rem;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4.6vw, 5.2rem);
  font-weight: 400;
  line-height: 0.95;
  text-transform: uppercase;
}

.area-grid h2 a {
  transition: color 220ms ease;
}

.area-grid h2 a:hover,
.area-grid h2 a:focus-visible,
.area-grid article.is-screen-highlight h2 a {
  color: var(--glow);
}

.area-grid p,
.faq-list p {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.9;
}

.faq {
  border-top: 1px solid var(--line-soft);
}

.faq-list {
  display: grid;
  grid-template-columns: 1fr;
  margin-top: 4rem;
  border-top: 1px solid var(--line);
}

.faq-list article {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(2rem, 5vw, 5rem);
  padding: 2.2rem 0;
  border-bottom: 1px solid var(--line-soft);
}

.faq-list h3 {
  margin-bottom: 0;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 2.8vw, 3rem);
  font-weight: 400;
  line-height: 1;
}

.contact-panel {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  border-top: 1px solid var(--line-soft);
}

.panel-card {
  min-height: 32rem;
  padding: clamp(2rem, 5vw, 4.5rem);
  border: 1px solid var(--line-soft);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.04), transparent 56%);
  transition:
    background 360ms ease,
    border-color 360ms ease,
    transform 420ms var(--ease-luxury),
    box-shadow 420ms var(--ease-luxury);
}

@keyframes site-fade-in {
  from {
    opacity: 0;
    background: #000;
  }
  to {
    opacity: 1;
    background: var(--black);
  }
}

@keyframes header-arrive {
  from {
    opacity: 0;
    transform: translateY(-0.75rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes editorial-rise {
  from {
    opacity: 0;
    transform: translateY(1.4rem);
    filter: blur(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes rule-draw {
  from {
    opacity: 0;
    transform: scaleX(0);
  }
  to {
    opacity: 1;
    transform: scaleX(1);
  }
}

@keyframes image-shell-reveal {
  from {
    opacity: 0;
    clip-path: inset(0 0 0 18%);
  }
  to {
    opacity: 1;
    clip-path: inset(0);
  }
}

@keyframes hero-image-settle {
  from {
    opacity: 0;
    transform: scale(1.08) translateX(1.5%);
  }
  to {
    opacity: 1;
    transform: scale(1.04) translateX(0);
  }
}

.stacked-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.35rem;
  margin-top: 2rem;
}

footer {
  align-items: end;
  padding: 3rem 3.5vw;
  border-top: 1px solid var(--line-soft);
  background: var(--black);
  color: var(--dim);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.footer-brand {
  width: 4.8rem;
  height: 4.8rem;
}

footer p {
  margin-bottom: 0;
}

@media (max-width: 1500px) {
  .hero {
    display: block;
    min-height: 100svh;
    isolation: isolate;
    background: var(--black);
  }

  .hero-copy-block {
    min-height: 100svh;
    width: 100%;
    padding: clamp(8rem, 13vw, 11rem) 3.75vw clamp(5rem, 8vw, 7rem);
    background:
      linear-gradient(90deg, rgba(5, 5, 5, 0.98) 0%, rgba(5, 5, 5, 0.94) 34%, rgba(5, 5, 5, 0.66) 58%, rgba(5, 5, 5, 0.2) 82%, transparent 100%),
      linear-gradient(0deg, rgba(5, 5, 5, 0.92) 0%, transparent 24%);
  }

  .hero-art {
    position: absolute;
    z-index: -1;
    inset: 0;
    min-height: 100%;
    margin: 0;
    border: 0;
  }

  .hero-art::before {
    background:
      linear-gradient(90deg, rgba(5, 5, 5, 0.9) 0%, rgba(5, 5, 5, 0.52) 36%, rgba(5, 5, 5, 0.18) 62%, rgba(5, 5, 5, 0.34) 100%),
      linear-gradient(0deg, var(--black) 0%, transparent 30%);
  }

  .hero-art img {
    object-position: 70% center;
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto 1fr auto auto;
    gap: 0.75rem;
  }

  .desktop-nav {
    display: none;
  }

  .mobile-menu-toggle {
    display: inline-flex;
  }

  .mobile-nav-panel {
    display: grid;
  }

  .hero-copy-block {
    width: 100%;
    min-height: 100svh;
    padding: 8rem 1.3rem 4.5rem;
    background:
      linear-gradient(90deg, rgba(5, 5, 5, 0.98) 0%, rgba(5, 5, 5, 0.94) 38%, rgba(5, 5, 5, 0.68) 64%, rgba(5, 5, 5, 0.22) 88%, transparent 100%),
      linear-gradient(0deg, rgba(5, 5, 5, 0.94) 0%, transparent 24%);
    animation: mobile-editorial-rise 900ms var(--ease-luxury) 120ms both;
  }

  .hero-art {
    min-height: 100%;
    margin-top: 0;
    border-top: 0;
    animation: none;
  }

  .hero-art::before {
    background:
      linear-gradient(90deg, rgba(5, 5, 5, 0.96) 0%, rgba(5, 5, 5, 0.66) 54%, rgba(5, 5, 5, 0.24) 100%),
      linear-gradient(0deg, var(--black) 0%, transparent 32%);
  }

  .hero-art img {
    transform: none;
    animation: none;
    will-change: auto;
  }

  .hero-art:hover img {
    transform: none;
  }

  .intro-grid,
  .section-head,
  .process-grid,
  .split-feature,
  .contact-panel,
  footer {
    grid-template-columns: 1fr;
  }

  .split-feature.reverse > div,
  .split-feature.reverse figure {
    order: initial;
  }

  .service-grid,
  .image-band,
  .gallery-grid,
  .area-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-grid article + article {
    padding-left: 0;
    border-left: 0;
  }

  .page-hero {
    animation: mobile-page-reveal 900ms var(--ease-luxury) both;
  }

  .intro-grid,
  .section-head,
  .split-feature > div,
  .contact > .section-kicker,
  .contact h2,
  .contact-actions {
    animation: mobile-soft-rise 850ms var(--ease-luxury) both;
  }

  .image-band figure,
  .gallery-grid figure,
  .split-feature figure {
    animation: none;
  }

  .split-feature img,
  .image-band img,
  .gallery-grid img {
    transition: none;
  }

  .split-feature figure:hover img,
  .split-feature figure.is-screen-highlight img {
    transform: scale(1.01);
    filter: saturate(0.8) brightness(0.76) contrast(1.08);
  }

  .image-band figure:hover img,
  .image-band figure.is-screen-highlight img {
    transform: none;
    filter: grayscale(0.4) brightness(0.54) contrast(1.18);
  }

  .gallery-grid figure:hover img,
  .gallery-grid figure.is-screen-highlight img {
    transform: none;
    filter: grayscale(0.34) brightness(0.62) contrast(1.14);
  }

  .service-grid article,
  .process-grid article,
  .area-grid article,
  .faq-list article,
  .panel-card {
    animation: mobile-card-rise 850ms var(--ease-luxury) both;
  }

  .service-grid article:nth-child(2),
  .process-grid article:nth-child(2),
  .area-grid article:nth-child(2),
  .gallery-grid figure:nth-child(2),
  .image-band figure:nth-child(2),
  .faq-list article:nth-child(2),
  .panel-card:nth-child(2) {
    animation-delay: 90ms;
  }

  .service-grid article:nth-child(3),
  .process-grid article:nth-child(3),
  .area-grid article:nth-child(3),
  .gallery-grid figure:nth-child(3),
  .faq-list article:nth-child(3) {
    animation-delay: 160ms;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 0.8rem 1rem;
  }

  .brand {
    width: 3.6rem;
    min-width: 3.6rem;
    height: 3.6rem;
  }

  .header-cta {
    min-height: 2.5rem;
    padding: 0.65rem 0.78rem;
    font-size: 0.58rem;
  }

  .mobile-menu-toggle {
    min-height: 2.5rem;
    padding: 0.65rem 0.75rem;
    font-size: 0.54rem;
  }

  .hero-copy-block {
    min-height: 100svh;
    padding-bottom: 4rem;
  }

  .hero-art {
    min-height: 100%;
    margin-top: 0;
  }

  .hero-art img {
    object-position: center center;
    filter: saturate(0.84) brightness(0.84) contrast(1.05);
  }

  .hero h1 {
    max-width: min(100%, 11.5ch);
    font-size: clamp(2.65rem, 11.5vw, 4.15rem);
    line-height: 0.96;
    letter-spacing: -0.035em;
  }

  .eyebrow,
  .section-kicker {
    font-size: 0.62rem;
    letter-spacing: 0.32em;
  }

  .hero-actions,
  .contact-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 1.35rem;
  }

  .section-pad {
    padding: 4.5rem 1.25rem;
  }

  .intro h2,
  .section-head h2,
  .contact h2,
  .page-hero h1,
  .split-feature h2,
  .contact-panel h2 {
    max-width: 100%;
    font-size: clamp(2.45rem, 12vw, 4.2rem);
    line-height: 1;
    overflow-wrap: normal;
  }

  .contact h2 {
    max-width: 9.6ch;
    font-size: clamp(3rem, 13vw, 4.35rem);
    line-height: 1;
  }

  .testimonial-card {
    flex-basis: min(84vw, 24rem);
    min-height: 17rem;
    border-right: 1px solid var(--line-soft);
  }

  .testimonial-card p {
    max-width: 28rem;
    font-size: 0.96rem;
    line-height: 1.75;
  }

  .service-grid,
  .image-band,
  .gallery-grid,
  .area-grid,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .faq-list article {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .gallery-grid figure.wide {
    grid-column: span 1;
  }

  .service-grid article {
    min-height: 18rem;
  }

  .service-grid article:hover,
  .process-grid article:hover,
  .area-grid article:hover,
  .panel-card:hover,
  .service-grid article.is-screen-highlight,
  .process-grid article.is-screen-highlight,
  .area-grid article.is-screen-highlight,
  .panel-card.is-screen-highlight {
    transform: translateY(-2px);
    box-shadow: 0 1rem 2.2rem rgba(0, 0, 0, 0.2);
  }

  .service-grid span,
  .process-grid span {
    margin-bottom: 3rem;
  }

  .image-band figure,
  .image-band {
    min-height: 24rem;
  }

  .image-band figure + figure {
    border-left: 0;
    border-top: 1px solid var(--line-soft);
  }

  footer {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 1.65rem;
    padding: 2.5rem 1.25rem;
    overflow: hidden;
  }

  footer p {
    max-width: 100%;
    line-height: 1.75;
    letter-spacing: 0.1em;
    text-wrap: balance;
    overflow-wrap: normal;
  }
}

@media (max-width: 390px) {
  .site-header {
    gap: 0.45rem;
    padding-inline: 0.75rem;
  }

  .header-cta {
    padding-inline: 0.62rem;
    font-size: 0.54rem;
  }

  .mobile-menu-toggle {
    padding-inline: 0.62rem;
  }

  .hero-copy-block {
    padding-inline: 0.95rem;
  }

  .hero h1 {
    max-width: min(100%, 11.5ch);
    font-size: clamp(2.25rem, 10.5vw, 2.95rem);
    line-height: 1;
    letter-spacing: -0.04em;
  }

  .intro h2,
  .section-head h2,
  .page-hero h1,
  .split-feature h2,
  .contact-panel h2 {
    font-size: clamp(2.18rem, 11vw, 3.05rem);
    line-height: 1.02;
    letter-spacing: -0.035em;
  }

  .contact h2 {
    max-width: 9.4ch;
    font-size: clamp(2.45rem, 12vw, 3.2rem);
    line-height: 1.02;
  }

  .testimonial-card p {
    font-size: 0.92rem;
    line-height: 1.72;
  }
}

@keyframes mobile-hero-fade {
  from {
    opacity: 0;
    transform: none;
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes mobile-editorial-rise {
  from {
    opacity: 0;
    transform: translateY(1.1rem);
    filter: blur(7px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes mobile-image-reveal {
  from {
    opacity: 0;
    clip-path: inset(8% 0 0 0);
  }
  to {
    opacity: 1;
    clip-path: inset(0);
  }
}

@keyframes mobile-hero-glide {
  from {
    opacity: 0;
    transform: scale(1.055) translateY(0.9rem);
    filter: saturate(0.76) brightness(0.62) contrast(1.08);
  }
  to {
    opacity: 1;
    transform: scale(1.025) translateY(0);
    filter: saturate(0.84) brightness(0.84) contrast(1.05);
  }
}

@keyframes mobile-page-reveal {
  from {
    opacity: 0;
    transform: translateY(0.8rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes mobile-soft-rise {
  from {
    opacity: 0;
    transform: translateY(1rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes mobile-image-card {
  from {
    opacity: 0;
    transform: translateY(1.2rem) scale(0.985);
    filter: saturate(0.75) brightness(0.58);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: none;
  }
}

@keyframes mobile-card-rise {
  from {
    opacity: 0;
    transform: translateY(1.15rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.scroll-reveal {
  opacity: 0;
  transform: translate3d(0, 2.1rem, 0);
  filter: blur(10px);
  animation: none !important;
  transition:
    opacity 900ms var(--ease-luxury),
    transform 900ms var(--ease-luxury),
    filter 900ms var(--ease-luxury);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform, filter;
}

.scroll-reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  filter: blur(0);
  will-change: auto;
}

.scroll-reveal[data-reveal="image"] {
  transform: translate3d(0, 1.6rem, 0) scale(0.986);
  filter: saturate(0.72) brightness(0.62) blur(7px);
}

.scroll-reveal[data-reveal="image"].is-visible {
  transform: translate3d(0, 0, 0) scale(1);
  filter: saturate(1) brightness(1) blur(0);
}

.scroll-reveal[data-reveal="line"] {
  transform: scaleX(0.72);
  transform-origin: left center;
  filter: none;
}

.scroll-reveal[data-reveal="line"].is-visible {
  transform: scaleX(1);
}

@media (max-width: 980px) {
  .scroll-reveal {
    opacity: 0;
    transform: translate3d(0, 1.35rem, 0);
    filter: none;
    transition: none;
    backface-visibility: hidden;
  }

  .scroll-reveal.is-visible {
    animation: mobile-scroll-reveal 1650ms var(--ease-luxury) var(--reveal-delay, 0ms) both !important;
    filter: none;
  }

  .scroll-reveal[data-reveal="image"] {
    transform: translate3d(0, 0.95rem, 0);
    filter: none;
  }

  .scroll-reveal[data-reveal="image"].is-visible {
    transform: translate3d(0, 0, 0);
    filter: none;
  }
}

@keyframes mobile-scroll-reveal {
  from {
    opacity: 0;
    transform: translate3d(0, 1.6rem, 0);
  }
  58% {
    opacity: 0.72;
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.scroll-guide {
  --scroll-y: 0%;
  position: fixed;
  z-index: 18;
  top: 52%;
  right: clamp(1.05rem, 2.4vw, 2.4rem);
  left: auto;
  display: grid;
  grid-template-columns: auto 1px;
  gap: 0.85rem;
  align-items: center;
  height: clamp(11rem, 28vh, 18rem);
  pointer-events: none;
  opacity: 0;
  transform: translate3d(0.6rem, -50%, 0);
  filter: drop-shadow(0 0.35rem 1.15rem rgba(0, 0, 0, 0.88));
  transition:
    opacity 900ms var(--ease-luxury) 700ms,
    transform 900ms var(--ease-luxury) 700ms;
}

.scroll-guide::before {
  position: absolute;
  z-index: -1;
  top: -0.85rem;
  right: -0.72rem;
  bottom: -0.85rem;
  left: -0.72rem;
  content: "";
  border-radius: 999px;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.24) 48%, transparent 72%);
  opacity: 0.82;
}

.scroll-guide.is-ready {
  opacity: 1;
  transform: translate3d(0, -50%, 0);
}

.scroll-guide-label {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  color: rgba(247, 242, 234, 0.46);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  text-shadow: 0 0.18rem 0.8rem rgba(0, 0, 0, 0.95);
}

.scroll-guide-track {
  position: relative;
  display: block;
  width: 1px;
  height: 100%;
  overflow: visible;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(247, 242, 234, 0.18) 12%,
    rgba(247, 242, 234, 0.18) 88%,
    transparent
  );
}

.scroll-guide-progress {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 1px;
  height: var(--scroll-y);
  background: linear-gradient(to bottom, rgba(216, 200, 173, 0), var(--glow));
  box-shadow:
    0 0 0.45rem rgba(0, 0, 0, 0.95),
    0 0 1.15rem rgba(216, 200, 173, 0.34);
  transition: height 160ms linear;
}

.scroll-guide-arrow {
  position: absolute;
  top: var(--scroll-y);
  left: 50%;
  display: block;
  width: 0.58rem;
  height: 0.58rem;
  border-right: 1px solid var(--glow);
  border-bottom: 1px solid var(--glow);
  filter:
    drop-shadow(0 0.2rem 0.45rem rgba(0, 0, 0, 0.95))
    drop-shadow(0 0 0.75rem rgba(216, 200, 173, 0.42));
  transform: translate3d(-50%, -50%, 0) rotate(45deg);
  transition: top 160ms linear;
}

@media (max-width: 780px) {
  .scroll-guide {
    right: 0.64rem;
    left: auto;
    grid-template-columns: auto 1px;
    gap: 0.42rem;
    height: 24svh;
    opacity: 0;
  }

  .scroll-guide-label {
    display: block;
    color: rgba(247, 242, 234, 0.4);
    font-size: 0.48rem;
    letter-spacing: 0.26em;
  }

  .scroll-guide-track {
    background: linear-gradient(
      to bottom,
      transparent,
      rgba(247, 242, 234, 0.16) 16%,
      rgba(247, 242, 234, 0.16) 84%,
      transparent
    );
  }

  .scroll-guide.is-ready {
    opacity: 0.72;
  }
}

@media (prefers-reduced-motion: reduce) and (min-width: 981px) {
  html {
    scroll-behavior: auto;
  }

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

  .hero-art img,
  .hero-art:hover img {
    transform: none !important;
  }

  .scroll-reveal {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }

  .scroll-guide {
    display: none;
  }
}

/* NERM palette lock: prevents old Customizer/Additional CSS colors from bleeding into this theme. */
body.nerm-theme,
body.nerm-theme main,
body.nerm-theme .hero,
body.nerm-theme .page-hero,
body.nerm-theme .section-pad,
body.nerm-theme .intro,
body.nerm-theme .services,
body.nerm-theme .process,
body.nerm-theme .contact,
body.nerm-theme footer {
  background-color: var(--black) !important;
  color: var(--ink) !important;
}

body.nerm-theme .site-header {
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.94), rgba(5, 5, 5, 0.78)) !important;
  border-bottom-color: var(--line-soft) !important;
}

body.nerm-theme .hero h1,
body.nerm-theme .page-hero h1,
body.nerm-theme .intro h2,
body.nerm-theme .section-head h2,
body.nerm-theme .split-feature h2,
body.nerm-theme .contact h2,
body.nerm-theme .contact-panel h2,
body.nerm-theme .area-grid h2,
body.nerm-theme .faq-list h3,
body.nerm-theme .service-grid h3,
body.nerm-theme .process-grid h3 {
  color: var(--ink) !important;
}

body.nerm-theme p,
body.nerm-theme .subline,
body.nerm-theme .intro p,
body.nerm-theme .service-grid p,
body.nerm-theme .process-grid p,
body.nerm-theme .split-feature p,
body.nerm-theme .contact-panel p,
body.nerm-theme .area-grid p,
body.nerm-theme .faq-list p {
  color: var(--muted) !important;
}

body.nerm-theme .testimonial-card footer {
  color: var(--champagne) !important;
}

body.nerm-theme .testimonial-card p {
  color: var(--muted) !important;
}

body.nerm-theme .review-stars {
  color: var(--champagne) !important;
}

body.nerm-theme .eyebrow,
body.nerm-theme .section-kicker,
body.nerm-theme .desktop-nav a {
  color: var(--muted) !important;
}

html body.nerm-theme a,
html body.nerm-theme a:visited {
  color: inherit !important;
}

html body.nerm-theme .site-header a,
html body.nerm-theme .site-header a:visited,
html body.nerm-theme .header-cta,
html body.nerm-theme .button,
html body.nerm-theme .text-link,
html body.nerm-theme .inline-link,
html body.nerm-theme .mobile-menu-toggle {
  color: var(--ink) !important;
}

body.nerm-theme .desktop-nav a.active,
body.nerm-theme .desktop-nav a:hover,
body.nerm-theme .desktop-nav a:focus-visible,
body.nerm-theme .mobile-nav-panel a.active,
body.nerm-theme .area-grid h2 a:hover,
body.nerm-theme .area-grid h2 a:focus-visible,
body.nerm-theme .area-grid article.is-screen-highlight h2 a {
  color: var(--ink) !important;
}

body.nerm-theme .scroll-guide-progress,
body.nerm-theme .intro::before,
body.nerm-theme .services::before,
body.nerm-theme .process::before,
body.nerm-theme .split-feature::before,
body.nerm-theme .faq::before {
  background-color: transparent !important;
}

body.nerm-theme .scroll-guide-arrow {
  border-right-color: var(--glow) !important;
  border-bottom-color: var(--glow) !important;
}
