:root {
  color-scheme: dark;
  --ink: #101210;
  --ink-soft: #191c1a;
  --paper: #f3f1ea;
  --paper-muted: #d9d7d0;
  --yellow: #f3cf16;
  --yellow-bright: #ffe22e;
  --line: rgba(243, 241, 234, 0.16);
  --dark-line: #aaa99f;
  --max: 1120px;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.2);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}
body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  background: radial-gradient(circle at 84% 3%, rgba(243, 207, 22, 0.14), transparent 28rem);
}
a { color: inherit; }
:focus-visible { outline: 3px solid var(--yellow-bright); outline-offset: 4px; }
.wrap { width: min(calc(100% - 2rem), var(--max)); margin-inline: auto; }
.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 100;
  padding: 0.7rem 1rem;
  transform: translateY(-180%);
  border-radius: 0.25rem;
  background: var(--yellow);
  color: var(--ink);
  font-weight: 900;
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(16, 18, 16, 0.94);
  backdrop-filter: blur(16px);
}
.nav {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand { display: inline-flex; align-items: center; gap: 0.75rem; text-decoration: none; }
.brand-logo { display: block; width: 52px; height: 52px; border-radius: 50%; object-fit: cover; }
.brand-copy { display: grid; line-height: 1; }
.brand-copy strong { font-size: 1rem; font-weight: 950; letter-spacing: 0.08em; }
.brand-copy span {
  margin-top: 0.38rem;
  color: var(--paper-muted);
  font-size: 0.75rem;
  font-weight: 750;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}
.nav-links { display: flex; align-items: center; gap: 1.15rem; }
.nav-links > a:not(.button) { color: var(--paper-muted); font-size: 0.92rem; font-weight: 750; text-decoration: none; }
.nav-links > a:not(.button):hover, .nav-links > a[aria-current="page"] { color: var(--paper); }

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.76rem 1.1rem;
  border: 2px solid var(--yellow);
  border-radius: 0.35rem;
  background: var(--yellow);
  color: var(--ink);
  font-weight: 950;
  text-decoration: none;
  transition: 160ms ease;
}
.button:hover { transform: translateY(-2px); background: var(--yellow-bright); }
.button.secondary { border-color: rgba(243, 241, 234, 0.44); background: transparent; color: var(--paper); }
.button.secondary:hover { border-color: var(--paper); background: rgba(243, 241, 234, 0.06); }

.service-hero { position: relative; overflow: hidden; padding: clamp(4rem, 9vw, 7.5rem) 0 clamp(3.8rem, 8vw, 6.4rem); }
.service-hero::after {
  position: absolute;
  right: -11rem;
  bottom: -18rem;
  z-index: -1;
  width: 43rem;
  height: 43rem;
  content: "";
  border: 5.6rem solid rgba(243, 207, 22, 0.045);
  border-radius: 50%;
  box-shadow: 0 0 0 2px rgba(243, 207, 22, 0.15), inset 0 0 0 2px rgba(243, 207, 22, 0.12);
}
.breadcrumb { margin: 0 0 2rem; color: rgba(243, 241, 234, 0.64); font-size: 0.82rem; font-weight: 750; }
.breadcrumb a { text-underline-offset: 0.2em; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(285px, 0.55fr); align-items: end; gap: clamp(2.2rem, 7vw, 6rem); }
.eyebrow { margin: 0 0 1rem; color: var(--yellow); font-size: 0.78rem; font-weight: 950; letter-spacing: 0.14em; text-transform: uppercase; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { line-height: 1; }
h1 {
  max-width: 13ch;
  margin-bottom: 1.35rem;
  font-size: clamp(3.15rem, 8vw, 6.6rem);
  font-weight: 1000;
  letter-spacing: -0.07em;
  text-wrap: balance;
}
.deck { max-width: 49rem; margin-bottom: 1.6rem; color: var(--paper-muted); font-size: clamp(1.05rem, 2vw, 1.25rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.8rem; }
.quote-note { margin: 1.1rem 0 0; color: rgba(243, 241, 234, 0.66); font-size: 0.88rem; }
.fact-card { padding: 1.5rem; border-top: 6px solid var(--yellow); background: var(--ink-soft); box-shadow: var(--shadow); }
.fact-card .label { display: block; color: var(--paper-muted); font-size: 0.72rem; font-weight: 900; letter-spacing: 0.12em; text-transform: uppercase; }
.fact-card .big { display: block; margin: 0.4rem 0; color: var(--yellow); font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 1000; letter-spacing: -0.07em; line-height: 0.95; }
.fact-card p { margin: 0; color: var(--paper-muted); font-size: 0.86rem; }

.service-surface { padding: clamp(4rem, 8vw, 7rem) 0; background: var(--paper); color: var(--ink); }
.content-grid { display: grid; grid-template-columns: minmax(0, 1fr) 320px; align-items: start; gap: clamp(2.5rem, 7vw, 6rem); }
.service-copy { min-width: 0; }
.answer-first { margin-bottom: 2.2rem; padding: 1.4rem 1.5rem; border-left: 6px solid var(--yellow); background: #fffef8; font-size: 1.08rem; font-weight: 690; }
.service-copy h2 { margin: 3.2rem 0 1rem; font-size: clamp(2rem, 4.4vw, 3.35rem); font-weight: 1000; letter-spacing: -0.055em; }
.service-copy h3 { margin: 2rem 0 0.7rem; font-size: 1.35rem; font-weight: 950; letter-spacing: -0.025em; }
.service-copy p, .service-copy li { color: #4f514b; }
.service-copy strong { color: var(--ink); }
.service-copy a:not(.button) { color: #22231f; font-weight: 800; text-decoration-color: #a68a00; text-decoration-thickness: 0.11em; text-underline-offset: 0.18em; }
.service-copy ul, .service-copy ol { padding-left: 1.25rem; }
.service-copy li + li { margin-top: 0.45rem; }
.scope-note, .safety-note { margin: 2rem 0; padding: 1.25rem 1.35rem; border: 1px solid var(--dark-line); background: #e8e6dd; }
.scope-note strong, .safety-note strong { display: block; margin-bottom: 0.35rem; }
.safety-note { border-left: 6px solid #b64622; }
.scope-note p, .safety-note p { margin: 0; }
.price-table { width: 100%; margin: 1.4rem 0; border-collapse: collapse; background: #fffef8; }
.price-table th, .price-table td { padding: 0.95rem; border: 1px solid #b9b7ae; text-align: left; vertical-align: top; }
.price-table th { background: var(--ink); color: var(--paper); font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; }
.price-table td:first-child { font-weight: 850; color: var(--ink); }
.service-aside { position: sticky; top: 108px; }
.aside-card { padding: 1.6rem; background: var(--ink); color: var(--paper); box-shadow: var(--shadow); }
.aside-card h2 { margin: 0 0 0.8rem; font-size: 2rem; font-weight: 1000; letter-spacing: -0.05em; }
.aside-card > p:not(.eyebrow) { color: var(--paper-muted); }
.aside-card .button { width: 100%; margin-top: 0.6rem; }
.service-list { margin: 1.4rem 0 0; padding: 1.2rem 0 0; border-top: 1px solid var(--line); list-style: none; }
.service-list li { position: relative; padding-left: 1.25rem; color: var(--paper-muted); font-size: 0.85rem; }
.service-list li + li { margin-top: 0.55rem; }
.service-list li::before { position: absolute; left: 0; color: var(--yellow); content: "✓"; font-weight: 1000; }

.faq { margin-top: 3.2rem; padding-top: 0.5rem; }
.faq-item { padding: 1.35rem 0; border-top: 1px solid #b9b7ae; }
.faq-item:last-child { border-bottom: 1px solid #b9b7ae; }
.faq-item h3 { margin: 0 0 0.55rem; }
.faq-item p { margin-bottom: 0; }
.related { margin-top: 3rem; padding: 1.5rem; background: #dedbd1; }
.related h2 { margin-top: 0; font-size: 1.65rem; }
.related ul { margin-bottom: 0; }
.page-cta { margin-top: 3rem; padding: clamp(1.7rem, 5vw, 3rem); background: var(--yellow); color: var(--ink); }
.page-cta h2 { margin: 0 0 0.8rem; font-size: clamp(2rem, 4.5vw, 3.2rem); }
.page-cta p { color: rgba(16, 18, 16, 0.76); }
.page-cta .button { background: var(--ink); color: var(--paper); border-color: var(--ink); }

.hub-hero h1 { max-width: 15ch; }
.services-section { padding: clamp(4rem, 8vw, 7rem) 0; background: var(--paper); color: var(--ink); }
.section-heading { display: grid; grid-template-columns: 1fr minmax(260px, 0.45fr); align-items: end; gap: 2rem; margin-bottom: 2.2rem; }
.section-heading h2 { max-width: 13ch; margin: 0; font-size: clamp(2.6rem, 6vw, 4.8rem); font-weight: 1000; letter-spacing: -0.065em; }
.section-heading p { margin: 0; color: #5b5d56; }
.service-card-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
.service-card { display: flex; min-height: 300px; flex-direction: column; padding: clamp(1.5rem, 4vw, 2.5rem); border: 1px solid var(--dark-line); background: #fffef8; }
.service-card.featured { background: var(--yellow); }
.service-card .number { color: #74766e; font-size: 0.74rem; font-weight: 900; letter-spacing: 0.12em; }
.service-card h2 { margin: 2.5rem 0 0.8rem; font-size: clamp(2rem, 4vw, 3rem); font-weight: 1000; letter-spacing: -0.055em; }
.service-card p { color: #575952; }
.service-card .rate { color: var(--ink); font-weight: 950; }
.service-card a { margin-top: auto; align-self: flex-start; font-weight: 950; text-underline-offset: 0.22em; }
.service-card.featured .number, .service-card.featured p { color: rgba(16, 18, 16, 0.7); }
.hub-note { margin-top: 1rem; padding: 1.5rem; border: 1px solid var(--dark-line); background: #dedbd1; }
.hub-note h2 { margin-bottom: 0.6rem; font-size: 1.6rem; }
.hub-note p { margin: 0; color: #555750; }

footer { padding: 2rem 0 6.4rem; border-top: 1px solid var(--line); }
.footer-grid { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
footer p { margin: 0; color: rgba(243, 241, 234, 0.58); font-size: 0.82rem; }
footer a { font-size: 0.85rem; font-weight: 800; text-underline-offset: 0.2em; }
.mobile-bar {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 40;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem;
  padding: 0.7rem;
  border-top: 1px solid rgba(243, 241, 234, 0.2);
  background: rgba(16, 18, 16, 0.96);
  backdrop-filter: blur(16px);
}
.mobile-bar .button { min-height: 48px; }

@media (max-width: 880px) {
  .nav-links > a:not(.button) { display: none; }
  .hero-grid, .content-grid, .section-heading { grid-template-columns: 1fr; }
  .fact-card { max-width: 360px; }
  .service-aside { position: static; }
}
@media (max-width: 680px) {
  .wrap { width: min(calc(100% - 1.25rem), var(--max)); }
  .nav { min-height: 68px; }
  .brand-logo { width: 46px; height: 46px; }
  .brand-copy span { display: none; }
  .nav-links .button { min-height: 44px; padding-inline: 0.85rem; }
  .service-hero { padding-top: 3.2rem; }
  h1 { font-size: clamp(3rem, 15vw, 4.8rem); }
  .hero-actions .button { width: 100%; }
  .service-card-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 260px; }
  .price-table { display: block; overflow-x: auto; }
  .footer-grid { align-items: flex-start; flex-direction: column; }
  .mobile-bar { display: grid; }
  footer { padding-bottom: 7.2rem; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .button { transition: none; }
}
