/* ==========================================================================
   Dusty's Small Engines - public stylesheet
   Hand-written, no framework. Brand palette pulled from the logo:
   deep red wordmark on white, warm neutrals, gear-and-spark logo.
   System font stack - no web fonts, so zero third-party requests.
   ========================================================================== */

:root {
  /* Deep-red brand palette. --navy/--blue names are kept so the rest of the
     stylesheet doesn't need renaming; they simply hold red tones now. */
  --navy: #3a100e;              /* deep maroon (hero/footer/CTA grounds) */
  --blue: #a41f16;             /* deep red (primary buttons, links) */
  --blue-bright: #c23325;      /* brighter red (hover) */
  --ink: #241413;
  --body: #3a2f2e;
  --muted: #7a6a67;
  --cream: #f6f1ee;
  --line: #e6ddd8;
  --white: #ffffff;
  --green: #2fae57;
  --red: #c0392b;
  --amber: #e08a1e;

  --grade-s: #2fae57;
  --grade-a: #2f6f9e;          /* steel blue - distinct from the red brand */
  --grade-b: #e08a1e;
  --grade-c: #8a6a4a;

  --radius: 10px;
  --radius-lg: 16px;
  --shadow: 0 2px 8px rgba(20, 20, 50, 0.08);
  --shadow-lg: 0 8px 28px rgba(20, 20, 50, 0.14);
  --wrap: 1140px;
  --font: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--body);
  background: var(--white);
  line-height: 1.6;
  font-size: 17px;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3, h4 { color: var(--ink); line-height: 1.2; margin: 0 0 .5em; }
h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); }
h2 { font-size: clamp(1.4rem, 3vw, 2rem); }
p { margin: 0 0 1rem; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 20px; }
.narrow { max-width: 760px; }
.section { padding: 56px 0; }
.section-alt { background: var(--cream); }
.lead { font-size: 1.18rem; color: var(--body); }
.muted { color: var(--muted); }
.center { text-align: center; }
.center-block { text-align: center; padding: 40px 0; }

.skip-link {
  position: absolute; left: -9999px; top: 0; background: var(--blue);
  color: #fff; padding: 10px 16px; z-index: 200; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* --- Buttons ------------------------------------------------------------- */
.btn {
  display: inline-block; padding: 13px 24px; border-radius: var(--radius);
  font-weight: 700; font-size: 1rem; cursor: pointer; border: 2px solid transparent;
  text-align: center; transition: transform .05s ease, background .15s, box-shadow .15s;
}
.btn:hover { text-decoration: none; }
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--blue); color: #fff; }
.btn-primary:hover { background: var(--blue-bright); box-shadow: var(--shadow); }
.btn-outline { background: transparent; color: var(--blue); border-color: var(--blue); }
.btn-outline:hover { background: var(--blue); color: #fff; }
.btn-link { background: none; color: var(--blue); border: none; text-decoration: underline; }
.btn-block { display: block; width: 100%; margin-bottom: 10px; }
.btn-lg { padding: 15px 32px; font-size: 1.08rem; }

/* --- Header / nav -------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.97);
  backdrop-filter: saturate(150%) blur(6px); border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding-top: 8px; padding-bottom: 8px; }
.brand img { width: 150px; height: auto; }
.primary-nav { display: flex; align-items: center; gap: 2px; flex-wrap: nowrap; }
.primary-nav a { color: var(--ink); font-weight: 600; padding: 10px 11px; border-radius: 8px; white-space: nowrap; }
.primary-nav a:hover { background: var(--cream); text-decoration: none; }
.nav-cta { background: var(--blue); color: #fff !important; margin-left: 6px; }
.nav-cta:hover { background: var(--blue-bright) !important; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; padding: 10px; cursor: pointer; }
.nav-toggle span { width: 26px; height: 3px; background: var(--ink); border-radius: 2px; transition: .2s; }
.nav-toggle.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

@media (max-width: 1024px) {
  .brand img { width: 132px; }
  .nav-toggle { display: flex; }
  .primary-nav {
    display: none; position: absolute; left: 0; right: 0; top: 100%;
    flex-direction: column; align-items: stretch; gap: 0; background: #fff;
    border-bottom: 1px solid var(--line); box-shadow: var(--shadow-lg); padding: 8px;
  }
  .primary-nav.open { display: flex; }
  .primary-nav a { padding: 14px 12px; border-radius: 8px; white-space: normal; }
  .nav-cta { margin: 6px 0 0; text-align: center; }
}

/* --- Hero ---------------------------------------------------------------- */
.hero {
  background:
    radial-gradient(1200px 400px at 80% -10%, rgba(194,51,37,.30), transparent 60%),
    linear-gradient(160deg, var(--navy), #6e1a13 70%, var(--blue));
  color: #fff; padding: 72px 0;
}
.hero-text { max-width: 720px; }
.hero .eyebrow { text-transform: uppercase; letter-spacing: .12em; font-weight: 700; font-size: .8rem; color: #f0c9c4; margin-bottom: 10px; }
.hero h1 { color: #fff; margin-bottom: 16px; }
.hero .lead { color: #f4ddd9; }
.hero-buttons { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.hero .btn-outline { color: #fff; border-color: #fff; }
.hero .btn-outline:hover { background: #fff; color: var(--blue); }

/* --- Trust badges -------------------------------------------------------- */
.trust-badges { background: var(--cream); border-bottom: 1px solid var(--line); }
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; padding: 34px 0; }
.trust-item { text-align: center; }
.trust-icon { font-size: 1.9rem; display: block; margin-bottom: 6px; }
.trust-item h3 { margin: 0 0 4px; font-size: 1.1rem; }
.trust-item p { margin: 0; color: var(--muted); font-size: .95rem; }
@media (max-width: 700px) { .trust-grid { grid-template-columns: 1fr; gap: 14px; } }

/* --- Section heads ------------------------------------------------------- */
.section-head { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; margin-bottom: 26px; flex-wrap: wrap; }
.section-head.center { flex-direction: column; align-items: center; text-align: center; }
.section-sub { color: var(--muted); max-width: 620px; }
.see-all { font-weight: 700; white-space: nowrap; }

/* --- Card grid ----------------------------------------------------------- */
.card-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 22px; }
.card {
  display: block; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  overflow: hidden; color: inherit; transition: transform .12s, box-shadow .12s;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); text-decoration: none; }
.card-media { position: relative; aspect-ratio: 4 / 3; background: var(--cream); }
.card-media img { width: 100%; height: 100%; object-fit: cover; }
.card-noimg { display: flex; align-items: center; justify-content: center; height: 100%; color: var(--muted); font-size: .9rem; }
.card-body { padding: 14px 16px 18px; }
.card-title { font-size: 1.05rem; margin: 0 0 4px; }
.card-sub { color: var(--muted); font-size: .9rem; margin: 0 0 10px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.card-price { margin: 0; font-weight: 800; font-size: 1.2rem; color: var(--ink); }
.card-sold { opacity: .85; }

.price-sale { color: var(--red); }
.price-orig { color: var(--muted); text-decoration: line-through; font-weight: 600; font-size: .95rem; margin-left: 6px; }

/* --- Badges -------------------------------------------------------------- */
.grade-badge { display: inline-block; font-weight: 800; font-size: .72rem; letter-spacing: .02em; color: #fff; padding: 4px 9px; border-radius: 999px; }
.card-media .grade-badge { position: absolute; top: 10px; left: 10px; box-shadow: var(--shadow); }
.grade-S { background: var(--grade-s); }
.grade-A { background: var(--grade-a); }
.grade-B { background: var(--grade-b); }
.grade-C { background: var(--grade-c); }
.sold-badge { position: absolute; top: 10px; right: 10px; background: var(--red); color: #fff; font-weight: 800; font-size: .8rem; padding: 5px 12px; border-radius: 6px; transform: rotate(6deg); box-shadow: var(--shadow); }
.sold-badge-lg { font-size: 1.1rem; padding: 8px 18px; }
.feat-badge { position: absolute; bottom: 10px; left: 10px; background: var(--ink); color: #fff; font-size: .7rem; font-weight: 700; padding: 4px 9px; border-radius: 999px; }
.cat-badge { display: inline-block; background: var(--cream); border: 1px solid var(--line); color: var(--body); font-size: .78rem; font-weight: 600; padding: 4px 10px; border-radius: 999px; }

/* --- Process steps ------------------------------------------------------- */
.process-grid { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; counter-reset: step; }
.process-grid li { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 24px 20px; }
.step-num { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 50%; background: var(--blue); color: #fff; font-weight: 800; margin-bottom: 12px; }
.process-grid h3 { font-size: 1.1rem; }
.process-grid p { margin: 0; color: var(--muted); font-size: .95rem; }
@media (max-width: 820px) { .process-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .process-grid { grid-template-columns: 1fr; } }

/* --- CTA band ------------------------------------------------------------ */
.cta-band { background: var(--navy); color: #fff; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.cta-band h2 { color: #fff; margin-bottom: 6px; }
.cta-band p { color: #ecd2ce; margin: 0; }
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.cta-band .btn-outline { color: #fff; border-color: #fff; }
.cta-band .btn-outline:hover { background: #fff; color: var(--navy); }

/* --- Page head ----------------------------------------------------------- */
.page-head { background: var(--cream); border-bottom: 1px solid var(--line); padding: 40px 0; }
.page-head .lead { max-width: 760px; margin-bottom: 0; }

/* --- Shop filters -------------------------------------------------------- */
.filters { display: flex; flex-direction: column; gap: 14px; margin-bottom: 22px; }
.filter-group { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.filter-label { font-weight: 700; color: var(--ink); min-width: 84px; }
.chip-row { display: flex; gap: 8px; flex-wrap: wrap; }
.chip { border: 1px solid var(--line); background: #fff; color: var(--body); padding: 7px 14px; border-radius: 999px; font-size: .9rem; font-weight: 600; }
.chip:hover { border-color: var(--blue); text-decoration: none; }
.chip-on { background: var(--blue); color: #fff; border-color: var(--blue); }
.result-count { color: var(--muted); margin-bottom: 14px; }
.empty { background: var(--cream); border: 1px dashed var(--line); border-radius: var(--radius-lg); padding: 40px; text-align: center; color: var(--muted); }

/* --- Listing page -------------------------------------------------------- */
.breadcrumb { padding-top: 22px; }
.listing { padding: 20px 0 60px; }
.listing-grid { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr); gap: 40px; align-items: start; }
@media (max-width: 900px) { .listing-grid { grid-template-columns: 1fr; gap: 26px; } }

.gallery-main { position: relative; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; background: var(--cream); aspect-ratio: 4 / 3; }
.gallery-main img { width: 100%; height: 100%; object-fit: contain; }
.gallery-noimg { aspect-ratio: 4/3; border-radius: var(--radius-lg); border: 1px solid var(--line); }
.gallery-thumbs { display: flex; gap: 10px; margin-top: 12px; flex-wrap: wrap; }
.gthumb { padding: 0; border: 2px solid var(--line); border-radius: 8px; overflow: hidden; background: #fff; cursor: pointer; width: 78px; height: 60px; }
.gthumb img { width: 100%; height: 100%; object-fit: cover; }
.gthumb-on { border-color: var(--blue); }

.listing-badges { display: flex; gap: 8px; margin-bottom: 12px; }
.listing-price { font-size: 2rem; font-weight: 800; color: var(--ink); margin: 8px 0 14px; display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; }
.listing-price .price-orig { font-size: 1.2rem; }
.save-pill { background: var(--red); color: #fff; font-size: .8rem; padding: 3px 10px; border-radius: 999px; font-weight: 700; }

.buybox { background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 20px; margin: 20px 0; }
.buybox-lead { font-weight: 700; color: var(--ink); margin-bottom: 12px; }
.buybox .btn { margin-bottom: 10px; }
.buybox .btn:last-child { margin-bottom: 0; }
.buybox-sold { margin: 0; font-weight: 600; }

.specs { margin: 22px 0; }
.specs table, .hours { width: 100%; border-collapse: collapse; }
.specs th, .specs td { text-align: left; padding: 9px 4px; border-bottom: 1px solid var(--line); vertical-align: top; }
.specs th { width: 40%; color: var(--muted); font-weight: 600; }
.grade-explainer { background: #fff; border-left: 4px solid var(--blue); padding: 12px 16px; color: var(--body); font-size: .95rem; margin-top: 22px; }

.prose h2 { margin-top: 28px; }
.prose ul { padding-left: 20px; }
.prose li { margin-bottom: 4px; }

/* --- Grade cards / condition guide -------------------------------------- */
.grade-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; margin-bottom: 30px; }
.grade-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 24px; box-shadow: var(--shadow); }
.grade-card .grade-badge { font-size: .85rem; margin-bottom: 10px; }
.grade-card h2 { margin-top: 4px; }
@media (max-width: 640px) { .grade-cards { grid-template-columns: 1fr; } }
.callout { background: var(--cream); border-radius: var(--radius-lg); padding: 26px; text-align: center; }
.callout p { max-width: 680px; margin: 0 auto 16px; }

/* --- Services ------------------------------------------------------------ */
.service-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 18px; }
.service-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 20px; }
.service-card h3 { font-size: 1.1rem; margin-bottom: 6px; }
.service-card p { margin: 0; color: var(--muted); font-size: .95rem; }
.guarantee { margin-top: 40px; background: var(--navy); color: #fff; border-radius: var(--radius-lg); padding: 34px; text-align: center; }
.guarantee h2 { color: #fff; }
.guarantee p { color: #ecd2ce; max-width: 620px; margin: 0 auto 18px; }

/* --- Contact ------------------------------------------------------------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 40px; align-items: start; }
@media (max-width: 820px) { .contact-grid { grid-template-columns: 1fr; gap: 28px; } }
.contact-line { margin-bottom: 14px; }
.hours th { text-align: left; padding: 6px 20px 6px 0; color: var(--muted); font-weight: 600; }
.hours td { padding: 6px 0; }

/* --- Forms --------------------------------------------------------------- */
.form { max-width: 560px; }
.field { display: block; margin-bottom: 16px; }
.field > span { display: block; font-weight: 600; color: var(--ink); margin-bottom: 6px; }
.field em { color: var(--red); font-style: normal; }
.field small { color: var(--muted); font-weight: 400; }
input[type=text], input[type=url], input[type=password], input[type=search],
input[type=email], select, textarea {
  width: 100%; padding: 12px 14px; border: 1px solid #c9c7be; border-radius: var(--radius);
  font: inherit; color: var(--ink); background: #fff;
}
input:focus, select:focus, textarea:focus { outline: 3px solid rgba(53,53,168,.25); border-color: var(--blue); }
textarea { resize: vertical; }
.err { color: var(--red); font-weight: 600; }
.form-note { color: var(--muted); font-size: .9rem; }
.hp { position: absolute; left: -9999px; height: 0; overflow: hidden; }
.thanks-card { background: var(--cream); border-radius: var(--radius-lg); padding: 44px; }

/* --- Flash --------------------------------------------------------------- */
.flash { padding: 12px 16px; border-radius: var(--radius); margin: 16px 0; font-weight: 600; }
.flash-success { background: #e6f6ec; color: #1c7a3f; border: 1px solid #b8e3c7; }
.flash-error { background: #fdeceb; color: #a5281c; border: 1px solid #f3c3bd; }

/* --- Footer -------------------------------------------------------------- */
.site-footer { background: var(--navy); color: #ead6d2; margin-top: 40px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 30px; padding: 46px 0 30px; }
.footer-logo { width: 180px; margin-bottom: 14px; }
.site-footer h4 { color: #fff; font-size: .95rem; text-transform: uppercase; letter-spacing: .06em; margin: 0 0 10px; }
.site-footer p { color: #ead6d2; }
.site-footer a { color: #fff; }
.footer-links { list-style: none; padding: 0; margin: 0 0 18px; }
.footer-links li { margin-bottom: 6px; }
.ebay-note a { font-weight: 700; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.15); padding: 16px 0; }
.footer-bottom p { margin: 0; font-size: .85rem; color: #caa8a3; }
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr; gap: 22px; } }

/* ==========================================================================
   SEO content pages: service detail, area, FAQ, guides, breadcrumbs
   ========================================================================== */

/* Footer: brand column + three link columns, then a full-width areas row. */
.footer-grid { grid-template-columns: 1.6fr 1fr 1fr 1fr; align-items: start; }
.footer-brand { max-width: 320px; }
.footer-brand > p { font-size: .92rem; }
.footer-contact { margin-top: 14px; line-height: 1.7; }
.footer-contact .muted { color: #c6a49f; font-size: .85rem; }

/* Service Areas: full-width, dot-separated, wrapping row. */
.footer-areas-row { border-top: 1px solid rgba(255,255,255,.15); padding: 22px 0 4px; }
.footer-areas-row h4 { color: #fff; font-size: .95rem; text-transform: uppercase; letter-spacing: .06em; margin: 0 0 10px; }
.footer-areas { display: block; margin: 0; line-height: 2; }
.footer-areas a { color: #ead6d2; font-size: .92rem; }
.footer-areas a:hover { color: #fff; }
.footer-areas .dot { color: rgba(255,255,255,.3); margin: 0 8px; }

@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } .footer-brand { grid-column: 1 / -1; max-width: none; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; gap: 22px; } }

/* Breadcrumbs: horizontal, dot-separated, no list markers */
.crumbs { padding-top: 16px; }
.crumbs ol { list-style: none; display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin: 0; padding: 0; font-size: .88rem; color: var(--muted); }
.crumbs li { display: flex; align-items: center; }
.crumbs li:not(:last-child)::after { content: "•"; margin-left: 8px; color: var(--line); font-size: .7em; }
.crumbs a { color: var(--blue); }
.crumbs a:hover { text-decoration: underline; }
.crumbs span { color: var(--muted); }

/* Page-head action buttons */
.head-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 18px; margin-bottom: 0; }

/* Two-column detail layout (service + area pages) */
.detail-grid { display: grid; grid-template-columns: minmax(0, 1.7fr) minmax(0, 1fr); gap: 40px; align-items: start; }
@media (max-width: 860px) { .detail-grid { grid-template-columns: 1fr; gap: 28px; } }
.detail-main > .lead:first-child { margin-top: 0; }

.info-box { position: sticky; top: 92px; background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 22px; }
.info-box h3 { font-size: .8rem; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); margin: 16px 0 4px; }
.info-box h3:first-child { margin-top: 0; }
.info-box p { margin: 0 0 6px; }
.info-box hr { border: 0; border-top: 1px solid var(--line); margin: 16px 0; }
.info-guarantee { font-size: .95rem; }
.info-box .btn { margin-top: 8px; }

/* Check list (what's included) */
.check-list { list-style: none; padding: 0; }
.check-list li { position: relative; padding-left: 28px; margin-bottom: 8px; }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--green); font-weight: 800; }

/* Link cards (related services, area service lists) */
.link-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 14px; margin: 18px 0; }
.link-grid-tight { grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); }
.link-card { display: block; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 14px 16px; color: inherit; transition: border-color .12s, transform .12s, box-shadow .12s; }
.link-card:hover { border-color: var(--blue); transform: translateY(-2px); box-shadow: var(--shadow); text-decoration: none; }
.link-card strong { display: block; color: var(--ink); }
.link-card span { display: block; color: var(--muted); font-size: .9rem; margin-top: 3px; }

.areas-line { line-height: 2; }
.areas-block { margin-top: 34px; padding-top: 26px; border-top: 1px solid var(--line); }

/* Services hub: make cards clickable */
.service-card-link { display: block; color: inherit; transition: border-color .12s, transform .12s, box-shadow .12s; }
.service-card-link:hover { border-color: var(--blue); transform: translateY(-2px); box-shadow: var(--shadow-lg); text-decoration: none; }
.service-more { display: inline-block; margin-top: 10px; color: var(--blue); font-weight: 700; font-size: .9rem; }

.callout-left { text-align: left; }

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 30px; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.faq-item summary { cursor: pointer; padding: 16px 20px; font-weight: 700; color: var(--ink); list-style: none; position: relative; padding-right: 44px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; position: absolute; right: 18px; top: 50%; transform: translateY(-50%); font-size: 1.4rem; color: var(--blue); font-weight: 400; }
.faq-item[open] summary::after { content: "−"; }
.faq-item summary:hover { background: var(--cream); }
.faq-answer { padding: 0 20px 16px; }
.faq-answer p { margin: 0; color: var(--body); }

/* Guides / blog */
.guide-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 22px; }
.guide-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 24px; }
.guide-card h2, .guide-card h3 { margin-bottom: 6px; font-size: 1.25rem; }
.guide-card h3 { font-size: 1.1rem; }
.guide-card a { color: var(--ink); }
.guide-card a:hover { color: var(--blue); }
.guide-date { color: var(--muted); font-size: .85rem; margin-bottom: 10px; }
.read-more { display: inline-block; margin-top: 10px; font-weight: 700; color: var(--blue) !important; }
.article-head { border-bottom: 1px solid var(--line); padding-bottom: 18px; margin-bottom: 26px; }
.article-body h2 { margin-top: 30px; }
.article-body ul { padding-left: 20px; }
.article-body li { margin-bottom: 6px; }

/* Customer reviews / testimonials */
.review-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 24px; max-width: 900px; margin: 0 auto; }
.review-card { position: relative; margin: 0; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 32px 28px 26px; box-shadow: var(--shadow); display: flex; flex-direction: column; overflow: hidden; }
.review-card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 5px; background: linear-gradient(90deg, var(--blue), var(--blue-bright)); }
.review-mark { position: absolute; top: 8px; right: 20px; font-family: Georgia, "Times New Roman", serif; font-size: 5rem; line-height: 1; color: var(--cream); z-index: 0; }
.review-card .stars { position: relative; z-index: 1; color: #f4a91e; font-size: 1.15rem; letter-spacing: 3px; margin-bottom: 14px; }
.review-card .star-empty { color: var(--line); }
.review-card blockquote { position: relative; z-index: 1; margin: 0 0 22px; font-size: 1.2rem; color: var(--ink); line-height: 1.55; font-weight: 500; }
.review-by { display: flex; align-items: center; gap: 12px; margin-top: auto; padding-top: 18px; border-top: 1px solid var(--line); }
.review-avatar { flex: 0 0 auto; width: 46px; height: 46px; border-radius: 50%; background: var(--blue); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 1.15rem; }
.review-byline { display: flex; flex-direction: column; min-width: 0; }
.review-author { font-weight: 800; color: var(--ink); }
.review-verified { color: var(--green); font-size: .82rem; font-weight: 700; }
.review-item { color: var(--muted); font-size: .82rem; margin-top: 1px; }
