:root {
  --ink: #161b19;
  --muted: #59645f;
  --paper: #f3f1ec;
  --surface: #fffdfa;
  --white: #ffffff;
  --line: #d8ddd8;
  --hairline: rgba(255, 255, 255, .16);
  --charcoal: #101614;
  --charcoal-2: #18201d;
  --moss: #2d3b34;
  --sage: #7b8c81;
  --steel: #335c6d;
  --copper: #8f4b2c;
  --copper-dark: #6e3922;
  --gold: #d8c27a;
  --bone: #ece5d8;
  --radius: 8px;
  --max: 1180px;
  --shadow: 0 18px 48px rgba(16, 22, 20, .14);
  --shadow-soft: 0 10px 30px rgba(16, 22, 20, .08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Montserrat, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  text-rendering: geometricPrecision;
}

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

a {
  color: var(--steel);
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

h1,
h2,
h3 {
  margin: 0 0 14px;
  line-height: 1.08;
  letter-spacing: 0;
  color: var(--charcoal);
}

h1 {
  font-size: 3.15rem;
}

h2 {
  font-size: 2.35rem;
}

h3 {
  font-size: 1.18rem;
}

p {
  margin: 0 0 16px;
}

blockquote {
  margin: 30px 0 0;
  padding: 24px 26px;
  border-left: 4px solid var(--copper);
  background: var(--surface);
  color: var(--charcoal);
  box-shadow: var(--shadow-soft);
}

cite {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-style: normal;
}

.skip-link {
  position: absolute;
  top: -80px;
  left: 16px;
  z-index: 20;
  padding: 10px 14px;
  background: var(--white);
  color: var(--charcoal);
}

.skip-link:focus {
  top: 12px;
}

.wrap {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 28px;
  background: rgba(16, 22, 20, .94);
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-grid;
  grid-template-columns: 40px auto;
  gap: 11px;
  align-items: center;
  color: var(--white);
  text-decoration: none;
}

.brand-logo {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--charcoal);
  border: 1px solid rgba(216, 194, 122, .42);
}

.brand strong {
  display: block;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: .01em;
}

.brand small {
  display: block;
  color: rgba(255, 255, 255, .66);
  font-size: .7rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  line-height: 1.3;
}

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

.header-call {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .28);
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: .02em;
}

.header-call:hover {
  background: rgba(255, 255, 255, .1);
}

.nav-toggle {
  width: 46px;
  height: 42px;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 0 11px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 12px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform .25s ease, opacity .2s ease;
}

body.menu-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.menu-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.menu-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.home-page .site-header {
  position: fixed;
  left: 0;
  right: 0;
  width: 100%;
  background: transparent;
  border-bottom: 0;
  backdrop-filter: none;
}

/* Legibility over a light hero frame, without a visible bar */
.home-page .brand,
.home-page .header-call,
.home-page .nav-toggle {
  text-shadow: 0 1px 10px rgba(0, 0, 0, .45);
}
.home-page .nav-toggle span {
  box-shadow: 0 1px 6px rgba(0, 0, 0, .4);
}

.site-menu {
  position: fixed;
  inset: 0;
  z-index: 29;
  background: rgba(12, 16, 15, .975);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.site-menu[hidden] { display: none; }

.site-menu-inner {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: center;
  width: min(420px, calc(100% - 48px));
}

.site-menu-link {
  color: #fff;
  text-decoration: none;
  font-size: clamp(1.5rem, 5vw, 2rem);
  font-weight: 600;
  letter-spacing: .01em;
  padding: 12px;
  border-radius: 12px;
}

.site-menu-link:hover { background: rgba(255, 255, 255, .08); }
.site-menu-cta { margin-top: 20px; }
.site-menu-phone {
  color: rgba(255, 255, 255, .7);
  text-decoration: none;
  margin-top: 12px;
  letter-spacing: .04em;
}

body.menu-open { overflow: hidden; }

.hero {
  position: relative;
  min-height: 84vh;
  display: grid;
  align-items: end;
  padding: 130px 0 42px;
  background-size: cover;
  background-position: center;
  color: var(--white);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 14, 13, .66);
  z-index: 1;
}

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

.hero-motion img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.06);
  animation: rccHeroImage 15s ease-in-out infinite;
}

.hero-motion img:nth-child(2) {
  animation-delay: 5s;
}

.hero-motion img:nth-child(3) {
  animation-delay: 10s;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(1020px, calc(100% - 48px));
  margin: 0 auto;
}

.home-hero {
  min-height: 100svh;
  align-items: center;
  padding: 132px 0 60px;
}

.home-hero::before {
  background: linear-gradient(180deg, rgba(10, 14, 13, .58), rgba(10, 14, 13, .48) 52%, rgba(10, 14, 13, .68));
}

.home-hero .hero-inner {
  width: min(1040px, calc(100% - 48px));
  text-align: center;
}

.hero h1 {
  max-width: 880px;
  color: var(--white);
  font-size: 4.7rem;
}

.home-hero h1 {
  max-width: 720px;
  margin: 0 auto 28px;
  color: var(--white);
  font-size: clamp(2.7rem, 6.2vw, 4.1rem);
  font-weight: 600;
  letter-spacing: -.02em;
  line-height: 1.04;
  text-transform: none;
}

.hero-lede {
  max-width: 760px;
  font-size: 1.22rem;
  color: rgba(255, 255, 255, .9);
}

.home-hero .hero-lede {
  max-width: 720px;
  margin: 0 auto;
  font-size: 1.08rem;
}

.hero-service-links {
  display: flex;
  justify-content: center;
  gap: 44px;
  flex-wrap: wrap;
  margin-bottom: 26px;
}

.hero-service-links a {
  color: rgba(255, 255, 255, .92);
  font-size: 1.22rem;
  font-weight: 300;
  text-transform: uppercase;
  text-decoration: none;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--copper);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--gold);
}

.actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.home-hero .actions {
  justify-content: center;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: 0 30px 0 30px;
  background: #d6d3c9;
  color: #433c31;
  font-size: .86rem;
  font-weight: 900;
  text-transform: uppercase;
  text-decoration: none;
}

.home-hero .button {
  min-width: 236px;
  min-height: 58px;
}

.home-hero .button.ghost {
  background: rgba(255, 255, 255, .12);
  color: var(--white);
  border-color: rgba(255, 255, 255, .52);
}

.scroll-cue {
  width: 24px;
  height: 42px;
  margin: 46px auto 0;
  border: 2px solid rgba(255, 255, 255, .82);
  border-radius: 999px;
  position: relative;
}

.scroll-cue::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 8px;
  width: 4px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .82);
  transform: translateX(-50%);
  animation: rccScrollCue 1.8s ease-in-out infinite;
}

.button:hover {
  background: #c8c2b6;
}

.button.ghost {
  background: rgba(255, 255, 255, .11);
  border-color: rgba(255, 255, 255, .38);
  color: var(--white);
}

.button.ghost.dark {
  color: var(--white);
  border-color: rgba(255, 255, 255, .35);
}

.hero-proof {
  width: min(920px, 100%);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 54px;
  border: 1px solid rgba(255, 255, 255, .18);
  background: rgba(16, 22, 20, .62);
  backdrop-filter: blur(12px);
}

.hero-proof p {
  min-height: 96px;
  display: grid;
  align-content: center;
  gap: 4px;
  margin: 0;
  padding: 18px 20px;
  color: rgba(255, 255, 255, .76);
  border-right: 1px solid rgba(255, 255, 255, .14);
}

.hero-proof p:last-child {
  border-right: 0;
}

.hero-proof span {
  color: var(--white);
  font-size: 1.52rem;
  font-weight: 950;
  line-height: 1;
}

section {
  padding: 86px 0;
}

.home-rank-band {
  padding: 18px 0;
  background: #20201f;
  color: rgba(255, 255, 255, .84);
  text-align: center;
}

.home-rank-band p,
.home-rank-band strong {
  display: block;
  margin: 0;
  color: rgba(255, 255, 255, .9);
  font-size: 1.15rem;
  font-weight: 300;
  line-height: 1.35;
  text-transform: uppercase;
}

.home-rank-band strong {
  margin-top: 4px;
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  text-transform: none;
}

.home-proof-band {
  padding: 30px 0;
  background: var(--white);
  border-bottom: 1px solid #ece7dd;
}

.proof-badges {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

@media (min-width: 760px) {
  .proof-badges {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.home-awards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.home-awards article {
  min-height: 126px;
  display: grid;
  place-items: center;
  align-content: center;
  padding: 22px;
  text-align: center;
  border: 1px solid #e5e0d7;
  background: #fbfaf7;
}

.home-awards span {
  display: block;
  color: #433c31;
  font-size: 1.18rem;
  font-weight: 900;
  line-height: 1.15;
}

.home-awards p {
  margin: 8px 0 0;
  color: var(--muted);
}

.proof-marquee {
  position: relative;
  width: 100%;
  margin-top: 18px;
  overflow: hidden;
  border: 1px solid #e5e0d7;
  background: #f7f4ed;
}

.proof-marquee::before,
.proof-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: 68px;
  pointer-events: none;
}

.proof-marquee::before {
  left: 0;
  background: linear-gradient(90deg, #f7f4ed, rgba(247, 244, 237, 0));
}

.proof-marquee::after {
  right: 0;
  background: linear-gradient(270deg, #f7f4ed, rgba(247, 244, 237, 0));
}

.proof-track {
  display: flex;
  width: max-content;
  gap: 14px;
  padding: 14px;
  animation: rccProofMarquee 24s linear infinite;
}

.proof-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  padding: 20px 14px;
  border: 1px solid #e7e2d8;
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 10px 22px rgba(16, 22, 20, .05);
}

.proof-badge img {
  height: 64px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.proof-badge figcaption {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.proof-badge strong {
  color: var(--charcoal);
  font-size: .92rem;
  font-weight: 700;
  line-height: 1.15;
}

.proof-badge span {
  color: var(--muted);
  font-size: .78rem;
  line-height: 1.25;
}

.proof-badge small {
  color: var(--muted);
  font-size: .76rem;
  line-height: 1.25;
}

.experience-band {
  overflow: hidden;
  background: #111713;
  color: rgba(255, 255, 255, .82);
}

.experience-wrap {
  width: min(var(--max), calc(100% - 48px));
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, .98fr);
  gap: 56px;
  align-items: center;
  margin: 0 auto;
}

.experience-mark {
  min-height: 520px;
  display: grid;
  align-content: center;
  position: relative;
  isolation: isolate;
}

.experience-mark::before {
  content: "";
  position: absolute;
  inset: 4% 14% 4% -12%;
  z-index: -1;
  border-radius: 50%;
  background: rgba(216, 194, 122, .08);
  transform: rotate(-18deg);
}

.experience-number,
.experience-word {
  display: block;
  width: fit-content;
  color: transparent;
  background-image:
    linear-gradient(rgba(255, 255, 255, .04), rgba(255, 255, 255, .04)),
    var(--experience-image);
  background-size: cover;
  background-position: center;
  -webkit-background-clip: text;
  background-clip: text;
  font-weight: 950;
  letter-spacing: 0;
  line-height: .82;
  text-transform: uppercase;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, .32));
}

.experience-number {
  font-size: clamp(9rem, 24vw, 18rem);
  transform: translateX(-4vw);
}

.experience-word {
  margin-top: -8px;
  font-size: clamp(4rem, 12vw, 9rem);
  transform: translateX(7vw);
}

.experience-copy h2 {
  color: var(--white);
  font-size: clamp(2.1rem, 4vw, 4.15rem);
  font-weight: 300;
  text-transform: uppercase;
}

.experience-copy p {
  color: rgba(255, 255, 255, .78);
  font-size: 1.08rem;
}

.experience-proof {
  padding-top: 18px;
  border-top: 1px solid rgba(216, 194, 122, .28);
  color: var(--gold) !important;
  font-weight: 800;
}

@supports (animation-timeline: view()) {
  .experience-number {
    animation: rccExperienceNumber linear both;
    animation-timeline: view();
    animation-range: entry 0% cover 72%;
  }

  .experience-word {
    animation: rccExperienceWord linear both;
    animation-timeline: view();
    animation-range: entry 0% cover 72%;
  }
}

.proof-strip {
  padding: 0;
  background: var(--charcoal);
  color: rgba(255, 255, 255, .76);
}

.proof-strip .wrap {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-left: 1px solid rgba(255, 255, 255, .12);
}

.proof-strip .wrap > div {
  min-height: 126px;
  padding: 26px 24px;
  border-right: 1px solid rgba(255, 255, 255, .12);
}

.proof-strip span {
  display: block;
  margin-bottom: 7px;
  color: var(--white);
  font-weight: 900;
}

.proof-strip p {
  margin: 0;
}

.intro,
.services-band,
.work-band,
.blog-list,
.faq-band,
.article-body {
  background: var(--paper);
}

.signature-band {
  background: var(--surface);
}

.premium-band {
  background: #eef2ef;
}

.home-service-panels {
  display: grid;
  grid-template-columns: 1fr;
  padding: 0;
  background: var(--charcoal);
}

.home-service-panel {
  min-height: 72vh;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.home-service-panel a {
  min-height: 100%;
  display: grid;
  align-items: end;
  color: var(--white);
  text-decoration: none;
}

.home-service-panel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  animation: rccPanelDrift 10s ease-in-out infinite alternate;
}

.home-service-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 75% 18%, rgba(216, 194, 122, .14), transparent 34%),
    linear-gradient(102deg, rgba(10, 14, 13, .82), rgba(10, 14, 13, .45) 54%, rgba(10, 14, 13, .74));
}

.home-service-panel div {
  position: relative;
  z-index: 1;
  width: min(940px, calc(100% - 48px));
  margin: 0 auto;
  padding: 72px 0;
}

.home-service-panel small {
  display: inline-grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 22px;
  border: 1px solid rgba(216, 194, 122, .56);
  border-radius: 50%;
  color: var(--gold);
  font-weight: 950;
}

.home-service-panel h2 {
  max-width: 760px;
  color: var(--white);
  font-size: clamp(2.8rem, 8vw, 6.4rem);
  font-weight: 300;
  text-transform: uppercase;
}

.home-service-panel p {
  max-width: 690px;
  font-size: 1.25rem;
  color: rgba(255, 255, 255, .82);
}

.home-service-panel .panel-arrow {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  margin-top: 28px;
  border: 1px solid rgba(255, 255, 255, .76);
  border-radius: 50%;
  color: transparent;
  position: relative;
  transition: transform .22s ease, background .22s ease;
}

.home-service-panel .panel-arrow::before {
  content: "";
  width: 18px;
  height: 18px;
  border-right: 2px solid var(--white);
  border-bottom: 2px solid var(--white);
  transform: rotate(45deg) translate(-2px, -2px);
}

.home-service-panel a:hover .panel-arrow,
.home-service-panel a:focus-visible .panel-arrow {
  background: rgba(255, 255, 255, .12);
  transform: translateY(6px);
}

.home-partner-band {
  background: var(--white);
  text-align: center;
}

.home-partner-band h2 {
  max-width: 990px;
  margin: 0 auto 34px;
  color: #212121;
  font-size: 3.25rem;
  font-weight: 300;
  line-height: 1.18;
  text-transform: uppercase;
}

.home-partner-band h2 span {
  display: block;
  margin-top: 12px;
  font-size: 1.55rem;
}

.partner-media {
  width: min(920px, 100%);
  margin: 0 auto;
  overflow: hidden;
  border-radius: 0 58px 0 58px;
  background: var(--charcoal);
  box-shadow: var(--shadow);
}

.partner-media img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.partner-media figcaption {
  padding: 16px 20px;
  color: rgba(255, 255, 255, .82);
}

.split .wrap,
.detail-grid,
.sub-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: 50px;
  align-items: center;
}

.split p {
  font-size: 1.04rem;
}

.section-head {
  max-width: 790px;
  margin: 0 auto 38px;
  text-align: center;
}

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

.feature-media {
  margin: 0;
  border: 1px solid var(--line);
  background: var(--charcoal);
  box-shadow: var(--shadow);
}

.feature-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.feature-media figcaption {
  padding: 13px 16px;
  color: rgba(255, 255, 255, .78);
  font-size: .9rem;
}

.card-grid,
.standard-grid,
.work-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 18px;
}

.all-services {
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.card,
.fact-panel,
.blog-card,
.faq-list article {
  min-height: 100%;
  position: relative;
  padding: 25px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.card-rule {
  width: 42px;
  height: 3px;
  display: block;
  margin-bottom: 18px;
  background: var(--copper);
}

.card h3,
.blog-card h2,
.faq-list h2 {
  color: var(--charcoal);
}

.card p,
.blog-card p,
.faq-list p {
  color: var(--muted);
}

.text-link {
  font-weight: 900;
  color: var(--copper);
}

.standards-band,
.process-band,
.area-band,
.contact-band {
  background: #e9eee9;
}

.process-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 18px;
  padding: 0;
  margin: 0;
}

.process-list li,
.step-detail {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 18px;
  padding: 24px;
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.process-list li > div,
.step-detail > div {
  min-width: 0;
}

.process-list span,
.step-detail span {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--charcoal);
  color: var(--gold);
  font-weight: 950;
}

.home-process-visual {
  background: #f8f6f1;
}

.process-visual-grid {
  width: min(var(--max), calc(100% - 48px));
  display: grid;
  grid-template-columns: minmax(320px, .95fr) minmax(0, 1.05fr);
  gap: 42px;
  align-items: start;
  margin: 0 auto;
}

.process-visual-grid figure {
  position: sticky;
  top: 96px;
  min-height: 560px;
  margin: 0;
  overflow: hidden;
  border-radius: 0 120px 0 120px;
  background: var(--charcoal);
  box-shadow: var(--shadow);
}

.process-visual-grid figure img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  opacity: .86;
}

.process-visual-grid figure span {
  position: absolute;
  right: 28px;
  bottom: -18px;
  color: rgba(255, 255, 255, .94);
  font-size: clamp(6rem, 13vw, 11rem);
  font-weight: 950;
  line-height: .82;
}

.process-visual-grid > div {
  display: grid;
  gap: 16px;
}

.process-visual-grid article {
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr);
  gap: 18px;
  padding: 26px;
  background: var(--white);
  border: 1px solid #ded8cf;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.process-visual-grid article > span {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--charcoal);
  color: var(--gold);
  font-weight: 950;
}

.process-visual-grid h3 {
  font-size: 1.55rem;
}

.step-output {
  margin-top: 8px;
  color: var(--muted);
}

.work-card a {
  min-height: 100%;
  display: grid;
  grid-template-rows: 250px auto auto;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--charcoal);
  text-decoration: none;
  box-shadow: var(--shadow);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.service-tile a {
  min-height: 100%;
  display: grid;
  grid-template-columns: minmax(190px, .82fr) minmax(0, 1fr);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--charcoal);
  text-decoration: none;
  box-shadow: var(--shadow);
}

.service-tile img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
}

.service-tile div {
  display: grid;
  align-content: center;
  padding: 28px;
}

.service-tile h2 {
  font-size: 1.8rem;
}

.service-tile p:not(.eyebrow) {
  color: var(--muted);
}

.service-tile span {
  margin-top: 8px;
  color: var(--copper);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.services-showcase .service-tile a {
  min-height: 380px;
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  align-items: end;
  color: var(--white);
  background: var(--charcoal);
}

.services-showcase .service-tile a::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 14, 13, .12), rgba(10, 14, 13, .76));
}

.services-showcase .service-tile img {
  position: absolute;
  inset: 0;
  min-height: 100%;
  transform: scale(1.04);
}

.services-showcase .service-tile div {
  position: relative;
  z-index: 1;
  padding: 34px;
}

.services-showcase .service-tile h2 {
  max-width: 420px;
  color: var(--white);
  font-size: 2.2rem;
  font-weight: 300;
  text-transform: uppercase;
}

.services-showcase .service-tile p:not(.eyebrow) {
  max-width: 500px;
  color: rgba(255, 255, 255, .82);
}

.services-showcase .service-tile .eyebrow {
  color: var(--gold);
}

.services-showcase .service-tile span {
  color: var(--white);
}

.work-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.work-card h3,
.work-card p {
  padding: 0 22px;
}

.work-card h3 {
  margin-top: 20px;
}

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

.video-proof-band {
  background: var(--white);
  text-align: center;
}

.video-proof-band h2 {
  max-width: 900px;
  margin-inline: auto;
  color: #1d211f;
  font-size: clamp(2.15rem, 5.3vw, 5rem);
  font-weight: 300;
  text-transform: uppercase;
}

.video-proof-band h2 span {
  display: block;
  margin-top: 14px;
  font-size: clamp(1.1rem, 2.2vw, 2rem);
}

.video-card {
  width: min(940px, calc(100% - 48px));
  display: grid;
  grid-template-columns: minmax(260px, .72fr) minmax(0, 1fr);
  align-items: center;
  gap: 0;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 0 64px 0 64px;
  background: #121816;
  color: var(--white);
  text-align: left;
  text-decoration: none;
  box-shadow: var(--shadow);
  position: relative;
}

.video-card img {
  width: 100%;
  height: 100%;
  max-height: 620px;
  object-fit: cover;
}

.video-card > div {
  padding: 42px;
}

.video-card h3 {
  color: var(--white);
  font-size: clamp(1.7rem, 3.5vw, 3.15rem);
  font-weight: 300;
  text-transform: uppercase;
}

.video-card p {
  color: rgba(255, 255, 255, .8);
}

.play-button {
  position: absolute;
  left: min(32vw, 345px);
  top: 50%;
  width: 92px;
  height: 92px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, .86);
  box-shadow: 0 18px 46px rgba(0, 0, 0, .32);
  transform: translate(-50%, -50%);
}

.play-button::before {
  content: "";
  width: 0;
  height: 0;
  margin-left: 7px;
  border-top: 18px solid transparent;
  border-bottom: 18px solid transparent;
  border-left: 28px solid var(--copper);
}

.video-embed {
  position: relative;
  width: min(360px, calc(100% - 48px));
  aspect-ratio: 9 / 16;
  margin: 28px auto 0;
  border-radius: 24px;
  overflow: hidden;
  background: #000;
  box-shadow: var(--shadow);
}

.video-embed-play {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: #000;
  cursor: pointer;
}

.video-embed-play img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-embed iframe,
.video-embed video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
  background: #000;
}

.video-embed .play-button {
  left: 50%;
}

.reviews-band {
  background: #f2f0eb;
}

.reviews-band .section-head p:last-child {
  color: var(--charcoal);
}

.reviews-shell {
  width: min(var(--max), calc(100% - 34px));
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 44px;
  gap: 10px;
  align-items: center;
  margin: 0 auto;
}

.reviews-strip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: clamp(280px, 72vw, 460px);
  gap: 18px;
  overflow-x: auto;
  padding: 10px 4px 20px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.reviews-strip::-webkit-scrollbar {
  display: none;
}

.review-card {
  min-height: 360px;
  display: grid;
  align-content: space-between;
  gap: 22px;
  scroll-snap-align: center;
  padding: 34px;
  background: var(--white);
  border: 1px solid #ded8cf;
  box-shadow: var(--shadow-soft);
}

.review-stars {
  color: #c9322c;
  font-size: 1.4rem;
  letter-spacing: 0;
}

.review-card p {
  color: #2f3431;
  font-size: 1.16rem;
  line-height: 1.55;
}

.review-card footer {
  display: grid;
  gap: 2px;
  color: var(--muted);
}

.review-card footer strong {
  color: var(--charcoal);
}

.reviews-arrow {
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: var(--charcoal);
  font-size: 2.25rem;
  cursor: pointer;
}

.reviews-arrow:hover,
.reviews-arrow:focus-visible {
  background: rgba(16, 22, 20, .08);
}

.reviews-link {
  margin-top: 20px;
}

.page-hero {
  position: relative;
  overflow: hidden;
  display: grid;
  align-items: center;
  padding: 92px 0 60px;
  background: var(--charcoal);
  color: rgba(255, 255, 255, .82);
  text-align: center;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .035), rgba(255, 255, 255, 0)),
    linear-gradient(90deg, rgba(216, 194, 122, .10), transparent 26%, transparent 74%, rgba(216, 194, 122, .08));
}

.page-hero .wrap {
  position: relative;
  z-index: 1;
}

.page-hero h1,
.sub-hero h1 {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: var(--white);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 600;
  letter-spacing: -.02em;
  line-height: 1.08;
  text-transform: none;
}

.page-hero p,
.sub-hero p {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  color: rgba(255, 255, 255, .78);
  font-size: 1.1rem;
}

.sub-hero {
  background: var(--charcoal);
  color: rgba(255, 255, 255, .82);
}

.sub-hero-grid {
  align-items: center;
}

.sub-hero img,
.owner-photo {
  width: 100%;
  min-height: 380px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 0 58px 0 58px;
  box-shadow: var(--shadow);
}

.owner-photo {
  aspect-ratio: 3 / 4;
}

.clean-list {
  padding-left: 20px;
  margin: 0;
}

.clean-list li {
  margin: 8px 0;
}

.service-detail h3,
.fact-panel h3 {
  margin-top: 22px;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.pill {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--charcoal);
  text-decoration: none;
  box-shadow: var(--shadow-soft);
}

.center,
.center-actions {
  justify-content: center;
  text-align: center;
}

.cta-band {
  background: var(--charcoal);
  color: rgba(255, 255, 255, .82);
  text-align: center;
}

.cta-band h2 {
  color: var(--white);
}

.cta-band p {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.article {
  max-width: 820px;
  margin: 0 auto;
  font-size: 1.04rem;
}

.article-lede {
  font-size: 1.28rem;
  line-height: 1.48;
  color: var(--charcoal);
  font-weight: 800;
}

.article-callout {
  margin: 28px 0 30px;
  padding: 24px;
  border: 1px solid #2c3d37;
  border-radius: var(--radius);
  background: var(--charcoal);
  color: rgba(255, 255, 255, .88);
  box-shadow: var(--shadow);
}

.article-callout h2 {
  margin-bottom: 8px;
  color: var(--white);
  font-size: 1.35rem;
}

.article-callout p {
  margin-bottom: 0;
}

.article h2,
.article h3 {
  margin-top: 34px;
}

.article h2 {
  padding-top: 8px;
}

.article h3 {
  color: #28332f;
}

.article a {
  font-weight: 900;
}

.article-list {
  margin: 8px 0 24px;
  padding-left: 22px;
}

.article-list li + li {
  margin-top: 8px;
}

.blog-card + .blog-card,
.faq-list article + article {
  margin-top: 16px;
}

.contact-lines {
  font-size: 1.28rem;
  font-weight: 900;
}

.intake-band {
  background: var(--charcoal);
}

.intake-band .section-head h2,
.intake-band .section-head p,
.intake-band .eyebrow {
  color: var(--white);
}

.intake-band .section-head p {
  color: rgba(255, 255, 255, .74);
}

.intake-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, .8fr);
  gap: 22px;
  align-items: stretch;
}

.lead-form,
.intake-aside {
  min-height: 100%;
  border-radius: var(--radius);
}

.lead-form {
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.form-field {
  display: grid;
  gap: 7px;
  min-width: 0;
}

.form-field-full {
  grid-column: 1 / -1;
}

.form-field span {
  color: var(--charcoal);
  font-weight: 900;
  line-height: 1.25;
}

.form-field small,
.form-note {
  color: #51615a;
  line-height: 1.45;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 13px;
  border: 1px solid #aab6af;
  border-radius: var(--radius);
  background: #fffefa;
  color: var(--ink);
  font: inherit;
}

.lead-form input[type="file"] {
  min-height: 58px;
  padding: 10px;
  background: #f5f7f4;
}

.lead-form input[type="file"]::file-selector-button {
  min-height: 38px;
  margin-right: 12px;
  padding: 8px 12px;
  border: 0;
  border-radius: var(--radius);
  background: var(--charcoal);
  color: var(--white);
  font-weight: 900;
}

.lead-form textarea {
  min-height: 150px;
  resize: vertical;
}

.lead-form input::placeholder,
.lead-form textarea::placeholder {
  color: #69746e;
  opacity: 1;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  outline: 3px solid rgba(143, 75, 44, .25);
  border-color: var(--copper);
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.lead-form .button {
  background: var(--charcoal);
  color: var(--white);
  border-color: var(--charcoal);
}

.lead-form .button:hover {
  background: var(--copper-dark);
  border-color: var(--copper-dark);
}

.lead-form button:disabled {
  cursor: wait;
  opacity: .72;
}

.form-note,
.form-status {
  margin: 14px 0 0;
}

.form-status {
  min-height: 28px;
  color: var(--charcoal);
  font-weight: 800;
}

.form-status a {
  color: var(--copper);
}

.hp-field {
  position: absolute;
  left: -100vw;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.intake-aside {
  padding: 30px;
  background: #151d1a;
  color: rgba(255, 255, 255, .88);
  border: 1px solid rgba(216, 194, 122, .28);
  box-shadow: var(--shadow);
}

.intake-aside h3 {
  color: var(--white);
}

.intake-aside .clean-list {
  margin: 18px 0 24px;
}

.intake-aside .clean-list li {
  color: rgba(255, 255, 255, .86);
}

.intake-aside a {
  color: #ead886;
}

.intake-logo {
  width: min(150px, 58vw);
  margin: 0 0 22px;
  border-radius: var(--radius);
  background: #0f1513;
  box-shadow: 0 10px 26px rgba(0, 0, 0, .28);
}

.site-footer {
  padding: 58px 0 92px;
  background: #0d1210;
  color: rgba(255, 255, 255, .76);
}

.site-footer h2,
.site-footer h3 {
  color: var(--white);
}

.site-footer a {
  color: var(--gold);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr .7fr .9fr;
  gap: 32px;
}

.mobile-call {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 6;
  min-height: 50px;
  display: none;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  background: var(--copper);
  color: var(--white);
  font-weight: 950;
  text-decoration: none;
  box-shadow: var(--shadow);
}

@keyframes rccHeroImage {
  0% {
    opacity: 1;
    transform: scale(1.06);
  }
  8% {
    opacity: 1;
  }
  35% {
    opacity: 1;
  }
  48% {
    opacity: 0;
    transform: scale(1.18);
  }
  100% {
    opacity: 0;
    transform: scale(1.18);
  }
}

@keyframes rccPanelDrift {
  from {
    transform: scale(1.08) translate3d(-1%, 0, 0);
  }
  to {
    transform: scale(1.18) translate3d(1.5%, -1.5%, 0);
  }
}

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

@keyframes rccScrollCue {
  0%, 100% {
    opacity: .35;
    transform: translate(-50%, 0);
  }
  45% {
    opacity: 1;
    transform: translate(-50%, 10px);
  }
}

@keyframes rccExperienceNumber {
  from {
    transform: translateX(-13vw);
  }
  to {
    transform: translateX(1vw);
  }
}

@keyframes rccExperienceWord {
  from {
    transform: translateX(14vw);
  }
  to {
    transform: translateX(-1vw);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-motion img,
  .home-service-panel img,
  .scroll-cue::before,
  .proof-track,
  .experience-number,
  .experience-word {
    animation: none;
  }

  .hero-motion img:first-child {
    opacity: 1;
  }

  .experience-number,
  .experience-word {
    transform: none;
  }
}

@media (min-width: 900px) {
  h1 {
    font-size: 3.7rem;
  }

  h2 {
    font-size: 2.5rem;
  }
}

@media (max-width: 900px) {
  .home-page .site-header {
    background: transparent;
    border-bottom: 0;
  }

  .site-header {
    min-height: 64px;
    padding: 10px 16px;
  }

  .header-call {
    padding: 7px 14px;
  }

  .hero {
    min-height: 76vh;
    padding: 72px 0 30px;
  }

  .home-hero {
    min-height: 100svh;
    padding: 92px 0 52px;
  }

  .hero h1 {
    font-size: 3.05rem;
  }

  .home-hero h1 {
    font-size: clamp(2.7rem, 10vw, 4.05rem);
  }

  .home-awards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-service-panel {
    min-height: 66vh;
  }

  .experience-wrap,
  .process-visual-grid,
  .video-card {
    grid-template-columns: 1fr;
  }

  .experience-mark {
    min-height: 360px;
  }

  .experience-number,
  .experience-word {
    transform: none;
  }

  .process-visual-grid figure {
    position: relative;
    top: auto;
    min-height: 380px;
  }

  .process-visual-grid figure img {
    min-height: 380px;
  }

  .play-button {
    left: 50%;
    top: 38%;
  }

  .proof-track {
    animation-duration: 18s;
  }

  .home-partner-band h2 {
    font-size: 2.55rem;
  }

  .hero-proof,
  .proof-strip .wrap,
  .service-grid,
  .split .wrap,
  .detail-grid,
  .sub-hero-grid,
  .footer-grid,
  .intake-grid {
    grid-template-columns: 1fr;
  }

  .hero-proof p,
  .proof-strip .wrap > div {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .14);
  }

  .hero-proof p:last-child,
  .proof-strip .wrap > div:last-child {
    border-bottom: 0;
  }

  .service-tile a {
    grid-template-columns: 1fr;
  }

  .service-tile img {
    min-height: 230px;
    height: 230px;
  }

  .lead-form,
  .intake-aside {
    padding: 22px;
  }

  section {
    padding: 62px 0;
  }
}

@media (max-width: 520px) {
  h1 {
    font-size: 2.45rem;
  }

  h2 {
    font-size: 1.78rem;
  }

  h3 {
    font-size: 1.08rem;
  }

  .wrap,
  .hero-inner {
    width: min(100% - 30px, var(--max));
  }

  .brand {
    grid-template-columns: 34px auto;
    gap: 9px;
    min-width: 0;
  }

  .brand-logo {
    width: 34px;
    height: 34px;
  }

  .brand strong {
    font-size: 1rem;
  }

  .brand small {
    font-size: .72rem;
  }

  .header-call {
    padding: 7px 13px;
  }

  .hero {
    min-height: 70vh;
    padding-top: 56px;
  }

  .home-hero {
    min-height: 100svh;
    padding: 72px 0 42px;
  }

  .hero h1 {
    font-size: 2.68rem;
  }

  .home-hero h1 {
    font-size: clamp(2.1rem, 11.5vw, 3rem);
  }

  .page-hero h1,
  .sub-hero h1 {
    font-size: clamp(2rem, 11vw, 2.58rem);
    overflow-wrap: anywhere;
  }

  .split .wrap,
  .detail-grid,
  .sub-hero-grid {
    gap: 28px;
  }

  .hero-service-links {
    display: grid;
    gap: 8px;
    margin-bottom: 22px;
  }

  .hero-service-links a {
    font-size: .95rem;
    font-weight: 600;
  }

  .home-hero .hero-lede {
    font-size: 1rem;
  }

  .home-hero .button {
    width: min(100%, 258px);
  }

  .scroll-cue {
    margin-top: 34px;
  }

  .home-rank-band p {
    font-size: 1rem;
  }

  .home-rank-band strong {
    font-size: .9rem;
  }

  .home-proof-band {
    padding: 26px 0;
  }

  .home-awards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .home-awards article {
    min-height: 110px;
    padding: 16px 12px;
  }

  .home-awards span {
    font-size: 1rem;
  }

  .proof-marquee {
    margin-top: 12px;
  }

  .proof-marquee::before,
  .proof-marquee::after {
    width: 36px;
  }

  .proof-track {
    gap: 10px;
    padding: 10px;
    animation-duration: 16s;
  }

  .proof-badge {
    width: 190px;
    min-height: 82px;
    grid-template-columns: 48px 1fr;
    padding: 10px 12px;
  }

  .proof-badge img,
  .proof-badge strong {
    width: 48px;
    height: 48px;
    font-size: .78rem;
  }

  .home-service-panels {
    grid-template-columns: 1fr;
  }

  .home-service-panel {
    min-height: 58vh;
  }

  .home-service-panel div {
    width: min(100% - 30px, var(--max));
    padding: 40px 0;
  }

  .home-service-panel h2 {
    font-size: clamp(2.28rem, 12vw, 3.55rem);
  }

  .home-service-panel p {
    font-size: 1.02rem;
  }

  .home-service-panel .panel-arrow {
    width: 58px;
    height: 58px;
  }

  .experience-band,
  .home-process-visual,
  .video-proof-band,
  .reviews-band {
    padding: 58px 0;
  }

  .experience-wrap,
  .process-visual-grid,
  .video-card {
    width: min(100% - 30px, var(--max));
  }

  .experience-mark {
    min-height: 270px;
  }

  .experience-number {
    font-size: clamp(7rem, 38vw, 10rem);
  }

  .experience-word {
    font-size: clamp(3.3rem, 23vw, 5.7rem);
  }

  .process-visual-grid {
    gap: 20px;
  }

  .process-visual-grid figure {
    min-height: 300px;
    border-radius: 0 56px 0 56px;
  }

  .process-visual-grid figure img {
    min-height: 300px;
  }

  .process-visual-grid article {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 12px;
    padding: 20px;
  }

  .process-visual-grid article > span {
    width: 40px;
    height: 40px;
  }

  .video-card {
    border-radius: 0 38px 0 38px;
  }

  .video-card img {
    max-height: 430px;
  }

  .video-card > div {
    padding: 26px;
  }

  .play-button {
    top: 34%;
    width: 72px;
    height: 72px;
  }

  .reviews-shell {
    width: min(100% - 40px, var(--max));
    grid-template-columns: 1fr;
  }

  .reviews-arrow {
    display: none;
  }

  .reviews-strip {
    grid-auto-columns: 100%;
    gap: 14px;
    padding-inline: 0;
  }

  .review-card {
    min-height: 330px;
    padding: 26px;
    scroll-snap-align: start;
  }

  .home-partner-band h2 {
    font-size: 2rem;
  }

  .home-partner-band h2 span {
    font-size: 1.12rem;
  }

  .partner-media {
    border-radius: 0 34px 0 34px;
  }

  .hero-lede,
  .page-hero p,
  .sub-hero p {
    font-size: 1rem;
  }

  .card,
  .fact-panel,
  .blog-card,
  .faq-list article,
  .process-list li,
  .step-detail,
  .lead-form,
  .intake-aside {
    padding: 20px;
  }

  .process-list li,
  .step-detail {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 12px;
  }

  .process-list span,
  .step-detail span {
    width: 40px;
    height: 40px;
  }

  .step-detail h2 {
    font-size: 1.46rem;
    line-height: 1.08;
  }

  .step-output {
    font-size: .98rem;
  }

  .hero-proof {
    margin-top: 34px;
  }

  .hero-proof p,
  .proof-strip .wrap > div {
    padding: 20px 18px;
  }

  .work-card a {
    grid-template-rows: 170px auto auto;
  }

  .work-card img {
    height: 170px;
  }

  .work-card h3,
  .work-card p {
    padding-inline: 18px;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .form-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .form-actions .button,
  .form-actions .text-link {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .intake-logo {
    width: 132px;
  }
}

/* Achievements scroller — premium credentials carousel */
.ach-band {
  background: radial-gradient(120% 140% at 50% 0%, #1a221f 0%, var(--charcoal) 58%, #0b0f0d 100%);
  padding: 64px 0;
  border-top: 1px solid rgba(216, 194, 122, .4);
  border-bottom: 1px solid rgba(216, 194, 122, .4);
}
.ach-band .section-head { text-align: center; margin-bottom: 30px; }
.ach-band .section-head .eyebrow { color: var(--gold); }
.ach-band .section-head h2 {
  color: var(--gold);
  background: linear-gradient(92deg, #f6ecc6 0%, var(--gold) 48%, #c4a85d 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.ach-scroller {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding: 0 24px;
  padding: 10px 6px 24px;
  justify-content: safe center;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(216, 194, 122, .55) transparent;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 4%, #000 96%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 4%, #000 96%, transparent);
}
.ach-scroller::-webkit-scrollbar { height: 6px; }
.ach-scroller::-webkit-scrollbar-thumb { background: rgba(216, 194, 122, .5); border-radius: 999px; }
.ach-scroller::-webkit-scrollbar-track { background: transparent; }
.ach-card {
  flex: 0 0 auto;
  width: 232px;
  scroll-snap-align: center;
  text-align: center;
  padding: 30px 24px 26px;
  border-radius: 20px;
  background: radial-gradient(70% 44% at 50% 16%, rgba(216, 194, 122, .14), transparent 72%), linear-gradient(165deg, #1c2521 0%, #0c100e 100%);
  border: 1.5px solid rgba(216, 194, 122, .5);
  box-shadow: 0 22px 44px rgba(0, 0, 0, .42), inset 0 1px 0 rgba(216, 194, 122, .18), 0 0 22px rgba(216, 194, 122, .08);
  transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease;
}
.ach-card:hover {
  transform: translateY(-6px);
  border-color: rgba(216, 194, 122, .85);
  box-shadow: 0 30px 56px rgba(0, 0, 0, .5), 0 0 34px rgba(216, 194, 122, .28);
}
.ach-seal {
  width: 84px;
  height: 84px;
  margin: 0 auto 18px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #2a2410;
  font-weight: 900;
  font-size: 1.26rem;
  letter-spacing: .3px;
  background: radial-gradient(circle at 34% 28%, #fff6d8 0%, #f0d99a 40%, var(--gold) 62%, #b59a4f 100%);
  border: 3px solid rgba(255, 245, 214, .55);
  box-shadow: 0 8px 18px rgba(0, 0, 0, .45), inset 0 2px 3px rgba(255, 255, 255, .75), inset 0 -3px 6px rgba(120, 95, 30, .5), 0 0 0 6px rgba(216, 194, 122, .16), 0 0 26px rgba(216, 194, 122, .38);
}
.ach-seal svg { width: 38px; height: 38px; color: #2a2410; }
.ach-card h3 {
  color: var(--bone);
  font-size: 1.04rem;
  font-weight: 800;
  line-height: 1.25;
  margin: 0 0 5px;
}
.ach-card p {
  color: var(--gold);
  font-size: .82rem;
  letter-spacing: .2px;
  margin: 0;
}
@media (max-width: 760px) {
  .ach-band { padding: 48px 0; }
  .ach-scroller { justify-content: flex-start; }
  .ach-card { width: 200px; padding: 26px 20px 22px; }
}
