:root {
  --black: #141414;
  --black-soft: #1c1c1c;
  --black-card: #242424;
  --gold: #ffc400;
  --gold-light: #ffd54a;
  --gold-glow: rgba(255, 196, 0, 0.35);
  --on-accent: #141414;
  --whatsapp: #25d366;
  --text: #f3f3f3;
  --text-dark: #1a1a1a;
  --text-muted: #8f8f8f;
  --text-muted-dark: #5a5a5a;
  --bg: #ececec;
  --white: #ffffff;
  --line: #d8d8d8;
  --line-dark: #333333;
  --radius: 4px;
  --radius-lg: 8px;
  --shadow: 0 12px 32px rgba(0, 0, 0, 0.16);
  --font-display: "Oswald", Impact, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
}

html.fonts-system {
  --font-display: Impact, "Arial Narrow", sans-serif;
  --font-body: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  padding-top: 40px;
  overflow-x: hidden;
}

h1, h2, h3 {
  font-weight: 800;
}

/* Privacy page — clear fixed call bar + header */
body.page-legal {
  padding-top: 118px;
}

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

a { color: inherit; }

.container {
  width: min(1160px, 100% - 2.5rem);
  margin-inline: auto;
}

/* Call bar */

.call-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 110;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  min-height: 40px;
  padding: 0.35rem 0.75rem;
  padding-top: max(0.35rem, env(safe-area-inset-top));
  background: var(--gold);
  color: var(--on-accent);
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
}

.call-bar-short { display: none; }

.call-bar-full {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  flex-wrap: wrap;
  justify-content: center;
}

.call-bar strong { font-weight: 800; }

/* Header */

.header {
  position: fixed;
  top: 40px;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(8, 8, 8, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line-dark);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  height: 78px;
  position: relative;
}

.nav-toggle { display: none; }

.menu-toggle,
.header-phone,
.nav-backdrop {
  display: none;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  color: var(--white);
}

.brand-logo {
  height: 58px;
  width: auto;
  border-radius: 8px;
  object-fit: contain;
  box-shadow: 0 0 24px var(--gold-glow);
  transition: filter 0.3s, box-shadow 0.3s;
}

.brand:hover .brand-logo {
  box-shadow: 0 0 28px var(--gold-glow), 0 0 40px rgba(184, 228, 255, 0.25);
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.nav a:not(.btn) {
  font-size: 0.84rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.2s;
}

.nav a:not(.btn):hover { color: var(--gold); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.72rem 1.35rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
  transition: transform 0.2s, background 0.2s, color 0.2s, box-shadow 0.2s;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.btn-lg { padding: 0.95rem 1.7rem; font-size: 0.95rem; }

.btn-primary {
  background: var(--gold);
  color: var(--on-accent);
  box-shadow: 0 8px 28px var(--gold-glow);
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 36px var(--gold-glow);
}

.btn-whatsapp {
  background: var(--whatsapp);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
}

.btn-ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: var(--gold);
}

.btn-light {
  background: var(--white);
  color: var(--black);
}

.btn-light:hover { background: var(--gold-light); }

.btn-outline {
  background: transparent;
  color: var(--text-dark);
  border-color: var(--line);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--black);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.92);
  color: var(--text-dark);
  border-color: transparent;
}

.btn-secondary:hover {
  background: var(--white);
}

/* Hero tunnel (North Lincs Web–style scroll journey) */

.hero-tunnel {
  position: relative;
  background: var(--black);
  color: var(--white);
}

.hero-tunnel-sticky {
  position: relative;
  height: 100svh;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 50% 42%, rgba(255, 196, 0, 0.16) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 10%, rgba(255, 217, 92, 0.1) 0%, transparent 40%),
    linear-gradient(165deg, #171b22 0%, #0e1116 48%, #141820 100%);
}

.tunnel-stage {
  position: absolute;
  inset: 0;
  z-index: 1;
  perspective: 1600px;
  perspective-origin: 50% 42%;
  overflow: hidden;
}

.tunnel-world {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
  pointer-events: none;
  transform-origin: 50% 50%;
}

.tunnel-panel {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(620px, 88vw);
  margin: 0;
  aspect-ratio: 16 / 10;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 196, 0, 0.28);
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.6),
    0 0 44px rgba(255, 196, 0, 0.14);
  background: #050505;
  transform-style: preserve-3d;
  backface-visibility: hidden;
}

.tunnel-panel img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.build-stage {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
  background: #050505;
  isolation: isolate;
}

.build-layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  backface-visibility: hidden;
  transform-style: preserve-3d;
}

.build-layer--bg {
  z-index: 1;
  mix-blend-mode: normal;
}

.build-layer--mid {
  z-index: 2;
  mix-blend-mode: lighten;
}

.build-layer--fg {
  z-index: 3;
  mix-blend-mode: lighten;
}

.tunnel-veil {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 50% 45%, rgba(8, 8, 8, 0.35) 0%, rgba(8, 8, 8, 0.72) 58%, rgba(8, 8, 8, 0.92) 100%);
}

.tunnel-veil::before,
.tunnel-veil::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 7rem;
  pointer-events: none;
}

.tunnel-veil::before {
  top: 0;
  background: linear-gradient(180deg, var(--black), transparent);
}

.tunnel-veil::after {
  bottom: 0;
  background: linear-gradient(0deg, var(--black), transparent);
}

.hero-tunnel-intro {
  position: relative;
  z-index: 5;
  isolation: isolate;
  transform: translateZ(0);
  width: min(720px, 92vw);
  margin: 0 auto;
  padding: 6.5rem 1rem 2rem;
  text-align: center;
  will-change: transform, opacity;
}

.hero-kicker {
  margin-bottom: 1rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
}

.hero-tunnel-intro h1 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 7vw, 4.6rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin-bottom: 1.1rem;
  text-transform: uppercase;
}

.hero-tunnel-intro h1 span {
  display: block;
  color: var(--gold);
  font-size: 0.86em;
  text-shadow: 0 0 32px rgba(255, 196, 0, 0.35);
}

.hero-lead {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.55;
}

.hero-tunnel-intro .hero-lead {
  margin: 0 auto 1.5rem;
  max-width: 34rem;
}

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

.hero-actions--center {
  justify-content: center;
}

.tunnel-scroll-hint {
  margin-top: 2.25rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
}

.tunnel-caption {
  position: absolute;
  left: 50%;
  bottom: 2.4rem;
  z-index: 6;
  transform: translateX(-50%) translateY(10px);
  text-align: center;
  pointer-events: none;
  opacity: 0;
  transition:
    opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.tunnel-caption.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.tunnel-caption.is-swap .tunnel-caption-title {
  opacity: 0.35;
}

.tunnel-caption-num {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  color: var(--gold);
  transition: opacity 0.35s ease;
}

.tunnel-caption-title {
  margin-top: 0.35rem;
  font-family: var(--font-display);
  font-size: clamp(1rem, 2.4vw, 1.35rem);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
  transition: opacity 0.35s ease;
}

.hero-tunnel.is-reduced {
  height: auto;
}

.hero-tunnel.is-reduced .hero-tunnel-sticky {
  height: auto;
  min-height: 100svh;
  padding: 7rem 0 3rem;
  perspective: none;
}

.hero-tunnel.is-reduced .tunnel-stage,
.hero-tunnel.is-reduced .tunnel-world {
  position: relative;
  perspective: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  width: min(920px, 92vw);
  margin: 0 auto 1.5rem;
  inset: auto;
  height: auto;
}

.hero-tunnel.is-reduced .tunnel-panel {
  position: relative;
  left: auto;
  top: auto;
  width: 100%;
  opacity: 1 !important;
  transform: none !important;
}

.hero-tunnel.is-reduced .tunnel-veil,
.hero-tunnel.is-reduced .tunnel-scroll-hint,
.hero-tunnel.is-reduced .tunnel-caption {
  display: none;
}

.hero-stats-wrap {
  background: var(--black);
}

.hero-stats {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 196, 0, 0.2);
  border-top: 1px solid rgba(255, 196, 0, 0.25);
}

.stat {
  padding: 1.25rem 1.5rem;
  background: rgba(8, 8, 8, 0.55);
  backdrop-filter: blur(6px);
}

.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: -0.01em;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.stat span {
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.6);
}

/* Trust strip */

.trust-strip {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  padding: 1.35rem 0;
}

.trust-strip-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--black);
}

.trust-item svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--gold);
}

/* Sections */

.section { padding: 5.5rem 0; }

.section-muted { background: var(--white); }

.section-dark {
  background:
    radial-gradient(ellipse at 80% 0%, rgba(255, 196, 0, 0.12) 0%, transparent 50%),
    var(--black);
  color: var(--white);
}

.section-intro {
  max-width: 640px;
  margin-bottom: 2.75rem;
}

.section-intro--center {
  text-align: center;
  margin-inline: auto;
}

.section-intro p { color: var(--text-muted-dark); }

.section-dark .section-intro p { color: rgba(255, 255, 255, 0.65); }

.label {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.label-light { color: rgba(255, 196, 0, 0.85); }

.section-intro h2,
.about-card h2,
.area-layout h2,
.reviews-copy h2,
.cta-box h2,
.contact-card h2,
.section-dark h2 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.8vw, 2.75rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.section-dark h2 { color: var(--white); }

/* Services */

.services-pillars {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.15rem;
  margin-bottom: 2.5rem;
}

.pillar {
  padding: 1.5rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}

.pillar:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(255, 196, 0, 0.4);
}

.pillar--featured {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 0;
  padding: 0;
  overflow: hidden;
  border: 2px solid var(--gold);
}

.pillar-visual {
  min-height: 260px;
}

.pillar-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pillar-body {
  padding: 1.75rem;
  display: grid;
  align-content: center;
}

.pillar-tag {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.pillar h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: -0.01em;
  color: var(--black);
  margin-bottom: 0.5rem;
}

.pillar p {
  font-size: 0.92rem;
  color: var(--text-muted-dark);
}

.pillar-body ul {
  margin-top: 0.85rem;
  padding-left: 1.1rem;
  color: var(--text-muted-dark);
  font-size: 0.88rem;
}

.pillar-body li { margin-bottom: 0.25rem; }

.pillar-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.skills-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.skills-group {
  padding: 1.5rem;
  background: var(--black);
  color: var(--white);
  border-radius: var(--radius-lg);
}

.skills-group h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: -0.01em;
  color: var(--gold);
  margin-bottom: 1rem;
}

.skills-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.skills-list li {
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.4rem 0.75rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 196, 0, 0.25);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.88);
}

/* Gallery */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.gallery-item {
  position: relative;
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line-dark);
}

.gallery-item--hero {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  min-height: 200px;
  object-fit: cover;
  transition: transform 0.4s;
}

.gallery-item:hover img { transform: scale(1.04); }

.gallery-item--hero img { min-height: 420px; }

.gallery-item figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.85rem 1rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gold);
}

/* About */

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: start;
}

.about-card {
  padding: 2rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.about-logo {
  width: min(200px, 100%);
  height: auto;
  border-radius: 12px;
  object-fit: contain;
  box-shadow: 0 0 30px var(--gold-glow);
  margin-bottom: 1.25rem;
}

.about-card p {
  color: var(--text-muted-dark);
  margin-bottom: 1rem;
}

.about-facts {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.about-facts div {
  padding: 0.9rem 1rem;
  background: var(--bg);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.about-facts strong {
  display: block;
  color: var(--black);
  margin-bottom: 0.1rem;
}

.about-facts span {
  font-size: 0.88rem;
  color: var(--text-muted-dark);
}

.about-aside {
  display: grid;
  gap: 1rem;
}

.quote-card {
  padding: 1.5rem;
  background: var(--black);
  color: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-dark);
}

.quote-card p {
  font-size: 1.05rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.75rem;
}

.quote-card span {
  font-size: 0.82rem;
  color: var(--gold);
  font-weight: 600;
}

.emergency-card {
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(18px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.emergency-card h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  letter-spacing: -0.01em;
  margin-bottom: 0.5rem;
  color: #fff;
  text-transform: uppercase;
}

.emergency-card h3::before {
  content: "";
  display: inline-block;
  width: 0.45rem;
  height: 0.45rem;
  margin-right: 0.55rem;
  margin-bottom: 0.1rem;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 10px rgba(255, 196, 0, 0.45);
  vertical-align: middle;
}

.emergency-card p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.62);
  margin-bottom: 1rem;
}

.theme-cinematic .emergency-card {
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.theme-cinematic .emergency-card:hover {
  border-color: rgba(255, 196, 0, 0.28);
}

/* Reviews */

.section-reviews {
  background: linear-gradient(135deg, var(--black) 0%, #1a1400 100%);
  color: var(--white);
}

.reviews-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: center;
}

.reviews-copy p {
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 1.5rem;
}

.reviews-score {
  text-align: center;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 196, 0, 0.3);
  border-radius: var(--radius-lg);
}

.reviews-logo {
  width: 120px;
  height: auto;
  border-radius: 10px;
  object-fit: contain;
  margin: 0 auto 1rem;
  box-shadow: 0 0 24px var(--gold-glow);
}

.reviews-percent {
  display: block;
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 1;
  color: var(--gold);
}

.reviews-label {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.5rem;
}

.reviews-score p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
}

.review-cards {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr;
  gap: 1rem;
  margin-top: 2.5rem;
  align-items: stretch;
}

.review-quote .review-stars {
  color: var(--gold);
  letter-spacing: 0.12em;
  font-size: 0.95rem;
  font-style: normal;
  margin-bottom: 0.75rem;
}

.section-reviews .review-quote {
  background: var(--white);
  color: var(--text-dark);
  border: 1px solid rgba(255, 196, 0, 0.35);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
}

.section-reviews .review-quote p:not(.review-stars) {
  color: var(--text-dark);
}

.section-reviews .review-quote span {
  color: var(--text-muted-dark);
}

.review-more {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 196, 0, 0.28);
  border-radius: var(--radius-lg);
  text-align: center;
}

.review-more .review-stars {
  color: var(--gold);
  letter-spacing: 0.12em;
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.review-more p {
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 1.25rem;
  line-height: 1.5;
}

.review-more strong {
  color: var(--white);
}

.review-form-panel {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 2rem;
  align-items: start;
  margin-top: 2.5rem;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 196, 0, 0.28);
  border-radius: var(--radius-lg);
}

.review-form-copy h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: -0.01em;
  margin: 0.35rem 0 0.75rem;
}

.review-form-copy p {
  color: rgba(255, 255, 255, 0.68);
  max-width: 36ch;
}

.review-email-fallback {
  margin-top: 0.75rem;
  font-size: 0.88rem;
}

.review-email-fallback a {
  color: var(--gold);
  font-weight: 600;
}

.review-email-fallback a:hover {
  text-decoration: underline;
}

.review-success {
  padding: 1.5rem;
  background: rgba(255, 196, 0, 0.12);
  border: 1px solid rgba(255, 196, 0, 0.45);
  border-radius: var(--radius-lg);
}

.review-success h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: -0.01em;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.review-success p {
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 1.25rem;
  line-height: 1.55;
}

.review-form {
  display: grid;
  gap: 1rem;
}

.form-field {
  display: grid;
  gap: 0.4rem;
}

.form-field span {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--gold);
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 0.85rem 0.95rem;
  font: inherit;
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.form-field textarea {
  resize: vertical;
  min-height: 120px;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: 2px solid rgba(255, 196, 0, 0.45);
  border-color: var(--gold);
}

.nav-review-link {
  color: var(--gold) !important;
}

.hidden-field {
  display: none;
}

/* Area */

.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.area-tags span {
  padding: 0.55rem 1rem;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--black);
  transition: background 0.2s, border-color 0.2s;
}

.area-tags span:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--on-accent);
}

/* How it works */

.section-steps {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.steps-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.step-card {
  padding: 1.5rem 1.35rem;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  margin-bottom: 0.85rem;
  border-radius: 50%;
  background: var(--gold);
  color: var(--on-accent);
  font-size: 0.9rem;
  font-weight: 800;
}

.step-card h3 {
  font-family: var(--font-display);
  font-size: 1.65rem;
  letter-spacing: -0.01em;
  margin-bottom: 0.45rem;
  color: var(--black);
}

.step-card p {
  font-size: 0.92rem;
  color: var(--text-muted-dark);
}

/* Promo flyer (legacy — kept for reference) */

.section-promo {
  background: var(--black);
  color: var(--white);
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.promo-layout {
  display: grid;
  grid-template-columns: 1fr min(420px, 42vw);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

.promo-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 0.95;
  margin-bottom: 1rem;
}

.promo-copy p {
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 1.25rem;
  max-width: 48ch;
}

.promo-points {
  list-style: none;
  display: grid;
  gap: 0.55rem;
  margin-bottom: 1.5rem;
}

.promo-points li {
  position: relative;
  padding-left: 1.1rem;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.88);
}

.promo-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 8px var(--gold-glow);
}

.promo-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.promo-flyer-frame {
  margin: 0;
  padding: 0.65rem;
  background: linear-gradient(145deg, rgba(255, 196, 0, 0.35), rgba(255, 196, 0, 0.08));
  border: 1px solid rgba(255, 196, 0, 0.45);
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45), 0 0 40px rgba(255, 196, 0, 0.12);
}

.promo-flyer {
  display: block;
  width: 100%;
  height: auto;
  border-radius: calc(var(--radius-lg) - 4px);
}

/* CTA */

.section-cta {
  background:
    radial-gradient(ellipse at 20% 50%, rgba(255, 196, 0, 0.14) 0%, transparent 55%),
    var(--black);
  color: var(--white);
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.cta-box {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.75rem;
  align-items: center;
}

.cta-logo {
  width: 110px;
  height: auto;
  border-radius: 10px;
  object-fit: contain;
  box-shadow: 0 0 30px var(--gold-glow);
}

.cta-lead {
  color: rgba(255, 255, 255, 0.72);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Contact */

.section-contact { background: var(--white); }

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
}

.contact-card {
  padding: 2rem;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

.contact-card > p { color: var(--text-muted-dark); margin-bottom: 1.5rem; }

.contact-list {
  list-style: none;
  display: grid;
  gap: 0.9rem;
  margin-bottom: 1.75rem;
}

.contact-list li {
  display: grid;
  gap: 0.15rem;
}

.contact-list span {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted-dark);
}

.contact-list a {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--black);
  text-decoration: none;
}

.contact-list a:hover { color: var(--gold); }

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.contact-aside {
  display: grid;
  gap: 1rem;
  align-content: start;
}

.map-link {
  position: relative;
  display: grid;
  gap: 0.35rem;
  padding: 1.25rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  color: var(--white);
  min-height: 240px;
  align-content: end;
  box-shadow: var(--shadow);
}

.map-link img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.map-link::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 20%, rgba(8, 8, 8, 0.92) 100%);
}

.map-link span,
.map-link strong {
  position: relative;
  z-index: 1;
}

.map-link strong { color: var(--gold); }

.social-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.15rem;
  background: var(--black);
  color: var(--white);
  border-radius: var(--radius-lg);
  text-decoration: none;
  border: 1px solid var(--line-dark);
  transition: border-color 0.2s;
}

.social-card:hover { border-color: var(--gold); }

.social-logo,
.social-card img {
  height: 52px;
  width: auto;
  border-radius: 8px;
  object-fit: contain;
  box-shadow: 0 0 16px var(--gold-glow);
}

.social-card strong {
  display: block;
  font-size: 0.95rem;
}

.social-card span {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
}

/* Footer */

.footer {
  padding: 2.25rem 0;
  background: var(--black);
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
}

.footer-logo {
  width: 90px;
  height: auto;
  border-radius: 8px;
  object-fit: contain;
  margin: 0 auto 0.75rem;
  box-shadow: 0 0 20px var(--gold-glow);
}

.footer p { font-size: 0.88rem; margin-bottom: 0.3rem; }

.footer-legal {
  margin-top: 0.75rem;
  font-size: 0.75rem;
  opacity: 0.5;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: underline;
}

.footer-legal a:hover { color: var(--gold); }

.footer-legal a[data-cookie-open] {
  cursor: pointer;
}

/* Form consent */

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.45;
  cursor: pointer;
}

.form-consent input {
  margin-top: 0.2rem;
  flex-shrink: 0;
  width: 1rem;
  height: 1rem;
  accent-color: var(--gold);
}

.form-consent a {
  color: var(--gold-light);
  text-decoration: underline;
}

/* Cookie banner */

.cookie-banner {
  position: fixed;
  inset: auto 0 0;
  z-index: 300;
  padding: 1rem 0 calc(1.25rem + env(safe-area-inset-bottom));
  background: rgba(8, 8, 8, 0.96);
  border-top: 1px solid rgba(255, 196, 0, 0.35);
  box-shadow: 0 -16px 48px rgba(8, 8, 8, 0.35);
  backdrop-filter: blur(12px);
  transform: translateY(110%);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.35s, visibility 0.35s;
  pointer-events: none;
}

.cookie-banner.is-visible {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.cookie-banner-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.cookie-banner-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: -0.01em;
  color: var(--gold);
  margin-bottom: 0.25rem;
}

.cookie-banner-text {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.68);
  max-width: 42rem;
}

.cookie-banner-text a {
  color: var(--gold-light);
  text-decoration: underline;
}

.cookie-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

/* Legal pages */

.legal-hero {
  padding: 2.5rem 0 3rem;
  margin-top: 0;
  background: linear-gradient(160deg, var(--black) 0%, var(--black-soft) 100%);
  color: var(--white);
  border-bottom: 1px solid var(--line-dark);
}

body.page-legal .legal-hero {
  padding: 2rem 0 2.75rem;
}

body.page-legal .legal-hero .label-light {
  color: var(--gold);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
}

.legal-hero-inner {
  max-width: 40rem;
}

.legal-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 3.5rem);
  letter-spacing: -0.01em;
  color: var(--gold);
  line-height: 1;
  margin: 0.4rem 0 1rem;
}

.legal-hero-lead {
  font-size: 1.02rem;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 1rem;
  max-width: 34rem;
}

.legal-hero .legal-updated {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
  margin: 0;
}

.legal-page {
  padding: 2.5rem 0 4rem;
  background: var(--bg);
}

.legal-layout {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 2rem;
  align-items: start;
}

.legal-jump {
  position: sticky;
  top: 6.5rem;
  display: grid;
  gap: 0.35rem;
  padding: 1.25rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.legal-jump a {
  padding: 0.55rem 0.65rem;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--text-muted-dark);
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
}

.legal-jump a:hover {
  background: rgba(255, 196, 0, 0.1);
  color: var(--text-dark);
}

.legal-main {
  display: grid;
  gap: 1.15rem;
}

.legal-block {
  padding: 1.75rem 1.85rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.legal-block--plain {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0.5rem 0 0;
}

.legal-block h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: -0.01em;
  color: var(--text-dark);
  margin-bottom: 0.85rem;
  padding-bottom: 0.65rem;
  border-bottom: 2px solid rgba(255, 196, 0, 0.35);
}

.legal-block > p {
  font-size: 0.94rem;
  color: var(--text-muted-dark);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.legal-block > p:last-child { margin-bottom: 0; }

.legal-contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
  margin-top: 0.5rem;
}

.legal-contact-item {
  display: grid;
  gap: 0.2rem;
  padding: 1rem 1.1rem;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.legal-contact-label {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted-dark);
}

.legal-contact-item strong,
.legal-contact-item a,
.legal-contact-item span:last-child {
  font-size: 0.9rem;
  color: var(--text-dark);
}

.legal-contact-item a {
  color: var(--gold);
  font-weight: 600;
  word-break: break-word;
}

.legal-list {
  list-style: none;
  display: grid;
  gap: 0.65rem;
  margin: 0;
  padding: 0;
}

.legal-list li {
  position: relative;
  padding-left: 1.15rem;
  font-size: 0.92rem;
  color: var(--text-muted-dark);
  line-height: 1.55;
  margin: 0;
}

.legal-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--gold);
}

.legal-list--compact { gap: 0.5rem; }

.legal-use-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
}

.legal-use-card {
  padding: 1.1rem 1.15rem;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.legal-use-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: -0.01em;
  color: var(--text-dark);
  margin-bottom: 0.35rem;
}

.legal-use-card p {
  font-size: 0.82rem;
  color: var(--text-muted-dark);
  margin-bottom: 0.65rem;
}

.legal-use-purpose,
.legal-use-basis {
  display: block;
  font-size: 0.78rem;
  line-height: 1.45;
  color: var(--text-muted-dark);
}

.legal-use-purpose { margin-bottom: 0.25rem; }

.legal-use-basis {
  font-weight: 700;
  color: var(--text-dark);
}

.legal-highlight {
  display: grid;
  gap: 0.75rem;
  padding: 1.25rem 1.35rem;
  background: rgba(255, 196, 0, 0.08);
  border: 1px solid rgba(255, 196, 0, 0.25);
  border-radius: var(--radius);
}

.legal-highlight p {
  font-size: 0.92rem;
  color: var(--text-muted-dark);
  margin: 0;
  line-height: 1.55;
}

.legal-highlight .btn {
  justify-self: start;
  margin-top: 0.25rem;
}

.legal-block a:not(.btn):not(.legal-back-btn) {
  color: var(--gold);
  font-weight: 600;
}

.legal-block a:not(.btn):not(.legal-back-btn):hover { text-decoration: underline; }

.legal-block .btn-secondary {
  color: var(--text-dark);
}

.legal-back-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin-top: 1.25rem;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--black);
  -webkit-text-fill-color: var(--black);
  background: var(--gold);
  border: 2px solid #d9a000;
  border-radius: var(--radius);
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(255, 196, 0, 0.35);
  transition: background 0.2s, transform 0.2s;
}

.legal-back-btn:hover {
  background: #ffd84d;
  color: var(--black);
  -webkit-text-fill-color: var(--black);
  text-decoration: none;
  transform: translateY(-1px);
}

.text-link {
  color: var(--gold);
  font-weight: 700;
}

/* Legacy legal (unused table kept for safety) */

.legal-content h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3rem);
  letter-spacing: -0.01em;
  color: var(--text-dark);
  margin: 0.35rem 0 0.5rem;
}

.legal-updated {
  font-size: 0.88rem;
  color: var(--text-muted-dark);
  margin-bottom: 1.75rem;
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0 1.25rem;
  font-size: 0.86rem;
}

.legal-table th,
.legal-table td {
  padding: 0.75rem;
  text-align: left;
  border: 1px solid var(--line);
  vertical-align: top;
}

.legal-table th {
  background: var(--white);
  color: var(--text-dark);
  font-weight: 700;
}

.legal-table td { color: var(--text-muted-dark); }

.legal-back { margin-top: 2.5rem; }

/* Mobile sticky CTA */

.mobile-cta-bar {
  display: none;
}

/* Responsive */

@media (max-width: 960px) {
  .hero-grid,
  .promo-layout,
  .services-pillars,
  .pillar--featured,
  .skills-block,
  .about-grid,
  .reviews-layout,
  .review-cards,
  .review-form-panel,
  .cta-box,
  .contact-grid,
  .trust-strip-inner,
  .hero-stats,
  .gallery-grid,
  .hero-cards {
    grid-template-columns: 1fr;
  }

  .hero-logo-scene {
    right: 50%;
    top: 6.5rem;
    transform: translateX(50%);
    width: min(220px, 56vw);
    z-index: 2;
  }

  .hero-logo-glow {
    inset: -38%;
    background: radial-gradient(
      circle,
      rgba(255, 196, 0, 0.82) 0%,
      rgba(255, 196, 0, 0.55) 34%,
      rgba(255, 196, 0, 0.2) 58%,
      transparent 82%
    );
    box-shadow: 0 0 100px rgba(255, 196, 0, 0.55);
    opacity: 1;
    animation: hero-glow-pulse 4s ease-in-out infinite;
  }

  .hero-overlay {
    z-index: 1;
    background:
      linear-gradient(
        180deg,
        transparent 0%,
        transparent 38%,
        rgba(8, 8, 8, 0.45) 50%,
        rgba(8, 8, 8, 0.92) 62%,
        rgba(8, 8, 8, 0.98) 100%
      );
  }

  .hero-grid {
    margin-top: min(220px, 38vw);
    z-index: 3;
  }

  .hero-content {
    padding: 1.15rem 1rem 1.25rem;
    background: rgba(8, 8, 8, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg);
  }

  .promo-flyer-frame {
    max-width: 380px;
    margin-inline: auto;
  }

  .promo-copy {
    text-align: center;
  }

  .promo-copy p,
  .promo-points {
    margin-inline: auto;
  }

  .promo-actions {
    justify-content: center;
  }

  .pillar--featured,
  .gallery-item--hero {
    grid-column: auto;
    grid-row: auto;
  }

  .cta-box { text-align: center; }
  .cta-logo { margin-inline: auto; }
  .cta-actions { justify-content: center; }
}

@media (max-width: 768px) {
  body {
    padding-top: calc(40px + env(safe-area-inset-top));
    padding-bottom: calc(4.5rem + env(safe-area-inset-bottom));
  }

  .container {
    width: min(1160px, 100% - 1.25rem);
  }

  .call-bar-short {
    display: inline;
    font-weight: 800;
  }

  .call-bar-full { display: none; }

  .header {
    top: calc(40px + env(safe-area-inset-top));
  }

  .header-inner {
    height: 64px;
  }

  .brand-logo {
    height: 44px;
  }

  .header-phone {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0.45rem 0.85rem;
    margin-left: auto;
    font-size: 0.78rem;
    font-weight: 800;
    color: var(--gold);
    text-decoration: none;
    border: 1px solid rgba(255, 196, 0, 0.45);
    border-radius: var(--radius);
  }

  .menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    margin-left: 0.5rem;
    padding: 10px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius);
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
  }

  .menu-toggle span {
    display: block;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: transform 0.25s, opacity 0.25s;
  }

  .nav-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    top: calc(104px + env(safe-area-inset-top));
    background: rgba(0, 0, 0, 0.55);
    z-index: 98;
    cursor: pointer;
  }

  .nav-toggle:checked ~ .nav-backdrop {
    display: block;
  }

  .nav {
    display: none;
    position: fixed;
    top: calc(104px + env(safe-area-inset-top));
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.75rem 1rem 1rem;
    background: rgba(8, 8, 8, 0.98);
    border-bottom: 1px solid var(--line-dark);
    z-index: 99;
  }

  .nav a:not(.btn) {
    display: block;
    padding: 0.95rem 0.5rem;
    font-size: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .nav .btn {
    width: 100%;
    margin-top: 0.75rem;
    min-height: 52px;
    font-size: 0.95rem;
  }

  .nav-toggle:checked ~ .nav {
    display: flex;
  }

  .nav-toggle:checked + .menu-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle:checked + .menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle:checked + .menu-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .hero {
    min-height: auto;
    padding-top: 6.5rem;
    overflow: hidden;
  }

  .hero-bg {
    overflow: visible;
  }

  .hero-logo-scene {
    top: 6.25rem;
    width: min(200px, 54vw);
    z-index: 2;
  }

  .hero-logo-glow {
    inset: -42%;
    background: radial-gradient(
      circle,
      rgba(255, 196, 0, 0.85) 0%,
      rgba(255, 196, 0, 0.55) 35%,
      rgba(255, 196, 0, 0.22) 60%,
      transparent 84%
    );
    box-shadow: 0 0 110px rgba(255, 196, 0, 0.58);
    opacity: 1;
    animation: hero-glow-pulse 4s ease-in-out infinite;
  }

  .hero-overlay {
    z-index: 1;
    background:
      linear-gradient(
        180deg,
        transparent 0%,
        transparent 36%,
        rgba(8, 8, 8, 0.5) 48%,
        rgba(8, 8, 8, 0.94) 60%,
        rgba(8, 8, 8, 0.98) 100%
      );
  }

  .hero-grid {
    max-width: none;
    margin-top: min(210px, 36vw);
    padding-bottom: 1rem;
    z-index: 3;
  }

  .hero-content {
    padding: 1.1rem 0.95rem 1.2rem;
    background: rgba(8, 8, 8, 0.88);
    border: 1px solid rgba(255, 196, 0, 0.12);
    border-radius: var(--radius-lg);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
  }

  .hero-actions .btn-ghost {
    display: none;
  }

  .hero h1 {
    font-size: clamp(2.4rem, 11vw, 3.4rem);
  }

  .hero-badge {
    font-size: 0.68rem;
    letter-spacing: 0.08em;
    max-width: 100%;
  }

  .hero-lead {
    font-size: 1rem;
    max-width: none;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
    min-height: 52px;
  }

  .hero-cards {
    gap: 0.85rem;
    padding-bottom: 1.25rem;
    perspective: none;
  }

  .hero-3d--pat .hero-3d-face,
  .hero-3d--handyman .hero-3d-face,
  .hero-3d--plumbing .hero-3d-face {
    transform: none;
  }

  .hero-card.hero-3d:hover .hero-3d-face,
  .hero-card.hero-3d:focus-within .hero-3d-face {
    transform: translateY(-4px);
  }

  .hero-3d-face img {
    aspect-ratio: 16 / 10;
  }

  .hero-3d-caption {
    padding: 2rem 1rem 0.95rem;
  }

  .hero-card {
    padding: 0;
  }

  .promo-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .promo-actions .btn {
    width: 100%;
    min-height: 52px;
  }

  .promo-flyer-frame {
    max-width: min(340px, 92vw);
  }

  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat {
    padding: 1rem;
    text-align: center;
  }

  .stat strong {
    font-size: 1.5rem;
  }

  .trust-strip-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.85rem;
  }

  .trust-item {
    font-size: 0.78rem;
  }

  .section {
    padding: 3.25rem 0;
  }

  .section-intro h2,
  .about-card h2,
  .area-layout h2,
  .reviews-copy h2,
  .cta-box h2,
  .contact-card h2,
  .section-dark h2 {
    font-size: clamp(1.65rem, 6.5vw, 2.15rem);
  }

  .pillar--featured {
    grid-template-columns: 1fr;
  }

  .pillar-visual {
    min-height: 200px;
  }

  .gallery-item--hero img {
    min-height: 260px;
  }

  .contact-actions,
  .cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .contact-actions .btn,
  .cta-actions .btn {
    width: 100%;
    min-height: 52px;
  }

  .contact-list a {
    font-size: 1.1rem;
    word-break: break-word;
  }

  .form-field input,
  .form-field select,
  .form-field textarea {
    font-size: 16px;
  }

  .cta-box {
    text-align: center;
    gap: 1.25rem;
  }

  .mobile-cta-bar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 105;
    padding: 0.65rem 0.85rem;
    padding-bottom: max(0.65rem, env(safe-area-inset-bottom));
    background: rgba(8, 8, 8, 0.96);
    border-top: 1px solid var(--line-dark);
    backdrop-filter: blur(12px);
  }

  .mobile-cta-call,
  .mobile-cta-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    min-height: 52px;
    font-size: 0.9rem;
    font-weight: 800;
    text-decoration: none;
    border-radius: var(--radius);
    -webkit-tap-highlight-color: transparent;
  }

  .mobile-cta-call svg,
  .mobile-cta-whatsapp svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
  }

  .mobile-cta-call {
    background: var(--gold);
    color: var(--on-accent);
  }

  .mobile-cta-whatsapp {
    background: var(--whatsapp);
    color: var(--white);
  }
}

@media (max-width: 480px) {
  .hero-badge span:not(.hero-badge-pulse) {
    letter-spacing: 0.05em;
  }

  .hero-stats {
    grid-template-columns: 1fr 1fr;
  }

  .trust-strip-inner {
    grid-template-columns: 1fr;
  }

  .skills-list li {
    font-size: 0.82rem;
  }
}

@media (max-width: 768px) {
  .promo-layout,
  .services-pillars,
  .skills-block,
  .about-grid,
  .reviews-layout,
  .cta-box,
  .contact-grid,
  .hero-cards,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .pillar--featured {
    grid-column: auto;
  }

  .gallery-item--hero {
    grid-column: auto;
    grid-row: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn, .pillar, .gallery-item img { transition: none; }
}

@media (max-width: 768px) {
  .hero-tunnel-intro {
    padding-top: 5.5rem;
  }

  .hero-tunnel-intro h1 {
    font-size: clamp(2.2rem, 11vw, 3.2rem);
  }

  .tunnel-panel {
    width: min(420px, 86vw);
  }

  .tunnel-caption {
    bottom: 1.5rem;
  }

  .hero-tunnel.is-reduced .tunnel-world {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 960px) {
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .legal-jump {
    position: static;
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  body.page-legal {
    padding-top: calc(104px + env(safe-area-inset-top));
  }

  .legal-hero {
    padding: 1.75rem 0 2.25rem;
  }

  .legal-contact-grid,
  .legal-use-grid {
    grid-template-columns: 1fr;
  }

  .legal-jump {
    grid-template-columns: 1fr 1fr;
  }

  .legal-block {
    padding: 1.35rem 1.25rem;
  }

  .cookie-banner-inner { flex-direction: column; align-items: stretch; }
  .cookie-banner-actions .btn { width: 100%; }
  .cookie-banner { padding-bottom: calc(4.5rem + env(safe-area-inset-bottom)); }
}


.footer-credit {
  margin-top: 0.85rem;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.45);
}

.footer-credit a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
}

.footer-credit a:hover { text-decoration: underline; }


/* Enquiry form */

.enquiry-form-panel {
  padding: 1.5rem 1.35rem;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  margin-bottom: 1rem;
}

.enquiry-form-copy h3 {
  font-family: var(--font-display);
  font-size: 1.65rem;
  letter-spacing: -0.01em;
  margin-bottom: 0.45rem;
  color: var(--black);
  text-transform: uppercase;
}

.enquiry-form-copy p {
  font-size: 0.92rem;
  color: var(--text-muted-dark);
  margin-bottom: 1rem;
}

.enquiry-form {
  display: grid;
  gap: 0.85rem;
}

.enquiry-success h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: -0.01em;
  color: var(--gold);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.enquiry-success p {
  color: var(--text-muted-dark);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Chatbot */

.blk-chat {
  position: fixed;
  right: 1.15rem;
  bottom: 1.15rem;
  z-index: 140;
  font-family: var(--font-body);
}

.blk-chat-fab {
  width: 58px;
  height: 58px;
  border: none;
  border-radius: 50%;
  background: var(--gold);
  color: var(--black);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28), 0 0 0 1px rgba(255, 196, 0, 0.2);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: transform 0.2s, background 0.2s;
}

.blk-chat-fab:hover { transform: translateY(-2px); background: var(--gold-light); }

.blk-chat-fab svg {
  width: 26px;
  height: 26px;
}

.blk-chat-fab-close {
  display: none;
  font-size: 1.7rem;
  line-height: 1;
  font-weight: 700;
}

.blk-chat-fab.is-open .blk-chat-fab-icon { display: none; }
.blk-chat-fab.is-open .blk-chat-fab-close { display: block; }

.blk-chat-panel {
  position: absolute;
  right: 0;
  bottom: calc(58px + 0.75rem);
  width: min(380px, calc(100vw - 1.5rem));
  height: min(560px, calc(100svh - 7rem));
  display: none;
  flex-direction: column;
  background: #12161c;
  color: var(--white);
  border: 1px solid rgba(255, 196, 0, 0.28);
  border-radius: 18px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.45);
  overflow: hidden;
}

.blk-chat-panel.is-open {
  display: flex;
}

.blk-chat-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1rem 1rem 0.85rem;
  background: linear-gradient(180deg, rgba(255, 196, 0, 0.14), transparent);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.blk-chat-brand {
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--gold);
}

.blk-chat-sub {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.62);
  margin-top: 0.15rem;
}

.blk-chat-min {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  min-height: 36px;
  padding: 0.35rem 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  flex-shrink: 0;
  z-index: 2;
  position: relative;
}

.blk-chat-min:hover {
  background: rgba(255, 196, 0, 0.18);
  border-color: rgba(255, 196, 0, 0.5);
  color: var(--gold);
}

.blk-chat-min-label {
  letter-spacing: 0.02em;
}

.blk-chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.blk-chat-bubble {
  max-width: 88%;
  padding: 0.7rem 0.85rem;
  border-radius: 14px;
  font-size: 0.9rem;
  line-height: 1.45;
}

.blk-chat-bubble--bot {
  align-self: flex-start;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.blk-chat-bubble--user {
  align-self: flex-end;
  background: var(--gold);
  color: var(--black);
  font-weight: 600;
}

.blk-chat-quick {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  padding: 0 1rem 0.85rem;
}

.blk-chat-chip {
  border: 1px solid rgba(255, 196, 0, 0.45);
  background: rgba(255, 196, 0, 0.08);
  color: var(--gold-light);
  border-radius: 999px;
  padding: 0.45rem 0.8rem;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
}

.blk-chat-chip:hover {
  background: rgba(255, 196, 0, 0.18);
}

.blk-chat-input {
  display: flex;
  gap: 0.5rem;
  padding: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.25);
}

.blk-chat-input input {
  flex: 1;
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  padding: 0.7rem 0.8rem;
  font: inherit;
  font-size: 0.92rem;
}

.blk-chat-input input:focus {
  outline: none;
  border-color: var(--gold);
}

.blk-chat-input .btn {
  min-height: 44px;
  padding-inline: 1rem;
}

@media (max-width: 720px) {
  .blk-chat {
    right: 0.85rem;
    bottom: calc(4.75rem + env(safe-area-inset-bottom));
  }

  .blk-chat-panel {
    height: min(520px, calc(100svh - 10.5rem));
  }

  .cookie-banner.is-visible ~ .blk-chat,
  body:has(.cookie-banner.is-visible) .blk-chat {
    bottom: calc(10.5rem + env(safe-area-inset-bottom));
  }
}


/* ===== Contractor / trades theme ===== */

body.theme-trades {
  color: var(--text-dark);
  background:
    linear-gradient(180deg, #e8e8e8 0%, #ececec 100%);
}

.theme-trades .call-bar {
  background:
    repeating-linear-gradient(
      -45deg,
      #ffc400,
      #ffc400 10px,
      #f0b400 10px,
      #f0b400 20px
    );
  color: #141414;
  font-weight: 800;
  letter-spacing: 0.02em;
  border-bottom: 3px solid #141414;
}

.theme-trades .header {
  background: #141414;
  border-bottom: 3px solid var(--gold);
  backdrop-filter: none;
}

.theme-trades .nav a:not(.btn) {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.78rem;
}

.theme-trades .btn {
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 800;
}

.theme-trades .btn-primary {
  background: var(--gold);
  color: #141414;
  box-shadow: 4px 4px 0 #141414;
}

.theme-trades .btn-primary:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 #141414;
}

.theme-trades .btn-ghost {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.55);
  color: #fff;
}

.theme-trades .section-muted,
.theme-trades .section-contact,
.theme-trades .section-steps,
.theme-trades .trust-strip,
.theme-trades #services.section,
.theme-trades #about.section,
.theme-trades .section-reviews {
  background: #f4f4f4;
  color: var(--text-dark);
}

.theme-trades .section-dark,
.theme-trades .section-cta,
.theme-trades .section-promo,
.theme-trades .footer,
.theme-trades .hero-stats-wrap {
  background: #141414;
  color: #fff;
}

.theme-trades .section-intro h2,
.theme-trades .about-card h2,
.theme-trades .contact-card h2,
.theme-trades .reviews-copy h2,
.theme-trades .area-layout h2,
.theme-trades .cta-box h2 {
  color: #141414;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.theme-trades .section-dark .section-intro h2,
.theme-trades .section-cta h2,
.theme-trades .section-promo h2,
.theme-trades .section-dark h2 {
  color: #fff;
}

.theme-trades .label {
  color: #b8860b;
  border-left: 3px solid var(--gold);
  padding-left: 0.55rem;
}

.theme-trades .label-light {
  color: var(--gold);
  border-left-color: var(--gold);
}

.theme-trades .pillar,
.theme-trades .step-card,
.theme-trades .quote-card,
.theme-trades .review-form-panel,
.theme-trades .enquiry-form-panel,
.theme-trades .skills-group,
.theme-trades .about-card,
.theme-trades .review-quote,
.theme-trades .review-more {
  background: #fff;
  border: 2px solid #141414;
  border-radius: 4px;
  box-shadow: 6px 6px 0 rgba(20, 20, 20, 0.12);
  backdrop-filter: none;
}

.theme-trades .pillar:hover {
  border-color: var(--gold);
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0 rgba(20, 20, 20, 0.18);
}

.theme-trades .pillar h3,
.theme-trades .step-card h3,
.theme-trades .trust-item,
.theme-trades .contact-list a,
.theme-trades .about-facts strong,
.theme-trades .area-tags span {
  color: #141414;
}

.theme-trades .pillar p,
.theme-trades .section-intro p,
.theme-trades .contact-card > p {
  color: #555;
}

.theme-trades .pillar-visual,
.theme-trades .pillar-visual--sm {
  margin: -0.25rem -0.25rem 1rem;
  border-radius: 2px;
  overflow: hidden;
  border: 2px solid #141414;
  aspect-ratio: 16 / 10;
}

.theme-trades .pillar-visual--sm {
  aspect-ratio: 16 / 9;
  margin-bottom: 0.85rem;
}

.theme-trades .pillar-visual img,
.theme-trades .pillar-visual--sm img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.theme-trades .pillar--featured {
  border: 3px solid var(--gold);
  box-shadow: 8px 8px 0 rgba(20, 20, 20, 0.18);
}

.theme-trades .pillar--featured .pillar-visual {
  margin: 0;
  border: none;
  border-right: 2px solid #141414;
  border-radius: 0;
  aspect-ratio: auto;
  min-height: 100%;
}

.theme-trades .section-reviews .review-quote,
.theme-trades .section-reviews .review-more {
  background: #fff;
}

.theme-trades .contact-aside .map-link {
  border: 2px solid #141414;
  border-radius: 4px;
  overflow: hidden;
}

.theme-trades .social-card {
  background: #141414;
  border: 2px solid var(--gold);
  border-radius: 4px;
}

.theme-trades .emergency-card {
  background: #1c1c1c;
  border: 2px solid #333;
  color: #fff;
  box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.35);
}

.theme-trades .emergency-card h3 { color: var(--gold); }
.theme-trades .emergency-card p { color: rgba(255, 255, 255, 0.7); }
.theme-trades .emergency-card h3::before { display: none; }

.theme-trades .form-field input,
.theme-trades .form-field select,
.theme-trades .form-field textarea {
  background: #fff;
  border: 2px solid #141414;
  color: #141414;
  border-radius: 4px;
}

.theme-trades .form-field span,
.theme-trades .form-consent {
  color: #444;
}

.theme-trades .area-tags span {
  background: #fff;
  border: 2px solid #141414;
  border-radius: 4px;
  color: #141414;
}

.theme-trades .area-tags span:hover {
  background: var(--gold);
  color: #141414;
}

.theme-trades .stat strong { color: var(--gold); }
.theme-trades .stat span { color: rgba(255, 255, 255, 0.65); }
.theme-trades .stat {
  background: #1c1c1c;
  border-right: 1px solid #2e2e2e;
}

.theme-trades .hero-stats {
  background: #141414;
  border-top: 3px solid var(--gold);
}

.theme-trades .gallery-item {
  border: 2px solid #fff;
  border-radius: 4px;
  overflow: hidden;
}

.theme-trades .btn-outline {
  background: #fff;
  border: 2px solid #141414;
  color: #141414;
}

.theme-trades .btn-light {
  background: var(--gold);
  color: #141414;
  border: 2px solid #141414;
}

/* Contractor hero */

.hero-trades {
  position: relative;
  min-height: min(88svh, 760px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #141414;
  color: #fff;
  padding: 5.5rem 0 2.5rem;
}

.hero-trades-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-trades-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: grayscale(0.25) contrast(1.05);
}

.hero-trades-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(20, 20, 20, 0.94) 0%, rgba(20, 20, 20, 0.78) 42%, rgba(20, 20, 20, 0.35) 100%),
    linear-gradient(180deg, rgba(20, 20, 20, 0.55) 0%, transparent 35%, rgba(20, 20, 20, 0.75) 100%);
}

.hero-trades-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.35fr 0.85fr;
  gap: 1.75rem;
  align-items: end;
  width: min(1160px, 100% - 2.5rem);
}

.hero-trades-copy .hero-kicker {
  display: inline-block;
  margin-bottom: 0.85rem;
  padding: 0.35rem 0.65rem;
  background: var(--gold);
  color: #141414;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-trades-copy h1 {
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 5.5vw, 4rem);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  margin-bottom: 0.9rem;
  max-width: 14ch;
}

.hero-trades-copy h1 span {
  color: var(--gold);
}

.hero-trades-copy .hero-lead {
  max-width: 34rem;
  margin-bottom: 1.35rem;
  font-size: 1.02rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.82);
}

.hero-trades-copy .hero-actions {
  justify-content: flex-start;
  margin-bottom: 1.25rem;
}

.hero-trades-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
}

.hero-trades-badges li {
  padding: 0.4rem 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}

.hero-trades-panel {
  background: rgba(20, 20, 20, 0.88);
  border: 2px solid var(--gold);
  padding: 0.85rem;
  display: grid;
  gap: 0.55rem;
}

.hero-trades-panel-label {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.15rem;
}

.hero-trades-link {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 0.7rem;
  align-items: center;
  text-decoration: none;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  padding: 0.35rem 0.55rem 0.35rem 0.35rem;
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: border-color 0.2s, background 0.2s;
}

.hero-trades-link img {
  width: 64px;
  height: 48px;
  object-fit: cover;
  display: block;
}

.hero-trades-link:hover {
  border-color: var(--gold);
  background: rgba(255, 196, 0, 0.1);
}

.hero-trades-emergency {
  display: block;
  margin-top: 0.25rem;
  padding: 0.75rem 0.85rem;
  background: var(--gold);
  color: #141414;
  text-align: center;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-decoration: none;
  border: 2px solid #141414;
}

.hero-trades-emergency:hover {
  filter: brightness(1.05);
}

.theme-trades .blk-chat-panel {
  border-radius: 8px;
  border-color: rgba(255, 196, 0, 0.45);
}

.theme-trades .blk-chat-fab {
  border-radius: 4px;
  box-shadow: 4px 4px 0 #141414;
}

/* Readable text on light surfaces */
.theme-trades .section-intro p,
.theme-trades .reviews-copy p,
.theme-trades .review-form-copy p,
.theme-trades .review-email-fallback,
.theme-trades .review-success p,
.theme-trades .review-more p,
.theme-trades .skills-list li,
.theme-trades .skills-group h3,
.theme-trades .about-card p,
.theme-trades .about-facts span,
.theme-trades .contact-card > p,
.theme-trades .contact-list span,
.theme-trades .step-card p,
.theme-trades .pillar p,
.theme-trades .pillar-body ul,
.theme-trades .enquiry-form-copy p,
.theme-trades .form-consent,
.theme-trades .area-layout .section-intro p {
  color: #3d3d3d !important;
}

.theme-trades .review-form-copy h3,
.theme-trades .review-more strong,
.theme-trades .enquiry-form-copy h3,
.theme-trades .skills-group h3,
.theme-trades .step-card h3,
.theme-trades .pillar h3,
.theme-trades h1,
.theme-trades h2,
.theme-trades h3 {
  color: #141414;
}

.theme-trades .section-dark h1,
.theme-trades .section-dark h2,
.theme-trades .section-dark h3,
.theme-trades .section-cta h1,
.theme-trades .section-cta h2,
.theme-trades .section-cta h3,
.theme-trades .section-promo h1,
.theme-trades .section-promo h2,
.theme-trades .section-promo h3,
.theme-trades .footer h1,
.theme-trades .footer h2,
.theme-trades .footer h3,
.theme-trades .hero-trades h1,
.theme-trades .hero-trades h2,
.theme-trades .hero-trades h3,
.theme-trades .hero-stats-wrap h1,
.theme-trades .hero-stats-wrap h2,
.theme-trades .hero-stats-wrap h3,
.theme-trades .emergency-card h3 {
  color: #fff;
}

.theme-trades .hero-trades h1 span {
  color: var(--gold);
}

.theme-trades .emergency-card h3 {
  color: var(--gold);
}

.theme-trades .label {
  color: #8a6a00;
}

.theme-trades .form-field span {
  color: #141414;
}

.theme-trades .review-quote .review-stars,
.theme-trades .review-more .review-stars {
  color: #c99700;
}

.theme-trades .section-reviews .review-quote span,
.theme-trades .section-reviews .review-quote p:not(.review-stars) {
  color: #3d3d3d;
}

.theme-trades .section-promo .promo-copy p,
.theme-trades .section-promo .promo-points,
.theme-trades .section-cta .cta-lead,
.theme-trades .section-dark .section-intro p,
.theme-trades .footer p,
.theme-trades .footer-legal,
.theme-trades .footer-credit {
  color: rgba(255, 255, 255, 0.78) !important;
}

.theme-trades .section-promo h2,
.theme-trades .section-cta h2,
.theme-trades .section-dark .section-intro h2 {
  color: #fff !important;
}

.theme-trades .quote-card p {
  color: #1a1a1a;
}

.theme-trades .quote-card span {
  color: #8a6a00;
}

.theme-trades .trust-item {
  color: #141414;
}

.theme-trades .contact-list a {
  color: #141414;
}

.theme-trades .contact-list a:hover {
  color: #8a6a00;
}

.theme-trades .btn-ghost {
  /* ghost on light pages */
  border-color: #141414;
  color: #141414;
  background: #fff;
}

.theme-trades .hero-trades .btn-ghost,
.theme-trades .section-dark .btn-ghost,
.theme-trades .section-promo .btn-ghost,
.theme-trades .section-cta .btn-ghost {
  border-color: rgba(255, 255, 255, 0.65);
  color: #fff;
  background: transparent;
}

.theme-trades .header-phone {
  color: var(--gold);
  border-color: rgba(255, 196, 0, 0.55);
}

.theme-trades .menu-toggle span {
  background: #fff;
}

.theme-trades .cookie-banner {
  background: #1a1a1a;
  color: #fff;
}

.theme-trades .cookie-banner-text {
  color: rgba(255, 255, 255, 0.75);
}

.theme-trades .btn-secondary {
  background: #fff;
  color: #141414;
  border: 2px solid #141414;
}

@media (max-width: 900px) {
  .hero-trades-grid {
    grid-template-columns: 1fr;
  }

  .hero-trades-copy h1 {
    max-width: none;
    font-size: clamp(2.1rem, 9vw, 3rem);
  }

  .hero-trades {
    align-items: stretch;
    padding-top: 5rem;
    min-height: auto;
  }

  .hero-trades-shade {
    background:
      linear-gradient(180deg, rgba(20, 20, 20, 0.55) 0%, rgba(20, 20, 20, 0.82) 45%, rgba(20, 20, 20, 0.95) 100%);
  }
}
