:root {
  --red: #d71920;
  --red-dark: #aa1017;
  --charcoal: #17191d;
  --text: #4a4f57;
  --muted: #6d737d;
  --line: #e5e7eb;
  --soft: #f6f7f8;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(23, 25, 29, .1);
  --radius: 8px;
  --header-height: 86px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--charcoal);
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 22px);
}

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

body {
  margin: 0;
  background: var(--white);
  color: var(--text);
  font-size: 16px;
  line-height: 1.65;
}

body.nav-open { overflow: hidden; }

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

a {
  color: var(--red-dark);
  text-decoration-thickness: .08em;
  text-underline-offset: .18em;
}

a:hover { color: var(--red); }

:focus-visible {
  outline: 3px solid rgba(215, 25, 32, .45);
  outline-offset: 3px;
}

h1, h2, h3 {
  margin: 0 0 .65rem;
  color: var(--charcoal);
  line-height: 1.08;
  font-weight: 780;
}

h1 { font-size: clamp(2.35rem, 7vw, 5.35rem); max-width: 10.8ch; }
h2 { font-size: clamp(2rem, 4.6vw, 3.7rem); max-width: 13ch; }
h3 { font-size: 1.2rem; }
p { margin: 0 0 1rem; }

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

.narrow {
  max-width: 820px;
  text-align: center;
}

.section {
  padding: clamp(64px, 9vw, 116px) 0;
}

.section-heading {
  margin-bottom: 2rem;
}

.section-heading h2 { max-width: 780px; }

.eyebrow {
  margin-bottom: .75rem;
  color: var(--red-dark);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 100;
  transform: translateY(-160%);
  background: var(--charcoal);
  color: var(--white);
  padding: .75rem 1rem;
}

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

.sr-only,
.hidden {
  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(255, 255, 255, .92);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(14px);
  transition: box-shadow .2s ease, border-color .2s ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 10px 30px rgba(23, 25, 29, .07);
}

.header-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  width: 154px;
  min-width: 136px;
}

.brand-lockup img {
  width: 100%;
  border-radius: 6px;
}

.primary-nav,
.privacy-nav {
  display: flex;
  align-items: center;
  gap: .2rem;
}

.nav-link,
.privacy-nav a:not(.btn),
.site-footer nav a {
  padding: .7rem .85rem;
  color: var(--charcoal);
  font-size: .95rem;
  font-weight: 650;
  text-decoration: none;
}

.nav-link:hover,
.privacy-nav a:not(.btn):hover,
.site-footer nav a:hover { color: var(--red-dark); }

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

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--charcoal);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: .78rem 1.1rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  text-decoration: none;
  line-height: 1.2;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(23, 25, 29, .12);
}

.btn-primary {
  background: var(--red);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--red-dark);
  color: var(--white);
}

.btn-secondary {
  border-color: #d8dce1;
  background: var(--white);
  color: var(--charcoal);
}

.hero {
  position: relative;
  overflow: hidden;
  --hero-x: 0;
  --hero-y: 0;
  min-height: calc(100vh - var(--header-height));
  display: grid;
  align-items: center;
  padding-top: 46px;
  background:
    linear-gradient(90deg, rgba(215,25,32,.07), transparent 32%),
    linear-gradient(180deg, #fff, #f8f9fa);
}

.hero::after {
  content: "";
  position: absolute;
  right: max(20px, 7vw);
  top: 18%;
  width: clamp(130px, 18vw, 260px);
  aspect-ratio: 1;
  border: 18px solid rgba(215, 25, 32, .08);
  border-radius: 8px;
  transform: translate(calc(var(--hero-x) * 22px), calc(var(--hero-y) * 22px)) rotate(8deg);
  transition: transform .18s ease-out;
  pointer-events: none;
}

.hero-grid,
.split-grid,
.contact-grid,
.local-panel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.hero-lede {
  max-width: 650px;
  color: #343941;
  font-size: clamp(1.05rem, 2vw, 1.22rem);
}

.hero-actions,
.contact-methods {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  margin: 1.5rem 0;
}

.direct-contact {
  display: grid;
  gap: .4rem;
  color: var(--muted);
  font-weight: 650;
}

.direct-contact a { font-weight: 850; }

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

.hero-media::before,
.local-panel::before {
  content: "";
  position: absolute;
  inset: 14px auto auto 14px;
  width: 76px;
  height: 76px;
  border-top: 6px solid var(--red);
  border-left: 6px solid var(--red);
  z-index: 2;
}

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

.intro { background: var(--white); }
.intro .narrow p:last-child { font-size: 1.12rem; }

.focus-grid,
.services-grid,
.process-grid {
  display: grid;
  gap: 1rem;
}

.focus-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 2.25rem;
}

.focus-card,
.service-card,
.benefit-grid article,
.process-grid article,
.simple-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 28px rgba(23, 25, 29, .05);
}

.motion-enabled [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity .55s ease,
    transform .55s cubic-bezier(.2, .7, .2, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.motion-enabled [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.motion-enabled .focus-card,
.motion-enabled .service-card,
.motion-enabled .benefit-grid article,
.motion-enabled .values-panel {
  transform: perspective(900px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg)) translateY(0);
  transition:
    transform .18s ease,
    box-shadow .18s ease,
    border-color .18s ease;
}

.motion-enabled .focus-card::after,
.motion-enabled .service-card::after,
.motion-enabled .benefit-grid article::after,
.motion-enabled .values-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at var(--shine-x, 50%) var(--shine-y, 50%), rgba(215, 25, 32, .13), transparent 34%);
  opacity: 0;
  transition: opacity .18s ease;
  pointer-events: none;
}

.motion-enabled .focus-card.is-lifted,
.motion-enabled .service-card.is-lifted,
.motion-enabled .benefit-grid article.is-lifted,
.motion-enabled .values-panel.is-lifted {
  border-color: rgba(215, 25, 32, .34);
  box-shadow: 0 20px 46px rgba(23, 25, 29, .13);
}

.motion-enabled .focus-card.is-lifted::after,
.motion-enabled .service-card.is-lifted::after,
.motion-enabled .benefit-grid article.is-lifted::after,
.motion-enabled .values-panel.is-lifted::after {
  opacity: 1;
}

.focus-card {
  padding: 1.35rem;
}

.icon-box,
.process-grid span {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 1rem;
  border-radius: 6px;
  background: var(--red);
  color: var(--white);
  font-weight: 850;
}

.split-section,
.services,
.contact {
  background: var(--soft);
}

.values-panel {
  position: relative;
  padding: clamp(1.25rem, 3vw, 2rem);
  border-left: 5px solid var(--red);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.value-list,
.service-card ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.value-list li {
  display: grid;
  gap: .15rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}

.value-list li:last-child { border-bottom: 0; }
.value-list strong { color: var(--charcoal); }

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

.service-card {
  padding: 1.35rem;
  display: flex;
  flex-direction: column;
  gap: .65rem;
}

.service-card li {
  position: relative;
  padding-left: 1rem;
  margin: .25rem 0;
}

.service-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .7em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
}

.service-card a {
  margin-top: auto;
  font-weight: 800;
}

.image-card {
  grid-row: span 2;
  padding: 0;
  overflow: hidden;
}

.image-card img {
  width: 100%;
  max-height: 360px;
  object-fit: cover;
}

.image-card div { padding: 1.35rem; }

.why {
  background: var(--charcoal);
  color: #d8dce1;
}

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

.why .eyebrow { color: #ff7378; }

.benefit-grid {
  display: grid;
  gap: .85rem;
}

.benefit-grid article {
  background: rgba(255, 255, 255, .06);
  border-color: rgba(255, 255, 255, .12);
  padding: 1.15rem;
  box-shadow: none;
}

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

.process-grid article {
  padding: 1.25rem;
  transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}

.process-grid article::before {
  content: "";
  position: absolute;
  inset: auto 1.25rem 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .45s ease;
}

.process-grid article.is-current {
  border-color: rgba(215, 25, 32, .55);
  box-shadow: 0 18px 36px rgba(23, 25, 29, .1);
  transform: translateY(-4px);
}

.process-grid article.is-complete span,
.process-grid article.is-current span {
  background: var(--red-dark);
}

.process-grid article.is-current::before,
.process-grid article.is-complete::before {
  transform: scaleX(1);
}

.local-panel {
  position: relative;
  padding: clamp(1rem, 3vw, 1.5rem);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.local-panel img {
  width: 100%;
  max-height: 460px;
  border-radius: var(--radius);
  object-fit: cover;
}

.relocation-notice {
  display: grid;
  gap: .25rem;
  margin-bottom: 2rem;
  padding: 1rem 1.2rem;
  border-left: 5px solid var(--red);
  border-radius: var(--radius);
  background: #fff4f4;
}

.relocation-notice strong {
  color: var(--red-dark);
  font-size: 1.05rem;
}

address {
  margin: 1.25rem 0;
  font-style: normal;
  color: var(--charcoal);
  font-weight: 650;
}

.contact-list {
  display: grid;
  gap: .85rem;
  margin: 1.5rem 0 0;
}

.contact-list div {
  display: grid;
  gap: .15rem;
}

.contact-list dt {
  color: var(--muted);
  font-size: .85rem;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-list dd { margin: 0; overflow-wrap: anywhere; }

.contact-form {
  position: relative;
  overflow: hidden;
  --form-progress: 0%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  padding: clamp(1rem, 3vw, 1.5rem);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.contact-form::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: var(--form-progress);
  height: 4px;
  background: linear-gradient(90deg, var(--red), var(--red-dark));
  transition: width .25s ease;
}

.form-field,
.consent {
  display: grid;
  gap: .35rem;
  transition: transform .18s ease, background .18s ease;
}

.form-field.is-focused,
.consent.is-focused {
  transform: translateY(-2px);
}

.form-field.is-filled label,
.consent.is-filled label {
  color: var(--red-dark);
}

.full { grid-column: 1 / -1; }

label {
  color: var(--charcoal);
  font-weight: 750;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid #cfd4da;
  border-radius: var(--radius);
  padding: .75rem .85rem;
  color: var(--charcoal);
  font: inherit;
  background: var(--white);
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(215, 25, 32, .65);
  box-shadow: 0 0 0 4px rgba(215, 25, 32, .1);
}

textarea { resize: vertical; }
input[aria-invalid="true"],
select[aria-invalid="true"],
textarea[aria-invalid="true"] { border-color: var(--red); }

.field-error,
.form-status {
  min-height: 1.2rem;
  margin: 0;
  color: var(--red-dark);
  font-size: .9rem;
}

.consent {
  grid-template-columns: 20px 1fr;
  align-items: start;
}

.consent input {
  min-height: auto;
  margin-top: .35rem;
}

.consent .field-error { grid-column: 2; }

.site-footer {
  padding: 48px 0 24px;
  background: #111316;
  color: #d9dde2;
}

.site-footer a { color: var(--white); }
.site-footer img { width: 158px; border-radius: 6px; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr .8fr 1fr;
  gap: 2rem;
}

.site-footer nav {
  display: grid;
  align-content: start;
}

.site-footer nav a { color: #d9dde2; padding: .25rem 0; }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,.16);
}

.policy-page,
.simple-page {
  min-height: 100vh;
  padding: 120px 0 64px;
  background: var(--soft);
}

.policy-content,
.simple-card {
  max-width: 860px;
  padding: clamp(1.25rem, 4vw, 3rem);
  background: var(--white);
  border-radius: var(--radius);
}

.policy-content h1 { max-width: 14ch; }
.policy-content h2 { margin-top: 2rem; font-size: 1.55rem; }
.simple-page .brand-lockup { margin: 0 auto 1.5rem; }
.simple-card { margin-inline: auto; }

@media (max-width: 980px) {
  :root { --header-height: 74px; }
  .brand-lockup { width: 128px; }
  .nav-toggle { display: inline-block; }
  .primary-nav {
    position: fixed;
    inset: var(--header-height) 0 auto 0;
    display: grid;
    align-content: start;
    gap: .25rem;
    min-height: calc(100vh - var(--header-height));
    padding: 1rem;
    background: var(--white);
    border-top: 1px solid var(--line);
    transform: translateX(100%);
    transition: transform .2s ease;
  }
  .primary-nav[data-open="true"] { transform: translateX(0); }
  .nav-link { padding: 1rem; font-size: 1.1rem; }
  .nav-action { width: 100%; }
  .hero-grid,
  .split-grid,
  .contact-grid,
  .local-panel {
    grid-template-columns: 1fr;
  }
  .hero { min-height: auto; }
  h1 { max-width: 12ch; }
  h2 { max-width: 16ch; }
  .focus-grid,
  .process-grid,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 680px) {
  .container { width: min(100% - 24px, 1120px); }
  .section { padding: 56px 0; }
  h1 { font-size: clamp(2.15rem, 14vw, 3.6rem); }
  h2 { font-size: clamp(1.85rem, 10vw, 2.7rem); }
  .hero-actions,
  .contact-methods,
  .footer-bottom {
    align-items: stretch;
    flex-direction: column;
  }
  .btn { width: 100%; }
  .focus-grid,
  .services-grid,
  .process-grid,
  .contact-form,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .privacy-nav a:not(.btn) { display: none; }
  .contact-form { padding: 1rem; }
}

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