:root {
  --ink: #102a3a;
  --ink-soft: #16394E;
  --accent: #2f8a96;
  --accent-dark: #22636C;
  --paper: #eef3f5;
  --surface: #ffffff;
  --text: #102a3a;
  --muted: #68716c;
  --line: rgba(24, 32, 28, .14);
  --success: #196b47;
  --shadow: 0 22px 60px rgba(24, 32, 28, .12);
  --radius: 18px;
  --wrap: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.has-mobile-bar { padding-bottom: 0; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 600;
  line-height: 1.05;
}
h1 { margin-bottom: 24px; font-size: clamp(44px, 6.2vw, 82px); letter-spacing: -.055em; }
h2 { margin-bottom: 22px; font-size: clamp(34px, 4.5vw, 58px); letter-spacing: -.045em; }
h3 { margin-bottom: 12px; font-size: 24px; letter-spacing: -.025em; }
p { color: #4f5954; }
.wrap { width: min(calc(100% - 40px), var(--wrap)); margin-inline: auto; }
.skip-link { position: fixed; left: 12px; top: -60px; z-index: 9999; padding: 10px 16px; background: white; color: var(--ink); }
.skip-link:focus { top: 12px; }
.eyebrow {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.eyebrow.light { color: #f5c87f; }
.lede { max-width: 720px; color: #59635e; font-size: clamp(19px, 2vw, 23px); line-height: 1.55; }
.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 13px 22px;
  border: 1px solid var(--accent);
  border-radius: 999px;
  background: var(--accent);
  color: #111713;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}
.button:hover { transform: translateY(-2px); background: #efbb69; border-color: #efbb69; }
.button.secondary { border-color: rgba(255,255,255,.36); background: transparent; color: white; }
.button.secondary:hover { border-color: white; }
.button-wide { width: 100%; border: 0; cursor: pointer; }
.text-link { display: inline-flex; align-items: center; gap: 10px; color: var(--accent-dark); font-weight: 750; }
.text-link:hover { text-decoration: underline; text-underline-offset: 4px; }
.text-link.light-link { color: #ffd18c; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255,255,255,.1);
  background: rgba(24, 32, 28, .97);
  color: white;
  backdrop-filter: blur(16px);
}
.topline { border-bottom: 1px solid rgba(255,255,255,.1); }
.topline .wrap {
  display: flex;
  min-height: 34px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: #dce3df;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.topline-contact { display: flex; align-items: center; gap: 18px; }
.topline a { color: white; }
.nav-wrap { display: flex; min-height: 78px; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; flex: 0 0 auto; align-items: center; gap: 12px; color: white; line-height: 1; }
.brand-mark {
  position: relative;
  display: grid;
  width: 39px;
  height: 39px;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  transform: rotate(45deg);
}
.brand-mark i { display: block; background: var(--accent); }
.brand-mark i:nth-child(2), .brand-mark i:nth-child(3) { background: #dbe1dd; }
.brand-copy { display: grid; min-width: 0; gap: 4px; }
.brand strong { max-width: 190px; overflow: hidden; font-size: 14px; letter-spacing: .02em; text-overflow: ellipsis; white-space: nowrap; }
.brand small { max-width: 240px; overflow: hidden; color: #d7ded9; font-size: 10px; font-weight: 700; letter-spacing: .16em; text-overflow: ellipsis; text-transform: uppercase; white-space: nowrap; }
.nav { display: flex; align-items: center; gap: 23px; font-size: 13px; font-weight: 720; }
.nav > a:not(.button), .nav-label { color: white; }
.nav-label { padding: 10px 0; border: 0; background: transparent; cursor: pointer; font-weight: 720; }
.nav-group { position: relative; }
.dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: -18px;
  display: none;
  width: 290px;
  max-height: min(70vh, 520px);
  overflow: auto;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: white;
  box-shadow: var(--shadow);
}
.dropdown a { display: block; padding: 9px 11px; border-radius: 8px; color: var(--ink); font-weight: 650; }
.dropdown a:hover { background: var(--paper); color: var(--accent-dark); }
.nav-group:hover .dropdown, .nav-group.open .dropdown { display: block; }
.menu-button { display: none; padding: 10px 14px; border: 1px solid rgba(255,255,255,.35); border-radius: 999px; background: transparent; color: white; cursor: pointer; }
.call-pill { padding: 9px 14px; border: 1px solid rgba(255,255,255,.3); border-radius: 999px; }
.nav .button { min-height: 44px; padding: 10px 17px; }

.lead-prompt-bar { border-bottom: 1px solid var(--line); background: var(--surface); }
.lead-prompt-grid { display: grid; min-height: 62px; grid-template-columns: 1fr auto; align-items: center; gap: 24px; }
.lead-prompt-grid > div:first-child { display: flex; align-items: baseline; gap: 8px; }
.lead-prompt-grid strong { color: var(--ink); }
.lead-prompt-grid span { color: var(--muted); font-size: 14px; }
.lead-prompt-actions { display: flex; align-items: center; gap: 18px; font-size: 13px; font-weight: 800; }
.lead-prompt-actions a { color: var(--accent-dark); }
.lead-prompt-actions .lead-phone { color: var(--ink); }

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(74px, 9vw, 128px) 0;
  background:
    radial-gradient(circle at 82% 20%, rgba(213,155,70,.24), transparent 29%),
    linear-gradient(135deg, var(--ink) 0%, var(--ink-soft) 100%);
  color: white;
}
.hero::after {
  position: absolute;
  right: -100px;
  bottom: -130px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 48%;
  content: "";
  transform: rotate(22deg);
}
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0,1.2fr) minmax(300px,.8fr); align-items: center; gap: 70px; }
.hero h1, .hero h2 { color: white; }
.hero p { max-width: 680px; color: #dce2de; }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 18px; margin-top: 30px; }
.hero-proof { display: flex; flex-wrap: wrap; gap: 20px; margin-top: 34px; color: #d5ddd8; font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.hero-proof span { display: inline-flex; align-items: center; gap: 8px; }
.hero-proof b { color: #ffd18c; }
.pattern-art {
  position: relative;
  display: grid;
  width: min(100%, 420px);
  aspect-ratio: 1;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
  padding: 38px;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 36px;
  background: rgba(255,255,255,.05);
  transform: rotate(-4deg);
}
.pattern-art i { border-radius: 12px; background: rgba(255,255,255,.12); }
.pattern-art i:nth-child(2), .pattern-art i:nth-child(4), .pattern-art i:nth-child(8) { background: var(--accent); }
.pattern-art b { position: absolute; right: 24px; bottom: 18px; color: white; font-size: 11px; letter-spacing: .14em; }
.inner-hero { padding: clamp(68px, 8vw, 110px) 0; background: var(--ink); color: white; }
.inner-hero h1 { max-width: 900px; color: white; font-size: clamp(42px, 6vw, 72px); }
.inner-hero p { color: #d8dfdb; }

.section { padding: clamp(70px, 9vw, 118px) 0; }
.section.alt { background: var(--surface); }
.section.dark { background: var(--ink); color: white; }
.section.dark h2, .section.dark h3 { color: white; }
.section.dark p { color: #d0d8d3; }
.section-heading { max-width: 790px; margin-bottom: 46px; }
.section-heading.two-col { display: grid; max-width: none; grid-template-columns: 1.1fr .9fr; align-items: end; gap: 60px; }
.card-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 20px; }
.service-card, .feature-card, .area-card {
  position: relative;
  min-height: 260px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
a.service-card:hover, a.area-card:hover { transform: translateY(-5px); border-color: rgba(213,155,70,.7); box-shadow: var(--shadow); }
.card-number { display: block; margin-bottom: 44px; color: var(--accent-dark); font-size: 12px; font-weight: 850; letter-spacing: .12em; }
.service-card h3, .area-card h3 { font-size: 27px; }
.service-card p, .area-card p { font-size: 14px; }
.card-action { position: absolute; right: 27px; bottom: 24px; left: 27px; color: var(--accent-dark); font-size: 13px; font-weight: 800; }
.feature-card { min-height: 220px; }
.feature-card > span { display: block; margin-bottom: 28px; color: var(--accent-dark); font-size: 12px; font-weight: 850; }
.feature-card p { margin-bottom: 0; }
.statement { padding: clamp(56px, 7vw, 88px) 0; border-bottom: 1px solid var(--line); background: var(--surface); }
.statement-grid { display: grid; grid-template-columns: 80px 1.2fr .8fr; align-items: start; gap: 44px; }
.statement-grid > span { color: var(--accent-dark); font-size: 12px; font-weight: 850; letter-spacing: .12em; }
.statement-grid h2 { margin: 0; font-size: clamp(32px, 4vw, 52px); }
.statement-grid p { margin: 4px 0 0; }
.split-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 70px; }
.large-list, .tick-list { margin: 0; padding: 0; list-style: none; }
.large-list li { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 19px 0; border-bottom: 1px solid rgba(255,255,255,.18); color: white; font-size: clamp(18px, 2vw, 24px); }
.large-list li span { color: #ffd18c; }
.tick-list li { position: relative; margin-bottom: 10px; padding-left: 25px; color: #56605b; }
.tick-list li::before { position: absolute; left: 0; color: var(--success); content: "✓"; font-weight: 850; }
.process-list { display: grid; margin: 0; padding: 0; grid-template-columns: repeat(5, 1fr); list-style: none; }
.process-list li { min-height: 180px; padding: 22px; border-top: 1px solid var(--line); border-right: 1px solid var(--line); }
.process-list li:last-child { border-right: 0; }
.process-list span { display: block; margin-bottom: 45px; color: var(--accent-dark); font-size: 12px; font-weight: 850; }
.process-list p { color: var(--ink); font-weight: 700; }
.local-sources { display: flex; flex-wrap: wrap; gap: 8px 15px; margin-top: 22px; font-size: 12px; }
.local-sources span { color: var(--muted); }
.local-sources a { color: var(--accent-dark); text-decoration: underline; text-underline-offset: 3px; }
.area-list { display: flex; flex-wrap: wrap; gap: 10px; }
.area-list > * { padding: 10px 14px; border: 1px solid var(--line); border-radius: 999px; background: var(--surface); color: var(--ink); font-size: 13px; }

.conversion {
  padding: clamp(60px, 8vw, 96px) 0;
  background: var(--accent);
}
.conversion-grid { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 60px; }
.conversion h2 { max-width: 780px; margin-bottom: 14px; }
.conversion p { max-width: 760px; color: #29322d; }
.conversion-actions { display: grid; min-width: 260px; gap: 11px; }
.conversion .button { border-color: var(--ink); background: var(--ink); color: white; }
.conversion .text-link { color: var(--ink); }

.faq-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 70px; }
.faq-list details { border-top: 1px solid var(--line); }
.faq-list details:last-child { border-bottom: 1px solid var(--line); }
.faq-list summary { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 22px 0; color: var(--ink); cursor: pointer; font-weight: 750; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { color: var(--accent-dark); font-size: 22px; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { max-width: 760px; padding: 0 35px 20px 0; }

.quote-section { padding: clamp(72px, 9vw, 110px) 0; background: var(--ink); color: white; }
.quote-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 64px; }
.quote-section h2 { color: white; }
.quote-section p, .quote-section .tick-list li { color: #d6ded9; }
.quote-form { padding: 28px; border-radius: var(--radius); background: white; box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 16px; }
.quote-form label { display: grid; gap: 7px; color: var(--ink); font-size: 12px; font-weight: 800; letter-spacing: .04em; }
.quote-form label.full { grid-column: 1 / -1; }
.quote-form input, .quote-form select, .quote-form textarea {
  width: 100%;
  min-height: 49px;
  padding: 11px 12px;
  border: 1px solid #cfd5d1;
  border-radius: 9px;
  background: white;
  color: var(--ink);
  font-size: 15px;
  font-weight: 500;
}
.quote-form textarea { min-height: 120px; resize: vertical; }
.quote-form input:focus, .quote-form select:focus, .quote-form textarea:focus { border-color: var(--accent-dark); outline: 3px solid rgba(213,155,70,.18); }
.quote-form .button { margin-top: 18px; }
.form-note { margin: 13px 0 0; color: var(--muted) !important; font-size: 12px; text-align: center; }
.form-note a { color: var(--accent-dark); font-weight: 800; }
.hp-field { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.form-error { margin-bottom: 18px; padding: 12px 14px; border-left: 4px solid #b23a2c; background: #fff1ef; color: #7d251a; }

.html-sitemap-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 22px; }
.sitemap-group { padding: 27px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); }
.sitemap-group h2 { font-size: 27px; }
.sitemap-group a { display: block; padding: 9px 0; border-bottom: 1px solid var(--line); color: #46504a; font-size: 14px; }
.sitemap-group a:hover { color: var(--accent-dark); }

.footer { padding: 64px 0 26px; background: #0f1512; color: white; }
.footer-grid { display: grid; grid-template-columns: 1.35fr repeat(3, 1fr); gap: 44px; }
.footer h3 { color: white; font-family: inherit; font-size: 13px; letter-spacing: .08em; text-transform: uppercase; }
.footer p { max-width: 330px; color: #aeb9b2; font-size: 14px; }
.footer-column > a { display: block; margin-bottom: 9px; color: #d8dfdb; font-size: 13px; }
.footer-column > a:hover { color: #ffd18c; }
.footer-bottom { display: flex; margin-top: 48px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12); justify-content: space-between; gap: 20px; color: #89958e; font-size: 11px; letter-spacing: .04em; text-transform: uppercase; }
.mobile-lead-bar { display: none; }

@media (max-width: 1060px) {
  .nav { gap: 14px; }
  .nav > a:not(.button):not(.call-pill) { display: none; }
  .card-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .process-list { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 780px) {
  body.has-mobile-bar { padding-bottom: 58px; }
  .wrap { width: min(calc(100% - 28px), var(--wrap)); }
  .topline .wrap { min-height: 38px; }
  .topline .wrap > span, .topline-contact a:last-child { display: none; }
  .topline-contact { margin-left: auto; }
  .nav-wrap { min-height: 68px; gap: 12px; }
  .nav-wrap .brand { min-width: 0; flex: 1 1 auto; }
  .brand strong { max-width: 170px; }
  .brand small { max-width: 170px; }
  .menu-button { flex: 0 0 auto; }
  .menu-button { display: inline-flex; }
  .nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: none;
    max-height: calc(100vh - 106px);
    overflow: auto;
    padding: 18px 20px 24px;
    border-top: 1px solid rgba(255,255,255,.12);
    background: var(--ink);
    align-items: stretch;
    flex-direction: column;
  }
  .nav.open { display: flex; }
  .nav > a:not(.button), .nav-label { display: block !important; width: 100%; padding: 10px 0; text-align: left; }
  .nav-group { width: 100%; }
  .dropdown { position: static; width: 100%; max-height: none; margin: 4px 0 12px; box-shadow: none; }
  .nav-group.open .dropdown { display: block; }
  .nav .button { width: 100%; }
  .call-pill { border: 0; border-radius: 0; }
  .lead-prompt-grid { min-height: 55px; grid-template-columns: 1fr; gap: 8px; padding-block: 10px; }
  .lead-prompt-grid > div:first-child span { display: none; }
  .lead-prompt-actions { justify-content: space-between; }
  .lead-prompt-actions .lead-phone { display: none; }
  .hero-grid, .statement-grid, .split-grid, .section-heading.two-col, .conversion-grid, .faq-grid, .quote-layout { grid-template-columns: 1fr; }
  .hero-grid { gap: 50px; }
  .pattern-art { width: min(82vw, 370px); margin-inline: auto; }
  .statement-grid { gap: 18px; }
  .statement-grid > span { margin-bottom: 5px; }
  .card-grid { grid-template-columns: 1fr; }
  .process-list { grid-template-columns: 1fr; }
  .process-list li { min-height: 0; border-right: 0; }
  .process-list span { margin-bottom: 18px; }
  .conversion-grid { gap: 28px; }
  .conversion-actions { min-width: 0; }
  .form-grid { grid-template-columns: 1fr; }
  .quote-form label.full { grid-column: auto; }
  .html-sitemap-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .mobile-lead-bar {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 120;
    display: grid;
    height: 58px;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid rgba(255,255,255,.16);
    background: var(--ink);
    box-shadow: 0 -8px 24px rgba(0,0,0,.2);
  }
  .mobile-lead-bar a { display: flex; align-items: center; justify-content: center; border-right: 1px solid rgba(255,255,255,.14); color: white; font-size: 12px; font-weight: 850; }
  .mobile-lead-bar a:last-child { border-right: 0; background: var(--accent); color: var(--ink); }
}

@media (max-width: 480px) {
  h1 { font-size: 42px; }
  h2 { font-size: 34px; }
  .hero { padding-block: 64px; }
  .hero-proof { display: grid; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > div:first-child { grid-column: auto; }
}

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