:root {
  --bg-main: #f4f8ff;
  --bg-panel: #ffffff;
  --bg-soft: #eaf3ff;
  --bg-invert: #05080f;
  --brand-blue: #d91018;
  --brand-blue-bright: #ff3640;
  --brand-blue-deep: #980008;
  --text-main: #101827;
  --text-muted: #5e6b7d;
  --text-light: #f7fbff;
  --border: #c9dcf4;
  --shadow: 0 20px 55px rgba(217, 16, 24, .14);
  --radius-lg: 28px;
  --radius-md: 18px;
  --max-width: 1320px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at 20% 0%, rgba(217, 16, 24, .14), transparent 34%),
    linear-gradient(180deg, #f8fbff 0%, var(--bg-main) 44%, #eef5ff 100%);
  color: var(--text-main);
  line-height: 1.55;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background:
    radial-gradient(circle at 50% -90%, rgba(217, 16, 24, .42), transparent 48%),
    linear-gradient(90deg, rgba(5, 8, 15, .98), rgba(3, 18, 45, .97) 52%, rgba(0, 33, 88, .94));
  border-bottom: 1px solid rgba(255, 54, 64, .28);
  box-shadow: 0 12px 32px rgba(0, 0, 0, .22);
  color: var(--text-light);
}
.header-inner {
  max-width: 1520px;
  min-height: 0;
  margin: 0 auto;
  padding: 0 clamp(18px, 4vw, 48px);
  display: grid;
  grid-template-columns: minmax(170px, 1fr) auto minmax(170px, 1fr);
  align-items: center;
  justify-items: center;
  gap: clamp(12px, 1.8vw, 28px);
}
.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2vw, 32px);
  width: 100%;
  margin: 0;
}
.main-nav-left,
.main-nav-right { justify-content: center; }
.main-nav a {
  position: relative;
  color: #d9e6f7;
  font-weight: 900;
  font-size: .82rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  padding: 10px 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  text-shadow: none;
  box-shadow: none;
  transition: color .18s ease;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand-blue), var(--brand-blue-bright));
  opacity: 0;
  transform: scaleX(.25);
  transition: opacity .18s ease, transform .18s ease;
}
.main-nav a:hover,
.main-nav a.active {
  color: #ffffff;
  text-decoration: none;
  background: transparent;
  border-color: transparent;
  box-shadow: none;
  transform: none;
}
.main-nav a:hover::after,
.main-nav a.active::after {
  opacity: 1;
  transform: scaleX(1);
}
.brand {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
  isolation: isolate;
}
.brand::before {
  content: "";
  position: absolute;
  inset: -12px -28px;
  z-index: -1;
  border-radius: 28px;
  background: radial-gradient(circle, rgba(255, 54, 64, .20), transparent 66%);
  pointer-events: none;
}
.brand::after { content: none; }

.brand-header-image {
  display: block;
  width: clamp(322px, 29vw, 408px);
  height: auto;
  max-width: min(33.3vw, 408px);
  object-fit: contain;
  filter: drop-shadow(0 0 18px rgba(217, 16, 24, .30));
}
.brand-copy {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: start;
  min-width: 0;
}
.brand strong {
  display: block;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(1.28rem, 2.25vw, 2rem);
  line-height: 1;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #ffffff;
  -webkit-text-stroke: .75px #05080f;
  text-shadow: 0 2px 0 #05080f, 0 0 18px rgba(255, 54, 64, .38);
  white-space: nowrap;
}
.brand small {
  display: block;
  margin-top: 8px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(.68rem, .9vw, .82rem);
  font-weight: 900;
  color: #9ecfff;
  letter-spacing: .24em;
  text-transform: uppercase;
  text-shadow: 0 1px 4px rgba(0, 0, 0, .6);
  white-space: nowrap;
}
.nav-toggle,
.mobile-nav { display: none; }

main { overflow: hidden; }
.hero, .section, .split-section, .cta-panel, .service-hero, .page-header, .contact-layout {
  max-width: var(--max-width);
  margin: 0 auto;
  padding-left: clamp(18px, 4vw, 48px);
  padding-right: clamp(18px, 4vw, 48px);
}
.hero {
  min-height: auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, .88fr);
  align-items: center;
  gap: clamp(34px, 4vw, 56px);
  padding-top: clamp(46px, 5vw, 64px);
  padding-bottom: 42px;
}
.hero-copy { max-width: 610px; }
.eyebrow { text-transform: uppercase; letter-spacing: .16em; font-size: .78rem; color: var(--brand-blue-deep); font-weight: 900; margin: 0 0 12px; }
h1, h2, h3 { line-height: 1.05; margin: 0; }
h1 { font-size: clamp(2.8rem, 4.2vw, 3.9rem); letter-spacing: -.055em; }
.hero h1 { line-height: .98; }
.hero-title-break { display: block; }
h2 { font-size: clamp(2rem, 4.8vw, 3.5rem); letter-spacing: -.045em; }
h3 { font-size: 1.35rem; }
.lead { font-size: clamp(1.05rem, 1.65vw, 1.24rem); color: var(--text-muted); max-width: 590px; }
.hero-actions, .button-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.btn { display: inline-flex; justify-content: center; align-items: center; min-height: 50px; padding: 13px 22px; border-radius: 999px; border: 1px solid var(--brand-blue-deep); font-weight: 800; cursor: pointer; transition: transform .18s ease, background .18s ease, box-shadow .18s ease, border-color .18s ease; }
.btn:hover { transform: translateY(-2px); }
.btn.primary { background: linear-gradient(135deg, var(--brand-blue-deep), var(--brand-blue)); color: var(--text-light); box-shadow: 0 12px 28px rgba(217, 16, 24, .24); }
.btn.secondary { background: var(--bg-panel); color: var(--brand-blue-deep); box-shadow: 0 10px 24px rgba(217, 16, 24, .08); }
.btn.ghost { background: #edf6ff; border-color: rgba(152, 0, 8, .48); color: var(--brand-blue-deep); box-shadow: 0 10px 22px rgba(217, 16, 24, .08); }
.btn.ghost:hover { background: #ffffff; border-color: var(--brand-blue); box-shadow: 0 14px 26px rgba(217, 16, 24, .14); }
.hero-visual {
  justify-self: end;
  width: min(100%, 560px);
  background: linear-gradient(180deg, #ffffff, #edf5ff);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(16px, 2vw, 22px);
  box-shadow: var(--shadow);
}
.hero-visual img { border-radius: calc(var(--radius-lg) - 8px); width: 100%; aspect-ratio: 16 / 11; object-fit: cover; }
.logo-badge-mini { display:flex; gap:14px; align-items:center; margin-top:18px; padding: 0 4px 2px; color: var(--text-muted); font-weight:800; }
.logo-badge-mini img { width: 54px; height: 54px; border-radius: 50%; filter: drop-shadow(0 0 14px rgba(217, 16, 24, .34)); flex: 0 0 auto; }

.trust-strip { max-width: var(--max-width); margin: 8px auto 46px; display: grid; grid-template-columns: repeat(4,1fr); gap: 10px; padding: 0 clamp(18px,4vw,48px); }
.trust-strip span { background: linear-gradient(135deg, var(--bg-invert), #062b77); color: var(--text-light); padding: 17px 18px; text-align: center; font-weight: 800; border: 1px solid rgba(217,16,24,.35); border-top-color: rgba(255,255,255,.18); border-radius: 18px; box-shadow: 0 12px 28px rgba(0, 0, 0, .14); }
.trust-strip span:first-child,
.trust-strip span:last-child { border-radius: 18px; }
.section { padding-top: 72px; padding-bottom: 72px; }
.section-heading { display: flex; justify-content: space-between; gap: 24px; align-items: end; margin-bottom: 28px; }
.section-heading p:last-child { max-width: 390px; color: var(--text-muted); }
.card-grid { display: grid; gap: 18px; }
.card-grid.three { grid-template-columns: repeat(3,1fr); }
.service-card, .info-card { background: var(--bg-panel); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 24px; box-shadow: 0 12px 34px rgba(217,16,24,.08); }
.service-card img { border-radius: 16px; margin-bottom: 18px; border: 1px solid var(--border); width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.service-card p, .info-card p { color: var(--text-muted); }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.headshot-card { background: var(--bg-panel); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 22px; text-align: center; box-shadow: 0 12px 34px rgba(217,16,24,.08); }
.headshot-card img { width: 150px; height: 150px; border-radius: 50%; object-fit: cover; border: 1px solid var(--border); box-shadow: var(--shadow); margin: 0 auto 16px; }
.headshot-card p { color: var(--text-muted); margin: 4px 0 0; }

.icon { font-size: 2rem; margin-bottom: 14px; display: inline-block; }
.split-section { display: grid; grid-template-columns: .85fr 1.15fr; gap: 28px; padding-top: 72px; padding-bottom: 72px; }
.steps { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.steps li { background: var(--bg-panel); border: 1px solid var(--border); border-left: 5px solid var(--brand-blue); border-radius: 18px; padding: 20px; display: grid; gap: 4px; }
.steps span { color: var(--text-muted); }
.cta-panel { margin-top: 56px; margin-bottom: 72px; background: radial-gradient(circle at 20% 20%, rgba(255,54,64,.34), transparent 32%), linear-gradient(135deg, var(--bg-invert), #052c7e); color: var(--text-light); border-radius: var(--radius-lg); padding-top: 46px; padding-bottom: 46px; box-shadow: var(--shadow); }
.cta-panel p { color: #d7d4ce; max-width: 650px; }
.cta-panel .btn.primary { background: var(--text-light); color: var(--text-main); }

.page-header { padding-top: 58px; padding-bottom: 34px; }
.page-header p { color: var(--text-muted); max-width: 720px; font-size: 1.1rem; }
.service-hero { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; align-items: center; padding-top: 42px; padding-bottom: 54px; }
.service-hero img { border-radius: var(--radius-lg); border: 1px solid var(--border); box-shadow: var(--shadow); width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.contact-layout { display:grid; grid-template-columns: .85fr 1.15fr; gap: 30px; padding-top: 40px; padding-bottom: 72px; }
.contact-panel, .form-panel { background: var(--bg-panel); border:1px solid var(--border); border-radius: var(--radius-lg); padding: 26px; box-shadow: 0 10px 30px rgba(0,0,0,.045); }
.contact-list { display:grid; gap: 12px; margin-top: 20px; }
.contact-list a, .contact-list span { padding: 14px; border: 1px solid var(--border); border-radius: 14px; }
form { display:grid; gap: 14px; }
label { display:grid; gap: 6px; font-weight: 800; }
input, textarea, select { width:100%; border:1px solid var(--border); border-radius: 12px; padding: 13px 14px; font: inherit; background: #fbfdff; color: var(--text-main); }
textarea { min-height: 130px; resize: vertical; }
.form-status { min-height: 24px; font-weight: 800; }
.form-status.success { color: #245c2c; }
.form-status.error { color: #8a1f1f; }
.form-status.warn { color: #7a4c00; }
.site-footer { border-top: 1px solid var(--border); padding: 28px clamp(18px,4vw,48px); display:flex; justify-content:space-between; gap: 22px; background: #e8f2ff; }
.site-footer p { margin: 4px 0 0; color: var(--text-muted); }
.site-footer div:last-child { display:flex; flex-wrap:wrap; gap: 16px; font-weight:800; }

@media (max-width: 1120px) {
  .header-inner {
    min-height: 0;
    display: flex;
    justify-content: center;
    padding: 4px clamp(14px, 4vw, 22px);
  }
  .main-nav { display: none; }
  .brand {
    width: auto;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }
  .brand::before { inset: -18px -32px; opacity: .8; }
  .brand-header-image {
    width: min(85.9vw, 546px);
    height: auto;
    max-width: 85.9vw;
  }
  .brand-copy { justify-items: center; text-align: center; }
  .brand strong {
    font-size: clamp(1rem, 4.7vw, 1.48rem);
    letter-spacing: .08em;
    -webkit-text-stroke: .65px #05080f;
  }
  .brand small {
    font-size: clamp(.62rem, 2.6vw, .78rem);
    letter-spacing: .16em;
    margin-top: 5px;
  }
  .nav-toggle {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 50;
    width: 60px;
    height: 60px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, .36);
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand-blue-deep), var(--brand-blue-bright));
    color: #ffffff;
    font-size: 1.65rem;
    font-weight: 900;
    box-shadow: 0 18px 38px rgba(0, 50, 140, .34), 0 0 0 5px rgba(255, 54, 64, .16);
    cursor: pointer;
  }
  .nav-toggle.is-open { background: linear-gradient(135deg, #05080f, var(--brand-blue-deep)); }
  .mobile-nav {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 92px;
    z-index: 45;
    display: none;
    gap: 10px;
    padding: 14px;
    border: 1px solid rgba(255, 54, 64, .56);
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(152, 0, 8, .94), rgba(5, 8, 15, .98));
    box-shadow: 0 20px 50px rgba(0, 0, 0, .4);
  }
  .mobile-nav.open { display: grid; }
  .mobile-nav a {
    color: #ffffff;
    font-weight: 900;
    padding: 14px 16px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 16px;
    background: rgba(255, 255, 255, .08);
    text-shadow: 0 1px 4px rgba(0, 0, 0, .5);
  }
  .mobile-nav a:hover,
  .mobile-nav a.active { background: rgba(255, 54, 64, .26); border-color: rgba(255, 54, 64, .68); }
}

@media (max-width: 820px) {
  .hero, .split-section, .service-hero, .contact-layout { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding-top: 42px; padding-bottom: 30px; }
  .hero-copy { max-width: none; }
  .hero-visual { justify-self: stretch; width: 100%; }
  .card-grid.three, .trust-strip, .team-grid { grid-template-columns: 1fr; }
  .trust-strip { margin-top: 0; gap: 8px; }
  .trust-strip span, .trust-strip span:first-child, .trust-strip span:last-child { border-radius: 14px; }
  .section-heading { display:block; }
  .site-footer { flex-direction: column; }
}



.photo-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.photo-gallery img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--radius-md); border: 1px solid var(--border); box-shadow: 0 10px 30px rgba(0,0,0,.045); background: var(--bg-panel); }
.photo-gallery-section code { background: #e8f2ff; border: 1px solid var(--border); border-radius: 8px; padding: 2px 6px; }

@media (max-width: 820px) {
  .photo-gallery { grid-template-columns: 1fr; }
}


a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible { outline: 3px solid rgba(255, 54, 64, .55); outline-offset: 3px; }

.photo-gallery figure {
  margin: 0;
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,.045);
}
.photo-gallery figure img {
  border: 0;
  border-radius: 0;
  box-shadow: none;
}
.photo-gallery figcaption {
  padding: 12px 14px 14px;
  color: var(--text-muted);
  font-weight: 800;
  font-size: .95rem;
}
.contact-panel > img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 20px;
  border: 1px solid var(--border);
  margin-bottom: 20px;
}
.service-card img {
  background: var(--bg-soft);
}

.form-grid { display: grid; gap: 14px; }
.form-grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.form-grid .full { grid-column: 1 / -1; }
.muted-form-copy, .form-note { color: var(--text-muted); margin-top: 0; }
.form-note { font-size: .95rem; margin-bottom: 0; }
.reviews-section { padding-top: 72px; padding-bottom: 30px; }
.reviews-layout { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.review-panel { background: var(--bg-panel); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 24px; box-shadow: 0 12px 34px rgba(217,16,24,.08); }
.review-panel h3 { margin-bottom: 16px; }
.reviews-list { display: grid; gap: 14px; }
.review-card { margin: 0; border: 1px solid var(--border); border-radius: 18px; padding: 18px; background: #fbfdff; }
.review-card p { margin: 10px 0 12px; color: var(--text-muted); }
.review-card footer { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; color: var(--text-main); }
.stars { color: var(--brand-blue-deep); letter-spacing: .05em; font-weight: 900; }
.review-source, .review-location { display: inline-flex; align-items: center; border: 1px solid var(--border); border-radius: 999px; padding: 3px 8px; color: var(--text-muted); font-size: .82rem; font-weight: 800; }
.google-summary, .empty-review { border: 1px dashed var(--border); border-radius: 16px; padding: 14px; color: var(--text-muted); background: #fbfdff; }
.google-summary strong { color: var(--text-main); }

@media (max-width: 820px) {
  .form-grid.two, .reviews-layout { grid-template-columns: 1fr; }
}
/* Header slim override */

@media (min-width: 1121px) {
  .site-header { overflow: visible; }
  .header-inner {
    min-height: 0;
    padding-top: 0;
    padding-bottom: 0;
  }
}

body {
  background: linear-gradient(135deg, #f1f0eb 0%, #e1e0da 100%);
}

main,
section,
.page-section,
.content-section {
  background: transparent;
}

/* Free review links, progressive storytelling, reveal animations, and dark mode */
:root[data-theme="dark"] {
  --bg-main: #060914;
  --bg-panel: #0d1628;
  --bg-soft: #101f38;
  --bg-invert: #05080f;
  --text-main: #c8ccd3;
  --text-muted: #aeb4bd;
  --text-light: #f7fbff;
  --border: rgba(174, 180, 189, .28);
  --shadow: 0 20px 55px rgba(0, 0, 0, .35);
}
:root[data-theme="dark"] body {
  background:
    radial-gradient(circle at 20% 0%, rgba(217, 16, 24, .18), transparent 34%),
    linear-gradient(180deg, #05080f 0%, #071020 52%, #0b1323 100%) !important;
  color: #c8ccd3;
}
:root[data-theme="dark"] main,
:root[data-theme="dark"] .site-footer {
  color: #c8ccd3;
}
:root[data-theme="dark"] main :where(h1, h2, h3, h4, h5, h6, p, li, label, small, strong, figcaption, blockquote, footer, code, a:not(.btn)),
:root[data-theme="dark"] .site-footer :where(p, a:not(.btn), strong, small) {
  color: #c8ccd3 !important;
}
:root[data-theme="dark"] main :where(.lead, .muted-form-copy, .form-note, .section-heading p:last-child, .page-header p, .service-card p, .info-card p, .headshot-card p, .steps span, .trust-strip span, .photo-gallery figcaption, .review-card p, .review-card footer, .review-source, .review-location, .google-link-card p, .empty-review, .google-summary, .story-card p, .story-card span, .contact-list span, .logo-badge-mini, .eyebrow, .stars) {
  color: #c8ccd3 !important;
}
:root[data-theme="dark"] :where(.service-card, .info-card, .headshot-card, .hero-visual, .contact-panel, .form-panel, .photo-gallery figure, .review-panel, .review-card, .story-card, .google-link-card, .steps li, .empty-review, .google-summary) {
  background: #0d1628 !important;
  border-color: rgba(174, 180, 189, .28) !important;
  color: #c8ccd3 !important;
  box-shadow: 0 18px 44px rgba(0, 0, 0, .32);
}
:root[data-theme="dark"] :where(input, textarea, select) {
  background: #0a1221 !important;
  color: #c8ccd3 !important;
  border-color: rgba(174, 180, 189, .28) !important;
}
:root[data-theme="dark"] :where(input, textarea)::placeholder {
  color: #8f98a6;
}
:root[data-theme="dark"] .contact-list :where(a:not(.btn), span),
:root[data-theme="dark"] .photo-gallery img,
:root[data-theme="dark"] .contact-panel > img,
:root[data-theme="dark"] .service-hero img,
:root[data-theme="dark"] .service-card img {
  background: #101a2c !important;
  border-color: rgba(174, 180, 189, .28) !important;
}
:root[data-theme="dark"] .site-footer {
  background: #071020 !important;
  border-color: rgba(174, 180, 189, .28) !important;
}
:root[data-theme="dark"] .review-source,
:root[data-theme="dark"] .review-location {
  border-color: rgba(174, 180, 189, .28) !important;
}
:root[data-theme="dark"] .btn.secondary {
  background: #ffffff !important;
  color: var(--brand-blue-deep) !important;
  border-color: var(--brand-blue-deep) !important;
}
:root[data-theme="dark"] .btn.ghost {
  background: #edf6ff !important;
  color: var(--brand-blue-deep) !important;
  border-color: rgba(152, 0, 8, .48) !important;
}
:root[data-theme="dark"] .cta-panel .btn.primary {
  background: #f7fbff !important;
  color: #101827 !important;
}
.dark-mode-toggle {
  position: fixed;
  left: 16px;
  bottom: 18px;
  z-index: 70;
  min-height: 48px;
  padding: 12px 16px;
  border: 1px solid rgba(255, 54, 64, .38);
  border-radius: 999px;
  background: linear-gradient(135deg, #05080f, var(--brand-blue-deep));
  color: #fff;
  font-weight: 900;
  box-shadow: 0 16px 34px rgba(0, 0, 0, .28);
}

.reveal-item {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
}
.reveal-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.story-flow {
  position: relative;
  isolation: isolate;
}
.story-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.story-track::before {
  content: "";
  position: absolute;
  top: 42px;
  left: 8%;
  right: 8%;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(217,16,24,.16), rgba(255,54,64,.7), rgba(217,16,24,.16));
  z-index: -1;
}
.story-card {
  position: relative;
  min-height: 230px;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--bg-panel);
  box-shadow: 0 14px 38px rgba(217, 16, 24, .09);
}
.story-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-bottom: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-blue-deep), var(--brand-blue-bright));
  color: #fff;
  font-weight: 900;
  box-shadow: 0 14px 28px rgba(217,16,24,.22);
}
.story-card p { color: var(--text-muted); }
.story-progress {
  position: sticky;
  bottom: 84px;
  z-index: 10;
  display: flex;
  justify-content: center;
  gap: 8px;
  pointer-events: none;
  margin-top: 18px;
}
.story-progress button {
  pointer-events: auto;
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(217, 16, 24, .28);
}
.story-progress button.active { background: var(--brand-blue); transform: scale(1.35); }

.google-link-card {
  border: 1px dashed var(--border);
  border-radius: 18px;
  padding: 18px;
  background: #fbfdff;
}
.google-link-card p { margin: 0 0 12px; color: var(--text-muted); }
.google-review-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.google-review-actions .btn { min-height: 44px; padding: 10px 16px; }


@media (max-width: 920px) {
  .story-track { grid-template-columns: 1fr; }
  .story-track::before { left: 42px; right: auto; top: 32px; bottom: 32px; width: 3px; height: auto; background: linear-gradient(180deg, rgba(217,16,24,.16), rgba(255,54,64,.7), rgba(217,16,24,.16)); }
  .story-card { min-height: auto; padding-left: 86px; }
  .story-card span { position: absolute; left: 18px; top: 22px; margin: 0; }
  .dark-mode-toggle { bottom: 18px; left: 16px; }
}
@media (max-width: 560px) {
  .google-review-actions .btn { width: 100%; }
  .dark-mode-toggle { min-height: 44px; padding: 10px 13px; font-size: .9rem; }
}
@media (prefers-reduced-motion: reduce) {
  .reveal-item { opacity: 1; transform: none; transition: none; }
}


/* Generations RV LLC red / black / silver theme override */
:root {
  --bg-main: #09090b;
  --bg-panel: #151519;
  --bg-soft: #202026;
  --bg-invert: #020203;
  --brand-blue: #d91018;
  --brand-blue-bright: #ff3640;
  --brand-blue-deep: #980008;
  --text-main: #f5f5f7;
  --text-muted: #c8c8cf;
  --text-light: #ffffff;
  --border: rgba(255, 255, 255, .16);
  --shadow: 0 22px 58px rgba(0, 0, 0, .38);
}
body {
  background:
    radial-gradient(circle at 18% 0%, rgba(217, 16, 24, .24), transparent 34%),
    radial-gradient(circle at 84% 5%, rgba(255, 255, 255, .08), transparent 26%),
    linear-gradient(180deg, #050506 0%, #111116 52%, #070708 100%) !important;
  color: var(--text-main);
}
.site-header {
  background:
    radial-gradient(circle at 50% -80%, rgba(255, 54, 64, .32), transparent 48%),
    linear-gradient(90deg, rgba(2, 2, 3, .98), rgba(34, 2, 6, .98) 50%, rgba(5, 5, 6, .96));
  border-bottom-color: rgba(255, 54, 64, .38);
  box-shadow: 0 14px 36px rgba(0, 0, 0, .42);
}
.main-nav a { color: #efeff2; }
.main-nav a::after { background: linear-gradient(90deg, #ffffff, var(--brand-blue-bright), #ffffff); }
.brand::before { background: radial-gradient(circle, rgba(255, 54, 64, .28), transparent 66%); }
.brand-header-image {
  width: clamp(260px, 23vw, 360px);
  max-width: min(32vw, 360px);
  max-height: 142px;
  object-fit: contain;
  filter: drop-shadow(0 0 20px rgba(255, 54, 64, .48));
}
.eyebrow, .stars { color: var(--brand-blue-bright); }
.btn { border-color: rgba(255, 54, 64, .72); }
.btn.primary {
  background: linear-gradient(135deg, #980008, #d91018 58%, #ff3640);
  box-shadow: 0 14px 30px rgba(217, 16, 24, .28);
}
.btn.secondary, .btn.ghost {
  background: linear-gradient(180deg, #f7f7f8, #d9d9de);
  color: #111116;
  border-color: rgba(255, 255, 255, .46);
  box-shadow: 0 12px 28px rgba(0, 0, 0, .24);
}
.hero-visual,
.service-card,
.info-card,
.headshot-card,
.contact-panel,
.form-panel,
.review-panel,
.review-card,
.story-card,
.google-link-card,
.photo-gallery figure,
.steps li {
  background: linear-gradient(180deg, #18181d 0%, #101014 100%);
  border-color: rgba(255, 255, 255, .16);
  color: var(--text-main);
  box-shadow: 0 18px 44px rgba(0, 0, 0, .32);
}
.hero-visual img,
.service-card img,
.service-hero img,
.contact-panel > img,
.photo-gallery img {
  border-color: rgba(255, 255, 255, .16);
}
.service-card p,
.info-card p,
.lead,
.section-heading p:last-child,
.page-header p,
.steps span,
.review-card p,
.review-source,
.review-location,
.google-summary,
.empty-review,
.logo-badge-mini,
.photo-gallery figcaption,
.site-footer p { color: var(--text-muted); }
.trust-strip span {
  background: linear-gradient(135deg, #050506, #410006 58%, #9a0008);
  border-color: rgba(255, 54, 64, .42);
  box-shadow: 0 14px 32px rgba(0, 0, 0, .34);
}
.steps li { border-left-color: var(--brand-blue-bright); }
.cta-panel {
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 54, 64, .34), transparent 32%),
    linear-gradient(135deg, #050506, #400006 52%, #0b0b0e);
  border: 1px solid rgba(255, 255, 255, .14);
}
.cta-panel .btn.primary { background: #f7f7f8; color: #111116; }
.site-footer { background: #08080a; border-top-color: rgba(255, 255, 255, .16); }
input, textarea, select {
  background: #0d0d10;
  color: var(--text-main);
  border-color: rgba(255, 255, 255, .18);
}
input::placeholder, textarea::placeholder { color: #8d8d96; }
.contact-list a, .contact-list span { border-color: rgba(255,255,255,.16); background: rgba(255,255,255,.04); }
.logo-badge-mini img { filter: drop-shadow(0 0 14px rgba(255, 54, 64, .48)); background: #050506; }
.dark-mode-toggle,
.nav-toggle {
  background: linear-gradient(135deg, #980008, #ff3640);
  box-shadow: 0 18px 38px rgba(217, 16, 24, .30), 0 0 0 5px rgba(255, 54, 64, .14);
}
.mobile-nav {
  border-color: rgba(255, 54, 64, .56);
  background: linear-gradient(135deg, rgba(70, 0, 8, .96), rgba(5, 5, 6, .98));
}
.mobile-nav a:hover,
.mobile-nav a.active { background: rgba(255, 54, 64, .22); border-color: rgba(255, 54, 64, .68); }
:root[data-theme="dark"] body {
  background:
    radial-gradient(circle at 20% 0%, rgba(217, 16, 24, .22), transparent 34%),
    linear-gradient(180deg, #050506 0%, #111116 52%, #070708 100%) !important;
}
@media (max-width: 1120px) {
  .brand-header-image {
    width: min(76vw, 340px);
    max-width: 76vw;
    max-height: 168px;
  }
}

/* === GENERATIONS_INTENTIONAL_TONE_DOWN_START === */
/*
  Intentional toned-down visual pass for Generations RV LLC.
  This only overrides presentation: color, shadows, gloss, image treatment,
  spacing, radii, and animation. IDs, forms, scripts, API paths, and layout
  hooks are untouched so functionality stays the same.
*/
:root {
  --bg-main: #121212;
  --bg-panel: #1b1b1d;
  --bg-soft: #242426;
  --bg-invert: #080808;
  --brand-blue: #99171c;
  --brand-blue-bright: #b4242a;
  --brand-blue-deep: #761116;
  --text-main: #e6e6e6;
  --text-muted: #a8a8a8;
  --text-light: #f1f1f1;
  --border: rgba(255, 255, 255, .11);
  --shadow: none;
  --radius-lg: 14px;
  --radius-md: 10px;
}

html { scroll-behavior: auto; }
body {
  background: #121212 !important;
  color: var(--text-main) !important;
}

.site-header {
  background: #080808 !important;
  border-bottom: 1px solid #2a2a2a !important;
  box-shadow: none !important;
}
.header-inner { min-height: 72px; }
.brand::before { display: none !important; }
.brand-header-image {
  width: clamp(210px, 18vw, 280px) !important;
  max-width: min(28vw, 280px) !important;
  max-height: 112px !important;
  filter: none !important;
}
.main-nav { gap: clamp(14px, 1.4vw, 24px) !important; }
.main-nav a {
  color: #c7c7c7 !important;
  font-weight: 800 !important;
  font-size: .76rem !important;
  letter-spacing: .08em !important;
  transition: none !important;
}
.main-nav a::after {
  height: 1px !important;
  background: #99171c !important;
  box-shadow: none !important;
}
.main-nav a:hover,
.main-nav a.active { color: #ffffff !important; }

h1 {
  font-size: clamp(2.15rem, 3.25vw, 3rem) !important;
  letter-spacing: -.025em !important;
}
h2 {
  font-size: clamp(1.75rem, 3.45vw, 2.65rem) !important;
  letter-spacing: -.025em !important;
}
h3 { font-size: 1.18rem !important; }
.eyebrow,
.stars { color: #b4242a !important; }
.lead { font-size: clamp(1rem, 1.35vw, 1.12rem) !important; }

.hero {
  min-height: auto !important;
  padding-top: clamp(34px, 4vw, 46px) !important;
  padding-bottom: 30px !important;
  gap: clamp(22px, 3vw, 38px) !important;
}
.section,
.split-section {
  padding-top: 56px !important;
  padding-bottom: 56px !important;
}
.page-header { padding-top: 42px !important; }

.btn,
.button,
.primary-btn,
.cta-button {
  border-radius: 6px !important;
  min-height: 44px !important;
  padding: 10px 18px !important;
  box-shadow: none !important;
  transition: none !important;
}
.btn:hover,
.button:hover,
.primary-btn:hover,
.cta-button:hover,
.card:hover,
.service-card:hover,
.info-card:hover,
.story-card:hover,
.review-card:hover {
  transform: none !important;
  filter: none !important;
}
.btn.primary {
  background: #94161b !important;
  border-color: #94161b !important;
  color: #ffffff !important;
  box-shadow: none !important;
}
.btn.secondary,
.btn.ghost {
  background: #262628 !important;
  color: #eeeeee !important;
  border-color: #4a4a4a !important;
  box-shadow: none !important;
}
.btn.ghost:hover,
.btn.secondary:hover { background: #303033 !important; }

.hero-visual,
.service-card,
.info-card,
.headshot-card,
.contact-panel,
.form-panel,
.review-panel,
.review-card,
.story-card,
.google-link-card,
.photo-gallery figure,
.steps li {
  background: #1b1b1d !important;
  border: 1px solid rgba(255, 255, 255, .11) !important;
  border-radius: 10px !important;
  box-shadow: none !important;
  color: var(--text-main) !important;
}
.hero-visual,
.contact-panel,
.form-panel,
.review-panel { border-radius: 12px !important; }
.service-card,
.info-card,
.headshot-card,
.review-panel,
.story-card { padding: 20px !important; }

.hero-visual img,
.service-card img,
.service-hero img,
.contact-panel > img,
.photo-gallery img,
.headshot-card img {
  border-radius: 8px !important;
  border-color: rgba(255, 255, 255, .12) !important;
  box-shadow: none !important;
  filter: saturate(.68) contrast(.9) brightness(.86) !important;
}
.logo-badge-mini img {
  filter: none !important;
  background: #111 !important;
}

.trust-strip { margin-bottom: 34px !important; }
.trust-strip span {
  background: #1a1a1c !important;
  border: 1px solid rgba(255, 255, 255, .12) !important;
  border-radius: 8px !important;
  box-shadow: none !important;
  padding: 13px 14px !important;
  font-weight: 700 !important;
}
.trust-strip span:first-child,
.trust-strip span:last-child { border-radius: 8px !important; }

.steps li { border-left: 3px solid #94161b !important; }
.story-track::before {
  background: #383838 !important;
  height: 1px !important;
}
.story-card span {
  background: #2b2b2e !important;
  border: 1px solid #4a4a4a !important;
  box-shadow: none !important;
  color: #eeeeee !important;
}
.story-progress button { background: #555 !important; }
.story-progress button.active {
  background: #94161b !important;
  transform: none !important;
}

.cta-panel {
  background: #1a1a1c !important;
  border: 1px solid rgba(255, 255, 255, .12) !important;
  border-radius: 12px !important;
  box-shadow: none !important;
  margin-top: 44px !important;
}
.cta-panel .btn.primary {
  background: #94161b !important;
  border-color: #94161b !important;
  color: #ffffff !important;
}

input,
textarea,
select {
  background: #171719 !important;
  color: #e6e6e6 !important;
  border-color: rgba(255, 255, 255, .16) !important;
  border-radius: 6px !important;
}
.contact-list a,
.contact-list span {
  background: #171719 !important;
  border-color: rgba(255, 255, 255, .12) !important;
  border-radius: 6px !important;
}

.site-footer {
  background: #0d0d0e !important;
  border-top-color: rgba(255, 255, 255, .12) !important;
}
.dark-mode-toggle,
.nav-toggle {
  background: #222225 !important;
  border-color: #4a4a4a !important;
  box-shadow: none !important;
  color: #eeeeee !important;
}
.mobile-nav {
  background: #111113 !important;
  border-color: #3a3a3a !important;
  border-radius: 12px !important;
  box-shadow: none !important;
}
.mobile-nav a {
  background: #1d1d20 !important;
  border-color: #333 !important;
  border-radius: 6px !important;
  text-shadow: none !important;
}
.mobile-nav a:hover,
.mobile-nav a.active { background: #2a2a2d !important; }

.reveal-item,
.reveal-item.is-visible {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}
* {
  text-shadow: none !important;
}
:where(.hero-visual, .service-card, .info-card, .headshot-card, .contact-panel, .form-panel, .review-panel, .review-card, .story-card, .google-link-card, .photo-gallery figure, .steps li, .cta-panel) {
  transform: none !important;
}

@media (max-width: 1120px) {
  .brand-header-image {
    width: min(70vw, 280px) !important;
    max-width: 70vw !important;
    max-height: 130px !important;
  }
}
@media (max-width: 820px) {
  .hero { padding-top: 30px !important; }
  .section,
  .split-section { padding-top: 44px !important; padding-bottom: 44px !important; }
}
/* === GENERATIONS_INTENTIONAL_TONE_DOWN_END === */
