:root {
  --red: #ce2026;
  --red-dark: #9e161b;
  --ink: #161515;
  --steel: #2f2e2e;
  --slate: #5f5e5e;
  --fog: #d8d6d4;
  --paper: #f3f1ef;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
  --font-display: "Oswald", "Arial Narrow", sans-serif;
  --font-body: "Source Sans 3", "Segoe UI", sans-serif;
  --max: 1120px;
  --header-h: 7.25rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  min-height: 100vh;
}

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

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

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

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.15;
  margin: 0 0 0.6rem;
  text-transform: uppercase;
}

p {
  margin: 0 0 1rem;
}

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

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

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: #050505d9;
  border-bottom: 3px solid var(--red);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand img {
  height: 100px;
  width: auto;
  max-width: min(420px, 52vw);
}

.brand-text {
  display: none;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--fog);
  color: var(--white);
  padding: 0.45rem 0.7rem;
  font-family: var(--font-display);
  letter-spacing: 0.08em;
  cursor: pointer;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.site-nav a {
  color: var(--fog);
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

.site-nav .nav-phone {
  color: var(--white);
  border: 1px solid var(--red);
  background: var(--red);
  padding: 0.45rem 0.85rem;
}

.site-nav .nav-phone:hover {
  background: var(--red-dark);
  color: var(--white);
}

/* Hero */
.hero {
  position: relative;
  min-height: min(92vh, 760px);
  display: grid;
  align-items: end;
  color: var(--white);
  overflow: hidden;
  background: var(--ink);
}

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

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: contrast(1.05) grayscale(0.15);
  animation: heroIn 1.4s ease both;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(22, 21, 21, 0.35) 0%, rgba(22, 21, 21, 0.72) 55%, rgba(22, 21, 21, 0.92) 100%),
    linear-gradient(90deg, rgba(206, 32, 38, 0.22), transparent 45%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 4.5rem 0 3.5rem;
  max-width: 40rem;
  animation: rise 0.9s 0.15s ease both;
}

.hero-brand {
  width: min(420px, 100%);
  margin-bottom: 1.25rem;
  background: rgba(255, 255, 255, 0.94);
  padding: 0.55rem 0.75rem;
}

.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  margin-bottom: 0.75rem;
}

.hero p {
  font-size: 1.1rem;
  color: var(--fog);
  max-width: 34rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.8rem 1.25rem;
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

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

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

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
}

.btn-ghost:hover {
  border-color: var(--white);
  color: var(--white);
}

.btn-dark {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}

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

/* Sections */
.section {
  padding: 4.5rem 0;
}

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

.section-dark {
  background: var(--ink);
  color: var(--white);
}

.section-dark p,
.section-dark .lede {
  color: var(--fog);
}

.eyebrow {
  display: inline-block;
  margin-bottom: 0.6rem;
  color: var(--red);
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
}

.lede {
  font-size: 1.08rem;
  color: var(--slate);
  max-width: 42rem;
}

.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: center;
}

.split-media {
  position: relative;
  overflow: hidden;
  min-height: 320px;
}

.split-media img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  filter: grayscale(1) contrast(1.08);
}

.split-media::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 6px;
  background: var(--red);
  z-index: 1;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.stat {
  border-top: 2px solid var(--red);
  padding-top: 0.8rem;
}

.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.04em;
}

.stat span {
  color: var(--slate);
  font-size: 0.95rem;
}

.section-dark .stat span {
  color: var(--fog);
}

/* Value props / services */
.feature-grid,
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}

.feature,
.service-card {
  padding: 1.35rem 1.2rem 1.4rem;
  border-top: 3px solid var(--red);
  background: var(--white);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.feature:hover,
.service-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.feature h3,
.service-card h3 {
  font-size: 1.15rem;
}

.service-card p {
  color: var(--slate);
  margin-bottom: 0;
  font-size: 0.98rem;
}

.section-dark .feature {
  background: #221f1f;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5rem 2.5rem;
  margin-top: 2.5rem;
}

.trust-row img {
  height: 84px;
  width: auto;
  object-fit: contain;
}

.trust-row .tall {
  height: 110px;
}

/* Visit / contact info */
.info-panels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.info-panel {
  background: #221f1f;
  padding: 1.4rem 1.25rem;
  border-left: 4px solid var(--red);
}

.info-panel h3 {
  font-size: 1rem;
  color: var(--white);
}

.info-panel p,
.info-panel a {
  color: var(--fog);
  margin: 0;
}

.info-panel a:hover {
  color: var(--white);
}

.map-embed {
  margin-top: 2rem;
  border: 0;
  width: 100%;
  min-height: 320px;
  filter: grayscale(0.35) contrast(1.05);
}

.map-embed-compact {
  margin-top: 1.25rem;
  min-height: 0;
  height: 180px;
}

/* Contact form */
.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
  align-items: stretch;
}

.contact-details {
  display: flex;
  flex-direction: column;
  background: var(--white);
  padding: 1.75rem;
  border-top: 3px solid var(--red);
}

.contact-details > p:last-of-type {
  margin-top: auto;
  padding-top: 1.25rem;
}

.contact-details dl {
  margin: 1.25rem 0 0;
}

.contact-details dt {
  font-family: var(--font-display);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.8rem;
  color: var(--red);
  margin-top: 1rem;
}

.contact-details dd {
  margin: 0.25rem 0 0;
}

.form-note {
  font-size: 0.92rem;
  color: var(--slate);
  margin-bottom: 1rem;
}

.contact-layout > div:has(.contact-form) {
  display: flex;
  min-height: 0;
}

.contact-form {
  display: flex;
  flex-direction: column;
  flex: 1;
  width: 100%;
  background: var(--white);
  padding: 1.75rem;
  border-top: 3px solid var(--ink);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto 1fr;
  gap: 1rem;
  flex: 1;
  min-height: 0;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.form-field.full {
  grid-column: 1 / -1;
  min-height: 0;
}

.form-field.full textarea {
  flex: 1;
  min-height: 9rem;
  resize: vertical;
}

.form-field label {
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.form-field input,
.form-field textarea,
.form-field select {
  font: inherit;
  padding: 0.7rem 0.8rem;
  border: 1px solid #c9c6c3;
  background: #faf9f8;
  color: var(--ink);
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: 2px solid rgba(206, 32, 38, 0.35);
  border-color: var(--red);
}

.form-actions {
  margin-top: auto;
  padding-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.form-status {
  font-size: 0.92rem;
  color: var(--slate);
}

.form-status.error {
  color: var(--red-dark);
}

.page-hero {
  background:
    linear-gradient(120deg, rgba(22, 21, 21, 0.88), rgba(22, 21, 21, 0.55)),
    url("../images/shop-interior.jpg") center / cover no-repeat;
  color: var(--white);
  padding: 5rem 0 2.5rem;
}

.page-hero + .section {
  padding-top: 2rem;
}

.page-hero + .section .container > .service-grid:first-child {
  margin-top: 0;
}

.page-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
}

.page-hero p {
  max-width: 36rem;
  color: var(--fog);
}

/* Footer */
.site-footer {
  background: var(--ink);
  color: var(--fog);
  padding: 2.5rem 0 2rem;
  border-top: 3px solid var(--red);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.5rem;
  align-items: flex-start;
}

.footer-brand img {
  height: 48px;
  width: auto;
  margin-bottom: 0.75rem;
}

.footer-meta {
  font-size: 0.92rem;
}

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

@keyframes heroIn {
  from {
    transform: scale(1.06);
    opacity: 0.4;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 900px) {
  .split,
  .contact-layout,
  .feature-grid,
  .service-grid,
  .info-panels,
  .stats {
    grid-template-columns: 1fr;
  }

  .trust-row img {
    height: 70px;
  }
}

@media (max-width: 720px) {
  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #050505;
    border-bottom: 3px solid var(--red);
    padding: 0.5rem 1rem 1rem;
  }

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

  .site-nav a {
    padding: 0.85rem 0.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .site-nav .nav-phone {
    text-align: center;
    margin-top: 0.5rem;
  }

  .brand-text {
    display: none;
  }

  .site-header {
    --header-h: 5.75rem;
  }

  .brand img {
    height: 72px;
    max-width: min(280px, 70vw);
  }

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

  .hero {
    min-height: 78vh;
  }
}
