:root {
  --ink: #171819;
  --muted: #62676f;
  --line: #e6e0da;
  --paper: #f8f5ef;
  --white: #fffdf9;
  --red: #c9252d;
  --red-dark: #841b22;
  --gold: #d6a74b;
  --charcoal: #25282d;
  --radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
}

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

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(210px, 1fr) auto auto;
  align-items: center;
  gap: 28px;
  padding: 16px clamp(18px, 4vw, 52px);
  border-bottom: 1px solid rgba(23, 24, 25, 0.12);
  background: rgba(248, 245, 239, 0.94);
  backdrop-filter: blur(18px);
}

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

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 2px solid var(--ink);
  background: var(--red);
  color: white;
  font-weight: 900;
  letter-spacing: 0;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
  margin-top: 2px;
}

nav {
  display: flex;
  gap: 22px;
  color: #34373c;
  font-size: 0.94rem;
}

.header-call,
.button,
.quote-form button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  font-weight: 800;
  line-height: 1;
}

.header-call {
  padding: 0 16px;
  background: var(--ink);
  color: white;
  white-space: nowrap;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
  min-height: calc(100vh - 74px);
  padding: clamp(34px, 6vw, 74px) clamp(18px, 5vw, 72px) 40px;
}

.hero-copy {
  max-width: 690px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--red-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 20px;
  max-width: 11ch;
  font-size: clamp(3.45rem, 7vw, 6.7rem);
  line-height: 0.92;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.25rem;
}

.hero-text {
  max-width: 620px;
  color: #3c4046;
  font-size: clamp(1.05rem, 1.7vw, 1.26rem);
  line-height: 1.55;
}

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

.button {
  padding: 0 18px;
  border: 1px solid var(--ink);
}

.button.primary,
.quote-form button {
  border-color: var(--red);
  background: var(--red);
  color: white;
}

.button.ghost {
  background: transparent;
}

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

.proof-strip div {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.proof-strip dt {
  font-size: 1.45rem;
  font-weight: 900;
}

.proof-strip dd {
  margin: 4px 0 0;
  color: var(--muted);
}

.hero-media {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--charcoal);
  box-shadow: 0 24px 80px rgba(30, 20, 16, 0.22);
}

.hero-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.34));
}

.media-card {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  max-width: 260px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: var(--radius);
  background: rgba(255, 253, 249, 0.9);
}

.media-card strong,
.media-card span {
  display: block;
}

.media-card span {
  margin-top: 4px;
  color: var(--muted);
}

.service-band,
.quote-section {
  padding: clamp(54px, 7vw, 96px) clamp(18px, 5vw, 72px);
}

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

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

.service-grid article {
  min-height: 250px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.service-grid span {
  display: inline-block;
  margin-bottom: 52px;
  color: var(--red);
  font-weight: 900;
}

.service-grid p,
.work-copy p,
.quote-section p,
.contact-band p,
footer {
  color: var(--muted);
  line-height: 1.55;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.88fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: clamp(54px, 7vw, 92px) clamp(18px, 5vw, 72px);
  background: #eee9df;
}

.shop-photo {
  min-height: 540px;
  overflow: hidden;
  border-radius: var(--radius);
}

.work-copy {
  max-width: 660px;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: #303238;
}

.check-list li::before {
  position: absolute;
  left: 0;
  color: var(--red);
  content: "✓";
  font-weight: 900;
}

.quote-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
}

.quote-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.quote-form label {
  display: grid;
  gap: 8px;
  color: #34373c;
  font-weight: 800;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  border: 1px solid #d8d1c8;
  border-radius: var(--radius);
  background: #fbfaf7;
  color: var(--ink);
  font: inherit;
  padding: 13px 12px;
}

.quote-form textarea {
  resize: vertical;
}

.quote-form .wide,
.quote-form button {
  grid-column: 1 / -1;
}

.quote-form button {
  border: 0;
  cursor: pointer;
  font: inherit;
}

.contact-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 24px;
  align-items: center;
  margin: 0 clamp(18px, 5vw, 72px) clamp(34px, 5vw, 72px);
  padding: 28px;
  border-radius: var(--radius);
  background: var(--ink);
  color: white;
}

.contact-band .eyebrow,
.contact-band p {
  color: #f0c96f;
}

.contact-band h2 {
  margin-bottom: 8px;
  font-size: clamp(2rem, 4vw, 3.6rem);
}

.contact-band .button.ghost {
  border-color: rgba(255, 255, 255, 0.42);
  color: white;
}

.hours {
  display: grid;
  gap: 7px;
  min-width: 160px;
  color: #f2eee7;
}

footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 24px clamp(18px, 5vw, 72px) 36px;
}

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

  nav {
    display: none;
  }

  .hero,
  .split-section,
  .quote-section,
  .contact-band {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
  }

  .hero-media,
  .shop-photo {
    min-height: 430px;
  }

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

@media (max-width: 620px) {
  .site-header {
    gap: 12px;
    padding: 12px 14px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand strong {
    font-size: 0.95rem;
  }

  .header-call {
    min-height: 40px;
    padding: 0 11px;
    font-size: 0.82rem;
  }

  .hero {
    padding: 28px 14px 32px;
  }

  h1 {
    max-width: 10ch;
    font-size: clamp(2.9rem, 13vw, 3.55rem);
  }

  .hero-actions,
  .contact-actions {
    display: grid;
  }

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

  .proof-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 7px;
    margin-top: 22px;
  }

  .proof-strip div {
    padding: 10px;
  }

  .proof-strip dt {
    font-size: 1.05rem;
  }

  .proof-strip dd {
    font-size: 0.76rem;
    line-height: 1.2;
  }

  .hero-media {
    min-height: 330px;
  }

  .media-card {
    right: 12px;
    bottom: 12px;
    left: 12px;
    max-width: none;
  }

  .service-band,
  .quote-section,
  .split-section {
    padding-right: 14px;
    padding-left: 14px;
  }

  .service-grid article {
    min-height: 0;
  }

  .service-grid span {
    margin-bottom: 28px;
  }

  .shop-photo {
    min-height: 320px;
  }

  .contact-band {
    margin-right: 14px;
    margin-left: 14px;
    padding: 20px;
  }
}
