:root {
  --red: #C8102E;
  --red-dark: #9C0C24;
  --black: #141414;
  --ink: #1c1c1c;
  --muted: #63666b;
  --line: #e7e7e7;
  --soft: #f6f6f6;
  --white: #ffffff;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
  --radius: 18px;
  --container: 1180px;
  --display: "Zilla Slab", "Rockwell", serif;
  --body: "Archivo", "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body {
  margin: 0;
  font-family: var(--body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.55;
}

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

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

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

.section-pad {
  padding: 88px 0;
}

.section {
  position: relative;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -50px;
  background: var(--black);
  color: var(--white);
  padding: 10px 14px;
  z-index: 100;
}

.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;
}

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 3px solid var(--red);
}

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

.brand-stack {
  display: inline-flex;
  flex-direction: column;
  line-height: 1.05;
}

.wordmark {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.18rem, 2.6vw, 1.5rem);
  letter-spacing: 0.01em;
  color: var(--black);
  text-transform: uppercase;
  white-space: nowrap;
}

.tagline {
  font-family: var(--body);
  font-weight: 600;
  font-size: clamp(0.49rem, 1.1vw, 0.63rem);
  letter-spacing: 0.205em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
  margin-top: 3px;
}

.wordmark .i,
.footer-wordmark .i {
  color: var(--red);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.site-nav a {
  position: relative;
  padding: 6px 0;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-call {
  min-height: 42px;
  padding: 0 22px;
  background: var(--red);
  color: var(--white);
}

.btn-call:hover,
.btn-call:focus-visible {
  background: var(--red-dark);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  padding: 10px;
  cursor: pointer;
}

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

/* ---------- Type ---------- */

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 700;
  color: var(--black);
}

h1 {
  max-width: 850px;
  margin-bottom: 22px;
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: -0.015em;
}

h1 em {
  font-style: normal;
  color: var(--red);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(1.9rem, 3.6vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.3rem;
  line-height: 1.2;
}

.lead {
  max-width: 700px;
  color: #3a3a3a;
  font-size: clamp(1.08rem, 2vw, 1.3rem);
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 26px;
  border: 2px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.92rem;
  cursor: pointer;
  font-family: var(--body);
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 14px 34px rgba(200, 16, 46, 0.24);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--red-dark);
}

.btn-secondary {
  background: var(--white);
  color: var(--black);
  border-color: var(--black);
}

/* ---------- Hero ---------- */

.hero {
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 8%, rgba(200, 16, 46, 0.1), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f7f7f7 100%);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.7fr);
  align-items: center;
  gap: 52px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 32px 0 26px;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  color: #333;
  font-size: 0.84rem;
  font-weight: 600;
}

.hero-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.quote-box {
  padding: 34px 30px;
  background: var(--black);
  color: var(--white);
  border-top: 6px solid var(--red);
}

.quote-box h2 {
  margin-bottom: 12px;
  color: var(--white);
  font-size: 1.6rem;
  letter-spacing: -0.01em;
}

.quote-box p {
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.78);
}

.quote-link {
  font-weight: 800;
  color: var(--white);
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-bottom: 2px solid var(--red);
  padding-bottom: 3px;
}

.quote-link:hover,
.quote-link:focus-visible {
  color: #ffd2da;
}

/* ---------- Red ribbon ---------- */

.ribbon {
  background: var(--red);
  color: var(--white);
  padding: 16px 0;
}

.ribbon-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: baseline;
  gap: 8px 14px;
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(1rem, 2vw, 1.2rem);
  letter-spacing: 0.02em;
  text-align: center;
}

.ribbon .dot {
  opacity: 0.6;
}

/* ---------- Intro band / standards ---------- */

.intro-band {
  padding: 64px 0;
  background: var(--black);
  color: rgba(255, 255, 255, 0.74);
}

.intro-band h2 {
  color: var(--white);
  margin-bottom: 0;
}

.split {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: center;
  gap: 42px;
}

.split p:last-child {
  margin-bottom: 0;
  font-size: 1.08rem;
}

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

.standards li {
  padding: 20px 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-left: 4px solid var(--red);
  border-radius: 10px;
  display: grid;
  gap: 4px;
}

.standards strong {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.standards span {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.62);
}

/* ---------- Sections / cards ---------- */

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

.section-head p:last-child {
  color: var(--muted);
  font-size: 1.08rem;
}

.section-head.compact {
  max-width: 660px;
}

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

.card {
  min-height: 210px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.04);
}

.card::before {
  content: "";
  display: block;
  width: 44px;
  height: 4px;
  margin-bottom: 22px;
  background: var(--red);
}

.card p {
  margin-bottom: 0;
  color: var(--muted);
}

.warning-card {
  background: var(--black);
  color: rgba(255, 255, 255, 0.76);
}

.warning-card h3 {
  color: var(--white);
}

.warning-card p {
  color: rgba(255, 255, 255, 0.76);
}

/* ---------- Process ---------- */

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

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

.steps article {
  padding: 32px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
}

.steps span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-weight: 800;
  font-family: var(--display);
}

.steps p {
  margin-bottom: 0;
  color: var(--muted);
}

/* ---------- Hours ---------- */

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

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

.hours-grid p {
  max-width: 560px;
  color: var(--muted);
  font-size: 1.08rem;
}

.hours-card {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(200, 16, 46, 0.07), transparent 42%),
    var(--white);
  box-shadow: var(--shadow);
}

.hours-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 20px 18px;
  border-bottom: 1px solid var(--line);
}

.hours-row:last-child {
  border-bottom: 0;
}

.hours-row span {
  color: var(--muted);
  font-weight: 700;
}

.hours-row strong {
  color: var(--black);
  font-size: 1.05rem;
  text-align: right;
}

.hours-row.strong {
  border-radius: 12px;
  background: var(--black);
}

.hours-row.strong span,
.hours-row.strong strong {
  color: var(--white);
}

.hours-row.muted strong {
  color: var(--red);
}

/* ---------- Service area ---------- */

.service-area {
  padding: 30px 0;
  background: var(--red);
  color: var(--white);
}

.service-area-inner {
  display: flex;
  gap: 16px;
  align-items: baseline;
}

.service-area strong {
  font-family: var(--display);
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.service-area span {
  line-height: 1.7;
}

/* ---------- Contact ---------- */

.contact {
  background:
    linear-gradient(90deg, #ffffff 0%, #ffffff 52%, #f5f5f5 52%, #f5f5f5 100%);
}

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

.contact p {
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 480px;
}

.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
  font-weight: 700;
}

.contact-list a {
  color: var(--red);
}

.contact-list a:hover,
.contact-list a:focus-visible {
  color: var(--red-dark);
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 30px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 6px solid var(--red);
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 8px;
  color: #333;
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

input,
textarea {
  width: 100%;
  border: 1px solid #d6d6d6;
  border-radius: 10px;
  padding: 14px 15px;
  font: inherit;
  color: var(--ink);
  background: var(--white);
}

input:focus,
textarea:focus {
  outline: 3px solid rgba(200, 16, 46, 0.18);
  border-color: var(--red);
}

textarea {
  resize: vertical;
}

.form-note {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.92rem !important;
}

/* ---------- Brand band ---------- */

.brand-band {
  padding: 56px 0;
  background: var(--white);
  border-top: 1px solid var(--line);
}

.brand-band-inner {
  display: flex;
  justify-content: center;
}

.brand-band img {
  width: min(560px, 88%);
  height: auto;
  margin: 0 auto;
}

/* ---------- Footer ---------- */

.site-footer {
  padding: 52px 0 56px;
  background: var(--black);
  color: rgba(255, 255, 255, 0.72);
  border-top: 6px solid var(--red);
}

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

.footer-wordmark {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.35rem;
  text-transform: uppercase;
  color: var(--white);
  margin: 0 0 14px;
  letter-spacing: 0.01em;
}

.footer-tagline {
  font-size: 0.71rem;
  font-weight: 600;
  letter-spacing: 0.225em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin: -8px 0 16px !important;
}

.footer-credit {
  color: var(--white);
  font-weight: 700;
}

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

.site-footer strong {
  color: var(--white);
  font-weight: 800;
}

.footer-meta a:hover,
.footer-meta a:focus-visible {
  color: var(--white);
}

.footer-fine {
  margin-top: 18px;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.5);
}

.mobile-cta {
  display: none;
}

/* ---------- Responsive ---------- */

@media (max-width: 920px) {
  .section-pad {
    padding: 66px 0;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    left: 18px;
    right: 18px;
    top: calc(100% + 10px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    padding: 14px 12px;
    border-radius: 10px;
  }

  .site-nav a:hover,
  .site-nav a:focus-visible {
    background: var(--soft);
  }

  .site-nav a::after {
    display: none;
  }

  .hero-grid,
  .split,
  .hours-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 34px;
  }

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

  .standards {
    grid-template-columns: 1fr 1fr;
  }

  .contact {
    background: var(--white);
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .nav-wrap {
    min-height: 68px;
  }

  .wordmark {
    font-size: 1.02rem;
  }

  .btn-call {
    min-height: 38px;
    padding: 0 16px;
    font-size: 0.84rem;
  }

  .section-pad {
    padding: 54px 0;
  }

  h1 {
    font-size: clamp(2.3rem, 11vw, 3.4rem);
  }

  h2 {
    font-size: clamp(1.75rem, 8.5vw, 2.5rem);
  }

  .hero-actions,
  .trust-strip {
    display: grid;
  }

  .btn {
    width: 100%;
  }

  .btn-call {
    width: auto;
  }

  .cards,
  .steps,
  .standards {
    grid-template-columns: 1fr;
  }

  .card,
  .steps article,
  .contact-form {
    padding: 24px;
  }

  .hours-card {
    padding: 12px;
  }

  .hours-row {
    display: grid;
    gap: 4px;
    padding: 18px 14px;
  }

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

  .service-area-inner {
    display: block;
  }

  .service-area strong {
    display: block;
    margin-bottom: 8px;
  }

  .site-footer {
    padding-bottom: 100px;
  }

  .mobile-cta {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 60;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 999px;
    background: rgba(20, 20, 20, 0.92);
    box-shadow: var(--shadow);
    backdrop-filter: blur(12px);
  }

  .mobile-cta a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    border-radius: 999px;
    background: var(--red);
    color: var(--white);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: 0.9rem;
  }

  .mobile-cta a:first-child {
    background: var(--white);
    color: var(--black);
  }
}
