:root {
  --ink: #11100e;
  --ink-soft: #1d1b17;
  --paper: #f3f0e9;
  --white: #fff;
  --orange: #f47b20;
  --orange-hot: #ff8c33;
  --muted: #aaa59b;
  --line: rgba(255,255,255,.16);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--ink);
  color: var(--white);
  font-family: "Barlow", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }
img { display: block; max-width: 100%; }
.shell { width: min(1180px, calc(100% - 48px)); margin: 0 auto; }

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  background: var(--white);
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
  transform: translateY(-150%);
}

.skip-link:focus { transform: translateY(0); }

a:focus-visible {
  outline: 3px solid var(--orange-hot);
  outline-offset: 4px;
}

.site-header {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  border-bottom: 1px solid var(--line);
}

.header-inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-family: "Staatliches", sans-serif;
  font-size: 18px;
  letter-spacing: 1.8px;
}

.brand-divider { color: var(--orange); font-size: 25px; }

.header-call {
  display: flex;
  align-items: baseline;
  gap: 12px;
  text-decoration: none;
}

.header-call span { color: #c6c2ba; font-size: 14px; }
.header-call strong { color: var(--orange-hot); font-size: 16px; letter-spacing: .4px; }

.hero {
  position: relative;
  min-height: 960px;
  overflow: hidden;
  background: #0c0c0d;
}

.hero-photo,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-photo {
  background: url("assets/automotive-advantage-shop.jpg") center 58% / cover no-repeat;
  filter: grayscale(1) contrast(1.05);
  opacity: .18;
  transform: scale(1.03);
}

.hero-shade {
  background:
    radial-gradient(circle at 78% 34%, rgba(244,123,32,.12), transparent 28%),
    linear-gradient(180deg, rgba(12,12,13,.85) 0%, rgba(12,12,13,.72) 55%, #0c0c0d 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  padding-top: 126px;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #d7d3ca;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2.4px;
  text-transform: uppercase;
}

.eyebrow span { width: 26px; height: 2px; background: var(--orange); }
.eyebrow.dark { color: #625e57; }

.logo-merger {
  width: min(900px, 100%);
  margin: 34px auto 30px;
  display: grid;
  grid-template-columns: 1fr 84px 1fr;
  align-items: center;
  gap: 24px;
}

.logo-card {
  height: 220px;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(15,15,16,.72);
  border: 1px solid rgba(255,255,255,.1);
  box-shadow: 0 24px 70px rgba(0,0,0,.25);
}

.tri-d-card img { width: 330px; max-height: 182px; object-fit: contain; }
.advantage-card img { width: 215px; max-height: 190px; object-fit: contain; }

.merge-mark { display: flex; align-items: center; gap: 10px; }
.merge-mark span { height: 1px; flex: 1; background: rgba(255,255,255,.22); }
.merge-mark b {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--orange);
  box-shadow: 0 0 0 7px rgba(244,123,32,.12);
  font-size: 27px;
}

.hero-copy { width: min(850px, 100%); margin: 0 auto; }
.kicker { margin: 0 0 8px; color: var(--orange-hot); font-weight: 700; }

h1,
h2 {
  margin: 0;
  font-family: "Staatliches", Impact, sans-serif;
  font-weight: 400;
  line-height: .96;
  letter-spacing: .4px;
  text-transform: uppercase;
}

h1 { font-size: clamp(52px, 7vw, 84px); }
h1 em,
h2 em { color: var(--orange); font-style: normal; }

.lead {
  width: min(700px, 100%);
  margin: 24px auto 28px;
  color: #d3d0c9;
  font-size: 19px;
}

.hero-actions,
.visit-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 13px 24px;
  border: 1px solid transparent;
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .7px;
  text-transform: uppercase;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--orange); color: #111; }
.button-primary:hover { background: var(--orange-hot); }
.button-secondary { border-color: rgba(255,255,255,.28); background: rgba(0,0,0,.15); }
.button-secondary:hover { border-color: var(--white); }

.location-strip {
  width: min(850px, 100%);
  margin: 48px auto 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 20px 24px;
  border-top: 1px solid rgba(255,255,255,.2);
  border-bottom: 1px solid rgba(255,255,255,.2);
  text-align: left;
  text-decoration: none;
}

.pin {
  width: 38px;
  height: 38px;
  border: 2px solid var(--orange);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg) scale(.65);
  position: relative;
}

.pin::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  left: 13px;
  top: 13px;
}

.location-strip small { display: block; color: #9e9b94; font-size: 11px; font-weight: 700; letter-spacing: 1.8px; text-transform: uppercase; }
.location-strip strong { display: block; font-size: 17px; }
.directions { color: var(--orange-hot); font-size: 14px; font-weight: 800; text-transform: uppercase; }

.welcome {
  padding: 110px 0;
  background: var(--paper);
  color: var(--ink);
}

.welcome-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 100px; align-items: start; }
.welcome h2, .visit h2 { margin-top: 14px; font-size: clamp(50px, 6vw, 76px); }
.welcome-copy > p { margin: 0 0 32px; color: #555149; font-size: 19px; }

.service-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 0;
  margin: 0 0 28px;
  border-top: 1px solid #cbc6bb;
  list-style: none;
}

.service-list li {
  position: relative;
  padding: 14px 8px 14px 24px;
  border-bottom: 1px solid #cbc6bb;
  font-size: 15px;
  font-weight: 700;
}

.service-list li::before { content: "+"; position: absolute; left: 0; color: var(--orange); font-size: 19px; }
.text-link { color: var(--ink); font-size: 14px; font-weight: 900; letter-spacing: .8px; text-decoration-color: var(--orange); text-decoration-thickness: 2px; text-underline-offset: 7px; text-transform: uppercase; }
.text-link span { margin-left: 12px; color: var(--orange); }

.visit { display: grid; grid-template-columns: 1.08fr .92fr; background: #151411; }
.visit-photo { min-height: 680px; background: linear-gradient(90deg, transparent 70%, #151411 100%), url("assets/automotive-advantage-shop.jpg") center / cover no-repeat; }
.visit-details { padding: 86px clamp(32px, 6vw, 90px); }
.visit-details address { margin: 34px 0; padding-left: 22px; border-left: 3px solid var(--orange); font-style: normal; }
.visit-details address strong, .visit-details address span { display: block; }
.visit-details address strong { font-size: 20px; }
.visit-details address span { color: #b7b3aa; }

.hours {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin: 32px 0;
  padding: 26px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.hours small, .hours strong, .hours span { display: block; }
.hours small { color: var(--orange); font-size: 11px; font-weight: 800; letter-spacing: 1.8px; text-transform: uppercase; }
.hours strong { margin: 5px 0 2px; font-size: 15px; }
.hours span { color: #aaa69e; font-size: 14px; }
.hours a { text-decoration: none; }
.visit-actions { justify-content: flex-start; }

.thank-you { padding: 105px 0; background: var(--paper); color: var(--ink); }
.thank-you-inner { display: grid; grid-template-columns: 290px 1fr; gap: 80px; align-items: center; }
.thank-you img { width: 290px; border: 10px solid #1b1b1c; }
blockquote { margin: 16px 0 0; font-family: "Staatliches", sans-serif; font-size: clamp(33px, 4vw, 52px); line-height: 1.08; text-transform: uppercase; }

footer { padding: 45px 0; background: #090908; }
.footer-inner { display: grid; grid-template-columns: 110px 1fr auto; align-items: center; gap: 30px; }
.footer-inner img { width: 90px; }
.footer-inner p { margin: 0; color: #8f8b84; font-size: 13px; line-height: 1.6; }
.footer-links { display: flex; gap: 24px; }
.footer-links a { color: #d8d4cc; font-size: 13px; font-weight: 700; text-underline-offset: 5px; }

@media (max-width: 900px) {
  .hero { min-height: auto; }
  .hero-inner { padding-bottom: 70px; }
  .logo-merger { grid-template-columns: 1fr 56px 1fr; gap: 10px; }
  .logo-card { height: 180px; padding: 18px; }
  .welcome-grid { grid-template-columns: 1fr; gap: 45px; }
  .visit { grid-template-columns: 1fr; }
  .visit-photo { min-height: 460px; background: linear-gradient(180deg, transparent 70%, #151411 100%), url("assets/automotive-advantage-shop.jpg") center / cover no-repeat; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  .shell { width: min(100% - 28px, 1180px); }
  .site-header { position: absolute; }
  .header-inner { min-height: 70px; }
  .brand { gap: 7px; font-size: 12px; letter-spacing: 1px; }
  .brand-divider { font-size: 18px; }
  .header-call span { display: none; }
  .header-call strong { font-size: 13px; }
  .hero-inner { padding-top: 100px; }
  .logo-merger { grid-template-columns: 1fr; margin-top: 24px; }
  .logo-card { height: 150px; }
  .tri-d-card img { max-height: 126px; width: 240px; }
  .advantage-card img { max-height: 136px; width: 180px; }
  .merge-mark { width: 90px; margin: -3px auto; transform: rotate(90deg); }
  .merge-mark b { transform: rotate(-90deg); }
  h1 { font-size: clamp(43px, 14vw, 66px); }
  .kicker { font-size: 14px; }
  .lead { font-size: 17px; }
  .hero-actions .button, .visit-actions .button { width: 100%; }
  .location-strip { grid-template-columns: auto 1fr; padding: 18px 8px; }
  .directions { display: none; }
  .location-strip strong { font-size: 14px; line-height: 1.4; }
  .welcome, .thank-you { padding: 72px 0; }
  .service-list { grid-template-columns: 1fr; }
  .visit-photo { min-height: 310px; }
  .visit-details { padding: 62px 22px; }
  .hours { grid-template-columns: 1fr; }
  .thank-you-inner { grid-template-columns: 1fr; gap: 34px; }
  .thank-you img { width: 210px; }
  .footer-inner { grid-template-columns: 70px 1fr; }
  .footer-inner img { width: 64px; }
  .footer-links { grid-column: 1 / -1; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .button { transition: none; }
}
