:root {
  --ink: #161512;
  --muted: #64655f;
  --paper: #f7f1e6;
  --ivory: #fffdf7;
  --line: rgba(18, 18, 18, .12);
  --gold: #c8922d;
  --gold-soft: #f0d08a;
  --teal: #0d4b4e;
  --clay: #9b5d3b;
  --mist: #edf1ed;
  --sage: #dce4d7;
  --shadow: 0 24px 70px rgba(34, 28, 18, .12);
  --font-sans: "Proxima Nova", "ProximaNova", "Avenir Next", Avenir, Montserrat, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 9% 8%, rgba(240, 208, 138, .2), transparent 26rem),
    linear-gradient(180deg, #fffaf0 0%, var(--paper) 28%, #fbf8f1 100%);
  color: var(--ink);
  font-family: var(--font-sans);
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

::selection {
  background: var(--gold-soft);
  color: var(--ink);
}

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

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

.font-display {
  font-family: var(--font-sans);
  font-weight: 800;
}

.shell {
  width: min(1160px, calc(100% - 40px));
  margin-inline: auto;
}

.wide-shell {
  width: min(1400px, calc(100% - 28px));
  margin-inline: auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: var(--teal);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  min-height: 46px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: .86rem 1.18rem;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 10px 24px rgba(18, 18, 18, .06);
  transition: transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease, box-shadow .2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(18, 18, 18, .12);
}

.btn-primary {
  background: var(--ink);
  color: var(--ivory);
}

.btn-primary:hover {
  background: var(--teal);
}

.btn-gold {
  background: linear-gradient(135deg, #f2c765, var(--gold));
  color: var(--ink);
}

.btn-outline {
  border-color: var(--line);
  background: rgba(255, 255, 255, .55);
}

.btn-outline:hover {
  border-color: var(--gold);
}

.site-header {
  position: sticky;
  inset-block-start: 0;
  z-index: 50;
  padding: 7px 0;
  transition: background .25s ease, box-shadow .25s ease;
}

.site-header.is-scrolled {
  background: rgba(247, 241, 230, .86);
  box-shadow: 0 18px 48px rgba(18, 18, 18, .08);
  backdrop-filter: blur(18px);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: min(1180px, calc(100% - 28px));
  margin-inline: auto;
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 12px;
  background: rgba(255, 253, 247, .9);
  padding: 6px 8px 6px 12px;
  box-shadow: 0 18px 50px rgba(42, 32, 18, .1);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  min-width: 112px;
  font-weight: 900;
}

.brand img {
  width: 64px;
  height: auto;
}

.brand span {
  font-size: .78rem;
  color: var(--muted);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-links a {
  border-radius: 8px;
  padding: .42rem .48rem;
  color: #33342f;
  font-size: 1rem;
  letter-spacing: 0;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  background: var(--ink);
  color: var(--ivory);
}

.nav-toggle {
  display: none;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--ivory);
}

.nav-shell .btn {
  min-height: 34px;
  padding: .48rem .62rem;
  font-size: .66rem;
  font-weight: 750;
}

.hero {
  min-height: calc(100svh - 68px);
  display: grid;
  align-items: end;
  padding: 14px 0 34px;
}

.hero-panel {
  position: relative;
  overflow: hidden;
  min-height: min(700px, calc(100svh - 98px));
  border-radius: 8px;
  background: var(--ink);
  color: var(--ivory);
  box-shadow: var(--shadow);
}

.hero-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(18, 18, 18, .9) 0%, rgba(18, 18, 18, .68) 37%, rgba(18, 18, 18, .18) 78%),
    linear-gradient(0deg, rgba(18, 18, 18, .58) 0%, transparent 48%);
  pointer-events: none;
}

.hero-panel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: end;
  min-height: inherit;
  max-width: 820px;
  padding: clamp(30px, 6vw, 76px);
}

.hero h1,
.page-hero h1 {
  margin: 0;
  font-family: var(--font-sans);
  font-size: clamp(0.5rem, 4vw, 4.4rem);
  font-weight: 900;
  line-height: .9;
  letter-spacing: 0;
}

.lead {
  color: rgba(18, 18, 18, .68);
  font-size: clamp(1.04rem, 1.6vw, 1.35rem);
  line-height: 1.75;
}

.hero .lead {
  max-width: 680px;
  color: rgba(255, 253, 247, .82);
}

.trust-strip {
  position: absolute;
  inset-inline-start: auto;
  inset-inline-end: clamp(22px, 5vw, 58px);
  inset-block-end: clamp(18px, 4vw, 34px);
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(620px, calc(100% - 44px));
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 253, 247, .12);
  backdrop-filter: blur(16px);
}

.trust-strip span {
  padding: 14px 16px;
  color: rgba(255, 253, 247, .78);
  font-size: .78rem;
  font-weight: 800;
  line-height: 1.35;
}

.section {
  padding: clamp(72px, 9vw, 128px) 0;
}

.section-tight {
  padding: clamp(48px, 7vw, 88px) 0;
}

.section-dark {
  background: linear-gradient(135deg, #12120f 0%, #1e1b15 100%);
  color: var(--ivory);
}

.section-teal {
  background: linear-gradient(135deg, #0d4b4e 0%, #173f39 100%);
  color: var(--ivory);
}

.grid-auto {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: 18px;
}

.card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 247, .82);
  padding: clamp(22px, 3vw, 34px);
  box-shadow: 0 14px 42px rgba(42, 32, 18, .06);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.card:hover {
  transform: translateY(-3px);
  border-color: rgba(200, 146, 45, .42);
  box-shadow: 0 22px 54px rgba(42, 32, 18, .11);
}

.card-dark {
  border-color: rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .055);
  box-shadow: none;
}

.metric {
  display: grid;
  gap: .4rem;
  border-block-start: 1px solid rgba(255, 255, 255, .18);
  padding-top: 20px;
}

.metric strong {
  color: var(--gold-soft);
  font-family: var(--font-sans);
  font-weight: 900;
  font-size: clamp(2.5rem, 5vw, 5rem);
  line-height: .9;
}

.image-frame {
  overflow: hidden;
  border-radius: 8px;
  background: var(--sage);
  box-shadow: var(--shadow);
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-card {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.icon-pill {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: #172f2e;
  color: var(--gold-soft);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .08);
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(76px, 10vw, 132px) 0 clamp(44px, 7vw, 86px);
}

.page-hero::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  inset-block-end: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200, 146, 45, .42), transparent);
}

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

.breadcrumb {
  margin-bottom: 26px;
  color: var(--muted);
  font-size: .9rem;
  font-weight: 700;
}

.timeline {
  display: grid;
  gap: 14px;
  counter-reset: item;
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 247, .82);
  padding: 22px;
  box-shadow: 0 14px 42px rgba(42, 32, 18, .06);
}

.timeline-item::before {
  counter-increment: item;
  content: counter(item, decimal-leading-zero);
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border-radius: 999px;
  background: var(--teal);
  color: var(--ivory);
  font-weight: 900;
}

.faq-item {
  border-block-end: 1px solid var(--line);
}

.faq-button {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 0;
  background: transparent;
  padding: 22px 0;
  color: var(--ink);
  font: inherit;
  font-weight: 850;
  text-align: left;
}

.faq-panel {
  display: none;
  padding: 0 0 24px;
  color: var(--muted);
  line-height: 1.7;
}

.faq-item.is-open .faq-panel {
  display: block;
}

.form-field {
  display: grid;
  gap: 8px;
}

.form-field label {
  font-size: .85rem;
  font-weight: 850;
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 247, .92);
  padding: 14px 16px;
  color: var(--ink);
  font: inherit;
}

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

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: 3px solid rgba(200, 146, 45, .22);
  border-color: rgba(200, 146, 45, .75);
}

.site-footer {
  background: linear-gradient(135deg, #11110f 0%, #17201d 100%);
  color: var(--ivory);
  padding: 64px 0 28px;
}

.site-footer a {
  color: rgba(255, 253, 247, .72);
}

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

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .65s ease, transform .65s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 920px) {
  .nav-shell {
    border-radius: 12px;
  }

  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }

  .nav-links {
    position: fixed;
    inset: 66px 14px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 253, 247, .98);
    padding: 14px;
    box-shadow: 0 28px 70px rgba(18, 18, 18, .18);
  }

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

  .nav-links a {
    padding: .72rem .8rem;
    font-size: .78rem;
  }

  .nav-cta {
    display: none;
  }

  .hero-panel::after {
    background: linear-gradient(0deg, rgba(18, 18, 18, .94) 0%, rgba(18, 18, 18, .72) 58%, rgba(18, 18, 18, .18) 100%);
  }

  .hero-content {
    padding: 28px;
    align-content: center;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(1.75rem, 1vw, 5rem);
    line-height: .96;
  }

  .trust-strip {
    position: relative;
    inset: auto;
    grid-template-columns: 1fr;
    margin: -22px 16px 18px;
    max-width: none;
  }

  .trust-strip span {
    padding: 12px 14px;
  }
}

@media (max-width: 640px) {
  .shell,
  .wide-shell {
    width: min(100% - 28px, 1160px);
  }

  .hero {
    min-height: auto;
    padding-top: 8px;
  }

  .hero-panel {
    min-height: 640px;
  }

  .btn {
    width: 100%;
  }

  .page-hero {
    padding-top: 58px;
  }

  .timeline-item {
    grid-template-columns: 1fr;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
