:root {
  --ink: #16181d;
  --ink-soft: #41454d;
  --muted: #7a8089;
  --bg: #f6f4f0;
  --surface: #ffffff;
  --surface-soft: #fbfaf7;
  --line: #e5e1d9;
  --copper: #b05e2c;
  --copper-dark: #8f471f;
  --copper-soft: #f4e9df;
  --green: #16836f;
  --danger: #b9362c;
  --shadow: 0 1px 2px rgba(22, 24, 29, 0.04), 0 16px 48px rgba(22, 24, 29, 0.08);
  --radius: 8px;
  --maxw: 1160px;
  --font-body: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --font-head: Archivo, Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

@font-face {
  font-family: Inter;
  src: local("Inter");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Archivo;
  src: local("Archivo");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

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

* {
  margin: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
  -webkit-font-smoothing: antialiased;
}

body {
  min-width: 320px;
  color: var(--ink);
  background: var(--bg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.62;
}

body,
button,
input,
select {
  font-family: var(--font-body);
}

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

img,
svg {
  display: block;
}

img {
  max-width: 100%;
  height: auto;
}

button,
input,
select {
  font: inherit;
}

h1,
h2,
h3,
h4 {
  color: var(--ink);
  font-family: var(--font-head);
  font-weight: 850;
  letter-spacing: 0;
  line-height: 1.08;
  text-wrap: balance;
}

h1 {
  font-size: 4rem;
}

h2 {
  font-size: 2.55rem;
}

h3 {
  font-size: 1.2rem;
}

p {
  color: var(--ink-soft);
}

.wrap {
  width: min(100% - 40px, var(--maxw));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 300;
  padding: 10px 14px;
  border-radius: var(--radius);
  color: #fff;
  background: var(--copper);
  transform: translateY(-150%);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(22, 24, 29, 0.08);
  background: rgba(246, 244, 240, 0.92);
  backdrop-filter: blur(16px);
}

.nav {
  display: flex;
  min-height: 74px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 850;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  flex: none;
  place-items: center;
  border-radius: var(--radius);
  color: #fff;
  background: var(--copper);
}

.brand-mark svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.brand-text {
  display: grid;
  gap: 1px;
}

.brand-name {
  color: var(--ink);
  font-size: 1.05rem;
  line-height: 1.1;
}

.brand-tagline {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 750;
  line-height: 1.1;
}

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

.nav-links a {
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 750;
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--copper-dark);
  font-weight: 900;
  white-space: nowrap;
}

.phone-link svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--surface);
  cursor: pointer;
}

.menu-button svg {
  width: 23px;
  height: 23px;
  stroke: currentColor;
  stroke-width: 2;
}

.mobile-menu {
  display: none;
  border-top: 1px solid var(--line);
  background: var(--surface);
}

.mobile-menu a {
  display: block;
  padding: 14px 20px;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  font-weight: 750;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 850;
  line-height: 1.15;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
  white-space: nowrap;
}

.button:hover {
  transform: translateY(-1px);
}

.button svg {
  width: 18px;
  height: 18px;
  flex: none;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.1;
}

.button-primary {
  color: #fff;
  background: var(--copper);
  box-shadow: 0 14px 30px rgba(176, 94, 44, 0.24);
}

.button-primary:hover {
  background: var(--copper-dark);
}

.button-light {
  color: var(--ink);
  background: #fff;
  border-color: rgba(255, 255, 255, 0.5);
}

.button-outline {
  color: var(--copper-dark);
  background: transparent;
  border-color: var(--line);
}

.button-outline:hover {
  background: var(--copper-soft);
  border-color: var(--copper-soft);
}

.button-danger {
  color: #fff;
  background: var(--danger);
  box-shadow: 0 14px 30px rgba(185, 54, 44, 0.23);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--copper);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: currentColor;
  content: "";
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: #fff;
  background: #17120f;
}

.hero-picture {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

.hero > .hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(20, 15, 12, 0.92) 0%, rgba(20, 15, 12, 0.74) 48%, rgba(20, 15, 12, 0.22) 100%),
    linear-gradient(180deg, rgba(20, 15, 12, 0.12), rgba(20, 15, 12, 0.22));
  content: "";
}

.hero-inner {
  display: grid;
  min-height: 610px;
  align-items: center;
  padding: 70px 0;
}

.hero-narrow .hero-inner {
  min-height: 450px;
}

.hero-copy {
  max-width: 760px;
}

.hero .eyebrow {
  color: #f1c7a7;
}

.hero h1 {
  margin-top: 14px;
  color: #fff;
}

.hero-intro {
  max-width: 650px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.16rem;
}

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

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin-top: 26px;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 750;
}

.hero-trust span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-trust svg,
.check-list svg {
  width: 18px;
  height: 18px;
  flex: none;
  fill: none;
  stroke: #f1c7a7;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.4;
}

.hero-local {
  display: inline-flex;
  max-width: 100%;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.92rem;
  font-weight: 750;
}

.hero-local svg {
  width: 18px;
  height: 18px;
  flex: none;
  fill: none;
  stroke: #f1c7a7;
  stroke-width: 2;
}

.urgent-bar {
  background: var(--danger);
  color: #fff;
}

.urgent-bar .wrap {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 0;
}

.urgent-bar strong,
.urgent-bar a {
  color: #fff;
}

.urgent-phone {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 900;
}

.proof-strip {
  background: var(--ink);
  color: #fff;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.proof-item {
  min-height: 104px;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 23px 22px;
  border-left: 1px solid rgba(255, 255, 255, 0.10);
}

.proof-item:first-child {
  border-left: 0;
}

.proof-item svg {
  width: 27px;
  height: 27px;
  flex: none;
  fill: none;
  stroke: #f1c7a7;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.proof-item strong {
  display: block;
  color: #fff;
  line-height: 1.2;
}

.proof-item small {
  display: block;
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.64);
}

.section {
  padding: 82px 0;
}

.section-white {
  background: var(--surface);
}

.section-soft {
  background: var(--surface-soft);
}

.section-dark {
  color: #fff;
  background: var(--ink);
}

.section-dark h2,
.section-dark h3 {
  color: #fff;
}

.section-dark p,
.section-dark li {
  color: rgba(255, 255, 255, 0.74);
}

.section-head {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-head h2 {
  margin-top: 10px;
}

.section-head p {
  margin-top: 13px;
  font-size: 1.07rem;
}

.section p a {
  color: var(--copper-dark);
  font-weight: 850;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.center {
  margin-inline: auto;
  text-align: center;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}

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

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 1px 0 rgba(22, 24, 29, 0.03);
}

.service-card {
  display: flex;
  min-height: 300px;
  flex-direction: column;
  padding: 24px;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.service-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.service-card p,
.step-card p,
.info-card p,
.review-card p {
  margin-top: 10px;
}

.service-card a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: auto;
  padding-top: 18px;
  color: var(--copper-dark);
  font-weight: 850;
}

.icon-box {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  place-items: center;
  border-radius: var(--radius);
  color: var(--copper);
  background: var(--copper-soft);
}

.icon-box svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.step-card,
.info-card,
.review-card {
  padding: 24px;
}

.step-number {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: var(--radius);
  color: #fff;
  background: var(--copper);
  font-weight: 900;
}

.split {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 46px;
  align-items: center;
}

.split-media {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.split-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.media-caption {
  padding: 14px 16px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.84rem;
}

.facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 24px;
}

.fact {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.fact strong {
  display: block;
  color: var(--copper-dark);
  font-family: var(--font-head);
  font-size: 1.45rem;
  line-height: 1;
}

.fact span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 750;
}

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

.check-list li {
  display: flex;
  gap: 10px;
  color: var(--ink-soft);
}

.check-list svg {
  margin-top: 3px;
  stroke: var(--copper);
}

.detail-list {
  display: grid;
  gap: 12px;
}

.detail-row {
  display: grid;
  grid-template-columns: minmax(150px, 0.32fr) 1fr;
  gap: 16px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.detail-row strong {
  color: var(--ink);
  font-family: var(--font-head);
  line-height: 1.2;
}

.detail-row p {
  margin: 0;
}

.notice-card {
  padding: 22px;
  border: 1px solid rgba(185, 54, 44, 0.22);
  border-radius: var(--radius);
  background: #fff7f4;
}

.notice-card h3 {
  color: var(--danger);
}

.notice-card p {
  margin-top: 10px;
}

.do-dont {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: start;
}

.faq-list {
  max-width: 880px;
  margin-inline: auto;
  border-top: 1px solid var(--line);
}

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

summary {
  display: flex;
  min-height: 68px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
  cursor: pointer;
  color: var(--ink);
  font-weight: 850;
  list-style: none;
}

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

details p {
  max-width: 790px;
  padding: 0 0 20px;
}

.plus {
  position: relative;
  width: 22px;
  height: 22px;
  flex: none;
  border-radius: 999px;
  background: var(--copper-soft);
}

.plus::before,
.plus::after {
  position: absolute;
  top: 10px;
  left: 5px;
  width: 12px;
  height: 2px;
  border-radius: 2px;
  background: var(--copper);
  content: "";
}

.plus::after {
  transform: rotate(90deg);
}

details[open] .plus::after {
  opacity: 0;
}

.cta-section {
  background: linear-gradient(180deg, var(--copper-soft), var(--bg));
}

.cta-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 42px;
  align-items: start;
}

.big-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  color: var(--copper-dark);
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 900;
}

.big-phone svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.contact-form {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.field {
  margin-bottom: 14px;
}

.field label {
  display: block;
  margin-bottom: 7px;
  color: var(--ink);
  font-weight: 850;
}

.field input,
.field select {
  width: 100%;
  min-height: 48px;
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--bg);
}

.field input:focus,
.field select:focus {
  border-color: var(--copper);
  outline: 3px solid rgba(176, 94, 44, 0.16);
}

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

.form-help {
  margin: 4px 0 18px;
}

.contact-form .button {
  width: 100%;
}

.privacy {
  margin-top: 12px;
  text-align: center;
}

.form-success {
  display: none;
  padding: 24px 0;
  text-align: center;
}

.form-success svg {
  width: 48px;
  height: 48px;
  margin: 0 auto 12px;
  color: var(--copper);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.service-nav {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin-top: 28px;
}

.service-nav a {
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink-soft);
  background: var(--surface);
  font-weight: 800;
}

.service-nav a:hover,
.service-nav a[aria-current="page"] {
  color: var(--copper-dark);
  background: var(--copper-soft);
  border-color: var(--copper-soft);
}

.site-footer {
  color: rgba(255, 255, 255, 0.72);
  background: #16181d;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr 1fr;
  gap: 30px;
  padding: 56px 0 34px;
}

.site-footer .brand-name,
.site-footer h3 {
  color: #fff;
}

.site-footer .brand-tagline,
.site-footer p,
.site-footer li {
  color: rgba(255, 255, 255, 0.72);
}

.site-footer h3 {
  margin-bottom: 12px;
  font-size: 0.96rem;
}

.site-footer ul {
  display: grid;
  gap: 8px;
  padding: 0;
  list-style: none;
}

.site-footer a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.84rem;
}

.mobile-cta {
  display: none;
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 120;
  gap: 10px;
  padding: 10px 12px;
  border-top: 1px solid var(--line);
  background: rgba(246, 244, 240, 0.97);
  box-shadow: 0 -8px 24px rgba(22, 24, 29, 0.10);
  backdrop-filter: blur(12px);
}

.mobile-cta .button {
  flex: 1;
  min-width: 0;
  padding-inline: 10px;
}

:focus-visible {
  outline: 3px solid rgba(176, 94, 44, 0.35);
  outline-offset: 3px;
}

@media (max-width: 1120px) {
  h1 {
    font-size: 3.3rem;
  }

  h2 {
    font-size: 2.25rem;
  }

  .nav-links {
    display: none;
  }

  .grid-4,
  .service-nav {
    grid-template-columns: repeat(2, 1fr);
  }

  .split,
  .grid-2,
  .do-dont,
  .cta-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 760px) {
  h1 {
    font-size: 2.25rem;
  }

  h2 {
    font-size: 1.85rem;
  }

  h3 {
    font-size: 1.12rem;
  }

  body {
    padding-bottom: 70px;
  }

  .wrap {
    width: min(100% - 32px, var(--maxw));
  }

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

  .brand-tagline {
    font-size: 0.66rem;
  }

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

  .mobile-menu.open {
    display: block;
  }

  .hero-inner {
    min-height: 610px;
    align-items: end;
    padding: 48px 0 44px;
  }

  .hero-narrow .hero-inner {
    min-height: 480px;
  }

  .hero-bg {
    object-position: center center;
  }

  .hero::before {
    background: linear-gradient(90deg, rgba(20, 15, 12, 0.92), rgba(20, 15, 12, 0.70));
  }

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

  .hero-local {
    align-items: flex-start;
  }

  .urgent-bar .wrap {
    display: grid;
    gap: 4px;
  }

  .proof-grid,
  .grid-3,
  .grid-4,
  .facts,
  .form-row,
  .footer-top,
  .service-nav {
    grid-template-columns: 1fr;
  }

  .proof-item {
    min-height: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
    border-left: 0;
  }

  .proof-item:first-child {
    border-top: 0;
  }

  .section {
    padding: 62px 0;
  }

  .service-card {
    min-height: auto;
  }

  .button {
    white-space: normal;
  }

  .detail-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .mobile-cta {
    display: flex;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
