/* ==================================================
   Zeigers Auto Detailing Static Site Styles
   ================================================== */
/* Design tokens */
:root {
  --bg: #050505;
  --panel: #0d0d0f;
  --panel-2: #141416;
  --text: #f8f8f8;
  --muted: #b9b9b9;
  --line: rgba(255, 255, 255, .12);
  --gold: #d6b05b;
  --gold-2: #f0d987;
  --red: #b71319;
  --red-2: #e11d25;
  --shadow: 0 24px 80px rgba(0, 0, 0, .45);
  --radius: 22px;
  --max: 1180px;
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--red-2);
  outline-offset: 4px
}

.container {
  width: min(var(--max), calc(100% - 32px));
  margin: auto
}

/* Header and navigation */
.topbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  background: rgba(0, 0, 0, .74);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.nav {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase
}

.brand img {
  width: 74px;
  height: 74px;
  object-fit: contain
}

.brand span {
  line-height: 1.05
}

.links {
  display: flex;
  align-items: center;
  gap: 26px;
  color: #eee;
  font-size: .94rem;
  font-weight: 700
}

.links a {
  opacity: .86
}

.links a:hover {
  opacity: 1;
  color: var(--gold-2)
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--red-2), var(--red));
  color: #fff;
  font-weight: 900;
  box-shadow: 0 12px 34px rgba(183, 19, 25, .28);
}

.menu {
  display: none;
  background: none;
  border: 1px solid var(--line);
  color: #fff;
  border-radius: 10px;
  padding: 10px 12px;
  font: inherit
}

/* Hero section */
.hero {
  min-height: 100vh;
  position: relative;
  display: grid;
  align-items: center;
  padding: 142px 0 82px;
  isolation: isolate;
  overflow: hidden;
  background: #050505;
}

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

.hero:after,
.page-hero:after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(0, 0, 0, .88), rgba(0, 0, 0, .58), rgba(0, 0, 0, .2));
  pointer-events: none;
}

.hero:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 18% 20%, rgba(214, 176, 91, .2), transparent 28%),
    radial-gradient(circle at 82% 80%, rgba(183, 19, 25, .22), transparent 30%),
    linear-gradient(to bottom, transparent 70%, var(--bg));
}

.hero-card {
  max-width: 820px
}

.eyebrow {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  margin: 0 0 18px;
  color: var(--gold-2);
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-size: .8rem;
}

.eyebrow:before {
  content: "";
  width: 42px;
  height: 2px;
  background: var(--red)
}

h1 {
  margin: 0;
  font-size: clamp(2.75rem, 7vw, 6.75rem);
  line-height: .9;
  letter-spacing: -.07em;
  text-transform: uppercase
}

.hero p {
  max-width: 720px;
  margin: 24px 0 0;
  color: #e7e7e7;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.65
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px
}

.hero-actions-centered {
  justify-content: center
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 900;
  border: 1px solid transparent;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.btn:hover {
  transform: translateY(-2px)
}

.btn-primary {
  background: linear-gradient(135deg, var(--red-2), var(--red));
  color: #fff;
  box-shadow: 0 18px 44px rgba(183, 19, 25, .3)
}

.btn-outline {
  border-color: rgba(255, 255, 255, .24);
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(12px)
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 42px;
  max-width: 760px
}

.proof {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(0, 0, 0, .46)
}

.proof strong {
  display: block;
  font-size: 1.25rem;
  color: #fff
}

.proof span {
  color: var(--muted);
  font-size: .9rem
}

/* Shared sections */
section {
  padding: 94px 0
}

.section-head {
  max-width: 820px;
  margin: 0 auto 42px;
  text-align: center
}

.kicker {
  color: var(--gold);
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-size: .78rem;
  margin: 0 0 12px
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4.5vw, 4rem);
  line-height: 1;
  letter-spacing: -.055em;
  text-transform: uppercase
}

.section-head p,
.split p {
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.75
}

.split {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 46px;
  align-items: center
}

.image-frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  background: #111
}

.image-frame img {
  width: 100%;
  height: 520px;
  object-fit: contain;
  background: #111
}

.image-frame:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, .42), transparent 55%);
  pointer-events: none
}

.checklist {
  display: grid;
  gap: 16px;
  margin-top: 28px
}

.check {
  display: flex;
  gap: 14px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .025))
}

.check b {
  color: #fff
}

.check span {
  color: var(--muted);
  line-height: 1.55
}

.check:before {
  content: "✓";
  display: grid;
  place-items: center;
  flex: 0 0 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-weight: 900
}

/* Services cards */
.services {
  background: linear-gradient(180deg, #050505, #0b0b0d)
}

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

.card {
  position: relative;
  overflow: hidden;
  min-height: 390px;
  padding: 26px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .025));
  box-shadow: 0 20px 60px rgba(0, 0, 0, .25);
}

.card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #111;
  opacity: .36;
  transition: transform .4s ease, opacity .4s ease
}

.card:hover img {
  opacity: .46
}

.card:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, .92), rgba(0, 0, 0, .18));
}

.card-content {
  position: relative;
  z-index: 2;
  margin-top: 170px
}

.card h3 {
  margin: 0 0 10px;
  font-size: 1.55rem;
  text-transform: uppercase;
  letter-spacing: -.03em
}

.card p {
  margin: 0 0 20px;
  color: #d4d4d4;
  line-height: 1.65
}

.mini-link {
  font-weight: 900;
  color: var(--gold-2)
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  grid-auto-rows: 250px;
  gap: 16px
}

.gallery-item {
  display: block;
  min-width: 0;
  height: 100%;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: #111;
  overflow: hidden;
  cursor: zoom-in
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-grid .gallery-item:first-child {
  grid-row: span 2
}


.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  place-items: center;
  padding: 24px;
  background: rgba(0, 0, 0, .9);
}

.gallery-lightbox.open {
  display: grid;
}

.gallery-lightbox img {
  max-width: min(100%, 1100px);
  max-height: 82vh;
  object-fit: contain;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: #111;
}

.gallery-lightbox button {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, .12);
  color: #fff;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

/* Reviews */
.reviews {
  background: #f7f4ee;
  color: #161616
}

.reviews .kicker {
  color: #8c6821
}

.reviews h2 {
  color: #111
}

.reviews .section-head p {
  color: #555
}

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

.review {
  padding: 26px;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(0, 0, 0, .08);
  border: 1px solid rgba(0, 0, 0, .08)
}

.stars {
  color: #d89f19;
  letter-spacing: 2px
}

.review p {
  color: #444;
  line-height: 1.65
}

.review b {
  display: block;
  margin-top: 18px;
  color: #111
}

/* Contact CTA */
.cta {
  position: relative;
  overflow: hidden;
  text-align: center;
  border-radius: 32px;
  padding: 72px 24px;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .92), rgba(0, 0, 0, .58)),
    url("../images/IMG_7308-scaled.x11403.jpg") center/cover no-repeat;
  border: 1px solid var(--line);
  box-shadow: var(--shadow)
}

.cta p {
  max-width: 780px;
  margin: 20px auto 0;
  color: #e0e0e0;
  line-height: 1.7
}



/* Contact form */
.contact-panel {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 34px;
  align-items: start;
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: 32px;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .92), rgba(0, 0, 0, .72)),
    url("../images/IMG_7308-scaled.x11403.jpg") center/cover no-repeat;
  box-shadow: var(--shadow);
}

.contact-intro p {
  color: #e0e0e0;
  line-height: 1.7;
}

.contact-direct {
  display: grid;
  gap: 16px;
  justify-items: start;
  margin-top: 28px;
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(5, 5, 5, .78);
  backdrop-filter: blur(12px);
}

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

.contact-form label {
  display: grid;
  gap: 8px;
  color: #fff;
  font-weight: 800;
}

.form-alert {
  display: none;
  padding: 14px 16px;
  border-radius: 14px;
  line-height: 1.5;
}

.form-alert-success {
  border: 1px solid rgba(47, 191, 113, .45);
  background: rgba(47, 191, 113, .14);
  color: #c9f7db;
}

.form-alert-error {
  border: 1px solid rgba(225, 29, 37, .55);
  background: rgba(225, 29, 37, .14);
  color: #ffd2d4;
}

.form-alert:target {
  display: block;
}

.contact-form span {
  font-size: .88rem;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 14px;
  background: rgba(255, 255, 255, .08);
  color: #fff;
  font: inherit;
  padding: 14px 16px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 3px solid rgba(225, 29, 37, .48);
  border-color: var(--red-2);
}

.contact-form select option {
  color: #111;
}

.contact-form textarea {
  resize: vertical;
  min-height: 140px;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

/* Footer */
footer {
  padding: 70px 0 30px;
  background: #010101;
  border-top: 1px solid var(--line)
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  gap: 34px
}

.footer-logo {
  width: 108px;
  margin-bottom: 16px
}

.footer p,
.footer li {
  color: var(--muted);
  line-height: 1.7
}

.footer h4 {
  margin: 0 0 14px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #fff
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px
}

.copy {
  margin-top: 46px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: #888;
  font-size: .9rem;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px
}

.copy a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px
}

.mobile-panel {
  display: none
}

/* Responsive styles */
@media (max-width:900px) {
  .links {
    display: none
  }

  .menu {
    display: block
  }

  .mobile-panel {
    display: none;
    position: absolute;
    top: 92px;
    left: 0;
    right: 0;
    background: #050505;
    border-bottom: 1px solid var(--line);
    padding: 18px 24px
  }

  .mobile-panel.open {
    display: grid;
    gap: 14px
  }

  .hero-proof,
  .cards,
  .review-grid,
  .footer-grid,
  .split,
  .contact-panel,
  .form-grid {
    grid-template-columns: 1fr
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 180px
  }

  .gallery-grid .gallery-item:first-child {
    grid-row: auto
  }

  .gallery-item {
    height: 180px
  }

  section {
    padding: 72px 0
  }

  .image-frame img {
    height: 360px
  }

  .nav {
    min-height: 84px
  }

  .brand img {
    width: 62px;
    height: 62px
  }

  .mobile-panel {
    top: 84px
  }
}

@media (max-width:560px) {
  .brand span {
    display: none
  }

  .hero {
    padding-top: 124px
  }

  .hero-proof {
    grid-template-columns: 1fr
  }

  .hero-actions .btn {
    width: 100%
  }

  .card-content {
    margin-top: 150px
  }
}

@media (prefers-reduced-motion:reduce) {

  *,
  *:before,
  *:after {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important
  }
}

/* Interior pages */
.page-hero {
  min-height: 72vh;
  position: relative;
  display: grid;
  align-items: center;
  padding: 150px 0 84px;
  isolation: isolate;
  overflow: hidden;
  background: #050505;
}

.page-hero:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 18% 20%, rgba(183, 19, 25, .26), transparent 30%),
    linear-gradient(to bottom, transparent 70%, var(--bg));
}

.page-hero-detailing {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .9), rgba(0, 0, 0, .62), rgba(0, 0, 0, .28)),
    url("../images/IMG_7308-scaled.x11403.jpg") center/cover no-repeat;
}

.page-hero-detailing:after {
  display: none;
}

.hero-video {
  background: #050505;
}

.page-hero h1 {
  max-width: 980px;
}

.page-hero p {
  max-width: 780px;
  margin: 24px 0 0;
  color: #e7e7e7;
  font-size: clamp(1.02rem, 2vw, 1.24rem);
  line-height: 1.65;
}

/* Package cards */
.package-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.package-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .025));
  box-shadow: 0 20px 60px rgba(0, 0, 0, .24);
}

.package-image {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: calc(var(--radius) - 8px);
  border: 1px solid var(--line);
  background: #111;
}

.package-card h3 {
  margin: 0;
  color: #fff;
  font-size: 1.6rem;
  letter-spacing: -.035em;
  line-height: 1;
  text-transform: uppercase;
}

.package-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.package-price {
  align-self: flex-start;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(183, 19, 25, .18);
  color: var(--red-2) !important;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.package-card ul {
  display: grid;
  gap: 10px;
  margin: 0 0 8px;
  padding: 0;
  list-style: none;
  color: #ddd;
  line-height: 1.5;
}

.package-card li {
  position: relative;
  padding-left: 24px;
}

.package-card li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--red-2);
  font-weight: 900;
}

.package-card .btn {
  margin-top: auto;
}

/* Comparison and feature components */
.comparison-table {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.comparison-table [role="row"] {
  display: grid;
  grid-template-columns: .85fr 1.1fr 1.1fr;
}

.comparison-table [role="row"]>* {
  padding: 18px;
  border-bottom: 1px solid var(--line);
  color: #e8e8e8;
  line-height: 1.5;
}

.comparison-table [role="row"]:first-child>* {
  background: rgba(183, 19, 25, .18);
  color: #fff;
  font-weight: 900;
  text-transform: uppercase;
}

.comparison-table [role="row"]:last-child>* {
  border-bottom: 0;
}

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

.feature-grid article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .07), rgba(255, 255, 255, .025));
}

.feature-grid h3 {
  margin: 0 0 10px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: -.02em;
}

.feature-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

@media (max-width: 900px) {
  .page-hero {
    min-height: auto;
    padding: 132px 0 72px;
  }

  .package-grid,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .package-card {
    padding: 22px;
  }

  .comparison-table {
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    display: grid;
    gap: 16px;
  }

  .comparison-table [role="row"]:first-child {
    display: none;
  }

  .comparison-table [role="row"] {
    display: grid;
    grid-template-columns: 1fr;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--panel);
    box-shadow: var(--shadow);
  }

  .comparison-table [role="row"]>* {
    padding: 15px 18px;
    border-bottom: 1px solid var(--line);
  }

  .comparison-table [role="row"]>*:first-child {
    background: rgba(183, 19, 25, .18);
    color: #fff;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .02em;
  }

  .comparison-table [role="row"]>*:last-child {
    border-bottom: 0;
  }

  .comparison-table [role="row"]>*:nth-child(n + 2)::before {
    display: block;
    margin-bottom: 6px;
    color: var(--gold-2);
    font-size: .74rem;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
  }

  .comparison-table [role="row"]>*:nth-child(2)::before {
    content: "Revivify";
  }

  .comparison-table [role="row"]>*:nth-child(3)::before {
    content: "Traditional Ceramic";
  }
}

@media (max-width: 560px) {
  .package-image {
    aspect-ratio: 4 / 3;
  }

  .contact-panel,
  .contact-form {
    padding: 22px;
  }
}

/* ==================================================
   Guides / Articles
   ================================================== */

.page-hero-guide-frequency {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .9), rgba(0, 0, 0, .62), rgba(0, 0, 0, .28)),
    url("../images/Zeigers-Auto-Detailing-14-1.x11403.jpg") center/cover no-repeat;
}

.page-hero-guide-coating {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .9), rgba(0, 0, 0, .62), rgba(0, 0, 0, .28)),
    url("../images/Zeigers-Auto-Detailing-23.x11403.jpg") center/cover no-repeat;
}

.page-hero-guide-correction {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .9), rgba(0, 0, 0, .62), rgba(0, 0, 0, .28)),
    url("../images/IMG_7308-scaled.x11403.jpg") center/cover no-repeat;
}

.page-hero-guide-frequency:after,
.page-hero-guide-coating:after,
.page-hero-guide-correction:after {
  display: none;
}

.page-hero-guides-hub {
  min-height: 52vh;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .9), rgba(0, 0, 0, .62), rgba(0, 0, 0, .28)),
    url("../images/IMG_7308-scaled.x11403.jpg") center/cover no-repeat;
}

.page-hero-guides-hub:after {
  display: none;
}

/* Breadcrumbs */
.breadcrumbs {
  margin: 0 0 30px;
  color: var(--muted);
  font-size: .85rem;
  letter-spacing: .01em;
}

.breadcrumbs a {
  color: var(--gold-2);
  font-weight: 700;
}

.breadcrumbs a:hover {
  text-decoration: underline;
}

.breadcrumbs span {
  color: #eaeaea;
}

/* Article body */
.article-section {
  background: linear-gradient(180deg, #050505, #0b0b0d);
}

.article-layout {
  max-width: 860px;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  color: var(--muted);
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin: 0 0 30px;
}

.article-intro {
  font-size: 1.18rem !important;
  color: #ededed !important;
}

.article-body p {
  color: #d8d8d8;
  line-height: 1.8;
  font-size: 1.05rem;
  margin: 0 0 22px;
}

.article-body h2 {
  margin: 48px 0 18px;
  font-size: clamp(1.55rem, 3vw, 2.25rem);
}

.article-body h2:first-of-type {
  margin-top: 0;
}

.article-body h3 {
  margin: 32px 0 14px;
  font-size: 1.28rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: -.02em;
}

.article-body ul,
.article-body ol {
  color: #d8d8d8;
  line-height: 1.75;
  margin: 0 0 22px;
  padding-left: 22px;
}

.article-body li {
  margin-bottom: 8px;
}

.article-body strong {
  color: #fff;
}

.article-callout {
  margin: 34px 0;
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(214, 176, 91, .14), rgba(214, 176, 91, .03));
}

.article-callout p {
  margin: 0;
  color: #f4e9cf;
}

.article-cta-inline {
  margin: 8px 0 40px;
}

/* FAQ */
.faq {
  background: linear-gradient(180deg, #0b0b0d, #050505);
}

.faq-list {
  display: grid;
  gap: 14px;
  max-width: 860px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .02));
  padding: 4px 22px;
}

.faq-item summary {
  cursor: pointer;
  padding: 18px 0;
  font-weight: 800;
  color: #fff;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary:after {
  content: "+";
  flex: 0 0 auto;
  font-size: 1.4rem;
  color: var(--gold-2);
  transition: transform .2s ease;
}

.faq-item[open] summary:after {
  transform: rotate(45deg);
}

.faq-item .faq-answer {
  padding: 0 0 20px;
  color: var(--muted);
  line-height: 1.7;
}

.faq-item .faq-answer p {
  margin: 0;
  color: var(--muted);
}

/* Guides hub */
.guide-pillar {
  margin-bottom: 54px;
}

.guide-pillar:last-child {
  margin-bottom: 0;
}

.pillar-title {
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: 1.02rem;
  color: var(--gold);
  margin: 0 0 20px;
}

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

.guide-card {
  display: flex;
  flex-direction: column;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, .07), rgba(255, 255, 255, .02));
  box-shadow: 0 20px 60px rgba(0, 0, 0, .22);
}

.guide-card h3 {
  margin: 0 0 12px;
  font-size: 1.32rem;
  text-transform: uppercase;
  letter-spacing: -.03em;
  color: #fff;
  line-height: 1.15;
}

.guide-card p {
  color: var(--muted);
  line-height: 1.6;
  margin: 0 0 18px;
}

.guide-card .mini-link {
  margin-top: auto;
}

.guide-coming-soon {
  padding: 22px 26px;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  color: var(--muted);
  line-height: 1.6;
}

@media (max-width: 900px) {

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

  .page-hero-guides-hub {
    min-height: auto;
  }
}

/* Gallery and 404 pages */
.page-hero-gallery {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .9), rgba(0, 0, 0, .62), rgba(0, 0, 0, .28)),
    url("../images/Zeigers-Auto-Detailing-23.x11403.jpg") center/cover no-repeat;
}

.page-hero-404 {
  min-height: 78vh;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .92), rgba(0, 0, 0, .68), rgba(0, 0, 0, .3)),
    url("../images/Porsche911.jpg") center/cover no-repeat;
}

.page-hero-gallery:after,
.page-hero-404:after {
  display: none;
}

.gallery-intro {
  padding-bottom: 42px;
}

.gallery-intro + #gallery {
  padding-top: 42px;
}

.not-found-links .feature-grid article {
  display: grid;
  gap: 12px;
}
