:root {
  --forest: #17281f;
  --forest-2: #203a2c;
  --forest-3: #2b4c3a;
  --charcoal: #14110d;
  --charcoal-2: #1d1812;
  --cream: #f4efe3;
  --cream-dim: #ebe2cd;
  --paper: #fbf8f1;
  --gold: #b9924e;
  --gold-soft: #d9c295;
  --ink: #1c1a15;
  --ink-soft: #5b5648;
  --ink-faint: #8b8570;
  --line: rgba(28, 26, 21, 0.12);
  --line-on-dark: hsla(42, 44%, 92%, 0.16);
  --display: "Fraunces", serif;
  --body: "Instrument Sans", sans-serif;
  --container: 1280px;
  --pad: clamp(24px, 5vw, 72px);
  --radius-s: 4px;
  --radius-m: 10px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}
*,
:after,
:before {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
body {
  margin: 0;
  font-family: var(--body);
  background: var(--paper);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  line-height: 1.5;
}
img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
}
a,
button {
  color: inherit;
}
button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}
h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: -0.01em;
}
p,
ul {
  margin: 0;
}
ul {
  list-style: none;
  padding: 0;
}
.wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}
.eyebrow {
  font-family: var(--body);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow:before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--gold);
  display: inline-block;
}
.eyebrow--light {
  color: var(--gold-soft);
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 2px;
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition:
    background 0.45s var(--ease),
    color 0.45s var(--ease),
    transform 0.45s var(--ease),
    box-shadow 0.45s var(--ease);
  white-space: nowrap;
}
.btn svg {
  transition: transform 0.4s var(--ease);
}
.btn:hover svg {
  transform: translateX(4px);
}
.btn-gold {
  background: var(--gold);
  color: var(--charcoal);
}
.btn-gold:hover {
  background: var(--gold-soft);
}
.btn-line {
  border: 1px solid var(--line-on-dark);
  color: var(--cream);
}
.btn-line:hover {
  border-color: var(--gold-soft);
  color: var(--gold-soft);
}
.btn-ghost {
  border: 1px solid var(--line);
  color: var(--ink);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.reveal {
  opacity: 0;
}
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 26px 0;
  transition:
    padding 0.45s var(--ease),
    background 0.45s var(--ease),
    box-shadow 0.45s var(--ease),
    border-color 0.45s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.is-solid {
  padding: 14px 0;
  background: hsla(42, 56%, 96%, 0.92);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  flex-direction: column;
  line-height: 1;
  color: var(--cream);
  transition: color 0.45s var(--ease);
}
.nav.is-solid .brand {
  color: var(--ink);
}
.brand-mark {
  font-family: var(--display);
  font-size: 22px;
  letter-spacing: 0.06em;
  font-weight: 500;
  transition: font-size 0.45s var(--ease);
}
.nav.is-solid .brand-mark {
  font-size: 19px;
}
.brand-sub {
  font-size: 9.5px;
  letter-spacing: 0.28em;
  color: var(--gold-soft);
  margin-top: 3px;
}
.nav.is-solid .brand-sub {
  color: var(--gold);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--cream);
  position: relative;
  padding: 4px 0;
  transition: color 0.4s var(--ease);
}
.nav.is-solid .nav-links a {
  color: var(--ink-soft);
}
.nav-links a:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 0;
  background: var(--gold);
  transition: width 0.4s var(--ease);
}
.nav-links a:hover {
  color: var(--gold);
}
.nav-links a:hover:after {
  width: 100%;
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 18px;
}
.nav-cta {
  padding: 12px 22px;
  font-size: 13px;
}
.nav-burger {
  display: none;
  width: 34px;
  height: 22px;
  position: relative;
}
.nav-burger span {
  position: absolute;
  left: 0;
  right: 0;
  height: 1.5px;
  background: var(--cream);
  transition:
    transform 0.3s var(--ease),
    opacity 0.3s var(--ease),
    background 0.3s var(--ease);
}
.nav.is-solid .nav-burger span {
  background: var(--ink);
}
.nav-burger span:first-child {
  top: 2px;
}
.nav-burger span:nth-child(2) {
  top: 10px;
}
.nav-burger span:nth-child(3) {
  top: 18px;
}
.nav-burger.is-open span:first-child {
  transform: translateY(8px) rotate(45deg);
}
.nav-burger.is-open span:nth-child(2) {
  opacity: 0;
}
.nav-burger.is-open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--forest);
  z-index: 90;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 0 32px;
  gap: 22px;
  transform: translateY(-100%);
  transition: transform 0.55s var(--ease);
}
.mobile-menu.is-open {
  transform: translateY(0);
}
.mobile-menu a {
  font-family: var(--display);
  font-size: clamp(30px, 8vw, 44px);
  color: var(--cream);
  font-weight: 400;
}
.mobile-menu a em {
  color: var(--gold-soft);
}
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  color: var(--cream);
  overflow: hidden;
  background: var(--forest);
}
.hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.14);
  filter: saturate(1.02);
}
.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(20, 17, 13, 0.55),
      rgba(20, 17, 13, 0.12) 30%,
      rgba(20, 17, 13, 0.2) 55%,
      rgba(20, 17, 13, 0.86)
    ),
    linear-gradient(90deg, rgba(20, 17, 13, 0.55), rgba(20, 17, 13, 0.05) 42%);
}
.door {
  position: absolute;
  top: 0;
  height: 100%;
  width: 50%;
  background: var(--forest);
  z-index: 5;
}
.door-l {
  left: 0;
  box-shadow: 6px 0 30px rgba(0, 0, 0, 0.35);
}
.door-r {
  right: 0;
  box-shadow: -6px 0 30px rgba(0, 0, 0, 0.35);
}
.hero-content {
  position: relative;
  z-index: 6;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: clamp(56px, 9vh, 110px);
}
.hero-eyebrow {
  margin-bottom: 26px;
}
.hero h1 {
  font-size: clamp(44px, 7.4vw, 96px);
  line-height: 0.98;
  font-weight: 400;
  letter-spacing: -0.015em;
  max-width: 16ch;
}
.hero h1 .word {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
}
.hero h1 .word > span {
  display: inline-block;
  transform: translateY(115%);
}
.hero h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold-soft);
}
.hero-sub {
  margin-top: 28px;
  max-width: 460px;
  font-size: 16.5px;
  line-height: 1.65;
  color: hsla(42, 44%, 92%, 0.82);
}
.hero-ctas {
  gap: 20px;
  margin-top: 42px;
  flex-wrap: wrap;
}
.hero-call,
.hero-ctas {
  display: flex;
  align-items: center;
}
.hero-call {
  gap: 12px;
  font-size: 14px;
  color: var(--cream);
}
.hero-call .ring {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--line-on-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition:
    border-color 0.4s var(--ease),
    background 0.4s var(--ease);
}
.hero-call:hover .ring {
  border-color: var(--gold);
  background: rgba(185, 146, 78, 0.12);
}
.hero-float {
  position: absolute;
  right: var(--pad);
  bottom: clamp(48px, 8vh, 96px);
  z-index: 6;
  background: rgba(20, 17, 13, 0.55);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border: 1px solid var(--line-on-dark);
  border-radius: 2px;
  padding: 20px 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 280px;
}
.hero-float .txt p:first-child {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 4px;
}
.hero-float .txt p:last-child {
  font-size: 12px;
  color: hsla(42, 44%, 92%, 0.6);
  line-height: 1.5;
}
.hero-float .go {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.4s var(--ease);
}
.hero-float:hover .go {
  transform: scale(1.08);
}
.scroll-cue {
  position: absolute;
  left: var(--pad);
  bottom: 44px;
  z-index: 6;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 10.5px;
  letter-spacing: 0.24em;
  color: hsla(42, 44%, 92%, 0.55);
}
.scroll-cue .line {
  width: 1px;
  height: 40px;
  background: hsla(42, 44%, 92%, 0.3);
  position: relative;
  overflow: hidden;
}
.scroll-cue .line:after {
  content: "";
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gold-soft);
  animation: scrollline 2.2s ease-in-out infinite;
}
@keyframes scrollline {
  0% {
    top: -100%;
  }
  60% {
    top: 100%;
  }
  to {
    top: 100%;
  }
}
section {
  position: relative;
}
.section-pad {
  padding: clamp(80px, 12vw, 140px) 0;
}
.sect-head {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  grid-gap: 48px;
  gap: 48px;
  align-items: end;
  margin-bottom: clamp(48px, 7vw, 84px);
}
.sect-head h2 {
  font-size: clamp(34px, 4.6vw, 58px);
  line-height: 1.05;
  font-weight: 400;
}
.sect-head .lede {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 42ch;
}
.sect-head--dark h2 {
  color: var(--cream);
}
.sect-head--dark .lede {
  color: hsla(42, 44%, 92%, 0.68);
}
.services {
  background: var(--paper);
}
.svc-feature {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  grid-gap: 0;
  gap: 0;
  border: 1px solid var(--line);
  margin-bottom: 20px;
  overflow: hidden;
}
.svc-feature-media {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  background: var(--cream-dim);
}
.svc-feature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transform: scale(1.06);
  transition: transform 1.1s var(--ease);
}
.svc-feature:hover .svc-feature-media img {
  transform: scale(1);
}
.svc-feature-text {
  padding: clamp(36px, 4vw, 64px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
.svc-index {
  font-family: var(--display);
  font-size: 110px;
  line-height: 1;
  font-weight: 300;
  color: transparent;
  -webkit-text-stroke: 1px var(--line);
  position: absolute;
  top: 18px;
  right: 28px;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  z-index: 1;
}
.svc-copy {
  position: relative;
  z-index: 2;
}
.svc-feature-text .tag {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 16px;
}
.svc-feature-text h3 {
  font-size: clamp(28px, 2.8vw, 38px);
  font-weight: 400;
  margin-bottom: 16px;
}
.svc-feature-text p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 40ch;
}
.svc-mosaic {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-gap: 20px;
  gap: 20px;
}
.svc-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  min-height: 300px;
  display: flex;
  align-items: flex-end;
}
.svc-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  transition: transform 1.1s var(--ease);
}
.svc-card:hover img {
  transform: scale(1);
}
.svc-card:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(20, 20, 15, 0) 45%,
    rgba(15, 14, 10, 0.82)
  );
}
.svc-card-content {
  position: relative;
  z-index: 2;
  padding: 26px;
  width: 100%;
  color: var(--cream);
}
.svc-card-content .n {
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--gold-soft);
  margin-bottom: 8px;
  display: block;
}
.svc-card-content h4 {
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 6px;
}
.svc-card-content p {
  font-size: 13px;
  color: hsla(42, 44%, 92%, 0.72);
  line-height: 1.5;
  max-width: 32ch;
}
.svc-c1 {
  grid-column: 1/8;
  grid-row: 1;
  min-height: 340px;
}
.svc-c2 {
  grid-column: 8/13;
  grid-row: 1/3;
  min-height: 520px;
}
.svc-c3 {
  grid-column: 1/5;
}
.svc-c3,
.svc-c4 {
  grid-row: 2;
  min-height: 340px;
}
.svc-c4 {
  grid-column: 5/8;
}
.svc-hint {
  display: inline-block;
  margin-top: 10px;
  font-size: 13.5px;
  color: var(--ink-faint);
}
.svc-card,
.svc-feature {
  cursor: pointer;
}
.svc-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--gold);
  transition: gap 0.35s var(--ease);
}
.svc-card .svc-more {
  color: var(--gold-soft);
  margin-top: 12px;
}
.svc-card:hover .svc-more,
.svc-feature:hover .svc-more {
  gap: 12px;
}
.svc-more svg {
  transition: transform 0.35s var(--ease);
}
.svc-card:hover .svc-more svg,
.svc-feature:hover .svc-more svg {
  transform: translateX(3px);
}
.coverage {
  background: var(--forest);
}
.coverage-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  grid-gap: clamp(40px, 6vw, 80px);
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.coverage-copy h2 {
  color: var(--cream);
  font-size: clamp(34px, 4.6vw, 58px);
  line-height: 1.05;
  font-weight: 400;
}
.coverage-copy .lede {
  font-size: 15.5px;
  line-height: 1.7;
  color: hsla(42, 44%, 92%, 0.72);
  max-width: 46ch;
  margin-top: 22px;
}
.coverage-list {
  margin: 30px 0 34px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.coverage-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14.5px;
  color: var(--cream-dim);
  line-height: 1.5;
}
.coverage-list .ck {
  flex: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(185, 146, 78, 0.18);
  color: var(--gold-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  margin-top: 1px;
}
.coverage .btn-ghost {
  border-color: var(--line-on-dark);
  color: var(--cream);
}
.coverage .btn-ghost:hover {
  border-color: var(--gold-soft);
  color: var(--gold-soft);
}
.coverage-map {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.coverage-map svg {
  width: 100%;
  max-width: 340px;
  height: auto;
}
.coverage-shape {
  fill: hsla(42, 44%, 92%, 0.06);
  stroke: var(--gold-soft);
  stroke-width: 1.4;
}
.coverage-point-dot {
  fill: var(--gold);
}
.coverage-point-pulse {
  fill: var(--gold);
  opacity: 0.18;
}
.coverage-point-label {
  font-family: var(--body);
  font-size: 11.5px;
  font-weight: 600;
  fill: var(--cream);
  letter-spacing: 0.01em;
}
.how {
  background: var(--forest);
  color: var(--cream);
  overflow: hidden;
}
.how-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: clamp(56px, 8vw, 100px);
}
.how-head h2 {
  color: var(--cream);
  font-size: clamp(34px, 4.6vw, 56px);
  font-weight: 400;
  max-width: 12ch;
}
.how-head p {
  color: hsla(42, 44%, 92%, 0.62);
  font-size: 15px;
  max-width: 34ch;
  line-height: 1.7;
}
.timeline,
.timeline-track {
  position: relative;
}
.timeline-track {
  height: 1px;
  background: hsla(42, 44%, 92%, 0.14);
  margin: 0;
}
.timeline-track svg {
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 2px;
  overflow: visible;
}
.timeline-track path {
  fill: none;
  stroke: var(--gold);
  stroke-width: 2;
}
.timeline-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.tstep {
  padding-top: 34px;
  position: relative;
}
.tstep:before {
  content: "";
  position: absolute;
  top: -8px;
  left: 0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1px solid hsla(42, 44%, 92%, 0.3);
  background: var(--forest);
  transition:
    border-color 0.5s var(--ease),
    background 0.5s var(--ease);
}
.tstep.is-active:before {
  border-color: var(--gold);
  background: var(--gold);
}
.tstep .num {
  font-family: var(--display);
  font-size: 13px;
  color: var(--gold-soft);
  letter-spacing: 0.08em;
  display: block;
  margin-bottom: 14px;
}
.tstep h4 {
  font-size: 22px;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 10px;
}
.tstep p {
  font-size: 13.5px;
  color: hsla(42, 44%, 92%, 0.6);
  line-height: 1.6;
  max-width: 26ch;
}
.about {
  background: var(--paper);
}
.about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  grid-gap: clamp(40px, 6vw, 88px);
  gap: clamp(40px, 6vw, 88px);
  align-items: center;
}
.about-media {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  border: 1px solid var(--line);
}
.about-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-media .door {
  background: var(--paper);
}
.about-copy .eyebrow,
.about-copy h2 {
  margin-bottom: 22px;
}
.about-copy h2 {
  font-size: clamp(32px, 4vw, 50px);
  font-weight: 400;
  line-height: 1.06;
}
.about-copy p.lede {
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--ink-soft);
  max-width: 46ch;
  margin-bottom: 34px;
}
.about-checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 14px 20px;
  gap: 14px 20px;
  margin-bottom: 44px;
}
.about-checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--ink);
}
.about-checklist li .ck {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
  font-size: 10px;
}
.about-stats {
  display: flex;
  gap: 0;
  border-top: 1px solid var(--line);
  padding-top: 28px;
}
.about-stats .stat {
  flex: 1 1;
  padding-right: 24px;
}
.about-stats .stat + .stat {
  border-left: 1px solid var(--line);
  padding-left: 24px;
}
.about-stats .num {
  font-family: var(--display);
  font-size: clamp(28px, 3vw, 40px);
  color: var(--forest);
  font-weight: 400;
  display: block;
}
.about-stats .lbl {
  font-size: 12px;
  color: var(--ink-faint);
  letter-spacing: 0.04em;
  margin-top: 4px;
  display: block;
}
.quality {
  background: var(--cream);
}
.quality-list {
  border-top: 1px solid var(--line);
}
.q-row {
  display: flex;
  gap: 28px;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}
.q-row .q-num {
  font-family: var(--display);
  font-size: 15px;
  color: var(--gold);
  letter-spacing: 0.05em;
  flex: 0 0 80px;
}
.q-body {
  flex: 1 1;
  max-width: 640px;
}
.q-body h3 {
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 400;
  margin-bottom: 8px;
}
.q-body p {
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.7;
  max-width: 52ch;
}
.q-row:nth-child(2n) {
  flex-direction: row-reverse;
}
.q-row:nth-child(2n) .q-num {
  text-align: right;
}
.q-row:nth-child(2n) .q-body {
  text-align: right;
  margin-left: auto;
}
.q-row:nth-child(2n) .q-body p {
  margin-left: auto;
}
.reviews {
  background: var(--charcoal);
  color: var(--cream);
}
.rev-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 28px;
  gap: 28px;
}
.rev-card {
  background: var(--charcoal-2);
  border: 1px solid hsla(42, 44%, 92%, 0.08);
  padding: 38px 32px;
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.rev-stars {
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 2px;
}
.rev-quote {
  font-family: var(--display);
  font-style: italic;
  font-size: 19px;
  line-height: 1.6;
  font-weight: 400;
  color: hsla(42, 44%, 92%, 0.92);
}
.rev-person {
  gap: 14px;
  margin-top: auto;
}
.rev-avatar,
.rev-person {
  display: flex;
  align-items: center;
}
.rev-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--forest-2);
  justify-content: center;
  font-family: var(--display);
  font-size: 14px;
  color: var(--gold-soft);
  flex-shrink: 0;
  border: 1px solid hsla(42, 44%, 92%, 0.14);
}
.rev-person .nm {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--cream);
}
.rev-person .loc {
  font-size: 12px;
  color: hsla(42, 44%, 92%, 0.5);
  margin-top: 2px;
}
.quote {
  position: relative;
  color: var(--cream);
  overflow: hidden;
}
.quote-media,
.quote-media img {
  position: absolute;
  inset: 0;
}
.quote-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 60% 40%;
}
.quote-media:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(15, 14, 10, 0.94),
    rgba(15, 14, 10, 0.86) 38%,
    rgba(15, 14, 10, 0.55)
  );
}
.quote-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 60px;
  gap: 60px;
  align-items: center;
}
.quote-copy h2 {
  font-size: clamp(32px, 4.4vw, 54px);
  font-weight: 400;
  color: var(--cream);
  line-height: 1.08;
  margin: 20px 0 22px;
}
.quote-copy p {
  font-size: 15px;
  line-height: 1.75;
  color: hsla(42, 44%, 92%, 0.7);
  max-width: 42ch;
}
.quote-badge {
  margin-top: 42px;
  width: 120px;
  height: 120px;
  border: 1px solid hsla(41, 47%, 72%, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}
.quote-badge span {
  font-family: var(--display);
  font-size: 13px;
  color: var(--gold-soft);
}
.quote-badge b {
  display: block;
  font-size: 22px;
  font-weight: 400;
  color: var(--gold-soft);
}
.qform {
  background: hsla(42, 56%, 96%, 0.06);
  border: 1px solid hsla(42, 44%, 92%, 0.16);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  padding: clamp(28px, 3vw, 42px);
  border-radius: 2px;
}
.qform-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 16px;
  gap: 16px;
}
.qform-grid .full {
  grid-column: 1/-1;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}
.field label {
  font-size: 11.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: hsla(42, 44%, 92%, 0.55);
}
.field input,
.field textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid hsla(42, 44%, 92%, 0.28);
  color: var(--cream);
  font-family: var(--body);
  font-size: 14.5px;
  padding: 8px 2px;
  transition: border-color 0.35s var(--ease);
}
.field input::placeholder,
.field textarea::placeholder {
  color: hsla(42, 44%, 92%, 0.32);
}
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.field textarea {
  resize: none;
  min-height: 64px;
}
.qform-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 8px;
  flex-wrap: wrap;
}
.qform-note {
  font-size: 12px;
  color: hsla(42, 44%, 92%, 0.45);
}
.qsubmit {
  width: 100%;
  justify-content: center;
  margin-top: 6px;
}
footer {
  background: var(--charcoal);
  color: var(--cream);
  padding-top: clamp(64px, 8vw, 96px);
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 1fr 1fr;
  grid-gap: 40px;
  gap: 40px;
  padding-bottom: 56px;
  border-bottom: 1px solid hsla(42, 44%, 92%, 0.1);
}
.foot-brand .brand-mark {
  font-size: 22px;
  color: var(--cream);
}
.foot-brand .brand-sub {
  color: var(--gold-soft);
}
.foot-brand p {
  margin-top: 18px;
  font-size: 13.5px;
  color: hsla(42, 44%, 92%, 0.55);
  line-height: 1.7;
  max-width: 30ch;
}
.foot-social {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}
.foot-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid hsla(42, 44%, 92%, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    border-color 0.35s var(--ease),
    background 0.35s var(--ease);
}
.foot-social a:hover {
  border-color: var(--gold);
  background: rgba(185, 146, 78, 0.1);
}
.foot-col h5 {
  font-size: 11.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 20px;
  font-weight: 600;
  font-family: var(--body);
}
.foot-col ul li {
  margin-bottom: 12px;
}
.foot-col a,
.foot-col span {
  font-size: 13.5px;
  color: hsla(42, 44%, 92%, 0.62);
  transition: color 0.3s var(--ease);
}
.foot-col a:hover {
  color: var(--gold-soft);
}
.foot-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.foot-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 26px 0;
  flex-wrap: wrap;
  gap: 12px;
}
.foot-bottom a,
.foot-bottom p {
  font-size: 12px;
  color: hsla(42, 44%, 92%, 0.4);
}
.foot-legal {
  display: flex;
  gap: 22px;
}
.foot-legal a:hover {
  color: var(--gold-soft);
}
.svc-detail-hero {
  position: relative;
  min-height: 52vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  margin-top: 0;
}
.svc-detail-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.svc-detail-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(20, 20, 15, 0.25),
    rgba(15, 14, 10, 0.88)
  );
}
.svc-detail-hero-content {
  position: relative;
  z-index: 2;
  padding-top: 140px;
  padding-bottom: 56px;
  color: var(--cream);
}
.svc-back {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--gold-soft);
}
.svc-back:hover {
  color: var(--gold);
}
.svc-detail-hero-content .tag {
  display: block;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 14px;
}
.svc-detail-hero-content h1 {
  font-size: clamp(32px, 4.6vw, 54px);
  line-height: 1.08;
  font-weight: 400;
  max-width: 22ch;
}
.svc-detail-body {
  background: var(--paper);
}
.svc-detail-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.9fr;
  grid-gap: clamp(40px, 6vw, 80px);
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.svc-detail-main .lede {
  font-size: 16px;
  line-height: 1.75;
  color: var(--ink-soft);
  max-width: 60ch;
}
.svc-detail-list {
  margin: 32px 0 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.svc-detail-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink);
}
.svc-detail-list .ck {
  flex: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(185, 146, 78, 0.14);
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  margin-top: 1px;
}
.svc-faq {
  margin-top: clamp(56px, 7vw, 84px);
}
.svc-faq h2 {
  font-size: clamp(24px, 2.8vw, 34px);
  font-weight: 400;
  margin-bottom: 26px;
  max-width: 26ch;
}
.svc-faq-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
}
.svc-faq-item {
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
}
.svc-faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 15.5px;
  font-weight: 500;
  color: var(--ink);
}
.svc-faq-item summary::-webkit-details-marker {
  display: none;
}
.svc-faq-icon {
  flex: none;
  position: relative;
  width: 18px;
  height: 18px;
}
.svc-faq-icon:after,
.svc-faq-icon:before {
  content: "";
  position: absolute;
  background: var(--gold);
  transition: transform 0.3s var(--ease);
}
.svc-faq-icon:before {
  top: 8px;
  left: 1px;
  width: 16px;
  height: 1.6px;
}
.svc-faq-icon:after {
  top: 1px;
  left: 8px;
  width: 1.6px;
  height: 16px;
}
.svc-faq-item[open] .svc-faq-icon:after {
  transform: rotate(90deg);
  opacity: 0;
}
.svc-faq-item p {
  margin-top: 14px;
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 58ch;
}
.svc-detail-side {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: -webkit-sticky;
  position: sticky;
  top: 120px;
}
.svc-detail-card {
  border: 1px solid var(--line);
  background: var(--forest);
  color: var(--cream);
  padding: clamp(28px, 3vw, 36px);
}
.svc-detail-card h3 {
  font-size: 22px;
  font-weight: 400;
  margin: 8px 0 12px;
  color: var(--cream);
}
.svc-detail-card p {
  font-size: 14px;
  line-height: 1.65;
  color: hsla(42, 44%, 92%, 0.72);
  margin-bottom: 22px;
}
.svc-detail-call {
  display: block;
  margin-top: 14px;
  font-size: 13px;
  color: var(--gold-soft);
  text-align: center;
}
.svc-detail-call:hover {
  color: var(--gold);
}
.svc-detail-other {
  border: 1px solid var(--line);
  padding: clamp(24px, 3vw, 30px);
}
.svc-detail-other ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 6px;
}
.svc-detail-other a {
  font-size: 14.5px;
  color: var(--ink-soft);
}
.svc-detail-other a:hover {
  color: var(--gold);
}
@media (max-width: 1080px) {
  .nav-links {
    display: none;
  }
  .nav-burger {
    display: block;
  }
  .sect-head {
    gap: 20px;
  }
  .sect-head,
  .svc-feature {
    grid-template-columns: 1fr;
  }
  .svc-feature-media {
    min-height: 320px;
  }
  .svc-mosaic {
    grid-template-columns: repeat(6, 1fr);
  }
  .svc-c1,
  .svc-c2 {
    grid-column: 1/7;
    grid-row: auto;
  }
  .svc-c2 {
    min-height: 360px;
  }
  .svc-c3 {
    grid-column: 1/4;
    grid-row: auto;
  }
  .svc-c4 {
    grid-column: 4/7;
    grid-row: auto;
  }
  .timeline-steps {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 40px;
  }
  .about-grid {
    grid-template-columns: 1fr;
  }
  .about-media {
    min-height: 380px;
    order: 2;
  }
  .quote-inner,
  .rev-grid {
    grid-template-columns: 1fr;
  }
  .quote-inner {
    gap: 44px;
  }
  .foot-grid {
    grid-template-columns: 1fr 1fr;
    row-gap: 40px;
  }
  .coverage-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .coverage-map {
    order: -1;
  }
  .coverage-map svg {
    max-width: 280px;
  }
  .svc-detail-grid {
    grid-template-columns: 1fr;
  }
  .svc-detail-side {
    position: static;
  }
}
@media (max-width: 640px) {
  .hero-float {
    display: none;
  }
  .hero h1 {
    max-width: 13ch;
  }
  .about-checklist {
    grid-template-columns: 1fr;
  }
  .about-stats {
    flex-direction: column;
    gap: 20px;
  }
  .about-stats .stat + .stat {
    border-left: none;
    padding-left: 0;
    border-top: 1px solid var(--line);
    padding-top: 20px;
  }
  .q-row,
  .q-row:nth-child(2n) {
    flex-direction: column;
    gap: 10px;
  }
  .q-row:nth-child(2n) .q-body,
  .q-row:nth-child(2n) .q-body p,
  .q-row:nth-child(2n) .q-num {
    text-align: left;
    margin-left: 0;
  }
  .foot-grid,
  .qform-grid {
    grid-template-columns: 1fr;
  }
  .foot-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  .svc-detail-hero-content {
    padding-top: 120px;
  }
  .svc-faq-item summary {
    font-size: 14.5px;
    gap: 14px;
  }
}

/* Price badge: overlay only; does not participate in the service grid layout. */
.svc-price-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 10;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 12px;
  border: 1px solid rgba(242, 234, 211, 0.24);
  border-radius: 999px;
  background: rgba(15, 14, 10, 0.78);
  color: var(--cream);
  font-family: var(--body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1;
  white-space: nowrap;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  pointer-events: none;
}
.svc-feature-media .svc-price-badge,
.svc-card .svc-price-badge { position: absolute; }
@media (max-width: 640px) {
  .svc-price-badge { top: 12px; right: 12px; min-height: 32px; padding: 7px 10px; font-size: 10px; }
}

.svc-feature-media { position: relative; }

.svc-card { position: relative; }
