/* =====================================================================
   Rios Tire Shop #1 — Global Stylesheet
   Brand: School Bus Yellow #F5BE00 / Graphite #292825 / Floral White #FBF8F1
   Fonts: Barlow Condensed (headings) + Inter (body/UI)
   Built by LaunchSite Marketing LLC
   ===================================================================== */

/* ------------------------------ Tokens ------------------------------ */
:root {
  --white: #ffffff;
  --yellow: #f5be00;
  --yellow-600: #e0ad00;
  --graphite: #292825;
  --floral: #fbf8f1;
  --amber: #ffab4c;

  /* dark surface ramp */
  --graphite-900: #1c1b19;
  --graphite-800: #262421;
  --graphite-700: #34322d;

  /* text */
  --ink: #292825;           /* text on light */
  --ink-soft: #5f5c54;      /* muted on light */
  --paper: #f6f2e9;         /* text on dark */
  --paper-soft: #b9b3a6;    /* muted on dark */

  /* lines */
  --line-light: rgba(41, 40, 37, 0.12);
  --line-dark: rgba(255, 255, 255, 0.12);

  --radius: 14px;
  --radius-sm: 10px;
  --radius-lg: 22px;
  --shadow-sm: 0 2px 8px rgba(28, 27, 25, 0.08);
  --shadow-md: 0 12px 30px rgba(28, 27, 25, 0.14);
  --shadow-yellow: 0 8px 22px rgba(245, 190, 0, 0.35);

  --container: 1200px;
  --header-h: 74px;

  --ff-head: "Barlow Condensed", "Arial Narrow", sans-serif;
  --ff-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

/* ------------------------------ Reset ------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--ff-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
button { font-family: inherit; }
h1, h2, h3, h4 {
  font-family: var(--ff-head);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: 0.01em;
  margin: 0 0 0.4em;
  text-transform: uppercase;
}
h1 { font-size: clamp(2.2rem, 1.4rem + 3.4vw, 4.4rem); }
h2 { font-size: clamp(1.8rem, 1.25rem + 2.2vw, 3.1rem); }
h3 { font-size: clamp(1.3rem, 1.05rem + 1vw, 1.8rem); }
p { margin: 0 0 1rem; }
:focus-visible { outline: 3px solid var(--amber); outline-offset: 2px; border-radius: 4px; }

/* --------------------------- Layout utils --------------------------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: clamp(1rem, 0.5rem + 2.5vw, 2.5rem); }
.section { padding-block: clamp(3rem, 2rem + 5vw, 6rem); }
.section--dark { background: var(--graphite); color: var(--paper); }
.section--darker { background: var(--graphite-900); color: var(--paper); }
.section--light { background: var(--floral); color: var(--ink); }
.section--white { background: var(--white); color: var(--ink); }
.section--dark h1, .section--dark h2, .section--dark h3,
.section--darker h1, .section--darker h2, .section--darker h3 { color: #fff; }

.center { text-align: center; }
.narrow { max-width: 760px; margin-inline: auto; }
[hidden] { display: none !important; }

/* Eyebrow / section heading block */
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--ff-body); font-weight: 700; font-size: 0.8rem;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--yellow-600); margin-bottom: 0.75rem;
}
.section--dark .eyebrow, .section--darker .eyebrow { color: var(--yellow); }
.eyebrow::before { content: ""; width: 26px; height: 3px; background: var(--yellow); border-radius: 2px; }
.section-head { margin-bottom: clamp(1.6rem, 1rem + 2vw, 2.8rem); }
.lead { font-size: clamp(1.05rem, 1rem + 0.4vw, 1.28rem); color: var(--ink-soft); }
.section--dark .lead, .section--darker .lead { color: var(--paper-soft); }

/* ------------------------------ Buttons ----------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.55rem;
  font-family: var(--ff-body); font-weight: 600; font-size: 1rem; line-height: 1;
  padding: 0.9rem 1.5rem; border-radius: var(--radius-sm);
  border: 2px solid transparent; cursor: pointer; text-decoration: none;
  transition: transform 0.12s ease, background 0.15s ease, box-shadow 0.15s ease, color 0.15s ease, border-color 0.15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.ico { width: 1.15em; height: 1.15em; flex: none; vertical-align: -0.15em; }
.btn-lg { font-size: 1.12rem; padding: 1.1rem 1.9rem; }

/* Yellow = the primary/roadside emphasis */
.btn-roadside {
  background: var(--yellow); color: var(--graphite); font-weight: 700;
  box-shadow: var(--shadow-yellow);
}
.btn-roadside:hover { background: var(--amber); box-shadow: 0 10px 26px rgba(255, 171, 76, 0.45); }

.btn-primary { background: var(--yellow); color: var(--graphite); font-weight: 700; }
.btn-primary:hover { background: var(--yellow-600); }

.btn-dark { background: var(--graphite); color: #fff; }
.btn-dark:hover { background: #000; }

/* Outline that adapts to context */
.btn-outline { background: transparent; color: var(--ink); border-color: rgba(41, 40, 37, 0.4); }
.btn-outline:hover { background: var(--graphite); color: #fff; border-color: var(--graphite); }
.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255, 255, 255, 0.55); }
.btn-outline-light:hover { background: #fff; color: var(--graphite); border-color: #fff; }


.btn-row { display: flex; flex-wrap: wrap; gap: 0.85rem; }
.btn-row.center { justify-content: center; }

/* -------------------------- Site header ----------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--graphite-900);
  border-bottom: 1px solid var(--line-dark);
}
.header-inner {
  display: flex; align-items: center; gap: 1.25rem;
  min-height: var(--header-h);
}
.brand {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-family: var(--ff-head); text-decoration: none; text-transform: uppercase;
  line-height: 0.9; white-space: nowrap;
}
/* Logo art is dark-on-transparent — knock it out to white so it reads on the
   dark header/footer. Temporary: swap for a real white/SVG logo and drop the filter. */
.brand-logo {
  display: block;
  height: 55px;
  width: auto;
  filter: brightness(0) invert(1);
}
.brand--footer .brand-logo { height: 64px; }

.main-nav { display: flex; align-items: center; gap: 1.4rem; margin-left: auto; }
.main-nav a {
  color: var(--paper); text-decoration: none; font-size: 0.98rem; font-weight: 500;
  padding: 0.35rem 0; position: relative; white-space: nowrap;
}
.main-nav a:hover { color: #fff; }
.main-nav a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0;
  background: var(--yellow); transition: width 0.18s ease;
}
.main-nav a:hover::after, .main-nav a[aria-current="page"]::after { width: 100%; }
.main-nav a[aria-current="page"] { color: #fff; }

.header-ctas { display: flex; align-items: center; gap: 0.6rem; }
.header-ctas .btn { padding: 0.7rem 1.1rem; font-size: 0.95rem; }

/* hamburger */
.nav-toggle {
  display: none; margin-left: auto; width: 46px; height: 42px;
  background: transparent; border: 1px solid var(--line-dark); border-radius: 9px;
  cursor: pointer; padding: 0; align-items: center; justify-content: center; flex-direction: column; gap: 5px;
}
.nav-toggle span { display: block; width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: transform 0.2s ease, opacity 0.2s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* mobile drop menu */
.mobile-menu {
  position: fixed; inset: var(--header-h) 0 0 0; z-index: 99;
  background: var(--graphite-900); padding: 1.4rem clamp(1rem, 5vw, 2rem) 2rem;
  overflow-y: auto; display: flex; flex-direction: column; gap: 0.35rem;
}
.mobile-menu a.m-link {
  color: #fff; text-decoration: none; font-family: var(--ff-head); text-transform: uppercase;
  font-size: 1.5rem; padding: 0.7rem 0; border-bottom: 1px solid var(--line-dark);
}
.mobile-menu a.m-link[aria-current="page"] { color: var(--yellow); }
.mobile-menu-ctas { display: grid; gap: 0.7rem; margin-top: 1.2rem; }

/* --------------------------- Hero --------------------------------- */
.hero {
  position: relative; color: #fff; background: var(--graphite-900);
  overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(20, 19, 17, 0.94) 0%, rgba(20, 19, 17, 0.8) 42%, rgba(20, 19, 17, 0.45) 100%);
}
.hero__inner { position: relative; z-index: 1; padding-block: clamp(3.2rem, 2rem + 8vw, 7rem); max-width: 1100px; }
.hero h1 { color: #fff; margin-bottom: 1rem; }
.hero p.lead { color: #e9e4d9; max-width: 736px; }
.hero .btn-row { margin-top: 1.7rem; }
.hero--emergency .hero__bg::after {
  background: linear-gradient(105deg, rgba(18, 16, 14, 0.95) 0%, rgba(20, 16, 10, 0.82) 40%, rgba(60, 30, 0, 0.5) 100%);
}
.hero--compact .hero__inner { padding-block: clamp(2.6rem, 1.6rem + 5vw, 4.6rem); }

/* status pill */
.pill {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(245, 190, 0, 0.14); color: var(--yellow);
  border: 1px solid rgba(245, 190, 0, 0.4);
  font-weight: 600; font-size: 0.85rem; letter-spacing: 0.04em;
  padding: 0.4rem 0.85rem; border-radius: 999px; margin-bottom: 1.1rem;
}
.pill .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--yellow); box-shadow: 0 0 0 0 rgba(245,190,0,0.6); animation: pulse 2s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(245,190,0,0.55);} 70% { box-shadow: 0 0 0 9px rgba(245,190,0,0);} 100% { box-shadow: 0 0 0 0 rgba(245,190,0,0);} }

.badge-247 {
  display: inline-block; background: var(--yellow); color: var(--graphite);
  font-family: var(--ff-head); font-weight: 700; font-size: 0.95rem; letter-spacing: 0.05em;
  padding: 0.15rem 0.6rem; border-radius: 6px;
}

/* --------------------------- Grids / cards ------------------------- */
.grid { display: grid; gap: clamp(1rem, 0.6rem + 1.5vw, 1.6rem); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }



/* service list with checks */
.checks { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.55rem; }
.checks li { position: relative; padding-left: 1.9rem; }
.checks li::before {
  content: "✓"; position: absolute; left: 0; top: 0; width: 1.35rem; height: 1.35rem;
  background: var(--yellow); color: var(--graphite); border-radius: 50%;
  display: grid; place-items: center; font-size: 0.8rem; font-weight: 700;
}
.checks--2col { grid-template-columns: 1fr 1fr; }

/* two-column feature (image + text) */
.feature { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(1.4rem, 1rem + 3vw, 3.5rem); align-items: center; }
.feature__media img { width: 100%; height: 100%; max-height: 460px; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.feature__body h2 { margin-bottom: 0.7rem; }




/* Split CTA */
.split-cta { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; }
.split-pane {
  border-radius: var(--radius-lg); padding: clamp(1.6rem, 1.2rem + 2vw, 2.6rem);
  border: 1px solid var(--line-dark);
}
.split-pane h3 { font-size: clamp(1.4rem, 1.15rem + 1.2vw, 2rem); }
.split-pane--shop { background: var(--graphite-800); color: #fff; }
.split-pane--road { background: var(--yellow); color: var(--graphite); border-color: transparent; }
.split-pane--road h3 { color: var(--graphite); }
.split-pane p { opacity: 0.92; }
.split-pane .btn-row { margin-top: 1.2rem; }

/* emergency strip / banner */
.emg-banner { background: var(--graphite-900); position: relative; overflow: hidden; }
.emg-banner__bg { position: absolute; inset: 0; }
.emg-banner__bg img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.5) contrast(1.03); }
.emg-banner__bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(20, 19, 17, 0.9) 0%, rgba(20, 19, 17, 0.72) 48%, rgba(20, 19, 17, 0.52) 100%); }
.emg-inner { position: relative; z-index: 1; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.5rem; }
.emg-inner .txt { max-width: 640px; }


/* info list (contact/hours) */
.info-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.9rem; }
.info-list li { display: grid; grid-template-columns: 26px 1fr; gap: 0.7rem; align-items: start; }
.info-list .k { color: var(--yellow-600); display: inline-flex; }
.info-list .k svg { width: 1.15rem; height: 1.15rem; margin-top: 0.15rem; }
.section--dark .info-list .k, .section--darker .info-list .k { color: var(--yellow); }
.site-footer .info-list .k { color: var(--yellow); }
.info-list a { text-decoration: none; }
.info-list a:hover { text-decoration: underline; }

/* map */
.map-embed { border: 0; width: 100%; height: 100%; min-height: 340px; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.map-wrap { border-radius: var(--radius-lg); overflow: hidden; min-height: 340px; }




/* --------------------------- FAQ / details ------------------------- */
.faq-nav { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.faq-nav a {
  text-decoration: none; font-weight: 600; font-size: 0.95rem;
  padding: 0.55rem 1.1rem; border-radius: 999px; border: 1px solid var(--line-dark);
  color: #fff; background: rgba(255,255,255,0.06);
}
.faq-nav a:hover { background: var(--yellow); color: var(--graphite); border-color: var(--yellow); }

.faq-list { display: grid; gap: 0.8rem; }
details.faq {
  background: var(--white); border: 1px solid var(--line-light); border-radius: var(--radius-sm);
  padding: 0 1.2rem; box-shadow: var(--shadow-sm); overflow: hidden;
}
.section--dark details.faq, .section--darker details.faq { background: var(--graphite-800); border-color: var(--line-dark); }
details.faq > summary {
  list-style: none; cursor: pointer; padding: 1.05rem 2rem 1.05rem 0; position: relative;
  font-family: var(--ff-head); text-transform: uppercase; font-size: 1.2rem; font-weight: 600; letter-spacing: 0.01em;
}
.section--dark details.faq > summary, .section--darker details.faq > summary { color: #fff; }
details.faq > summary::-webkit-details-marker { display: none; }
details.faq > summary::after {
  content: "+"; position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  font-size: 1.6rem; color: var(--yellow-600); font-family: var(--ff-body); transition: transform 0.2s ease;
}
.section--dark details.faq > summary::after, .section--darker details.faq > summary::after { color: var(--yellow); }
details.faq[open] > summary::after { content: "\2013"; }
details.faq > .faq-body { padding: 0 0 1.1rem; color: var(--ink-soft); }
.section--dark details.faq > .faq-body, .section--darker details.faq > .faq-body { color: var(--paper-soft); }
details.faq > .faq-body :last-child { margin-bottom: 0; }

/* urgent roadside callbar (faq + roadside) */
.urgent-bar {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem;
  background: var(--yellow); color: var(--graphite);
  border-radius: var(--radius); padding: 1.1rem 1.4rem; margin-bottom: 1.4rem; font-weight: 600;
}
.urgent-bar .phone-inline { font-family: var(--ff-head); font-weight: 700; font-size: 1.5rem; text-decoration: none; color: var(--graphite); }

/* anchor offset */
:target { scroll-margin-top: calc(var(--header-h) + 18px); }
section[id] { scroll-margin-top: calc(var(--header-h) + 18px); }

/* --------------------------- Footer -------------------------------- */
.site-footer { background: var(--graphite-900); color: var(--paper); padding-top: clamp(2.6rem, 2rem + 3vw, 4rem); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1.3fr; gap: 2rem; }
.footer-brand p { color: var(--paper-soft); max-width: 40ch; margin-top: 1rem; font-size: 0.96rem; }
.footer-note { font-size: 0.85rem !important; color: #8f897c !important; }
.footer-col h3 { color: #fff; font-size: 1.2rem; margin-bottom: 1rem; }
.footer-col nav { display: grid; gap: 0.55rem; }
.footer-col nav a { color: var(--paper-soft); text-decoration: none; font-size: 0.96rem; }
.footer-col nav a:hover { color: var(--yellow); }
.footer-col .btn { margin-top: 1rem; }
.footer-bottom { margin-top: clamp(2rem, 1.4rem + 2vw, 3rem); padding-bottom: 1.4rem; }
.footer-bottom hr { border: 0; border-top: 1px solid var(--line-dark); margin: 0 0 1rem; }
.footer-bottom-row { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 0.6rem; }
.footer-bottom-row span, .footer-bottom-row a { font-family: var(--ff-body); font-size: 0.85rem; font-weight: 400; color: #8f897c; }
.footer-bottom-row a { text-decoration: none; font-style: normal; }
.footer-bottom-row a:hover { color: var(--yellow); }

/* --------------------------- Mobile sticky bar --------------------- */
.mobile-bar {
  display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  background: var(--graphite-900); border-top: 1px solid var(--line-dark);
  padding: 0.5rem; gap: 0.5rem; box-shadow: 0 -6px 20px rgba(0,0,0,0.3);
}
.mobile-bar .m-btn {
  flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: 0.4rem;
  text-decoration: none; font-weight: 700; font-size: 0.98rem; padding: 0.85rem 0.5rem;
  border-radius: var(--radius-sm); line-height: 1.1; text-align: center;
}
.m-btn.directions { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.5); }
.m-btn.roadside { background: var(--yellow); color: var(--graphite); box-shadow: var(--shadow-yellow); }
.m-btn.full { font-size: 1.05rem; }

/* --------------------------- Modal (directions) -------------------- */
.modal { position: fixed; inset: 0; z-index: 200; display: grid; place-items: center; padding: 1rem; }
.modal[hidden] { display: none; }
.modal__backdrop { position: absolute; inset: 0; background: rgba(15,14,12,0.6); backdrop-filter: blur(2px); }
.modal__panel {
  position: relative; background: #fff; color: var(--ink); border-radius: var(--radius-lg);
  padding: 1.8rem; width: min(440px, 100%); box-shadow: var(--shadow-md); text-align: center;
}
.modal__panel h3 { margin-bottom: 0.3rem; }
.modal__panel p { color: var(--ink-soft); margin-bottom: 1.3rem; }
.modal__choices { display: grid; gap: 0.7rem; }
.modal__close {
  position: absolute; top: 0.7rem; right: 0.8rem; width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid var(--line-light); background: var(--floral); cursor: pointer; font-size: 1.3rem; line-height: 1; color: var(--ink);
}
.modal__close:hover { background: var(--graphite); color: #fff; }

/* --------------------------- Legal page ---------------------------- */
.legal-body { max-width: 820px; }
.legal-body h2 { margin-top: 2.4rem; padding-top: 1rem; border-top: 1px solid var(--line-light); }
.legal-body h3 { margin-top: 1.6rem; font-size: 1.35rem; }
.legal-body p, .legal-body li { color: var(--ink-soft); }
.legal-toc { background: var(--floral); border: 1px solid var(--line-light); border-radius: var(--radius); padding: 1.4rem 1.6rem; }
.legal-toc h2 { margin: 0 0 0.6rem; border: 0; padding: 0; font-size: 1.3rem; }
.legal-toc ul { margin: 0; padding-left: 1.1rem; columns: 2; gap: 1rem; }
.legal-toc a { color: var(--ink); }
.updated { display:inline-block; background: var(--floral); border:1px solid var(--line-light); padding:0.3rem 0.8rem; border-radius:999px; font-size:0.85rem; font-weight:600; }

/* --------------------------- Responsive ---------------------------- */
@media (max-width: 1040px) {
  .main-nav { gap: 1rem; }
  .header-ctas .btn { padding: 0.65rem 0.85rem; font-size: 0.9rem; }
}

@media (max-width: 920px) {
  .main-nav, .header-ctas { display: none; }
  .nav-toggle { display: inline-flex; }
  .mobile-bar { display: flex; }
  body { padding-bottom: 74px; } .grid-3 { grid-template-columns: 1fr 1fr; }
  .split-cta { grid-template-columns: 1fr; }
  .feature { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 620px) {
  body { font-size: 16px; }
  .grid-3, .checks--2col { grid-template-columns: 1fr; }
  .btn-row .btn { width: 100%; white-space: normal; } /* let long labels wrap instead of overflowing */
  .emg-inner { flex-direction: column; align-items: flex-start; }
  .footer-grid { grid-template-columns: 1fr; }
  .legal-toc ul { columns: 1; }
  .brand-logo { height: 48px; }
}

@media (max-width: 380px) {
  .header-inner { gap: 0.5rem; }
  .mobile-bar .m-btn { font-size: 0.9rem; padding: 0.8rem 0.3rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

@media print {
  .site-header, .mobile-bar, .mobile-menu, .modal, .hero__bg, .btn-row, .faq-nav { display: none !important; }
  body { color: #000; }
}

/* =====================================================================
   HOMEPAGE — Hero + forked service cards (overlap layout)
   Experimental variant: the two service cards straddle the bottom of the
   hero image. The heading was removed from the section (moved feel into
   the hero). The original ".help-cards" styles above are left intact so
   the previous homepage can be restored by reverting index.html only.
   ===================================================================== */
.hero--home .hero__inner {
  padding-bottom: clamp(11rem, 6rem + 12vw, 17rem); /* room for overlap + breathing gap to the cards */
}

.fork-section {
  background: var(--white);
  padding-top: 0;
  padding-bottom: clamp(2.5rem, 1.8rem + 3vw, 4.5rem);
}
/* widen the two forked cards ~15% total so they feel less squished */
.fork-section > .container { max-width: 1380px; }
.fork-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1rem, 0.6rem + 1.5vw, 1.6rem);
  margin-top: clamp(-160px, -11vw, -100px); /* pull up ~half over the hero */
  position: relative;
  z-index: 5;
}
.fork-card {
  position: relative;
  display: flex;
  gap: 1.25rem;
  background: var(--white);
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 1.4rem;
}
.fork-card--roadside { border-top: 4px solid var(--yellow); }
.fork-card--roadside .fork-card__body { padding-right: 2.4rem; } /* clear the badge */
.fork-card__badge { position: absolute; top: 1rem; right: 1rem; z-index: 2; }
.fork-card__media { flex: 0 0 clamp(110px, 9vw, 150px); }
.fork-card__media img {
  width: 100%;
  height: 100%;
  min-height: 132px;
  max-height: 200px;
  object-fit: cover;
  border-radius: var(--radius-sm);
}
.fork-card__body { display: flex; flex-direction: column; }
.fork-card__body h3 { margin-bottom: 0.4rem; }
.fork-card__body p { color: var(--ink-soft); margin-bottom: 0.9rem; }
.fork-card__cta {
  margin-top: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.7rem 1.2rem;
}
.fork-link {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-weight: 700; text-decoration: none; color: var(--graphite);
}
.fork-link span { color: var(--yellow-600); transition: transform 0.15s ease; }
.fork-link:hover { color: var(--yellow-600); }
.fork-link:hover span { transform: translateX(3px); }
.btn-sm { padding: 0.6rem 1rem; font-size: 0.9rem; }

@media (max-width: 920px) {
  .hero--home .hero__inner { padding-bottom: clamp(6rem, 4rem + 9vw, 10rem); }
  .fork-cards { grid-template-columns: 1fr; margin-top: -48px; gap: 1rem; }
}
@media (max-width: 520px) {
  .fork-card { flex-direction: column; }
  .fork-card__media { flex-basis: auto; }
  .fork-card__media img { max-height: 180px; }
  .fork-card--roadside .fork-card__body { padding-right: 0; }
  .fork-card__badge { top: 0.8rem; right: 0.8rem; }
}

/* =====================================================================
   HOMEPAGE — Services split (heading left, image bleeds right, cards overlap)
   Light floral section bg + white cards for subtle contrast.
   ===================================================================== */
.services-split { position: relative; background: var(--floral); overflow: hidden; }
.services-split__media { position: absolute; top: 0; right: 0; bottom: 0; width: 42%; z-index: 0; }
.services-split__media img { width: 100%; height: 100%; object-fit: cover; }
.services-split__inner { position: relative; z-index: 2; }
.services-split__head { max-width: 560px; margin-bottom: 2.2rem; }

.svc-card {
  background: var(--white);
  border-radius: 4px;
  padding: 1.8rem 1.6rem;
  box-shadow: 0 16px 36px rgba(28, 27, 25, 0.13);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.svc-card:hover { transform: translateY(-3px); box-shadow: 0 22px 46px rgba(28, 27, 25, 0.18); }
.svc-ico { display: block; margin-bottom: 0.9rem; color: var(--yellow-600); }
.svc-ico svg { width: 2.1rem; height: 2.1rem; }
.svc-card h3 { margin-bottom: 0.45rem; }
.svc-card p { color: var(--ink-soft); margin: 0; }

@media (max-width: 1080px) {
  /* image drops to a top banner; cards sit on the light bg (no overlap) */
  .services-split__media {
    position: static;
    width: 100%;
    height: clamp(180px, 34vw, 260px);
    margin-bottom: 1.6rem;
    border-radius: var(--radius);
  }
  .services-split__head { max-width: none; }
}

/* =====================================================================
   HOMEPAGE — Why Rios (stats + image left, heading + items + CTA right)
   ===================================================================== */
.why-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(2rem, 1rem + 4vw, 4.5rem);
  align-items: stretch;
}
.why-left { display: flex; flex-direction: column; gap: clamp(1.5rem, 1rem + 2vw, 2.4rem); }
.why-stats { display: flex; flex-wrap: wrap; gap: 1.5rem 2.75rem; }
.stat-block { flex: 1 1 160px; }
.stat-num {
  font-family: var(--ff-head); font-weight: 700; line-height: 1;
  font-size: clamp(2.4rem, 1.8rem + 2vw, 3.5rem); color: var(--yellow);
}
.stat-block p { color: var(--paper-soft); margin: 0.55rem 0 0; max-width: 22ch; }
.why-media { flex: 1; min-height: 320px; }
.why-media img {
  width: 100%; height: 100%;
  object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-md);
}

.why-right .lead { margin-bottom: 0.6rem; max-width: 52ch; }

.why-list { list-style: none; margin: 1.6rem 0 2rem; padding: 0; display: grid; gap: 1.25rem; }
.why-list li { display: grid; grid-template-columns: auto 1fr; gap: 1rem; align-items: start; }
.why-ico {
  width: 2.7rem; height: 2.7rem; flex: none; display: grid; place-items: center;
  border-radius: 12px; background: rgba(245, 190, 0, 0.16); color: var(--yellow);
}
.why-ico svg { width: 1.5rem; height: 1.5rem; }
.why-list h3 { color: #fff; font-size: 1.2rem; margin-bottom: 0.2rem; }
.why-list p { color: var(--paper-soft); margin: 0; }

@media (max-width: 900px) {
  .why-grid { grid-template-columns: 1fr; gap: 2.2rem; }
  .why-media { flex: 0 0 auto; min-height: 0; }
  .why-media img { height: clamp(240px, 52vw, 380px); }
}

/* =====================================================================
   HOMEPAGE — New & Used tires (copy left, two overlapping images right)
   ===================================================================== */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2rem, 1rem + 4vw, 4.5rem);
  align-items: center;
}
.about-copy p { color: var(--paper-soft); }
.about-list { list-style: none; margin: 1.4rem 0 1.8rem; padding: 0; display: grid; gap: 0.7rem; }
.about-list li { position: relative; padding-left: 1.6rem; color: var(--paper); }
.about-list li::before {
  content: ""; position: absolute; left: 0; top: 0.55em;
  width: 0.6rem; height: 0.6rem; background: var(--yellow); border-radius: 2px;
}

.overlap-media { position: relative; min-height: clamp(380px, 42vw, 560px); }
.overlap-back {
  position: absolute; top: 0; right: 0; width: 74%; height: 70%;
  object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow-md);
}
.overlap-front {
  position: absolute; left: 0; bottom: 0; width: 58%; height: 62%;
  object-fit: cover; border-radius: var(--radius);
  border: 5px solid var(--graphite); box-shadow: 0 22px 44px rgba(0, 0, 0, 0.4);
}

@media (max-width: 900px) {
  .about-split { grid-template-columns: 1fr; }
  .overlap-media { min-height: 0; margin-top: 0.4rem; }
  .overlap-back, .overlap-front { position: static; height: auto; object-fit: fill; }
  .overlap-back { width: 88%; }
  .overlap-front { width: 66%; margin: -16% 0 0 auto; border-width: 4px; }
}

/* =====================================================================
   HOMEPAGE — Our Story (image + brand deco + label badge left, copy right)
   ===================================================================== */
.story-split {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(2rem, 1rem + 5vw, 5rem);
  align-items: center;
}
.story-media { position: relative; }
.story-deco {
  position: absolute; z-index: 0;
  top: 2.5rem; left: 2.5rem; right: -1.4rem; bottom: -1.4rem;
  background: var(--yellow); border-radius: var(--radius-lg);
}
.story-img {
  position: relative; z-index: 1; display: block; width: 100%;
  border-radius: var(--radius-lg); box-shadow: 0 22px 44px rgba(28, 27, 25, 0.22);
}
.story-badge {
  position: absolute; z-index: 2; left: 24%; right: 1.4rem; bottom: 1rem;
  display: flex; align-items: center; gap: 0.75rem;
  background: #fff; border-radius: 12px; padding: 0.8rem 1rem;
  box-shadow: 0 14px 30px rgba(28, 27, 25, 0.18);
}
.story-badge__ico {
  flex: none; width: 2.4rem; height: 2.4rem; display: grid; place-items: center;
  border-radius: 10px; background: rgba(245, 190, 0, 0.18); color: var(--yellow-600);
}
.story-badge__ico svg { width: 1.35rem; height: 1.35rem; }
.story-badge__text { display: flex; flex-direction: column; line-height: 1.2; }
.story-badge__text strong { font-family: var(--ff-head); text-transform: uppercase; font-size: 1.1rem; letter-spacing: 0.01em; }
.story-badge__text span { color: var(--ink-soft); font-size: 0.85rem; }

@media (max-width: 900px) {
  .story-split { grid-template-columns: 1fr; gap: 2.6rem; }
  .story-deco { top: 1.6rem; left: 1.6rem; right: 0; bottom: -1rem; }
  .story-badge { left: 16%; }
}
@media (max-width: 520px) {
  .story-badge { left: 8%; right: 0.8rem; }
}

/* =====================================================================
   HOMEPAGE — Visit Rios (title + contact on a dark band, wide map box
   straddling the dark->light background change)
   ===================================================================== */
/* One dark section; the map sits in NORMAL FLOW (no negative margin) and
   a light panel (.visit-lightfill) absolutely fills the bottom portion
   behind it. The light panel's height = the map's bleed (0.37 of its
   height) + the bottom padding, so the dark/light line lands ~0.63 down
   the map. This avoids the negative-margin cross-section overlap that
   rendered inconsistently across browsers.
   To retune: change 0.37 in the lightfill height (0.5 would center it;
   smaller = more black). --map-h is plain px so the calc stays px*number. */
.visit-section {
  position: relative;
  isolation: isolate;             /* self-contained stacking context */
  overflow: hidden;
  background: var(--graphite-900);
  color: var(--paper);
  padding-top: clamp(3rem, 2rem + 4vw, 5rem);
  padding-bottom: 3.5rem;
  /* responsive height, capped so the section stays roughly <= 90vh.
     Safe with vh now: no negative margin — the only calc using this is
     the .visit-lightfill height (clamp * number + length), the form that
     already worked cross-browser. */
  --map-h: clamp(320px, 40vh, 470px);
}
.visit-section h2 { color: #fff; margin-bottom: 0; }
.visit-section .eyebrow { color: var(--yellow); }
.visit-lightfill {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 0;
  height: calc(var(--map-h) * 0.37 + 3.5rem);
  background: var(--floral);
}
.visit-section > .container { position: relative; z-index: 1; }
.visit-head {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 1rem + 4vw, 4rem); align-items: start;
  margin-bottom: clamp(2rem, 1.5rem + 2vw, 3rem);
}
.visit-contact { list-style: none; margin: 0 0 1.5rem; padding: 0; display: grid; gap: 0.9rem; }
.visit-contact li { display: grid; grid-template-columns: auto 1fr; gap: 0.75rem; align-items: start; color: var(--paper); }
.visit-contact a { color: inherit; text-decoration: none; }
.visit-contact a:hover { color: var(--yellow); }
.visit-contact__ico { color: var(--yellow); display: inline-flex; padding-top: 0.1rem; }
.visit-contact__ico svg { width: 1.25rem; height: 1.25rem; }

.visit-map {
  position: relative; z-index: 1;
  height: var(--map-h);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.visit-map iframe { width: 100%; height: 100%; border: 0; display: block; }

@media (max-width: 768px) {
  .visit-head { grid-template-columns: 1fr; gap: 1.6rem; }
}

/* =====================================================================
   HOMEPAGE — Final CTA (parallax background image behind the cards)
   ===================================================================== */
.final-cta {
  position: relative;
  color: var(--paper);
  background-color: var(--graphite-900); /* fallback */
  background-image:
    linear-gradient(rgba(20, 19, 17, 0.7), rgba(20, 19, 17, 0.8)),
    url('https://images.unsplash.com/photo-1568605117036-5fe5e7bab0b7?auto=format&fit=crop&w=1600&q=70');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed; /* parallax */
}
.final-cta .split-pane { box-shadow: 0 24px 50px rgba(0, 0, 0, 0.4); }
.final-cta .split-pane--shop { border-color: rgba(255, 255, 255, 0.14); }

@media (max-width: 768px) {
  /* fixed-attachment parallax is unreliable on mobile — fall back to a normal cover image */
  .final-cta { background-attachment: scroll; }
}

/* =====================================================================
   TIRE & AUTO SERVICES — split hero (dark panel + image left, copy right)
   ===================================================================== */
.svc-hero { position: relative; background: var(--floral); overflow: hidden; }
.svc-hero__dark {
  position: absolute; left: 0; top: 0; bottom: 0; width: 40%; z-index: 0;
  background-color: var(--graphite);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='44' height='88'%3E%3Cpath d='M22 0 Q34 22 22 44 Q10 66 22 88' fill='none' stroke='%23ffffff' stroke-opacity='0.06' stroke-width='2'/%3E%3C/svg%3E");
  background-repeat: repeat;
}
.svc-hero__grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 1rem + 4vw, 5rem);
  align-items: center;
  padding-block: clamp(2.5rem, 1.5rem + 5vw, 5.5rem);
}
.svc-hero__media img {
  width: 100%; height: clamp(380px, 50vh, 580px);
  object-fit: cover; border-radius: var(--radius-lg);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.32);
}
.svc-hero__body .lead { max-width: 46ch; }
.svc-hero__body .btn-row { margin-top: 1.8rem; }

@media (max-width: 860px) {
  .svc-hero__dark { display: none; }
  .svc-hero__grid { grid-template-columns: 1fr; gap: 1.8rem; padding-block: clamp(2rem, 1rem + 5vw, 3.5rem); }
  .svc-hero__media { order: 2; background: var(--graphite); padding: 0.9rem; border-radius: var(--radius-lg); }
  .svc-hero__media img { height: clamp(240px, 60vw, 380px); border-radius: var(--radius); }
}

/* Tire & Auto Services — services grid (title + intro header, bordered cells) */
.svc-head {
  display: grid; grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(1.5rem, 1rem + 3vw, 4rem);
  align-items: start;
  margin-bottom: clamp(2rem, 1.5rem + 2vw, 3.5rem);
}
.svc-head__title h2 { margin-bottom: 0; }
.svc-head__intro { color: var(--ink-soft); font-size: clamp(1rem, 0.95rem + 0.3vw, 1.15rem); margin: 0; padding-top: 1.6rem; }
.svc-cells {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--line-light);
  border: 1px solid var(--line-light);
  border-radius: var(--radius); overflow: hidden;
}
.svc-cell { background: var(--white); padding: clamp(1.4rem, 1rem + 1.2vw, 2rem); }
.svc-cell__ico { display: inline-flex; color: var(--yellow-600); margin-bottom: 1rem; }
.svc-cell__ico svg { width: 2rem; height: 2rem; }
.svc-cell h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }
.svc-cell p { color: var(--ink-soft); font-size: 0.95rem; margin: 0; }

@media (max-width: 900px) { .svc-cells { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) {
  .svc-head { grid-template-columns: 1fr; }
  .svc-head__intro { padding-top: 0; }
}
@media (max-width: 520px) { .svc-cells { grid-template-columns: 1fr; } }

/* Tire & Auto Services — New vs Used (overlapping images left, header + accent boxes right) */
/* 2x2: media (top-left) | head (top-right) / used box | new box, then CTA row */
.tsplit {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(1.8rem, 1rem + 2.5vw, 3rem) clamp(2rem, 1rem + 4vw, 4.5rem);
  align-items: start;
}
.tsplit__media { position: relative; padding-bottom: clamp(2rem, 4vw, 3.5rem); }
.tsplit__img-top { position: relative; z-index: 1; width: 82%; }
.tsplit__img-top::before {
  content: ""; position: absolute; z-index: -1;
  inset: 1.4rem 1.4rem -1.4rem -1.4rem; /* offset frame peeking bottom-left */
  background: var(--graphite-700); border-radius: var(--radius-lg);
}
.tsplit__img-top img {
  width: 100%; height: clamp(300px, 32vw, 420px);
  object-fit: cover; border-radius: var(--radius-lg); display: block;
}
.tsplit__img-bot {
  position: absolute; z-index: 2; right: 0; bottom: 0;
  width: 60%; height: clamp(230px, 25vw, 320px);
  object-fit: cover; border-radius: var(--radius-lg);
  border: 6px solid var(--graphite); box-shadow: 0 22px 44px rgba(0, 0, 0, 0.4);
}
.tsplit__head .lead { margin-bottom: 0; }
.tsplit__cta { grid-column: 1 / -1; margin-top: 0.5rem; }
.accent-box {
  background: rgba(245, 190, 0, 0.07);
  border-left: 4px solid var(--yellow);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 1.3rem 1.5rem;
}
.accent-box h3 { color: #fff; font-size: 1.25rem; margin-bottom: 0.5rem; }
.accent-box p { color: var(--paper-soft); margin: 0 0 0.6rem; }
.accent-box p:last-child { margin-bottom: 0; }
.accent-box__note { font-size: 0.9rem; color: #8f897c !important; }

@media (max-width: 860px) {
  .tsplit { grid-template-columns: 1fr; gap: 2.4rem; }
  .tsplit__media { padding-bottom: 2rem; }
}

/* Tire & Auto Services — Auto Services (content + CTA left, image + striped square right) */
.autosvc {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 1rem + 4vw, 4.5rem); align-items: center;
}
.autosvc__list { list-style: none; margin: 1.4rem 0; padding: 0; display: grid; gap: 0.7rem; }
.autosvc__list li { position: relative; padding-left: 1.6rem; color: var(--ink-soft); }
.autosvc__list li::before {
  content: ""; position: absolute; left: 0; top: 0.42em;
  width: 0; height: 0;
  border-left: 8px solid var(--yellow);
  border-top: 5px solid transparent; border-bottom: 5px solid transparent;
}
.autosvc__divider { border: 0; border-top: 1px solid var(--line-light); margin: 1.6rem 0; }
.autosvc__media { position: relative; }
.autosvc__media img {
  position: relative; z-index: 1;
  width: 100%; height: clamp(360px, 42vw, 560px);
  object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-md);
}
.autosvc__media::before {
  content: ""; position: absolute; z-index: 0;
  top: -1.8rem; right: -1.8rem; left: 32%; bottom: 1.8rem;
  background: repeating-linear-gradient(45deg, rgba(41, 40, 37, 0.09) 0 7px, transparent 7px 15px);
}
@media (max-width: 860px) {
  .autosvc { grid-template-columns: 1fr; gap: 2.2rem; }
  .autosvc__media { order: -1; } /* image on top when stacked */
  .autosvc__media::before { right: -0.4rem; top: -1rem; bottom: 1rem; }
}

/* Tire & Auto Services — Commercial & Fleet (inner container box + 4 cards) */
.fleet-section { background: var(--floral); }
.fleet-inner {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 1rem + 3vw, 3.5rem);
  box-shadow: 0 14px 44px rgba(28, 27, 25, 0.06);
}
.fleet-top {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 1rem + 4vw, 4rem); align-items: center;
  margin-bottom: clamp(2rem, 1.5rem + 2vw, 3.5rem);
}
.fleet-top__media img {
  width: 100%; height: clamp(300px, 32vw, 460px);
  object-fit: cover; border-radius: var(--radius);
}
.fleet-top__body .btn-row { margin-top: 1.6rem; }
.fleet-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1.5rem, 1rem + 2vw, 2.8rem); }
.fleet-card__ico { display: inline-flex; color: var(--yellow-600); margin-bottom: 1rem; }
.fleet-card__ico svg { width: 1.9rem; height: 1.9rem; }
.fleet-card h3 { font-size: 1.15rem; margin-bottom: 0.85rem; padding-bottom: 0.85rem; border-bottom: 1px solid var(--line-light); }
.fleet-card p { color: var(--ink-soft); font-size: 0.92rem; margin: 0; }

@media (max-width: 900px) { .fleet-cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 860px) { .fleet-top { grid-template-columns: 1fr; } }
@media (max-width: 520px) { .fleet-cards { grid-template-columns: 1fr; } }

/* Tire & Auto Services — Why Choose Rios (title + intro header, hover-fill cards) */
.wcr-head {
  display: grid; grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(1.5rem, 1rem + 3vw, 4rem); align-items: start;
  margin-bottom: clamp(2rem, 1.5rem + 2vw, 3.5rem);
}
.wcr-head__title h2 { margin-bottom: 0; }
.wcr-head__intro { color: var(--paper-soft); font-size: clamp(1rem, 0.95rem + 0.3vw, 1.15rem); margin: 0; padding-top: 1.6rem; }

.wcr-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 0.6rem + 1.5vw, 1.6rem); }
.wcr-card {
  background: var(--graphite-800);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 1rem + 1.5vw, 2.2rem);
  transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}
.wcr-card__ico { display: inline-flex; color: var(--yellow); margin-bottom: 1rem; transition: color 0.18s ease; }
.wcr-card__ico svg { width: 2rem; height: 2rem; }
.wcr-card h3 { color: #fff; margin-bottom: 0.5rem; transition: color 0.18s ease; }
.wcr-card p { color: var(--paper-soft); margin: 0; transition: color 0.18s ease; }
.wcr-card:hover { background: var(--yellow); border-color: var(--yellow); transform: translateY(-3px); }
.wcr-card:hover .wcr-card__ico,
.wcr-card:hover h3,
.wcr-card:hover p { color: var(--graphite); }

@media (max-width: 900px) { .wcr-cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) { .wcr-head { grid-template-columns: 1fr; } .wcr-head__intro { padding-top: 0; } }
@media (max-width: 560px) { .wcr-cards { grid-template-columns: 1fr; } }

/* Tire & Auto Services — Final CTA (image fades into dark container; image = bg on mobile) */
.final-cta2 {
  position: relative;
  display: grid; grid-template-columns: 1fr 1fr;
  background: var(--graphite-900); color: var(--paper);
  border-radius: var(--radius-lg); overflow: hidden;
  min-height: clamp(340px, 38vw, 460px);
}
.final-cta2__body {
  position: relative; z-index: 2;
  padding: clamp(2rem, 1.5rem + 3vw, 4rem);
  display: flex; flex-direction: column; justify-content: center;
}
.final-cta2__body .eyebrow { color: var(--yellow); }
.final-cta2__body h2 { color: #fff; }
.final-cta2__body .lead { color: var(--paper-soft); max-width: 44ch; }
.final-cta2__body .btn-row { margin-top: 1.6rem; }
.final-cta2__img { position: relative; z-index: 1; }
.final-cta2__img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.final-cta2__img::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to right, var(--graphite-900) 0%, rgba(28, 27, 25, 0.35) 40%, transparent 75%);
}

@media (max-width: 640px) {
  .final-cta2 { grid-template-columns: 1fr; }
  .final-cta2__img { position: absolute; inset: 0; z-index: 0; }
  .final-cta2__img::before { background: rgba(20, 19, 17, 0.72); }
  .final-cta2__body { z-index: 2; text-align: center; align-items: center; }
  .final-cta2__body .lead { max-width: none; }
  .final-cta2__body .btn-row { width: 100%; justify-content: center; }
  .final-cta2__body .btn-row .btn { width: 100%; }
}

/* ============================================================
   ROADSIDE — centered hero + merged 4-card help band
   ============================================================ */
.rs-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin-inline: auto;
  text-align: center;
  padding-top: clamp(3rem, 2rem + 8vw, 6.5rem);
  padding-bottom: clamp(9rem, 6rem + 11vw, 14rem);
}
.rs-hero__inner h1 { margin-bottom: 0.4rem; }
.rs-underline {
  display: block;
  width: 64px;
  height: 4px;
  background: var(--yellow);
  border-radius: 2px;
  margin: 1.1rem auto 1.4rem;
}
.rs-hero__inner .lead {
  color: #e9e4d9;
  margin-inline: auto;
  max-width: 640px;
}
.rs-hero__inner .btn-row { margin-top: 1.7rem; }
.rs-hero__note {
  margin-top: 1rem;
  color: #e9e4d9;
  font-weight: 600;
}

.rs-cards-section {
  background: var(--white);
  padding-bottom: clamp(2.5rem, 2rem + 3vw, 4.5rem);
}
.rs-hero-card {
  position: relative;
  z-index: 5;
  margin-top: clamp(-120px, -9vw, -80px);
  background: var(--white);
  border-top: 4px solid var(--yellow);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: clamp(1.8rem, 1.2rem + 2vw, 3rem) clamp(1.5rem, 1rem + 2vw, 2.5rem);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.5rem, 1rem + 2vw, 2.5rem);
}
.rs-help { text-align: center; }
.rs-help__ico {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--graphite);
  display: grid;
  place-items: center;
  margin: 0 auto 1rem;
}
.rs-help__ico svg { width: 1.6rem; height: 1.6rem; }
.rs-help h3 { font-size: 1.05rem; margin-bottom: 0.4rem; }
.rs-help p { color: var(--ink-soft); font-size: 0.9rem; margin: 0; }
.rs-cards-note {
  text-align: center;
  color: var(--ink-soft);
  margin-top: clamp(1.4rem, 1rem + 1vw, 2rem);
  font-weight: 500;
}

@media (max-width: 760px) {
  .rs-hero-card { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 440px) {
  .rs-hero-card { grid-template-columns: 1fr; }
}

/* ---- Roadside: how it works (image left / numbered steps right) ---- */
.hiw {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(2rem, 1.5rem + 4vw, 5rem);
  align-items: center;
}
.hiw__media img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.hiw__content .section-head {
  text-align: left;
  margin: 0 0 clamp(1.4rem, 1rem + 2vw, 2.4rem);
  max-width: none;
}
.hiw__steps {
  list-style: none;
  margin: 0;
  padding: 0;
}
.hiw-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(1rem, 0.6rem + 1.5vw, 2rem);
  align-items: start;
  padding: clamp(1.3rem, 1rem + 1vw, 1.8rem) 0;
  border-bottom: 1px solid var(--line-dark);
}
.hiw-step:first-child { padding-top: 0; }
.hiw-step:last-child { padding-bottom: 0; border-bottom: none; }
.hiw-step__num {
  font-family: var(--ff-head);
  font-size: clamp(2.4rem, 1.8rem + 2.6vw, 3.6rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
  color: rgba(245, 190, 0, 0.22);
}
.hiw-step__body h3 {
  color: #fff;
  margin-bottom: 0.4rem;
}
.hiw-step__body p {
  color: var(--paper-soft);
  margin: 0;
}

@media (max-width: 820px) {
  .hiw { grid-template-columns: 1fr; gap: clamp(1.8rem, 1.4rem + 2vw, 2.6rem); }
  .hiw__media { order: 2; max-width: 440px; margin-inline: auto; }
}

/* ---- Why call Rios (title spans cols 1-2, tall right image) ---- */
.wcr2 {
  display: grid;
  grid-template-columns: 1fr 1.12fr 1fr;
  gap: clamp(1.4rem, 1rem + 2vw, 2.6rem);
  align-items: stretch;
}
.wcr2__head {
  grid-column: 1 / 3;
  grid-row: 1;
  align-self: end;
}
.wcr2__head h2 { margin: 0.2rem 0 0; }
.wcr2__media-left { grid-column: 1; grid-row: 2; }
.wcr2__content { grid-column: 2; grid-row: 2; align-self: center; }
.wcr2__media-right { grid-column: 3; grid-row: 1 / 3; }
.wcr2__media-left img,
.wcr2__media-right img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.wcr2__media-left img { min-height: 260px; }

.wcr2__list { list-style: none; margin: 0 0 clamp(1.4rem, 1rem + 1.5vw, 2rem); padding: 0; }
.wcr2-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(0.9rem, 0.7rem + 0.6vw, 1.3rem);
  align-items: start;
  padding: clamp(1rem, 0.8rem + 0.8vw, 1.4rem) 0;
  border-bottom: 1px solid var(--line-light);
}
.wcr2-item:first-child { padding-top: 0; }
.wcr2-item:last-child { border-bottom: none; padding-bottom: 0; }
.wcr2-item__ico { color: var(--yellow); flex-shrink: 0; }
.wcr2-item__ico svg { width: 2.3rem; height: 2.3rem; }
.wcr2-item h3 { font-size: 1.12rem; margin-bottom: 0.3rem; }
.wcr2-item p { color: var(--ink-soft); font-size: 0.95rem; margin: 0; }

@media (max-width: 900px) {
  .wcr2 { grid-template-columns: 0.85fr 1fr; }
  .wcr2__head { grid-column: 1 / -1; grid-row: 1; align-self: start; }
  .wcr2__media-left { grid-column: 1; grid-row: 2; }
  .wcr2__content { grid-column: 2; grid-row: 2; }
  .wcr2__media-right { grid-column: 1 / -1; grid-row: 3; }
  .wcr2__media-right img { aspect-ratio: 16 / 9; height: auto; max-height: 360px; }
}
@media (max-width: 600px) {
  .wcr2 { grid-template-columns: 1fr; }
  .wcr2__head { grid-column: 1; grid-row: 1; }
  .wcr2__media-left { grid-column: 1; grid-row: 2; }
  .wcr2__content { grid-column: 1; grid-row: 3; }
  .wcr2__media-right { grid-column: 1; grid-row: 4; }
  .wcr2__media-left img { aspect-ratio: 4 / 3; height: auto; min-height: 0; }
}

/* ---- Roadside: parallax final CTA ---- */
.rs-parallax {
  position: relative;
  isolation: isolate;
  background: #1a1917 url('https://images.unsplash.com/photo-1619642751034-765dfdf7c58e?auto=format&fit=crop&w=1600&q=70') center / cover no-repeat fixed;
  padding-block: clamp(4.5rem, 3.5rem + 9vw, 9rem);
  text-align: center;
}
.rs-parallax::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(18, 17, 15, 0.72);
}
.rs-parallax__inner { max-width: 760px; }
.rs-parallax__eyebrow {
  display: inline-block;
  color: var(--yellow);
  font-family: var(--ff-head);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.85rem;
  margin-bottom: 1rem;
}
.rs-parallax h2 {
  color: #fff;
  font-size: clamp(1.9rem, 1.4rem + 3vw, 3.2rem);
  margin: 0 auto;
  max-width: 20ch;
  text-wrap: balance;
}
.rs-parallax__lead {
  color: #e9e4d9;
  max-width: 560px;
  margin: 1.1rem auto 0;
}
.rs-parallax .btn-row { margin-top: 1.9rem; }

@media (max-width: 768px) {
  .rs-parallax { background-attachment: scroll; }
}

/* ---- About: Our story (fleet pattern, wider container + roomier box) ---- */
.story-section > .container { max-width: 1440px; }
.story-section .fleet-inner { padding: clamp(1.8rem, 1.2rem + 3.5vw, 4.5rem); }
.story-section .fleet-top { gap: clamp(2rem, 1rem + 5vw, 5rem); }

/* ---- About: Meet the team (title-left / action-right, accented middle) ---- */
.team2-head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 1.5rem;
  margin-bottom: clamp(2rem, 1.5rem + 2vw, 3rem);
}
.team2-head__title h2 { color: #fff; margin: 0.3rem 0 0; max-width: 20ch; }
.team2-head .btn { white-space: nowrap; }

.team2-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.2rem, 0.8rem + 1.5vw, 2rem);
}
.team2-card { display: flex; flex-direction: column; gap: 0.9rem; }
.team2-card__photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--graphite-800);
}
.team2-card__photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.team2-card__cap {
  border-radius: var(--radius);
  padding: clamp(0.9rem, 0.7rem + 0.5vw, 1.2rem) 1.2rem;
  text-align: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line-dark);
}
.team2-card__cap h3 { color: #fff; font-size: 1.15rem; margin-bottom: 0.25rem; }
.team2-card__cap p { color: var(--paper-soft); margin: 0; font-size: 0.95rem; }
.team2-card--accent .team2-card__cap { background: var(--yellow); border-color: var(--yellow); }
.team2-card--accent .team2-card__cap h3,
.team2-card--accent .team2-card__cap p { color: var(--graphite); }

@media (max-width: 640px) {
  .team2-head { grid-template-columns: 1fr; align-items: start; }
  .team2-grid { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; }
}

/* ---- About: Our approach (title-left / divider / intro-right, accent-bar cards) ---- */
.appr-head {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1.5rem, 1rem + 3vw, 3.5rem);
  align-items: stretch;
  margin-bottom: clamp(2.2rem, 1.6rem + 2vw, 3.4rem);
}
.appr-head__title { align-self: center; }
.appr-head__title h2 { margin: 0; }
.appr-head__intro {
  border-left: 3px solid var(--yellow);
  padding-left: clamp(1.2rem, 0.8rem + 1.5vw, 2rem);
}
.appr-head__intro p { color: var(--ink-soft); margin: 0.6rem 0 0; }

.appr-cards {
  --appr-pad: clamp(1.6rem, 1.2rem + 1.5vw, 2.2rem);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.2rem, 0.8rem + 1.5vw, 1.8rem);
}
.appr-card {
  position: relative;
  background: var(--floral);
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  padding: var(--appr-pad);
  padding-bottom: calc(var(--appr-pad) + 0.7rem);
}
.appr-card::after {
  content: "";
  position: absolute;
  left: var(--appr-pad);
  right: var(--appr-pad);
  bottom: 0.9rem;
  height: 3px;
  border-radius: 2px;
  background: var(--yellow);
}
.appr-card__ico { display: inline-flex; color: var(--yellow-600); margin-bottom: 1.1rem; }
.appr-card__ico svg { width: 2.2rem; height: 2.2rem; }
.appr-card h3 {
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-size: 1.12rem;
  margin-bottom: 0.6rem;
}
.appr-card p { color: var(--ink-soft); margin: 0; }

@media (max-width: 760px) {
  .appr-head { grid-template-columns: 1fr; }
  .appr-head__intro { border-left: 0; border-top: 3px solid var(--yellow); padding-left: 0; padding-top: 1.2rem; }
  .appr-cards { grid-template-columns: 1fr; }
}

/* ---- About: What we handle (content + 2x2 items left, image right) ---- */
.handle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 1.5rem + 4vw, 4.5rem);
  align-items: center;
}
.handle__body h2 { color: #fff; }
.handle__body > p { color: var(--paper-soft); max-width: 48ch; margin-bottom: clamp(1.6rem, 1.2rem + 1.5vw, 2.2rem); }
.handle__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(0.8rem, 0.6rem + 0.8vw, 1.1rem);
  margin-bottom: clamp(1.6rem, 1.2rem + 1.5vw, 2.2rem);
}
.handle-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: clamp(0.9rem, 0.7rem + 0.6vw, 1.15rem) clamp(1rem, 0.8rem + 0.6vw, 1.3rem);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.03);
}
.handle-item__ico { color: var(--yellow); display: inline-flex; flex-shrink: 0; }
.handle-item__ico svg { width: 1.5rem; height: 1.5rem; }
.handle-item > span:last-child {
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: 0.98rem;
  line-height: 1.25;
  color: #fff;
}
.handle__media img {
  width: 100%;
  height: 100%;
  max-height: 560px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

@media (max-width: 860px) {
  .handle { grid-template-columns: 1fr; }
  .handle__media { order: -1; }
  .handle__media img { max-height: 340px; }
}
@media (max-width: 460px) {
  .handle__grid { grid-template-columns: 1fr; }
}

/* ================= Google reviews widget ================= */
.grev { max-width: 940px; margin-inline: auto; }
.grev--single { max-width: 600px; }
.grev-summary-wrap { text-align: center; }
.grev-summary {
  display: inline-flex; align-items: center; gap: 0.6rem; flex-wrap: wrap;
  justify-content: center;
  background: #fff; color: #202124;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 999px;
  padding: 0.5rem 1.15rem;
  box-shadow: 0 6px 20px rgba(28, 27, 25, 0.08);
  margin: 0 auto clamp(1.6rem, 1.2rem + 1.5vw, 2.4rem);
  font-size: 0.95rem;
  font-family: var(--ff-body);
}
.grev-summary__g { width: 20px; height: 20px; flex-shrink: 0; }
.grev-summary b { font-weight: 700; }
.grev-summary__sep { width: 1px; height: 18px; background: rgba(0, 0, 0, 0.16); }
.grev-summary .grev-stars { color: #fabb05; font-size: 1.05rem; }
.grev-summary a { color: #1a73e8; text-decoration: none; font-weight: 600; white-space: nowrap; }
.grev-summary a:hover { text-decoration: underline; }

.grev-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: clamp(1rem, 0.7rem + 1vw, 1.6rem); }
.grev--single .grev-grid { grid-template-columns: 1fr; }

.grev-card {
  position: relative;
  background: #fff; color: #202124;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 14px;
  padding: clamp(1.3rem, 1rem + 1vw, 1.7rem);
  box-shadow: 0 6px 22px rgba(28, 27, 25, 0.07);
  text-align: left;
  font-family: var(--ff-body);
}
.grev-card__g { position: absolute; top: 1.15rem; right: 1.15rem; width: 20px; height: 20px; }
.grev-card__head { display: flex; align-items: center; gap: 0.8rem; padding-right: 1.8rem; }
.grev-av {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  display: grid; place-items: center;
  color: #fff; font-weight: 600; font-size: 1.2rem;
}
.grev-card__id { min-width: 0; }
.grev-name { font-weight: 600; font-size: 1rem; color: #202124; line-height: 1.2; }
.grev-sub { font-size: 0.8rem; color: #5f6368; }
.grev-rate { display: flex; align-items: baseline; gap: 0.5rem; margin: 0.7rem 0 0.1rem; }
.grev-rate .grev-stars { color: #fabb05; font-size: 1.05rem; letter-spacing: 1px; }
.grev-date { font-size: 0.8rem; color: #5f6368; }
.grev-title { font-weight: 600; color: #202124; margin: 0.55rem 0 0.1rem; }
.grev-body { color: #3c4043; font-size: 0.95rem; line-height: 1.55; margin: 0.35rem 0 0; }

@media (max-width: 640px) { .grev-grid { grid-template-columns: 1fr; } }
