/* Tonnelle Tire — phone-first, finished shop look */

:root {
  --black: #0b0b0d;
  --ink: #121214;
  --card: #17171b;
  --card-2: #1e1e24;
  --white: #f5f5f3;
  --muted: #b7b6b2;
  --red: #e10600;
  --red-hover: #ff2a22;
  --line: #2a2a31;
  --space: 1.25rem;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 1.0625rem;
  line-height: 1.5;
  color: var(--white);
  background:
    radial-gradient(1200px 500px at 10% -10%, rgba(225, 6, 0, 0.18), transparent 55%),
    linear-gradient(#0b0b0d, #0b0b0d);
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--white); }

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1.25rem;
  border-bottom: 1px solid var(--line);
  background: rgba(11, 11, 13, 0.92);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 10;
}

.brand { display: block; min-height: 48px; }
.brand img { width: 176px; height: auto; }

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex-shrink: 0;
}

.nav-jump,
.header-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav-jump {
  color: var(--white);
  border: 1px solid #5a5a63;
  background: transparent;
}

.nav-jump:hover,
.nav-jump:focus { background: var(--white); color: var(--black); }

.header-call {
  background: var(--red);
  color: var(--white);
  min-width: 5.5rem;
}

.header-call:hover,
.header-call:focus { background: var(--red-hover); }

.hero {
  padding: 2.6rem var(--space) 2.2rem;
}

.hero-inner {
  max-width: 42rem;
  margin: 0 auto;
}

.kicker {
  margin: 0 0 0.7rem;
  color: var(--red);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1, h2, h3 { margin: 0 0 0.7rem; line-height: 1.12; }

h1 {
  font-size: clamp(2rem, 6vw, 3.1rem);
  letter-spacing: -0.03em;
}

h2 {
  font-size: 1.15rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1.1rem;
}

h3 {
  font-size: 1.2rem;
  font-weight: 800;
}

.hero p {
  margin: 0;
  color: var(--muted);
  font-size: 1.15rem;
  max-width: 28rem;
}

section.services,
.locations,
.contact {
  padding: 0.4rem var(--space) 2.4rem;
}

section.services,
.contact { max-width: 42rem; margin: 0 auto; }

section.services ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}

section.services li {
  background: var(--card);
  border: 1px solid var(--line);
  border-left: 4px solid var(--red);
  border-radius: 12px;
  padding: 0.9rem 1rem;
  font-weight: 650;
}

.locations { max-width: 72rem; margin: 0 auto; }

.shop-card {
  background: linear-gradient(180deg, var(--card-2), var(--card));
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.3rem 1.25rem 1.2rem;
  margin-bottom: 1rem;
  box-shadow: 0 10px 30px rgba(0,0,0,.28);
}

.shop-card .place {
  margin: 0 0 0.35rem;
  color: var(--muted);
  font-weight: 700;
  font-size: 0.95rem;
}

.shop-card .services {
  margin: 0 0 0.9rem;
  color: #ffb4ae;
  font-weight: 700;
  font-size: 0.92rem;
  line-height: 1.35;
}

.shop-card .address { margin: 0 0 0.35rem; }
.shop-card .address a {
  text-decoration: none;
  border-bottom: 1px solid #6d6d75;
}

.shop-card .hours {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.call-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 52px;
  padding: 0.8rem 1rem;
  background: var(--red);
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 800;
  text-decoration: none;
  border-radius: 12px;
}

.call-btn:hover,
.call-btn:focus { background: var(--red-hover); }

.map-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 46px;
  margin-top: 0.55rem;
  padding: 0.6rem 1rem;
  border: 1px solid #6a6a73;
  color: var(--white);
  font-weight: 700;
  text-decoration: none;
  border-radius: 12px;
}

.map-link:hover,
.map-link:focus { background: var(--white); color: var(--black); }

.call-list { list-style: none; margin: 1.1rem 0 0; padding: 0; }
.call-list li { margin-bottom: 1rem; }
.call-list span { display: block; font-weight: 700; margin-bottom: 0.4rem; }

.email { margin: 0.85rem 0 1.2rem; color: var(--muted); }
.email a { color: var(--white); font-weight: 700; }

.site-footer {
  padding: 1.4rem var(--space) 2.4rem;
  text-align: center;
  color: var(--muted);
  border-top: 1px solid var(--line);
}
.site-footer p { margin: 0; font-size: 0.85rem; letter-spacing: 0.08em; text-transform: uppercase; }

@media (min-width: 800px) {
  .brand img { width: 210px; }
  .locations {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
  .locations h2 { grid-column: 1 / -1; }
  .shop-card { margin-bottom: 0; }
  section.services ul { grid-template-columns: 1fr 1fr; }
}

.photos {
  max-width: 72rem;
  margin: 0 auto 1.5rem;
  padding: 0 var(--space);
  display: grid;
  gap: 0.75rem;
}

.photos figure { margin: 0; }
.photos img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid var(--line);
}

@media (min-width: 800px) {
  .photos { grid-template-columns: 1fr 1fr 1fr; }
  .photos img { height: 280px; }
}
