:root {
  --ink: #17201d;
  --forest: #152d27;
  --forest-2: #203f37;
  --deep: #0e1715;
  --cream: #f4ecdd;
  --oat: #e4d5bd;
  --sage: #dce5d6;
  --steel: #ced6d9;
  --red: #b7272c;
  --red-dark: #8f1f23;
  --gold: #c2923b;
  --white: #fffaf0;
  --line: rgba(23, 32, 29, .16);
  --line-light: rgba(255, 250, 240, .18);
  --serif: "Libre Baskerville", Georgia, serif;
  --sans: "Archivo", system-ui, -apple-system, Segoe UI, sans-serif;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.6;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.skip { position: absolute; left: -999px; top: 0; z-index: 999; background: var(--red); color: var(--white); padding: 10px 14px; }
.skip:focus { left: 0; }

.topbar {
  position: fixed;
  top: 12px;
  left: 0;
  right: 0;
  z-index: 50;
  pointer-events: none;
}
.topbar-inner {
  width: min(1180px, calc(100% - 24px));
  margin: 0 auto;
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 12px 16px;
  border-radius: 20px;
  background: rgba(255, 250, 240, .74);
  backdrop-filter: blur(16px) saturate(1.25);
  -webkit-backdrop-filter: blur(16px) saturate(1.25);
  border: 1px solid rgba(255, 250, 240, .72);
  box-shadow: 0 18px 45px rgba(14, 23, 21, .20);
}
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; min-width: 0; }
.brand-mark {
  width: 42px; height: 42px; flex: 0 0 auto;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-family: var(--serif);
  font-weight: 700;
  box-shadow: inset 0 0 0 2px rgba(255,255,255,.2);
}
.brand-copy { display: grid; line-height: 1.05; }
.brand-copy strong { font-family: var(--serif); font-size: 19px; color: var(--forest); letter-spacing: -.01em; white-space: nowrap; }
.brand-copy span { font-size: 12px; color: rgba(23,32,29,.68); margin-top: 3px; }
.nav { display: flex; gap: 24px; margin-left: auto; align-items: center; }
.nav a { text-decoration: none; font-size: 14px; font-weight: 700; color: rgba(23,32,29,.72); }
.nav a:hover { color: var(--red-dark); }
.banner-phone {
  text-decoration: none;
  background: var(--red);
  color: var(--white);
  font-weight: 800;
  font-size: 15px;
  padding: 11px 16px;
  border-radius: 999px;
  box-shadow: 0 10px 22px rgba(143,31,35,.23);
  white-space: nowrap;
}

.hero {
  position: relative;
  min-height: 86vh;
  color: var(--white);
  background: var(--deep);
  overflow: hidden;
  display: grid;
  align-items: end;
}
#hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 66vh;
  object-fit: cover;
  object-position: center 43%;
}
.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(14,23,21,.93) 0%, rgba(14,23,21,.76) 34%, rgba(14,23,21,.34) 66%, rgba(14,23,21,.16) 100%),
    linear-gradient(180deg, rgba(14,23,21,.12) 0%, rgba(14,23,21,.18) 52%, rgba(14,23,21,.82) 100%);
}
.hero-copy {
  position: relative;
  z-index: 2;
  width: min(760px, calc(100% - 48px));
  margin-left: max(24px, calc((100vw - var(--max)) / 2 + 24px));
  padding: 150px 0 76px;
  text-shadow: 0 2px 24px rgba(0,0,0,.5);
}
.hero-place { margin: 0 0 16px; color: #ffd7aa; font-weight: 800; font-size: 16px; }
h1, h2, h3, p { overflow-wrap: anywhere; }
h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(42px, 5.7vw, 76px);
  line-height: 1.02;
  letter-spacing: -.035em;
  max-width: 13.5ch;
}
.hero-copy > p:not(.hero-place) { max-width: 58ch; margin: 22px 0 0; color: rgba(255,250,240,.88); font-size: clamp(18px, 1.45vw, 21px); line-height: 1.58; }
.hero-actions, .visit-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.button {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 50px;
  padding: 14px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: .005em;
  border: 1px solid transparent;
  transition: transform .16s ease, background .16s ease, border-color .16s ease;
}
.button:hover { transform: translateY(-1px); }
.button-red { background: var(--red); color: var(--white); box-shadow: 0 12px 24px rgba(143,31,35,.22); }
.button-red:hover { background: var(--red-dark); }
.button-light { background: rgba(255,250,240,.92); color: var(--forest); }
.button-outline { border-color: rgba(23,32,29,.32); color: var(--forest); }

.proof-ribbon { background: var(--forest); color: var(--white); }
.proof-track {
  max-width: var(--max);
  margin: 0 auto;
  padding: 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-left: 1px solid var(--line-light);
}
.proof-track p { margin: 0; padding: 6px 22px; border-right: 1px solid var(--line-light); }
.proof-track strong { display: block; font-family: var(--serif); font-size: 25px; line-height: 1.1; }
.proof-track span { display: block; margin-top: 5px; color: rgba(255,250,240,.68); font-size: 14px; line-height: 1.35; }

.intro { background: var(--cream); padding: clamp(58px, 7vw, 94px) 0; }
.intro-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: clamp(34px, 6vw, 76px); align-items: stretch; }
.intro-copy { align-self: center; }
h2 {
  font-family: var(--serif);
  font-size: clamp(34px, 4.3vw, 58px);
  line-height: 1.08;
  letter-spacing: -.032em;
  margin: 0 0 24px;
  color: var(--forest);
}
.intro-copy p { max-width: 66ch; margin: 0 0 18px; font-size: 19px; color: rgba(23,32,29,.82); }
.intro-media { margin: 0; min-height: 100%; display: flex; flex-direction: column; background: var(--forest); color: var(--white); }
.intro-media img { width: 100%; min-height: 420px; flex: 1; object-fit: cover; }
.intro-media figcaption { padding: 22px; color: rgba(255,250,240,.82); font-size: 17px; border-top: 1px solid var(--line-light); }

.paths { background: var(--sage); padding: clamp(58px, 7vw, 94px) 0; }
.paths-layout { display: grid; grid-template-columns: .78fr 1.22fr; gap: clamp(34px, 6vw, 76px); align-items: start; }
.paths-heading { position: sticky; top: 112px; }
.paths-heading p, .brand-band p, .reviews-heading p, .commercial-main p, .visit-copy p { max-width: 62ch; color: rgba(23,32,29,.76); margin: 0 0 18px; font-size: 19px; }
.service-ledger { border-top: 1px solid rgba(23,32,29,.24); }
.service-ledger article { display: grid; grid-template-columns: 70px 1fr; gap: 26px; padding: 28px 0; border-bottom: 1px solid rgba(23,32,29,.24); }
.service-ledger span { font-family: var(--serif); font-weight: 700; color: var(--red-dark); font-size: 26px; line-height: 1; }
.service-ledger h3 { margin: 0 0 8px; color: var(--forest); font-family: var(--serif); font-size: 28px; line-height: 1.15; letter-spacing: -.018em; }
.service-ledger p { margin: 0; font-size: 18px; color: rgba(23,32,29,.78); max-width: 62ch; }

.brand-band { background: var(--forest); color: var(--white); padding: clamp(58px, 7vw, 86px) 0; }
.brand-band-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 44px; align-items: center; }
.brand-band h2 { color: var(--white); }
.brand-band p { color: rgba(255,250,240,.75); }
.brand-list { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line-light); border-left: 1px solid var(--line-light); }
.brand-list li { padding: 18px 14px; min-height: 64px; display: grid; place-items: center; border-right: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); font-weight: 800; color: var(--white); }

.reviews { background: var(--oat); padding: clamp(58px, 7vw, 94px) 0; }
.reviews-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 22px 34px; align-items: start; }
.reviews-heading { grid-row: span 3; padding-right: 18px; }
.reviews figure { margin: 0; padding: 0 0 22px; border-bottom: 1px solid rgba(23,32,29,.25); }
.reviews blockquote { margin: 0; font-family: var(--serif); font-size: clamp(20px, 2vw, 27px); line-height: 1.45; color: var(--forest); }
.reviews figcaption { margin-top: 12px; color: var(--red-dark); font-weight: 800; font-size: 15px; }

.commercial { background: var(--steel); padding: clamp(58px, 7vw, 94px) 0; }
.commercial-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(34px, 6vw, 76px); align-items: center; }
.parts-board { border-top: 6px solid var(--red); background: rgba(255,250,240,.48); padding: 28px; }
.parts-board h3 { margin: 0 0 20px; font-family: var(--serif); font-size: 30px; color: var(--forest); }
dl { margin: 0; }
.parts-board div { padding: 18px 0; border-top: 1px solid rgba(23,32,29,.22); }
dt { font-weight: 900; color: var(--forest); margin-bottom: 4px; }
dd { margin: 0; color: rgba(23,32,29,.76); }

.visit { background: var(--cream); padding: clamp(58px, 7vw, 94px) 0; }
.visit-grid { display: grid; grid-template-columns: .86fr 1.14fr; gap: clamp(34px, 6vw, 70px); align-items: stretch; }
address { margin: 28px 0 0; font-style: normal; font-size: 20px; line-height: 1.55; color: var(--forest); }
.hours { font-weight: 700; }
.map-panel { min-height: 480px; background: var(--forest); border: 1px solid rgba(23,32,29,.16); }
.map-panel iframe { width: 100%; height: 100%; min-height: 480px; border: 0; display: block; filter: saturate(.9) contrast(.96); }
.footer { background: var(--deep); color: var(--white); padding: 34px 0; }
.footer-grid { display: flex; justify-content: space-between; gap: 24px; align-items: center; }
.footer p { margin: 0; color: rgba(255,250,240,.72); }
.footer a { color: var(--white); font-weight: 900; text-decoration: none; }

@media (max-width: 900px) {
  .nav { display: none; }
  .topbar-inner { padding: 10px 12px; }
  .brand-copy span { display: none; }
  .banner-phone { margin-left: auto; padding: 10px 12px; font-size: 14px; }
  .hero { display: block; min-height: 0; padding-top: 74px; background: var(--deep); }
  #hero-img { position: relative; width: 100%; height: auto; min-height: 0; aspect-ratio: 16 / 10; object-position: center center; }
  .hero-scrim { display: none; }
  .hero-copy { width: 100%; margin: 0; padding: 32px 24px 42px; background: var(--deep); text-shadow: none; }
  h1 { max-width: 12ch; font-size: clamp(38px, 12vw, 58px); }
  .hero-copy > p:not(.hero-place) { font-size: 18px; }
  .proof-track { grid-template-columns: repeat(2, 1fr); padding: 18px 24px; border-left: 0; }
  .proof-track p { padding: 14px 10px; border-bottom: 1px solid var(--line-light); }
  .intro-grid, .paths-layout, .brand-band-grid, .reviews-grid, .commercial-grid, .visit-grid { grid-template-columns: 1fr; }
  .paths-heading { position: static; }
  .intro-media img { min-height: 260px; }
  .brand-list { grid-template-columns: repeat(3, 1fr); }
  .reviews-heading { grid-row: auto; padding-right: 0; }
  .map-panel, .map-panel iframe { min-height: 360px; }
  .footer-grid { display: block; }
}

@media (max-width: 520px) {
  body { font-size: 18px; }
  .wrap { padding: 0 18px; }
  .brand-mark { width: 36px; height: 36px; }
  .brand-copy strong { font-size: 15px; }
  .banner-phone { font-size: 13px; }
  .hero { padding-top: 68px; }
  #hero-img { aspect-ratio: 4 / 3; }
  .hero-copy { padding: 28px 18px 38px; }
  h1 { max-width: 100%; font-size: clamp(34px, 10vw, 48px); }
  .button { width: 100%; padding: 14px 18px; }
  .proof-track { grid-template-columns: 1fr; }
  .proof-track p { border-right: 0; }
  h2 { font-size: clamp(32px, 10vw, 44px); }
  .service-ledger article { grid-template-columns: 1fr; gap: 10px; padding: 24px 0; }
  .brand-list { grid-template-columns: repeat(2, 1fr); }
  .parts-board { padding: 22px 18px; }
}
