/* ==========================================================================
   Grime Fighters Auto — Local Area Landing Suite
   Brand crimson #ce0504 · Poppins (display) + Roboto (body)
   ========================================================================== */

:root {
  --brand: #ce0504;
  --brand-deep: #8f0303;
  --brand-glow: #ff2b26;
  --ink: #0a0a0b;
  --ink-soft: #17181a;
  --paper: #ffffff;
  --paper-2: #f6f5f4;
  --paper-3: #ece9e6;
  --body: #3a3b3f;
  --line: rgba(10, 10, 11, 0.1);
  --radius: 18px;
  --shadow-lg: 0 34px 80px -32px rgba(10, 10, 11, 0.45);
  --shadow-md: 0 18px 44px -22px rgba(10, 10, 11, 0.35);
  --grad: linear-gradient(120deg, var(--brand-deep), var(--brand) 45%, var(--brand-glow));
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* per-page accent shading (shades of the same crimson family) */
body.shade-portland { --brand: #ce0504; --brand-deep: #8d0202; --brand-glow: #ff3b2f; }
body.shade-eugene { --brand: #c11310; --brand-deep: #7d0605; --brand-glow: #f5402f; }
body.shade-springfield { --brand: #d81b17; --brand-deep: #97100d; --brand-glow: #ff5942; }
body.shade-cottage { --brand: #b60d0c; --brand-deep: #740404; --brand-glow: #ef3a2a; }
body.shade-junction { --brand: #d0110a; --brand-deep: #870604; --brand-glow: #ff4630; }
body.shade-creswell { --brand: #bf0a12; --brand-deep: #7b0409; --brand-glow: #f83c39; }

* { -webkit-tap-highlight-color: transparent; }

html { scroll-behavior: smooth; scroll-padding-top: 96px; }

body {
  margin: 0;
  font-family: "Roboto", system-ui, -apple-system, sans-serif;
  color: var(--body);
  background: var(--paper);
  font-size: 1.0125rem;
  line-height: 1.78;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, .display, .btn, .nav-link, .eyebrow {
  font-family: "Poppins", "Roboto", sans-serif;
}

h1, h2, h3, h4 { color: var(--ink); font-weight: 700; letter-spacing: -0.02em; line-height: 1.12; }

a { color: var(--brand); text-decoration: none; transition: color .25s var(--ease); }
a:hover { color: var(--brand-deep); }

img { max-width: 100%; height: auto; display: block; }

::selection { background: var(--brand); color: #fff; }

.container-xl, .container { max-width: 1240px; }

/* ---------- shared type helpers ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  font-size: .72rem; font-weight: 700; letter-spacing: .26em; text-transform: uppercase;
  color: var(--brand);
}
.eyebrow::before {
  content: ""; width: 34px; height: 2px; background: var(--grad); border-radius: 2px;
}
.eyebrow.on-dark { color: #fff; }
.section-title { font-size: clamp(1.9rem, 3.7vw, 3.1rem); margin: .7rem 0 1rem; }
.lead-txt { font-size: 1.06rem; max-width: 62ch; }
.txt-brand { color: var(--brand); }
.hl { color: var(--brand); font-weight: 600; }

.sec { position: relative; padding: clamp(4.5rem, 8vw, 7.5rem) 0; }
.sec-tint { background: var(--paper-2); }
.sec-ink { background: var(--ink); color: rgba(255, 255, 255, .74); }
.sec-ink h2, .sec-ink h3, .sec-ink h4 { color: #fff; }

/* ---------- decorative abstractions ---------- */
.blob {
  position: absolute; border-radius: 50%; filter: blur(70px); opacity: .3;
  background: var(--grad); pointer-events: none; z-index: 0;
  animation: drift 16s ease-in-out infinite alternate;
}
.blob.b1 { width: 380px; height: 380px; top: -120px; right: 0px; }
.blob.b2 { width: 300px; height: 300px; bottom: -110px; left: -90px; animation-delay: -6s; }
@keyframes drift { to { transform: translate3d(30px, -26px, 0) scale(1.12); } }

.grid-abstract {
  position: absolute; inset: 0; z-index: 0; pointer-events: none; opacity: .5;
  background-image: linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at 50% 30%, #000, transparent 72%);
}
.sec > .container, .sec > .container-xl { position: relative; z-index: 2; }

.streak {
  position: absolute; width: 140%; height: 2px; left: -20%;
  background: linear-gradient(90deg, transparent, var(--brand), transparent);
  opacity: .5;
}

/* ---------- buttons ---------- */
.btn {
  --pad-y: .9rem; --pad-x: 1.7rem;
  border: 0; border-radius: 100px; padding: var(--pad-y) var(--pad-x);
  font-weight: 600; font-size: .95rem; letter-spacing: .01em;
  display: inline-flex; align-items: center; gap: .6rem;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease), color .3s var(--ease);
}
.btn:focus-visible { outline: 3px solid var(--brand-glow); outline-offset: 3px; }
.btn-brand {
  background: var(--grad); color: #fff;
  box-shadow: 0 16px 34px -14px color-mix(in oklab, var(--brand) 70%, transparent);
}
.btn-brand:hover { color: #fff; transform: translateY(-3px); box-shadow: 0 22px 46px -14px color-mix(in oklab, var(--brand) 80%, transparent); }
.btn-ghost-light { border: 1.5px solid rgba(255,255,255,.28); color: #fff; background: transparent; }
.btn-ghost-light:hover { background: #fff; color: var(--ink); transform: translateY(-3px); }
.btn-outline-ink { border: 1.5px solid var(--ink); color: var(--ink); background: transparent; }
.btn-outline-ink:hover { background: var(--ink); color: #fff; transform: translateY(-3px); }
.btn-lg { --pad-y: 1.05rem; --pad-x: 2.1rem; font-size: 1rem; }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: #000; border-bottom: 1px solid rgba(255,255,255,.08);
}
.site-header .bar {
  display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 1.2rem;
  padding: .75rem 0; min-height: 78px;
}

.brand-logo { display: flex; align-items: center; gap: .75rem; min-width: 0; }
.brand-logo img { height: 50px; width: auto; border-radius: 6px; }
.hdr-nav { display: flex; justify-content: center; }
.hdr-nav ul { display: flex; gap: .35rem; list-style: none; margin: 0; padding: 0; flex-wrap: wrap; justify-content: center; }
.hdr-nav .nav-link {
  color: rgba(255,255,255,.82); font-size: .88rem; font-weight: 500;
  padding: .55rem .9rem; border-radius: 100px; position: relative; display: block;
  transition: color .25s var(--ease), background .25s var(--ease);
}
.hdr-nav .nav-link::after {
  content: ""; position: absolute; left: 50%; bottom: .3rem; width: 0; height: 2px;
  background: var(--grad); transform: translateX(-50%); transition: width .3s var(--ease);
}
.hdr-nav .nav-link:hover { color: #fff; }
.hdr-nav .nav-link:hover::after, .hdr-nav .nav-link.active::after { width: 40%; }
.hdr-cta { display: flex; align-items: center; gap: .8rem; justify-self: end; }
.hdr-cta .call {
  background: var(--grad); color: #fff; border-radius: 100px; padding: .7rem 1.3rem;
  font-family: "Poppins", sans-serif; font-weight: 600; font-size: .92rem; white-space: nowrap;
  display: inline-flex; align-items: center; gap: .55rem;
  box-shadow: 0 14px 30px -14px color-mix(in oklab, var(--brand) 80%, transparent);
  transition: transform .3s var(--ease);
}
.hdr-cta .call:hover { color: #fff; transform: translateY(-2px) scale(1.02); }
.nav-toggle {
  display: none; background: transparent; border: 1px solid rgba(255,255,255,.24);
  color: #fff; border-radius: 12px; width: 44px; height: 40px; align-items: center; justify-content: center;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; display: block; width: 18px; height: 2px; background: #fff; position: relative;
}
.nav-toggle span::before { position: absolute; top: -6px; }
.nav-toggle span::after { position: absolute; top: 6px; }

@media (max-width: 991px) {
  .site-header .bar { grid-template-columns: auto auto; }
  .nav-toggle { display: inline-flex; }
  .hdr-nav {
    grid-column: 1 / -1; max-height: 0; overflow: hidden; transition: max-height .4s var(--ease);
  }
  .hdr-nav.open { max-height: 340px; }
  .hdr-nav ul { flex-direction: column; width: 100%; padding-bottom: .8rem; }
  .hdr-nav .nav-link { padding: .7rem .2rem; }
  .hdr-cta .call { padding: .6rem 1rem; font-size: .85rem; }
}

/* ---------- hero ---------- */
.hero { position: relative; background: var(--ink); color: rgba(255,255,255,.8); overflow: hidden; }
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; opacity: .42; transform: scale(1.04); animation: heroPan 22s ease-in-out infinite alternate; }
@keyframes heroPan { to { transform: scale(1.14) translate3d(-2%, -1.5%, 0); } }
.hero-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(0,0,0,.94) 8%, rgba(0,0,0,.72) 46%, color-mix(in oklab, var(--brand-deep) 62%, transparent) 100%);
}
.hero-inner { position: relative; z-index: 2; padding: clamp(4.5rem, 10vw, 8.5rem) 0 clamp(3.5rem, 7vw, 6rem); }
.hero h1 { color: #fff; font-size: clamp(2.15rem, 5.1vw, 4.1rem); font-weight: 800; }
.hero h1 em { font-style: normal; background: linear-gradient(100deg, #fff, var(--brand-glow)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero p { font-size: 1.07rem; max-width: 60ch; color: rgba(255,255,255,.78); }
.hero-badges { display: flex; flex-wrap: wrap; gap: .55rem; margin-top: 1.6rem; }
.chip {
  border: 1px solid rgba(255,255,255,.2); border-radius: 100px; padding: .42rem 1rem;
  font-size: .78rem; font-weight: 500; color: rgba(255,255,255,.85); backdrop-filter: blur(6px);
  background: rgba(255,255,255,.05);
}
.hero-stats { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 1px; background: rgba(255,255,255,.14); border-radius: var(--radius); overflow: hidden; margin-top: 2.4rem; }
.hero-stats div {text-align:center; background: rgba(255,255,255,.04); padding: 1.4rem 1.2rem; backdrop-filter: blur(4px); }
.hero-stats strong { display: block; font-family: "Poppins", sans-serif; font-size: 1.85rem; color: #fff; line-height: 1; }
.hero-stats span { font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.6); }
.hero-card {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14); border-radius: 22px;
  padding: 1.8rem; backdrop-filter: blur(14px); box-shadow: var(--shadow-lg);
}
.hero-card h3 { color: #fff; font-size: 1.15rem; }
.hero-card ul { list-style: none; margin: 1rem 0 0; padding: 0; }
.hero-card li { display: flex; gap: .7rem; padding: .5rem 0; font-size: .93rem; border-bottom: 1px dashed rgba(255,255,255,.12); }
.hero-card li:last-child { border-bottom: 0; }
.hero-card li i { color: var(--brand-glow); }
.marquee-wrap { border-top: 1px solid rgba(255,255,255,.1); border-bottom: 1px solid rgba(255,255,255,.1); background: #000; overflow: hidden; position: relative; z-index: 3; }
.marquee { display: flex; gap: 3rem; padding: .85rem 0; white-space: nowrap; animation: slide 28s linear infinite; }
.marquee span { color: rgba(255,255,255,.5); font-family: "Poppins", sans-serif; font-size: .8rem; letter-spacing: .22em; text-transform: uppercase; display: inline-flex; gap: 3rem; align-items: center; }
.marquee span::after { content: "◆"; color: var(--brand); font-size: .6rem; }
@keyframes slide { to { transform: translateX(-50%); } }

/* ---------- generic cards ---------- */
.card-soft {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.9rem; height: 100%; position: relative; overflow: hidden;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}
.card-soft::before {
  content: ""; position: absolute; left: 0; top: 0; height: 3px; width: 0; background: var(--grad);
  transition: width .45s var(--ease);
}
.card-soft:hover { transform: translateY(-7px); box-shadow: var(--shadow-md); border-color: transparent; }
.card-soft:hover::before { width: 100%; }
.card-soft .ico {
  width: 52px; height: 52px; border-radius: 15px; display: grid; place-items: center;
  background: color-mix(in oklab, var(--brand) 12%, #fff); color: var(--brand); font-size: 1.25rem; margin-bottom: 1.1rem;
}

/* ---------- services ---------- */
.svc { position: relative; }
.svc-figure { position: relative; border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-md); }
.svc-figure img { width: 100%; aspect-ratio: 16 / 14; object-fit: cover; transition: transform .8s var(--ease); }
.svc-figure:hover img { transform: scale(1.07); }
.svc-figure figcaption {
  position: absolute; left: 1rem; bottom: 1rem; background: rgba(0,0,0,.72); color: #fff;
  font-family: "Poppins", sans-serif; font-size: .74rem; letter-spacing: .16em; text-transform: uppercase;
  padding: .45rem .9rem; border-radius: 100px; backdrop-filter: blur(6px);
}
.svc-num {
  font-family: "Poppins", sans-serif; font-weight: 800; font-size: 3.2rem; line-height: 1;
  color: transparent; -webkit-text-stroke: 1.5px color-mix(in oklab, var(--brand) 55%, transparent);
}
.svc h3 { font-size: clamp(1.35rem, 2.2vw, 1.75rem); margin: .5rem 0 .9rem; }
.svc p { margin-bottom: .9rem; }
.svc-meta { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1rem; }
.tag {
  font-size: .74rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  background: color-mix(in oklab, var(--brand) 10%, #fff); color: var(--brand-deep);
  border: 1px solid color-mix(in oklab, var(--brand) 22%, transparent);
  padding: .35rem .8rem; border-radius: 100px;
}
.svc-row + .svc-row { margin-top: clamp(3rem, 6vw, 5rem); padding-top: clamp(3rem, 6vw, 5rem); border-top: 1px dashed var(--line); }

/* mosaic variant */
.svc-tile {
  position: relative; border-radius: 20px; overflow: hidden; min-height: 420px; display: flex;
  align-items: flex-end; color: #fff; box-shadow: var(--shadow-md); height: 100%;
}
.svc-tile > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease); }
.svc-tile:hover > img { transform: scale(1.08); }
.svc-tile .veil {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.05) 20%, rgba(0,0,0,.82) 68%, #000 100%);
}
.svc-tile .body { position: relative; z-index: 2; padding: 1.8rem; }
.svc-tile h3 { color: #fff; font-size: 1.3rem; }
.svc-tile p { color: rgba(255,255,255,.8); font-size: .93rem; margin-bottom: .7rem; }

/* stacked panel variant */
.svc-panel {
  display: grid; grid-template-columns: 1.05fr 1fr; gap: 0; border-radius: 22px; overflow: hidden;
  background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-md); height: 100%;
}
.svc-panel .pic { position: relative; min-height: 260px; }
.svc-panel .pic img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.svc-panel .body { padding: 1.9rem; }
@media (max-width: 767px) { .svc-panel { grid-template-columns: 1fr; } }

/* ---------- process rail ---------- */
.rail { counter-reset: step; }
.rail-item { position: relative; padding-left: 4.2rem; padding-bottom: 2.2rem; }
.rail-item::before {
  counter-increment: step; content: counter(step, decimal-leading-zero);
  position: absolute; left: 0; top: 0; width: 52px; height: 52px; border-radius: 50%;
  display: grid; place-items: center; font-family: "Poppins", sans-serif; font-weight: 700;
  color: #fff; background: var(--grad); box-shadow: 0 12px 24px -12px color-mix(in oklab, var(--brand) 70%, transparent);
}
.rail-item::after { content: ""; position: absolute; left: 26px; top: 58px; bottom: 6px; width: 2px; background: linear-gradient(var(--brand), transparent); opacity: .35; }
.rail-item:last-child::after { display: none; }
.rail-item h4 { font-size: 1.08rem; margin-bottom: .35rem; }

/* ---------- testimonials ---------- */
.quote {
  background: #fff; border-radius: var(--radius); padding: 2rem 1.9rem; height: 100%;
  border: 1px solid var(--line); position: relative; transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.quote:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.quote::before {
  content: "”"; font-family: "Poppins", serif; font-size: 5rem; line-height: .7; color: color-mix(in oklab, var(--brand) 22%, transparent);
  position: absolute; right: 1.2rem; top: 1.4rem;
}
.stars { color: var(--brand); letter-spacing: .15em; font-size: .85rem; }
.quote p { font-style: italic; margin: .8rem 0 1.2rem; }
.who { display: flex; align-items: center; gap: .8rem; }
.who .av {
  width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; flex: 0 0 auto;
  background: var(--grad); color: #fff; font-family: "Poppins", sans-serif; font-weight: 700;
}
.who strong { display: block; color: #fff; font-family: "Poppins", sans-serif; font-size: .95rem; }
.who span { font-size: .8rem; color: #7b7c80; }
.quote.on-dark { background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.12); color: rgba(255,255,255,.78); }
.quote.on-dark .who span { color: rgba(255,255,255,.55); }

/* ---------- faq ---------- */
.faq-item {
  border: 1px solid var(--line); border-radius: 16px; background: #fff; margin-bottom: .85rem; overflow: hidden;
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.faq-item[open] { border-color: color-mix(in oklab, var(--brand) 40%, transparent); box-shadow: var(--shadow-md); }
.faq-q {
  cursor: pointer; list-style: none; padding: 1.15rem 3.2rem 1.15rem 1.3rem; position: relative;
  font-family: "Poppins", sans-serif; font-weight: 600; color: var(--ink); font-size: 1.01rem;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after {
  content: "+"; position: absolute; right: 1.2rem; top: 50%; transform: translateY(-50%);
  width: 28px; height: 28px; border-radius: 50%; background: var(--grad); color: #fff;
  display: grid; place-items: center; font-size: 1.1rem; line-height: 1; transition: transform .35s var(--ease);
}
.faq-item[open] .faq-q::after { content: "–"; transform: translateY(-50%) rotate(180deg); }
.faq-a { padding: 0 1.4rem 1.3rem; font-size: .98rem; }

/* ---------- location / map ---------- */
.map-shell {
  position: relative; border-radius: 22px; overflow: hidden; box-shadow: var(--shadow-lg);
  border: 1px solid var(--line); background: #000;
}
.map-shell iframe { width: 100%; height: 460px; border: 0; display: block; filter: grayscale(.25) contrast(1.05); }
.map-flag {
  position: absolute; left: 1.1rem; top: 1.1rem; z-index: 3; background: #000; color: #fff;
  border-radius: 14px; padding: .8rem 1.1rem; box-shadow: var(--shadow-md); max-width: 74%;
}
.map-flag strong { display: block; font-family: "Poppins", sans-serif; font-size: .95rem; }
.map-flag span { font-size: .78rem; color: rgba(255,255,255,.66); }
.pin-dot {
  width: 14px; height: 14px; border-radius: 50%; background: var(--brand); display: inline-block;
  margin-right: .5rem; box-shadow: 0 0 0 0 color-mix(in oklab, var(--brand) 60%, transparent);
  animation: pulse 2s infinite;
}
@keyframes pulse { 70% { box-shadow: 0 0 0 14px transparent; } 100% { box-shadow: 0 0 0 0 transparent; } }
.zone-list { columns: 2; column-gap: 1.6rem; list-style: none; padding: 0; margin: 0; }
.zone-list li { padding: .42rem 0; font-size: .95rem; display: flex; gap: .55rem; }
.zone-list li i { color: var(--brand); }
@media (max-width: 575px) { .zone-list { columns: 1; } }

/* ---------- contact ---------- */
.contact-panel {
  background: #fff; border-radius: 24px; padding: clamp(1.6rem, 3vw, 2.6rem);
  box-shadow: var(--shadow-lg); border: 1px solid var(--line);
}
.form-control, .form-select {
  border-radius: 12px; border: 1px solid var(--line); padding: .85rem 1rem; font-size: .95rem;
  background: var(--paper-2);
}
.form-control:focus, .form-select:focus {
  border-color: var(--brand); box-shadow: 0 0 0 4px color-mix(in oklab, var(--brand) 14%, transparent);
  background: #fff;
}
.form-label { font-family: "Poppins", sans-serif; font-size: .82rem; font-weight: 600; color: var(--ink); }
.info-row { display: flex; gap: 1rem; align-items: flex-start; padding: 1rem 0; border-bottom: 1px dashed rgba(255,255,255,.14); }
.info-row:last-child { border-bottom: 0; }
.info-row .ico { width: 46px; height: 46px; border-radius: 14px; display: grid; place-items: center; background: var(--grad); color: #fff; flex: 0 0 auto; }
.info-row strong { display: block; color: #fff; font-family: "Poppins", sans-serif; font-size: .95rem; }
.form-note { font-size: .84rem; color: #7b7c80; }
.form-status { display: none; margin-top: 1rem; border-radius: 12px; padding: .85rem 1rem; background: color-mix(in oklab, var(--brand) 10%, #fff); color: var(--brand-deep); font-size: .9rem; }
.form-status.show { display: block; }

/* ---------- cta band ---------- */
.cta-band { position: relative; background: var(--ink); overflow: hidden; }
.cta-band img.bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .3; }
.cta-band::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,0,0,.9), color-mix(in oklab, var(--brand-deep) 70%, transparent)); }
.cta-band .container { position: relative; z-index: 3; }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.75); }

/* ---------- footer ---------- */
.site-footer { background: #000; color: rgba(255,255,255,.62); padding: clamp(3rem, 6vw, 4.5rem) 0 0; }
.site-footer h5 { color: #fff; font-size: .82rem; letter-spacing: .2em; text-transform: uppercase; margin-bottom: 1.1rem; }
.site-footer a { color: rgba(255,255,255,.62); font-size: .93rem; }
.site-footer a:hover { color: #fff; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { padding: .3rem 0; }
.site-footer .logo img { height: 52px; border-radius: 6px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: 2.5rem; padding: 1.3rem 0; font-size: .84rem; }

/* ---------- reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); will-change: opacity, transform; }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; } .reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; } .reveal.d4 { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-media img, .blob, .marquee { animation: none !important; }
  html { scroll-behavior: auto; }
}

/* ---------- progress + to-top ---------- */
.read-bar { position: fixed; top: 0; left: 0; height: 3px; width: 0; background: var(--grad); z-index: 2000; }
.to-top {
  position: fixed; right: 1.1rem; bottom: 1.1rem; z-index: 999; width: 48px; height: 48px; border-radius: 50%;
  border: 0; background: var(--grad); color: #fff; display: grid; place-items: center; opacity: 0; pointer-events: none;
  transition: opacity .3s var(--ease), transform .3s var(--ease); box-shadow: var(--shadow-md);
}
.to-top.show { opacity: 1; pointer-events: auto; }
.to-top:hover { transform: translateY(-4px); }
.mobile-call {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 998; display: none;
  background: #000; border-top: 1px solid rgba(255,255,255,.12); padding: .6rem .9rem;
}
@media (max-width: 575px) {
  .mobile-call { display: block; }
  body { padding-bottom: 74px; }
  .to-top { bottom: 84px; }
}


@media (max-width: 768px) {
  .hdr-cta .call{display:none;}
  .site-header .bar { display:flex; justify-content:space-between; gap:0; padding:.75rem 1rem;}
  .hdr-nav.open{
        position: absolute;
    top: 80px;
    right: 0px;
    background-color: #fff;
    width: 90%;
    left: 10px;
  }
  .hdr-nav.open ul li a{
    color: #000;
    text-align: center;
  }
  .mobile-call{
    display:none;
  }
.blob.b1 {
  display:none;
}

}