/* =========================================================================
   ASHTON SIGNS — "Workshop After Dark"
   Premium creative sign-studio aesthetic. Dark navy-black canvas, chrome
   metallic headlines, cyan + magenta neon accents reserved for CTAs &
   highlights. Built by InveraWebDesigns.
   ========================================================================= */

:root {
  color-scheme: dark;

  /* --- Surfaces --- */
  --bg:           #0A0A14;
  --bg-2:         #0D0D1A;
  --surface:      #111122;
  --surface-2:    #15152B;
  --surface-3:    #1B1B36;
  --border:       rgba(192, 192, 192, 0.12);
  --border-strong:rgba(192, 192, 192, 0.22);

  /* --- Brand --- */
  --navy:         #1A237E;
  --navy-bright:  #2C39C7;
  --navy-glow:    rgba(44, 57, 199, 0.45);

  /* --- Metallic --- */
  --silver:       #C0C0C0;
  --silver-light: #ECECF4;
  --silver-dark:  #7C7C8C;

  /* --- Neon accents (used sparingly) --- */
  --neon:         #00F5FF;   /* electric cyan — primary neon */
  --neon-dim:     #0FB9C2;
  --neon-glow:    rgba(0, 245, 255, 0.55);
  --magenta:      #FF2D9B;   /* warm neon pink — secondary spark */
  --magenta-glow: rgba(255, 45, 155, 0.5);

  /* --- Text --- */
  --text:         #ECECF5;
  --text-dim:     #9A9AB2;
  --text-faint:   #6A6A82;
  --white:        #FFFFFF;

  /* --- Type --- */
  --font-display: "Big Shoulders Display", "Arial Narrow", sans-serif;
  --font-body:    "Hanken Grotesk", system-ui, -apple-system, sans-serif;

  /* --- Layout --- */
  --nav-h:        76px;
  --topbar-h:     0px;                              /* call bar — only shown on mobile */
  --header-h:     calc(var(--nav-h) + var(--topbar-h));
  --maxw:         1240px;
  --gutter:       clamp(20px, 5vw, 64px);
  --radius:       14px;
  --radius-sm:    8px;

  /* --- Motion --- */
  --ease:         cubic-bezier(0.16, 1, 0.3, 1);
}

/* =========================================================================
   RESET / BASE
   ========================================================================= */

*,
*::before,
*::after { box-sizing: border-box; }

* { margin: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  /* Match the page surface so iOS rubber-band overscroll / the notch area
     never reveals a bare black band above the fixed header. */
  background: var(--bg);
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  font-weight: 400;
  letter-spacing: 0.01em;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Atmospheric grain overlay */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

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

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

button {
  font: inherit;
  color: inherit;
  cursor: pointer;
  border: none;
  background: none;
  touch-action: manipulation;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: 0.005em;
  text-transform: uppercase;
}

:focus-visible {
  outline: 2px solid var(--neon);
  outline-offset: 3px;
  border-radius: 3px;
}

::selection {
  background: var(--neon);
  color: var(--bg);
}

section[id] { scroll-margin-top: var(--header-h); }

/* =========================================================================
   SKIP LINK
   ========================================================================= */

.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 10000;
  background: var(--neon);
  color: var(--bg);
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  transition: top 0.25s var(--ease);
}
.skip-link:focus { top: 16px; }

/* =========================================================================
   UTILITY / LAYOUT
   ========================================================================= */

.shell {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section {
  padding-block: clamp(72px, 11vw, 150px);
  position: relative;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--neon);
  margin-bottom: 22px;
}
.eyebrow::before {
  content: "";
  width: 30px;
  height: 1px;
  background: linear-gradient(90deg, var(--neon), transparent);
}
.eyebrow--magenta { color: var(--magenta); }
.eyebrow--magenta::before { background: linear-gradient(90deg, var(--magenta), transparent); }
.eyebrow--center { justify-content: center; }
.eyebrow--center::before { display: none; }

/* Chrome / metallic text treatment — echoes their built-up letters */
.chrome {
  background: linear-gradient(
    176deg,
    #ffffff 0%,
    var(--silver-light) 18%,
    var(--silver) 42%,
    var(--silver-dark) 58%,
    var(--silver-light) 78%,
    #ffffff 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.neon-text {
  color: var(--neon);
  text-shadow:
    0 0 6px var(--neon-glow),
    0 0 22px var(--neon-glow);
}
@keyframes neonFlicker {
  /* dark — tube off */
  0%    { opacity: 0;    text-shadow: none; }
  /* first weak attempt */
  3%    { opacity: 0.12; text-shadow: none; }
  4%    { opacity: 0;    text-shadow: none; }
  /* second attempt, a little brighter */
  7%    { opacity: 0.3;  text-shadow: none; }
  8%    { opacity: 0;    text-shadow: none; }
  /* third attempt — almost catches */
  11%   { opacity: 0.65; text-shadow: 0 0 6px var(--neon-glow); }
  12%   { opacity: 0.05; text-shadow: none; }
  /* fourth — nearly there */
  14%   { opacity: 0.9;  text-shadow: 0 0 6px var(--neon-glow), 0 0 18px var(--neon-glow); }
  15%   { opacity: 0.05; text-shadow: none; }
  /* powers on fully with overvoltage flash */
  17%   { opacity: 1;    text-shadow: 0 0 8px var(--neon-glow), 0 0 36px var(--neon-glow), 0 0 90px var(--neon-glow); }
  21%   { opacity: 1;    text-shadow: 0 0 6px var(--neon-glow), 0 0 22px var(--neon-glow), 0 0 40px var(--neon-glow); }
  /* steady — maintenance flicker at ~10s */
  68%   { opacity: 1;    text-shadow: 0 0 6px var(--neon-glow), 0 0 22px var(--neon-glow), 0 0 40px var(--neon-glow); }
  69%   { opacity: 0.08; text-shadow: none; }
  70%   { opacity: 1;    text-shadow: 0 0 6px var(--neon-glow), 0 0 22px var(--neon-glow), 0 0 40px var(--neon-glow); }
  71%   { opacity: 0.08; text-shadow: none; }
  72.5% { opacity: 1;    text-shadow: 0 0 6px var(--neon-glow), 0 0 22px var(--neon-glow), 0 0 40px var(--neon-glow); }
  73%   { opacity: 0.08; text-shadow: none; }
  75%   { opacity: 1;    text-shadow: 0 0 6px var(--neon-glow), 0 0 34px var(--neon-glow), 0 0 80px var(--neon-glow); }
  100%  { opacity: 1;    text-shadow: 0 0 6px var(--neon-glow), 0 0 22px var(--neon-glow), 0 0 40px var(--neon-glow); }
}
.magenta-text {
  color: var(--magenta);
  text-shadow:
    0 0 6px var(--magenta-glow),
    0 0 22px var(--magenta-glow);
}

.section-title {
  font-size: clamp(2.4rem, 6.5vw, 5rem);
  margin-bottom: 22px;
  max-width: 18ch;
}
.section-title--center { margin-inline: auto; text-align: center; }

.lede {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: var(--text-dim);
  max-width: 60ch;
  line-height: 1.7;
}
.lede--center { margin-inline: auto; text-align: center; }

/* =========================================================================
   BUTTONS / CTAs
   ========================================================================= */

.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.btn {
  --btn-pad-y: 16px;
  --btn-pad-x: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: var(--btn-pad-y) var(--btn-pad-x);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  white-space: nowrap;
  border-radius: 100px;
  position: relative;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease),
              background 0.3s var(--ease), color 0.3s var(--ease),
              border-color 0.3s var(--ease);
}
.btn svg { width: 19px; height: 19px; flex-shrink: 0; }

/* Primary = WhatsApp = neon cyan glow */
.btn--primary {
  background: var(--neon);
  color: #04141a;
  box-shadow: 0 0 0 1px var(--neon), 0 8px 30px -8px var(--neon-glow),
              0 0 22px -4px var(--neon-glow);
}
.btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 0 1px var(--neon), 0 14px 44px -8px var(--neon-glow),
              0 0 40px -2px var(--neon-glow);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
  border: 1px solid var(--border-strong);
}
.btn--ghost:hover {
  transform: translateY(-3px);
  border-color: var(--silver);
  background: rgba(255, 255, 255, 0.05);
}

.btn--magenta {
  background: transparent;
  color: var(--magenta);
  border: 1px solid var(--magenta);
  box-shadow: 0 0 18px -6px var(--magenta-glow);
}
.btn--magenta:hover {
  transform: translateY(-3px);
  background: var(--magenta);
  color: #1a0410;
  box-shadow: 0 12px 40px -10px var(--magenta-glow), 0 0 30px -4px var(--magenta-glow);
}

.btn--lg { --btn-pad-y: 19px; --btn-pad-x: 36px; font-size: 1rem; }

/* Text link with arrow */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--neon);
  transition: gap 0.3s var(--ease);
}
.link-arrow svg { width: 17px; height: 17px; transition: transform 0.3s var(--ease); }
.link-arrow:hover { gap: 14px; }
.link-arrow:hover svg { transform: translateX(3px); }

/* =========================================================================
   NAVBAR
   ========================================================================= */

/* Slim "Call us" bar — only rendered on mobile (see media query below), where
   it also seals the notch/status-bar area so there's no bare strip at the top. */
/* Single fixed wrapper — both bars are normal-flow children, so iOS can
   never round env(safe-area-inset-top) differently between them and create
   a sub-pixel gap. */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.topbar {
  display: none;
  height: var(--topbar-h);
  align-items: center;
  justify-content: center;
  gap: 9px;
  text-decoration: none;
  color: var(--text);
  background: linear-gradient(180deg, var(--surface-2), var(--bg-2));
  border-bottom: 1px solid var(--border);
  font-size: 0.92rem;
  letter-spacing: 0.01em;
  -webkit-tap-highlight-color: transparent;
}
.topbar svg { width: 15px; height: 15px; color: var(--neon); flex-shrink: 0; }
.topbar__label { color: var(--text-dim); }
.topbar__num { font-weight: 700; color: var(--text); }

.nav {
  height: calc(var(--nav-h) + max(0px, env(safe-area-inset-top)));
  padding-top: max(0px, env(safe-area-inset-top));
  display: flex;
  align-items: center;
  background: linear-gradient(180deg,
              rgba(8, 8, 16, 0.72) 0%,
              rgba(8, 8, 16, 0.28) 60%,
              transparent 100%);
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease),
              backdrop-filter 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(8, 8, 16, 0.82);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom-color: var(--border);
}
.nav__inner {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.brand img {
  width: 42px;
  height: 42px;
  border-radius: 9px;
  object-fit: cover;
  box-shadow: 0 0 0 1px var(--border-strong);
}
.brand__name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.32rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1;
}
.brand__name span { color: var(--neon); }

.nav__links.is-mobile { display: none; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  padding: 0;
}
.nav__links a {
  display: inline-block;
  padding: 9px 16px;
  font-size: 0.93rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text-dim);
  border-radius: 100px;
  transition: color 0.25s var(--ease), background 0.25s var(--ease);
}
.nav__links a:hover { color: var(--text); }
.nav__links a.is-active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}
.nav__links a.is-active::after {
  content: "";
  display: block;
  height: 2px;
  margin-top: 4px;
  border-radius: 2px;
  background: var(--neon);
  box-shadow: 0 0 8px var(--neon-glow);
}

.nav__cta { display: flex; align-items: center; gap: 14px; }
.nav__phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--text);
}
.nav__phone svg { width: 17px; height: 17px; color: var(--neon); }

.nav__toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 10px;
  border: 1px solid var(--border-strong);
  position: relative;
}
.nav__toggle span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 20px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transform: translate(-50%, -50%);
  transition: transform 0.3s var(--ease), opacity 0.2s var(--ease);
}
.nav__toggle span:nth-child(1) { transform: translate(-50%, -6px); }
.nav__toggle span:nth-child(3) { transform: translate(-50%, 6px); }
.nav.is-open .nav__toggle span:nth-child(1) { transform: translate(-50%, -50%) rotate(45deg); }
.nav.is-open .nav__toggle span:nth-child(2) { opacity: 0; }
.nav.is-open .nav__toggle span:nth-child(3) { transform: translate(-50%, -50%) rotate(-45deg); }

/* =========================================================================
   HERO
   ========================================================================= */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: calc(var(--header-h) + 40px);
  padding-bottom: 32px;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.32;
  filter: saturate(1.1) contrast(1.05);
}
.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 90% at 75% 15%, rgba(44, 57, 199, 0.28), transparent 55%),
    radial-gradient(80% 70% at 10% 90%, rgba(0, 245, 255, 0.12), transparent 60%),
    linear-gradient(180deg, rgba(10,10,20,0.55) 0%, rgba(10,10,20,0.78) 55%, var(--bg) 100%);
}
/* faint engineering grid */
.hero__bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(192,192,192,0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(192,192,192,0.05) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at 50% 40%, #000 10%, transparent 75%);
  -webkit-mask-image: radial-gradient(circle at 50% 40%, #000 10%, transparent 75%);
}

.hero__inner { position: relative; z-index: 2; max-width: 980px; }

.hero h1 {
  font-size: clamp(3rem, 9.5vw, 8.2rem);
  margin-bottom: 28px;
  letter-spacing: 0.002em;
}
.hero h1 .line { display: block; overflow: hidden; }
.hero h1 .line > span { display: inline-block; }

.hero__sub {
  font-size: clamp(1.05rem, 1.7vw, 1.4rem);
  color: var(--text-dim);
  max-width: 56ch;
  margin-bottom: 36px;
  line-height: 1.6;
}
.hero__sub strong { color: var(--text); font-weight: 600; }

.hero .cta-group { margin-bottom: 44px; }

/* Award badge in hero */
.hero__award {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 13px 22px 13px 14px;
  background: rgba(15, 15, 30, 0.55);
  border: 1px solid var(--border-strong);
  border-radius: 100px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.hero__award img {
  width: 54px;
  height: 38px;
  object-fit: cover;
  border-radius: 7px;
}
.hero__award-text { line-height: 1.25; }
.hero__award-text b {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  background: linear-gradient(90deg, #FFD66B, #F4A93C);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero__award-text small { font-size: 0.76rem; color: var(--text-dim); }

/* scroll cue */
.hero__cue {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-faint);
}
.hero__cue-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(var(--neon), transparent);
  animation: cuePulse 2.4s var(--ease) infinite;
}

/* =========================================================================
   MARQUEE / TICKER
   ========================================================================= */

.ticker {
  border-block: 1px solid var(--border);
  background: var(--bg-2);
  padding-block: 22px;
  overflow: hidden;
  white-space: nowrap;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.ticker__track {
  display: inline-flex;
  align-items: center;
  gap: 48px;
  animation: marquee 32s linear infinite;
  will-change: transform;
}
.ticker__track:hover { animation-play-state: paused; }
.ticker__item {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.ticker__dot { color: var(--neon); font-size: 1rem; }

/* =========================================================================
   SERVICES GRID
   ========================================================================= */

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 20px;
  margin-top: 56px;
}
a.svc-card { color: inherit; text-decoration: none; }

.svc-card {
  position: relative;
  padding: 34px 30px 30px;
  background: linear-gradient(180deg, var(--surface) 0%, var(--bg-2) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease);
}
.svc-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 80% at 50% -10%, var(--navy-glow), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}
.svc-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  background: radial-gradient(280px circle at var(--mx, 50%) var(--my, 50%), rgba(0,245,255,0.08), transparent 70%);
  opacity: 0;
  transition: opacity 0.3s var(--ease);
  pointer-events: none;
}
.svc-card:hover { transform: translateY(-6px); border-color: rgba(0,245,255,0.35); }
.svc-card:hover::before { opacity: 1; }
.svc-card:hover::after { opacity: 1; }
.svc-card > * { position: relative; z-index: 1; }

.svc-card__icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  margin-bottom: 22px;
  background: rgba(0, 245, 255, 0.07);
  border: 1px solid rgba(0, 245, 255, 0.2);
  color: var(--neon);
}
.svc-card__icon svg { width: 26px; height: 26px; }
.svc-card:nth-child(even) .svc-card__icon {
  background: rgba(255, 45, 155, 0.07);
  border-color: rgba(255, 45, 155, 0.22);
  color: var(--magenta);
}
.svc-card__num {
  position: absolute;
  top: 26px;
  right: 28px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-faint);
  z-index: 1;
}
.svc-card h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}
.svc-card p { color: var(--text-dim); font-size: 0.97rem; line-height: 1.6; }
.svc-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 20px;
}
.svc-card__tags span {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-dim);
  padding: 5px 11px;
  border: 1px solid var(--border);
  border-radius: 100px;
}

/* =========================================================================
   STATS STRIP
   ========================================================================= */

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.stat {
  background: var(--bg-2);
  padding: 38px 28px;
  text-align: center;
}
.stat__num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.6rem, 5vw, 3.6rem);
  line-height: 1;
  margin-bottom: 8px;
}
.stat__label {
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
}

/* =========================================================================
   SPLIT / FEATURE (image + text)
   ========================================================================= */

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(36px, 6vw, 80px);
  align-items: center;
}
.split--reverse .split__media { order: 2; }

.split__media {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}
.split__media img {
  width: 100%;
  aspect-ratio: 4 / 3.2;
  object-fit: cover;
}
.split__media::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 90px rgba(10, 10, 20, 0.55);
  pointer-events: none;
}
.split__badge {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px 12px 12px;
  background: rgba(10, 10, 20, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border-strong);
  border-radius: 100px;
}
.split__badge img { width: 48px; height: 34px; border-radius: 6px; object-fit: cover; }
.split__badge b {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  background: linear-gradient(90deg, #FFD66B, #F4A93C);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
}
.split__badge small { color: var(--text-dim); font-size: 0.72rem; }

.split__body p { color: var(--text-dim); margin-bottom: 18px; }
.split__body p:last-of-type { margin-bottom: 0; }
.split__body .cta-group { margin-top: 34px; }

/* check list */
.checklist { list-style: none; padding: 0; margin: 28px 0 0; display: grid; gap: 14px; }
.checklist li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  color: var(--text);
  font-weight: 500;
}
.checklist svg {
  width: 22px; height: 22px; flex-shrink: 0; margin-top: 1px;
  color: var(--neon);
}

/* =========================================================================
   WORK / GALLERY
   ========================================================================= */

.gallery {
  columns: 3;
  column-gap: 16px;
  margin-top: 48px;
}
.gallery__item {
  position: relative;
  display: block;
  width: 100%;
  margin-bottom: 16px;
  break-inside: avoid;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
  cursor: pointer;
}
.gallery__item img {
  width: 100%;
  transition: transform 0.6s var(--ease), filter 0.6s var(--ease);
  filter: saturate(0.92) brightness(0.92);
}
.gallery__item:hover img { transform: scale(1.05); filter: saturate(1.08) brightness(1); }
.gallery__item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10,10,20,0.85));
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}
.gallery__item:hover::after { opacity: 1; }
.gallery__cap {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 14px;
  z-index: 2;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}
.gallery__cap::before {
  content: "";
  display: inline-block;
  width: 18px; height: 2px;
  background: var(--neon);
  margin-right: 9px;
  vertical-align: middle;
  box-shadow: 0 0 8px var(--neon-glow);
}
.gallery__item:hover .gallery__cap { opacity: 1; transform: translateY(0); }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 10001;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 5vh 4vw;
  background: rgba(5, 5, 10, 0.94);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.lightbox.is-open { display: flex; }
.lightbox__img {
  max-width: 100%;
  max-height: 82vh;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-strong);
  box-shadow: 0 30px 90px rgba(0,0,0,0.7);
}
.lightbox__cap {
  position: absolute;
  bottom: 4vh;
  left: 0; right: 0;
  text-align: center;
  color: var(--text-dim);
  font-size: 0.9rem;
}
.lightbox__btn {
  position: absolute;
  display: grid;
  place-items: center;
  width: 54px; height: 54px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border-strong);
  color: var(--white);
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease);
}
.lightbox__btn:hover { background: var(--neon); color: var(--bg); border-color: var(--neon); }
.lightbox__btn svg { width: 24px; height: 24px; }
.lightbox__close { top: 4vh; right: 4vw; }
.lightbox__prev { left: 3vw; top: 50%; transform: translateY(-50%); }
.lightbox__next { right: 3vw; top: 50%; transform: translateY(-50%); }

/* =========================================================================
   REVIEWS
   ========================================================================= */

/* review carousel */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 52px;
}
.reviews-grid .review { min-width: 0; }
.fb-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  background: #1877F2;
  color: #fff;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: background 0.25s var(--ease), transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
  box-shadow: 0 8px 28px -6px rgba(24, 119, 242, 0.5);
}
.fb-pill:hover { background: #0d5fd0; transform: translateY(-3px); box-shadow: 0 14px 36px -6px rgba(24, 119, 242, 0.6); }
.fb-pill svg { width: 22px; height: 22px; flex-shrink: 0; }
@media (max-width: 880px) { .reviews-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .reviews-grid { grid-template-columns: 1fr; } }
.review-carousel {
  margin-top: 52px;
  overflow: hidden;
}
.review-carousel__track {
  display: flex;
  gap: 24px;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.review {
  min-width: 100%;
  padding: 32px 30px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  border-top: 3px solid #1877F2;
  box-sizing: border-box;
}
.review__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}
.review__stars {
  display: inline-flex;
  gap: 2px;
  color: #f5a623;
}
.review__stars svg { width: 18px; height: 18px; }
.review__fb {
  color: #1877F2;
  display: flex;
  align-items: center;
}
.review__fb svg { width: 28px; height: 28px; }
.review__text {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 24px;
}
.review__author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.review__avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: #fff;
  background: #1877F2;
  flex-shrink: 0;
}
.review__name { font-weight: 700; font-size: 0.95rem; display: block; }
.review__meta { font-size: 0.8rem; color: #1877F2; display: block; }

.review-carousel__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 28px;
}
.review-carousel__btn {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text-dim);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: border-color 0.2s var(--ease), color 0.2s var(--ease);
}
.review-carousel__btn:hover { border-color: var(--neon); color: var(--neon); }
.review-carousel__btn svg { width: 18px; height: 18px; }
.review-carousel__dots { display: flex; gap: 8px; align-items: center; }
.review-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  border: none;
  background: var(--border-strong);
  cursor: pointer;
  transition: background 0.2s var(--ease), transform 0.2s var(--ease);
  padding: 0;
}
.review-dot.is-active { background: var(--neon); transform: scale(1.3); }

/* =========================================================================
   PAGE HEADER (interior pages)
   ========================================================================= */

.page-head {
  position: relative;
  padding-top: calc(var(--header-h) + clamp(60px, 10vw, 120px));
  padding-bottom: clamp(50px, 8vw, 90px);
  overflow: hidden;
}
.page-head::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(80% 120% at 80% -20%, var(--navy-glow), transparent 55%),
    radial-gradient(60% 90% at 0% 120%, rgba(0,245,255,0.1), transparent 60%);
  z-index: 0;
}
.page-head .shell { position: relative; z-index: 1; }
.page-head--services {
  background: url('assets/images/shop2.jpg') center/cover no-repeat;
}
.page-head--services::before {
  background:
    linear-gradient(rgba(10, 10, 20, 0.80), rgba(10, 10, 20, 0.80)),
    radial-gradient(80% 120% at 80% -20%, var(--navy-glow), transparent 55%),
    radial-gradient(60% 90% at 0% 120%, rgba(0, 245, 255, 0.1), transparent 60%);
}
.page-head--about {
  background: url('assets/images/watermark.jpg') 20% top / cover no-repeat;
}
.page-head--about::before {
  background:
    linear-gradient(rgba(10, 10, 20, 0.72), rgba(10, 10, 20, 0.72)),
    radial-gradient(80% 120% at 80% -20%, var(--navy-glow), transparent 55%),
    radial-gradient(60% 90% at 0% 120%, rgba(0, 245, 255, 0.1), transparent 60%);
}
.page-head--work {
  background: url('assets/images/gallery15.jpg') center/cover no-repeat;
}
.page-head--work::before {
  background:
    linear-gradient(rgba(10, 10, 20, 0.80), rgba(10, 10, 20, 0.80)),
    radial-gradient(80% 120% at 80% -20%, var(--navy-glow), transparent 55%),
    radial-gradient(60% 90% at 0% 120%, rgba(0, 245, 255, 0.1), transparent 60%);
}
.page-head--reviews {
  background: url('assets/images/gallery16.jpg') center/cover no-repeat;
}
.page-head--reviews::before {
  background:
    linear-gradient(rgba(10, 10, 20, 0.80), rgba(10, 10, 20, 0.80)),
    radial-gradient(80% 120% at 80% -20%, var(--navy-glow), transparent 55%),
    radial-gradient(60% 90% at 0% 120%, rgba(0, 245, 255, 0.1), transparent 60%);
}
.page-head h1 {
  font-size: clamp(2.8rem, 8vw, 6.5rem);
  margin-bottom: 22px;
}
.page-head p { max-width: 58ch; color: var(--text-dim); font-size: clamp(1.05rem, 1.6vw, 1.2rem); }
.breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 26px;
}
.breadcrumb a { color: var(--text-dim); transition: color 0.25s var(--ease); }
.breadcrumb a:hover { color: var(--neon); }
.breadcrumb span { color: var(--neon); }

/* =========================================================================
   DETAILED SERVICE ROWS (services page)
   ========================================================================= */

.svc-row {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(32px, 5vw, 70px);
  align-items: center;
  padding-block: clamp(48px, 7vw, 86px);
  border-top: 1px solid var(--border);
}
.svc-row:first-child { border-top: none; }
.svc-row--reverse .svc-row__media { order: 2; }
.svc-row__media {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  position: relative;
}
.svc-row__media img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.svc-row__index {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(3rem, 7vw, 5rem);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px var(--border-strong);
  margin-bottom: 12px;
}
.svc-row h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 18px; }
.svc-row p { color: var(--text-dim); margin-bottom: 16px; }

/* =========================================================================
   CONTACT
   ========================================================================= */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}
.contact-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(28px, 4vw, 44px);
}
.contact-method {
  display: flex;
  gap: 18px;
  align-items: center;
  padding: 20px 0;
  border-top: 1px solid var(--border);
}
.contact-method:first-of-type { border-top: none; padding-top: 0; }
.contact-method__icon {
  width: 50px; height: 50px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(0,245,255,0.07);
  border: 1px solid rgba(0,245,255,0.2);
  color: var(--neon);
}
.contact-method__icon svg { width: 23px; height: 23px; }
.contact-method__label { font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-faint); margin-bottom: 3px; }
.contact-method__value { font-family: var(--font-display); font-weight: 700; font-size: 1.3rem; letter-spacing: 0.02em; }
.contact-method a.contact-method__value { transition: color 0.25s var(--ease); }
.contact-method a.contact-method__value:hover { color: var(--neon); }

.hours-list { list-style: none; padding: 0; margin: 22px 0 0; }
.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 11px 0;
  border-top: 1px solid var(--border);
  font-size: 0.95rem;
}
.hours-list li span:first-child { color: var(--text-dim); }
.hours-list li span:last-child { font-weight: 600; }

/* Leaflet map */
.leaflet-container { background: #11111f; font-family: var(--font-body); }
.leaflet-popup-content-wrapper {
  background: var(--surface-2);
  color: var(--text);
  border: 1px solid var(--border-strong);
  border-radius: 10px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.6);
}
.leaflet-popup-content { font-size: 0.9rem; }
.leaflet-popup-tip { background: var(--surface-2); }
.leaflet-control-attribution { background: rgba(10,10,20,0.7) !important; color: var(--text-faint) !important; }
.leaflet-control-attribution a { color: var(--text-dim) !important; }
.leaflet-bar a { background: var(--surface-2) !important; color: var(--text) !important; border-color: var(--border) !important; }
#map {
  height: 460px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  margin-top: 24px;
}
.areas-served {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.areas-served span {
  font-weight: 600;
  font-size: 0.88rem;
  padding: 8px 16px;
  border: 1px solid var(--border);
  border-radius: 100px;
  color: var(--text-dim);
}

/* =========================================================================
   FAQ
   ========================================================================= */

.faq { max-width: 820px; margin: 48px auto 0; }
.faq__item {
  border-bottom: 1px solid var(--border);
}
.faq__q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  text-align: left;
  padding: 26px 4px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--text);
  transition: color 0.25s var(--ease);
}
.faq__q:hover { color: var(--neon); }
.faq__icon {
  position: relative;
  width: 22px; height: 22px;
  flex-shrink: 0;
}
.faq__icon::before, .faq__icon::after {
  content: "";
  position: absolute;
  background: var(--neon);
  border-radius: 2px;
  transition: transform 0.3s var(--ease);
}
.faq__icon::before { top: 50%; left: 0; width: 100%; height: 2px; transform: translateY(-50%); }
.faq__icon::after { left: 50%; top: 0; width: 2px; height: 100%; transform: translateX(-50%); }
.faq__item.is-open .faq__icon::after { transform: translateX(-50%) scaleY(0); }
.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}
.faq__a-inner { padding: 0 4px 28px; color: var(--text-dim); max-width: 70ch; line-height: 1.7; }

/* =========================================================================
   CTA BANNER
   ========================================================================= */

/* neon divider rule */
.neon-rule {
  position: relative;
  height: 1px;
  background: rgba(0, 245, 255, 0.35);
  box-shadow: 0 0 6px rgba(0, 245, 255, 0.3);
  overflow: hidden;
}
.neon-rule::after {
  content: "";
  position: absolute;
  top: -2px;
  left: -30%;
  width: 30%;
  height: 5px;
  background: linear-gradient(90deg, transparent, var(--neon), transparent);
  filter: blur(3px);
  animation: neonScan 3.5s ease-in-out infinite;
}
@keyframes neonScan {
  0%   { left: -30%; opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { left: 100%; opacity: 0; }
}

/* quick links */
#reviews { padding-bottom: 24px; }
#services { padding-bottom: 24px; }
.quick-links { padding-top: 8px; }
.quick-links__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.quick-link {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 22px 24px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--bg-2);
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease);
  text-decoration: none;
  position: relative;
}
.quick-link:hover { border-color: var(--neon); background: rgba(0,245,255,0.04); }
.quick-link__label { font-weight: 700; font-size: 1rem; color: var(--text); }
.quick-link__sub { font-size: 0.82rem; color: var(--text-dim); }
.quick-link__arrow {
  width: 18px; height: 18px;
  color: var(--neon);
  margin-top: 14px;
  transition: transform 0.2s var(--ease);
}
.quick-link:hover .quick-link__arrow { transform: translateX(4px); }

@media (max-width: 880px) {
  .quick-links__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .quick-links__grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .quick-link { padding: 16px 18px; }
}

.cta-banner {
  position: relative;
  text-align: center;
  padding: clamp(60px, 9vw, 110px) var(--gutter);
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 100% at 50% 0%, var(--navy-glow), transparent 60%),
    radial-gradient(50% 80% at 50% 120%, rgba(0,245,255,0.12), transparent 60%);
}
.cta-banner__inner { position: relative; z-index: 1; max-width: 760px; margin-inline: auto; }
.cta-banner h2 { font-size: clamp(2.4rem, 6vw, 4.6rem); margin-bottom: 22px; }
.cta-banner p { color: var(--text-dim); font-size: 1.1rem; margin-bottom: 36px; max-width: 50ch; margin-inline: auto; }
.cta-banner .cta-group { justify-content: center; }

/* =========================================================================
   FOOTER
   ========================================================================= */

.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding-block: 64px 30px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}
.footer__brand img { width: 50px; height: 50px; border-radius: 10px; margin-bottom: 18px; box-shadow: 0 0 0 1px var(--border-strong); }
.footer__brand p { color: var(--text-dim); font-size: 0.95rem; max-width: 36ch; }
.footer__col h4 { font-size: 0.92rem; letter-spacing: 0.14em; color: var(--text-faint); margin-bottom: 18px; }
.footer__col ul { list-style: none; padding: 0; display: grid; gap: 12px; }
.footer__col a { color: var(--text-dim); font-size: 0.95rem; transition: color 0.25s var(--ease); }
.footer__col a:hover { color: var(--neon); }
.footer__social { display: flex; gap: 12px; margin-top: 8px; }
.footer__social a {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border-radius: 10px;
  border: 1px solid var(--border);
  color: var(--text-dim);
  transition: color 0.25s var(--ease), border-color 0.25s var(--ease), transform 0.25s var(--ease);
}
.footer__social a:hover { color: var(--neon); border-color: var(--neon); transform: translateY(-3px); }
.footer__social svg { width: 20px; height: 20px; }
.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding-top: 26px;
  font-size: 0.85rem;
  color: var(--text-faint);
}
.footer__bottom a { color: var(--text-dim); }
.footer__bottom a:hover { color: var(--neon); }

/* =========================================================================
   FLOATING WHATSAPP
   ========================================================================= */

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: max(22px, calc(22px + env(safe-area-inset-bottom)));
  z-index: 999;
  width: 60px; height: 60px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  box-shadow: 0 10px 30px -6px rgba(37, 211, 102, 0.6);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.whatsapp-float:hover { transform: scale(1.08) translateY(-2px); box-shadow: 0 16px 40px -6px rgba(37, 211, 102, 0.75); }
.whatsapp-float svg { width: 32px; height: 32px; }

/* =========================================================================
   SCROLL REVEAL
   ========================================================================= */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.is-in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: 0.08s; }
.reveal[data-d="2"] { transition-delay: 0.16s; }
.reveal[data-d="3"] { transition-delay: 0.24s; }
.reveal[data-d="4"] { transition-delay: 0.32s; }

/* =========================================================================
   ANIMATIONS
   ========================================================================= */

@keyframes marquee { to { transform: translateX(-50%); } }
@keyframes cuePulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); transform-origin: top; }
}
@keyframes heroRise {
  from { transform: translateY(110%); }
  to { transform: translateY(0); }
}
.hero h1 .line > span { animation: heroRise 0.9s var(--ease) both; }
.hero h1 .line:nth-child(1) > span { animation-delay: 0.1s; }
.hero h1 .line:nth-child(2) > span { animation-delay: 0.22s; }
.hero h1 .line:nth-child(3) > span { animation-delay: 0.34s; }
.hero h1 .line > span.neon-text { animation: heroRise 0.9s var(--ease) both, neonFlicker 15s step-end 1s infinite; }
.hero__fade { opacity: 0; animation: fadeUp 0.8s var(--ease) both; }
.hero__sub.hero__fade { animation-delay: 0.5s; }
.hero .cta-group.hero__fade { animation-delay: 0.62s; }
.hero__award.hero__fade { animation-delay: 0.74s; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }

/* =========================================================================
   RESPONSIVE
   ========================================================================= */

@media (max-width: 1080px) {
  .gallery { columns: 2; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 880px) {
  :root { --nav-h: 66px; --topbar-h: 40px; }
  .nav__links, .nav__phone { display: none; }
  .nav__toggle { display: block; }
  .nav__cta .btn { padding: 9px 16px; font-size: 0.82rem; }

  /* On mobile the cover crop only shows ~35% of the image width. Shift
     the focal point left so the "ASHTON SIGNS" fascia sign is centred
     in the visible window instead of the dead-centre of the photo. */
  .hero__bg img { object-position: 22% center; }

  /* Wrapper owns the notch region. Both bars are plain fixed-height
     in-flow children — no env() maths between siblings, no gap possible.
     Nav gets a solid background on mobile (no transparency, no
     backdrop-filter) so the hero never bleeds through, matching the
     approach used on other working iOS sites. */
  .site-header {
    padding-top: max(0px, env(safe-area-inset-top));
    background: var(--surface-2);
  }
  .topbar {
    display: flex;
    flex-shrink: 0;
    border-bottom: none;
  }
  .nav {
    height: var(--nav-h);
    padding-top: 0;
    flex-shrink: 0;
    background: var(--bg-2);
    border-bottom-color: var(--border);
  }
  .nav.is-scrolled {
    background: var(--bg-2);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .nav__links.is-mobile {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    position: fixed;
    inset: calc(var(--header-h) + max(0px, env(safe-area-inset-top))) 0 auto 0;
    background: rgba(8, 8, 16, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 18px var(--gutter) 26px;
    opacity: 0;
    transform: translateY(-12px);
    pointer-events: none;
    transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .nav.is-open .nav__links.is-mobile {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  .nav__links.is-mobile a { padding: 15px 18px; font-size: 1.05rem; border-radius: 10px; }
  .nav__links.is-mobile a.is-active::after { display: none; }

  .split, .svc-row, .svc-row--reverse, .contact-grid { grid-template-columns: 1fr; }
  .split--reverse .split__media, .svc-row--reverse .svc-row__media { order: 0; }
  .split__media img { aspect-ratio: 16/11; }

  .page-head--about { background-position: 20% 90px; }
}

@media (max-width: 620px) {
  body { font-size: 16px; }
  .gallery { columns: 1; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .cta-group { width: 100%; flex-direction: column; align-items: stretch; }
  .cta-group .btn { width: 100%; }
  .btn--lg { --btn-pad-y: 14px; --btn-pad-x: 24px; font-size: 0.95rem; }
  .hero { min-height: auto; padding-top: calc(var(--header-h) + 70px); }
  .lightbox__prev { left: 12px; }
  .lightbox__next { right: 12px; }
}

/* =========================================================================
   REDUCED MOTION
   ========================================================================= */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .ticker__track { animation: none; }
  .hero__cue-line { animation: none; }
  .hero h1 .line > span,
  .hero__fade { animation: none; opacity: 1; transform: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
  }
}
