:root {
  --ink: #171513;
  --muted: #625f59;
  --paper: #f8f4ec;
  --paper-strong: #fffdf8;
  --line: rgba(23, 21, 19, 0.14);
  --steel: #1b6a8d;
  --steel-dark: #104760;
  --gold: #d98f27;
  --green: #556b45;
  --charcoal: #24211e;
  --white: #ffffff;
  --shadow: 0 22px 70px rgba(23, 21, 19, 0.18);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

.skip-link {
  position: fixed;
  left: 18px;
  top: 14px;
  z-index: 30;
  transform: translateY(-140%);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 10px 14px;
  box-shadow: var(--shadow);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(88px, auto) minmax(0, 1fr) auto;
  gap: clamp(14px, 2vw, 24px);
  align-items: center;
  padding: 16px clamp(18px, 3vw, 42px);
  transition: background 180ms ease, box-shadow 180ms ease, padding 180ms ease;
}

.site-header.is-scrolled,
.site-header.nav-visible {
  background: rgba(255, 253, 248, 0.96);
  box-shadow: 0 10px 30px rgba(23, 21, 19, 0.12);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  width: 116px;
  min-width: 116px;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.88);
  padding: 5px 8px;
}

.brand img,
.footer-brand img {
  width: 100%;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 1.75vw, 28px);
  font-size: 0.95rem;
  font-weight: 750;
  color: var(--white);
  min-width: 0;
}

.site-header.is-scrolled .site-nav,
.site-header.nav-visible .site-nav {
  color: var(--ink);
}

.site-nav a,
.footer-links a,
.phone-link {
  position: relative;
}

.site-nav a::after,
.footer-links a::after,
.phone-link::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -5px;
  height: 2px;
  content: "";
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.site-nav a:hover::after,
.footer-links a:hover::after,
.phone-link:hover::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  min-width: 0;
}

.phone-link {
  color: var(--white);
  font-weight: 800;
  white-space: nowrap;
}

.site-header.is-scrolled .phone-link,
.site-header.nav-visible .phone-link {
  color: var(--ink);
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  background: var(--gold);
  color: #1c1308;
  font-weight: 900;
  line-height: 1;
  padding: 15px 20px;
  box-shadow: 0 12px 26px rgba(217, 143, 39, 0.27);
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 34px rgba(217, 143, 39, 0.34);
}

.button-small {
  min-height: 42px;
  padding: 12px 15px;
  font-size: 0.92rem;
  white-space: nowrap;
}

.button-ghost {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.7);
  color: var(--white);
  box-shadow: none;
}

.button-ghost:hover {
  background: rgba(255, 255, 255, 0.18);
  box-shadow: none;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  margin-left: auto;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
}

.hero {
  position: relative;
  display: grid;
  min-height: 82vh;
  overflow: hidden;
  color: var(--white);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url("../../images/hero/hero.jpg");
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(22, 18, 14, 0.88) 0%, rgba(22, 18, 14, 0.64) 47%, rgba(22, 18, 14, 0.2) 100%),
    linear-gradient(180deg, rgba(22, 18, 14, 0.22), rgba(22, 18, 14, 0.55));
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(112px, 14vh, 146px) 0 46px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.split-content h2,
.proof-section h2,
.contact-info h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 760;
  line-height: 1.02;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(2.8rem, 6vw, 5.15rem);
}

.hero-copy {
  max-width: 720px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.03rem, 1.6vw, 1.24rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-note {
  max-width: 560px;
  margin: 17px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
}

.stats-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-strong);
  box-shadow: var(--shadow);
}

.stats-band div {
  min-height: 86px;
  padding: 16px;
  background: var(--paper-strong);
}

.stats-band strong,
.stats-band span {
  display: block;
}

.stats-band strong {
  color: var(--ink);
  font-size: clamp(1rem, 1.5vw, 1.24rem);
}

.stats-band span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.87rem;
}

.section {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(72px, 10vw, 118px) 0;
}

.section-heading {
  max-width: 790px;
  margin: 0 auto 36px;
  text-align: center;
}

.section-heading.align-left {
  margin-left: 0;
  text-align: left;
}

.section-heading h2,
.split-content h2,
.proof-section h2,
.contact-info h2 {
  font-size: clamp(2.1rem, 4.5vw, 4.25rem);
}

.section-heading p:not(.eyebrow),
.split-content p,
.proof-section p,
.contact-info p {
  color: var(--muted);
  font-size: 1.05rem;
}

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

.service-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-strong);
  box-shadow: 0 14px 35px rgba(23, 21, 19, 0.08);
}

.service-card img {
  width: 100%;
  aspect-ratio: 1.16;
  object-fit: cover;
}

.service-card-content {
  padding: 22px;
}

.service-card span {
  display: inline-flex;
  margin-bottom: 12px;
  border-radius: 999px;
  background: rgba(27, 106, 141, 0.1);
  color: var(--steel-dark);
  font-size: 0.78rem;
  font-weight: 950;
  padding: 6px 10px;
  text-transform: uppercase;
}

.service-card h3,
.process-step h3 {
  margin: 0;
  font-size: 1.22rem;
  line-height: 1.22;
}

.service-card p,
.process-step p,
.faq-grid p {
  margin: 12px 0 0;
  color: var(--muted);
}

.process-section {
  width: 100%;
  max-width: none;
  background: var(--charcoal);
  color: var(--white);
}

.process-section > * {
  width: min(var(--max), calc(100% - 36px));
  margin-left: auto;
  margin-right: auto;
}

.process-section .section-heading p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.12);
}

.process-step {
  min-height: 310px;
  padding: 28px;
  background: #2f2a25;
}

.process-step span {
  display: block;
  margin-bottom: 48px;
  color: var(--gold);
  font-size: 2.25rem;
  font-weight: 950;
}

.process-step p {
  color: rgba(255, 255, 255, 0.72);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(72px, 10vw, 120px) 0;
}

.split-image {
  position: relative;
}

.split-image::before {
  position: absolute;
  inset: 22px -18px -18px 22px;
  z-index: -1;
  content: "";
  border: 1px solid rgba(217, 143, 39, 0.55);
  border-radius: var(--radius);
}

.split-image img {
  width: 100%;
  aspect-ratio: 0.92;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow);
}

.split-content p {
  margin: 18px 0 0;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  color: var(--charcoal);
  font-weight: 700;
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 0.2em;
  display: grid;
  width: 19px;
  height: 19px;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  content: "";
}

.check-list li::after {
  position: absolute;
  left: 6px;
  top: 0.55em;
  width: 7px;
  height: 4px;
  border-bottom: 2px solid var(--white);
  border-left: 2px solid var(--white);
  content: "";
  transform: rotate(-45deg);
}

.area-section {
  padding-top: 0;
}

.city-cloud {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.city-cloud span {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper-strong);
  color: var(--charcoal);
  font-weight: 850;
  padding: 10px 14px;
}

.map-link {
  display: table;
  margin: 26px auto 0;
  color: var(--steel-dark);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-color: rgba(27, 106, 141, 0.35);
  text-underline-offset: 5px;
}

.proof-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 36px;
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto clamp(72px, 9vw, 116px);
  padding: clamp(32px, 5vw, 56px);
  border-radius: var(--radius);
  background: #efe6d8;
}

.proof-grid {
  display: grid;
  gap: 14px;
}

.proof-grid article {
  border-left: 4px solid var(--gold);
  background: rgba(255, 255, 255, 0.48);
  padding: 18px 20px;
}

.proof-grid strong {
  display: block;
  font-size: 1.02rem;
}

.proof-grid p {
  margin: 6px 0 0;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.88fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(72px, 10vw, 122px) 0;
  border-top: 1px solid var(--line);
}

.contact-card {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.contact-card p {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 14px;
  align-items: baseline;
  margin: 0;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.contact-card strong {
  color: var(--ink);
}

.contact-card a {
  color: var(--steel-dark);
  font-weight: 850;
}

.quote-form {
  display: grid;
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-strong);
  padding: clamp(22px, 4vw, 34px);
  box-shadow: var(--shadow);
}

.original-form h3 {
  margin: 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: 1.45rem;
  line-height: 1.2;
  padding-bottom: 16px;
}

.form-embed {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f8fafc;
}

.form-embed iframe {
  display: block;
  width: 100%;
  min-height: 669px;
  border: 0;
  border-radius: 3px;
}

.faq-section {
  padding-top: 0;
}

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

.faq-grid details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-strong);
  padding: 20px;
}

.faq-grid summary {
  cursor: pointer;
  font-weight: 900;
}

.site-footer {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 26px;
  align-items: center;
  background: var(--charcoal);
  color: var(--white);
  padding: 38px clamp(18px, 4vw, 54px);
}

.footer-brand {
  width: 88px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.site-footer p {
  margin: 5px 0 0;
  max-width: 640px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px 20px;
  font-weight: 850;
}

.copyright {
  grid-column: 1 / -1;
  font-size: 0.86rem;
}

@media (max-width: 1040px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav,
  .header-actions {
    display: none;
  }

  .site-header.nav-visible .site-nav,
  .site-header.nav-visible .header-actions {
    display: flex;
  }

  .site-header.nav-visible {
    grid-template-columns: auto auto;
    align-items: start;
  }

  .site-header.nav-visible .site-nav {
    grid-column: 1 / -1;
    flex-direction: column;
    align-items: flex-start;
    color: var(--ink);
    gap: 16px;
    padding-top: 14px;
  }

  .site-header.nav-visible .header-actions {
    grid-column: 1 / -1;
    flex-direction: column;
    align-items: stretch;
  }

  .site-header.nav-visible .phone-link {
    color: var(--ink);
  }

  .service-grid,
  .proof-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

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

  .split-section {
    grid-template-columns: 1fr;
  }

  .split-image {
    max-width: 640px;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 1180px) and (min-width: 1041px) {
  .phone-link {
    display: none;
  }
}

@media (max-width: 720px) {
  .site-header {
    padding: 10px 16px;
  }

  .brand {
    width: 88px;
    min-width: 88px;
  }

  .hero {
    min-height: auto;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(22, 18, 14, 0.88) 0%, rgba(22, 18, 14, 0.75) 55%, rgba(22, 18, 14, 0.72) 100%);
  }

  .hero-inner {
    width: min(100% - 28px, var(--max));
    padding-top: 112px;
    padding-bottom: 42px;
  }

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

  .hero-actions {
    display: grid;
  }

  .stats-band {
    grid-template-columns: 1fr 1fr;
  }

  .stats-band div {
    min-height: 86px;
    padding: 14px;
  }

  .section,
  .split-section,
  .contact-section,
  .proof-section {
    width: min(100% - 28px, var(--max));
  }

  .service-grid,
  .process-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .process-step {
    min-height: 230px;
  }

  .process-step span {
    margin-bottom: 28px;
  }

  .proof-section {
    padding: 28px 18px;
  }

  .contact-card p {
    grid-template-columns: 1fr;
    gap: 3px;
  }
}

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