:root {
  color-scheme: dark;
  --bg: #0d0b0a;
  --bg-soft: #14110f;
  --panel: #1b1714;
  --panel-strong: #241e1a;
  --ink: #fff8ed;
  --muted: #c9bcad;
  --line: rgba(255, 248, 237, 0.12);
  --line-strong: rgba(255, 248, 237, 0.2);
  --accent: #ff9f43;
  --accent-strong: #ff7a1a;
  --mint: #8fe3cf;
  --danger: #ff8a80;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
  --radius-sm: 0.75rem;
  --radius: 1.25rem;
  --radius-lg: 2rem;
  --max-width: 72rem;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

body {
  margin: 0;
  min-width: 20rem;
  background:
    radial-gradient(circle at 85% 0%, rgba(255, 159, 67, 0.12), transparent 27rem),
    radial-gradient(circle at 10% 18%, rgba(143, 227, 207, 0.08), transparent 25rem),
    var(--bg);
  color: var(--ink);
  font: 400 1rem/1.7 Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

img {
  height: auto;
}

a {
  color: var(--mint);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--ink);
}

button,
input,
textarea,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--mint);
  outline-offset: 4px;
}

::selection {
  background: var(--accent);
  color: #1b0d02;
}

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

h1,
h2,
h3,
h4 {
  color: var(--ink);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

h1 {
  max-width: 18ch;
  margin-bottom: 1.25rem;
  font-size: clamp(2.75rem, 8vw, 6.5rem);
}

h2 {
  max-width: 20ch;
  margin-bottom: 1rem;
  font-size: clamp(2rem, 5vw, 3.75rem);
}

h3 {
  margin-bottom: 0.65rem;
  font-size: clamp(1.25rem, 2.5vw, 1.65rem);
  letter-spacing: -0.02em;
}

h4 {
  margin-bottom: 0.65rem;
  font-size: 1rem;
  letter-spacing: 0;
}

p,
li {
  max-width: 72ch;
}

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

.narrow {
  width: min(100%, 48rem);
}

.section {
  padding-block: clamp(4rem, 9vw, 7.5rem);
}

.section-tight {
  padding-block: clamp(2.5rem, 6vw, 4.5rem);
}

.section-rule {
  border-top: 1px solid var(--line);
}

.surface {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012)),
    var(--panel);
  box-shadow: var(--shadow);
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 1000;
  translate: 0 -160%;
  border-radius: var(--radius-sm);
  background: var(--ink);
  color: var(--bg);
  padding: 0.65rem 0.9rem;
  font-weight: 800;
}

.skip-link:focus {
  translate: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid transparent;
  background: rgba(13, 11, 10, 0.82);
  backdrop-filter: blur(16px) saturate(130%);
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
}

.nav-row {
  min-height: 5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--ink);
  font-weight: 900;
  text-decoration: none;
  letter-spacing: -0.025em;
}

.brand:hover {
  color: var(--ink);
}

.brand img {
  width: 2.35rem;
  height: 2.35rem;
  border: 2px solid rgba(255, 248, 237, 0.8);
  border-radius: 50%;
  background: #f7f0e7;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  padding: 0.55rem 0.9rem;
  cursor: pointer;
  font-weight: 800;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-menu a:not(.btn) {
  border-radius: 999px;
  color: var(--muted);
  padding: 0.65rem 0.8rem;
  font-size: 0.94rem;
  font-weight: 750;
  text-decoration: none;
}

.nav-menu a:not(.btn):hover,
.nav-menu a[aria-current="page"]:not(.btn) {
  background: rgba(255, 248, 237, 0.07);
  color: var(--ink);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  padding: 0.65rem 0.8rem;
  cursor: pointer;
  font: inherit;
  font-size: 0.94rem;
  font-weight: 750;
}

.nav-dropdown-trigger:hover,
.nav-dropdown-trigger:focus-visible,
.nav-dropdown-trigger[aria-expanded="true"],
.nav-dropdown-trigger.is-current {
  background: rgba(255, 248, 237, 0.07);
  color: var(--ink);
}

.nav-dropdown-trigger svg {
  width: 0.7rem;
  height: 0.45rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.75;
  transition: transform 160ms ease;
}

.nav-dropdown-trigger[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.nav-submenu {
  position: absolute;
  top: calc(100% + 0.65rem);
  left: 50%;
  z-index: 110;
  display: grid;
  width: 15rem;
  gap: 0.2rem;
  border: 1px solid var(--line-strong);
  border-radius: 1rem;
  background: #171310;
  box-shadow: 0 1.25rem 3rem rgba(0, 0, 0, 0.38);
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, -0.4rem);
  pointer-events: none;
  transition: opacity 150ms ease, transform 150ms ease, visibility 150ms ease;
}

.nav-submenu::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 100%;
  left: 0;
  height: 0.7rem;
}

.nav-menu .nav-submenu a:not(.btn) {
  display: block;
  border-radius: 0.7rem;
  padding: 0.72rem 0.8rem;
  white-space: nowrap;
}

.nav-dropdown.is-open .nav-submenu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
  pointer-events: auto;
}

@media (min-width: 901px) {
  .nav-dropdown:hover .nav-submenu {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
    pointer-events: auto;
  }
}

.btn {
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(255, 248, 237, 0.04);
  color: var(--ink);
  padding: 0.72rem 1.1rem;
  cursor: pointer;
  font-weight: 850;
  line-height: 1;
  text-decoration: none;
  transition: translate 160ms ease, background 160ms ease, border-color 160ms ease;
}

.btn:hover {
  translate: 0 -2px;
  border-color: rgba(255, 248, 237, 0.36);
  background: rgba(255, 248, 237, 0.09);
  color: var(--ink);
}

.btn-primary {
  border-color: var(--accent);
  background: var(--accent);
  color: #211104;
}

.btn-primary:hover {
  border-color: #ffb66f;
  background: #ffb66f;
  color: #211104;
}

.btn-small {
  min-height: 2.55rem;
  padding-inline: 0.95rem;
  font-size: 0.9rem;
}

.hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(4.5rem, 11vw, 9rem);
}

.hero::after {
  content: "";
  position: absolute;
  right: -12rem;
  bottom: -16rem;
  width: 34rem;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 159, 67, 0.2);
  border-radius: 50%;
  box-shadow: 0 0 0 4rem rgba(255, 159, 67, 0.035), 0 0 0 8rem rgba(255, 159, 67, 0.025);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(16rem, 0.5fr);
  gap: clamp(2.5rem, 8vw, 7rem);
  align-items: center;
}

.hero-copy {
  max-width: 46rem;
}

.hero-mark {
  justify-self: center;
  width: min(100%, 19rem);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #f6efe6;
  box-shadow: 0 2rem 6rem rgba(0, 0, 0, 0.38);
  rotate: 4deg;
}

.hero-mark img {
  width: 82%;
  border-radius: 50%;
}

.eyebrow,
.kicker {
  margin-bottom: 1rem;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.lead {
  margin-bottom: 1.6rem;
  color: var(--muted);
  font-size: clamp(1.1rem, 2.2vw, 1.35rem);
  line-height: 1.6;
}

.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.trust-list,
.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 1.6rem 0 0;
  padding: 0;
  list-style: none;
}

.trust-list li,
.pill {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 248, 237, 0.035);
  color: var(--muted);
  padding: 0.45rem 0.75rem;
  font-size: 0.88rem;
  font-weight: 700;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2rem;
}

.section-heading p {
  max-width: 36rem;
  margin-bottom: 0;
  color: var(--muted);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

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

.card {
  position: relative;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 248, 237, 0.035);
  padding: clamp(1.3rem, 3vw, 2rem);
}

.card:hover {
  border-color: var(--line-strong);
}

.card p:last-child,
.card ul:last-child {
  margin-bottom: 0;
}

.card-number {
  display: inline-grid;
  width: 2.3rem;
  height: 2.3rem;
  place-items: center;
  margin-bottom: 1.1rem;
  border-radius: 50%;
  background: var(--accent);
  color: #251205;
  font-weight: 950;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.5rem;
  font-weight: 850;
}

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

.checklist,
.plain-list {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.checklist li {
  position: relative;
  margin-top: 0.7rem;
  padding-left: 1.75rem;
}

.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--mint);
  font-weight: 950;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(2rem, 8vw, 6rem);
  align-items: start;
}

.sticky-copy {
  position: sticky;
  top: 7rem;
}

.stack {
  display: grid;
  gap: 1rem;
}

.process-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
}

.process-step p {
  margin-bottom: 0;
  color: var(--muted);
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.stat {
  background: var(--panel);
  padding: 1.5rem;
}

.stat strong {
  display: block;
  margin-bottom: 0.3rem;
  color: var(--ink);
  font-size: 1.15rem;
}

.stat span {
  color: var(--muted);
  font-size: 0.94rem;
}

.faq-list {
  width: min(100%, 52rem);
}

details {
  border-top: 1px solid var(--line);
}

details:last-child {
  border-bottom: 1px solid var(--line);
}

summary {
  position: relative;
  padding: 1.25rem 3rem 1.25rem 0;
  cursor: pointer;
  color: var(--ink);
  font-weight: 850;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  position: absolute;
  top: 1rem;
  right: 0;
  color: var(--accent);
  font-size: 1.6rem;
  line-height: 1;
}

details[open] summary::after {
  content: "−";
}

details > div,
details > p {
  padding: 0 2rem 1.25rem 0;
  color: var(--muted);
}

.cta-band {
  padding: clamp(2rem, 6vw, 4rem);
  background:
    radial-gradient(circle at 90% 15%, rgba(255, 159, 67, 0.22), transparent 18rem),
    var(--panel-strong);
}

.cta-band h2 {
  max-width: 18ch;
}

.cta-band p {
  max-width: 42rem;
  color: var(--muted);
  font-size: 1.1rem;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0 0 1.5rem;
  padding: 0;
  color: var(--muted);
  list-style: none;
  font-size: 0.9rem;
}

.breadcrumbs li:not(:last-child)::after {
  content: "/";
  margin-left: 0.45rem;
  color: rgba(255, 248, 237, 0.35);
}

.breadcrumbs a {
  color: inherit;
}

.service-hero h1,
.page-hero h1 {
  font-size: clamp(2.75rem, 7vw, 5.5rem);
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(16rem, 0.36fr);
  gap: clamp(2rem, 7vw, 5rem);
  align-items: start;
}

.prose > * + * {
  margin-top: 1.2rem;
}

.prose h2 {
  margin-top: 3.5rem;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
}

.prose h3 {
  margin-top: 2rem;
}

.prose ul,
.prose ol {
  padding-left: 1.25rem;
}

.prose li + li {
  margin-top: 0.55rem;
}

.side-card {
  position: sticky;
  top: 7rem;
}

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

.location-card {
  scroll-margin-top: 7rem;
}

.map-frame {
  overflow: hidden;
  min-height: 24rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}

.map-frame iframe {
  width: 100%;
  height: 28rem;
  border: 0;
}

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

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

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

.field label,
.field > span {
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 800;
}

.field input,
.field textarea,
.field select,
.search-input {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  background: rgba(0, 0, 0, 0.18);
  color: var(--ink);
  padding: 0.85rem 0.95rem;
}

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

.field input::placeholder,
.field textarea::placeholder,
.search-input::placeholder {
  color: #8f8377;
}

.form-note {
  color: var(--muted);
  font-size: 0.88rem;
}

.calendly-wrap {
  overflow: hidden;
  min-height: 44rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}

.calendly-inline-widget {
  min-width: 20rem;
  height: 44rem;
}

.sitemap-groups {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.link-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.link-list li + li {
  margin-top: 0.6rem;
}

.link-list a {
  display: block;
  border-bottom: 1px solid var(--line);
  padding-bottom: 0.55rem;
  font-weight: 750;
}

.notice {
  border-left: 3px solid var(--accent);
  background: rgba(255, 159, 67, 0.08);
  padding: 1rem 1.1rem;
  color: var(--muted);
}

.site-footer {
  border-top: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.18);
  padding-block: 3.25rem 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(14rem, 1.4fr) repeat(3, minmax(8rem, 0.65fr));
  gap: 2rem;
}

.footer-grid p,
.footer-grid a {
  color: var(--muted);
}

.footer-grid a:hover {
  color: var(--ink);
}

.footer-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-list li + li {
  margin-top: 0.4rem;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2.5rem;
  border-top: 1px solid var(--line);
  padding-top: 1.25rem;
  color: var(--muted);
  font-size: 0.86rem;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
  clip-path: inset(50%) !important;
}

[data-reveal] {
  opacity: 0;
  translate: 0 1rem;
  transition: opacity 500ms ease, translate 500ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  translate: 0;
}

@media (max-width: 900px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav-menu {
    position: fixed;
    inset: 5rem 0 0;
    display: none;
    height: calc(100vh - 5rem);
    height: calc(100dvh - 5rem);
    overflow: auto;
    flex-direction: column;
    align-items: stretch;
    gap: 0.35rem;
    border-bottom: 1px solid var(--line);
    background: #12100e;
    padding: 1rem;
  }

  .nav-menu.is-open {
    display: flex;
  }

  .nav-menu a:not(.btn) {
    padding: 0.9rem 1rem;
  }

  .nav-dropdown {
    width: 100%;
  }

  .nav-dropdown-trigger {
    width: 100%;
    justify-content: space-between;
    padding: 0.9rem 1rem;
  }

  .nav-submenu {
    position: static;
    display: none;
    width: auto;
    margin: 0.15rem 0 0.5rem 0.75rem;
    border: 0;
    border-left: 1px solid var(--line-strong);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    padding: 0 0 0 0.55rem;
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
  }

  .nav-dropdown.is-open .nav-submenu {
    display: grid;
    transform: none;
  }

  .nav-menu .nav-submenu a:not(.btn) {
    padding: 0.78rem 0.85rem;
    white-space: normal;
  }

  .hero-grid,
  .split,
  .content-grid {
    grid-template-columns: 1fr;
  }

  .hero-mark {
    width: min(70vw, 17rem);
    justify-self: start;
  }

  .sticky-copy,
  .side-card {
    position: static;
  }

  .card-grid,
  .card-grid.two {
    grid-template-columns: 1fr;
  }

  .section-heading {
    display: block;
  }

  .section-heading p {
    margin-top: 0.8rem;
  }

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

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 1.25rem), var(--max-width));
  }

  h1 {
    font-size: clamp(2.55rem, 14vw, 4rem);
  }

  .hero-actions .btn,
  .button-row .btn {
    width: 100%;
  }

  .stats,
  .location-grid,
  .form-grid,
  .sitemap-groups,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .field-full {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  [data-reveal] {
    opacity: 1;
    translate: 0;
  }
}
