/* ==========================================================================
   aiangel — shared design system
   Dark navy + gold is the signature. Sections alternate with warm off-white
   so long reading stays comfortable. Everything works without JavaScript.
   ========================================================================== */

@font-face { font-family: "Inter"; font-style: normal; font-weight: 400 700; font-display: swap; src: url("/assets/fonts/inter-var.woff2") format("woff2"); }
@font-face { font-family: "Poppins"; font-style: normal; font-weight: 500; font-display: swap; src: url("/assets/fonts/poppins-500.woff2") format("woff2"); }
@font-face { font-family: "Poppins"; font-style: normal; font-weight: 600; font-display: swap; src: url("/assets/fonts/poppins-600.woff2") format("woff2"); }
@font-face { font-family: "Poppins"; font-style: normal; font-weight: 700; font-display: swap; src: url("/assets/fonts/poppins-700.woff2") format("woff2"); }

/* ---------- Tokens ---------- */
:root {
  /* Brand */
  --bg: #05070F;
  --bg2: #090D1A;
  --bg3: #0D1226;
  --gold: #C9A84C;
  --gold2: #F0D080;
  --white: #EEF2FF;
  --muted: #7B85A8;            /* non-essential text only (5.5:1 on --bg) */
  --border: rgba(201, 168, 76, 0.18);

  /* Readable secondary text on dark (11:1 on --bg) */
  --text-soft: #B8C0DC;

  /* Light surface set (WCAG: ink 17:1, ink-soft 9:1, gold-ink 5.8:1 on --surface) */
  --surface: #F7F4EC;
  --surface2: #EFEADD;
  --ink: #0B1020;
  --ink-soft: #39425E;
  --gold-ink: #7A5A0C;

  /* Logo blue, used only in the wordmark */
  --logo-blue: #3DA9F5;

  /* Per-page mood glow (overridden on industry pages) */
  --mood: rgba(201, 168, 76, 0.16);

  /* Type */
  --font-h: "Poppins", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-b: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --fs-body: clamp(1.0625rem, 1.02rem + 0.2vw, 1.125rem);   /* 17 → 18px */
  --fs-lead: clamp(1.125rem, 1.04rem + 0.45vw, 1.375rem);
  --fs-small: 0.9375rem;                                    /* 15px, secondary only */
  --fs-h1: clamp(2.5rem, 1.55rem + 4.3vw, 5.25rem);
  --fs-h2: clamp(2rem, 1.4rem + 2.6vw, 3.5rem);
  --fs-h3: clamp(1.3rem, 1.15rem + 0.7vw, 1.75rem);

  /* Layout */
  --max: 1280px;
  --gutter: clamp(20px, 5vw, 48px);
  --gap: clamp(16px, 2.2vw, 32px);
  --space-sec: clamp(88px, 10.5vw, 152px);
  --header-h: 76px;
  --radius: 18px;
  --radius-sm: 12px;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-soft: 0 1px 2px rgba(11, 16, 32, 0.05), 0 12px 40px -12px rgba(11, 16, 32, 0.18);
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 20px); overflow-x: clip; }
body {
  margin: 0; background: var(--bg); color: var(--white);
  font: 400 var(--fs-body) / 1.65 var(--font-b);
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
  overflow-x: clip; min-height: 100vh;
}
img, svg, video, canvas { display: block; max-width: 100%; }
img { height: auto; }
h1, h2, h3, h4, p, ul, ol, figure, blockquote { margin: 0; }
ul, ol { padding: 0; list-style: none; }
a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: 0.18em; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; }
::selection { background: var(--gold); color: var(--bg); }

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

/* Focus: always visible, on dark and light */
:focus-visible { outline: 3px solid var(--gold2); outline-offset: 3px; border-radius: 4px; }
.sec--light :focus-visible, .form-card :focus-visible { outline-color: #1B3FD1; }

.sr-only { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap; }
.skip-link { position: fixed; left: 16px; top: -80px; z-index: 10000; background: var(--gold2); color: var(--bg); font-weight: 600; padding: 14px 20px; border-radius: 12px; text-decoration: none; transition: top 0.2s; }
.skip-link:focus { top: 16px; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: calc(var(--max) + var(--gutter) * 2); margin-inline: auto; padding-inline: var(--gutter); }
.grid { display: grid; grid-template-columns: minmax(0, 1fr); gap: var(--gap); }
@media (min-width: 900px) {
  .grid { grid-template-columns: repeat(12, minmax(0, 1fr)); }
  .col-4 { grid-column: span 4; } .col-5 { grid-column: span 5; } .col-6 { grid-column: span 6; }
  .col-7 { grid-column: span 7; } .col-8 { grid-column: span 8; } .col-12 { grid-column: 1 / -1; }
  .start-8 { grid-column-start: 8; } .start-7 { grid-column-start: 7; } .start-6 { grid-column-start: 6; }
}

/* Section theming: components read the --c-* variables */
.sec { position: relative; padding-block: var(--space-sec); background: var(--c-bg); color: var(--c-text); }
.sec--dark  { --c-bg: var(--bg);  --c-text: var(--white); --c-soft: var(--text-soft); --c-accent: var(--gold); --c-accent-strong: var(--gold2); --c-line: var(--border); --c-card: rgba(255, 255, 255, 0.035); --c-card-hover: rgba(255, 255, 255, 0.06); }
.sec--dark2 { --c-bg: var(--bg2); --c-text: var(--white); --c-soft: var(--text-soft); --c-accent: var(--gold); --c-accent-strong: var(--gold2); --c-line: var(--border); --c-card: rgba(255, 255, 255, 0.035); --c-card-hover: rgba(255, 255, 255, 0.06); }
.sec--light { --c-bg: var(--surface);  --c-text: var(--ink); --c-soft: var(--ink-soft); --c-accent: var(--gold-ink); --c-accent-strong: var(--gold-ink); --c-line: rgba(11, 16, 32, 0.12); --c-card: #fff; --c-card-hover: #fff; }
.sec--light2 { --c-bg: var(--surface2); --c-text: var(--ink); --c-soft: var(--ink-soft); --c-accent: var(--gold-ink); --c-accent-strong: var(--gold-ink); --c-line: rgba(11, 16, 32, 0.12); --c-card: #fff; --c-card-hover: #fff; }
.sec--hair-top { border-top: 1px solid var(--c-line); }

/* ---------- Type ---------- */
h1, h2, h3, h4 { font-family: var(--font-h); font-weight: 600; letter-spacing: -0.03em; line-height: 1.08; text-wrap: balance; }
h1 { font-size: var(--fs-h1); font-weight: 700; letter-spacing: -0.04em; line-height: 1.02; }
h2 { font-size: var(--fs-h2); letter-spacing: -0.035em; }
h3 { font-size: var(--fs-h3); letter-spacing: -0.02em; line-height: 1.2; }
p { text-wrap: pretty; }
.lead { font-size: var(--fs-lead); line-height: 1.55; color: var(--c-soft); max-width: 40em; }
.soft { color: var(--c-soft); }
.small { font-size: var(--fs-small); }
.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font: 600 0.9375rem / 1.2 var(--font-b); letter-spacing: 0.14em; text-transform: uppercase; color: var(--c-accent);
  margin-bottom: 22px;
}
.eyebrow::before { content: ""; width: 28px; height: 1px; background: currentColor; opacity: 0.7; }
.accent { color: var(--c-accent-strong, var(--gold2)); }
.serif-italic { font-family: Georgia, "Times New Roman", serif; font-style: italic; font-weight: 400; letter-spacing: -0.01em; }

.sec-head { max-width: 46rem; margin-bottom: clamp(44px, 6vw, 80px); }
.sec-head h2 + .lead, .sec-head h2 + p { margin-top: 22px; }
.sec-head .price-note, .cta__copy .price-note { margin-top: 20px; }
.hero .lead + .btn-row { margin-top: 0; }
.sec-head--split { max-width: none; }

/* The single reusable price line (edit / remove in _src/site.mjs) */
.price-note { font-size: var(--fs-small); color: var(--c-soft, var(--text-soft)); display: flex; align-items: center; gap: 10px; }
.price-note::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--c-accent, var(--gold)); flex: none; }

/* ---------- Icons ---------- */
.icon { width: 1.25em; height: 1.25em; flex: none; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: linear-gradient(135deg, var(--gold), var(--gold2)); --btn-fg: var(--bg); --btn-bd: transparent;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 52px; padding: 0 28px; border-radius: 999px;
  background: var(--btn-bg); color: var(--btn-fg); border: 1px solid var(--btn-bd);
  font: 600 1.0625rem / 1 var(--font-b); text-decoration: none; letter-spacing: -0.005em; white-space: nowrap;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s, border-color 0.3s, color 0.3s;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 12px 32px -8px rgba(201, 168, 76, 0.55); }
.btn:active { transform: translateY(0); }
.btn--ghost { --btn-bg: transparent; --btn-fg: var(--white); --btn-bd: rgba(238, 242, 255, 0.35); }
.btn--ghost:hover { border-color: var(--gold2); color: var(--gold2); box-shadow: none; background: rgba(201, 168, 76, 0.08); }
.sec--light .btn--ghost, .sec--light2 .btn--ghost { --btn-fg: var(--ink); --btn-bd: rgba(11, 16, 32, 0.35); }
.sec--light .btn--ghost:hover, .sec--light2 .btn--ghost:hover { border-color: var(--ink); color: var(--ink); background: rgba(11, 16, 32, 0.05); }
.btn--sm { min-height: 48px; padding: 0 22px; font-size: 1rem; }
.btn .icon { width: 1.1em; height: 1.1em; transition: transform 0.3s var(--ease); }
.btn:hover .icon-arrow { transform: translateX(3px); }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

.link-arrow { display: inline-flex; align-items: center; gap: 8px; min-height: 48px; font-weight: 600; text-decoration: none; color: var(--c-accent-strong, var(--gold2)); }
.link-arrow .icon { transition: transform 0.3s var(--ease); }
.link-arrow:hover .icon { transform: translateX(4px); }
.link-arrow:hover { text-decoration: underline; }

/* ---------- Header ---------- */
.site-header { position: fixed; inset: 0 0 auto 0; z-index: 1000; background: rgba(5, 7, 15, 0.94); border-bottom: 1px solid var(--border); transition: background 0.4s, backdrop-filter 0.4s, border-color 0.4s; }
@supports (backdrop-filter: blur(1px)) { .site-header { background: rgba(5, 7, 15, 0.82); backdrop-filter: blur(16px) saturate(140%); -webkit-backdrop-filter: blur(16px) saturate(140%); } }
html.js .site-header[data-top="true"] { background: transparent; border-color: transparent; backdrop-filter: none; -webkit-backdrop-filter: none; }
.site-header__inner { display: flex; align-items: center; gap: 16px; min-height: var(--header-h); flex-wrap: wrap; }
.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; min-height: 48px; margin-right: auto; }
.brand img { width: auto; height: 46px; }
.brand__word { font: 700 1.25rem / 1 var(--font-h); letter-spacing: 0.06em; color: var(--gold2); }
.brand__word b { color: var(--logo-blue); font-weight: 700; margin-right: 0.28em; }

.nav-toggle, .header-call { display: none; }
.site-header .nav { flex-basis: 100%; order: 5; padding-bottom: 16px; }
.nav__list { display: flex; flex-direction: column; gap: 4px; }
.nav__link, .nav__toggle { display: flex; align-items: center; gap: 8px; min-height: 48px; padding: 0 14px; border-radius: 12px; color: var(--white); text-decoration: none; font: 500 1.0625rem / 1 var(--font-b); background: none; border: 0; }
.nav__link:hover, .nav__toggle:hover { color: var(--gold2); }
.nav__link[aria-current="page"], .nav__parent[data-current="true"] > .nav__link { color: var(--gold2); }
.nav__menu { display: flex; flex-direction: column; margin: 0 0 6px 14px; padding-left: 14px; border-left: 1px solid var(--border); }
.nav__menu a { display: block; padding: 10px 14px; border-radius: 10px; text-decoration: none; }
.nav__menu a:hover { background: rgba(201, 168, 76, 0.1); }
.nav__menu strong { display: block; font-weight: 600; font-size: 1.0625rem; }
.nav__menu span { display: block; font-size: var(--fs-small); color: var(--text-soft); }
.nav__toggle { display: none; }
.nav__cta { display: none; }
.nav__phone { display: none; }
.nav__mobile-extra { display: flex; flex-direction: column; gap: 12px; padding: 16px 14px 8px; }

/* JS on, small screens: slide-down panel */
@media (max-width: 1079px) {
  html.js .site-header .nav { position: fixed; inset: var(--header-h) 0 0 0; background: var(--bg); overflow-y: auto; padding: 12px var(--gutter) 120px; display: none; flex-basis: auto; }
  html.js.nav-open .site-header .nav { display: block; }
  html.js.nav-open { overflow: hidden; }
  html.js .site-header[data-top="true"] { background: transparent; }
  /* backdrop-filter would make the header the containing block for the fixed panel, so drop it while open */
  html.js.nav-open .site-header { background: var(--bg); backdrop-filter: none; -webkit-backdrop-filter: none; }
  .nav-toggle, .header-call { display: inline-flex; align-items: center; justify-content: center; width: 48px; height: 48px; border-radius: 12px; border: 1px solid var(--border); background: transparent; color: var(--white); text-decoration: none; }
  html:not(.js) .nav-toggle { display: none; }
  .nav-toggle .icon { width: 24px; height: 24px; }
  .nav-toggle .i-close { display: none; }
  html.nav-open .nav-toggle .i-close { display: block; }
  html.nav-open .nav-toggle .i-menu { display: none; }
  .nav__list > li > .nav__link, .nav__parent > .nav__link { font-size: 1.25rem; font-family: var(--font-h); font-weight: 500; min-height: 56px; }
}

/* Desktop nav */
@media (min-width: 1080px) {
  .site-header__inner { flex-wrap: nowrap; gap: 28px; }
  .site-header .nav { flex-basis: auto; order: 0; padding: 0; margin-left: auto; display: flex; align-items: center; gap: 8px; }
  .nav__list { flex-direction: row; align-items: center; gap: 2px; }
  .nav__link, .nav__toggle { padding: 0 14px; font-size: 1rem; }
  .nav__parent { position: relative; display: flex; align-items: center; }
  .nav__toggle { display: inline-flex; padding: 0 8px 0 0; margin-left: -10px; }
  .nav__toggle .icon { width: 16px; height: 16px; transition: transform 0.3s var(--ease); }
  .nav__parent:hover .nav__toggle .icon, .nav__toggle[aria-expanded="true"] .icon { transform: rotate(180deg); }
  .nav__menu {
    position: absolute; top: calc(100% - 4px); left: -8px; min-width: 300px; margin: 0; padding: 8px;
    background: rgba(9, 13, 26, 0.97); border: 1px solid var(--border); border-radius: 16px;
    box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.7);
    opacity: 0; visibility: hidden; transform: translateY(8px); transition: opacity 0.25s var(--ease), transform 0.25s var(--ease), visibility 0.25s;
  }
  .nav__parent:hover > .nav__menu, .nav__parent:focus-within > .nav__menu, .nav__parent.is-open > .nav__menu { opacity: 1; visibility: visible; transform: none; }
  .nav__mobile-extra { display: none; }
  .nav__phone { display: inline-flex; align-items: center; gap: 8px; min-height: 48px; padding: 0 12px; font-weight: 600; text-decoration: none; white-space: nowrap; color: var(--white); }
  .nav__phone:hover { color: var(--gold2); }
  .nav__cta { display: inline-flex; }
  .header-call, .nav-toggle { display: none; }
}

/* ---------- Sticky mobile call / quote bar ---------- */
.mobile-bar { display: none; }
@media (max-width: 767px) {
  .mobile-bar { display: grid; grid-template-columns: 1fr 1.5fr; gap: 10px; position: fixed; inset: auto 0 0 0; z-index: 950; padding: 10px 14px calc(10px + env(safe-area-inset-bottom)); background: rgba(5, 7, 15, 0.94); border-top: 1px solid var(--border); transition: transform 0.35s var(--ease); }
  @supports (backdrop-filter: blur(1px)) { .mobile-bar { background: rgba(5, 7, 15, 0.82); backdrop-filter: blur(14px); } }
  .mobile-bar .btn { min-height: 52px; padding: 0 14px; font-size: 1rem; }
  .mobile-bar.is-hidden { transform: translateY(110%); }
  body { padding-bottom: 76px; }
}

/* ---------- Floating WhatsApp (left) + call (right) ---------- */
.float-btn { position: fixed; bottom: 24px; z-index: 940; width: 58px; height: 58px; border-radius: 50%; display: grid; place-items: center; text-decoration: none; box-shadow: 0 10px 28px -6px rgba(0, 0, 0, 0.55); transition: transform 0.3s var(--ease), bottom 0.35s var(--ease), box-shadow 0.3s; }
.float-btn:hover { transform: translateY(-3px) scale(1.04); box-shadow: 0 14px 34px -6px rgba(0, 0, 0, 0.65); }
.float-btn svg { width: 28px; height: 28px; }
.float-btn .icon { width: 26px; height: 26px; stroke-width: 2; }
.float-btn--wa { left: 20px; background: #128C7E; color: #fff; }
.float-btn--call { right: 20px; background: linear-gradient(135deg, var(--gold), var(--gold2)); color: var(--bg); }
.float-btn:focus-visible { outline-color: #fff; box-shadow: 0 0 0 3px var(--bg), 0 0 0 6px var(--gold2); }
@media (max-width: 767px) {
  .float-btn { bottom: 92px; width: 54px; height: 54px; }
  .float-btn--wa { left: 14px; } .float-btn--call { right: 14px; }
  html.bar-hidden .float-btn { bottom: 20px; }
}
@media print { .float-btn { display: none !important; } }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 100vh; min-height: 100svh; display: flex; align-items: center; padding-block: calc(var(--header-h) + 56px) 96px; overflow: hidden; isolation: isolate; }
.hero--inner { min-height: 0; padding-block: calc(var(--header-h) + clamp(56px, 8vw, 110px)) clamp(64px, 8vw, 110px); }
/* Static halo fallback — always there, the WebGL scene sits on top when it can */
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -2;
  background:
    radial-gradient(ellipse 55% 60% at 78% 42%, var(--mood), transparent 65%),
    radial-gradient(ellipse 45% 50% at 12% 96%, rgba(201, 168, 76, 0.07), transparent 65%),
    var(--bg);
}
.hero__halo { position: absolute; z-index: -1; right: max(-8vw, -120px); top: 50%; width: min(64vw, 780px); aspect-ratio: 1; transform: translateY(-50%); pointer-events: none; opacity: 0.9; }
.hero__halo::before, .hero__halo::after { content: ""; position: absolute; border-radius: 50%; }
.hero__halo::before { inset: 22% 6% 40% 6%; border: 1px solid rgba(240, 208, 128, 0.45); box-shadow: 0 0 60px rgba(201, 168, 76, 0.25), inset 0 0 60px rgba(201, 168, 76, 0.1); transform: rotate(-12deg); }
.hero__halo::after { inset: 10%; border: 1px solid rgba(201, 168, 76, 0.12); }
.hero--inner .hero__halo { width: min(52vw, 560px); opacity: 0.6; }
#hero-canvas { position: absolute; inset: 0; z-index: -1; width: 100%; height: 100%; pointer-events: none; opacity: 0; transition: opacity 1.6s ease; }
#hero-canvas.is-live { opacity: 1; }
#hero-canvas.is-live ~ .hero__halo { opacity: 0; transition: opacity 1.6s ease; }
.hero__inner { position: relative; width: 100%; }
.hero__copy { max-width: 62rem; }
.hero h1 { margin-bottom: clamp(22px, 3vw, 34px); }
.hero h1 .accent { color: var(--gold2); }
.hero .lead { color: var(--text-soft); max-width: 36em; margin-bottom: 36px; }
.hero .btn-row { margin-bottom: 26px; }
.hero__meta { display: flex; flex-wrap: wrap; align-items: center; gap: 12px 28px; }
.hero__phone { display: inline-flex; align-items: center; gap: 10px; min-height: 48px; font-weight: 600; text-decoration: none; }
.hero__phone:hover { color: var(--gold2); }
.hero-ctrl { position: absolute; right: calc(var(--gutter) + 72px); bottom: 32px; z-index: 3; display: none; align-items: center; gap: 8px; min-height: 48px; padding: 0 16px; border-radius: 999px; border: 1px solid var(--border); background: rgba(5, 7, 15, 0.6); color: var(--text-soft); font-size: var(--fs-small); }
.hero-ctrl:hover { color: var(--white); border-color: var(--gold); }
.hero-ctrl.is-ready { display: inline-flex; }
@media (max-width: 767px) {
  .hero-ctrl { display: none !important; }
  .hero { padding-bottom: 72px; }
  .hero__halo { top: auto; bottom: -8%; right: -45vw; width: 120vw; transform: none; opacity: 0.55; }
}

/* Hero entrance — pure CSS so it can never leave content hidden */
@media (prefers-reduced-motion: no-preference) {
  .hero .rise { opacity: 0; animation: rise 0.9s var(--ease) both; }
  .hero .rise:nth-child(1) { animation-delay: 0.05s; } .hero .rise:nth-child(2) { animation-delay: 0.15s; }
  .hero .rise:nth-child(3) { animation-delay: 0.3s; }  .hero .rise:nth-child(4) { animation-delay: 0.42s; }
  .hero .rise:nth-child(5) { animation-delay: 0.54s; }
  @keyframes rise { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }
}

/* ---------- Trust strip ---------- */
.trust { padding-block: 26px; }
.trust__list { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 0; }
.trust__list li { display: inline-flex; align-items: center; font: 600 1rem / 1.3 var(--font-b); letter-spacing: 0.01em; color: var(--ink); padding: 8px 0; }
.trust__list li + li::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--gold-ink); margin-inline: clamp(12px, 2.2vw, 28px); flex: none; }
@media (max-width: 640px) {
  .trust__list { display: grid; grid-template-columns: 1fr 1fr; gap: 4px 12px; }
  .trust__list li { padding: 6px 0; }
  .trust__list li::before, .trust__list li + li::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--gold-ink); margin: 0 10px 0 0; flex: none; }
}

/* ---------- Cards & spotlight ---------- */
.card { position: relative; background: var(--c-card); border: 1px solid var(--c-line); border-radius: var(--radius); overflow: hidden; transition: border-color 0.4s, background 0.4s, box-shadow 0.5s; }
.spotlight::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: 0; transition: opacity 0.4s;
  background: radial-gradient(420px circle at var(--mx, 50%) var(--my, 50%), rgba(201, 168, 76, 0.16), transparent 60%);
}
.sec--light .spotlight::before, .sec--light2 .spotlight::before { background: radial-gradient(420px circle at var(--mx, 50%) var(--my, 50%), rgba(201, 168, 76, 0.2), transparent 60%); }
@media (hover: hover) { .spotlight:hover::before { opacity: 1; } .card:hover { border-color: var(--c-accent); } }
.card:focus-within { border-color: var(--c-accent); }

.ticks { display: grid; gap: 12px; }
.ticks li { display: grid; grid-template-columns: 24px 1fr; gap: 12px; align-items: start; color: var(--c-soft); }
.ticks .icon { width: 22px; height: 22px; margin-top: 2px; color: var(--c-accent); stroke-width: 2; }
.sec--dark .ticks li, .sec--dark2 .ticks li { color: var(--white); }
.sec--light .ticks li, .sec--light2 .ticks li { color: var(--ink); }

/* Services */
.svc-grid { display: grid; grid-template-columns: minmax(0, 1fr); gap: var(--gap); }
@media (min-width: 900px) { .svc-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.svc { display: flex; flex-direction: column; padding: clamp(28px, 3vw, 44px); min-height: 100%; }
.svc__num { font: 500 0.9375rem / 1 var(--font-h); letter-spacing: 0.12em; color: var(--c-accent); margin-bottom: 44px; display: flex; align-items: center; justify-content: space-between; }
.svc__num .icon { width: 30px; height: 30px; stroke-width: 1.3; }
.svc h3 { margin-bottom: 14px; }
.svc__pitch { color: var(--c-soft); margin-bottom: 28px; }
.svc .ticks { margin-bottom: 36px; }
.svc .link-arrow { margin-top: auto; }
.svc .stretched::after { content: ""; position: absolute; inset: 0; z-index: 1; }

/* Industries */
.ind-grid { display: grid; grid-template-columns: minmax(0, 1fr); gap: var(--gap); }
@media (min-width: 700px) { .ind-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1100px) { .ind-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.ind { display: flex; flex-direction: column; }
.ind__visual { position: relative; aspect-ratio: 4 / 3; display: grid; place-items: center; overflow: hidden; background: radial-gradient(ellipse at 50% 60%, var(--ind-glow, rgba(201, 168, 76, 0.28)), transparent 70%), linear-gradient(180deg, var(--bg2), var(--bg)); border-bottom: 1px solid var(--c-line); }
.ind__visual svg { width: 78%; height: auto; color: var(--gold2); transition: transform 0.8s var(--ease); }
.ind:hover .ind__visual svg { transform: scale(1.05) rotate(-1deg); }
.ind__body { display: flex; flex-direction: column; flex: 1; padding: clamp(24px, 2.6vw, 36px); }
.ind__body h3 { margin-bottom: 10px; }
.ind__body p { color: var(--c-soft); margin-bottom: 24px; }
.ind__body .link-arrow { margin-top: auto; }
.ind .stretched::after { content: ""; position: absolute; inset: 0; z-index: 1; }
.ind--cleaning { --ind-glow: rgba(96, 205, 190, 0.26); }
.ind--jewellery { --ind-glow: rgba(240, 190, 170, 0.26); }
.ind--tradie { --ind-glow: rgba(236, 160, 70, 0.26); }
.ind--facility { --ind-glow: rgba(120, 165, 235, 0.26); }
.svg-line { fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }

/* ---------- Work: device mockups ---------- */
.work-grid { display: grid; grid-template-columns: minmax(0, 1fr); gap: clamp(40px, 5vw, 72px) var(--gap); }
@media (min-width: 900px) { .work-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.project { display: flex; flex-direction: column; gap: 26px; }
.stage { position: relative; padding: 8% 6% 12% 4%; border-radius: var(--radius); background: radial-gradient(ellipse at 50% 100%, rgba(201, 168, 76, 0.16), transparent 70%), linear-gradient(180deg, #0C1226, #05070F); border: 1px solid var(--border); overflow: hidden; }
.laptop { position: relative; width: 88%; }
.laptop__screen { position: relative; aspect-ratio: 16 / 10; border-radius: 10px 10px 4px 4px; background: #000; border: 6px solid #1B2033; border-bottom-width: 8px; overflow: hidden; box-shadow: 0 30px 60px -24px rgba(0, 0, 0, 0.8); }
.laptop__screen img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.laptop__base { height: 12px; margin-inline: -4%; border-radius: 0 0 14px 14px; background: linear-gradient(#2A3048, #141827); position: relative; }
.laptop__base::after { content: ""; position: absolute; left: 50%; top: 0; width: 16%; height: 4px; transform: translateX(-50%); border-radius: 0 0 6px 6px; background: #0B0E19; }
.phone { position: absolute; right: 5%; bottom: 7%; width: 20%; min-width: 74px; aspect-ratio: 9 / 19; border-radius: 16px; background: #000; border: 4px solid #1B2033; overflow: hidden; box-shadow: 0 24px 44px -12px rgba(0, 0, 0, 0.85); }
.phone img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.phone::before { content: ""; position: absolute; top: 4px; left: 50%; width: 26%; height: 4px; border-radius: 4px; background: #000; transform: translateX(-50%); z-index: 2; }
.project__tag { display: inline-flex; font-size: var(--fs-small); font-weight: 600; letter-spacing: 0.04em; color: var(--c-accent); }
.project h3 { margin: 6px 0 10px; }
.project__what { color: var(--c-soft); }
.project__details { display: grid; gap: 8px; margin: 18px 0 8px; }
.project__details li { position: relative; padding-left: 20px; color: var(--c-soft); font-size: var(--fs-small); }
.project__details li::before { content: ""; position: absolute; left: 0; top: 0.65em; width: 8px; height: 1px; background: var(--c-accent); }
/* Hover-capable screens: the details fade in over the mockup. Touch screens simply show them below. */
.project__media { position: relative; }
@media (hover: hover) and (min-width: 900px) {
  .project--reveal .project__details { position: absolute; inset: 0; margin: 0; padding: 8% 9%; align-content: center; background: linear-gradient(180deg, rgba(5, 7, 15, 0.95), rgba(5, 7, 15, 0.98)); border: 1px solid var(--border); border-radius: var(--radius); opacity: 0; transition: opacity 0.35s var(--ease); pointer-events: none; z-index: 2; }
  .project--reveal .project__details li { color: var(--white); font-size: 1.0625rem; }
  .project--reveal .project__details li::before { background: var(--gold); }
  .project--reveal:hover .project__details, .project--reveal:focus-within .project__details { opacity: 1; }
}
.project--placeholder .stage { display: grid; place-items: center; min-height: 260px; padding: 32px; text-align: center; border-style: dashed; }
.badge { display: inline-flex; align-items: center; gap: 8px; padding: 6px 12px; border-radius: 999px; background: rgba(201, 168, 76, 0.12); border: 1px dashed var(--gold); color: var(--gold2); font: 600 0.875rem / 1.2 var(--font-b); letter-spacing: 0.06em; text-transform: uppercase; }
.sec--light .badge, .sec--light2 .badge { color: var(--gold-ink); border-color: var(--gold-ink); background: rgba(122, 90, 12, 0.08); }

/* Featured work on service / industry pages */
.feature { display: grid; grid-template-columns: minmax(0, 1fr); gap: clamp(32px, 5vw, 72px); align-items: center; }
@media (min-width: 900px) { .feature { grid-template-columns: 1.15fr 1fr; } }
.feature .project__details { margin-top: 22px; }
.feature .btn-row { margin-top: 26px; }

/* ---------- Why ---------- */
.why-grid { display: grid; grid-template-columns: minmax(0, 1fr); gap: 0; border-top: 1px solid var(--c-line); }
@media (min-width: 900px) { .why-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.why { padding: clamp(28px, 3.4vw, 48px) 0; border-bottom: 1px solid var(--c-line); display: grid; grid-template-columns: 56px 1fr; gap: 20px; }
@media (min-width: 900px) { .why:nth-child(odd) { padding-right: clamp(20px, 4vw, 64px); } .why:nth-child(even) { padding-left: clamp(20px, 4vw, 64px); border-left: 1px solid var(--c-line); } }
.why__n { font: 500 0.9375rem / 1.5 var(--font-h); letter-spacing: 0.1em; color: var(--c-accent); padding-top: 6px; }
.why h3 { margin-bottom: 10px; }
.why p { color: var(--c-soft); }

/* ---------- Process ---------- */
/* One track + one gold fill. JS sets --p (0 to 1) as you scroll; without JS every step is simply visible. */
.process__steps { --p: 0; position: relative; display: grid; gap: 0; }
.process__steps::before { content: ""; position: absolute; left: 19px; top: 20px; bottom: 20px; width: 1px; background: var(--c-line); }
.process__fill { position: absolute; left: 19px; top: 20px; width: 1px; height: calc(var(--p) * (100% - 40px)); background: linear-gradient(var(--gold), var(--gold2)); box-shadow: 0 0 12px rgba(201, 168, 76, 0.7); }
.step { position: relative; padding: 0 0 40px 64px; }
.step:last-child { padding-bottom: 0; }
.step__n { position: absolute; left: 0; top: 0; width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; font: 600 0.9375rem / 1 var(--font-h); border: 1px solid var(--c-line); background: var(--c-bg); color: var(--c-accent-strong); transition: background 0.4s, color 0.4s, border-color 0.4s; z-index: 1; }
.step h3 { margin: 6px 0 8px; transition: color 0.4s; }
.step p { color: var(--c-soft); max-width: 34em; }
.step.is-done .step__n, .step.is-active .step__n { background: var(--gold); color: var(--bg); border-color: var(--gold); }
.step.is-active h3 { color: var(--gold2); }
@media (min-width: 1100px) {
  .process__steps { grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 32px; padding-top: 72px; }
  .process__steps::before { left: 0; right: 0; top: 20px; bottom: auto; width: auto; height: 1px; }
  .process__fill { left: 0; top: 20px; height: 1px; width: calc(var(--p) * 100%); background: linear-gradient(90deg, var(--gold), var(--gold2)); }
  .step { padding: 0; }
  .step__n { top: -72px; }
}

/* ---------- About / founder ---------- */
.about { display: grid; grid-template-columns: minmax(0, 1fr); gap: clamp(36px, 6vw, 88px); align-items: center; }
@media (min-width: 900px) { .about { grid-template-columns: 5fr 6fr; } }
.about__photo { position: relative; max-width: 460px; }
.about__photo img { width: 100%; height: auto; aspect-ratio: 1 / 1.05; object-fit: cover; border-radius: 240px 240px var(--radius) var(--radius); border: 1px solid var(--c-line); box-shadow: var(--shadow-soft); background: #4b4e54; }
.about__photo::after { content: ""; position: absolute; inset: 14px -14px -14px 14px; border: 1px solid var(--gold-ink); border-radius: 240px 240px var(--radius) var(--radius); z-index: -1; opacity: 0.5; }
.about__body p + p { margin-top: 18px; }
.about__body h2 { margin-bottom: 28px; }
.about__body .btn-row { margin-top: 32px; }
.about__sig { margin-top: 28px; font-weight: 600; }
.about__sig span { display: block; font-weight: 400; color: var(--c-soft); font-size: var(--fs-small); }

/* ---------- Testimonials ---------- */
.slider { position: relative; }
.slider__track { display: flex; gap: var(--gap); overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; padding: 4px 2px 12px; margin-inline: -2px; }
.slider__track::-webkit-scrollbar { display: none; }
.quote { flex: 0 0 min(88%, 520px); scroll-snap-align: start; padding: clamp(28px, 3vw, 40px); display: flex; flex-direction: column; gap: 24px; }
.quote blockquote { font: 500 clamp(1.15rem, 1.05rem + 0.5vw, 1.4rem) / 1.5 var(--font-h); letter-spacing: -0.015em; }
.quote figcaption { margin-top: auto; color: var(--c-soft); font-size: var(--fs-small); }
.quote .badge { align-self: flex-start; }
.slider__ctrl { display: none; align-items: center; gap: 12px; margin-top: 28px; }
.slider.is-ready .slider__ctrl { display: flex; }
.round-btn { width: 52px; height: 52px; border-radius: 50%; border: 1px solid var(--c-line); background: transparent; color: var(--c-text); display: grid; place-items: center; transition: border-color 0.3s, background 0.3s, color 0.3s; }
.round-btn:hover:not(:disabled) { border-color: var(--gold); color: var(--gold2); background: rgba(201, 168, 76, 0.08); }
.round-btn:disabled { opacity: 0.35; cursor: default; }
.slider__count { color: var(--c-soft); font-size: var(--fs-small); margin-left: 8px; }
.sample-note { display: flex; gap: 12px; align-items: flex-start; padding: 16px 20px; border: 1px dashed var(--gold); border-radius: var(--radius-sm); color: var(--text-soft); font-size: var(--fs-small); max-width: 46rem; margin-bottom: 36px; }
.sample-note strong { color: var(--gold2); }

/* ---------- FAQ ---------- */
.faq { max-width: 52rem; border-top: 1px solid var(--c-line); }
.faq details { border-bottom: 1px solid var(--c-line); }
.faq summary { display: flex; align-items: center; justify-content: space-between; gap: 24px; min-height: 68px; padding: 18px 0; cursor: pointer; list-style: none; font: 600 clamp(1.1rem, 1.02rem + 0.4vw, 1.3rem) / 1.35 var(--font-h); letter-spacing: -0.015em; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary .icon { width: 26px; height: 26px; color: var(--c-accent); transition: transform 0.35s var(--ease); flex: none; }
.faq details[open] summary .icon { transform: rotate(45deg); }
.faq summary:hover { color: var(--c-accent-strong); }
.faq__a { padding: 0 48px 26px 0; color: var(--c-soft); max-width: 44rem; }
.faq__a p + p { margin-top: 12px; }
.faq-split { display: grid; grid-template-columns: minmax(0, 1fr); gap: clamp(32px, 5vw, 80px); }
@media (min-width: 900px) { .faq-split { grid-template-columns: 4fr 7fr; } .faq-split .sec-head h2 { font-size: clamp(1.8rem, 1.35rem + 1.7vw, 2.6rem); }
  .faq-split .sec-head { position: sticky; top: 120px; align-self: start; margin-bottom: 0; } }

/* ---------- CTA + form ---------- */
.cta { overflow: hidden; isolation: isolate; }
.cta::before { content: ""; position: absolute; inset: 0; z-index: -1; background: radial-gradient(ellipse 60% 70% at 15% 30%, rgba(201, 168, 76, 0.13), transparent 70%), radial-gradient(ellipse 50% 60% at 95% 90%, var(--mood), transparent 70%); }
.cta__grid { display: grid; grid-template-columns: minmax(0, 1fr); gap: clamp(40px, 6vw, 88px); align-items: start; }
@media (min-width: 960px) { .cta__grid { grid-template-columns: 5fr 6fr; } }
.cta__copy h2 { margin-bottom: 24px; }
.contact-list { display: grid; gap: 6px; margin-top: 36px; }
.contact-list a, .contact-list div { display: inline-flex; align-items: center; gap: 14px; min-height: 48px; text-decoration: none; font-weight: 500; }
.contact-list a:hover { color: var(--gold2); }
.contact-list .icon { color: var(--gold); }
.form-card { background: var(--surface); color: var(--ink); border-radius: 24px; padding: clamp(24px, 3.4vw, 44px); box-shadow: 0 40px 80px -30px rgba(0, 0, 0, 0.7); border: 1px solid rgba(201, 168, 76, 0.4); }
.form-card h3 { margin-bottom: 6px; }
.form-card .form-lede { color: var(--ink-soft); margin-bottom: 26px; }
.form { display: grid; gap: 20px; }
.form__row { display: grid; grid-template-columns: minmax(0, 1fr); gap: 20px; }
@media (min-width: 640px) { .form__row--2 { grid-template-columns: 1fr 1fr; } }
.field { display: grid; grid-template-columns: minmax(0, 1fr); gap: 8px; min-width: 0; }
.form__row > * { min-width: 0; }
.field label { font-weight: 600; font-size: 1rem; }
.field .opt { font-weight: 400; color: var(--ink-soft); }
.field input, .field select, .field textarea { width: 100%; min-height: 52px; padding: 12px 16px; border-radius: 12px; border: 1.5px solid #8891AB; background: #fff; color: var(--ink); font-size: 1.0625rem; line-height: 1.4; transition: border-color 0.2s, box-shadow 0.2s; }
.field textarea { min-height: 140px; resize: vertical; }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%230B1020' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 44px; }
.field input:hover, .field select:hover, .field textarea:hover { border-color: var(--ink); }
.field input:focus-visible, .field select:focus-visible, .field textarea:focus-visible { outline: 3px solid #1B3FD1; outline-offset: 1px; border-color: #1B3FD1; }
.field .err { display: none; color: #A1121B; font-weight: 500; font-size: var(--fs-small); }
.field.has-error input, .field.has-error select, .field.has-error textarea { border-color: #A1121B; }
.field.has-error .err { display: block; }
.hp { position: absolute !important; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form__foot { display: grid; gap: 14px; }
.form__foot .btn { width: 100%; }
.form__note { color: var(--ink-soft); font-size: var(--fs-small); }
.form__note a { color: var(--ink); }
.form__status { min-height: 1.4em; color: #A1121B; font-weight: 500; }
.form-card .btn:disabled { opacity: 0.7; cursor: progress; transform: none; box-shadow: none; }
.form-success { display: none; text-align: left; padding: 8px 0; }
.form-success h3 { margin: 16px 0 10px; }
.form-success p { color: var(--ink-soft); }
.form-success .tick { width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center; background: var(--gold); color: var(--bg); }
.form-success .tick .icon { width: 28px; height: 28px; stroke-width: 2.4; }
.form-card.is-sent .form-success { display: block; }
.form-card.is-sent .form-wrap { display: none; }

/* ---------- Checklist / feature blocks (inner pages) ---------- */
.checklist { display: grid; grid-template-columns: minmax(0, 1fr); gap: 0 var(--gap); border-top: 1px solid var(--c-line); }
@media (min-width: 900px) { .checklist { grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: clamp(32px, 6vw, 96px); } }
.check { display: grid; grid-template-columns: 34px 1fr; gap: 16px; padding: 26px 0; border-bottom: 1px solid var(--c-line); }
.check .icon { width: 26px; height: 26px; color: var(--c-accent); stroke-width: 2; margin-top: 2px; }
.check h3 { font-size: 1.25rem; margin-bottom: 6px; letter-spacing: -0.015em; }
.check p { color: var(--c-soft); }

.feat-grid { display: grid; grid-template-columns: minmax(0, 1fr); gap: var(--gap); }
@media (min-width: 700px) { .feat-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1000px) { .feat-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.feat { padding: clamp(26px, 2.8vw, 38px); }
.feat .icon { width: 34px; height: 34px; color: var(--c-accent); stroke-width: 1.3; margin-bottom: 26px; }
.feat h3 { font-size: 1.3rem; margin-bottom: 10px; }
.feat p { color: var(--c-soft); }

.split { display: grid; grid-template-columns: minmax(0, 1fr); gap: clamp(28px, 5vw, 72px); }
@media (min-width: 900px) { .split { grid-template-columns: 5fr 6fr; align-items: start; } }
.who { display: grid; gap: 14px; }
.who li { display: flex; gap: 14px; align-items: baseline; padding: 18px 0; border-bottom: 1px solid var(--c-line); font-size: var(--fs-lead); font-family: var(--font-h); font-weight: 500; letter-spacing: -0.015em; }
.who li span { font-family: var(--font-b); font-size: var(--fs-body); font-weight: 400; color: var(--c-soft); letter-spacing: 0; }
.who li:first-child { border-top: 1px solid var(--c-line); }
.who .icon { width: 22px; height: 22px; color: var(--c-accent); transform: translateY(4px); }
.tiles { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
@media (min-width: 640px) { .tiles { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.tile { padding: 20px; display: flex; flex-direction: column; gap: 10px; }
.tile .icon { color: var(--c-accent); width: 28px; height: 28px; stroke-width: 1.4; }
.tile strong { font-family: var(--font-h); font-weight: 600; letter-spacing: -0.01em; line-height: 1.25; }

.breadcrumb { display: flex; flex-wrap: wrap; gap: 4px 10px; font-size: var(--fs-small); color: var(--text-soft); margin-bottom: 28px; }
.breadcrumb a { color: var(--text-soft); text-decoration: none; min-height: 32px; display: inline-flex; align-items: center; }
.breadcrumb a:hover { color: var(--gold2); text-decoration: underline; }
.breadcrumb li { display: inline-flex; align-items: center; min-height: 32px; }
.breadcrumb li + li::before { content: "/"; margin-right: 10px; opacity: 0.5; }

/* ---------- Work page intro ---------- */
.work-note { max-width: 46rem; margin-top: 30px; padding: 16px 20px; border-left: 2px solid var(--gold); color: var(--text-soft); font-size: var(--fs-small); }

/* ---------- Footer ---------- */
.site-footer { background: var(--bg2); border-top: 1px solid var(--border); padding-block: clamp(64px, 8vw, 104px) 32px; color: var(--white); }
.footer__grid { display: grid; grid-template-columns: minmax(0, 1fr); gap: 44px; padding-bottom: 56px; border-bottom: 1px solid var(--border); }
@media (min-width: 700px) { .footer__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1000px) { .footer__grid { grid-template-columns: 1.6fr 1fr 1fr 1fr; } }
.footer__brand p { color: var(--text-soft); margin-top: 20px; max-width: 24em; }
.footer__col h2 { font: 600 0.8125rem / 1 var(--font-b); letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
.footer__col a { display: flex; align-items: center; gap: 10px; min-height: 44px; text-decoration: none; color: var(--white); }
.footer__col a:hover { color: var(--gold2); text-decoration: underline; }
.footer__base { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px 32px; padding-top: 28px; color: var(--text-soft); font-size: var(--fs-small); }
.footer__base a { color: var(--white); }

/* ---------- Optional flourishes (JS adds .fx-*; they never replace real cursors) ---------- */
#cursor-glow { position: fixed; z-index: 9995; left: 0; top: 0; width: 240px; height: 240px; margin: -120px 0 0 -120px; border-radius: 50%; pointer-events: none; background: radial-gradient(circle, rgba(201, 168, 76, 0.12), transparent 65%); opacity: 0; transition: opacity 0.4s; mix-blend-mode: screen; }
#cursor-glow.is-on { opacity: 1; }
.btn[data-magnetic] { will-change: transform; }

/* ---------- Motion safety ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  #cursor-glow, .hero-ctrl { display: none !important; }
}
@media print {
  .site-header, .mobile-bar, .hero-ctrl, #hero-canvas, body::after { display: none !important; }
  .sec { padding-block: 32px; }
}
@media (forced-colors: active) { .btn { border: 1px solid ButtonText; } }

/* ---------- Mood per page ---------- */
body[data-mood="cleaning"]  { --mood: rgba(96, 205, 190, 0.17); }
body[data-mood="jewellery"] { --mood: rgba(240, 190, 170, 0.16); }
body[data-mood="tradie"]    { --mood: rgba(236, 160, 70, 0.17); }
body[data-mood="facility"]  { --mood: rgba(120, 165, 235, 0.17); }

/* Industry hero: copy + illustration */
.ind-hero { display: grid; grid-template-columns: minmax(0, 1fr); gap: clamp(32px, 5vw, 72px); align-items: center; }
.ind-hero__art { color: var(--gold2); max-width: 460px; width: 100%; opacity: 0.95; filter: drop-shadow(0 0 40px var(--mood)); }
.ind-hero__art svg { width: 100%; height: auto; }
@media (min-width: 900px) { .ind-hero { grid-template-columns: 7fr 5fr; } .ind-hero__art { justify-self: end; } }
@media (max-width: 899px) { .ind-hero__art { max-width: 300px; } }

/* Legal / long-form pages */
.prose { max-width: 44rem; }
.prose h2 { font-size: clamp(1.35rem, 1.2rem + 0.6vw, 1.7rem); margin: 2.4em 0 0.6em; letter-spacing: -0.02em; }
.prose h2:first-child { margin-top: 0; }
.prose p, .prose ul { margin-bottom: 1em; color: var(--ink); }
.prose ul { list-style: disc; padding-left: 1.3em; display: grid; gap: 0.5em; }
.prose a { color: #1B3FD1; text-decoration: underline; }
.prose a:hover { color: var(--ink); }

/* Static "how it works" (service pages): always complete, fixed column count */
.process--static::before { display: none; }
.process--static .step__n { background: var(--gold); color: var(--bg); border-color: var(--gold); }
@media (min-width: 1100px) {
  .process--static { grid-template-columns: repeat(var(--steps, 4), minmax(0, 1fr)); }
  .process--static::before { display: block; }
}
.process--static::before { background: var(--gold-ink); opacity: 0.35; }
@media (max-width: 1099px) { .process--static::before { display: block; } }

/* ---------- Industry hub + generated industry pages ---------- */
.callout { max-width: 52rem; margin-bottom: 32px; padding: 18px 22px; border-left: 3px solid var(--gold-ink); background: rgba(122, 90, 12, 0.07); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; color: var(--ink); font-size: var(--fs-small); line-height: 1.6; }
.callout strong { color: var(--gold-ink); }
.rel-h { font-size: var(--fs-h3); margin-bottom: 28px; }
.rel-links { display: grid; grid-template-columns: minmax(0, 1fr); gap: 4px 32px; }
@media (min-width: 700px) { .rel-links { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1000px) { .rel-links { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.rel-links a { display: grid; grid-template-columns: 28px 1fr; gap: 14px; align-items: start; padding: 16px 0; border-bottom: 1px solid var(--c-line); text-decoration: none; min-height: 48px; }
.rel-links a:hover strong { color: var(--gold-ink); text-decoration: underline; }
.rel-links .icon { color: var(--gold-ink); width: 26px; height: 26px; stroke-width: 1.4; margin-top: 2px; }
.rel-links strong { display: block; font-family: var(--font-h); font-weight: 600; letter-spacing: -0.01em; }
.rel-links em { display: block; font-style: normal; color: var(--ink-soft); font-size: var(--fs-small); }
.hub-group + .hub-group { margin-top: clamp(48px, 6vw, 80px); }
.hub-h { font-size: var(--fs-h3); margin-bottom: 22px; padding-bottom: 14px; border-bottom: 1px solid var(--c-line); }
.hub-grid { display: grid; grid-template-columns: minmax(0, 1fr); gap: 16px; }
@media (min-width: 640px) { .hub-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1000px) { .hub-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.hub-card { align-content: start; display: grid; grid-template-columns: 34px 1fr; grid-template-rows: auto auto; column-gap: 16px; row-gap: 4px; padding: 22px 24px; text-decoration: none; height: 100%; }
.hub-card .icon { grid-row: 1 / span 2; width: 32px; height: 32px; color: var(--c-accent); stroke-width: 1.3; margin-top: 2px; }
.hub-card__t { font: 600 1.15rem / 1.3 var(--font-h); letter-spacing: -0.015em; }
.hub-card__p { color: var(--c-soft); font-size: var(--fs-small); }
.hub-card:hover .hub-card__t { color: var(--gold-ink); text-decoration: underline; }
.lead a { color: var(--gold-ink); font-weight: 600; }
