:root {
  --ink: #27221c;
  --muted: #6f6253;
  --paper: #f7f1e8;
  --panel: #fffaf2;
  --line: #dfd2c0;
  --leaf: #47644c;
  --clay: #a44f31;
  --brass: #c59a49;
  --shadow: 0 22px 54px rgba(55, 39, 22, .13);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Avenir Next", Avenir, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
}
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { color: inherit; }

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 760;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 2px solid var(--leaf);
  color: var(--leaf);
  font-size: .78rem;
  letter-spacing: 0;
}
nav { display: flex; gap: 18px; color: var(--muted); font-size: .94rem; }
nav a { text-decoration: none; }
nav a:focus-visible, .button:focus-visible {
  outline: 3px solid rgba(197, 154, 73, .6);
  outline-offset: 3px;
}

.hero {
  min-height: calc(100vh - 65px);
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(360px, 1.12fr);
  gap: clamp(22px, 5vw, 70px);
  align-items: center;
  padding: clamp(34px, 6vw, 72px) clamp(18px, 5vw, 72px) 34px;
}
.hero-copy { max-width: 660px; }
.eyebrow {
  margin: 0 0 12px;
  color: var(--clay);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
h1, h2, h3, p { overflow-wrap: anywhere; }
h1 {
  margin: 0;
  max-width: 620px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.45rem, 5.1vw, 5rem);
  line-height: .98;
  font-weight: 520;
  letter-spacing: 0;
}
h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.7rem, 3.2vw, 3.1rem);
  line-height: 1.05;
  font-weight: 520;
  letter-spacing: 0;
}
h3 { margin: 0 0 10px; font-size: 1.02rem; letter-spacing: 0; }
.lede {
  max-width: 600px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.7vw, 1.2rem);
  line-height: 1.65;
}
.actions, .contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border: 1px solid var(--ink);
  border-radius: 6px;
  text-decoration: none;
  font-weight: 760;
  transition: transform .18s ease, background .18s ease, color .18s ease;
}
.button:hover { transform: translateY(-2px); }
.primary { background: var(--ink); color: var(--panel); }
.secondary { background: transparent; color: var(--ink); }
.hero-photo {
  height: min(66vh, 620px);
  min-height: 390px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.hero-photo img { object-position: 50% 52%; }

.intro, .feature-row, .approach, .contact-band {
  padding: clamp(48px, 7vw, 84px) clamp(18px, 5vw, 72px);
}
.intro {
  display: grid;
  grid-template-columns: minmax(220px, .8fr) minmax(280px, 1fr);
  gap: 28px;
  align-items: start;
  border-top: 1px solid var(--line);
}
.intro p:last-child, .feature-copy p, .contact-band p {
  color: var(--muted);
  line-height: 1.72;
  margin: 0;
}

.repair-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.repair-grid article {
  min-height: 260px;
  padding: clamp(22px, 3.4vw, 42px);
  background: var(--panel);
}
.repair-grid span {
  display: block;
  margin-bottom: 38px;
  color: var(--leaf);
  font-family: Georgia, serif;
  font-size: 2.3rem;
}
.repair-grid p, .steps p { margin: 0; color: var(--muted); line-height: 1.58; }

.feature-row {
  display: grid;
  grid-template-columns: minmax(260px, .82fr) minmax(300px, 1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  background: #ede4d7;
}
.image-panel {
  aspect-ratio: 4 / 5;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
}
.image-panel img { object-position: 48% 50%; }
.feature-copy ul {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}
.feature-copy li {
  padding: 12px 0;
  border-top: 1px solid rgba(39, 34, 28, .18);
}

.approach { background: var(--ink); color: var(--panel); }
.approach .eyebrow { color: var(--brass); }
.section-heading { max-width: 760px; }
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 34px;
}
.steps article {
  padding: 22px;
  border: 1px solid rgba(255, 250, 242, .18);
  border-radius: 8px;
}
.steps p { color: rgba(255, 250, 242, .72); }

.photo-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 8px;
  background: var(--paper);
}
.photo-strip figure {
  min-height: 280px;
  height: 28vw;
  max-height: 360px;
  margin: 0;
  overflow: hidden;
  border-radius: 6px;
}
.photo-strip figure:nth-child(1) img { object-position: 44% 52%; }
.photo-strip figure:nth-child(2) img { object-position: 56% 50%; }
.photo-strip figure:nth-child(3) img { object-position: 50% 50%; }
.photo-strip figure:nth-child(4) img { object-position: 50% 54%; }
.photo-strip figure:nth-child(5) img { object-position: 52% 48%; }
.photo-strip figure:nth-child(6) img { object-position: 50% 52%; }

.contact-band {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) auto;
  gap: 28px;
  align-items: center;
  background: var(--panel);
  border-top: 1px solid var(--line);
}
.contact-band h2 { margin-bottom: 14px; }
footer {
  padding: 24px clamp(18px, 5vw, 72px) 92px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}
footer p { margin: 0; }

.photo-strip figure:nth-child(even) { transform: translateY(10px); }
.motion-ready .photo-strip figure { transition: transform .55s ease, filter .55s ease; }
.motion-ready .photo-strip:hover figure:nth-child(even) { transform: translateY(0); }
.motion-ready .photo-strip:hover figure:nth-child(odd) { transform: translateY(10px); }
.motion-ready .photo-strip figure:hover { filter: saturate(1.08) contrast(1.04); }

@media (max-width: 1100px) {
  .photo-strip figure { height: 30vw; min-height: 230px; }
}

@media (max-width: 900px) {
  .hero, .intro, .feature-row, .contact-band { grid-template-columns: 1fr; }
  .hero { min-height: 0; padding-top: 30px; }
  .hero-photo { height: 52vh; min-height: 320px; }
  .repair-grid, .steps { grid-template-columns: 1fr; }
  .repair-grid article { min-height: 0; }
  .repair-grid span { margin-bottom: 20px; }
  .photo-strip { grid-template-columns: repeat(2, 1fr); }
  .photo-strip figure { height: 42vw; min-height: 210px; }
  .contact-actions { width: 100%; }
}

@media (max-width: 560px) {
  .site-header { align-items: flex-start; flex-direction: column; gap: 10px; position: static; }
  nav { width: 100%; justify-content: space-between; }
  h1 { font-size: clamp(2.25rem, 15vw, 3.5rem); }
  .button { width: 100%; }
  .hero-photo { height: 330px; }
  .photo-strip { grid-template-columns: 1fr; }
  .photo-strip figure, .photo-strip figure:last-child { height: 255px; min-height: 255px; }
  footer { padding-bottom: 30px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .photo-strip figure:nth-child(even),
  .motion-ready .photo-strip:hover figure:nth-child(odd) { transform: none; }
}
