:root {
  --ink: #111214;
  --text: #3d4147;
  --muted: #73777f;
  --line: #e7e2d9;
  --paper: #fbfaf7;
  --soft: #f2f0eb;
  --dark: #0c0d0f;
  --accent: #b7a17b;
  --accent-dark: #6f614a;
  --trust: #284653;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(17, 18, 20, .10);
  --soft-shadow: 0 12px 34px rgba(17, 18, 20, .07);
}

* {
  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", Arial, sans-serif;
  line-height: 1.6;
}

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

a {
  color: inherit;
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  top: -80px;
  left: 16px;
  z-index: 30;
  padding: 10px 14px;
  background: var(--accent);
  color: var(--ink);
  font-weight: 700;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(12, 13, 15, .92);
  border-bottom: 1px solid rgba(255, 255, 255, .10);
  box-shadow: 0 12px 34px rgba(0, 0, 0, .18);
  backdrop-filter: blur(16px);
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  color: var(--white);
  min-width: 232px;
}

.brand-logo {
  width: 76px;
  height: 52px;
  object-fit: cover;
  object-position: center;
  background: var(--dark);
  border: 1px solid rgba(255, 255, 255, .14);
  box-shadow: 0 8px 20px rgba(0, 0, 0, .28);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1.02rem;
  line-height: 1.1;
}

.brand small {
  color: rgba(255, 255, 255, .68);
  font-size: .78rem;
  line-height: 1.2;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-left: auto;
}

.site-nav a {
  padding: 10px 12px;
  color: rgba(255, 255, 255, .78);
  text-decoration: none;
  font-weight: 700;
  font-size: .94rem;
}

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

.header-call {
  flex: 0 0 auto;
  padding: 11px 16px;
  background: var(--white);
  color: var(--ink);
  text-decoration: none;
  font-weight: 800;
  box-shadow: 0 12px 24px rgba(0, 0, 0, .22);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  margin-left: auto;
  border: 1px solid rgba(255, 255, 255, .18);
  background: rgba(255, 255, 255, .08);
  padding: 10px;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--white);
}

.hero {
  position: relative;
  min-height: calc(100svh - 78px);
  display: grid;
  align-items: end;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  background-image: url("assets/twoguns-truck.jpg");
  background-size: cover;
  background-position: 48% 36%;
  transform: scale(1.02);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(23, 23, 23, .88), rgba(23, 23, 23, .58) 46%, rgba(23, 23, 23, .16)),
    radial-gradient(circle at 26% 42%, rgba(183, 161, 123, .18), transparent 34%),
    linear-gradient(0deg, rgba(23, 23, 23, .72), rgba(23, 23, 23, .1) 60%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: clamp(74px, 12vw, 132px) 0 46px;
  color: var(--white);
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--accent);
  text-transform: uppercase;
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .08em;
}

.hero h1,
.page-hero h1 {
  max-width: 780px;
  margin: 0;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.45rem, 6.4vw, 5.5rem);
  line-height: .98;
  letter-spacing: 0;
}

.hero-copy,
.page-hero p {
  max-width: 650px;
  margin: 22px 0 0;
  font-size: clamp(1.06rem, 2vw, 1.3rem);
  color: rgba(255, 255, 255, .9);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 900;
  line-height: 1.2;
}

.button-primary {
  background: var(--accent);
  color: var(--ink);
  border-color: var(--accent);
  box-shadow: 0 14px 30px rgba(0, 0, 0, .18);
}

.button-primary:hover {
  background: var(--white);
  border-color: var(--white);
}

.button-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, .42);
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(10px);
}

.button-secondary:hover {
  background: var(--white);
  color: var(--ink);
}

.button-dark {
  background: var(--ink);
  color: var(--white);
  box-shadow: var(--soft-shadow);
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  width: min(820px, 100%);
  margin: 46px 0 0;
  padding: 0;
}

.hero-points div {
  padding: 18px;
  background: rgba(12, 13, 15, .58);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 8px;
  backdrop-filter: blur(12px);
}

.hero-points dt {
  font-weight: 900;
  color: var(--white);
}

.hero-points dd {
  margin: 2px 0 0;
  color: rgba(255, 255, 255, .86);
}

.notice-band {
  background: var(--white);
  color: var(--ink);
  border-bottom: 1px solid var(--line);
}

.notice-inner {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  padding: 17px 0;
  text-align: center;
}

.section {
  padding: clamp(64px, 8vw, 104px) 0;
}

.muted-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .58), rgba(255, 255, 255, 0)),
    var(--soft);
}

.two-column,
.local-layout,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .78fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
}

.intro-section h2,
.section-heading h2,
.local-section h2,
.cta-section h2,
.two-column h2 {
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.04;
  letter-spacing: 0;
}

.two-column p,
.local-layout p,
.section-heading p {
  font-size: 1.05rem;
}

.quote-panel {
  padding: 30px;
  background: linear-gradient(180deg, var(--white), #f8f6f0);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.quote-panel h3 {
  margin: 0 0 16px;
  color: var(--ink);
  font-size: 1.35rem;
}

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

.check-list li {
  position: relative;
  padding-left: 26px;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: .55em;
  left: 0;
  width: 9px;
  height: 9px;
  background: var(--accent);
  border: 2px solid var(--white);
  box-shadow: 0 0 0 1px var(--accent-dark);
}

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

.section-heading.compact {
  max-width: 680px;
}

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

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

.service-card,
.content-grid > div,
.contact-card {
  min-height: 100%;
  padding: 26px;
  background: rgba(255, 255, 255, .78);
  border: 1px solid rgba(231, 226, 217, .9);
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
}

.service-card h3,
.content-grid h3,
.contact-card h2 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 1.18rem;
}

.service-card p,
.content-grid p,
.contact-card p {
  margin: 0;
}

.process-section {
  background:
    linear-gradient(135deg, rgba(40, 70, 83, .34), transparent 42%),
    var(--dark);
  color: rgba(255, 255, 255, .82);
}

.process-section h2,
.process-section h3 {
  color: var(--white);
}

.process-section .content-grid > div {
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .14);
  box-shadow: none;
}

.process-section .content-grid p {
  color: rgba(255, 255, 255, .82);
}

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

.steps li {
  padding: 28px;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 8px;
}

.steps span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 24px;
  background: rgba(183, 161, 123, .18);
  color: var(--white);
  border: 1px solid rgba(183, 161, 123, .65);
  font-weight: 900;
}

.steps h3 {
  margin: 0 0 8px;
}

.steps p {
  margin: 0;
}

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

.area-list li {
  padding: 14px 16px;
  background: rgba(255, 255, 255, .72);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 800;
  box-shadow: var(--soft-shadow);
}

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

.text-link {
  color: var(--trust);
  font-weight: 900;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

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

.faq-list details {
  background: rgba(255, 255, 255, .82);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
}

.faq-list summary {
  cursor: pointer;
  padding: 18px 20px;
  color: var(--ink);
  font-weight: 900;
}

.faq-list p {
  margin: 0;
  padding: 0 20px 20px;
}

.cta-section {
  padding: 54px 0;
  background:
    linear-gradient(135deg, rgba(183, 161, 123, .18), transparent 44%),
    var(--trust);
  color: var(--white);
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cta-inner h2,
.cta-inner p {
  color: var(--white);
}

.cta-inner h2 {
  margin: 0;
}

.cta-inner p {
  margin: 8px 0 0;
}

.site-footer {
  padding: 46px 0;
  background: var(--dark);
  color: rgba(255, 255, 255, .76);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr .8fr .8fr;
  gap: 32px;
}

.site-footer a {
  color: var(--white);
}

.footer-brand {
  color: var(--white);
}

.footer-brand .brand-logo {
  width: 88px;
  height: 60px;
}

.footer-brand small {
  color: rgba(255, 255, 255, .68);
}

.site-footer h2 {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: .95rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.site-footer p {
  margin: 0 0 8px;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 40;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 56px;
  padding: 12px 18px 12px 13px;
  background: #146c43;
  color: #ffffff;
  border-radius: 999px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, .24);
  text-decoration: none;
  font-weight: 900;
  line-height: 1;
}

.whatsapp-float:hover {
  background: #0f5132;
  color: #ffffff;
}

.whatsapp-icon {
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, .28);
  border-radius: 50%;
}

.whatsapp-icon svg {
  width: 25px;
  height: 25px;
  display: block;
  fill: currentColor;
}

.whatsapp-label {
  white-space: nowrap;
}

.page-hero {
  position: relative;
  min-height: 460px;
  display: grid;
  align-items: end;
  background:
    linear-gradient(90deg, rgba(12, 13, 15, .92), rgba(12, 13, 15, .52)),
    radial-gradient(circle at 26% 42%, rgba(183, 161, 123, .16), transparent 34%),
    url("assets/twoguns-truck.jpg");
  background-size: cover;
  background-position: 50% 36%;
  color: var(--white);
}

.page-hero-inner {
  padding: 96px 0 64px;
}

.contact-layout {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.contact-card h2 a {
  text-decoration-thickness: 3px;
  text-underline-offset: 5px;
}

.redirect-page {
  min-height: 100svh;
  display: grid;
  place-content: center;
  padding: 24px;
  text-align: center;
}

@media (max-width: 880px) {
  .header-inner {
    min-height: 68px;
  }

  .brand {
    min-width: 0;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 8px 16px 16px;
    background: rgba(12, 13, 15, .98);
    border-bottom: 1px solid rgba(255, 255, 255, .12);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .10);
  }

  .header-call {
    display: none;
  }

  .hero {
    min-height: calc(100svh - 68px);
  }

  .hero-shade {
    background:
      linear-gradient(0deg, rgba(23, 23, 23, .92), rgba(23, 23, 23, .3) 60%),
      linear-gradient(90deg, rgba(23, 23, 23, .55), rgba(23, 23, 23, .08));
  }

  .hero-content {
    padding-top: clamp(96px, 18svh, 150px);
    padding-bottom: 26px;
  }

  .page-hero {
    min-height: auto;
    align-items: start;
    background-position: 54% 28%;
  }

  .page-hero-inner {
    padding: 42px 0 34px;
  }

  .page-hero p {
    margin-top: 14px;
  }

  .hero-points,
  .steps,
  .service-grid,
  .content-grid,
  .two-column,
  .local-layout,
  .contact-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .notice-inner,
  .cta-inner {
    display: block;
  }

  .cta-actions {
    margin-top: 22px;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 24px, 1120px);
  }

  .brand-logo {
    width: 64px;
    height: 44px;
  }

  .brand strong {
    font-size: .98rem;
  }

  .brand small {
    font-size: .72rem;
  }

  .hero {
    min-height: calc(100svh - 68px);
  }

  .hero-media {
    background-position: 54% 24%;
  }

  .hero-content {
    padding-top: clamp(80px, 15svh, 130px);
    padding-bottom: 22px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(2rem, 9.7vw, 3rem);
    line-height: 1.02;
  }

  .page-hero .eyebrow {
    margin-bottom: 8px;
  }

  .hero .eyebrow {
    margin-bottom: 8px;
  }

  .hero-copy {
    margin-top: 14px;
  }

  .hero-actions {
    margin-top: 20px;
  }

  .page-hero .hero-actions {
    margin-top: 18px;
  }

  .hero-points {
    margin-top: 22px;
  }

  .hero-points div,
  .quote-panel,
  .service-card,
  .content-grid > div,
  .contact-card,
  .steps li {
    padding: 20px;
  }

  .area-list {
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    width: 58px;
    height: 58px;
    min-height: 58px;
    padding: 0;
    justify-content: center;
  }

  .whatsapp-icon {
    width: 34px;
    height: 34px;
  }

  .whatsapp-label {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }
}
