/* =============================================================================
   SOLENT LOCKSMITHS — Design System (Stage 1)
   Tokens first. Tone: trustworthy, solid, established, professional.
   Brand colours: RED #ed1c24 (primary) + YELLOW/GOLD (accent) on a CHARCOAL anchor.
   Charcoal = solidity/trust · Red = brand & action · Gold = highlight/craft.
   (Legacy token names kept: --navy-* now charcoal, --brass-* now gold,
    --steel-* now red/gold — so component rules inherit the new brand automatically.)
   ========================================================================== */

:root {
  /* ---- Charcoal anchor (dark surfaces) — legacy name --navy-* ---- */
  --navy-900: #141517;
  --navy-800: #1d1f24;
  --navy-700: #2a2d34;
  --navy-600: #3a3f49;
  /* --steel-* repurposed: 500 = brand red accent on light, 300 = gold hover */
  --steel-500: #ed1c24;
  --steel-300: #ffca45;

  /* ---- Brand YELLOW / gold (accent) — legacy name --brass-* ---- */
  --brass-600: #d99400;  /* darker gold, accents needing more contrast */
  --brass-500: #ffb800;  /* BRAND yellow */
  --brass-400: #ffca45;  /* bright gold, icons/numbers on dark */
  --brass-100: #fff3d4;  /* gold tint, feature card wash */

  /* ---- Brand RED (primary + emergency) ---- */
  --red-700: #a5121a;
  --red-600: #c8141d;
  --red-500: #ed1c24;    /* BRAND red */
  --red-300: #f4838a;
  --red-100: #fdeaeb;

  /* ---- Neutrals ---- */
  --ink: #1a1c20;
  --slate-700: #3b4049;
  --slate-500: #5d636d;
  --slate-400: #888e98;
  --line: #e6e8ec;
  --mist: #f1f2f4;
  --mist-2: #f8f9fb;
  --white: #ffffff;

  /* ---- Semantic ---- */
  --bg: var(--white);
  --fg: var(--ink);
  --muted: var(--slate-500);
  --accent: var(--brass-500);
  --primary: var(--red-500);
  --emergency: var(--red-500);

  /* ---- Type ---- */
  --font-sans: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --font-display: 'Archivo', system-ui, 'Segoe UI', sans-serif;

  --fs-300: clamp(.82rem, .8rem + .1vw, .9rem);
  --fs-400: clamp(.95rem, .92rem + .2vw, 1.05rem);
  --fs-500: clamp(1.05rem, 1rem + .35vw, 1.2rem);
  --fs-600: clamp(1.3rem, 1.18rem + .55vw, 1.6rem);
  --fs-700: clamp(1.65rem, 1.4rem + 1.1vw, 2.3rem);
  --fs-800: clamp(2.1rem, 1.6rem + 2.4vw, 3.5rem);

  /* ---- Spacing / shape ---- */
  --wrap: 1180px;
  --wrap-narrow: 820px;
  --gut: clamp(1rem, 4vw, 2rem);
  --radius: 14px;
  --radius-sm: 9px;
  --radius-lg: 22px;

  --shadow-sm: 0 1px 2px rgba(11,31,48,.06), 0 2px 6px rgba(11,31,48,.05);
  --shadow-md: 0 6px 18px rgba(11,31,48,.10), 0 2px 6px rgba(11,31,48,.06);
  --shadow-lg: 0 20px 50px rgba(11,31,48,.18);

  --ring: 0 0 0 3px rgba(237,28,36,.35);
  --ease: cubic-bezier(.22,.61,.36,1);
  /* lets height/block-size animate to & from `auto` (e.g. FAQ accordion) */
  interpolate-size: allow-keywords;
}

/* =============================================================================
   Reset / base
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  font-size: var(--fs-400);
  line-height: 1.6;
  color: var(--fg);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { line-height: 1.12; font-weight: 700; letter-spacing: -.01em; }
ul { list-style: none; padding: 0; }

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gut); }
.wrap--narrow { max-width: var(--wrap-narrow); }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 100;
  background: var(--navy-800); color: #fff; padding: .7rem 1.1rem; border-radius: 0 0 var(--radius-sm) 0;
}
.skip-link:focus { left: 0; }

:focus-visible { outline: none; box-shadow: var(--ring); border-radius: var(--radius-sm); }

.ic { width: 1.05em; height: 1.05em; flex: none; }

/* =============================================================================
   Buttons
   ========================================================================== */
.btn {
  --btn-bg: var(--navy-800); --btn-fg: #fff; --btn-bd: transparent;
  display: inline-flex; align-items: center; gap: .6rem;
  background: var(--btn-bg); color: var(--btn-fg); border: 1.5px solid var(--btn-bd);
  font-weight: 600; font-size: var(--fs-400); line-height: 1.1;
  padding: .8rem 1.25rem; border-radius: var(--radius-sm);
  transition: transform .15s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease);
  cursor: pointer; white-space: nowrap;
}
.btn svg { width: 1.25em; height: 1.25em; }
.btn:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0); }
.btn__sub { display: block; font-size: .72em; font-weight: 600; opacity: .8; letter-spacing: .02em; text-transform: uppercase; }
.btn__sub + * , .btn span > .btn__sub { line-height: 1; }
.btn span { display: flex; flex-direction: column; font-weight: 800; letter-spacing: .01em; }

.btn--lg { padding: 1rem 1.6rem; font-size: var(--fs-500); }
.btn--block { width: 100%; justify-content: center; }

.btn--emergency { --btn-bg: var(--emergency); box-shadow: 0 8px 22px rgba(192,57,43,.32); }
.btn--emergency:hover { --btn-bg: var(--red-500); }
.btn--call { --btn-bg: var(--red-500); box-shadow: 0 8px 22px rgba(237,28,36,.28); }
.btn--call:hover { --btn-bg: var(--red-600); }
.btn--brass { --btn-bg: var(--brass-500); --btn-fg: var(--navy-900); box-shadow: 0 8px 22px rgba(199,154,58,.3); }
.btn--brass:hover { --btn-bg: var(--brass-400); }
.btn--ghost {
  --btn-bg: transparent; --btn-fg: var(--navy-800); --btn-bd: var(--line);
  font-weight: 700;
}
.btn--ghost:hover { --btn-bd: var(--steel-300); background: var(--mist-2); }

/* On dark backgrounds */
.feature .btn--brass, .cta .btn { }

/* =============================================================================
   Eyebrow / section heads
   ========================================================================== */
.eyebrow {
  display: inline-flex; align-items: center; gap: .45rem;
  font-size: var(--fs-300); font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--steel-500);
}
.eyebrow--center { justify-content: center; }
.eyebrow--light { color: var(--brass-400); }

.section { padding: clamp(3.2rem, 7vw, 6rem) 0; }
.section--mist { background: var(--mist); border-block: 1px solid var(--line); }
.section__head { text-align: center; max-width: 46rem; margin: 0 auto clamp(2rem, 4vw, 3rem); }
.section__title { font-family: var(--font-display); font-weight: 700; letter-spacing: -.02em; font-size: var(--fs-700); color: var(--navy-900); margin-top: .5rem; }
.section__sub { color: var(--muted); font-size: var(--fs-500); margin-top: .8rem; }

/* Prose — location/service page body copy.
   Default (mobile): single column, centred. ≥720px: two columns, 3rd block full-width. */
.prose { max-width: 42rem; margin-inline: auto; text-align: center; }
.prose__item + .prose__item { margin-top: 1.5rem; }
.prose__h { font-family: var(--font-display); font-weight: 700; letter-spacing: -.01em; font-size: var(--fs-600); color: var(--navy-900); margin: 0 0 .5rem; }
.prose p { color: var(--slate-700); font-size: var(--fs-400); margin: 0; }
.prose p strong { color: var(--navy-900); }
.prose a { color: var(--red-600); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; text-decoration-thickness: 1px; transition: color .15s; }
.prose a:hover { color: var(--red-500); text-decoration-thickness: 2px; }
@media (min-width: 720px) {
  .prose { max-width: 62rem; display: grid; grid-template-columns: 1fr 1fr; gap: 1.8rem 3rem; text-align: left; }
  .prose__item + .prose__item { margin-top: 0; }
  .prose__item:last-child { grid-column: 1 / -1; max-width: 46rem; margin-inline: auto; }
}

/* =============================================================================
   Page head (legal / utility pages) + long-form prose
   ========================================================================== */
.pagehead { background: var(--navy-900); color: #eaf1f7; }
.pagehead__inner { padding-block: clamp(2rem, 5vw, 3.25rem); }
.crumbs { font-size: var(--fs-300); color: #9fb1c2; margin-bottom: .9rem; }
.crumbs a { color: var(--brass-400); text-decoration: none; }
.crumbs a:hover { text-decoration: underline; }
.crumbs span { color: #6f8092; }
.pagehead__title { font-family: var(--font-display); font-weight: 800; letter-spacing: -.025em; font-size: var(--fs-800); color: #fff; margin: 0; }
.pagehead__meta { color: #9fb1c2; font-size: var(--fs-300); margin: .6rem 0 0; }

.longform { max-width: 46rem; margin-inline: auto; color: var(--slate-700); }
.longform__intro { font-size: var(--fs-500); color: var(--navy-900); margin: 0 0 .5rem; }
.longform__h { font-family: var(--font-display); font-weight: 700; letter-spacing: -.01em; font-size: var(--fs-600); color: var(--navy-900); margin: 2.4rem 0 .6rem; scroll-margin-top: 90px; }
.longform p { font-size: var(--fs-400); line-height: 1.7; margin: 0 0 1rem; }
.longform ul { margin: 0 0 1rem; padding-left: 1.25rem; }
.longform li { font-size: var(--fs-400); line-height: 1.6; margin-bottom: .4rem; }
.longform strong { color: var(--navy-900); }
.longform a { color: var(--red-600); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; text-decoration-thickness: 1px; transition: color .15s; }
.longform a:hover { color: var(--red-500); text-decoration-thickness: 2px; }

/* =============================================================================
   Reviews slider
   ========================================================================== */
.reviews__rate { color: var(--brass-500); font-size: 1.5rem; letter-spacing: 5px; line-height: 1; margin: .35rem 0 .1rem; text-align: center; }
.reviews { position: relative; }
.reviews__track {
  display: flex; gap: 1.2rem; overflow-x: auto; scroll-snap-type: x mandatory;
  scroll-behavior: smooth; -webkit-overflow-scrolling: touch;
  padding: .5rem .2rem 1.1rem; scrollbar-width: none;
}
.reviews__track::-webkit-scrollbar { display: none; }
.review {
  scroll-snap-align: start; flex: 0 0 100%; background: #fff;
  border: 1px solid var(--line); border-radius: 14px; padding: 1.5rem 1.6rem;
  box-shadow: 0 2px 12px rgba(0,0,0,.05); display: flex; flex-direction: column; gap: .9rem;
}
@media (min-width: 640px) { .review { flex-basis: calc(50% - .6rem); } }
@media (min-width: 980px) { .review { flex-basis: calc(33.333% - .8rem); } }
.review__stars { color: var(--brass-500); letter-spacing: 2px; font-size: 1.05rem; line-height: 1; }
.review__stars-off { color: var(--line); }
.review__text { margin: 0; color: var(--slate-700); font-size: var(--fs-400); line-height: 1.6; }
.review__by { margin-top: auto; }
.review__by strong { display: block; color: var(--navy-900); font-weight: 700; }
.review__by span { color: var(--slate-500); font-size: .84rem; }
.reviews__nav { display: flex; justify-content: center; gap: .6rem; margin-top: .3rem; }
.reviews__btn {
  width: 46px; height: 46px; border-radius: 50%; border: 1.5px solid var(--line);
  background: #fff; color: var(--navy-900); font-size: 1.6rem; line-height: 1; cursor: pointer;
  transition: border-color .15s, color .15s, background .15s;
}
.reviews__btn:hover { border-color: var(--red-500); color: var(--red-500); background: var(--red-100); }

/* =============================================================================
   Blog posts carousel (homepage) — reuses the reviews snap-track + nav buttons
   ========================================================================== */
.posts { position: relative; }
.posts__track {
  display: flex; gap: 1.2rem; overflow-x: auto; scroll-snap-type: x mandatory;
  scroll-behavior: smooth; -webkit-overflow-scrolling: touch;
  padding: .5rem .2rem 1.1rem; scrollbar-width: none;
}
.posts__track::-webkit-scrollbar { display: none; }
.post-card {
  scroll-snap-align: start; flex: 0 0 100%; display: flex;
}
@media (min-width: 640px) { .post-card { flex-basis: calc(50% - .6rem); } }
@media (min-width: 980px) { .post-card { flex-basis: calc(33.333% - .8rem); } }
.post-card__link {
  display: flex; flex-direction: column; width: 100%; background: #fff;
  border: 1px solid var(--line); border-radius: 14px; overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,.05); color: inherit;
  transition: transform .15s var(--ease), box-shadow .2s var(--ease), border-color .15s var(--ease);
}
.post-card__link:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--steel-300); }
.post-card__media { display: block; aspect-ratio: 5 / 3; background: var(--mist); overflow: hidden; }
.post-card__media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .3s var(--ease); }
.post-card__link:hover .post-card__media img { transform: scale(1.04); }
.post-card__body { display: flex; flex-direction: column; gap: .6rem; padding: 1.25rem 1.3rem 1.4rem; flex: 1; }
.post-card__title { font-weight: 800; color: var(--navy-900); font-size: var(--fs-500); line-height: 1.3; }
.post-card__excerpt { color: var(--slate-700); font-size: var(--fs-400); line-height: 1.55; }
.post-card__more { margin-top: auto; color: var(--red-500); font-weight: 700; font-size: .92rem; }
.post-card__link:hover .post-card__more { color: var(--red-600); }
.blog__all { text-align: center; margin-top: 1.4rem; }
.blog__all .btn svg { transition: transform .15s var(--ease); }
.blog__all .btn:hover svg { transform: translateX(3px); }

/* =============================================================================
   Forms (contact / enquiry)
   ========================================================================== */
.emergency-note {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem;
  background: var(--red-100); border: 1px solid #f3c6c9; border-left: 5px solid var(--red-500);
  border-radius: 12px; padding: 1rem 1.2rem;
}
.emergency-note > div { color: var(--ink); font-size: var(--fs-400); max-width: 54ch; }
.emergency-note strong { color: var(--red-700); }

.form { display: grid; gap: 1.4rem; max-width: 44rem; }
.field { display: flex; flex-direction: column; gap: .4rem; border: 0; padding: 0; margin: 0; min-width: 0; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; }
.field__label { font-weight: 700; color: var(--navy-900); font-size: var(--fs-400); }
.field__hint { font-weight: 500; color: var(--slate-700); font-size: .85em; }
.req { color: var(--red-500); }
.field__input {
  font: inherit; color: var(--ink); background: #fff; width: 100%;
  border: 1.5px solid var(--line); border-radius: 10px; padding: .7rem .85rem;
  transition: border-color .15s, box-shadow .15s;
}
.field__input::placeholder { color: #9aa6b2; }
.field__input:focus { outline: 0; border-color: var(--red-500); box-shadow: 0 0 0 3px rgba(237,28,36,.14); }
.field__input.is-error { border-color: var(--red-500); background: var(--red-100); }
textarea.field__input { resize: vertical; min-height: 7rem; }
.field__error { color: var(--red-700); font-size: .85rem; font-weight: 600; }

.checkgrid { display: grid; grid-template-columns: 1fr 1fr; gap: .5rem .9rem; }
.check { display: flex; align-items: center; gap: .55rem; cursor: pointer; font-size: var(--fs-400); color: var(--ink); }
.check input { width: 1.15rem; height: 1.15rem; accent-color: var(--red-500); flex: 0 0 auto; }
.radiorow { display: flex; flex-wrap: wrap; gap: .5rem; }
.check--pill { border: 1.5px solid var(--line); border-radius: 999px; padding: .4rem .85rem; transition: border-color .15s, background .15s; }
.check--pill:has(input:checked) { border-color: var(--red-500); background: var(--red-100); }

.form__note { font-size: .9rem; color: var(--slate-700); margin: 0; }
.form__note a { color: var(--red-600); font-weight: 600; }
.form__alert { background: var(--red-100); border: 1px solid #f3c6c9; border-radius: 10px; padding: .7rem 1rem; color: var(--red-700); font-weight: 600; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form__success { text-align: center; background: var(--mist-2); border: 1px solid var(--line); border-radius: 16px; padding: 2.6rem 1.5rem; max-width: 40rem; margin-inline: auto; }
.form__success h2 { font-family: var(--font-display); color: var(--navy-900); font-size: var(--fs-600); margin: 0 0 .6rem; }
.form__success .ic { color: #1a9e4b; }
.form__success p { color: var(--slate-700); margin: 0 auto 1.3rem; max-width: 46ch; }

@media (max-width: 560px) {
  .field-row { grid-template-columns: 1fr; }
  .checkgrid { grid-template-columns: 1fr; }
}

/* =============================================================================
   Topbar
   ========================================================================== */
.topbar {
  background: var(--navy-900); color: #cdd9e4; font-size: var(--fs-300);
}
.topbar__inner { display: flex; align-items: center; gap: 1rem; min-height: 40px; }
.topbar__item { display: inline-flex; align-items: center; gap: .4rem; }
.topbar__item .ic { color: var(--brass-400); }
.topbar__sep { color: #3a4f63; }
.topbar__phone {
  margin-left: auto; display: inline-flex; align-items: center; gap: .4rem;
  font-weight: 700; color: #fff;
}
.topbar__phone .ic { color: var(--brass-400); }
.topbar__phone:hover { color: var(--brass-400); }

/* =============================================================================
   Header / nav
   ========================================================================== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.92); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  transition: transform .28s var(--ease); will-change: transform;
}
/* Auto-hide on scroll-down, reveal on scroll-up (mobile — see site.js) */
.site-header.is-hidden { transform: translateY(-100%); }
.site-header__inner { display: flex; align-items: center; gap: 1.2rem; min-height: 76px; }

.brand { display: inline-flex; align-items: center; gap: .7rem; flex: none; }
/* Official client logo — auto-resizes by height, width stays proportional */
.brand__logo { height: 44px; width: auto; display: block; }
.brand--footer .brand__logo { height: 40px; }
.brand__mark {
  display: grid; place-items: center; width: 44px; height: 44px; flex: none;
  background: var(--red-500); color: var(--brass-400); border-radius: 11px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.12);
}
.brand__mark svg { width: 24px; height: 24px; }
.brand__text { display: flex; flex-direction: column; line-height: 1.05; }
.brand__name { font-family: var(--font-display); font-weight: 800; font-size: 1.3rem; color: var(--navy-900); letter-spacing: -.02em; }
.brand__name span { color: var(--red-500); }
.brand__tag { font-size: .72rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--slate-400); }

.nav { margin-left: auto; }
.nav__list { display: flex; align-items: center; gap: .35rem; }
.nav__link {
  display: inline-block; padding: .55rem .68rem; border-radius: 8px;
  font-weight: 600; font-size: .95rem; color: var(--slate-700);
  white-space: nowrap; transition: color .15s, background .15s;
}
.nav__link:hover { color: var(--navy-900); background: var(--mist); }
.nav__link--alert { color: var(--emergency); }
.nav__link--alert:hover { color: #fff; background: var(--emergency); }
/* Current page — a filled red pill that follows you around the site. */
.nav__link--active,
.nav__link--active:hover { color: #fff; background: var(--emergency); }

.site-header .btn--call { margin-left: .4rem; }

.nav-toggle, .nav-burger { display: none; }
.nav-burger {
  width: 46px; height: 46px; border-radius: 10px;
  display: none; place-items: center; color: var(--navy-800);
  border: 1px solid var(--line); cursor: pointer; background: #fff;
}
.nav-burger svg { width: 24px; height: 24px; }

/* Compact mobile call button (shown only when the nav collapses) */
.call-mini { display: none; align-items: center; gap: .45rem; margin-left: auto;
  background: var(--red-500); color: #fff; font-weight: 800; font-size: .9rem;
  padding: .55rem .8rem; border-radius: 9px; white-space: nowrap;
  box-shadow: 0 6px 16px rgba(237,28,36,.28); }
.call-mini svg { width: 1.05em; height: 1.05em; }

/* =============================================================================
   Hero
   ========================================================================== */
.hero { position: relative; overflow: hidden; background: var(--navy-900); color: #eaf1f7; }
.hero__bg {
  position: absolute; inset: 0;
  background:
    /* legibility wash — darkest on the left where the copy sits (lightened so the photo shows) */
    linear-gradient(100deg, rgba(14,15,17,.92) 8%, rgba(14,15,17,.70) 44%, rgba(14,15,17,.42) 100%),
    /* brand glows */
    radial-gradient(80% 70% at 94% 0%, rgba(255,184,0,.16), transparent 55%),
    radial-gradient(95% 85% at -8% 112%, rgba(237,28,36,.28), transparent 60%),
    /* hero photo — per-page override via --hero-img (set inline on .hero),
       defaults to the lock+key brand shot */
    var(--hero-img, url('/assets/img/hero-locksmith.jpg')) center / cover no-repeat,
    var(--navy-900);
}
/* Mobile & tablets: keep the photo as cover, but focus on the CENTRE of the shot
   (desktop anchors it centre-right behind the store card, which crops badly on a
   narrow screen). Layers in order: overlay, gold glow, red glow, PHOTO. */
@media (max-width: 1024px) {
  .hero__bg {
    background-position: center, center, center, center center;
  }
}
.hero__bg::after {
  content: ""; position: absolute; inset: 0; opacity: .5;
  background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 46px 46px;
  -webkit-mask-image: radial-gradient(80% 60% at 70% 0%, #000, transparent 75%);
          mask-image: radial-gradient(80% 60% at 70% 0%, #000, transparent 75%);
}
.hero__inner {
  position: relative; display: grid; grid-template-columns: 1.35fr .85fr; gap: clamp(2rem, 5vw, 4rem);
  align-items: center; padding-block: clamp(3rem, 7vw, 5.5rem);
}
.hero .eyebrow { color: var(--brass-400); }
.hero .eyebrow .ic { color: var(--brass-400); }
.hero__title {
  font-family: var(--font-display); font-weight: 800; letter-spacing: -.025em;
  font-size: var(--fs-800); color: #fff; margin: 1rem 0 1.1rem; max-width: 17ch; line-height: 1.06;
}
.hero__lead { font-size: var(--fs-500); color: #c4d3e0; max-width: 52ch; }
.hero__lead strong { color: #fff; font-weight: 700; }

.hero__cta { display: flex; flex-wrap: wrap; gap: .9rem; margin: 1.8rem 0 1.4rem; }
.hero__cta .btn--ghost { --btn-fg: #fff; --btn-bd: rgba(255,255,255,.28); }
.hero__cta .btn--ghost:hover { background: rgba(255,255,255,.08); --btn-bd: rgba(255,255,255,.5); }

.hero__trust { display: flex; flex-wrap: wrap; gap: 1.1rem 1.5rem; font-size: var(--fs-300); color: #aebfce; }
.hero__trust li { display: inline-flex; align-items: center; gap: .45rem; font-weight: 600; }
.hero__trust .ic { color: var(--brass-400); }

/* Hero store card */
.hero__card {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg); padding: 1.4rem; backdrop-filter: blur(6px);
  box-shadow: var(--shadow-lg);
}
.hero__card-title { display: flex; align-items: center; gap: .5rem; font-size: var(--fs-500); color: #fff; margin-bottom: 1rem; }
.hero__card-title .ic { color: var(--brass-400); }
.storechip {
  padding: 0; overflow: hidden; border-radius: var(--radius);
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
  margin-bottom: .7rem; transition: border-color .15s;
}
.storechip:hover { border-color: rgba(255,255,255,.2); }
/* Tap zone 1 — store name + hours → store details */
.storechip__info { display: grid; gap: .1rem; padding: .8rem 1rem .7rem; }
.storechip__name { font-weight: 800; color: #fff; font-size: 1.05rem; display: inline-flex; align-items: center; gap: .35rem; }
.storechip__go { color: var(--brass-400); font-weight: 700; transition: transform .15s; }
.storechip__info:hover .storechip__name { color: var(--brass-400); }
.storechip__info:hover .storechip__go { transform: translateX(3px); }
.storechip__meta { font-size: .82rem; color: #a9bacb; }
/* Tap zone 2 — gold-shaded call strip, full width across the bottom, number left */
.storechip__call {
  display: flex; align-items: center; gap: .5rem;
  padding: .6rem 1rem;
  background: rgba(255,184,0,.15);
  border-top: 1px solid rgba(255,184,0,.24);
  color: var(--brass-400); font-weight: 800; letter-spacing: .01em;
  transition: background .15s;
}
.storechip__call:hover { background: rgba(255,184,0,.26); }
.hero__card-foot { font-size: .82rem; color: #9fb1c2; margin-top: .6rem; }
/* Google review badge under the store card */
.hero__reviews {
  display: flex; align-items: center; gap: .55rem; flex-wrap: wrap;
  margin-top: .9rem; padding-top: .85rem; border-top: 1px solid rgba(255,255,255,.12);
  text-decoration: none;
}
.hero__reviews-stars { color: var(--brass-500); font-size: 1rem; letter-spacing: 2px; }
.hero__reviews-text { color: #c4d3e0; font-size: .84rem; }
.hero__reviews-text strong { color: #fff; font-weight: 800; font-size: .95rem; }
a.hero__reviews:hover .hero__reviews-text strong { text-decoration: underline; }

/* =============================================================================
   Trust strip
   ========================================================================== */
.strip { background: var(--navy-800); color: #fff; }
.strip__inner { display: grid; grid-template-columns: repeat(4, 1fr); }
.strip__item {
  text-align: center; padding: 1.4rem 1rem; display: grid; gap: .15rem;
  border-left: 1px solid rgba(255,255,255,.1);
}
.strip__item:first-child { border-left: none; }
.strip__num { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.6rem, 1.2rem + 1.5vw, 2.3rem); color: var(--brass-400); }
.strip__lbl { font-size: var(--fs-300); color: #c4d3e0; letter-spacing: .02em; }

/* =============================================================================
   Services grid
   ========================================================================== */
.grid { display: grid; gap: 1.25rem; }
.grid--services { grid-template-columns: repeat(3, 1fr); }

.scard {
  position: relative; display: flex; flex-direction: column;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.6rem 1.5rem; box-shadow: var(--shadow-sm);
  transition: transform .18s var(--ease), box-shadow .2s var(--ease), border-color .2s;
}
.scard:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--steel-300); }
.scard__icon {
  display: grid; place-items: center; width: 52px; height: 52px; border-radius: 13px;
  background: var(--mist); color: var(--navy-700); margin-bottom: 1.1rem;
}
.scard__icon svg { width: 27px; height: 27px; }
.scard__title { font-size: var(--fs-600); color: var(--navy-900); margin-bottom: .5rem; }
.scard__text { color: var(--muted); font-size: var(--fs-400); flex: 1; }
.scard__more { display: inline-flex; align-items: center; gap: .4rem; margin-top: 1.1rem; font-weight: 700; color: var(--steel-500); font-size: .92rem; }
.scard:hover .scard__more { color: var(--navy-800); }
.scard:hover .scard__more .ic { transform: translateX(3px); }
.scard__more .ic { transition: transform .18s var(--ease); }

.scard--feature { border-color: var(--brass-400); background: linear-gradient(180deg, var(--brass-100) 0%, #fff 40%); }
.scard--feature .scard__icon { background: var(--red-500); color: var(--brass-400); }
.scard--feature::before {
  content: "Popular"; position: absolute; top: 1.1rem; right: 1.1rem;
  font-size: .68rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
  color: #fff; background: var(--red-500); border: 1px solid var(--red-500);
  padding: .25rem .6rem; border-radius: 999px;
}

/* =============================================================================
   uPVC feature band
   ========================================================================== */
.feature { position: relative; color: #e9f0f6;
  background:
    linear-gradient(100deg, rgba(12,17,23,.93) 6%, rgba(12,17,23,.76) 44%, rgba(12,17,23,.55) 100%),
    url('/assets/img/upvc-doors.jpg') center / cover no-repeat,
    var(--navy-800);
}
.feature__inner {
  display: grid; grid-template-columns: 1.5fr .8fr; gap: clamp(2rem, 5vw, 4rem); align-items: center;
  padding-block: clamp(3rem, 6vw, 5rem);
}
.feature__title { font-family: var(--font-display); font-weight: 700; letter-spacing: -.02em; font-size: var(--fs-700); color: #fff; margin: .8rem 0 1rem; }
.feature__text { color: #bccdde; font-size: var(--fs-500); max-width: 54ch; }
.feature__list { display: grid; gap: .55rem; margin: 1.4rem 0 1.8rem; }
.feature__list li { display: flex; align-items: center; gap: .6rem; font-weight: 500; }
.feature__list .ic { color: var(--brass-400); }
.feature__aside { display: grid; place-items: center; }
.feature__badge {
  width: clamp(140px, 22vw, 220px); aspect-ratio: 1; border-radius: 28px;
  display: grid; place-items: center; color: var(--brass-400);
  background: radial-gradient(circle at 30% 25%, rgba(199,154,58,.25), transparent 60%), rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.12); box-shadow: var(--shadow-lg);
}
.feature__badge svg { width: 46%; height: 46%; stroke-width: 1.2; }
/* uPVC section front image — the same photo, shrunk & framed */
.feature__photo {
  width: 100%; max-width: 340px; height: auto; aspect-ratio: 1 / 1; object-fit: cover;
  border-radius: 16px; border: 4px solid rgba(255,255,255,.92);
  box-shadow: var(--shadow-lg);
}

/* =============================================================================
   Video embed
   ========================================================================== */
.video { position: relative; aspect-ratio: 16 / 9; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg); border: 1px solid var(--line); background: #000; }
.video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* =============================================================================
   Store (branch) page — visit section (photos + details + map)
   ========================================================================== */
.storecard__addr { font-style: normal; color: #c4d3e0; font-size: .95rem; line-height: 1.55; }
.visit { display: grid; gap: 1.6rem; align-items: start; }
@media (min-width: 820px) { .visit { grid-template-columns: 1fr 1fr; gap: 2.5rem; } }
.visit__media { display: grid; gap: 1rem; }
.visit__photo { width: 100%; height: auto; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--radius); border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.visit__h { display: flex; align-items: center; gap: .5rem; font-family: var(--font-display); font-weight: 700; font-size: var(--fs-500); color: var(--navy-900); margin: 1.3rem 0 .4rem; }
.visit__h:first-child { margin-top: 0; }
.visit__h .ic { color: var(--brass-600); }
.visit__addr { font-style: normal; color: var(--slate-700); font-size: var(--fs-400); }
.visit__hours { color: var(--slate-700); }
.visit__hours span { color: var(--muted); font-size: .9rem; }
.visit__list { display: grid; gap: .5rem; margin: .3rem 0 0; }
.visit__list li { display: flex; align-items: center; gap: .55rem; color: var(--slate-700); }
.visit__list .ic { color: var(--red-500); }
.visit__list a { color: var(--red-600); font-weight: 600; }
.visit__actions { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 1.3rem; }
.visit__map { margin-top: 1.8rem; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.visit__map iframe { display: block; width: 100%; height: 340px; border: 0; }

/* =============================================================================
   Service (hub) page — full-width hero + "what's included" checklist
   ========================================================================== */
.hero__inner--wide { grid-template-columns: 1fr; }
.hero__inner--wide .hero__lead { max-width: 60ch; }
.ticklist { display: grid; gap: .75rem 2.2rem; max-width: 40rem; margin-inline: auto; }
@media (min-width: 620px) { .ticklist { grid-template-columns: 1fr 1fr; } }
.ticklist li { display: flex; align-items: center; gap: .6rem; color: var(--slate-700); font-weight: 500; text-align: left; }
.ticklist .ic { color: var(--red-500); flex: none; }

/* =============================================================================
   Stores
   ========================================================================== */
.grid--stores { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.store {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 1.7rem; box-shadow: var(--shadow-sm); border-top: 4px solid var(--brass-500);
}
.store__head { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-bottom: .9rem; }
.store__name { display: inline-flex; align-items: center; gap: .5rem; font-family: var(--font-display); font-weight: 700; letter-spacing: -.01em; font-size: var(--fs-600); color: var(--navy-900); }
.store__name .ic { color: var(--red-500); }
.store__tag { font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .05em; color: var(--emergency); background: var(--red-100); padding: .3rem .6rem; border-radius: 999px; white-space: nowrap; }
.store__addr { font-style: normal; color: var(--slate-700); font-size: var(--fs-400); }
.store__rows { display: grid; gap: .6rem; margin: 1.1rem 0 1.3rem; padding: 1.1rem 0; border-block: 1px solid var(--line); }
.store__rows > div { display: grid; grid-template-columns: 9.5rem 1fr; gap: .6rem; align-items: start; }
.store__rows dt { display: inline-flex; align-items: center; gap: .45rem; font-weight: 700; color: var(--navy-800); font-size: .9rem; }
.store__rows dt .ic { color: var(--steel-500); }
.store__rows dd { color: var(--muted); font-size: .92rem; }
.store__actions { display: flex; flex-wrap: wrap; gap: .7rem; }

/* =============================================================================
   Why us
   ========================================================================== */
.grid--why { grid-template-columns: repeat(4, 1fr); }
.why { text-align: left; }
.why__ic { display: grid; place-items: center; width: 50px; height: 50px; border-radius: 13px; background: var(--navy-800); color: var(--brass-400); margin-bottom: 1rem; }
.why__ic svg { width: 26px; height: 26px; }
.why h3 { font-size: var(--fs-500); color: var(--navy-900); margin-bottom: .4rem; }
.why p { color: var(--muted); font-size: var(--fs-400); }

/* =============================================================================
   Areas list
   ========================================================================== */
.arealist { display: flex; flex-wrap: wrap; gap: .7rem; justify-content: center; }
.arealist a {
  display: inline-flex; align-items: center; gap: .45rem;
  background: #fff; border: 1px solid var(--line); border-radius: 999px;
  padding: .6rem 1.05rem; font-weight: 600; color: var(--navy-800); font-size: .95rem;
  transition: border-color .15s, transform .15s, box-shadow .15s;
}
.arealist a .ic { color: var(--red-500); }
.arealist a:hover { border-color: var(--brass-400); transform: translateY(-2px); box-shadow: var(--shadow-sm); }

/* =============================================================================
   FAQ
   ========================================================================== */
.faq { display: grid; gap: .8rem; }
.faq__item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.faq__item[open] { border-color: var(--steel-300); box-shadow: var(--shadow-sm); }
.faq__q {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.15rem 1.3rem; font-weight: 700; color: var(--navy-900); cursor: pointer; list-style: none;
  font-size: var(--fs-500);
}
.faq__q::-webkit-details-marker { display: none; }
.faq__plus { position: relative; width: 18px; height: 18px; flex: none; }
.faq__plus::before, .faq__plus::after { content: ""; position: absolute; background: var(--steel-500); border-radius: 2px; transition: transform .2s var(--ease); }
.faq__plus::before { inset: 8px 0; height: 2px; }
.faq__plus::after { inset: 0 8px; width: 2px; }
.faq__item[open] .faq__plus::after { transform: scaleY(0); }
.faq__a { padding: 0 1.3rem 1.25rem; color: var(--muted); }
/* Animated open/close — same slide+fade feel as the mobile menu.
   Progressive enhancement: browsers without ::details-content just open instantly. */
.faq__item::details-content {
  block-size: 0; overflow: hidden; opacity: 0;
  transition: block-size .3s var(--ease), opacity .25s ease, content-visibility .3s allow-discrete;
}
.faq__item[open]::details-content { block-size: auto; opacity: 1; }

/* =============================================================================
   CTA band
   ========================================================================== */
.cta { background: linear-gradient(135deg, var(--red-500), var(--red-700)); color: #fff; }
.cta__inner {
  display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap;
  padding-block: clamp(2.6rem, 5vw, 4rem);
}
.cta__title { font-family: var(--font-display); font-weight: 700; letter-spacing: -.02em; font-size: var(--fs-700); }
.cta__sub { color: rgba(255,255,255,.88); font-size: var(--fs-500); margin-top: .5rem; max-width: 48ch; }
/* On the red band, the call button switches to gold for max contrast */
.cta .btn--emergency { --btn-bg: var(--brass-500); --btn-fg: var(--navy-900); box-shadow: 0 10px 26px rgba(0,0,0,.22); }
.cta .btn--emergency:hover { --btn-bg: var(--brass-400); }
.cta .btn--emergency .btn__sub { opacity: .9; }

/* =============================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--navy-900); color: #b6c6d4; font-size: var(--fs-400); }
.site-footer__grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 2.5rem;
  padding-block: clamp(2.8rem, 5vw, 4rem);
}
.brand--footer .brand__name { color: #fff; }
.brand--footer .brand__name span { color: var(--brass-400); }
.site-footer__blurb { margin: 1rem 0 1.3rem; color: #93a6b6; max-width: 34ch; }
.site-footer__badges { display: flex; align-items: center; gap: .85rem; margin-top: 1.3rem; }
.site-footer__badges img { flex: 0 0 auto; width: 68px; height: 68px; object-fit: contain; background: #fff; border-radius: 50%; padding: 6px; }
.site-footer__badges span { font-size: .8rem; color: #93a6b6; line-height: 1.4; max-width: 24ch; }
.site-footer__head { font-size: .8rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: #fff; margin-bottom: 1rem; }
.site-footer__links { display: grid; gap: .55rem; }
/* Areas list: independent columns so a two-word item (e.g. "Locks Heath")
   that wraps never leaves a gap beside its neighbour like a rigid grid would. */
.site-footer__links--cols { display: block; column-count: 2; column-gap: 1.25rem; }
.site-footer__links--cols li { margin-bottom: .55rem; break-inside: avoid; }
.site-footer__links--cols li:last-child { margin-bottom: 0; }
.site-footer__links a { color: #b6c6d4; transition: color .15s; }
.site-footer__links a:hover { color: var(--brass-400); }
.site-footer__store { font-style: normal; color: #93a6b6; font-size: .9rem; margin-bottom: 1rem; }
.site-footer__store strong { color: #fff; }
.site-footer__store a { color: var(--brass-400); font-weight: 700; }
.site-footer__bar { border-top: 1px solid rgba(255,255,255,.1); }
.site-footer__bar-inner { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; padding-block: 1.2rem; font-size: .85rem; color: #7e93a4; }
.site-footer__legal a:hover { color: var(--brass-400); }
.site-footer__reg { flex-basis: 100%; margin: 0; font-size: .78rem; color: #61707e; }

/* Fixed quick-contact bar — phones only. Kept below the header's stacking
   context (z-index < header) so the open mobile menu still covers it. */
.mobilebar { display: none; }
@media (max-width: 768px) {
  .mobilebar {
    display: grid; grid-template-columns: 1fr 1fr;
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 40;
    box-shadow: 0 -6px 22px rgba(0, 0, 0, .22);
  }
  .mobilebar__btn {
    display: flex; align-items: center; justify-content: center; gap: .5rem;
    padding: .9rem 1rem; padding-bottom: calc(.9rem + env(safe-area-inset-bottom, 0px));
    color: #fff; text-decoration: none; font-weight: 800; font-size: 1.02rem; letter-spacing: .01em;
    -webkit-tap-highlight-color: transparent;
  }
  .mobilebar__btn svg { width: 1.15em; height: 1.15em; }
  .mobilebar__btn--call { background: var(--red-500); }
  .mobilebar__btn--call:active { background: var(--red-600); }
  .mobilebar__btn--enquire { background: var(--navy-900); box-shadow: inset 1px 0 0 rgba(255, 255, 255, .08); }
  .mobilebar__btn--enquire:active { background: var(--navy-800); }
  /* room so the fixed bar never hides the footer / page end */
  body { padding-bottom: calc(56px + env(safe-area-inset-bottom, 0px)); }
  /* the bottom bar owns Call/Enquire on phones — declutter the header to logo + menu */
  .site-header .call-mini { display: none; }
  .site-header .nav-burger { margin-left: auto; }
}

/* =============================================================================
   Responsive
   ========================================================================== */
@media (max-width: 960px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__card { max-width: 460px; }
  .feature__inner { grid-template-columns: 1fr; }
  .feature__aside { display: none; }
  .grid--services { grid-template-columns: repeat(2, 1fr); }
  .grid--why { grid-template-columns: repeat(2, 1fr); }
  .site-footer__grid { grid-template-columns: 1fr 1fr; }
}

/* Tighten the horizontal nav on smaller laptops before it collapses */
@media (max-width: 1200px) {
  .site-header__inner { gap: .8rem; }
  .nav__list { gap: .1rem; }
  .nav__link { padding: .5rem .55rem; font-size: .9rem; }
  .site-header .btn--call { margin-left: .2rem; }
}

/* Collapse to a burger before the nav gets cramped (laptops included) */
@media (max-width: 1024px) {
  .site-header > .wrap > .btn--call { display: none; }
  .nav-burger { display: grid; margin-left: .5rem; }
  .call-mini { display: inline-flex; }
  .site-header__inner { position: relative; flex-wrap: wrap; }

  /* Animated slide-down menu: kept in the DOM but collapsed so it can transition */
  .nav {
    display: block; position: absolute; top: 100%; left: 0; right: 0;
    background: #fff; border-bottom: 1px solid var(--line); box-shadow: var(--shadow-md);
    max-height: 0; overflow: hidden; opacity: 0; transform: translateY(-8px);
    pointer-events: none;
    transition: max-height .34s var(--ease), opacity .24s ease, transform .34s var(--ease);
  }
  .nav-toggle:checked ~ .nav {
    max-height: 26rem; opacity: 1; transform: translateY(0); pointer-events: auto;
  }
  .nav__list { flex-direction: column; align-items: stretch; gap: 0; padding: .5rem var(--gut) 1rem; }
  .nav__link { padding: .85rem .5rem; border-radius: 8px; font-size: 1rem; }
  /* subtle per-item reveal once the menu opens */
  .nav__link { opacity: 0; transform: translateY(-4px); transition: opacity .2s ease, transform .2s ease; }
  .nav-toggle:checked ~ .nav .nav__link { opacity: 1; transform: translateY(0); }
  .nav-toggle:checked ~ .nav li:nth-child(1) .nav__link { transition-delay: .06s; }
  .nav-toggle:checked ~ .nav li:nth-child(2) .nav__link { transition-delay: .10s; }
  .nav-toggle:checked ~ .nav li:nth-child(3) .nav__link { transition-delay: .14s; }
  .nav-toggle:checked ~ .nav li:nth-child(4) .nav__link { transition-delay: .18s; }
  .nav-toggle:checked ~ .nav li:nth-child(5) .nav__link { transition-delay: .22s; }
  .nav-toggle:checked ~ .nav li:nth-child(6) .nav__link { transition-delay: .26s; }
  .nav-toggle:checked ~ .nav li:nth-child(7) .nav__link { transition-delay: .30s; }
  .nav-toggle:checked ~ .nav li:nth-child(8) .nav__link { transition-delay: .34s; }
}

@media (max-width: 820px) {
  .strip__inner { grid-template-columns: 1fr 1fr; }
  .strip__item:nth-child(2) { border-left: none; }
  .strip__item:nth-child(n+3) { border-top: 1px solid rgba(255,255,255,.1); }
}

@media (max-width: 560px) {
  .topbar__item:nth-child(1), .topbar__sep { display: none; }
  .brand__tag { display: none; }
  /* Phone: keep logo + call + burger on ONE line; logo shrinks to fit */
  .site-header__inner { flex-wrap: nowrap; gap: .5rem; min-height: 64px; }
  .brand__logo { height: 30px; }
  .call-mini { padding: .5rem .62rem; font-size: .8rem; gap: .35rem; }
  .nav-burger { width: 42px; height: 42px; margin-left: 0; }
  .grid--services { grid-template-columns: 1fr; }
  .grid--stores { grid-template-columns: 1fr; }
  .grid--why { grid-template-columns: 1fr; }
  .site-footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .store__rows > div { grid-template-columns: 1fr; gap: .15rem; }
  .cta__inner { flex-direction: column; align-items: flex-start; }
  /* Everything is single-column at phone width → centre standalone/single-column
     blocks; multi-column bits (Areas 2-col list, cards) stay left. */
  .why { text-align: center; }
  .why__ic { margin-inline: auto; }
  .site-footer__brand { text-align: center; }
  .site-footer__badges { justify-content: center; }
  .site-footer__brand .brand { justify-content: center; }
  .site-footer__blurb { margin-inline: auto; }
  .site-footer__col { text-align: center; }
  .site-footer__col--cols { text-align: left; }
  /* …but the heading itself centres like every other footer heading */
  .site-footer__col--cols .site-footer__head { text-align: center; }
  .site-footer__bar-inner { justify-content: center; text-align: center; }
}

/* Mobile text alignment (≤600): standalone single-column text is centred;
   cards, grids and columns (service/store cards, why-us, FAQ, footer) stay left. */
@media (max-width: 600px) {
  .hero__content { text-align: center; }
  .hero__cta, .hero__trust { justify-content: center; }
  .feature__body { text-align: center; }
  .feature__list { width: fit-content; max-width: 100%; margin-inline: auto; } /* centre the list block, ticks stay aligned */
  .cta__inner { align-items: center; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}
