/* ============================================================
   TOPLINE STAINLESS WORX
   Industrial Precision — Forge Black / Spark Orange
   Build: Workflow Solutions
   ============================================================ */

/* ---------- 1. DESIGN TOKENS ---------- */
:root {
  /* Core palette */
  --color-bg:            #0D0D0D;   /* Forge Black */
  --color-surface:       #1A1A1A;   /* Steel Dark */
  --color-surface-mid:   #2A2A2A;   /* Gunmetal */
  --color-accent:        #C0C0C0;   /* Brushed Silver */
  --color-chrome:        #E8E8E8;   /* Chrome White */
  --color-spark:         #FF6B1A;   /* Spark Orange */
  --color-spark-hover:   #E55A0A;
  --color-muted:         #888888;   /* Steel Grey */
  --color-overlay:       rgba(13,13,13,0.75);

  /* Typography */
  --font-display:  'Bebas Neue', sans-serif;
  --font-heading:  'Barlow Condensed', sans-serif;
  --font-body:     'Inter', sans-serif;

  /* Type scale */
  --text-xs:    0.75rem;
  --text-sm:    0.875rem;
  --text-base:  1rem;
  --text-lg:    1.125rem;
  --text-xl:    1.25rem;
  --text-2xl:   1.5rem;
  --text-3xl:   1.875rem;
  --text-4xl:   2.25rem;
  --text-5xl:   3rem;
  --text-hero:  clamp(4rem, 10vw, 8rem);

  /* Font weights */
  --weight-regular:  400;
  --weight-medium:   500;
  --weight-semibold: 600;
  --weight-bold:     700;

  /* Spacing */
  --space-2:   0.5rem;
  --space-4:   1rem;
  --space-6:   1.5rem;
  --space-8:   2rem;
  --space-12:  3rem;
  --space-16:  4rem;
  --space-20:  5rem;
  --space-24:  6rem;
  --section-py: var(--space-20);

  /* Borders */
  --radius-none: 0px;
  --radius-sm:   2px;
  --border-steel: 1px solid rgba(192,192,192,0.12);
  --border-accent: 4px solid var(--color-spark);

  /* Shadows */
  --shadow-card: 0 2px 16px rgba(0,0,0,0.4);
  --shadow-glow: 0 0 24px rgba(255,107,26,0.15);

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;

  /* Layout */
  --container-max: 1200px;
  --container-px:  1.5rem;
  --nav-height:    88px;
}

/* ---------- 2. RESET ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-weight: var(--weight-regular);
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--color-chrome);
  background: var(--color-bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, select, textarea { font-family: inherit; font-size: inherit; }

/* Accessibility */
:focus-visible {
  outline: 2px solid var(--color-spark);
  outline-offset: 3px;
}
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  z-index: 999;
  background: var(--color-spark);
  color: var(--color-bg);
  padding: var(--space-2) var(--space-4);
  font-family: var(--font-heading);
  font-weight: var(--weight-semibold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.skip-link:focus { left: var(--space-4); top: var(--space-4); }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ---------- 3. LAYOUT PRIMITIVES ---------- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-px);
}

.section { padding: var(--section-py) 0; }
.section--dark { background: var(--color-bg); }
.section--mid  { background: var(--color-surface); }
.section + .section { border-top: var(--border-steel); }

.section__header { max-width: 720px; margin-bottom: var(--space-12); }
.section__header--center { margin-left: auto; margin-right: auto; text-align: center; }
.section__eyebrow {
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-spark);
  display: block;
  margin-bottom: var(--space-4);
}
.section__title {
  font-family: var(--font-heading);
  font-size: var(--text-4xl);
  font-weight: var(--weight-bold);
  color: var(--color-chrome);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.1;
}
.section__lead {
  margin-top: var(--space-4);
  color: var(--color-accent);
  font-size: var(--text-lg);
}

/* ---------- 4. BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-family: var(--font-heading);
  font-weight: var(--weight-semibold);
  font-size: var(--text-base);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: var(--radius-sm);
  padding: 14px 32px;
  transition: background var(--transition-base), color var(--transition-base),
              transform var(--transition-base), box-shadow var(--transition-base),
              border-color var(--transition-base);
  white-space: nowrap;
}
.btn--primary {
  background: var(--color-spark);
  color: var(--color-bg);
}
.btn--primary:hover {
  background: var(--color-spark-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}
.btn--ghost {
  background: transparent;
  border: 1px solid var(--color-accent);
  color: var(--color-accent);
}
.btn--ghost:hover {
  border-color: var(--color-spark);
  color: var(--color-spark);
}
.btn--block { width: 100%; }

/* ---------- 4b. ANNOUNCEMENT TICKER ---------- */
.ticker {
  background: var(--color-spark);
  color: var(--color-bg);
  overflow: hidden;
  position: relative;
}
.ticker__track {
  display: flex;
  width: max-content;
  white-space: nowrap;
  animation: ticker-scroll 36s linear infinite;
  will-change: transform;
}
.ticker:hover .ticker__track { animation-play-state: paused; }
.ticker__group { display: flex; align-items: center; flex-shrink: 0; }
.ticker__item {
  padding: 7px 0;
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.ticker__item a {
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-thickness: 1px;
  font-weight: var(--weight-bold);
}
.ticker__item a:hover { color: var(--color-surface); }
.ticker__sep { margin: 0 var(--space-8); opacity: 0.55; }
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .ticker { overflow-x: auto; }
  .ticker__track { animation: none; }
  .ticker__group + .ticker__group { display: none; }
}

/* ---------- 5. NAVIGATION ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-bg);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition-base);
}
.site-header.is-scrolled {
  border-bottom: 1px solid rgba(192,192,192,0.15);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
  gap: var(--space-6);
}
.nav__logo { display: flex; align-items: center; flex-shrink: 0; }
.nav__logo img { height: 44px; width: auto; }
.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-8);
  margin-left: auto;
}
.nav__link {
  font-family: var(--font-heading);
  font-weight: var(--weight-medium);
  font-size: var(--text-lg);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-accent);
  transition: color var(--transition-fast);
}
.nav__link:hover { color: var(--color-chrome); }
.nav__link.is-active { color: var(--color-spark); }
.nav .btn { margin-left: var(--space-4); }
/* In-drawer quote button: hidden on desktop (standalone nav button used instead) */
.nav__links .btn { display: none; }

.nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
}
.nav__hamburger span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--color-chrome);
  transition: transform var(--transition-base), opacity var(--transition-base);
}
.nav__hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.is-open span:nth-child(2) { opacity: 0; }
.nav__hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- 6. HERO ---------- */
.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - var(--nav-height));
  background: var(--color-bg);
  display: flex;
  align-items: center;
}

/* Looping photo background (crossfade welder 1 ⇄ welder 2) */
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  /* slow ken-burns drift + staggered 3-way crossfade (24s cycle, 8s each) */
  animation:
    hero-kenburns 24s ease-in-out infinite alternate,
    hero-crossfade 24s ease-in-out infinite;
}
.hero__slide--1 {
  background-image: url('/assets/images/homepage/hero-welder-1.webp');
  animation-delay: 0s, 0s;
}
.hero__slide--2 {
  background-image: url('/assets/images/homepage/hero-welder-2.webp');
  animation-delay: 0s, -8s;
}
.hero__slide--3 {
  background-image: url('/assets/images/homepage/hero-pic3.webp');
  animation-delay: 0s, -16s;
}
/* Dark wash for legibility — keeps the black-primary feel and the
   silver headline readable over the photos, heaviest on the left
   where the hero copy sits. */
.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(13,13,13,0.92) 0%, rgba(13,13,13,0.72) 45%, rgba(13,13,13,0.50) 100%),
    linear-gradient(180deg, rgba(13,13,13,0.55) 0%, rgba(13,13,13,0.35) 50%, rgba(13,13,13,0.80) 100%);
}
@keyframes hero-crossfade {
  0%               { opacity: 1; }
  25%              { opacity: 1; }
  33.333%          { opacity: 0; }
  91.666%          { opacity: 0; }
  100%             { opacity: 1; }
}
@keyframes hero-kenburns {
  from { transform: scale(1.06) translate3d(0, 0, 0); }
  to   { transform: scale(1.14) translate3d(-1.5%, -1.5%, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .hero__slide { animation: none; opacity: 0; }
  .hero__slide--1 { opacity: 1; } /* show a single still frame */
}

#hero-canvas {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 1;
  pointer-events: none;
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 860px;
  padding: var(--space-16) 0;
}
.hero__logo {
  width: 180px;
  height: 190px;
  margin: 0 auto var(--space-8);
  perspective: 1100px;
}
.hero__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  /* Pendulum swing: turns left to edge-on, bounces, turns right — stays within 180° */
  animation: hero-logo-swing 5s ease-in-out infinite alternate;
}
@keyframes hero-logo-swing {
  from { transform: rotateY(-55deg); }
  to   { transform: rotateY(55deg); }
}
@media (prefers-reduced-motion: reduce) {
  .hero__logo img { animation: none; }
}
.hero__eyebrow {
  font-family: var(--font-heading);
  font-weight: var(--weight-semibold);
  font-size: var(--text-lg);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--color-spark);
  margin-bottom: var(--space-6);
}
.hero__title {
  font-family: var(--font-display);
  font-weight: var(--weight-regular);
  font-size: var(--text-hero);
  line-height: 0.92;
  letter-spacing: 0.01em;
  color: var(--color-chrome);
  text-transform: uppercase;
}
.hero__title em {
  font-style: normal;
  /* brighter brushed highlight — the "polished" line of the headline */
  background: linear-gradient(180deg, #ffffff 0%, #d6d6d6 50%, #ffffff 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: var(--color-chrome);
}

/* Polish gleam on the final "T": a highlight runs up the stem and
   finishes with a bright stainless sparkle at the top-right of the crossbar.
   Kept small so the T itself stays fully visible. */
.hero__glint {
  position: relative;
  /* Re-apply the headline's brushed gradient: positioning this span puts it on
     its own paint layer, so the parent's background-clip:text no longer fills
     the "T". Without this the letter renders transparent (invisible). */
  background: linear-gradient(180deg, #ffffff 0%, #d6d6d6 50%, #ffffff 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: var(--color-chrome);
}
/* the gleam travelling up the stem of the T */
.hero__glint::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0.09em;
  height: 0.26em;
  transform: translateX(-50%);
  border-radius: 0.06em;
  /* cool stainless-white highlight */
  background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(220,238,255,0.4) 60%, rgba(220,238,255,0) 100%);
  filter: blur(0.4px) drop-shadow(0 0 4px rgba(225,242,255,0.9));
  opacity: 0;
  pointer-events: none;
  animation: hero-glint-run 4.4s ease-in-out infinite;
}
/* the stainless sparkle that pops at the top-right tip of the crossbar */
.hero__glint-spark {
  position: absolute;
  top: -0.03em;
  right: -0.05em;
  width: 0.3em;
  height: 0.3em;
  pointer-events: none;
  /* bright white core fading to a cool stainless blue-silver */
  background: radial-gradient(circle, #ffffff 0%, #eaf5ff 38%, rgba(190,220,255,0) 72%);
  clip-path: polygon(50% 0%, 58% 42%, 100% 50%, 58% 58%, 50% 100%, 42% 58%, 0% 50%, 42% 42%);
  filter:
    drop-shadow(0 0 4px rgba(230,244,255,0.95))
    drop-shadow(0 0 9px rgba(180,215,255,0.65));
  transform: translateZ(0) scale(0) rotate(0deg);
  opacity: 0;
  animation: hero-glint-pop 4.4s ease-in-out infinite;
}
/* gleam climbs from the baseline to the top of the stem */
@keyframes hero-glint-run {
  0%        { bottom: 0;       opacity: 0; }
  8%        { opacity: 0.95; }
  40%       { bottom: 0.62em;  opacity: 1; }
  48%, 100% { bottom: 0.7em;   opacity: 0; }
}
/* sparkle flashes as the gleam reaches the top-right tip, then fades */
@keyframes hero-glint-pop {
  0%, 40%   { transform: scale(0)    rotate(0deg);  opacity: 0; }
  50%       { transform: scale(1.1)  rotate(35deg); opacity: 1; }
  62%       { transform: scale(0.65) rotate(70deg); opacity: 0.85; }
  74%, 100% { transform: scale(0)    rotate(90deg); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .hero__glint::before { animation: none; opacity: 0; }
  .hero__glint-spark { animation: none; opacity: 0.95; transform: scale(0.9); }
}
.hero__sub {
  margin-top: var(--space-6);
  max-width: 560px;
  font-size: var(--text-lg);
  color: var(--color-accent);
}
.hero__actions {
  margin-top: var(--space-8);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
}

/* Page hero (interior pages) */
.page-hero {
  position: relative;
  background:
    linear-gradient(rgba(13,13,13,0.80), rgba(13,13,13,0.90)),
    url('/assets/images/hero-welding.svg');
  background-size: cover;
  background-position: center;
  padding: calc(var(--space-20) + var(--space-8)) 0 var(--space-20);
  border-bottom: var(--border-steel);
}
.page-hero__eyebrow {
  font-family: var(--font-heading);
  font-weight: var(--weight-semibold);
  font-size: var(--text-sm);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-spark);
  display: block;
  margin-bottom: var(--space-4);
}
.page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5rem);
  line-height: 0.95;
  text-transform: uppercase;
  color: var(--color-chrome);
}
.page-hero__sub {
  margin-top: var(--space-4);
  max-width: 640px;
  color: var(--color-accent);
  font-size: var(--text-lg);
}
.breadcrumb {
  margin-bottom: var(--space-6);
  font-size: var(--text-sm);
  color: var(--color-muted);
  letter-spacing: 0.04em;
}
.breadcrumb a:hover { color: var(--color-spark); }
.breadcrumb span { color: var(--color-accent); }

/* ---------- 7. TRUST BAR ---------- */
.trust-bar { background: var(--color-surface); border-top: var(--border-steel); border-bottom: var(--border-steel); }
.trust-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.trust-bar__item {
  padding: var(--space-8) var(--space-6);
  text-align: center;
  border-left: var(--border-steel);
}
.trust-bar__item:first-child { border-left: none; }
.trust-bar__value {
  font-family: var(--font-heading);
  font-weight: var(--weight-bold);
  font-size: var(--text-xl);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--color-chrome);
}
.trust-bar__label {
  margin-top: var(--space-2);
  font-size: var(--text-sm);
  color: var(--color-muted);
}

/* ---------- 8. SERVICE CARDS ---------- */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}
.service-card {
  position: relative;
  overflow: hidden;
  background: var(--color-surface);
  border-left: var(--border-accent);
  padding: var(--space-8);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-card);
  transition: background var(--transition-base), box-shadow var(--transition-base);
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  background: var(--color-surface-mid);
  box-shadow: var(--shadow-glow);
}
.service-card__icon {
  width: 48px; height: 48px;
  color: var(--color-accent);
  margin-bottom: var(--space-6);
}
.service-card__icon svg { width: 100%; height: 100%; }
.service-card__title {
  font-family: var(--font-heading);
  font-weight: var(--weight-semibold);
  font-size: var(--text-2xl);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--color-chrome);
  margin-bottom: var(--space-4);
}
.service-card__body { color: var(--color-muted); font-size: var(--text-base); margin-bottom: var(--space-6); }
.service-card__link {
  margin-top: auto;
  font-family: var(--font-heading);
  font-weight: var(--weight-semibold);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-spark);
  transition: gap var(--transition-fast);
}
.service-card__link:hover { color: var(--color-spark-hover); }

/* Border shine effect */
.service-card::after {
  content: '';
  position: absolute;
  top: -40%;
  left: 0;
  width: 4px;
  height: 40%;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(255, 200, 100, 0.9) 40%,
    rgba(255, 107, 26, 1) 50%,
    rgba(255, 200, 100, 0.9) 60%,
    transparent 100%
  );
  opacity: 0;
  transition: opacity 100ms ease;
}
.service-card:hover::after {
  opacity: 1;
  animation: borderShine 600ms ease forwards;
}
@keyframes borderShine {
  0%   { top: -40%; }
  100% { top: 140%; }
}

/* ---------- 9. ABOUT STRIP (split) ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  gap: 0;
}
.split--reverse .split__media { order: 2; }
.split__media {
  position: relative;
  min-height: 420px;
  background-size: cover;
  background-position: center;
}
.split__media::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(13,13,13,0.55), rgba(13,13,13,0.15));
}
.split__body {
  padding: var(--space-16) var(--space-12);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--color-surface);
}
.split__body p { color: var(--color-muted); margin-bottom: var(--space-4); }
.split__body p:last-of-type { margin-bottom: var(--space-8); }
.split__actions { margin-top: var(--space-4); }

/* ---------- 10. WHY CHOOSE / FEATURE TILES ---------- */
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
}
.feature-tile {
  background: var(--color-surface);
  border: var(--border-steel);
  border-top: 2px solid rgba(192,192,192,0.35);
  padding: var(--space-8) var(--space-6);
  border-radius: var(--radius-sm);
  transition: background var(--transition-base), transform var(--transition-base), border-color var(--transition-base);
}
.feature-tile:hover { background: var(--color-surface-mid); transform: translateY(-3px); border-top-color: var(--color-spark); }
.feature-tile__icon { width: 40px; height: 40px; color: var(--color-accent); margin-bottom: var(--space-6); transition: color var(--transition-base); }
.feature-tile:hover .feature-tile__icon { color: var(--color-spark); }
.feature-tile__icon svg { width: 100%; height: 100%; }
.feature-tile__title {
  font-family: var(--font-heading);
  font-weight: var(--weight-semibold);
  font-size: var(--text-xl);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--color-chrome);
  margin-bottom: var(--space-2);
}
.feature-tile__body { color: var(--color-muted); font-size: var(--text-sm); }

/* ---------- 11. GALLERY ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  aspect-ratio: 4 / 3;
  background: var(--color-surface-mid);
  border: var(--border-steel);
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform var(--transition-base);
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item__caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: var(--space-6) var(--space-4) var(--space-4);
  background: linear-gradient(to top, rgba(13,13,13,0.9), transparent);
  font-family: var(--font-heading);
  font-weight: var(--weight-semibold);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: var(--text-sm);
  color: var(--color-chrome);
}
.gallery-item__tag {
  position: absolute;
  top: var(--space-4); left: var(--space-4);
  font-family: var(--font-heading);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-spark);
  background: rgba(13,13,13,0.7);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
}

/* ---------- 12. TESTIMONIALS ---------- */
/* ---- Google reviews summary bar ---- */
.greviews-summary {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  flex-wrap: wrap;
  background: var(--color-surface);
  border: var(--border-steel);
  border-radius: var(--radius-sm);
  padding: var(--space-6) var(--space-8);
  margin-bottom: var(--space-8);
}
.greviews-summary__logo { flex: 0 0 auto; }
.greviews-summary__text { flex: 1 1 auto; min-width: 180px; }
.greviews-summary__title {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--color-muted);
  letter-spacing: 0.02em;
}
.greviews-summary__rating { display: flex; align-items: center; gap: var(--space-2); margin: 2px 0; }
.greviews-summary__score {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  line-height: 1;
  color: var(--color-chrome);
}
.greviews-summary__stars { color: #FBBC05; font-size: var(--text-xl); letter-spacing: 0.05em; }
.greviews-summary__count { font-size: var(--text-sm); color: var(--color-muted); }
.greviews-summary__cta {
  flex: 0 0 auto;
  border: 1px solid var(--color-accent);
  color: var(--color-accent);
  font-family: var(--font-heading);
  font-weight: var(--weight-semibold);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: var(--text-sm);
  padding: var(--space-2) var(--space-6);
  border-radius: var(--radius-sm);
  transition: color var(--transition-base), border-color var(--transition-base);
}
.greviews-summary__cta:hover { border-color: var(--color-spark); color: var(--color-spark); }

/* ---- Individual Google review cards ---- */
.greview {
  background: var(--color-surface);
  border: var(--border-steel);
  border-radius: var(--radius-sm);
  padding: var(--space-8);
  display: flex;
  flex-direction: column;
}
.greview__head { display: flex; align-items: center; gap: var(--space-4); margin-bottom: var(--space-6); }
.greview__avatar {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: var(--font-heading);
  font-weight: var(--weight-semibold);
  font-size: var(--text-base);
  letter-spacing: 0.02em;
}
.greview__id { flex: 1 1 auto; min-width: 0; }
.greview__name {
  font-family: var(--font-heading);
  font-weight: var(--weight-semibold);
  color: var(--color-chrome);
  letter-spacing: 0.02em;
}
.greview__meta { font-size: var(--text-sm); color: var(--color-muted); }
.greview__g { flex: 0 0 auto; opacity: 0.9; }
.greview__stars { color: #FBBC05; letter-spacing: 0.1em; margin-bottom: var(--space-4); }
.greview__body { color: var(--color-chrome); margin-bottom: var(--space-6); }
.greview__foot {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding-top: var(--space-4);
  border-top: var(--border-steel);
  font-size: var(--text-sm);
  color: var(--color-muted);
}
.greview__verified { flex: 0 0 auto; }
/* ---------- 13. CTA STRIP ---------- */
.cta-strip {
  position: relative;
  background: var(--color-surface);
  border-top: 2px solid var(--color-spark);
  text-align: center;
}
.cta-strip__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 0.95;
  text-transform: uppercase;
  color: var(--color-chrome);
}
.cta-strip__sub { margin: var(--space-4) auto var(--space-8); max-width: 560px; color: var(--color-accent); }
.cta-strip__actions { display: flex; flex-wrap: wrap; gap: var(--space-4); justify-content: center; }
.cta-strip .container { position: relative; z-index: 1; }

/* --- CTA photo banner: darkened image set per page via inline background-image --- */
.cta-strip--photo {
  background-size: cover;
  background-position: center;
}
/* Override the inherited 1px section divider (.section + .section) — a semi-
   transparent top border let the bright image show through above the overlay.
   Selector specificity (0,2,0) matches that rule and wins on source order. */
.section.cta-strip--photo { border-top: none; }
.cta-strip--photo::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(rgba(13,13,13,0.82), rgba(13,13,13,0.88));
}

/* ---------- 14. SERVICES PAGE — detail rows ---------- */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: center;
  padding: var(--space-16) 0;
  border-bottom: var(--border-steel);
  scroll-margin-top: calc(var(--nav-height) + var(--space-8));
}
.service-detail:last-child { border-bottom: none; }
.service-detail--reverse .service-detail__media { order: 2; }
.service-detail__media {
  min-height: 320px;
  border-radius: var(--radius-sm);
  border: var(--border-steel);
  background:
    linear-gradient(rgba(13,13,13,0.35), rgba(13,13,13,0.55)),
    repeating-linear-gradient(135deg, #1f1f1f 0 14px, #242424 14px 28px);
  position: relative;
}
.service-detail__num {
  font-family: var(--font-display);
  font-size: 6rem;
  /* hollow brushed-steel numeral — promotes the stainless feel, not heat */
  color: transparent;
  -webkit-text-stroke: 1px rgba(192,192,192,0.45);
  position: absolute;
  bottom: var(--space-4); right: var(--space-6);
  line-height: 1;
}
.service-detail__eyebrow {
  font-family: var(--font-heading);
  font-weight: var(--weight-semibold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: var(--text-sm);
  color: var(--color-spark);
  margin-bottom: var(--space-4);
  display: block;
}
.service-detail__title {
  font-family: var(--font-heading);
  font-weight: var(--weight-bold);
  font-size: var(--text-3xl);
  text-transform: uppercase;
  color: var(--color-chrome);
  margin-bottom: var(--space-4);
}
.service-detail__body { color: var(--color-muted); margin-bottom: var(--space-6); }
.service-detail__list { display: grid; gap: var(--space-2); }
.service-detail__list li {
  position: relative;
  padding-left: var(--space-6);
  color: var(--color-accent);
  font-size: var(--text-sm);
}
.service-detail__list li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.55em;
  width: 7px; height: 7px;
  background: var(--color-accent);
}

/* ---------- 16. CONTACT PAGE ---------- */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
}
.form {
  background: var(--color-surface);
  border: var(--border-steel);
  border-radius: var(--radius-sm);
  padding: var(--space-8);
}
.form__row { margin-bottom: var(--space-6); }
.form__label {
  display: block;
  font-family: var(--font-heading);
  font-weight: var(--weight-semibold);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: var(--text-sm);
  color: var(--color-accent);
  margin-bottom: var(--space-2);
}
.form__label .req { color: var(--color-spark); }
.form__control {
  width: 100%;
  background: var(--color-bg);
  border: 1px solid rgba(192,192,192,0.18);
  border-radius: var(--radius-sm);
  color: var(--color-chrome);
  padding: 12px 14px;
  transition: border-color var(--transition-fast);
}
.form__control:focus { outline: none; border-color: var(--color-spark); }
.form__control::placeholder { color: var(--color-muted); }
textarea.form__control { resize: vertical; min-height: 120px; }

/* Invalid field + inline per-field error message */
.form__control--invalid { border-color: #b42828; }
.form__control--invalid:focus { border-color: #b42828; }
.form__error {
  display: none;
  margin-top: var(--space-2);
  font-size: var(--text-sm);
  color: #e06363;
}
.form__error.is-visible { display: block; }

/* Honeypot — visually hidden, off-screen, never focusable for real users */
.form__hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.form__status {
  margin-top: var(--space-4);
  padding: var(--space-4);
  border-radius: var(--radius-sm);
  font-size: var(--text-sm);
  display: none;
}
.form__status.is-visible { display: block; }
.form__status--success { background: rgba(255,107,26,0.12); border: 1px solid var(--color-spark); color: var(--color-chrome); }
.form__status--error { background: rgba(180,40,40,0.15); border: 1px solid #b42828; color: var(--color-chrome); }

.contact-aside { display: flex; flex-direction: column; gap: var(--space-6); }
.info-card {
  background: var(--color-surface);
  border: var(--border-steel);
  border-left: var(--border-accent);
  border-radius: var(--radius-sm);
  padding: var(--space-6);
}
.info-card__label {
  font-family: var(--font-heading);
  font-weight: var(--weight-semibold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: var(--text-sm);
  color: var(--color-spark);
  margin-bottom: var(--space-2);
}
.info-card__value { color: var(--color-chrome); }
.info-card__value a:hover { color: var(--color-spark); }
.map-frame {
  width: 100%;
  height: 380px;
  border: var(--border-steel);
  border-radius: var(--radius-sm);
  min-height: 280px;
  background: var(--color-surface);
}

/* ---- Custom map pin with logo ---- */
.map-pin-wrap { background: none; border: 0; }
.map-pin { position: relative; width: 48px; height: 62px; }
.map-pin__shape {
  width: 48px;
  height: 62px;
  display: block;
  filter: drop-shadow(0 4px 6px rgba(0,0,0,0.45));
}
.map-pin__logo {
  position: absolute;
  top: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.map-pin__logo img { width: 100%; height: 100%; object-fit: contain; }

/* ---- Leaflet popup themed to brand ---- */
.leaflet-popup-content-wrapper {
  background: var(--color-surface);
  color: var(--color-chrome);
  border: 1px solid var(--color-spark);
  border-radius: var(--radius-sm);
}
.leaflet-popup-content { font-family: var(--font-body); font-size: var(--text-sm); line-height: 1.5; }
.leaflet-popup-content strong { font-family: var(--font-heading); color: var(--color-spark); letter-spacing: 0.02em; }
.leaflet-popup-tip { background: var(--color-surface); }
.leaflet-container a.leaflet-popup-close-button { color: var(--color-muted); }
.leaflet-container a.leaflet-popup-close-button:hover { color: var(--color-spark); }

/* ---------- 17. FOOTER ---------- */
.footer {
  background: var(--color-bg);
  border-top: var(--border-steel);
  padding: var(--space-20) 0 var(--space-8);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: var(--space-12);
  margin-bottom: var(--space-16);
}
.footer__brand img { height: 40px; margin-bottom: var(--space-6); }
.footer__brand p { color: var(--color-muted); max-width: 320px; }
.footer__heading {
  font-family: var(--font-heading);
  font-weight: var(--weight-semibold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: var(--text-base);
  color: var(--color-chrome);
  margin-bottom: var(--space-6);
}
.footer__links { display: grid; gap: var(--space-2); }
.footer__links li, .footer__links a { color: var(--color-muted); font-size: var(--text-sm); }
.footer__links a:hover { color: var(--color-spark); }
.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--space-4);
  padding-top: var(--space-8);
  border-top: var(--border-steel);
  font-size: var(--text-sm);
  color: var(--color-muted);
}
.footer__bottom a { color: var(--color-accent); }
.footer__bottom a:hover { color: var(--color-spark); }

/* ---------- 18. WHATSAPP FLOAT ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 200;
  box-shadow: 0 4px 16px rgba(0,0,0,0.4);
  transition: transform var(--transition-fast);
}
.whatsapp-float:hover { transform: scale(1.08); }
.whatsapp-float svg { width: 30px; height: 30px; fill: #fff; }

/* ---------- 19. SCROLL ANIMATIONS ---------- */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 500ms ease, transform 500ms ease;
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- 20. UTILITIES ---------- */
.text-center { text-align: center; }
.mt-8 { margin-top: var(--space-8); }
.intro-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: var(--space-12); align-items: start; }
.intro-grid p { color: var(--color-muted); margin-bottom: var(--space-4); }
.stat-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-6); margin-top: var(--space-8); }
.stat { border-left: 4px solid rgba(192,192,192,0.45); padding-left: var(--space-4); }
.stat__num { font-family: var(--font-display); font-size: var(--text-4xl); color: var(--color-chrome); line-height: 1; }
.stat__label { color: var(--color-muted); font-size: var(--text-sm); }

/* ============================================================
   BRUSHED-STEEL HEADLINES
   Silver carries the stainless finish; orange stays an accent.
   ============================================================ */
.hero__title,
.page-hero__title,
.cta-strip__title,
.section__title,
.trust-bar__value {
  background: linear-gradient(180deg, #f4f4f4 0%, #cdcdcd 46%, #9a9a9a 56%, #e4e4e4 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--color-chrome); /* fallback for browsers without background-clip:text */
}
/* subtle brushed seam under each section header */
.section__header::after {
  content: '';
  display: block;
  width: 64px; height: 2px;
  margin-top: var(--space-6);
  background: linear-gradient(90deg, var(--color-spark) 0 22px, rgba(192,192,192,0.4) 22px 64px);
}
.section__header--center::after { margin-left: auto; margin-right: auto; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  :root { --section-py: var(--space-16); }

  /* Nav → hamburger */
  .nav__hamburger { display: flex; }
  .nav > .btn { display: none; }
  .nav__links {
    position: fixed;
    top: var(--nav-height);
    left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--color-bg);
    border-top: var(--border-steel);
    border-bottom: var(--border-steel);
    padding: var(--space-4) 0;
    transform: translateY(-120%);
    transition: transform var(--transition-base);
    z-index: 99;
  }
  .nav__links.is-open { transform: translateY(0); }
  .nav__links li { width: 100%; }
  .nav__link { display: block; padding: var(--space-4) var(--container-px); font-size: var(--text-2xl); }
  .nav__links .btn { display: inline-flex; margin: var(--space-4) var(--container-px) 0; }

  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .trust-bar__grid { grid-template-columns: repeat(2, 1fr); }
  .trust-bar__item:nth-child(-n+2) { border-bottom: var(--border-steel); }
  .trust-bar__item:nth-child(odd) { border-left: none; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }

  .split, .service-detail, .contact-layout, .intro-grid { grid-template-columns: 1fr; }
  .split--reverse .split__media,
  .service-detail--reverse .service-detail__media { order: 0; }
  .split__media, .service-detail__media { min-height: 280px; }
  .split__body { padding: var(--space-12) var(--container-px); }

  .hero { min-height: auto; padding: var(--space-16) 0; }
}

@media (max-width: 520px) {
  .grid-3, .grid-4, .gallery-grid { grid-template-columns: 1fr; }
  .trust-bar__grid { grid-template-columns: 1fr; }
  .trust-bar__item { border-left: none !important; border-bottom: var(--border-steel); }
  .stat-row { grid-template-columns: 1fr; }
  .hero__actions .btn, .cta-strip__actions .btn { width: 100%; }
}

/* ---------- REDUCED MOTION ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .animate-on-scroll { opacity: 1; transform: none; transition: none; }
  .service-card::after { display: none; }
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}
