/* STATLink Solutions LLC — v2
   Dark cinematic product-site rhythm, professional-services structure. */

:root {
  --bg: #07080d;
  --bg-elev: #0c0e16;
  --bg-panel: #10131c;
  --blue: #1068bc;
  --glow: #0478dc;
  --gold: #ce9f59;
  --gold-bright: #e4ac44;
  --orange: #fc8c00;
  --text: #eef1f6;
  --muted: #c8ced8;
  --faint: #6d7686;
  --hairline: rgba(255, 255, 255, 0.08);
  --hairline-strong: rgba(255, 255, 255, 0.14);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  --font-display: "Outfit", system-ui, sans-serif;
  --font-body: "Outfit", system-ui, sans-serif;
  --wrap: 72rem;
  --header-h: 3.25rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --radius: 1rem;
}

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

html {
  scroll-behavior: smooth;
  color-scheme: dark;
}

html:focus-within {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--gold-bright);
}

:focus {
  outline: none;
}

:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 3px;
}

h1,
h2,
h3,
h4 {
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 0.75rem;
}

h2 {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 600;
}

h3 {
  font-size: clamp(1.25rem, 2.2vw, 1.7rem);
}

p {
  margin: 0 0 1rem;
}

p:last-child {
  margin-bottom: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 1000;
  background: var(--gold);
  color: #140e06;
  padding: 0.55rem 0.9rem;
  font-weight: 600;
  border-radius: 0.35rem;
}

.skip-link:focus {
  top: 1rem;
}

.wrap {
  width: min(100% - 2rem, var(--wrap));
  margin-inline: auto;
}

@media (min-width: 48rem) {
  .wrap {
    width: min(100% - 4rem, var(--wrap));
  }
}

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  border-bottom: 1px solid transparent;
  background: rgba(7, 8, 13, 0.55);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  transition: background 0.35s var(--ease), border-color 0.35s var(--ease);
}

.site-header.is-scrolled {
  background: rgba(7, 8, 13, 0.92);
  border-bottom-color: var(--hairline);
}

.site-header__inner {
  width: min(100% - 1.5rem, calc(var(--wrap) + 2rem));
  margin-inline: auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  min-width: 0;
}

.brand:hover {
  color: inherit;
}

.brand__mark {
  width: 1.9rem;
  height: auto;
  mix-blend-mode: lighten;
  flex-shrink: 0;
}

.brand__name {
  font-size: 1.02rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  white-space: nowrap;
}

.brand__stat {
  color: var(--blue);
}

.brand__link {
  color: #fff;
}

.nav-toggle {
  appearance: none;
  background: transparent;
  border: 1px solid var(--hairline-strong);
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 0.5rem;
  display: grid;
  place-items: center;
  cursor: pointer;
  color: var(--text);
}

.nav-toggle__bars,
.nav-toggle__bars::before,
.nav-toggle__bars::after {
  display: block;
  width: 1.05rem;
  height: 1.5px;
  background: currentColor;
  position: relative;
  transition: transform 0.25s var(--ease), opacity 0.2s;
}

.nav-toggle__bars::before,
.nav-toggle__bars::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle__bars::before {
  top: -5px;
}

.nav-toggle__bars::after {
  top: 5px;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bars {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bars::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bars::after {
  top: 0;
  transform: rotate(-45deg);
}

.site-nav__list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.site-nav a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}

.site-nav a:hover,
.site-nav a[aria-current="true"] {
  color: var(--text);
}

@media (max-width: 47.99rem) {
  .site-nav {
    position: fixed;
    inset: var(--header-h) 0 0;
    background: rgba(7, 8, 13, 0.97);
    padding: 1.5rem;
    transform: translateY(-0.5rem);
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition: opacity 0.28s var(--ease), transform 0.28s var(--ease),
      visibility 0.28s;
  }

  .site-nav.is-open {
    opacity: 1;
    transform: none;
    pointer-events: auto;
    visibility: visible;
  }

  .site-nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 0.35rem;
  }

  .site-nav a {
    display: block;
    padding: 0.9rem 0.4rem;
    font-size: 1.2rem;
    color: var(--text);
    border-bottom: 1px solid var(--hairline);
  }

  .site-nav .btn--nav {
    margin-top: 0.75rem;
    text-align: center;
    border-bottom: 1px solid var(--gold);
  }
}

@media (min-width: 48rem) {
  .nav-toggle {
    display: none;
  }
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.35rem;
  min-height: 2.75rem;
  border-radius: 999px;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease),
    color 0.25s var(--ease), box-shadow 0.25s var(--ease), transform 0.25s var(--ease);
}

.btn:hover {
  color: #fff;
}

.btn--primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 0 0 1px rgba(4, 120, 220, 0.25), 0 8px 32px rgba(4, 120, 220, 0.28);
}

.btn--primary:hover {
  background: var(--glow);
  box-shadow: 0 0 0 1px rgba(4, 120, 220, 0.4), 0 10px 40px rgba(4, 120, 220, 0.42);
}

.btn--gold {
  color: var(--gold-bright);
  border-color: var(--gold);
  background: transparent;
}

.btn--gold:hover {
  background: rgba(206, 159, 89, 0.12);
  border-color: var(--gold-bright);
  color: var(--gold-bright);
}

.btn--ghost {
  color: var(--text);
  border-color: var(--hairline-strong);
  background: transparent;
}

.btn--ghost:hover {
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.04);
}

.btn--nav {
  padding: 0.5rem 1.05rem;
  font-size: 0.88rem;
  color: var(--gold-bright);
}

.btn--block {
  width: 100%;
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: clamp(6.5rem, 14vh, 11.5rem) 1.5rem clamp(7.5rem, 16vh, 13rem);
  text-align: center;
}

.hero__glow {
  position: absolute;
  inset: 8% 5% 18%;
  background:
    radial-gradient(ellipse 48% 52% at 38% 42%, rgba(4, 120, 220, 0.26), transparent 62%),
    radial-gradient(ellipse 42% 48% at 64% 40%, rgba(252, 140, 0, 0.14), transparent 58%),
    radial-gradient(ellipse 50% 40% at 50% 58%, rgba(206, 159, 89, 0.1), transparent 55%);
  filter: blur(18px);
  pointer-events: none;
  z-index: -1;
  animation: glow-breathe 18s ease-in-out infinite;
}

@keyframes glow-breathe {
  0%,
  100% {
    opacity: 0.85;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.03);
  }
}

.hero__inner {
  width: min(100%, 54rem);
  display: grid;
  justify-items: center;
}

.hero__mark {
  width: clamp(11rem, 36vw, 24rem);
  height: auto;
  mix-blend-mode: lighten;
  margin-bottom: 3.25rem;
  filter: drop-shadow(0 0 48px rgba(4, 120, 220, 0.2));
}

.wordmark {
  font-family: var(--font-body);
  font-size: clamp(3.15rem, 11vw, 6.85rem);
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 0.92;
  margin: 0;
}

.wordmark__stat {
  color: var(--blue);
}

.wordmark__link {
  color: #fff;
}

.hero__entity {
  margin: 1.55rem 0 0;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--faint);
}

.hero__tagline {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2.3vw, 1.35rem);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: none;
  color: var(--gold-bright);
  margin: 2.35rem 0 0;
}

.hero__lead {
  margin: 2.75rem 0 0;
  max-width: 36rem;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.6vw, 1.15rem);
  font-weight: 400;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
  margin-top: 3.15rem;
}

/* ---------- Shared sections ---------- */

.kicker {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 0.85rem;
}

.section-intro {
  max-width: 40rem;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.section-intro h2 {
  margin-bottom: 1rem;
}

.section-intro__lede {
  color: var(--muted);
  font-size: 1.08rem;
}

.solutions,
.process,
.audience,
.trust,
.about {
  padding: clamp(4.5rem, 10vw, 8rem) 0;
}

.solutions {
  position: relative;
  background-color: var(--bg);
  border-top: 1px solid var(--hairline);
}

.solutions__graphic {
  margin: 2.5rem 0 0;
  max-width: 42rem;
}

.solutions__graphic img {
  width: 100%;
  mix-blend-mode: lighten;
  filter: drop-shadow(0 20px 60px rgba(4, 120, 220, 0.12));
}

/* ---------- Services (full subsections, not teasers) ---------- */

.service {
  display: grid;
  gap: 1rem;
  padding: clamp(2.25rem, 5vw, 3.5rem) 0;
  border-top: 1px solid var(--hairline);
}

.service:last-child {
  padding-bottom: 0;
}

.service__index {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--gold);
  margin: 0;
}

.service h3 {
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  letter-spacing: -0.025em;
  margin-bottom: 1.1rem;
  max-width: 22ch;
}

.service__body p {
  color: var(--muted);
  max-width: 46rem;
}

.service__looks {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 1.75rem 0 0.9rem;
}

.service ul {
  list-style: none;
  display: grid;
  gap: 0.75rem;
}

.service li {
  position: relative;
  padding: 1rem 1.1rem 1rem 1.35rem;
  background: rgba(16, 19, 28, 0.72);
  border: 1px solid var(--hairline);
  border-radius: 0.75rem;
  color: var(--text);
  font-size: 0.98rem;
  line-height: 1.5;
}

.service li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.85rem;
  bottom: 0.85rem;
  width: 2px;
  background: linear-gradient(180deg, var(--blue), var(--gold));
  border-radius: 2px;
}

@media (min-width: 48rem) {
  .service {
    grid-template-columns: 4.5rem 1fr;
    gap: 1.5rem 2rem;
    align-items: start;
  }

  .service ul {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.9rem;
  }
}

@media (min-width: 64rem) {
  .service h3 {
    max-width: none;
  }
}

/* ---------- How we work ---------- */

.process {
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(4, 120, 220, 0.07), transparent 60%),
    var(--bg);
  border-top: 1px solid var(--hairline);
}

.steps {
  list-style: none;
  display: grid;
  gap: 1rem;
  counter-reset: none;
}

.step {
  background: var(--bg-elev);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: 1.5rem 1.4rem 1.6rem;
  position: relative;
  overflow: hidden;
}

.step::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), transparent 70%);
  opacity: 0.7;
}

.step__num {
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  color: var(--gold);
  margin: 0 0 0.85rem;
}

.step h3 {
  margin-bottom: 0.65rem;
}

.step p {
  color: var(--muted);
  font-size: 0.98rem;
}

@media (min-width: 56rem) {
  .steps {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.1rem;
    position: relative;
  }

  .steps::before {
    content: "";
    position: absolute;
    top: 2.15rem;
    left: 8%;
    right: 8%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.35;
    pointer-events: none;
  }
}

/* ---------- Audience ---------- */

.audience {
  border-top: 1px solid var(--hairline);
  background: var(--bg);
}

.audience__grid {
  list-style: none;
  display: grid;
  gap: 1rem;
}

.audience__card {
  padding: 1.65rem 1.45rem 1.75rem;
  border-radius: var(--radius);
  border: 1px solid var(--hairline);
  background: linear-gradient(180deg, rgba(16, 104, 188, 0.07), transparent 42%),
    var(--bg-elev);
  position: relative;
}

.audience__card::before {
  content: "";
  position: absolute;
  left: 1.45rem;
  right: 1.45rem;
  top: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.audience__card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.7rem;
}

.audience__card p {
  color: var(--muted);
}

@media (min-width: 56rem) {
  .audience__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.15rem;
  }
}

/* ---------- Trust ---------- */

.trust {
  border-top: 1px solid var(--hairline);
  background:
    radial-gradient(ellipse 55% 45% at 50% 0%, rgba(206, 159, 89, 0.06), transparent 58%),
    var(--bg);
}

.trust__list {
  list-style: none;
  display: grid;
  gap: 1.75rem;
}

.trust__item {
  padding: 0 0 0.25rem;
  border-top: 1px solid var(--hairline);
  padding-top: 1.35rem;
}

.trust__index {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--gold);
  margin: 0 0 0.7rem;
}

.trust__item h3 {
  font-size: 1.2rem;
  margin-bottom: 0.55rem;
}

.trust__item p {
  color: var(--muted);
  max-width: 34rem;
}

@media (min-width: 56rem) {
  .trust__list {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }

  .trust__item {
    border-top: none;
    border-left: 1px solid var(--hairline);
    padding: 0 0 0 1.75rem;
  }

  .trust__item:first-child {
    border-left: none;
    padding-left: 0;
  }
}

/* ---------- About + contact ---------- */

.about {
  border-top: 1px solid var(--hairline);
  background:
    radial-gradient(ellipse 45% 50% at 85% 80%, rgba(252, 140, 0, 0.06), transparent 55%),
    radial-gradient(ellipse 40% 45% at 10% 20%, rgba(4, 120, 220, 0.08), transparent 55%),
    var(--bg);
}

.about__grid {
  display: grid;
  gap: clamp(2.75rem, 7vw, 5.25rem);
  justify-items: start;
}

.about__portrait {
  margin: 0;
  width: min(100%, clamp(18rem, 32vw, 28rem));
}

.about__portrait img {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: contain;
  border-radius: 0.5rem;
  box-shadow:
    0 0 0 1px var(--hairline),
    0 28px 64px rgba(0, 0, 0, 0.38);
}

.about__copy {
  max-width: 34rem;
}

.about__copy p {
  color: var(--text);
}

.about__copy h2 + p {
  color: var(--text);
  font-size: 1.08rem;
}

@media (min-width: 48rem) {
  .about__grid {
    grid-template-columns: auto minmax(0, 1fr);
    column-gap: clamp(4.5rem, 8vw, 7rem);
    row-gap: clamp(3.5rem, 6vw, 6rem);
    align-items: start;
  }

  .about__portrait {
    grid-column: 1;
    grid-row: 1;
    padding-top: 0.2rem;
  }

  .about__copy {
    grid-column: 2;
    grid-row: 1;
  }

  .contact {
    grid-column: 2;
    grid-row: 2;
  }
}

.contact {
  width: min(100%, 34rem);
  background: var(--bg-panel);
  border: 1px solid var(--hairline);
  border-radius: 1.15rem;
  padding: 1.75rem 1.4rem 1.6rem;
  box-shadow: var(--shadow);
}

.contact__title {
  font-size: 1.65rem;
  margin-bottom: 0.55rem;
}

.contact__lede {
  color: var(--muted);
  margin-bottom: 1rem;
}

.contact__email {
  margin-bottom: 1.5rem;
}

.contact__email a {
  color: var(--gold-bright);
  font-weight: 500;
  text-decoration: none;
  word-break: break-all;
}

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

.contact-form {
  display: grid;
  gap: 0.95rem;
}

.field {
  display: grid;
  gap: 0.4rem;
}

.field label {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.field input,
.field textarea {
  font: inherit;
  color: var(--text);
  background: #090b12;
  border: 1px solid var(--hairline-strong);
  border-radius: 0.55rem;
  padding: 0.75rem 0.85rem;
  width: 100%;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.field textarea {
  resize: vertical;
  min-height: 8.5rem;
}

.field input:hover,
.field textarea:hover {
  border-color: rgba(206, 159, 89, 0.35);
}

.field input:focus-visible,
.field textarea:focus-visible {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(206, 159, 89, 0.18);
}

.form-note {
  min-height: 1.25rem;
  font-size: 0.88rem;
  color: var(--muted);
  margin: 0;
}

.form-note.is-ready {
  color: var(--gold-bright);
}

/* ---------- Footer ---------- */

.site-footer {
  border-top: 1px solid var(--hairline);
  padding: 2rem 0 2.4rem;
  background: #05060a;
}

.site-footer__inner {
  display: grid;
  gap: 0.45rem;
  text-align: center;
}

.site-footer__brand {
  font-size: 1.05rem;
  font-weight: 600;
  margin: 0;
}

.site-footer__email {
  margin: 0.45rem 0 0;
  font-size: 0.88rem;
}

.site-footer__email a {
  color: var(--gold);
  text-decoration: none;
  word-break: break-all;
}

.site-footer__email a:hover {
  color: var(--gold-bright);
  text-decoration: underline;
}

.site-footer__llc {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--faint);
}

.site-footer__copy,
.site-footer__tag {
  margin: 0;
  color: var(--faint);
  font-size: 0.88rem;
}

.site-footer__tag {
  font-family: var(--font-display);
  letter-spacing: 0.12em;
  color: var(--gold);
  font-size: 0.78rem;
}

@media (min-width: 60rem) {
  .site-footer__inner {
    grid-template-columns: 1fr auto 1fr;
    align-items: end;
    text-align: left;
  }

  .site-footer__copy {
    text-align: center;
  }

  .site-footer__tag {
    text-align: right;
  }

  .site-footer__llc {
    display: inline;
    margin-left: 0.55rem;
  }
}

/* ---------- Motion ---------- */

[data-reveal] {
  opacity: 0.55;
  transform: translateY(0.7rem);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
}

[data-reveal].is-in {
  opacity: 1;
  transform: none;
}

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

  .hero__glow,
  [data-reveal],
  .btn,
  .site-header,
  .site-nav,
  .nav-toggle__bars,
  .nav-toggle__bars::before,
  .nav-toggle__bars::after {
    animation: none !important;
    transition: none !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

body.nav-open {
  overflow: hidden;
}

@media (max-width: 47.99rem) {
  .hero__mark {
    width: min(12.5rem, 68vw);
    margin-bottom: 2rem;
  }

  .about__portrait {
    width: 100%;
  }
}

.chooser {
  list-style: none;
  display: grid;
  gap: 1.25rem;
  margin: 3rem 0 0;
}

.chooser__card {
  padding: 2rem 0 2.1rem;
  border-top: 1px solid var(--hairline);
}

.chooser__card h3 {
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  max-width: 22ch;
  margin-bottom: 0.85rem;
}

.chooser__card p {
  color: var(--muted);
  max-width: 38rem;
  margin-bottom: 1.25rem;
}

.chooser__card a {
  color: var(--gold-bright);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
}

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

@media (min-width: 56rem) {
  .chooser {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }

  .chooser__card {
    border-top: none;
    padding: 0;
  }
}

.inner-page {
  padding: clamp(5.5rem, 12vw, 8.5rem) 0 clamp(4rem, 8vw, 6.5rem);
}

.inner-page__index {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--gold);
  margin: 0 0 1rem;
}

.inner-page h1 {
  font-size: clamp(2.15rem, 5vw, 3.6rem);
  max-width: 18ch;
  margin-bottom: 1.75rem;
}

.inner-page .service__body p {
  color: var(--muted);
  max-width: 42rem;
  font-size: 1.08rem;
}

.inner-cta {
  margin-top: 2.75rem;
}

