:root {
  --paper: #f7f2e9;
  --paper-strong: #fffaf0;
  --ink: #202020;
  --charcoal: #292727;
  --charcoal-2: #171616;
  --muted: #665f56;
  --red: #b51f2a;
  --red-dark: #861923;
  --rust: #cf6d37;
  --line: rgba(32, 32, 32, 0.15);
  --light-line: rgba(255, 250, 240, 0.18);
  --white: #ffffff;
  --shadow: 0 22px 64px rgba(23, 22, 22, 0.2);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(181, 31, 42, 0.045) 1px, transparent 1px),
    linear-gradient(0deg, rgba(32, 32, 32, 0.035) 1px, transparent 1px),
    var(--paper);
  background-size: 44px 44px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

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

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

strong {
  font-weight: 900;
}

:focus-visible {
  outline: 3px solid var(--rust);
  outline-offset: 4px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  min-height: 76px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(84px, 0.32fr);
  align-items: center;
  gap: 18px;
  padding: 12px clamp(16px, 4vw, 56px);
  color: var(--paper-strong);
  background: rgba(23, 22, 22, 0.94);
  border-bottom: 4px solid var(--red);
}

.brand {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  display: grid;
  place-items: center;
  color: var(--paper-strong);
  background: var(--red);
  border: 2px solid rgba(255, 250, 240, 0.8);
  border-radius: 50%;
  font-weight: 950;
}

.brand strong,
.brand small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

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

.brand small {
  margin-top: 2px;
  color: rgba(255, 250, 240, 0.72);
  font-size: 0.8rem;
  font-weight: 800;
}

nav {
  display: flex;
  gap: clamp(14px, 3vw, 34px);
  color: rgba(255, 250, 240, 0.78);
  font-size: 0.93rem;
  font-weight: 850;
}

.header-call {
  justify-self: end;
  min-width: 76px;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  color: var(--paper-strong);
  background: var(--red);
  border-radius: var(--radius);
  font-weight: 950;
}

.hero {
  position: relative;
  min-height: calc(100vh - 76px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(296px, 430px);
  align-items: end;
  gap: clamp(18px, 3vw, 42px);
  padding: clamp(34px, 7vh, 72px) clamp(16px, 4vw, 56px);
  overflow: hidden;
  color: var(--paper-strong);
  background: var(--charcoal-2);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(23, 22, 22, 0.96) 0%, rgba(23, 22, 22, 0.82) 42%, rgba(23, 22, 22, 0.38) 100%),
    linear-gradient(0deg, rgba(23, 22, 22, 0.9) 0%, transparent 38%);
  pointer-events: none;
}

.hero-image {
  position: absolute;
  inset: 0;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 53% 46%;
  filter: saturate(0.86) contrast(1.08);
}

.hero-panel,
.hero-facts {
  position: relative;
  z-index: 2;
}

.hero-panel {
  max-width: 790px;
  padding-top: 58px;
}

.eyebrow,
.hero-facts span,
.status-strip span,
.proof-points span,
.score-label,
.hours-table span {
  display: block;
  margin-bottom: 10px;
  color: var(--rust);
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

h1 {
  max-width: 820px;
  margin-bottom: 22px;
  font-size: clamp(3rem, 6.4vw, 6.9rem);
  line-height: 0.94;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 650px;
  margin-bottom: 0;
  color: rgba(255, 250, 240, 0.84);
  font-size: clamp(1.06rem, 1.65vw, 1.28rem);
}

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

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 950;
  text-align: center;
  transition: transform 120ms ease, background-color 120ms ease, border-color 120ms ease;
}

.button:hover,
.header-call:hover,
.mobile-action-bar a:hover {
  transform: translateY(-1px);
}

.button.primary {
  color: var(--paper-strong);
  background: var(--red);
  box-shadow: 0 14px 30px rgba(181, 31, 42, 0.32);
}

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

.button.secondary {
  color: var(--charcoal-2);
  background: var(--paper-strong);
}

.button.quiet {
  color: var(--paper-strong);
  border-color: rgba(255, 250, 240, 0.4);
  background: rgba(255, 250, 240, 0.08);
}

.hero-facts {
  display: grid;
  gap: 12px;
  padding: 14px;
  background: rgba(255, 250, 240, 0.08);
  border: 1px solid var(--light-line);
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
}

.hero-facts div {
  padding: 16px;
  background: rgba(23, 22, 22, 0.55);
  border: 1px solid var(--light-line);
  border-radius: var(--radius);
}

.hero-facts strong {
  display: block;
  color: var(--paper-strong);
  font-size: clamp(1rem, 1.6vw, 1.14rem);
  line-height: 1.25;
}

.status-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 0 clamp(16px, 4vw, 56px);
  transform: translateY(-22px);
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.status-strip div {
  min-height: 118px;
  padding: 22px;
  background: var(--paper-strong);
}

.status-strip a,
.status-strip strong {
  display: block;
  color: var(--charcoal-2);
  font-size: clamp(1rem, 1.7vw, 1.22rem);
  line-height: 1.25;
}

.section {
  padding: clamp(54px, 8vw, 96px) clamp(16px, 4vw, 56px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(280px, 0.62fr);
  gap: clamp(20px, 5vw, 64px);
  align-items: end;
  margin-bottom: 26px;
}

.section-heading.compact {
  display: block;
  max-width: 760px;
}

.section-heading h2,
.proof-copy h2,
.visit-card h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 4.6rem);
  line-height: 1;
  letter-spacing: 0;
}

.section-heading p:not(.eyebrow),
.proof-copy p,
.visit-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.13rem);
}

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

.service-grid article {
  min-height: 252px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  background: var(--paper-strong);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.service-grid article span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: auto;
  color: var(--paper-strong);
  background: var(--charcoal);
  border-radius: 50%;
  font-size: 0.78rem;
  font-weight: 950;
}

.service-grid h3 {
  margin: 22px 0 10px;
  font-size: clamp(1.1rem, 1.7vw, 1.34rem);
  line-height: 1.12;
}

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

.proof-section {
  display: grid;
  grid-template-columns: minmax(220px, 0.34fr) minmax(0, 1fr);
  gap: clamp(18px, 4vw, 54px);
  align-items: stretch;
  padding: clamp(54px, 8vw, 88px) clamp(16px, 4vw, 56px);
  color: var(--paper-strong);
  background:
    linear-gradient(135deg, rgba(181, 31, 42, 0.22), transparent 42%),
    var(--charcoal-2);
}

.proof-score,
.proof-copy {
  border: 1px solid var(--light-line);
  border-radius: var(--radius);
}

.proof-score {
  min-height: 302px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 26px;
  background: var(--red);
}

.score-number {
  display: block;
  font-size: clamp(4rem, 9vw, 8rem);
  line-height: 0.88;
  font-weight: 950;
}

.score-label {
  margin-top: 18px;
  color: rgba(255, 250, 240, 0.78);
}

.proof-score a {
  width: fit-content;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  margin-top: 18px;
  padding: 0 14px;
  color: var(--charcoal-2);
  background: var(--paper-strong);
  border-radius: var(--radius);
  font-weight: 950;
}

.proof-copy {
  padding: clamp(24px, 5vw, 46px);
  background: rgba(255, 250, 240, 0.06);
}

.proof-copy p {
  max-width: 760px;
  margin-top: 20px;
  color: rgba(255, 250, 240, 0.78);
}

.proof-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 28px;
}

.proof-points div {
  min-height: 110px;
  padding: 18px;
  background: rgba(255, 250, 240, 0.08);
  border: 1px solid var(--light-line);
  border-radius: var(--radius);
}

.proof-points strong {
  display: block;
  margin-bottom: 8px;
  font-size: clamp(1.55rem, 3vw, 2.25rem);
  line-height: 1;
}

.proof-points span {
  margin-bottom: 0;
  color: rgba(255, 250, 240, 0.7);
}

.flow-section {
  padding: clamp(54px, 8vw, 92px) clamp(16px, 4vw, 56px);
}

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

.flow-list li {
  position: relative;
  min-height: 186px;
  padding: 22px 20px 22px 72px;
  background: var(--paper-strong);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  counter-increment: steps;
}

.flow-list li::before {
  content: counter(steps);
  position: absolute;
  top: 22px;
  left: 20px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: var(--paper-strong);
  background: var(--red);
  border-radius: 50%;
  font-size: 0.84rem;
  font-weight: 950;
}

.flow-list strong,
.flow-list span {
  display: block;
}

.flow-list strong {
  margin-bottom: 10px;
  font-size: 1.12rem;
  line-height: 1.18;
}

.flow-list span {
  color: var(--muted);
}

.visit-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 440px);
  gap: clamp(18px, 4vw, 44px);
  padding: clamp(54px, 8vw, 92px) clamp(16px, 4vw, 56px);
  background: var(--paper-strong);
  border-top: 1px solid var(--line);
}

.visit-card p {
  max-width: 680px;
  margin-top: 18px;
}

.visit-actions .secondary {
  border-color: var(--line);
  background: var(--paper);
}

.hours-table {
  align-self: start;
  background: var(--charcoal-2);
  border-radius: var(--radius);
  overflow: hidden;
}

.hours-table div {
  min-height: 58px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 13px 16px;
  color: var(--paper-strong);
  border-bottom: 1px solid var(--light-line);
}

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

.hours-table span {
  margin-bottom: 0;
  color: rgba(255, 250, 240, 0.62);
}

.hours-table strong {
  font-size: 0.95rem;
  text-align: right;
  white-space: nowrap;
}

.site-footer {
  min-height: 108px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 26px clamp(16px, 4vw, 56px);
  color: var(--paper-strong);
  background: var(--charcoal-2);
  border-top: 4px solid var(--red);
}

.site-footer strong,
.site-footer span {
  display: block;
}

.site-footer span {
  margin-top: 4px;
  color: rgba(255, 250, 240, 0.68);
}

.site-footer a {
  font-weight: 950;
}

.mobile-action-bar {
  display: none;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 48px;
  }

  .hero::before {
    background:
      linear-gradient(0deg, rgba(23, 22, 22, 0.96) 0%, rgba(23, 22, 22, 0.7) 60%, rgba(23, 22, 22, 0.52) 100%),
      linear-gradient(90deg, rgba(23, 22, 22, 0.8), transparent);
  }

  .hero-image img {
    object-position: 48% 42%;
  }

  .hero-panel {
    padding-top: 44px;
  }

  .status-strip,
  .service-grid,
  .proof-section,
  .flow-list,
  .visit-section,
  .section-heading {
    grid-template-columns: 1fr;
  }

  .status-strip {
    transform: none;
    margin-top: 16px;
  }

  .proof-points {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  body {
    padding-bottom: 66px;
  }

  .site-header {
    min-height: 68px;
    padding: 10px 14px;
  }

  .brand {
    gap: 9px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
    font-size: 0.86rem;
  }

  .brand strong {
    max-width: 176px;
    font-size: 0.92rem;
  }

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

  .header-call {
    min-width: 62px;
    min-height: 38px;
    padding: 0 12px;
  }

  .hero {
    min-height: calc(100vh - 68px);
    align-content: end;
    padding: 28px 14px 18px;
  }

  .hero-panel {
    padding-top: 78px;
  }

  h1 {
    font-size: clamp(2.3rem, 11.8vw, 3.05rem);
    line-height: 1.01;
  }

  .hero-copy {
    max-width: 34rem;
    font-size: 0.98rem;
    line-height: 1.42;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 9px;
    margin-top: 20px;
  }

  .hero-actions .quiet {
    display: none;
  }

  .button {
    width: 100%;
    min-height: 48px;
    padding: 0 12px;
  }

  .hero-facts {
    gap: 8px;
    padding: 8px;
  }

  .hero-facts div,
  .status-strip div,
  .service-grid article,
  .proof-copy,
  .proof-score,
  .flow-list li {
    padding: 16px;
  }

  .hero-facts strong {
    font-size: 0.96rem;
  }

  .status-strip,
  .section,
  .proof-section,
  .flow-section,
  .visit-section,
  .site-footer {
    margin-left: 0;
    margin-right: 0;
    padding-left: 14px;
    padding-right: 14px;
  }

  .status-strip {
    border-radius: 0;
    border-left: 0;
    border-right: 0;
  }

  .status-strip div {
    min-height: auto;
  }

  .section-heading h2,
  .proof-copy h2,
  .visit-card h2 {
    font-size: clamp(1.8rem, 9vw, 2.45rem);
  }

  .service-grid article {
    min-height: 206px;
  }

  .proof-section {
    gap: 12px;
  }

  .proof-score {
    min-height: 220px;
  }

  .score-number {
    font-size: clamp(4rem, 23vw, 5.8rem);
  }

  .flow-list li {
    min-height: auto;
    padding-left: 62px;
  }

  .flow-list li::before {
    left: 16px;
    top: 16px;
  }

  .hours-table div {
    grid-template-columns: 1fr;
    gap: 2px;
  }

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

  .site-footer {
    min-height: 130px;
    display: block;
  }

  .site-footer a {
    display: inline-block;
    margin-top: 14px;
  }

  .mobile-action-bar {
    position: fixed;
    z-index: 20;
    inset: auto 0 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 58px;
    background: var(--charcoal-2);
    border-top: 1px solid var(--light-line);
  }

  .mobile-action-bar a {
    display: grid;
    place-items: center;
    color: var(--paper-strong);
    font-weight: 950;
  }

  .mobile-action-bar a:first-child {
    background: var(--red);
  }
}

@media (max-width: 340px) {
  .brand strong {
    max-width: 142px;
  }

  .hero {
    padding-left: 12px;
    padding-right: 12px;
  }

  h1 {
    font-size: 2.34rem;
  }

  .eyebrow,
  .hero-facts span,
  .status-strip span,
  .proof-points span,
  .score-label,
  .hours-table span {
    font-size: 0.7rem;
  }
}

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