/* ============================================================
   Marietta Tire Company — Design System v2
   Font: Manrope
   Philosophy: Clean, local-business professional. Red as accent only.
   ============================================================ */

:root {
  --red:       #C8102E;
  --red-deep:  #A50D25;
  --black:     #141414;
  --ink:       #1E1E1E;
  --gray-dk:   #3D3D3D;
  --gray-mid:  #767676;
  --gray-lt:   #F4F4F4;
  --gray-line: #E8E8E8;
  --white:     #FFFFFF;
  --surface:   #FAFAFA;
  --font: 'Manrope', sans-serif;
  --max:  1180px;
  --r:    6px;
  --ease: 0.18s ease;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: var(--font); cursor: pointer; border: none; background: none; }
h1, h2, h3, h4, h5 { font-weight: 700; line-height: 1.2; color: var(--black); }
h1 { font-size: clamp(2rem, 4.5vw, 3.2rem); letter-spacing: -0.025em; }
h2 { font-size: clamp(1.5rem, 3vw, 2.3rem);  letter-spacing: -0.02em; }
h3 { font-size: clamp(1rem, 2vw, 1.25rem);   letter-spacing: -0.01em; }
h4 { font-size: 0.95rem; font-weight: 700; }
p  { color: var(--gray-dk); }

.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.overline {
  display: block;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 12px 24px;
  border-radius: var(--r);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background var(--ease), color var(--ease), border-color var(--ease);
  white-space: nowrap;
}
.btn-red   { background: var(--red); color: var(--white); border-color: var(--red); }
.btn-red:hover { background: var(--red-deep); border-color: var(--red-deep); }
.btn-ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.4); }
.btn-ghost:hover { border-color: var(--white); background: rgba(255,255,255,0.07); }
.btn-light { background: transparent; color: var(--ink); border-color: var(--gray-line); }
.btn-light:hover { border-color: var(--ink); }

/* ============================================================
   TOP INFO BAR
   ============================================================ */
.top-bar {
  background: var(--black);
  border-bottom: 1px solid #222;
  padding: 8px 24px;
}
.top-bar-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}
.tbi {
  font-size: 0.75rem;
  color: #888;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 16px 0 0;
}
.tbi:not(:last-child) {
  border-right: 1px solid #2a2a2a;
  margin-right: 16px;
}
.tbi strong { color: #C0C0C0; font-weight: 600; }
.tbi a { color: #C0C0C0; transition: color var(--ease); }
.tbi a:hover { color: var(--white); }

/* ============================================================
   NAVIGATION
   ============================================================ */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--black);
  border-bottom: 1px solid #252525;
}
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
  height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo img {
  height:100px;
  width: auto;
  display: block;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  font-size: 0.83rem;
  font-weight: 600;
  color: #999;
  padding: 7px 13px;
  border-radius: 5px;
  transition: color var(--ease), background var(--ease);
}
.nav-links a:hover, .nav-links a.active {
  color: var(--white);
  background: rgba(255,255,255,0.07);
}
.nav-actions { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.nav-phone {
  font-size: 0.83rem;
  font-weight: 700;
  color: var(--white);
  transition: color var(--ease);
}
.nav-phone:hover { color: #CCC; }
.nav-book {
  background: var(--red);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 9px 17px;
  border-radius: var(--r);
  transition: background var(--ease);
}
.nav-book:hover { background: var(--red-deep); }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--ease);
}

@media (max-width: 860px) {
  .top-bar { display: none; }
  .nav-links {
    display: none;
    position: absolute;
    top: 66px; left: 0; right: 0;
    background: #1A1A1A;
    flex-direction: column;
    align-items: stretch;
    padding: 8px 16px 16px;
    border-bottom: 1px solid #2a2a2a;
    gap: 2px;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 14px; font-size: 0.95rem; }
  .nav-toggle { display: flex; }
  .nav-phone { display: none; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: var(--black);
  color: var(--white);
  padding: 96px 24px 88px;
  position: relative;
  overflow: hidden;
}
/*
  PHOTO READY: replace background above with:
  background:
    linear-gradient(to right, rgba(15,15,15,0.93) 42%, rgba(15,15,15,0.5)),
    url('../images/shop.jpg') center/cover no-repeat;
*/
.hero-inner {
  max-width: 720px;
  position: relative;
  z-index: 1;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 26px;
}
.hero-tag::before {
  content: '';
  display: block;
  width: 22px; height: 2px;
  background: var(--red);
  border-radius: 2px;
  flex-shrink: 0;
}
.hero h1 {
  color: var(--white);
  font-weight: 800;
  max-width: 18ch;
  margin-bottom: 20px;
}
.hero-sub {
  font-size: 1.02rem;
  color: rgba(255,255,255,0.58);
  max-width: 52ch;
  margin-bottom: 36px;
  line-height: 1.75;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}
.hero-details {
  display: flex;
  gap: 40px;
  margin-top: 60px;
  padding-top: 36px;
  border-top: 1px solid #232323;
  flex-wrap: wrap;
}
.hero-detail { display: flex; flex-direction: column; gap: 3px; }
.hero-detail .hd-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #484848;
}
.hero-detail .hd-value {
  font-size: 0.88rem;
  font-weight: 600;
  color: #B8B8B8;
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--red);
  padding: 13px 24px;
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}
.trust-bar-inner span {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.88);
  padding: 4px 22px;
  white-space: nowrap;
}
.trust-bar-inner span:not(:last-child) {
  border-right: 1px solid rgba(255,255,255,0.2);
}

/* ============================================================
   SERVICES
   ============================================================ */
.services-section { padding: 96px 24px; }
.section-hd { margin-bottom: 52px; }
.section-hd p { margin-top: 10px; font-size: 0.975rem; color: var(--gray-mid); max-width: 58ch; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.svc-card {
  background: var(--white);
  border: 1.5px solid var(--gray-line);
  border-radius: 10px;
  padding: 32px 28px;
  transition: border-color var(--ease), box-shadow var(--ease), transform var(--ease);
  display: flex;
  flex-direction: column;
}
.svc-card:hover {
  border-color: rgba(200,16,46,0.28);
  box-shadow: 0 8px 28px rgba(0,0,0,0.07);
  transform: translateY(-2px);
}
.svc-icon {
  width: 46px;
  height: 46px;
  background: var(--gray-lt);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  margin-bottom: 20px;
  flex-shrink: 0;
  transition: background var(--ease);
}
.svc-card:hover .svc-icon { background: rgba(200,16,46,0.07); }
.svc-card h3 { font-size: 1rem; margin-bottom: 10px; }
.svc-card p {
  font-size: 0.855rem;
  color: var(--gray-mid);
  line-height: 1.65;
  max-width: none;
  flex: 1;
  margin-bottom: 20px;
}
.svc-link {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: gap var(--ease);
  align-self: flex-start;
}
.svc-card:hover .svc-link { gap: 8px; }

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

/* ============================================================
   TIRES FEATURE
   ============================================================ */
.tires-section {
  background: var(--gray-lt);
  border-top: 1px solid var(--gray-line);
  border-bottom: 1px solid var(--gray-line);
  padding: 100px 24px;
}
.tires-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.tires-visual {
  background: #DCDCDC;
  border-radius: var(--r);
  aspect-ratio: 5/4;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.tires-visual img { width: 100%; height: 100%; object-fit: cover; }
.tires-content h2 { margin-bottom: 16px; }
.tires-content > p {
  color: var(--gray-mid);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: none;
}
.tire-types {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 32px;
}
.tire-type-card {
  background: var(--white);
  border: 1px solid var(--gray-line);
  border-radius: var(--r);
  padding: 20px;
}
.tire-type-card h4 { margin-bottom: 6px; font-size: 0.9rem; }
.tire-type-card p { font-size: 0.82rem; color: var(--gray-mid); max-width: none; margin: 0; line-height: 1.5; }
@media (max-width: 768px) { .tires-inner { grid-template-columns: 1fr; gap: 40px; } }

/* ============================================================
   TRUST
   ============================================================ */
.trust-section {
  padding: 100px 24px;
  border-top: 1px solid var(--gray-line);
}
.trust-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 80px;
  align-items: start;
}
.trust-intro h2 { margin-bottom: 14px; }
.trust-intro p { font-size: 0.93rem; color: var(--gray-mid); max-width: none; line-height: 1.7; }
.trust-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 48px;
}
.tp h4 {
  font-size: 0.92rem;
  margin-bottom: 7px;
  padding-left: 14px;
  position: relative;
}
.tp h4::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px; height: 13px;
  background: var(--red);
  border-radius: 2px;
}
.tp p { font-size: 0.855rem; color: var(--gray-mid); max-width: none; line-height: 1.6; }
@media (max-width: 860px) { .trust-inner { grid-template-columns: 1fr; gap: 40px; } }
@media (max-width: 520px)  { .trust-points { grid-template-columns: 1fr; } }

/* ============================================================
   LOCATION
   ============================================================ */
.location-section {
  padding: 100px 24px;
  background: var(--gray-lt);
  border-top: 1px solid var(--gray-line);
}
.location-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.map-frame {
  border-radius: var(--r);
  overflow: hidden;
  border: 1px solid var(--gray-line);
  aspect-ratio: 4/3;
  background: #D8D8D8;
}
.map-frame iframe { width: 100%; height: 100%; border: none; display: block; }
.loc-content h2 { margin-bottom: 36px; }
.loc-item { margin-bottom: 26px; }
.loc-item:last-of-type { margin-bottom: 0; }
.loc-label {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-mid);
  margin-bottom: 5px;
}
.loc-val { font-size: 0.93rem; color: var(--ink); font-weight: 500; }
.loc-val a { transition: color var(--ease); }
.loc-val a:hover { color: var(--red); }
.hours-list { display: grid; gap: 4px; }
.h-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  padding: 8px 0;
  border-bottom: 1px solid var(--gray-line);
}
.h-row:last-child { border-bottom: none; }
.h-row .day { color: var(--gray-mid); font-weight: 500; }
.h-row .time { color: var(--ink); font-weight: 600; }
.loc-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
@media (max-width: 768px) { .location-inner { grid-template-columns: 1fr; gap: 40px; } }

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews-section {
  padding: 100px 24px;
  border-top: 1px solid var(--gray-line);
}

/* ============================================================
   CTA STRIP
   ============================================================ */
.cta-strip {
  background: var(--black);
  padding: 72px 24px;
  border-top: 3px solid var(--red);
}
.cta-strip-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-strip h2 { color: var(--white); font-size: clamp(1.3rem, 2.5vw, 1.9rem); margin-bottom: 6px; }
.cta-strip p  { color: #666; font-size: 0.92rem; max-width: none; }
.cta-actions  { display: flex; gap: 12px; flex-wrap: wrap; flex-shrink: 0; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #0D0D0D;
  color: var(--white);
  padding: 64px 24px 32px;
  border-top: 1px solid #1C1C1C;
}
.footer-inner { max-width: var(--max); margin: 0 auto; }
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid #1C1C1C;
  margin-bottom: 28px;
}
.footer-logo { height: 72px; width: auto; margin-bottom: 18px; }
.footer-brand p { font-size: 0.85rem; color: #555; max-width: 30ch; line-height: 1.65; margin: 0; }
.footer-col h5 {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #444;
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 9px; }
.footer-col a  { font-size: 0.85rem; color: #666; font-weight: 500; transition: color var(--ease); }
.footer-col a:hover { color: var(--white); }
.footer-col p  { font-size: 0.85rem; color: #555; line-height: 1.6; margin-bottom: 6px; max-width: none; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 0.75rem; color: #3A3A3A; max-width: none; margin: 0; }
.footer-bottom a { font-size: 0.75rem; color: #444; font-weight: 600; transition: color var(--ease); }
.footer-bottom a:hover { color: var(--white); }
.footer-socials { display: flex; align-items: center; gap: 14px; }
.footer-socials a { color: #444; transition: color var(--ease); line-height: 0; }
.footer-socials a:hover { color: var(--white); }
@media (max-width: 860px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px)  { .footer-top { grid-template-columns: 1fr; } }

/* ============================================================
   INTERIOR PAGE HERO
   ============================================================ */
.page-hero {
  background: var(--black);
  padding: 56px 24px;
  border-bottom: 1px solid #252525;
}
.page-hero-inner { max-width: var(--max); margin: 0 auto; }
.page-hero h1 { color: var(--white); font-size: clamp(1.6rem, 3vw, 2.3rem); margin-bottom: 8px; }
.page-hero p  { color: #777; font-size: 0.95rem; max-width: 56ch; margin: 0; }

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.services-page { padding: 80px 24px; }
.services-page-inner { max-width: var(--max); margin: 0 auto; }
.svc-block {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 48px;
  padding: 52px 0;
  border-bottom: 1px solid var(--gray-line);
  align-items: start;
}
.svc-block:first-child { padding-top: 0; }
.svc-block:last-child  { border-bottom: none; padding-bottom: 0; }
.svc-block h3 { margin-bottom: 8px; }
.svc-tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-mid);
  background: var(--gray-lt);
  padding: 4px 9px;
  border-radius: 3px;
}
.svc-block-desc {
  font-size: 0.93rem;
  color: var(--gray-mid);
  line-height: 1.75;
  margin-bottom: 24px;
  max-width: 68ch;
}
.svc-block-actions { display: flex; gap: 12px; flex-wrap: wrap; }
@media (max-width: 680px) { .svc-block { grid-template-columns: 1fr; gap: 14px; } }

/* ============================================================
   TIRES PAGE
   ============================================================ */
.tires-page { padding: 80px 24px; }
.tires-page-inner { max-width: var(--max); margin: 0 auto; }
.tire-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 52px;
}
.tire-card {
  background: var(--white);
  border: 1.5px solid var(--gray-line);
  border-radius: var(--r);
  padding: 32px;
}
.tire-card h3 { margin-bottom: 12px; }
.tire-card p { font-size: 0.9rem; color: var(--gray-mid); line-height: 1.68; margin-bottom: 24px; max-width: none; }
@media (max-width: 580px) { .tire-cards { grid-template-columns: 1fr; } }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-page { padding: 80px 24px; }
.about-inner { max-width: 800px; margin: 0 auto; }
.about-inner h2 { margin-bottom: 18px; }
.about-inner p { font-size: 0.95rem; color: var(--gray-mid); margin-bottom: 18px; line-height: 1.8; max-width: none; }
.about-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 52px;
  padding-top: 48px;
  border-top: 1px solid var(--gray-line);
}
.about-pt { border-left: 3px solid var(--red); padding-left: 18px; }
.about-pt h4 { margin-bottom: 7px; font-size: 0.93rem; }
.about-pt p { font-size: 0.84rem; color: var(--gray-mid); max-width: none; margin: 0; line-height: 1.6; }
@media (max-width: 600px) { .about-points { grid-template-columns: 1fr; } }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-page { padding: 80px 24px; }
.contact-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
@media (max-width: 768px) { .contact-inner { grid-template-columns: 1fr; } }

/* ============================================================
   FORMS
   ============================================================ */
.form-page { padding: 80px 24px; background: var(--surface); }
.form-wrap { max-width: 640px; margin: 0 auto; }
.form-note-box {
  background: var(--white);
  border: 1px solid var(--gray-line);
  border-radius: var(--r);
  padding: 22px 24px;
  margin-bottom: 28px;
  font-size: 0.875rem;
  color: var(--gray-mid);
  line-height: 1.7;
}
.form-note-box a { color: var(--red); font-weight: 600; }
form {
  background: var(--white);
  border: 1px solid var(--gray-line);
  border-radius: var(--r);
  padding: 32px;
}
.fg { margin-bottom: 18px; }
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--ink);
  margin-bottom: 6px;
}
.req { color: var(--red); }
input, select, textarea {
  width: 100%;
  font-family: var(--font);
  font-size: 0.88rem;
  color: var(--ink);
  background: var(--white);
  border: 1.5px solid var(--gray-line);
  border-radius: var(--r);
  padding: 11px 13px;
  transition: border-color var(--ease);
  -webkit-appearance: none;
  appearance: none;
}
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--ink); }
textarea { resize: vertical; min-height: 110px; }
select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath d='M1 1l5 4.5L11 1' stroke='%23767676' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}
.form-submit { margin-top: 26px; }
.form-fine {
  margin-top: 12px;
  font-size: 0.76rem;
  color: var(--gray-mid);
  line-height: 1.6;
}
.form-fine a { color: var(--red); }
@media (max-width: 520px) { .frow { grid-template-columns: 1fr; } }

/* ============================================================
   THANK YOU
   ============================================================ */
.ty-page { padding: 120px 24px; text-align: center; }
.ty-icon {
  width: 56px; height: 56px;
  background: #F1FAF3;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 28px;
  font-size: 1.5rem;
}
.ty-page h1 { margin-bottom: 14px; }
.ty-page p { font-size: 0.975rem; color: var(--gray-mid); max-width: 48ch; margin: 0 auto 36px; }
.ty-actions { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }

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

/* Reviews CTA */
.reviews-cta {
  padding: 52px 0 24px;
  border-top: 1px solid var(--gray-line);
  text-align: center;
}
.reviews-stars {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 16px;
}
.reviews-cta-text {
  font-size: 0.92rem;
  color: var(--gray-mid);
  max-width: 44ch;
  margin: 0 auto 22px;
  line-height: 1.65;
}

.legal-body h2 {
  font-size: 1.1rem;
  margin-top: 36px;
  margin-bottom: 10px;
  color: var(--black);
}

.legal-body p {
  font-size: 0.9rem;
  color: var(--gray-mid);
  line-height: 1.75;
  margin-bottom: 14px;
  max-width: none;
}

.legal-body ul {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 14px;
}

.legal-body ul li {
  font-size: 0.9rem;
  color: var(--gray-mid);
  line-height: 1.75;
  margin-bottom: 4px;
}

.legal-body a {
  color: var(--red);
}


