/* Polk County Golf Carts — design system
   Palette pulled from the PCGC logo: coral/salmon for accents, deep teal
   for headings/links, warm off-white background, near-black body text.
   System fonts only — no third-party requests, sub-1s LCP target.
*/
:root {
  --bg:        #fbf8f3;
  --bg-alt:    #fff;
  --ink:       #1a1a1a;
  --ink-soft:  #4a4a4a;
  --coral:     #e85a4f;
  --coral-dk:  #c4453b;
  --teal:      #2e7a8a;
  --teal-dk:   #1f5a68;
  --line:      #e6dfd4;
  --warn-bg:   #fff4e6;
  --shadow:    0 2px 12px rgba(31, 90, 104, .08);
  --shadow-lg: 0 8px 30px rgba(31, 90, 104, .14);
  --radius:    10px;
  --maxw:      1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font: 16px/1.55 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--teal-dk); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--teal-dk);
  line-height: 1.15;
  margin: 0 0 .5em;
  letter-spacing: -.01em;
}
h1 { font-size: clamp(2rem, 4.6vw, 3.4rem); }
h2 { font-size: clamp(1.5rem, 3.2vw, 2.25rem); margin-top: 0; }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1em; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 1.25rem; }

/* Top banner */
.banner {
  background: var(--coral);
  color: #fff;
  text-align: center;
  font-weight: 600;
  font-size: .92rem;
  padding: .55rem 1rem;
  letter-spacing: .02em;
}
.banner a { color: #fff; text-decoration: underline; }

/* Header / nav */
.site-header {
  background: var(--bg-alt);
  border-bottom: 1px solid var(--line);
  position: sticky; top: 0; z-index: 50;
}
.site-header .container {
  display: flex; align-items: center; gap: 1.5rem;
  padding-top: .75rem; padding-bottom: .75rem;
}
.brand { display: flex; align-items: center; gap: .65rem; text-decoration: none; }
.brand:hover { text-decoration: none; }
.brand-mark {
  width: 144px; height: 112px;
  object-fit: contain;
  flex-shrink: 0;
  margin: -.5rem 0; /* keep the header itself the same height */
}
.brand-text {
  font-family: "GROBOLD", "Grobold", Georgia, "Times New Roman", serif;
  font-weight: 400;
  color: var(--coral);
  line-height: 1.05;
  font-size: 1.35rem;
  letter-spacing: .01em;
}
.brand-text small {
  display: block;
  color: var(--teal-dk);
  font-weight: 400;
  font-size: .68rem;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-top: .2rem;
}
@media (max-width: 760px) {
  .brand-text { font-size: 1.1rem; }
  .brand-mark { width: 96px; height: 76px; margin: -.4rem 0; }
}

nav.primary { margin-left: auto; display: flex; gap: 1.25rem; align-items: center; }
nav.primary a {
  color: var(--ink);
  font-weight: 500;
  font-size: .98rem;
  padding: .25rem 0;
  white-space: nowrap;
}
nav.primary a.cta {
  background: var(--coral); color: #fff; padding: .55rem 1rem;
  border-radius: var(--radius); font-weight: 600;
}
nav.primary a.cta:hover { background: var(--coral-dk); text-decoration: none; }

@media (max-width: 760px) {
  nav.primary { gap: .9rem; }
  nav.primary a:not(.cta) { display: none; }
  .brand-text small { display: none; }
}

/* Hero */
.hero {
  background: linear-gradient(135deg, #1f5a68 0%, #2e7a8a 60%, #3b8fa1 100%);
  color: #fff;
  padding: 4.5rem 0 5rem;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 30%, rgba(232, 90, 79, .18), transparent 50%);
  pointer-events: none;
}
.hero::before {
  content: ""; position: absolute;
  right: -40px; bottom: -40px;
  width: 320px; height: 240px;
  background: url("/assets/logos/logo-white.svg") no-repeat center / contain;
  opacity: .07;
  pointer-events: none;
  z-index: 0;
}
.hero .container { position: relative; z-index: 1; }
.hero h1 { color: #fff; max-width: 22ch; }
.hero .lede {
  font-size: clamp(1.1rem, 1.7vw, 1.3rem);
  max-width: 56ch;
  color: rgba(255,255,255,.94);
  margin-bottom: 2rem;
}
.hero-ctas { display: flex; gap: .75rem; flex-wrap: wrap; }
.hero-meta {
  margin-top: 2rem; display: flex; gap: 2rem; flex-wrap: wrap;
  font-size: .92rem; color: rgba(255,255,255,.85);
}
.hero-meta b { color: #fff; font-weight: 600; }

/* Buttons */
.btn {
  display: inline-block;
  padding: .85rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .08s ease, background .15s ease, border-color .15s ease;
}
.btn:hover { transform: translateY(-1px); text-decoration: none; }
.btn-coral { background: var(--coral); color: #fff; }
.btn-coral:hover { background: var(--coral-dk); }
.btn-outline { background: transparent; color: #fff; border-color: rgba(255,255,255,.6); }
.btn-outline:hover { border-color: #fff; background: rgba(255,255,255,.08); }
.btn-teal { background: var(--teal-dk); color: #fff; }
.btn-teal:hover { background: var(--teal); }
.btn-ghost { background: transparent; color: var(--teal-dk); border-color: var(--teal-dk); }
.btn-ghost:hover { background: var(--teal-dk); color: #fff; }

/* Section blocks */
section { padding: 4rem 0; }
section.tight { padding: 2.5rem 0; }
section.alt { background: var(--bg-alt); }
.section-head { max-width: 60ch; margin-bottom: 2.5rem; }
.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .78rem;
  font-weight: 700;
  color: var(--coral);
  margin-bottom: .8rem;
}

/* Brand divider — mono cart silhouette flanked by hairlines */
.divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 2.5rem auto;
  max-width: 280px;
}
.divider::before, .divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}
.divider img { width: 64px; height: 48px; object-fit: contain; opacity: .55; }
section.alt .divider::before, section.alt .divider::after { background: var(--line); }
.lede-text { font-size: 1.12rem; color: var(--ink-soft); }

/* Card grid */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.25rem; }
.card {
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-top: 3px solid var(--coral);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  transition: transform .15s ease, box-shadow .15s ease;
}
.card:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.card.alt { border-top-color: var(--teal-dk); }
.card .icon {
  display: block;
  background: none;
  color: var(--coral);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: .65rem;
  width: auto; height: auto;
}
.card.alt .icon { color: var(--teal-dk); }
.card h3 { margin-bottom: .35rem; }
.card p { color: var(--ink-soft); margin: 0; }

/* Feature list */
ul.checks { list-style: none; padding: 0; margin: 0 0 1.5rem; }
ul.checks li {
  padding-left: 1.75rem; position: relative; margin-bottom: .55rem;
  color: var(--ink);
}
ul.checks li::before {
  content: "✓"; position: absolute; left: 0;
  color: var(--coral); font-weight: 700;
}

/* Pricing box */
.price-box {
  background: var(--bg-alt);
  border: 2px solid var(--coral);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.price-box .price {
  font-family: Georgia, serif;
  font-size: 3rem; color: var(--teal-dk); font-weight: 700;
  display: block; line-height: 1;
  margin: .25rem 0;
}
.price-box .price small { font-size: .9rem; color: var(--ink-soft); font-weight: 400; }

/* Testimonial */
.tm-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.25rem; }
.tm {
  background: var(--bg-alt);
  border-left: 4px solid var(--coral);
  padding: 1.5rem;
  border-radius: 6px;
  box-shadow: var(--shadow);
}
.tm .stars { color: #f5a623; letter-spacing: .1em; margin-bottom: .65rem; font-size: 1.05rem; }
.tm .quote { color: var(--ink); font-size: .98rem; margin-bottom: .85rem; }
.tm .cite { color: var(--ink-soft); font-size: .88rem; font-style: italic; }

/* Hero with image */
.hero-split { display: grid; grid-template-columns: 1.1fr 1fr; gap: 3rem; align-items: center; }
.hero-split img { border-radius: var(--radius); box-shadow: var(--shadow-lg); transform: rotate(-1.5deg); }
@media (max-width: 800px) { .hero-split { grid-template-columns: 1fr; } .hero-split img { transform: none; } }

/* Photo block */
.photo-block { position: relative; }
.photo-block img { border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.photo-block .caption {
  position: absolute; bottom: 1rem; left: 1rem; right: 1rem;
  background: rgba(20, 50, 58, .92); color: #fff;
  padding: .75rem 1rem; border-radius: 6px;
  font-size: .92rem;
}

/* Gallery row */
.gallery {
  display: grid; grid-template-columns: 2fr 1fr; gap: 1rem;
  margin-top: 2rem;
}
.gallery img { border-radius: var(--radius); box-shadow: var(--shadow); object-fit: cover; width: 100%; height: 100%; max-height: 520px; }
.gallery .b { display: grid; grid-template-rows: 1fr 1fr; gap: 1rem; }
@media (max-width: 700px) { .gallery { grid-template-columns: 1fr; } .gallery .b { grid-template-rows: auto; grid-template-columns: 1fr 1fr; } }

/* Photo grid (gallery) */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.photo-grid img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform .2s ease;
}
.photo-grid img:hover { transform: scale(1.02); }
@media (max-width: 800px) { .photo-grid { grid-template-columns: repeat(2, 1fr); } .photo-grid img { height: 220px; } }
@media (max-width: 500px) { .photo-grid { grid-template-columns: 1fr; } }

/* Two-column split */
.split { display: grid; grid-template-columns: 1.1fr 1fr; gap: 3rem; align-items: center; }
.split.reverse { grid-template-columns: 1fr 1.1fr; }
@media (max-width: 800px) { .split, .split.reverse { grid-template-columns: 1fr; gap: 1.5rem; } }

/* Color swatches */
.swatches { display: flex; flex-wrap: wrap; gap: .75rem; margin: 1rem 0 1.5rem; }
.swatch {
  display: flex; align-items: center; gap: .6rem;
  background: var(--bg-alt); border: 1px solid var(--line);
  padding: .5rem .85rem; border-radius: 24px; font-size: .9rem;
}
.swatch .dot { width: 18px; height: 18px; border-radius: 50%; border: 1px solid rgba(0,0,0,.1); }

/* Contact strip */
.contact-strip {
  background: var(--teal-dk); color: #fff;
  position: relative; overflow: hidden;
}
.contact-strip::before {
  content: ""; position: absolute;
  left: -30px; top: 50%; transform: translateY(-50%);
  width: 200px; height: 150px;
  background: url("/assets/logos/logo-white.svg") no-repeat center / contain;
  opacity: .08;
  pointer-events: none;
}
.contact-strip .container {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem; padding-top: 2.5rem; padding-bottom: 2.5rem;
  position: relative; z-index: 1;
}
.contact-strip h3 { color: #fff; font-size: 1.05rem; margin-bottom: .4rem; }
.contact-strip a { color: #fff; }
.contact-strip .big { font-size: 1.45rem; font-weight: 700; font-family: Georgia, serif; }

/* Footer */
.foot-mark { width: 110px; height: auto; display: block; margin-bottom: .85rem; opacity: 1; }
.brand-text-foot {
  font-family: "GROBOLD", "Grobold", Georgia, serif !important;
  color: #fff !important;
  font-size: 1.35rem !important;
  font-weight: 400 !important;
  letter-spacing: .01em;
  margin-bottom: .65rem !important;
}
.site-footer { background: #14323a; color: rgba(255,255,255,.7); padding: 3rem 0 1.5rem; font-size: .92rem; }
.site-footer h4 { color: #fff; font-family: inherit; font-size: 1rem; margin-bottom: .75rem; }
.site-footer a { color: rgba(255,255,255,.85); }
.foot-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2rem; margin-bottom: 2rem; }
.foot-grid ul { list-style: none; padding: 0; margin: 0; }
.foot-grid li { margin-bottom: .35rem; }
.foot-bot { border-top: 1px solid rgba(255,255,255,.1); padding-top: 1.25rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: .5rem; font-size: .82rem; }
@media (max-width: 720px) { .foot-grid { grid-template-columns: 1fr 1fr; } }

/* Utility */
.center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.muted { color: var(--ink-soft); }
/* Official BBB seal — image-based, served from BBB's own CDN per
   their attribution requirements. Two placements:
   - default (cream cards / About page): seal sits on a thin white
     card so the blue art has a stable background regardless of the
     parent block's color.
   - .bbb-seal-foot: footer variant; the seal sits on a white pill
     so it stays readable on the dark teal footer band. */
.bbb-seal {
  display: inline-block;
  line-height: 0;            /* kills the bottom-of-image gap */
  border-radius: 6px;
  overflow: hidden;
  text-decoration: none;
  transition: transform .15s ease;
}
.bbb-seal:hover { transform: translateY(-1px); text-decoration: none; }
.bbb-seal img {
  display: block;
  max-width: 100%;
  height: auto;              /* respect aspect on small viewports */
}
.bbb-seal-foot {
  background: #fff;
  padding: 6px 8px;
  margin-top: .65rem;
  box-shadow: 0 2px 8px rgba(0,0,0,.2);
}
@media (max-width: 480px) { .bbb-seal img { max-width: 240px; } }

/* ===================================================================
   /breezy-ev/ product pages — lineup cards, spec grid, comparison
   table, and FAQ accordion. All scoped to .breezy-* / .spec-* /
   .compare-* / .faq-* so they don't fight the rest of the site.
   =================================================================== */

.breezy-grid { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.breezy-card { padding: 0 !important; overflow: hidden; text-decoration: none; color: inherit; display: flex; flex-direction: column; }
.breezy-card:hover { text-decoration: none; }
.breezy-card img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
  display: block; background: var(--bg);
}
.breezy-card .card-body { padding: 1.1rem 1.25rem 1.35rem; }
.breezy-card h3 { margin-bottom: .25rem; }
.breezy-card .checks.compact { margin: .5rem 0 .75rem; font-size: .88rem; }
.breezy-card .checks.compact li { margin-bottom: .25rem; padding-left: 1.25rem; }
.breezy-card .checks.compact li::before { font-size: .9rem; }
.breezy-card .price-line { font-size: .95rem; margin: 0; color: var(--ink); }
.breezy-card .price-line b { color: var(--teal-dk); font: 700 1.05rem Georgia, serif; }

.spec-grid {
  display: grid; gap: .75rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.spec {
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-top: 3px solid var(--coral);
  border-radius: 10px;
  padding: 1rem 1.1rem;
}
.spec b {
  display: block;
  font-size: .72rem; letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-soft); margin-bottom: .35rem;
  font-family: -apple-system, sans-serif; font-weight: 700;
}
.spec span { font: 600 1rem inherit; color: var(--ink); }

.compare-wrap { overflow-x: auto; }
.compare-table {
  width: 100%; border-collapse: collapse;
  font-size: .92rem; min-width: 720px;
  background: var(--bg-alt);
  border-radius: 10px; overflow: hidden;
  box-shadow: var(--shadow);
}
.compare-table thead th {
  background: var(--teal-dk); color: #fff;
  padding: .85rem 1rem; text-align: left;
  font: 700 1rem Georgia, serif;
}
.compare-table tbody th {
  background: var(--bg); color: var(--ink-soft);
  text-align: left; padding: .7rem 1rem;
  font: 700 .8rem -apple-system, sans-serif;
  letter-spacing: .08em; text-transform: uppercase;
  border-bottom: 1px solid var(--line);
  white-space: nowrap;
}
.compare-table tbody td {
  padding: .7rem 1rem; color: var(--ink);
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
.compare-table tbody tr:last-child th,
.compare-table tbody tr:last-child td { border-bottom: none; }

.faq-list { display: grid; gap: .65rem; max-width: 880px; }
.faq {
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-left: 4px solid var(--coral);
  border-radius: 8px;
  padding: 0;
}
.faq summary {
  cursor: pointer;
  padding: 1rem 1.25rem;
  font: 600 1.02rem Georgia, serif;
  color: var(--teal-dk);
  list-style: none;
  display: flex; justify-content: space-between; align-items: center;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  color: var(--coral); font-size: 1.5rem; font-weight: 700;
  margin-left: 1rem;
  transition: transform .15s ease;
}
.faq[open] summary::after { content: "−"; }
.faq-body { padding: 0 1.25rem 1.1rem; color: var(--ink); line-height: 1.65; }
.faq-body p { margin: 0; }


/* Lineup slideshow — three-part layout:
   1. Stage: a 4:3 image-only crossfade frame (object-fit: contain so
      every cart shows at the same effective size, even if the source
      crops differ).
   2. Info block: model name + tagline + view link sits BELOW the
      stage, updates as the slideshow rotates.
   3. Controls: dot indicators + a countdown bar/numeric ticker that
      drains over the autoplay interval.

   All paused on hover/focus/touch. Honors prefers-reduced-motion. */

.lineup-slideshow {
  position: relative;
  display: flex;
  flex-direction: column;
  background: transparent;
}

.slideshow-stage {
  position: relative;
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, #f4f1ea 0%, #e9e5dc 100%);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.slideshow-stage .slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity .55s ease;
  display: block;
  text-decoration: none;
  color: inherit;
}
.slideshow-stage .slide.is-active { opacity: 1; z-index: 2; }
.slideshow-stage .slide img {
  width: 100%; height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  background: transparent;
  /* Override the hero-split tilt for slideshow images so they sit
     uniformly in the stage. */
  transform: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}

/* Stage arrows (prev/next), only visible on hover/focus */
.slideshow-stage .slide-arrow {
  position: absolute;
  top: 50%;
  width: 40px; height: 40px;
  transform: translateY(-50%);
  background: rgba(20, 50, 58, .55);
  color: #fff;
  border: none;
  border-radius: 50%;
  font: 700 1.55rem/1 inherit;
  cursor: pointer;
  z-index: 5;
  opacity: 0;
  transition: opacity .2s ease, background .15s ease;
}
.slideshow-stage:hover .slide-arrow,
.lineup-slideshow:focus-within .slide-arrow { opacity: 1; }
.slideshow-stage .slide-arrow:hover { background: var(--coral); }
.slideshow-stage .slide-prev { left: .75rem; }
.slideshow-stage .slide-next { right: .75rem; }

/* Info block — name + meta + view link, below the stage */
.slide-info {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.1rem;
  margin-top: .85rem;
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-left: 4px solid var(--coral);
  border-radius: var(--radius);
}
.slide-info-text { display: flex; flex-direction: column; gap: .15rem; min-width: 0; }
.slide-info-name {
  font: 700 1.15rem Georgia, serif;
  color: var(--teal-dk);
  display: block;
}
.slide-info-meta {
  font: 500 .88rem -apple-system, sans-serif;
  color: var(--ink-soft);
}
.slide-info-link {
  background: var(--coral);
  color: #fff;
  border-radius: 999px;
  padding: .55rem 1.15rem;
  font: 600 .9rem -apple-system, sans-serif;
  text-decoration: none;
  white-space: nowrap;
  transition: background .15s ease;
}
.slide-info-link:hover { background: var(--coral-dk); text-decoration: none; }

/* Controls row — dots + countdown */
.slide-controls {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
  margin-top: .85rem;
  padding: 0 .25rem;
}
.slide-dots { display: flex; gap: .5rem; }
.slide-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(20, 50, 58, .25);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background .15s ease, transform .15s ease, width .15s ease;
}
.slide-dot:hover { transform: scale(1.2); }
.slide-dot.is-active {
  background: var(--coral);
  width: 26px;
  border-radius: 5px;
}

/* Countdown */
.slide-countdown {
  display: flex; align-items: center; gap: .65rem;
  font: 500 .8rem -apple-system, sans-serif;
  color: var(--ink-soft);
  flex: 0 1 auto;
}
.slide-countdown-label { white-space: nowrap; }
.slide-countdown-label b {
  display: inline-block; min-width: 1.05em; text-align: right;
  color: var(--coral); font-weight: 700;
  font-variant-numeric: tabular-nums;
}
.slide-countdown-track {
  flex: 1;
  width: 90px;
  height: 4px;
  background: rgba(20, 50, 58, .12);
  border-radius: 2px;
  overflow: hidden;
}
.slide-countdown-bar {
  height: 100%;
  width: 100%;
  background: var(--coral);
  border-radius: 2px;
}

@media (max-width: 700px) {
  .slide-info { padding: .85rem 1rem; }
  .slide-info-name { font-size: 1.05rem; }
  .slide-controls { flex-wrap: wrap; gap: .65rem; }
  .slide-countdown-track { width: 60px; }
  .slideshow-stage .slide-arrow { opacity: 1; width: 34px; height: 34px; font-size: 1.3rem; }
}

/* /guides/<slug>/ pillar articles — long-form typography + table of
   contents nav. Wraps the article in a narrow column so line lengths
   stay readable (~65-75 chars). */
.guide { padding: 1rem 0 3rem; }
.guide-toc {
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-left: 4px solid var(--coral);
  border-radius: 8px;
  padding: 1.1rem 1.4rem;
  margin: 0 0 2.5rem;
  display: flex; flex-direction: column; gap: .4rem;
  font-size: .92rem;
}
.guide-toc b {
  display: block;
  font: 600 .78rem -apple-system, sans-serif;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: .35rem;
}
.guide-toc a {
  display: block;
  padding: .15rem 0;
  color: var(--teal-dk);
  text-decoration: none;
  border-left: 2px solid transparent;
  padding-left: .65rem;
  transition: border-color .12s ease;
}
.guide-toc a:hover { border-left-color: var(--coral); color: var(--coral); text-decoration: none; }

.guide-section { margin: 0 0 2.25rem; scroll-margin-top: 80px; }
.guide-section h2 {
  margin: 0 0 .9rem;
  font-size: clamp(1.4rem, 2.4vw, 1.8rem);
}
.guide-section p { font-size: 1.04rem; line-height: 1.7; color: var(--ink); margin: 0 0 1rem; }
.guide-section ul,
.guide-section ol { font-size: 1.04rem; line-height: 1.7; color: var(--ink); padding-left: 1.4rem; margin: 0 0 1rem; }
.guide-section li { margin-bottom: .55rem; }
.guide-section li b { color: var(--teal-dk); }
.guide-section p b { color: var(--teal-dk); }
