/* ============================================================
   A&amp;E Plumbing · FRESH STYLE (spike for Jase · 13/05/2026)
   Hobart TAS. Built by FreshTech Community.
   Spec: 00_Templates/TEMPLATE-STYLE-FORK.md
   Fresh = white bg + electric blue + Inter Bold (tradie default).
   Fancy preserved at client-sites/hobart-aeplumbing/ for comparison.
   ============================================================ */

/* ─── BRAND TOKENS · FRESH STYLE ─── */
:root {
  /* Palette · deep navy + electric cobalt + electric lime · bold iteration 13/05/2026 */
  --ink:        #0A1428;          /* deeper navy · primary text + dark sections */
  --ink-2:      #11203F;          /* navy-2 · elevated dark */
  --ink-3:      #1B2E55;          /* navy-3 · card on dark */
  --bone:       #FFFFFF;          /* pure white body bg */
  --bone-2:     #F4F6FA;          /* cool off-white · subtle bg variation */
  --paper:      #EEF1F6;          /* cooler slate · alternate section bg */
  --signal:     #0B5CAD;          /* trade blue - primary CTA without SaaS cobalt */
  --signal-2:   #084A8E;          /* deeper trade blue - hover */
  --steel:      #475569;          /* slate-600 · muted body text */
  --steel-2:    #94A3B8;          /* slate-400 · muted text on dark */
  --rule:       #E2E8F0;          /* slate-200 · clean hairline */
  --rule-dark:  #1F3260;          /* navy hairline · darker rule on dark sections */
  --lime:       #FFD400;          /* safety yellow - restrained trade accent */
  --kraft:      #64748B;          /* slate-500 · meta labels */

  --shadow-soft: 0 1px 0 rgba(15,20,25,0.04), 0 14px 28px -12px rgba(15,20,25,0.18);
  --shadow-lift: 0 2px 0 rgba(15,20,25,0.05), 0 30px 60px -20px rgba(15,20,25,0.30);

  /* Spacing rhythm · varied, not flat */
  --gutter: clamp(1.25rem, 4vw, 2rem);
  --col-max: 84rem;

  /* Type scale · 1.333 perfect fourth + display ratio 1.6 */
  --fs-mono:   0.7rem;
  --fs-meta:   0.78rem;
  --fs-body:   1rem;
  --fs-lead:   1.125rem;
  --fs-h4:     1.25rem;
  --fs-h3:     1.625rem;
  --fs-h2:     clamp(1.875rem, 4vw, 2.75rem);
  --fs-h1:     clamp(2.5rem, 7vw, 5.5rem);
  --fs-display:clamp(3rem, 11vw, 8.5rem);
}

/* ─── BASE ─── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: var(--fs-body);
  line-height: 1.6;
  color: var(--ink);
  background: var(--bone);
  font-feature-settings: "ss01", "cv11", "cv05";
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; }
a { color: inherit; }

::selection { background: var(--signal); color: var(--bone); }

/* ─── TYPE FAMILIES ─── */
.font-display {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-weight: 900;
  letter-spacing: -0.04em;
}
.font-mono {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  letter-spacing: 0.04em;
}

/* ─── EDITORIAL META LABEL ─── */
/* Small uppercase mono dateline above every section heading. */
.meta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: var(--fs-mono);
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--kraft);
}
.meta::before {
  content: '';
  width: 1.25rem;
  height: 1px;
  background: var(--kraft);
}
.meta--ink { color: var(--steel-2); }
.meta--ink::before { background: var(--steel-2); }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  padding: 1rem 1.875rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: -0.005em;
  border-radius: 999px;
  border: 1.5px solid transparent;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 0.15s ease-out, color 0.15s ease-out, border-color 0.15s ease-out;
  position: relative;
  will-change: transform;
}
.btn:active { transform: translateY(1px) scale(0.99); }

.btn--signal {
  background: var(--signal);
  color: #FFFFFF;        /* white text on electric blue · AA contrast (6:1) */
}
.btn--signal:hover { background: var(--signal-2); color: #FFFFFF; }

.btn--ink {
  background: var(--ink);
  color: var(--bone);
}
.btn--ink:hover { background: var(--ink-2); }

.btn--ghost-dark {
  background: transparent;
  color: var(--bone);
  border-color: rgba(234, 227, 210, 0.25);
}
.btn--ghost-dark:hover {
  border-color: var(--bone);
}

.btn--ghost-light {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn--ghost-light:hover {
  background: var(--ink);
  color: var(--bone);
}

.btn--sm { padding: 0.625rem 1.25rem; font-size: 0.8125rem; }

.btn .arrow {
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}
.btn:hover .arrow {
  transform: translateX(4px);
}

/* ─── HEADER ─── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: var(--ink);
  color: var(--bone);
  transition: box-shadow 0.2s ease-out, transform 0.3s ease-out;
}
.site-header.is-scrolled { box-shadow: 0 1px 0 rgba(255,255,255,0.04), 0 12px 32px -8px rgba(0,0,0,0.5); }

/* Editorial top strip */
.top-strip {
  background: var(--ink-2);
  border-bottom: 1px solid var(--rule-dark);
  font-family: 'JetBrains Mono', monospace;
  font-size: var(--fs-mono);
  font-weight: 500;
}
.top-strip-inner {
  max-width: var(--col-max);
  margin: 0 auto;
  padding: 0.625rem var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--steel-2);
}
.top-strip-left, .top-strip-mid, .top-strip-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.top-strip-mid {
  display: none;
  gap: 1rem;
}
@media (min-width: 768px) { .top-strip-mid { display: flex; } }

.live-dot {
  position: relative;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--lime);
  flex-shrink: 0;
}
.live-dot::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 999px;
  background: var(--lime);
  opacity: 0.4;
  animation: live-pulse 2s ease-out infinite;
}
@keyframes live-pulse {
  0%   { transform: scale(0.85); opacity: 0.5; }
  70%  { transform: scale(1.7); opacity: 0; }
  100% { transform: scale(1.7); opacity: 0; }
}

.top-strip-call {
  color: var(--bone);
  text-decoration: none;
  transition: color 0.15s ease-out;
}
.top-strip-call:hover { color: var(--signal); }

/* Main nav */
.nav {
  max-width: var(--col-max);
  margin: 0 auto;
  padding: 1.125rem var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.logo-mark {
  display: flex;
  align-items: center;
  gap: 1.125rem;            /* +30% from 0.875rem */
  text-decoration: none;
  color: inherit;
}
.logo-glyph {
  width: 3.25rem;           /* +30% from 2.5rem */
  height: 3.25rem;          /* +30% from 2.5rem */
  border-radius: 10px;      /* slightly larger to match scale */
  background: var(--signal);
  color: #FFFFFF;
  display: grid;
  place-items: center;
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: 1.625rem;      /* +30% from 1.25rem */
  letter-spacing: -0.04em;
  flex-shrink: 0;
  
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-text-top {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1.4625rem;     /* +30% from 1.125rem */
  letter-spacing: -0.015em;
}
.logo-text-bottom {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.8125rem;     /* +30% from 0.625rem */
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--steel-2);
  margin-top: 0.26rem;      /* +30% from 0.2rem */
}

.nav-links {
  display: none;
  align-items: center;
  gap: 2.25rem;
}
@media (min-width: 900px) { .nav-links { display: flex; } }
.nav-links a {
  color: var(--steel-2);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: -0.005em;
  transition: color 0.15s ease-out;
  position: relative;
  padding: 0.25rem 0;
}
.nav-links a:hover { color: var(--bone); }
.nav-links a.is-active {
  color: var(--bone);
}
.nav-links a.is-active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -0.5rem;
  height: 2px;
  background: var(--signal);
}

.menu-btn {
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 999px;
  border: 1px solid rgba(234,227,210,0.2);
  background: transparent;
  color: var(--bone);
}
@media (min-width: 900px) { .menu-btn { display: none; } }
.menu-btn:hover { border-color: var(--bone); }

.mobile-menu {
  display: none;
  border-top: 1px solid var(--rule-dark);
  background: var(--ink);
}
.mobile-menu.is-open { display: block; }
.mobile-menu nav {
  display: flex;
  flex-direction: column;
  padding: 1.25rem var(--gutter) 1.5rem;
  gap: 0;
}
.mobile-menu nav a {
  color: var(--steel-2);
  text-decoration: none;
  padding: 1rem 0;
  border-bottom: 1px solid var(--rule-dark);
  font-size: 1rem;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  letter-spacing: -0.01em;
}
.mobile-menu nav a:hover, .mobile-menu nav a.is-active { color: var(--bone); }
.mobile-menu nav a.btn { margin-top: 1rem; justify-content: center; border-bottom: 0; }

/* ─── HERO ─── */
.hero {
  background: var(--ink);
  color: var(--bone);
  position: relative;
  overflow: hidden;
  padding: 6rem 0 4rem;
}
@media (min-width: 768px) { .hero { padding: 8rem 0 6rem; } }
@media (min-width: 1100px) { .hero { padding: 9rem 0 7rem; } }

/* Diagonal column rule decoration */
.hero::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--rule-dark) 20%, var(--rule-dark) 80%, transparent);
  pointer-events: none;
  display: none;
}
@media (min-width: 1100px) { .hero::before { display: block; } }

.hero-inner {
  max-width: var(--col-max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: end;
  position: relative;
}
@media (min-width: 1100px) {
  .hero-inner {
    grid-template-columns: 1.15fr 1fr;
    gap: 4rem;
  }
}

.hero-dateline {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.25rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: var(--fs-mono);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--steel-2);
  padding-bottom: 1.25rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--rule-dark);
}
.hero-dateline span { display: inline-flex; align-items: center; gap: 0.5rem; }
.hero-dateline .sep { color: var(--rule-dark); }

.hero-headline {
  font-family: 'Inter', sans-serif;
  
  font-weight: 900;
  font-size: var(--fs-h1);
  line-height: 0.95;
  letter-spacing: -0.035em;
  color: var(--bone);
  margin: 0;
}
.hero-headline em {
  font-style: normal;
  color: var(--signal);
  display: inline-block;
}

.hero-sub {
  margin-top: 1.75rem;
  max-width: 36rem;
  font-size: var(--fs-lead);
  line-height: 1.55;
  color: var(--steel-2);
}

.hero-actions {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Hero image · editorial offset */
.hero-figure {
  position: relative;
  margin: 0;
}
.hero-figure img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 4px;
  filter: contrast(1.05) brightness(0.95);
}
.hero-figure figcaption {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bone);
  background: rgba(15,20,25,0.55);
  backdrop-filter: blur(6px);
  padding: 0.625rem 0.875rem;
  border-radius: 2px;
  border: 1px solid rgba(37, 99, 235, 0.4);
}
.hero-figure figcaption::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--signal);
  margin-right: 0.5rem;
  vertical-align: 1px;
}

/* Hero stats strip · bottom */
.hero-stats {
  margin-top: 5rem;
  max-width: var(--col-max);
  margin-left: auto;
  margin-right: auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (min-width: 768px) { .hero-stats { grid-template-columns: repeat(4, 1fr); } }
.stat {
  padding: 1.5rem 0 0;
  border-top: 1px solid var(--rule-dark);
}
.stat-num {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--bone);
}
.stat-num em {
  font-style: normal;
  color: var(--signal);
}
.stat-label {
  margin-top: 0.625rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: var(--fs-mono);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--steel-2);
}

/* ─── PAGE HERO (sub-pages) ─── */
.page-hero {
  background: var(--ink);
  color: var(--bone);
  padding: 8rem 0 5rem;
  position: relative;
  overflow: hidden;
}
.page-hero-inner {
  max-width: var(--col-max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.page-hero h1 {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: clamp(2.25rem, 6vw, 4.5rem);
  letter-spacing: -0.03em;
  line-height: 1;
  margin: 1.25rem 0 0;
  color: var(--bone);
}
.page-hero h1 em {
  font-style: normal;
  color: var(--signal);
}
.page-hero p {
  margin-top: 1.5rem;
  max-width: 38rem;
  font-size: var(--fs-lead);
  line-height: 1.55;
  color: var(--steel-2);
}

/* ─── SECTIONS ─── */
section { position: relative; }
.container {
  max-width: var(--col-max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.section-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: end;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--rule);
  margin-bottom: 3rem;
}
@media (min-width: 900px) {
  .section-head { grid-template-columns: 1.25fr 1fr; gap: 3rem; }
}
.section-head h2 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: var(--fs-h2);
  letter-spacing: -0.025em;
  line-height: 1.04;
  margin: 1rem 0 0;
}
.section-head h2 em {
  font-style: normal;
  color: var(--signal);
}
.section-head .lead {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--steel);
}

/* ─── WHY US · varied editorial cards ─── */
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 700px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .why-grid { grid-template-columns: repeat(4, 1fr); } }

.why-card {
  position: relative;
  padding: 2rem 1.75rem 1.75rem;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-height: 16rem;
}
.why-card .num {
  font-family: 'JetBrains Mono', monospace;
  font-size: var(--fs-mono);
  font-weight: 500;
  letter-spacing: 0.16em;
  color: var(--kraft);
}
.why-card .icon {
  width: 2.5rem;
  height: 2.5rem;
  color: var(--ink);
}
.why-card h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 1.375rem;
  letter-spacing: -0.015em;
  line-height: 1.15;
  margin: 0;
}
.why-card p {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--steel);
}
/* Vary cards · every other one inverts */
.why-card--ink {
  background: var(--ink);
  border-color: var(--rule-dark);
  color: var(--bone);
}
.why-card--ink h3 { color: var(--bone); }
.why-card--ink p { color: var(--steel-2); }
.why-card--ink .icon { color: var(--signal); }
.why-card--ink .num { color: var(--steel-2); }

/* ─── SERVICES · editorial list, not identical cards ─── */
.svc-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--rule);
}
@media (min-width: 800px) { .svc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .svc-grid { grid-template-columns: repeat(3, 1fr); } }

.svc {
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--rule);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
  align-items: start;
  text-decoration: none;
  color: inherit;
  position: relative;
  transition: background 0.25s ease-out;
}
@media (min-width: 800px) {
  .svc {
    padding: 2.5rem 1.75rem;
    border-right: 1px solid var(--rule);
  }
  .svc-grid > .svc:nth-child(2n) { border-right: 1px solid var(--rule); }
  @media (min-width: 1100px) {
    .svc-grid > .svc:nth-child(3n) { border-right: 0; }
  }
}
.svc:hover { background: var(--paper); }
.svc:hover .svc-arrow { transform: translate(4px, -4px); }

.svc-illus {
  width: 4rem;
  height: 4rem;
  flex-shrink: 0;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  mix-blend-mode: multiply;
}
.svc-body { display: flex; flex-direction: column; gap: 0.5rem; }
.svc-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: var(--fs-mono);
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--kraft);
}
.svc h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 1.375rem;
  letter-spacing: -0.015em;
  line-height: 1.15;
  margin: 0;
}
.svc p {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--steel);
}
.svc-arrow {
  position: absolute;
  top: 2.5rem;
  right: 1.75rem;
  width: 1.5rem;
  height: 1.5rem;
  color: var(--ink);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
@media (max-width: 799px) { .svc-arrow { right: 0; } }

/* ─── PULL QUOTE BAND ─── */
.pull-quote {
  background: var(--bone-2);
  padding: 5rem 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.pull-quote-inner {
  max-width: 60rem;
  margin: 0 auto;
  padding: 0 var(--gutter);
  text-align: left;
}
.pull-quote q {
  font-family: 'Inter', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: clamp(1.625rem, 4vw, 2.5rem);
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--ink);
  
  display: block;
  position: relative;
}
.pull-quote q::before {
  content: '\201C';
  position: absolute;
  left: -2.5rem;
  top: -1rem;
  font-size: 4rem;
  color: var(--signal);
  line-height: 1;
}
@media (max-width: 700px) {
  .pull-quote q::before { left: -1rem; top: -0.5rem; font-size: 2.5rem; }
}
.pull-quote cite {
  display: block;
  margin-top: 2rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: var(--fs-mono);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--kraft);
  font-style: normal;
}

/* ─── ABOUT TEASER (asymmetric editorial) ─── */
.about-teaser {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 900px) {
  .about-teaser { grid-template-columns: 1fr 1.15fr; gap: 4.5rem; }
}
.about-portrait {
  position: relative;
  margin: 0;
}
.about-portrait img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 4px;
  filter: contrast(1.05);
}
.about-portrait::after {
  content: 'A&amp;E Plumbing · Hobart';
  position: absolute;
  bottom: -1.5rem; left: 0;
  font-family: 'JetBrains Mono', monospace;
  font-size: var(--fs-mono);
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--kraft);
  padding-top: 0.5rem;
  border-top: 2px solid var(--signal);
}
.about-text h2 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: var(--fs-h2);
  letter-spacing: -0.025em;
  line-height: 1.04;
  margin: 1rem 0 1.5rem;
}
.about-text h2 em {
  font-style: normal;
  color: var(--signal);
}
.about-text p {
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  max-width: 36rem;
}
.about-text p + p { margin-top: 1.25rem; }

/* ─── FAQ ACCORDION (JS-driven, not native details) ─── */
.faq-list {
  border-top: 1px solid var(--rule);
}
.faq-item { border-bottom: 1px solid var(--rule); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.625rem 0;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 1.125rem;
  letter-spacing: -0.01em;
  color: var(--ink);
  background: transparent;
  border: 0;
  text-align: left;
  cursor: pointer;
  transition: color 0.15s ease-out;
}
.faq-q:hover { color: var(--signal); }
.faq-q .icon-circ {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 999px;
  border: 1px solid var(--ink);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: background-color 0.2s ease-out, color 0.2s ease-out, transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.faq-q[aria-expanded="true"] .icon-circ {
  background: var(--signal);
  color: var(--bone);
  border-color: var(--signal);
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.faq-a-inner {
  padding: 0 0 1.75rem 0;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--steel);
  max-width: 56ch;
}

/* ─── CLOSER CTA BAND ─── */
.closer {
  background: var(--ink);
  color: var(--bone);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}
.closer-inner {
  max-width: var(--col-max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: end;
}
@media (min-width: 900px) { .closer-inner { grid-template-columns: 1.5fr 1fr; gap: 4rem; } }
.closer h2 {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: clamp(2rem, 5.5vw, 4rem);
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--bone);
  margin: 1rem 0 0;
}
.closer h2 em {
  font-style: normal;
  color: var(--signal);
}
.closer p {
  font-size: var(--fs-lead);
  line-height: 1.5;
  color: var(--steel-2);
  margin: 0;
  max-width: 32rem;
}
.closer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-self: end;
}

/* ─── CATEGORY GRID (services page) ─── */
.cat-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem 2.5rem;
}
@media (min-width: 700px) { .cat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .cat-grid { grid-template-columns: repeat(3, 1fr); gap: 3rem 3rem; } }

.cat-col h3 {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0 0 1rem;
  padding-bottom: 0.875rem;
  border-bottom: 2px solid var(--ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cat-col h3 .count {
  color: var(--kraft);
  font-weight: 500;
}
.cat-col ul { list-style: none; padding: 0; margin: 0; }
.cat-col ul li {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: -0.01em;
  padding: 0.625rem 0;
  border-bottom: 1px solid var(--rule);
  color: var(--ink);
  position: relative;
  transition: padding-left 0.25s cubic-bezier(0.22, 1, 0.36, 1), color 0.2s ease-out;
  cursor: default;
}
.cat-col ul li:last-child { border-bottom: 0; }
.cat-col ul li::before {
  content: '+';
  position: absolute;
  left: 0;
  opacity: 0;
  color: var(--signal);
  font-family: 'JetBrains Mono', monospace;
  transition: opacity 0.2s ease-out;
}
.cat-col ul li:hover { padding-left: 1rem; color: var(--signal); }
.cat-col ul li:hover::before { opacity: 1; }

/* ─── SUBURB CHIPS ─── */
.suburb-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.125rem;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 999px;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: -0.005em;
  color: var(--ink);
  transition: border-color 0.2s ease-out, color 0.2s ease-out, background 0.2s ease-out;
}
.chip:hover { border-color: var(--ink); }
.chip--primary {
  background: var(--ink);
  color: var(--bone);
  border-color: var(--ink);
}

/* Suburb skyline parallax band */
.skyline-band {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  padding: 2rem 0;
  height: 120px;
}
.skyline-band img {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 100%;
  width: auto;
  max-width: none;
  filter: invert(1) opacity(0.4);
  will-change: transform;
}

/* ─── CONTACT FORM ─── */
.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 600px) { .form-grid { grid-template-columns: repeat(2, 1fr); } }

.field { display: flex; flex-direction: column; gap: 0.5rem; }
.field--full { grid-column: 1 / -1; }
.field label {
  font-family: 'JetBrains Mono', monospace;
  font-size: var(--fs-mono);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--kraft);
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: var(--ink);
  background: var(--paper);
  border: 1.5px solid var(--rule);
  border-radius: 4px;
  outline: none;
  transition: border-color 0.15s ease-out, background-color 0.15s ease-out;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--ink);
  background: var(--bone);
}
.field textarea { resize: vertical; min-height: 7rem; line-height: 1.55; }

.form-status {
  margin-top: 1.5rem;
  padding: 1rem 1.25rem;
  border-radius: 4px;
  background: var(--ink);
  color: var(--bone);
  font-size: 0.9375rem;
  display: none;
}
.form-status.is-visible { display: block; }

/* ─── MOBILE STICKY CALL BAR ─── */
.sticky-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 40;
  padding: 0.75rem var(--gutter) calc(0.75rem + env(safe-area-inset-bottom));
  background: var(--ink-2);
  border-top: 1px solid var(--rule-dark);
  transform: translateY(110%);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.sticky-cta.is-visible { transform: translateY(0); }
@media (min-width: 900px) { .sticky-cta { display: none; } }
.sticky-cta a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  width: 100%;
  padding: 1rem 1.5rem;
  background: var(--signal);
  color: var(--bone);
  font-weight: 700;
  font-size: 1.0625rem;
  letter-spacing: -0.005em;
  border-radius: 999px;
  text-decoration: none;
}

/* ─── FOOTER ─── */
.site-footer {
  background: var(--ink);
  color: var(--steel-2);
  padding: 4.5rem 0 2rem;
}
.footer-inner {
  max-width: var(--col-max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--rule-dark);
}
@media (min-width: 800px) { .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 3rem; } }
.footer-col h4 {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 500;
  font-size: var(--fs-mono);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bone);
  margin: 0 0 1rem;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li {
  padding: 0.3rem 0;
  font-size: 0.9rem;
  font-weight: 400;
}
.footer-col a {
  color: var(--steel-2);
  text-decoration: none;
  transition: color 0.15s ease-out;
}
.footer-col a:hover { color: var(--bone); }
.footer-col a.signal { color: var(--signal); font-weight: 600; }
.footer-col a.signal:hover { color: var(--bone); }

.footer-bottom {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--steel);
}
.footer-bottom a { color: var(--signal); text-decoration: none; }

/* ─── REVEAL UTILITY (gsap target classes) ─── */
.reveal {
  opacity: 0;
  filter: blur(8px);
  transform: translateY(20px);
  will-change: opacity, filter, transform;
}
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(20px);
  will-change: opacity, transform;
}

/* Disable reveal animations if user prefers reduced motion */
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-stagger > * {
    opacity: 1 !important;
    filter: none !important;
    transform: none !important;
  }
  .live-dot::after { animation: none; }
  html { scroll-behavior: auto; }
  * { transition-duration: 0.01ms !important; }
}

/* ─── A11Y ─── */
:focus-visible {
  outline: 2px solid var(--signal);
  outline-offset: 3px;
  border-radius: 2px;
}
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}


/* === COMPETITIVE REBUILD · 13/05/2026 · BOLD DISPLAY + REAL REVIEWS === */

/* Display headings now use Space Grotesk + heavier weights. Body keeps Inter. */
h1, h2, .ag-hero h1, .hero-headline, .page-hero h1, .ag-section-head h2 {
  font-family: 'Space Grotesk', 'Inter', system-ui, sans-serif;
  font-weight: 700;
  letter-spacing: -0.025em;
}
h3, h4 {
  font-family: 'Space Grotesk', 'Inter', system-ui, sans-serif;
  font-weight: 700;
}

/* Lime accent for highlights (replaces some signal-blue emphasis where the
   yellow-green pop is the design intent from Image 1) */
.lime-underline {
  background-image: linear-gradient(transparent 60%, var(--lime) 60%);
  background-size: 100% 100%;
  padding: 0 0.1em;
}

/* Real Google reviews block · drop-in for the testimonials section */
.r-aggregate {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: var(--bone);
  border: 1px solid var(--rule);
  border-radius: 10px;
  padding: 1.5rem 2rem;
  max-width: 40rem;
  margin: 0 auto 3rem;
  box-shadow: var(--shadow-soft);
}
.r-agg-stars {
  font-size: 1.75rem;
  color: #FFB800;
  text-shadow:
    0 0 6px rgba(255, 184, 0, 0.55),
    0 0 14px rgba(255, 184, 0, 0.35),
    0 0 28px rgba(255, 184, 0, 0.18);
  animation: r-glow 2.6s ease-in-out infinite;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}
.r-agg-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.1;
}
.r-agg-sub {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--steel);
  margin-top: 0.25rem;
}

.r-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  max-width: var(--col-max);
  margin: 0 auto;
}
@media (max-width: 1000px) { .r-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 700px)  { .r-grid { grid-template-columns: 1fr; } }

.r-card {
  background: var(--bone);
  border: 1px solid var(--rule);
  border-radius: 10px;
  padding: 1.75rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: var(--shadow-soft);
  position: relative;
}
.r-card::before {
  content: "\201C";
  position: absolute;
  top: 0.25rem;
  right: 1rem;
  font-family: Georgia, serif;
  font-size: 4rem;
  color: var(--paper);
  line-height: 1;
  pointer-events: none;
}
.r-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.r-stars {
  color: #FFB800;
  font-size: 1.05rem;
  letter-spacing: 0.05em;
  text-shadow:
    0 0 4px rgba(255, 184, 0, 0.55),
    0 0 10px rgba(255, 184, 0, 0.3);
  animation: r-glow 2.6s ease-in-out infinite;
}

@keyframes r-glow {
  0%, 100% {
    text-shadow:
      0 0 4px rgba(255, 184, 0, 0.55),
      0 0 10px rgba(255, 184, 0, 0.30),
      0 0 22px rgba(255, 184, 0, 0.15);
    filter: brightness(1);
  }
  50% {
    text-shadow:
      0 0 8px rgba(255, 200, 50, 0.85),
      0 0 18px rgba(255, 200, 50, 0.55),
      0 0 36px rgba(255, 200, 50, 0.30);
    filter: brightness(1.12);
  }
}
.r-source {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--kraft);
}
.r-quote {
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--ink);
  margin: 0;
  flex: 1;
}
.r-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-top: 1px solid var(--rule);
  padding-top: 1rem;
}
.r-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--signal);
  color: var(--bone);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  flex-shrink: 0;
}
.r-name {
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--ink);
}
.r-job {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--kraft);
  margin-top: 0.125rem;
}

/* Vision section (About) — bold dark hero block */
.vision-block {
  background: var(--ink);
  color: var(--bone);
  padding: 6rem 0 5rem;
  position: relative;
  overflow: hidden;
}
.vision-block .container { position: relative; z-index: 1; }
.vision-block .v-meta {
  color: var(--lime);
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 1.25rem;
  border-bottom: 3px solid var(--lime);
  padding-bottom: 0.5rem;
}
.vision-block h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.25rem, 5.5vw, 4rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin: 0 0 1.5rem;
  color: var(--bone);
  max-width: 62rem;
}
.vision-block h2 em {
  font-style: normal;
  color: var(--steel-2);
  font-weight: 500;
}
.vision-block .v-lead {
  font-size: 1.125rem;
  line-height: 1.55;
  color: var(--steel-2);
  max-width: 46rem;
  margin: 0 0 4rem;
}
.v-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 1rem;
}
@media (max-width: 900px) { .v-pillars { grid-template-columns: 1fr; gap: 1rem; } }
.v-pillar {
  background: var(--ink-2);
  border: 1px solid var(--rule-dark);
  border-radius: 10px;
  padding: 2rem 1.75rem;
}
.v-pillar .v-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 1.25rem;
}
.v-pillar .v-icon {
  width: 56px;
  height: 56px;
  background: var(--ink-3);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lime);
  margin-bottom: 1.25rem;
}
.v-pillar h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 0.75rem;
  color: var(--bone);
  line-height: 1.2;
}
.v-pillar p {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--steel-2);
  margin: 0;
}

/* Pill-style service icons (Image 3) */
.svc-pill {
  width: 64px;
  height: 64px;
  background: rgba(0, 68, 255, 0.08);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--signal);
  margin-bottom: 1.25rem;
  flex-shrink: 0;
}
.cat-col {
  background: var(--bone);
  border: 1px solid var(--rule);
  border-radius: 14px;
  padding: 2rem 1.75rem;
  transition: border-color .2s, transform .2s, box-shadow .2s;
  display: block;
  text-decoration: none;
  color: var(--ink);
}
.cat-col:hover {
  border-color: var(--signal);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lift);
}
.cat-col h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.375rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
}
.cat-col h3 .count {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--kraft);
  letter-spacing: 0.06em;
}
.cat-col .cat-lead {
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--steel);
  margin: 0 0 1.25rem;
}
.cat-col ul {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.875rem;
  line-height: 1.85;
  color: var(--ink);
  columns: 1;
}
.cat-col ul li::before {
  content: "→ ";
  color: var(--signal);
  font-weight: 700;
  margin-right: 0.25rem;
}
.cat-col .cat-cta {
  margin-top: 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--signal);
  font-weight: 600;
  font-size: 0.95rem;
}

/* Category page hero (one per main service category) */
.cp-hero {
  background: var(--ink);
  color: var(--bone);
  padding: 6rem 0 4rem;
}
.cp-hero-inner {
  max-width: var(--col-max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 900px) { .cp-hero-inner { grid-template-columns: 1fr; gap: 2rem; } }
.cp-hero .meta {
  color: var(--lime);
}
.cp-hero h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.25rem, 5.5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin: 0 0 1.25rem;
  color: var(--bone);
}
.cp-hero h1 em {
  font-style: normal;
  color: var(--lime);
}
.cp-hero p.lead {
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--steel-2);
  margin: 0 0 2rem;
  max-width: 36rem;
}
.cp-hero-card {
  background: var(--ink-2);
  border: 1px solid var(--rule-dark);
  border-radius: 12px;
  padding: 2rem;
}
.cp-hero-card h4 {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lime);
  margin: 0 0 1rem;
}
.cp-hero-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--steel-2);
}
.cp-hero-card ul li::before {
  content: "·  ";
  color: var(--lime);
  font-weight: 700;
}

/* Sub-service section card on category pages */
.ss-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  padding: 4rem 0;
  border-bottom: 1px solid var(--rule);
  align-items: center;
}
@media (max-width: 900px) { .ss-row { grid-template-columns: 1fr; gap: 1.5rem; } }
.ss-row:last-child { border-bottom: none; }
.ss-row.reverse > div:first-child { order: 2; }
@media (max-width: 900px) { .ss-row.reverse > div:first-child { order: 0; } }
.ss-row h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.5rem, 2.5vw, 1.875rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 1rem;
  line-height: 1.15;
}
.ss-row .ss-meta {
  display: block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--signal);
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.ss-row p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink);
  margin: 0 0 1rem;
}
.ss-row ul {
  margin: 0.75rem 0 0;
  padding-left: 1.25rem;
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--ink);
}
.ss-row .ss-img {
  background: var(--paper);
  border: 1px dashed var(--steel);
  border-radius: 10px;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--steel);
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
  padding: 1rem;
}

/* Brand badge row on category pages */
.brand-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
  align-items: center;
  padding: 2.5rem 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  margin: 3rem 0;
}
@media (max-width: 900px) { .brand-row { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 500px) { .brand-row { grid-template-columns: repeat(2, 1fr); } }
.brand-row .brand-cell {
  text-align: center;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink);
  padding: 0.75rem 0.5rem;
  border-radius: 8px;
  background: var(--paper);
  letter-spacing: -0.01em;
}
.brand-row-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--kraft);
  text-align: center;
  margin: 0 0 1.25rem;
  font-weight: 700;
}

/* === END · COMPETITIVE REBUILD CSS === */


/* === STAGE 9 · LOGOS + WATERMARK · 13/05/2026 === */

/* Brand cells now hold a favicon image + name */
.brand-cell {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  text-align: center;
}
.brand-cell img {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  border-radius: 4px;
  object-fit: contain;
  background: transparent;
}
.brand-cell span {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  letter-spacing: -0.01em;
}

/* WaterMark certification block (footer) */
.wm-block {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--ink-2);
  border: 1px solid var(--rule-dark);
  border-radius: 10px;
  padding: 1rem 1.25rem;
  margin: 1.5rem 0 1rem;
}
.wm-block .wm-symbol {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: var(--bone);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 900;
  font-size: 1.5rem;
  flex-shrink: 0;
  letter-spacing: -0.04em;
  border: 2px solid var(--lime);
}
.wm-block .wm-text {
  flex: 1;
}
.wm-block .wm-text strong {
  display: block;
  color: var(--bone);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  margin-bottom: 0.125rem;
  letter-spacing: -0.005em;
}
.wm-block .wm-text span {
  display: block;
  color: var(--steel-2);
  font-size: 0.75rem;
  line-height: 1.4;
}
.wm-block .wm-meta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lime);
  font-weight: 700;
  white-space: nowrap;
}
@media (max-width: 600px) {
  .wm-block { flex-direction: column; align-items: flex-start; text-align: left; }
  .wm-block .wm-meta { margin-top: 0.25rem; }
}

/* === END STAGE 9 === */


/* === STAGE 10 · SUB-SERVICE PHOTOGRAPHY === */
.ss-row .ss-img {
  padding: 0;
  border: 1px solid var(--rule);
  background: var(--paper);
  overflow: hidden;
}
.ss-row .ss-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 9px;
}
/* === END STAGE 10 === */


/* === STAGE 16 · REAL CERT LOGO IMAGES === */
.wm-block {
  flex-direction: column;
  align-items: stretch;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
}
.wm-block .wm-logos {
  display: flex;
  gap: 1.25rem;
  align-items: center;
  justify-content: flex-start;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--rule-dark);
  padding-bottom: 1rem;
}
.wm-block .wm-logos img {
  height: 44px;
  width: auto;
  max-width: 110px;
  object-fit: contain;
  background: var(--bone);
  padding: 4px 8px;
  border-radius: 6px;
  flex-shrink: 0;
}
.wm-block .wm-text {
  text-align: left;
}
.wm-block .wm-text strong {
  font-size: 0.95rem;
}
.wm-block .wm-text span {
  font-size: 0.8125rem;
  line-height: 1.5;
}
@media (max-width: 600px) {
  .wm-block .wm-logos {
    flex-wrap: wrap;
    gap: 0.75rem;
  }
  .wm-block .wm-logos img {
    height: 36px;
    max-width: 85px;
  }
}
/* === END STAGE 16 === */


/* === STAGE 17 · BRAND LOGOS WITH IMAGES === */
.brand-row .brand-cell {
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.25rem 0.75rem;
  min-height: 88px;
  justify-content: center;
}
.brand-row .brand-cell img {
  width: auto;
  height: 28px;
  max-width: 110px;
  object-fit: contain;
  display: block;
  filter: grayscale(20%);
  transition: filter 0.2s ease-out, transform 0.2s ease-out;
}
.brand-row .brand-cell:hover img {
  filter: grayscale(0%);
  transform: scale(1.04);
}
.brand-row .brand-cell span {
  font-size: 0.72rem;
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--kraft);
  font-weight: 600;
}
/* === END STAGE 17 === */

/* === STAGE 18 · ARCHIVO BLACK DISPLAY HEADINGS === */
/* Swap display headings from Space Grotesk 700 to Archivo Black (single-weight 900) 
   for a much bolder, blacked-out look. Matches the heavy display style Jase wants. */
h1,
.ag-hero h1,
.hero-headline,
.page-hero h1,
.cp-hero h1,
.ag-section-head h2,
.vision-block h2,
.closer h2 {
  font-family: 'Archivo Black', 'Inter', system-ui, sans-serif;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.0;
}
h2 {
  font-family: 'Archivo Black', 'Inter', system-ui, sans-serif;
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 1.05;
}
/* h3/h4 keep Space Grotesk for visual hierarchy variation */
h3, h4 {
  font-family: 'Space Grotesk', 'Inter', system-ui, sans-serif;
  font-weight: 700;
}
/* Em accent inside headings gets electric cobalt + retains heaviness */
h1 em, h2 em, .hero-headline em, .ag-hero h1 em, .cp-hero h1 em,
.ag-section-head h2 em, .vision-block h2 em, .closer h2 em {
  font-family: 'Archivo Black', 'Inter', system-ui, sans-serif;
  font-style: normal;
  font-weight: 900;
}
/* === END STAGE 18 === */

/* === STAGE 20 - ALICE FOUC GUARD === */
/* Belt-and-braces: prevent Alice chat panel from flashing visible on page load
   before its CSS arrives. The widget mounts #alice-chat-root and injects panel
   HTML inside it. Until the widget script applies its initial state (aria-hidden
   or is-open class), we hide the panel via aria-hidden and any clearly-named
   panel container. The widget CSS is now preloaded in <head> too, so this rule
   only kicks in for the brief window between HTML injection and CSS application. */
#alice-chat-root [aria-hidden="true"] {
  visibility: hidden !important;
  pointer-events: none !important;
}
/* When the widget hasn't yet applied is-open to its panel, hide it */
#alice-chat-root > div:not(.is-open):not([class*="bubble"]):not([class*="button"]):not([class*="trigger"]) {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s ease-out;
}
#alice-chat-root > div.is-open {
  opacity: 1;
  pointer-events: auto;
}
/* === END STAGE 20 === */

/* === STAGE 21 · ALICE AVATAR + LAYOUT FIXES === */

/* Alice avatar: Gemini-generated blonde woman headshot */
.alice-avatar {
  background-image: url('assets/alice-avatar.png') !important;
  background-size: cover !important;
  background-position: center top !important;
  background-color: transparent !important;
}
.alice-avatar svg { display: none !important; }

/* Alice bubble: float above sticky call bar (JS adds .sticky-active to body) */
body.sticky-active #alice-bubble {
  bottom: 5.5rem !important;
}
@media (max-width: 480px) {
  body.sticky-active #alice-bubble {
    bottom: 5rem !important;
  }
}

/* Service card photo thumbnail (replaces svc-pill SVG icon) */
.svc-thumb {
  width: calc(100% + 2 * 1.75rem); /* bleed to card edges */
  margin: -2rem -1.75rem 1.125rem;
  height: 110px;
  overflow: hidden;
  flex-shrink: 0;
}
.svc-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease-out;
}
.ag-svc-card:hover .svc-thumb img { transform: scale(1.05); }

/* Mobile 3-column compact service grid */
@media (max-width: 600px) {
  .ag-service-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 0.5rem !important;
  }
  .ag-svc-card {
    padding: 0 0 0.75rem !important;
    border-radius: 8px;
    overflow: hidden;
    align-items: flex-start;
  }
  .svc-thumb {
    width: 100% !important;
    margin: 0 0 0.5rem !important;
    height: 68px;
  }
  .ag-svc-card h3 {
    font-size: 0.68rem !important;
    line-height: 1.2;
    padding: 0 0.375rem;
    margin-bottom: 0;
  }
  /* Hide sub-description on mobile — too cramped */
  .ag-svc-card > p { display: none !important; }
}
/* === END STAGE 21 === */

/* === STAGE 22 · MOBILE LOGO SIZE + ALICE CTA NUCLEAR FIX === */

/* Mobile logo: restore to original (pre-30%-enlarge) dimensions on small screens */
@media (max-width: 600px) {
  .logo-mark {
    gap: 0.875rem;
  }
  .logo-glyph {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1.25rem;
  }
  .logo-text-top {
    font-size: 1.125rem;
  }
  .logo-text-bottom {
    font-size: 0.625rem;
    margin-top: 0.2rem;
  }
}

/* Alice bubble CSS backup (JS inline-important is primary — see script.js).
   Double-specificity chain to beat any !important the widget CSS might have
   when loaded after ours. */
body.sticky-active #alice-chat-root #alice-bubble,
body.sticky-active #alice-bubble {
  bottom: 5.5rem !important;
  transition: bottom 0.3s ease !important;
}
@media (max-width: 480px) {
  body.sticky-active #alice-chat-root #alice-bubble,
  body.sticky-active #alice-bubble {
    bottom: 5rem !important;
  }
}

/* === END STAGE 22 === */

/* === STAGE 23 - SITE ADAPTER PREMIUM PASS - 2026-05-16 === */

/* JS should enhance the page, not hide core content when a library is slow. */
.reveal,
.reveal-stagger > * {
  opacity: 1;
  filter: none;
  transform: none;
}

.premium-hero {
  isolation: isolate;
  min-height: 720px;
  display: flex;
  align-items: center;
  padding: 7.25rem 0 5.5rem;
  background:
    radial-gradient(circle at 78% 18%, rgba(0, 68, 255, 0.28), transparent 32rem),
    radial-gradient(circle at 18% 84%, rgba(181, 247, 60, 0.12), transparent 24rem),
    linear-gradient(135deg, #071024 0%, var(--ink) 46%, #0D1B36 100%);
}
.premium-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.65), transparent 78%);
}
.premium-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  z-index: -1;
  background: linear-gradient(to bottom, transparent, rgba(7,16,36,0.74));
  pointer-events: none;
}
.premium-hero .ag-hero-inner {
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.86fr);
  align-items: center;
  gap: 5rem;
  min-width: 0;
}
.premium-hero-copy {
  max-width: 44rem;
  min-width: 0;
}
.premium-hero-copy > span:first-child,
.premium-kicker {
  display: inline-flex !important;
  align-items: center;
  gap: 0.65rem;
  color: var(--lime) !important;
  font-family: 'JetBrains Mono', ui-monospace, monospace !important;
  font-size: 0.78rem !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase;
  font-weight: 700 !important;
  margin-bottom: 1rem !important;
  padding-bottom: 0.65rem;
  border-bottom: 2px solid rgba(181,247,60,0.42);
}
.premium-hero h1 {
  max-width: 11ch;
  font-size: 5.2rem;
  line-height: 0.98;
  letter-spacing: 0;
  text-wrap: balance;
}
.premium-hero h1 em {
  color: var(--lime);
  text-shadow: 0 0 30px rgba(181,247,60,0.28);
}
.premium-hero p.lead {
  max-width: 36rem;
  color: #C9D4E4;
  font-size: 1.18rem;
}
.premium-hero-actions {
  display: flex;
  gap: 0.875rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}
.premium-proof-strip {
  width: min(100%, 35rem);
  margin-top: 2.4rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(148,163,184,0.22);
  background: rgba(255,255,255,0.045);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.07);
}
.premium-proof-strip div {
  padding: 1rem 1.1rem;
  border-right: 1px solid rgba(148,163,184,0.18);
}
.premium-proof-strip div:last-child { border-right: 0; }
.premium-proof-strip strong {
  display: block;
  color: var(--bone);
  font-family: 'Space Grotesk', 'Inter', system-ui, sans-serif;
  font-size: 1.4rem;
  line-height: 1;
}
.premium-proof-strip span {
  display: block;
  margin-top: 0.38rem;
  color: var(--steel-2);
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 0.66rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.premium-hero-figure {
  position: relative;
  margin: 0;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: 0 40px 90px -34px rgba(0,0,0,0.78);
  background: var(--ink-2);
}
.premium-hero-figure::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to bottom, transparent 46%, rgba(7,16,36,0.42)),
    linear-gradient(135deg, rgba(0,68,255,0.2), transparent 42%);
  pointer-events: none;
}
.premium-hero-figure::after {
  content: "";
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  height: 1px;
  z-index: 2;
  background: linear-gradient(90deg, var(--lime), rgba(255,255,255,0.12), transparent);
}
.premium-hero-figure img {
  aspect-ratio: 4 / 5;
  width: 100%;
  height: auto;
  object-fit: cover;
  transform: scale(1.04);
  filter: contrast(1.04) saturate(0.96) brightness(0.94);
  animation: premium-frame-drift 14s ease-in-out infinite alternate;
}
.premium-hero-figure figcaption {
  z-index: 3;
  left: 1rem;
  right: auto;
  width: fit-content;
  max-width: calc(100% - 2rem);
  background: rgba(7,16,36,0.72);
  border: 1px solid rgba(181,247,60,0.42);
  color: var(--bone);
  backdrop-filter: blur(10px);
}
@keyframes premium-frame-drift {
  from { transform: scale(1.04) translate3d(-0.6%, -0.4%, 0); }
  to   { transform: scale(1.08) translate3d(0.8%, 0.6%, 0); }
}

.premium-trust-bar {
  background: var(--ink-2);
  color: var(--bone);
  border-top: 1px solid var(--rule-dark);
  border-bottom: 1px solid var(--rule-dark);
}
.premium-trust-inner {
  max-width: var(--col-max);
  margin: 0 auto;
  padding: 1rem var(--gutter);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.premium-trust-inner span {
  padding: 0.45rem 1rem;
  border-right: 1px solid rgba(148,163,184,0.18);
  color: #DDE7F5;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
}
.premium-trust-inner span:last-child { border-right: 0; }

.premium-service-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%) !important;
}
.premium-service-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(0,68,255,0.07), transparent 28rem);
  pointer-events: none;
}
.premium-service-section .container {
  position: relative;
}
.premium-service-grid .ag-svc-card,
.premium-service-grid.ag-service-grid .ag-svc-card {
  border-color: rgba(15,23,42,0.08);
  box-shadow: 0 18px 52px -34px rgba(10,20,40,0.36);
}
.premium-service-grid .ag-svc-card:hover,
.premium-service-grid.ag-service-grid .ag-svc-card:hover {
  box-shadow: 0 26px 64px -38px rgba(0,68,255,0.45);
}
.premium-service-grid .svc-thumb {
  height: 132px;
}
.premium-service-grid .ag-svc-card h3 {
  letter-spacing: 0;
}
.premium-service-grid .ag-svc-card p {
  color: #506174 !important;
}

.ag-copy-row {
  gap: 4.5rem;
}
.ag-copy-row > div:not(.ag-img-placeholder) {
  position: relative;
}
.ag-copy-row > div:not(.ag-img-placeholder)::before {
  content: "";
  position: absolute;
  left: -1.35rem;
  top: 0.2rem;
  bottom: 0.35rem;
  width: 3px;
  background: linear-gradient(to bottom, var(--signal), var(--lime));
}
.ag-copy-row h2,
.ag-copy-row h2 em {
  letter-spacing: 0 !important;
}
.ag-copy-row img {
  box-shadow: 0 26px 70px -42px rgba(10,20,40,0.5);
  border: 1px solid rgba(15,23,42,0.08);
}
.ag-copy-row.reverse img {
  transform: translateY(0.35rem);
}
.ag-badges-row {
  gap: 1rem;
}
.ag-badge {
  background: #FFFFFF;
  border: 1px solid rgba(15,23,42,0.08);
  border-radius: 8px;
  box-shadow: 0 16px 44px -34px rgba(10,20,40,0.42);
}
.ag-badge svg {
  color: var(--signal);
  filter: drop-shadow(0 10px 18px rgba(0,68,255,0.16));
}
.ag-cta-strip {
  background:
    radial-gradient(circle at 76% 10%, rgba(181,247,60,0.12), transparent 24rem),
    linear-gradient(135deg, var(--ink) 0%, #0D1B36 100%);
  border-top: 1px solid var(--rule-dark);
  border-bottom: 1px solid var(--rule-dark);
}
.ag-form {
  box-shadow: 0 30px 80px -48px rgba(10,20,40,0.48);
}

.r-agg-stars,
.r-stars {
  animation: none;
  text-shadow: 0 0 8px rgba(255,184,0,0.22);
}

@media (max-width: 1100px) {
  .premium-hero .ag-hero-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .premium-hero {
    min-height: auto;
    padding-top: 6.5rem;
  }
  .premium-hero h1 {
    max-width: 12ch;
    font-size: 4rem;
  }
  .premium-hero-figure {
    max-width: 34rem;
  }
}
@media (max-width: 700px) {
  .top-strip-inner {
    justify-content: flex-start;
  }
  .top-strip-call {
    display: none;
  }
  .premium-hero {
    padding: 4.75rem 0 3rem;
  }
  .premium-hero .ag-hero-inner {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    gap: 2rem;
    min-width: 0;
    width: 100%;
    max-width: 100%;
  }
  .premium-hero-copy {
    width: 100%;
    max-width: 340px;
  }
  .premium-hero-copy > span:first-child,
  .premium-kicker {
    max-width: 100%;
    font-size: 0.68rem !important;
    letter-spacing: 0.08em !important;
    line-height: 1.45;
  }
  .premium-hero h1 {
    max-width: 100%;
    font-size: 2.42rem;
    line-height: 1.04;
    overflow-wrap: normal;
  }
  .premium-hero h1 em {
    display: block;
  }
  .premium-hero p.lead {
    max-width: 100%;
    font-size: 1rem;
    line-height: 1.55;
  }
  .premium-hero-actions {
    width: 100%;
    max-width: 340px;
  }
  .premium-hero-actions .btn {
    width: 100%;
    max-width: 100%;
    min-height: 3.5rem;
  }
  .premium-proof-strip,
  .premium-trust-inner {
    max-width: 340px;
    width: 100%;
    grid-template-columns: 1fr;
  }
  .premium-proof-strip div,
  .premium-trust-inner span {
    border-right: 0;
    border-bottom: 1px solid rgba(148,163,184,0.18);
  }
  .premium-proof-strip div:last-child,
  .premium-trust-inner span:last-child {
    border-bottom: 0;
  }
  .premium-hero-figure {
    width: 100%;
    max-width: 340px;
    max-height: 560px;
  }
  .premium-hero-figure img {
    aspect-ratio: 4 / 3;
  }
  .premium-hero-figure figcaption {
    display: none;
  }
  .premium-trust-inner span {
    text-align: left;
    padding-left: 0;
    padding-right: 0;
  }
  .ag-copy-row {
    gap: 1.75rem;
  }
  .ag-copy-row > div:not(.ag-img-placeholder)::before {
    display: none;
  }
  .premium-service-grid .svc-thumb {
    height: 68px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .premium-hero-figure img {
    animation: none;
    transform: none;
  }
}

@media (max-width: 480px) {
  #alice-chat-root #alice-bubble,
  #alice-bubble {
    right: 1rem !important;
    left: auto !important;
    max-width: calc(100vw - 2rem) !important;
  }
}

/* === END STAGE 23 === */

/* === STAGE 24 - DELLORE PREMIUM HERO REFINEMENT - 2026-05-16 === */

:root {
  --signal: #0B5CAD;
  --signal-2: #084A8E;
  --lime: #FFD400;
}

h1,
.ag-hero h1,
.hero-headline,
.page-hero h1,
.cp-hero h1,
.ag-section-head h2,
.vision-block h2,
.closer h2,
h2,
h1 em,
h2 em,
.hero-headline em,
.ag-hero h1 em,
.cp-hero h1 em,
.ag-section-head h2 em,
.vision-block h2 em,
.closer h2 em {
  font-family: 'League Spartan', 'Archivo Black', 'Inter', system-ui, sans-serif;
  font-weight: 900;
  letter-spacing: -0.012em;
}

.premium-hero {
  min-height: 760px;
  padding: 11.25rem 0 5.25rem;
  background:
    linear-gradient(90deg, rgba(4,12,26,0.94) 0%, rgba(4,12,26,0.84) 32%, rgba(4,12,26,0.42) 70%, rgba(4,12,26,0.7) 100%),
    url('assets/hero-dellore-premium-poster.jpg') center top / cover no-repeat,
    #071024;
}

.premium-hero::before {
  display: none;
}

.premium-hero::after {
  inset: 0;
  height: auto;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(4,12,26,0.24) 0%, transparent 34%, rgba(4,12,26,0.84) 100%),
    radial-gradient(circle at 24% 72%, rgba(255,212,0,0.11), transparent 24rem);
}

.premium-hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  background: url('assets/hero-dellore-premium-poster.jpg') center top / cover no-repeat;
}

.premium-hero-media video {
  display: none;
}

.premium-hero .ag-hero-inner {
  display: block;
  max-width: var(--col-max);
  min-width: 0;
  margin-top: 2.25rem;
}

.premium-hero-copy {
  max-width: 47rem;
}

.premium-hero-copy > span:first-child,
.premium-kicker {
  color: var(--lime) !important;
  border-bottom-color: rgba(255,212,0,0.55);
  background: rgba(7,16,36,0.54);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.premium-hero h1 {
  max-width: 16.5ch;
  margin-bottom: 1.35rem;
  color: #FFFFFF;
  font-size: clamp(3.35rem, 7.4vw, 6.95rem);
  line-height: 0.9;
  text-shadow: none;
}

.premium-hero h1 em {
  color: inherit;
  text-shadow: none;
}

.premium-hero p.lead {
  max-width: 38rem;
  color: #E1E8F3;
}

.premium-hero .btn--signal {
  background: var(--lime);
  color: #071024;
  border-color: var(--lime);
  box-shadow: 0 20px 44px -28px rgba(255,212,0,0.72);
}

.premium-hero .btn--signal:hover {
  background: #FFE15A;
  color: #071024;
}

.premium-proof-strip {
  background: rgba(7,16,36,0.68);
  border-color: rgba(255,255,255,0.18);
  backdrop-filter: blur(16px);
}

.premium-proof-strip strong {
  font-family: 'League Spartan', 'Archivo Black', 'Inter', system-ui, sans-serif;
}

.premium-trust-bar {
  background: #0A1B36;
}

.alice-avatar,
.alice-face {
  background-image: url('assets/alice-avatar-face.png') !important;
  background-size: cover !important;
  background-position: center top !important;
  background-color: transparent !important;
}

.alice-face {
  display: inline-block;
  visibility: visible !important;
  width: 2rem;
  height: 2rem;
  margin-right: 0;
  flex: 0 0 auto;
  border: 2px solid #FFFFFF;
  border-radius: 999px;
  box-shadow: 0 8px 20px -12px rgba(0,0,0,0.55);
  vertical-align: middle;
}

#alice-chat-root .alice-face,
#alice-bubble .alice-face {
  visibility: visible !important;
}

.alice-avatar svg,
.alice-face svg {
  display: none !important;
}

#alice-chat-root #alice-bubble,
#alice-bubble {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0.45rem !important;
  background: var(--lime) !important;
  color: #071024 !important;
  border: 1px solid rgba(255,255,255,0.55) !important;
  box-shadow:
    0 0 0 1px rgba(255,212,0,0.35),
    0 0 26px rgba(255,212,0,0.55),
    0 18px 42px -24px rgba(7,16,36,0.72) !important;
}

#alice-chat-root #alice-bubble > svg,
#alice-bubble > svg {
  display: none !important;
}

#alice-chat-root #alice-bubble *,
#alice-bubble * {
  color: #071024 !important;
}

.nav-links .btn--sm {
  min-width: 9.65rem;
  justify-content: center;
  padding-left: 1.15rem;
  padding-right: 1.15rem;
  white-space: nowrap;
}

#alice-chat-root #alice-bubble::before,
#alice-bubble::before {
  content: none !important;
}

@media (max-width: 1100px) {
  .premium-hero {
    min-height: 700px;
    padding-top: 9rem;
  }

  .premium-hero .ag-hero-inner {
    margin-top: 1rem;
  }

  .premium-hero h1 {
    max-width: 15.5ch;
    font-size: clamp(3rem, 9vw, 5.2rem);
  }
}

@media (max-width: 700px) {
  .premium-hero {
    min-height: 760px;
    padding: 6.25rem 0 4.25rem;
    background:
      linear-gradient(90deg, rgba(4,12,26,0.92) 0%, rgba(4,12,26,0.74) 56%, rgba(4,12,26,0.38) 100%),
      url('assets/hero-dellore-premium-mobile.jpg') center top / cover no-repeat,
      #071024;
  }

  .premium-hero-media {
    background: url('assets/hero-dellore-premium-mobile.jpg') center top / cover no-repeat;
  }

  .premium-hero-media video {
    display: none;
  }

  .premium-hero::after {
    background:
      linear-gradient(180deg, rgba(4,12,26,0.08) 0%, transparent 34%, rgba(4,12,26,0.86) 100%);
  }

  .premium-hero-copy {
    max-width: 360px;
  }

  .premium-hero h1 {
    max-width: 11.5ch;
    font-size: clamp(2.7rem, 14vw, 4rem);
    line-height: 0.92;
  }

  .premium-hero-actions,
  .premium-proof-strip,
  .premium-trust-inner {
    max-width: 360px;
  }

  .premium-hero-actions {
    padding-bottom: 5.25rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .premium-hero-media video {
    display: none;
  }
}

/* === END STAGE 24 === */


/* === STAGE 26 - BRAND LOGO STANDOUT RULE - 2026-05-16 === */
.logo-glyph {
  background: var(--lime) !important;
  color: #071024 !important;
  box-shadow:
    0 0 0 1px rgba(255,212,0,0.42),
    0 14px 34px -18px rgba(255,212,0,0.82);
}
.logo-mark:hover .logo-glyph {
  background: #FFE15A !important;
}
/* === END STAGE 26 === */

/* === STAGE 27 - FINAL TRADIE TEMPLATE POLISH - 2026-05-16 === */
.logo-text-top {
  font-size: 1.9rem;
  font-weight: 850;
  letter-spacing: -0.025em;
}

.logo-text-bottom {
  font-size: 0.86rem;
  letter-spacing: 0.18em;
}

.premium-proof-strip strong,
.hero-stats .stat-num,
.hero-stats .stat-num em {
  color: var(--lime) !important;
  text-shadow: 0 0 18px rgba(255,212,0,0.22);
}

.owner-pill {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.55rem 0.75rem;
  max-width: min(100%, 44rem);
  background: rgba(17,32,63,0.92);
  border: 1px solid rgba(255,212,0,0.22);
  border-radius: 999px;
  padding: 0.58rem 1.15rem;
  margin: -2.35rem 0 2.4rem;
  color: var(--steel-2);
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  line-height: 1.35;
  text-transform: uppercase;
}

.owner-pill .owner-dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: var(--lime);
  box-shadow: 0 0 18px rgba(255,212,0,0.55);
  flex: 0 0 auto;
}

.owner-pill strong {
  color: var(--bone);
  font-weight: 800;
}

.skyline-band img {
  width: 100%;
  min-width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
}

.brand-showcase {
  padding: 5rem 0;
  background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
  border-top: 1px solid var(--rule);
}

.brand-showcase .container {
  max-width: 64rem;
}

.brand-showcase .brand-row {
  margin: 2.25rem 0 0;
  padding: 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.brand-showcase .brand-cell {
  min-height: 116px;
  background: #F3F6FA;
  border-radius: 10px;
  box-shadow: 0 16px 44px -36px rgba(10,20,40,0.42);
}

.brand-showcase .brand-cell img {
  height: 34px;
  max-width: 132px;
  filter: none;
}

@media (max-width: 700px) {
  .logo-glyph {
    width: 3rem;
    height: 3rem;
    font-size: 1.45rem;
  }

  .logo-text-top {
    font-size: 1.45rem;
  }

  .logo-text-bottom {
    font-size: 0.66rem;
    letter-spacing: 0.16em;
  }

  .owner-pill {
    display: flex;
    width: 100%;
    border-radius: 1.25rem;
    padding: 0.72rem 1rem;
    margin: -2.4rem 0 2.25rem;
    font-size: 0.66rem;
    letter-spacing: 0.09em;
  }

  body.sticky-active #alice-chat-root #alice-bubble,
  body.sticky-active #alice-bubble {
    bottom: 7.25rem !important;
  }

  .brand-showcase {
    padding: 4rem 0;
  }

  .brand-showcase .brand-cell {
    min-height: 98px;
  }
}
/* === END STAGE 27 === */
