/* ============================================================
   U Need A Tire — Akron, OH
   Palette drawn from the shop's sign: black field, chrome-yellow
   letters, red outlines, white accents.
   ============================================================ */
:root {
  --black: #121212;
  --coal: #1c1c1e;
  --yellow: #ffd200;
  --yellow-dark: #e6b800;
  --red: #c8102e;
  --red-dark: #9c0c24;
  --white: #ffffff;
  --cream: #faf8f4;
  --ink: #23201c;
  --gray: #5d5a55;
  --line: #e6e1d8;
  --radius: 10px;
  --shadow: 0 10px 30px rgba(18, 18, 18, .12);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: "Barlow", "Helvetica Neue", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
}

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

.wrap { max-width: 1120px; margin: 0 auto; padding: 0 20px; }

h1, h2, h3, .display {
  font-family: "Barlow Condensed", "Arial Narrow", Arial, sans-serif;
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: .5px;
}

h1 { font-size: clamp(2.4rem, 6vw, 4.2rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: .5em; }
h3 { font-size: 1.35rem; margin-bottom: .4em; }

p + p { margin-top: 1em; }

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

.kicker {
  display: inline-block;
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  font-size: .95rem;
  color: var(--red);
  margin-bottom: .6em;
}

/* ---- hazard stripe accent (yellow/black, like shop signage) ---- */
.stripe {
  height: 10px;
  background: repeating-linear-gradient(
    -45deg,
    var(--yellow) 0 18px,
    var(--black) 18px 36px
  );
}

/* ============ header ============ */
.topbar {
  background: var(--red);
  color: var(--white);
  font-size: .92rem;
  font-weight: 500;
}
.topbar .wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 24px;
  justify-content: space-between;
  align-items: center;
  padding-top: 7px;
  padding-bottom: 7px;
}
.topbar a { color: var(--white); font-weight: 700; text-decoration: none; }
.topbar a:hover { color: var(--yellow); }

.navbar {
  background: var(--black);
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 3px solid var(--yellow);
}
.navbar .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 10px;
  padding-bottom: 10px;
}
.brand img { height: 54px; width: auto; border-radius: 4px; }

.nav-toggle { display: none; }
.nav-toggle-label {
  display: none;
  color: var(--yellow);
  font-size: 1.9rem;
  line-height: 1;
  cursor: pointer;
  user-select: none;
  padding: 4px 8px;
}

nav.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}
nav.main-nav a {
  font-family: "Barlow Condensed", "Arial Narrow", Arial, sans-serif;
  font-weight: 600;
  font-size: 1.02rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--white);
  text-decoration: none;
  padding: 8px 9px;
  border-radius: 6px;
  white-space: nowrap;
}
nav.main-nav a:hover { color: var(--yellow); }
nav.main-nav a[aria-current="page"] {
  color: var(--black);
  background: var(--yellow);
}

.btn {
  display: inline-block;
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-decoration: none;
  padding: 12px 26px;
  border-radius: 8px;
  border: 2px solid transparent;
  transition: transform .12s ease, background .12s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-yellow { background: var(--yellow); color: var(--black) !important; }
.btn-yellow:hover { background: var(--yellow-dark); }
.btn-red { background: var(--red); color: var(--white) !important; }
.btn-red:hover { background: var(--red-dark); }
.btn-ghost { border-color: var(--white); color: var(--white) !important; }
.btn-ghost:hover { border-color: var(--yellow); color: var(--yellow) !important; }
.navbar .btn { padding: 9px 16px; font-size: 1rem; white-space: nowrap; }

/* ============ hero ============ */
.hero {
  position: relative;
  background: var(--black);
  color: var(--white);
  overflow: hidden;
}
.hero .bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .38;
}
.hero .wrap {
  position: relative;
  padding-top: clamp(70px, 12vw, 140px);
  padding-bottom: clamp(70px, 12vw, 140px);
  max-width: 900px;
  text-align: center;
}
.hero h1 .hl { color: var(--yellow); }
.hero p.lede {
  font-size: clamp(1.05rem, 2.2vw, 1.3rem);
  margin: 1em auto 1.6em;
  max-width: 620px;
  color: #efece6;
}
.hero .cta-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.page-hero {
  background: var(--black);
  color: var(--white);
  text-align: center;
}
.page-hero .wrap { padding-top: 56px; padding-bottom: 56px; max-width: 860px; }
.page-hero h1 .hl { color: var(--yellow); }
.page-hero p { color: #d9d5cd; max-width: 640px; margin: .8em auto 0; }

/* ============ sections ============ */
section.block { padding: clamp(48px, 8vw, 84px) 0; }
section.block.tint { background: #f1ede5; }
section.block.dark { background: var(--coal); color: var(--white); }
section.block.dark h2 { color: var(--white); }
section.block.dark .hl { color: var(--yellow); }

.grid { display: grid; gap: 26px; }
.grid.cols-2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid.cols-3 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 4px solid var(--red);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
}
.card h3 { color: var(--black); }
.card .icon { font-size: 1.9rem; line-height: 1; margin-bottom: 10px; }
.card p { color: var(--gray); font-size: .98rem; }
.card a.more {
  display: inline-block;
  margin-top: 10px;
  font-weight: 700;
  text-decoration: none;
}

/* quick-facts: the AI/answer-engine citation box */
.quick-facts {
  background: var(--white);
  border: 2px solid var(--black);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.quick-facts .qf-head {
  background: var(--black);
  color: var(--yellow);
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 12px 22px;
  font-size: 1.1rem;
}
.quick-facts dl {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 0;
}
.quick-facts .qf-item { padding: 16px 22px; border-top: 1px solid var(--line); }
.quick-facts dt {
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-size: .88rem;
  color: var(--red);
}
.quick-facts dd { color: var(--ink); font-size: .98rem; }

/* photo + text feature rows */
.feature { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.feature img { border-radius: var(--radius); box-shadow: var(--shadow); }
.feature.flip .media { order: 2; }
@media (max-width: 800px) {
  .feature { grid-template-columns: 1fr; }
  .feature.flip .media { order: 0; }
}

/* checklist */
ul.checks { list-style: none; margin: 1em 0; }
ul.checks li { padding: 7px 0 7px 34px; position: relative; }
ul.checks li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 4px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--black);
  font-weight: 900;
  font-size: .95rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* brand strip */
.brands { display: flex; flex-wrap: wrap; gap: 14px 34px; justify-content: center; align-items: center; }
.brands span {
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gray);
}

/* CTA banner */
.cta-banner { background: var(--red); color: var(--white); text-align: center; }
.cta-banner .wrap { padding-top: 56px; padding-bottom: 56px; }
.cta-banner h2 { color: var(--white); }
.cta-banner p { max-width: 560px; margin: 0 auto 1.4em; color: #ffe3e9; }

/* hours table */
table.hours { width: 100%; border-collapse: collapse; background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
table.hours th, table.hours td { padding: 13px 20px; text-align: left; border-bottom: 1px solid var(--line); }
table.hours th { font-family: "Barlow Condensed", Arial, sans-serif; text-transform: uppercase; letter-spacing: 1px; }
table.hours tr:last-child td, table.hours tr:last-child th { border-bottom: none; }
table.hours .open-now { color: var(--red); font-weight: 700; }

/* FAQ */
details.faq {
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 4px solid var(--yellow);
  border-radius: 8px;
  margin-bottom: 14px;
  box-shadow: var(--shadow);
}
details.faq summary {
  cursor: pointer;
  padding: 18px 22px;
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: .8px;
  list-style: none;
  position: relative;
  padding-right: 48px;
}
details.faq summary::-webkit-details-marker { display: none; }
details.faq summary::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: var(--red);
}
details.faq[open] summary::after { content: "–"; }
details.faq .answer { padding: 0 22px 20px; color: var(--gray); }

/* gallery */
.gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 18px; }
.gallery figure { margin: 0; }
.gallery img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; height: 260px; object-fit: cover; }
.gallery figcaption { font-size: .88rem; color: var(--gray); padding-top: 8px; }

/* map */
.map-embed { border: 0; width: 100%; height: 420px; border-radius: var(--radius); box-shadow: var(--shadow); }

/* ============ footer ============ */
footer { background: var(--black); color: #cfc9bf; font-size: .95rem; }
footer .cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 36px;
  padding: 56px 0 40px;
}
footer h4 {
  font-family: "Barlow Condensed", Arial, sans-serif;
  color: var(--yellow);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 1.1rem;
  margin-bottom: 14px;
}
footer a { color: var(--white); text-decoration: none; }
footer a:hover { color: var(--yellow); }
footer ul { list-style: none; }
footer li { padding: 4px 0; }
footer .logo-foot { height: 46px; width: auto; border-radius: 4px; margin-bottom: 14px; }
footer .legal {
  border-top: 1px solid #2d2d2d;
  padding: 18px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  justify-content: space-between;
  font-size: .85rem;
  color: #8d887f;
}

/* ============ mobile nav ============ */
@media (max-width: 900px) {
  .nav-toggle-label { display: block; }
  nav.main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--black);
    flex-direction: column;
    align-items: stretch;
    padding: 10px 20px 20px;
    border-bottom: 3px solid var(--yellow);
  }
  nav.main-nav a { padding: 12px; font-size: 1.2rem; }
  .nav-toggle:checked ~ nav.main-nav { display: flex; }
  .navbar .btn { display: none; }
  .brand img { height: 44px; }
}
