:root {
  --ink: #16222c;
  --ink-soft: #263541;
  --paper: #ffffff;
  --mist: #f2f5f6;
  --red: #bc3d32;
  --gold: #e8ae25;
  --blue: #169fda;
  --line: #d9e0e4;
  --shadow: 0 20px 55px rgb(14 26 36 / 15%);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
}
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.skip-link {
  position: fixed;
  left: 1rem;
  top: -4rem;
  z-index: 100;
  padding: .75rem 1rem;
  color: var(--paper);
  background: var(--ink);
}
.skip-link:focus { top: 1rem; }

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1180px, calc(100% - 3rem));
  margin: 0 auto;
  padding: 1.25rem 0;
  color: var(--paper);
}
.brand { display: inline-flex; align-items: center; gap: .75rem; text-decoration: none; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border: 2px solid rgb(255 255 255 / 78%);
  font-size: .74rem;
  font-weight: 900;
  letter-spacing: .11em;
}
.brand-name { font-weight: 750; letter-spacing: -.01em; }
.header-actions { display: flex; align-items: center; gap: 1.25rem; }
.text-link { font-weight: 700; text-underline-offset: .25rem; }

.hero {
  position: relative;
  min-height: min(820px, 94svh);
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--paper);
  background: var(--ink);
}
.hero-image, .hero-shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-image { object-fit: cover; object-position: 64% center; }
.hero-shade { background: linear-gradient(90deg, rgb(8 18 27 / 89%) 0%, rgb(8 18 27 / 68%) 38%, rgb(8 18 27 / 5%) 72%); }
.hero-content {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 3rem));
  margin: 0 auto;
  padding: 9rem 0 5rem;
}
.hero-content > * { max-width: 43rem; }
.eyebrow {
  margin: 0 0 .9rem;
  color: var(--red);
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.eyebrow-light { color: var(--gold); }
h1, h2, h3 { margin: 0; line-height: 1.06; letter-spacing: -.04em; }
h1 { font-size: clamp(3rem, 7vw, 6.5rem); max-width: 12ch !important; }
h2 { font-size: clamp(2.25rem, 4vw, 4rem); }
h3 { font-size: 1.65rem; }
.hero-copy { margin: 1.5rem 0 2rem; font-size: clamp(1.08rem, 2vw, 1.3rem); color: rgb(255 255 255 / 82%); }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 1.2rem 1.6rem; }
.button {
  display: inline-flex;
  min-height: 3.5rem;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 0;
  padding: .9rem 1.35rem;
  color: var(--paper);
  background: var(--red);
  font-weight: 850;
  letter-spacing: .035em;
  text-decoration: none;
  cursor: pointer;
  transition: transform .18s ease, background-color .18s ease;
}
.button:hover { background: #a93229; transform: translateY(-2px); }
.button:focus-visible, a:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
}
.button-small { min-height: 2.75rem; padding: .55rem 1rem; }
.phone-link { color: var(--blue); font-size: clamp(1.35rem, 3vw, 2.1rem); font-weight: 900; text-decoration-thickness: .09em; text-underline-offset: .2em; }

.service-strip {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  min-height: 4.5rem;
  padding: 1rem 1.5rem;
  color: rgb(255 255 255 / 84%);
  background: var(--ink);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-align: center;
  text-transform: uppercase;
}
.service-strip span[aria-hidden="true"] { color: var(--gold); }

.section { width: min(1120px, calc(100% - 3rem)); margin: 0 auto; padding: clamp(5rem, 10vw, 9rem) 0; }
.section-heading { max-width: 48rem; margin: 0 auto 3rem; text-align: center; }
.section-heading > p:last-child { max-width: 42rem; margin: 1.2rem auto 0; color: #5e6a71; font-size: 1.1rem; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.service-card {
  position: relative;
  min-height: 22rem;
  overflow: hidden;
  color: var(--paper);
  background: var(--ink);
  box-shadow: var(--shadow);
}
.service-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}
.service-card:hover img { transform: scale(1.035); }
.service-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgb(10 21 30 / 2%) 20%, rgb(10 21 30 / 92%) 100%);
}
.service-overlay-red { background: linear-gradient(180deg, rgb(56 17 18 / 2%) 20%, rgb(75 24 24 / 94%) 100%); }
.service-overlay-gold { background: linear-gradient(180deg, rgb(43 32 6 / 2%) 20%, rgb(48 35 8 / 94%) 100%); }
.service-content {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
}
.service-card p { margin: .9rem 0 0; color: rgb(255 255 255 / 78%); }
.service-number {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  display: grid;
  place-items: center;
  width: 2.7rem;
  height: 2.7rem;
  border: 1px solid rgb(255 255 255 / 56%);
  background: rgb(10 21 30 / 35%);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .12em;
  backdrop-filter: blur(8px);
}

.parcel-section {
  display: grid;
  grid-template-columns: 1.15fr 1fr auto;
  align-items: end;
  gap: 3rem;
  border-top: 1px solid var(--line);
}
.parcel-section > p { margin: 0; color: #5e6a71; font-size: 1.08rem; }
.inline-action { font-weight: 850; text-underline-offset: .3rem; white-space: nowrap; }

.quote-section {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  background: var(--ink);
}
.contact-panel, .quote-form { padding: clamp(3rem, 7vw, 6rem); }
.contact-panel { color: var(--paper); background: var(--ink); }
.contact-panel > p:not(.eyebrow) { max-width: 38rem; color: rgb(255 255 255 / 72%); }
.contact-list { margin: 2.5rem 0 0; }
.contact-list div { padding: 1rem 0; border-top: 1px solid rgb(255 255 255 / 14%); }
.contact-list dt { color: rgb(255 255 255 / 55%); font-size: .75rem; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; }
.contact-list dd { margin: .3rem 0 0; font-size: 1.02rem; }
.contact-list a { color: var(--paper); text-underline-offset: .2rem; }

.quote-form { background: var(--mist); }
.quote-form label { display: block; margin: 1.1rem 0 .4rem; font-weight: 750; }
.quote-form input, .quote-form select, .quote-form textarea {
  width: 100%;
  min-height: 3.25rem;
  border: 1px solid #cbd4d9;
  border-radius: 0;
  padding: .8rem .9rem;
  color: var(--ink);
  background: var(--paper);
}
.quote-form textarea { resize: vertical; }
.quote-form .button { margin-top: 1.35rem; }
.form-note { margin: .8rem 0 0; color: #647179; font-size: .85rem; }

footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.4rem max(1.5rem, calc((100% - 1120px) / 2));
  color: rgb(255 255 255 / 58%);
  background: #10171d;
  font-size: .88rem;
}
footer a { color: var(--paper); }

@media (max-width: 860px) {
  .brand-name, .header-actions .text-link { display: none; }
  .site-header, .hero-content, .section { width: min(100% - 2rem, 42rem); }
  .hero { min-height: 46rem; align-items: end; }
  .hero-image { object-position: 70% center; }
  .hero-shade { background: linear-gradient(0deg, rgb(8 18 27 / 96%) 0%, rgb(8 18 27 / 72%) 55%, rgb(8 18 27 / 12%) 100%); }
  .hero-content { padding: 8rem 0 3.5rem; }
  h1 { font-size: clamp(2.7rem, 14vw, 4.6rem); }
  .service-grid, .quote-section { grid-template-columns: 1fr; }
  .service-grid { max-width: 42rem; margin-inline: auto; }
  .service-card { min-height: 25rem; }
  .parcel-section { grid-template-columns: 1fr; align-items: start; gap: 1.5rem; }
  .contact-panel, .quote-form { padding: 3.5rem max(1rem, calc((100vw - 42rem) / 2)); }
}

@media (max-width: 520px) {
  .site-header { width: calc(100% - 1.5rem); }
  .header-actions .button { min-height: 2.7rem; font-size: .85rem; }
  .hero-content, .section { width: calc(100% - 2rem); }
  .hero { min-height: 43rem; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .phone-link { align-self: flex-start; }
  .section { padding: 4.5rem 0; }
  .section-heading { text-align: left; }
  .service-strip {
    justify-content: flex-start;
    overflow-x: auto;
    gap: .8rem;
    padding-inline: 1rem;
    white-space: nowrap;
    scrollbar-width: none;
  }
  .service-strip::-webkit-scrollbar { display: none; }
  .service-grid { gap: .85rem; }
  .service-card { min-height: 22rem; }
  .service-content { padding: 1.5rem; }
  .contact-panel, .quote-form { padding: 3rem 1rem; }
  footer { flex-direction: column; }
}

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