:root {
  --black: #050505;
  --ink: #0d0d0d;
  --panel: #141414;
  --panel-soft: #191919;
  --gold: #d9aa43;
  --gold-soft: #f2d98a;
  --white: #f7f5ef;
  --muted: #c8c1b3;
  --line: rgba(217, 170, 67, 0.36);
  --green: #158f5a;
  --teal: #113c3d;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.36);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 17px;
  line-height: 1.65;
}

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

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 20;
  padding: 10px 14px;
  background: var(--white);
  color: var(--black);
  border-radius: 4px;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  padding: 14px 6vw;
  background: rgba(5, 5, 5, 0.92);
  border-bottom: 1px solid rgba(217, 170, 67, 0.2);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  color: var(--gold-soft);
}

.brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.top-nav {
  display: flex;
  gap: 24px;
  color: var(--muted);
  font-size: 14px;
}

.top-nav a {
  text-decoration: none;
  transition: color 160ms ease;
}

.top-nav a:hover,
.top-nav a:focus-visible {
  color: var(--gold-soft);
}

.hero {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
  align-items: center;
  gap: 6vw;
  min-height: calc(100vh - 78px);
  padding: 56px 6vw 72px;
  background: var(--black);
  border-bottom: 1px solid var(--line);
}

.hero-media {
  display: flex;
  justify-content: center;
}

.hero-media img {
  width: min(480px, 100%);
  aspect-ratio: 1;
  object-fit: contain;
  filter: drop-shadow(0 20px 54px rgba(217, 170, 67, 0.12));
}

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

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--gold-soft);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 72px;
  line-height: 1.02;
  font-weight: 500;
}

h2 {
  margin: 0 0 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 42px;
  line-height: 1.15;
  font-weight: 500;
}

h3 {
  margin: 0 0 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  line-height: 1.25;
  font-weight: 500;
}

.hero-subtitle {
  margin: 18px 0 0;
  color: var(--gold);
  font-size: 22px;
  font-family: Georgia, "Times New Roman", serif;
}

.hero-text {
  margin: 22px 0 0;
  max-width: 620px;
  color: var(--muted);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border: 1px solid var(--line);
  border-radius: 4px;
  text-decoration: none;
  font-weight: 700;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  border-color: var(--gold-soft);
}

.button-primary {
  background: var(--green);
  border-color: var(--green);
  color: #ffffff;
}

.button-secondary {
  background: transparent;
  color: var(--gold-soft);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  padding: 0 6vw;
  background: var(--ink);
  border-bottom: 1px solid var(--line);
}

.trust-strip article {
  min-height: 238px;
  padding: 38px 36px;
  border-right: 1px solid var(--line);
}

.trust-strip article:last-child {
  border-right: 0;
}

.line-icon {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  border: 1px solid var(--gold);
  color: var(--gold-soft);
  border-radius: 50%;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
}

.trust-strip h2 {
  margin-bottom: 8px;
  color: var(--gold-soft);
  font-size: 26px;
}

.trust-strip p {
  margin: 0;
  color: var(--muted);
}

.section {
  padding: 88px 6vw;
  border-bottom: 1px solid rgba(217, 170, 67, 0.24);
}

.split {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(360px, 1.15fr);
  gap: 56px;
  align-items: start;
  background: var(--black);
}

.split p,
.local-section p,
.contact-band p,
.faq-section p {
  color: var(--muted);
}

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

.service-card {
  min-height: 210px;
  padding: 26px;
  background: var(--panel);
  border: 1px solid rgba(217, 170, 67, 0.22);
  border-radius: 6px;
}

.service-card p {
  margin: 0;
}

.process-band {
  background: var(--panel-soft);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.steps li {
  min-height: 228px;
  padding: 28px;
  background: var(--black);
  border: 1px solid rgba(217, 170, 67, 0.24);
  border-radius: 6px;
  counter-increment: step;
}

.steps li::before {
  content: "0" counter(step);
  display: block;
  margin-bottom: 26px;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
}

.steps strong {
  display: block;
  margin-bottom: 8px;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 23px;
  line-height: 1.25;
}

.steps span {
  display: block;
  color: var(--muted);
}

.local-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(360px, 1.15fr);
  gap: 56px;
  align-items: center;
  background: var(--black);
}

.location-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.location-list li {
  min-height: 58px;
  display: flex;
  align-items: center;
  padding: 14px 18px;
  border-left: 3px solid var(--gold);
  background: var(--panel);
  color: var(--white);
}

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

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 980px;
}

details {
  border: 1px solid rgba(217, 170, 67, 0.24);
  border-radius: 6px;
  background: var(--black);
}

summary {
  cursor: pointer;
  padding: 20px 24px;
  color: var(--white);
  font-weight: 700;
}

details p {
  margin: 0;
  padding: 0 24px 22px;
}

.contact-band {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(320px, 1fr);
  gap: 48px;
  padding: 88px 6vw;
  background: var(--teal);
  border-bottom: 1px solid rgba(217, 170, 67, 0.24);
}

.contact-panel {
  display: grid;
  gap: 10px;
  padding: 20px;
  background: rgba(5, 5, 5, 0.62);
  border: 1px solid rgba(242, 217, 138, 0.34);
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.contact-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 66px;
  padding: 14px 18px;
  color: var(--white);
  text-decoration: none;
  border: 1px solid rgba(242, 217, 138, 0.18);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.04);
}

.contact-row:hover,
.contact-row:focus-visible {
  border-color: var(--gold-soft);
}

.contact-row span {
  color: var(--gold-soft);
  font-size: 14px;
  text-transform: uppercase;
}

.contact-row strong {
  text-align: right;
  font-size: 16px;
}

.contact-main {
  background: var(--green);
  border-color: var(--green);
}

.contact-main span {
  color: #ffffff;
}

.contact-note {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.site-footer {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 40px;
  padding: 46px 6vw 54px;
  background: var(--black);
  color: var(--muted);
  font-size: 14px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--gold-soft);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
}

.footer-brand img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.footer-brand p,
.legal p {
  margin: 0;
}

.legal {
  display: grid;
  gap: 10px;
}

@media (max-width: 980px) {
  .site-header {
    position: static;
  }

  .hero,
  .split,
  .local-section,
  .contact-band,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 38px;
  }

  .hero-media {
    order: -1;
  }

  .hero-media img {
    width: 300px;
  }

  h1 {
    font-size: 54px;
  }

  h2 {
    font-size: 34px;
  }

  .trust-strip,
  .steps {
    grid-template-columns: 1fr 1fr;
  }

  .trust-strip article:nth-child(2) {
    border-right: 0;
  }

  .trust-strip article:last-child {
    grid-column: 1 / -1;
    border-top: 1px solid var(--line);
  }
}

@media (max-width: 680px) {
  body {
    font-size: 16px;
  }

  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    padding: 14px 20px;
  }

  .top-nav {
    width: 100%;
    justify-content: space-between;
    gap: 10px;
  }

  .hero,
  .section,
  .contact-band,
  .site-footer {
    padding-left: 20px;
    padding-right: 20px;
  }

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 29px;
  }

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

  .trust-strip,
  .service-grid,
  .steps,
  .location-list {
    grid-template-columns: 1fr;
  }

  .trust-strip {
    padding-left: 20px;
    padding-right: 20px;
  }

  .trust-strip article,
  .trust-strip article:nth-child(2),
  .trust-strip article:last-child {
    border-right: 0;
    border-top: 1px solid var(--line);
  }

  .trust-strip article:first-child {
    border-top: 0;
  }

  .contact-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
  }

  .contact-row strong {
    text-align: left;
  }
}
