:root {
  --blue: #005f9f;
  --blue-dark: #073f6f;
  --yellow: #ffd735;
  --red: #c93632;
  --ink: #1d252d;
  --muted: #5c6670;
  --line: #d9e0e7;
  --paper: #ffffff;
  --soft: #f3f6f8;
  --dark: #151a1f;
  --shadow: 0 18px 45px rgba(21, 26, 31, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
}

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

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-160%);
  background: var(--yellow);
  color: var(--dark);
  padding: 8px 12px;
  border-radius: 6px;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.wrap {
  width: calc(100% - 40px);
  max-width: 1120px;
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(217, 224, 231, 0.85);
  backdrop-filter: blur(12px);
}

.header-inner {
  width: calc(100% - 32px);
  max-width: 1180px;
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img {
  width: 124px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
}

.site-nav a {
  text-decoration: none;
  font-weight: 700;
  color: var(--ink);
  padding: 10px 12px;
  border-radius: 6px;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: var(--soft);
  color: var(--blue);
}

.header-call {
  flex: 0 0 auto;
  text-decoration: none;
  font-weight: 800;
  color: var(--blue);
  border: 2px solid var(--blue);
  border-radius: 6px;
  padding: 9px 14px;
}

.header-call:hover,
.header-call:focus-visible {
  background: var(--blue);
  color: #fff;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper);
  padding: 10px;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  background: var(--ink);
  margin: 5px 0;
}

.hero {
  position: relative;
  min-height: 82vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(6, 18, 30, 0.84), rgba(6, 18, 30, 0.36) 58%, rgba(6, 18, 30, 0.16)),
    linear-gradient(0deg, rgba(6, 18, 30, 0.72), rgba(6, 18, 30, 0.02) 42%);
}

.hero-content {
  width: calc(100% - 40px);
  max-width: 1120px;
  margin: 0 auto;
  padding: 92px 0 138px;
}

.eyebrow,
.mini-kicker {
  margin: 0 0 12px;
  color: var(--yellow);
  font-size: 0.83rem;
  line-height: 1.2;
  font-weight: 900;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-size: 4rem;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0;
  text-shadow: 0 6px 22px rgba(0, 0, 0, 0.35);
}

.hero-lead {
  max-width: 690px;
  margin: 24px 0 0;
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.92);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 11px 18px;
  border: 2px solid transparent;
  border-radius: 6px;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--yellow);
  color: var(--dark);
  border-color: var(--yellow);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #fff;
  border-color: #fff;
}

.button-secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.72);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: #fff;
  color: var(--dark);
  border-color: #fff;
}

.button-dark {
  background: var(--dark);
  border-color: var(--dark);
  color: #fff;
}

.button-dark:hover,
.button-dark:focus-visible {
  background: var(--blue);
  border-color: var(--blue);
}

.hero-strip {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: calc(100% - 40px);
  max-width: 1120px;
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--paper);
  color: var(--ink);
  box-shadow: var(--shadow);
  border-radius: 8px 8px 0 0;
  overflow: hidden;
}

.hero-strip div {
  padding: 22px;
  border-right: 1px solid var(--line);
}

.hero-strip div:last-child {
  border-right: 0;
}

.hero-strip strong {
  display: block;
  font-size: 1rem;
  color: var(--blue);
}

.hero-strip span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.35;
}

.intro-band {
  background: var(--dark);
  color: #fff;
  padding: 74px 0 62px;
}

.intro-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.intro-grid article {
  border-top: 3px solid var(--yellow);
  padding-top: 18px;
}

.intro-grid h2 {
  margin: 0;
  font-size: 1.35rem;
  line-height: 1.2;
}

.intro-grid p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.section {
  padding: 92px 0;
}

.section.surface {
  background: var(--soft);
}

.split-grid,
.contact-grid,
.cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 54px;
  align-items: center;
}

.section-copy h2,
.section-heading h2,
.cta-band h2,
.contact-info h2,
.advice-card h2 {
  margin: 0;
  color: var(--ink);
  font-size: 2.35rem;
  line-height: 1.1;
  letter-spacing: 0;
}

.section-copy p,
.section-heading p,
.cta-band p,
.contact-info p,
.advice-card p {
  color: var(--muted);
}

.section-copy p {
  margin: 18px 0 0;
}

.text-link {
  display: inline-flex;
  margin-top: 22px;
  color: var(--blue);
  font-weight: 900;
  text-decoration: none;
  border-bottom: 2px solid var(--yellow);
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--red);
}

.photo-stack {
  position: relative;
  min-height: 520px;
}

.photo-stack img {
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.photo-main {
  width: 78%;
  height: 430px;
}

.photo-small {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 48%;
  height: 260px;
  border: 8px solid #fff;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

.section-heading .eyebrow,
.section-copy .eyebrow,
.contact-info .eyebrow,
.advice-card .eyebrow,
.cta-band .eyebrow {
  color: var(--red);
}

.service-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  gap: 32px;
  align-items: stretch;
}

.service-layout > img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.service-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.service-list article,
.tire-grid article {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
}

.service-list h3,
.tire-grid h3,
.brand-panel h3,
.contact-form h3,
.site-footer h2 {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.25;
}

.service-list p,
.tire-grid p {
  margin: 10px 0 0;
  color: var(--muted);
}

.tires {
  background: #fff;
}

.tire-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.tire-grid article {
  border-top: 4px solid var(--blue);
}

.brand-panel {
  margin-top: 34px;
  padding: 28px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--soft);
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(120px, 1fr));
  gap: 12px;
  margin-top: 20px;
}

.brand-grid img {
  width: 100%;
  height: 76px;
  object-fit: contain;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 14px;
}

.advice {
  background: var(--dark);
  color: #fff;
}

.advice-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.advice-card {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 22px;
  align-items: center;
  background: #fff;
  color: var(--ink);
  border-radius: 8px;
  padding: 18px;
}

.advice-card img {
  width: 150px;
  height: 210px;
  object-fit: cover;
  border-radius: 6px;
}

.advice-card h2 {
  font-size: 1.45rem;
}

.advice-card p:last-child {
  margin-bottom: 0;
}

.cta-band {
  background: var(--yellow);
  padding: 58px 0;
}

.cta-grid {
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
}

.cta-band .eyebrow,
.cta-band p {
  color: rgba(21, 26, 31, 0.76);
}

.cta-band p {
  max-width: 760px;
  margin-bottom: 0;
}

.contact {
  padding-bottom: 70px;
}

.contact-grid {
  align-items: start;
}

address {
  margin: 22px 0 0;
  font-style: normal;
  color: var(--muted);
}

address strong {
  color: var(--ink);
}

.contact-actions,
.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.contact-actions a,
.social-row a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 900;
}

.contact-actions a {
  background: var(--soft);
  color: var(--blue);
  padding: 9px 13px;
}

.social-row a {
  color: var(--muted);
  border-bottom: 2px solid var(--line);
}

.contact-form {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 26px;
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 6px;
  margin-top: 16px;
  color: var(--ink);
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 11px 12px;
  color: var(--ink);
  background: #fff;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 3px solid rgba(0, 95, 159, 0.18);
  border-color: var(--blue);
}

.contact-form button {
  width: 100%;
  margin-top: 18px;
}

.form-status {
  min-height: 24px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.map-wrap {
  margin-top: 42px;
}

.map-wrap iframe {
  display: block;
  width: 100%;
  height: 360px;
  border: 0;
  border-radius: 8px;
  filter: saturate(0.95);
}

.page-hero {
  position: relative;
  min-height: 82vh;
  display: grid;
  align-items: end;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}

.page-hero img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(6, 18, 30, 0.84), rgba(6, 18, 30, 0.36) 58%, rgba(6, 18, 30, 0.16)),
    linear-gradient(0deg, rgba(6, 18, 30, 0.72), rgba(6, 18, 30, 0.02) 42%);
}

.page-hero-content {
  padding: 92px 0 138px;
}

.breadcrumb {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.92rem;
}

.breadcrumb a {
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
}

.page-hero h1 {
  max-width: 780px;
  margin: 0;
  font-size: 3.75rem;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0;
  text-shadow: 0 6px 22px rgba(0, 0, 0, 0.35);
}

.page-hero p {
  max-width: 720px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.18rem;
}

.page-hero .hero-actions {
  margin-top: 32px;
}

.page-hero .hero-strip {
  color: var(--ink);
}

.content-page {
  padding: 74px 0;
}

.content-grid,
.detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 44px;
  align-items: start;
}

.content-aside {
  position: sticky;
  top: 104px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
}

.content-aside h2,
.content-main h2 {
  margin: 0;
  color: var(--ink);
  line-height: 1.15;
  letter-spacing: 0;
}

.content-aside p,
.content-main p {
  color: var(--muted);
}

.content-aside .button {
  width: 100%;
  margin-top: 10px;
}

.content-main > *:first-child {
  margin-top: 0;
}

.feature-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  border-left: 4px solid var(--blue);
  background: var(--soft);
  border-radius: 0 8px 8px 0;
  padding: 14px 16px;
  color: var(--muted);
}

.two-column-list {
  columns: 2;
  column-gap: 34px;
  margin: 22px 0 0;
  padding-left: 20px;
}

.two-column-list li {
  break-inside: avoid;
  margin-bottom: 9px;
}

.page-photo {
  width: 100%;
  max-height: 460px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.legal-content {
  max-width: 860px;
}

.legal-content h2 {
  margin-top: 36px;
  color: var(--blue);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.news-card {
  display: grid;
  grid-template-rows: 180px 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.news-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-card div {
  padding: 18px;
}

.news-card h2 {
  margin: 0;
  font-size: 1.15rem;
  line-height: 1.25;
}

.news-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.site-footer {
  background: var(--dark);
  color: #fff;
  padding: 46px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr 0.8fr;
  gap: 32px;
}

.site-footer img {
  width: 105px;
  height: auto;
  background: #fff;
  border-radius: 8px;
  padding: 8px;
}

.site-footer p,
.site-footer a {
  color: rgba(255, 255, 255, 0.76);
}

.site-footer a {
  display: block;
  text-decoration: none;
  margin-top: 8px;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--yellow);
}

.footer-bottom {
  width: calc(100% - 40px);
  max-width: 1120px;
  margin: 34px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.9rem;
}

@media (max-width: 980px) {
  .header-inner {
    min-height: 70px;
  }

  .nav-toggle {
    display: block;
    margin-left: auto;
  }

  .site-nav {
    position: absolute;
    top: 70px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 8px;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .header-call {
    display: none;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 3.1rem;
  }

  .hero-content,
  .page-hero-content {
    padding-bottom: 178px;
  }

  .hero-strip,
  .intro-grid,
  .split-grid,
  .service-layout,
  .contact-grid,
  .advice-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-strip {
    width: calc(100% - 28px);
    max-width: 620px;
  }

  .hero-strip div {
    padding: 16px 18px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .hero-strip div:last-child {
    border-bottom: 0;
  }

  .photo-stack {
    min-height: 430px;
  }

  .photo-main {
    width: 84%;
    height: 340px;
  }

  .photo-small {
    width: 52%;
    height: 220px;
  }

  .service-layout > img {
    min-height: 320px;
  }

  .tire-grid,
  .brand-grid,
  .news-grid,
  .content-grid,
  .detail-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .content-grid,
  .detail-grid {
    grid-template-columns: 1fr;
  }

  .content-aside {
    position: static;
  }

  .cta-grid {
    grid-template-columns: 1fr;
  }

  .cta-grid .button {
    justify-self: start;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 15px;
  }

  .wrap {
    width: calc(100% - 28px);
    max-width: 1120px;
  }

  .header-inner {
    width: calc(100% - 24px);
    max-width: 1180px;
  }

  .brand img {
    width: 82px;
  }

  .hero,
  .page-hero {
    min-height: 88vh;
  }

  .hero-content,
  .page-hero-content {
    width: calc(100% - 28px);
    max-width: 1120px;
    padding-top: 78px;
    padding-bottom: 282px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 2.35rem;
  }

  .hero-lead {
    font-size: 1.05rem;
    max-width: 330px;
  }

  .page-hero p,
  .page-hero h1,
  .page-hero .breadcrumb,
  .page-hero .hero-actions {
    max-width: 330px;
  }

  .page-hero p {
    font-size: 1.05rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    max-width: 330px;
  }

  .section {
    padding: 66px 0;
  }

  .section-copy h2,
  .section-heading h2,
  .cta-band h2,
  .contact-info h2,
  .page-hero h1 {
    font-size: 1.9rem;
  }

  .service-list,
  .tire-grid,
  .brand-grid,
  .news-grid {
    grid-template-columns: 1fr;
  }

  .two-column-list {
    columns: 1;
  }

  .photo-stack {
    min-height: 0;
    display: grid;
    gap: 12px;
  }

  .photo-main,
  .photo-small {
    position: static;
    width: 100%;
    height: auto;
    border: 0;
  }

  .advice-card {
    grid-template-columns: 1fr;
  }

  .advice-card img {
    width: 100%;
    height: 220px;
  }

  .map-wrap iframe {
    height: 300px;
  }
}
