/*
 * Hexcentric Roof Structures P Ltd — Global Design System
 * Tailwind v4 @theme configuration (compile with: npx tailwindcss -i css/global.css -o css/output.css)
 * For static deployment, this file is used as standalone CSS with CSS custom properties.
 */

@import "tailwindcss";

@theme {
  --color-brand-primary:   #C4622D;
  --color-brand-secondary: #4A6274;

  --color-base-950: #0D1117;
  --color-base-900: #111820;
  --color-base-800: #1A2332;
  --color-base-700: #243041;
  --color-base-300: #8CA0AC;
  --color-base-100: #E8EDF0;

  --font-display: "Outfit", system-ui, sans-serif;
  --font-body:    "Inter", system-ui, sans-serif;

  --ease-premium: cubic-bezier(0.16, 1, 0.3, 1);
  --duration-slow: 700ms;

  --background-image-hero-glow: radial-gradient(ellipse 80% 50% at 50% -20%, oklch(0.55 0.13 38 / 25%), transparent);
  --background-image-brand-gradient: linear-gradient(135deg, #C4622D, #4A6274);
}

/* ─────────────────────────────────────────
   CSS CUSTOM PROPERTIES (Runtime tokens)
───────────────────────────────────────── */
:root {
  --brand-primary:   #C4622D;
  --brand-secondary: #4A6274;
  --brand-primary-hover: #d97340;
  --brand-primary-dim: rgba(196, 98, 45, 0.15);

  --base-950: #0D1117;
  --base-900: #111820;
  --base-800: #1A2332;
  --base-700: #243041;
  --base-600: #2E3D50;
  --base-300: #8CA0AC;
  --base-200: #AEBFC9;
  --base-100: #E8EDF0;

  --font-display: "Outfit", system-ui, sans-serif;
  --font-body:    "Inter", system-ui, sans-serif;

  --ease-premium: cubic-bezier(0.16, 1, 0.3, 1);
  --duration-fast: 200ms;
  --duration-mid: 400ms;
  --duration-slow: 700ms;

  --hero-glow: radial-gradient(ellipse 80% 50% at 50% -20%, rgba(196, 98, 45, 0.25), transparent);
  --brand-gradient: linear-gradient(135deg, #C4622D, #4A6274);
  --card-glow: 0 0 0 1px rgba(196, 98, 45, 0);

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 20px;

  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.4);
  --shadow-card-hover: 0 8px 40px rgba(196, 98, 45, 0.2), 0 4px 24px rgba(0, 0, 0, 0.5);
  --shadow-nav: 0 1px 0 rgba(255, 255, 255, 0.05);

  /* 21st.dev compatibility token */
  --primary-hover: rgba(196, 98, 45, 0.25);
}

/* ─────────────────────────────────────────
   RESET & BASE
───────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  overflow-x: clip;
}

body {
  background-color: var(--base-950);
  color: var(--base-300);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  min-height: 100vh;
  overflow-x: clip;
}

main {
  overflow-x: clip;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--duration-fast) ease;
}

ul, ol { list-style: none; }

button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* Focus styles for accessibility */
:focus-visible {
  outline: 2px solid var(--brand-primary);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

/* ─────────────────────────────────────────
   TYPOGRAPHY SCALE
───────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--base-100);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.25rem, 5vw, 4rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p { margin-bottom: 0; }

.text-display {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.text-overline {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brand-primary);
}

.text-body { color: var(--base-300); }
.text-muted { color: var(--base-300); opacity: 0.7; }
.text-heading { color: var(--base-100); }
.text-copper { color: var(--brand-primary); }
.text-steel  { color: var(--brand-secondary); }

/* ─────────────────────────────────────────
   LAYOUT UTILITIES
───────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: 1.5rem;
  min-width: 0;
}

.section {
  padding-block: 5rem;
}

.section--lg {
  padding-block: 7rem;
}

.section--sm {
  padding-block: 3rem;
}

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5rem; }

.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-col { display: flex; flex-direction: column; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }
.gap-4 { gap: 2rem; }
.gap-6 { gap: 3rem; }

/* ─────────────────────────────────────────
   SECTION HEADERS
───────────────────────────────────────── */
.section-header {
  margin-bottom: 3.5rem;
}

.section-header--center {
  text-align: center;
  max-width: 720px;
  margin-inline: auto;
  margin-bottom: 3.5rem;
}

.section-header .subtitle {
  margin-top: 1rem;
  font-size: 1.0625rem;
  color: var(--base-300);
  max-width: 640px;
}

/* ─────────────────────────────────────────
   BUTTONS
───────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8125rem 1.75rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9375rem;
  letter-spacing: 0.01em;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: all var(--duration-mid) var(--ease-premium);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity var(--duration-fast) ease;
}

.btn-primary {
  background: var(--brand-primary);
  color: #fff;
  box-shadow: 0 4px 20px rgba(196, 98, 45, 0.35);
}

.btn-primary::before {
  background: rgba(255,255,255,0.1);
}

.btn-primary:hover {
  background: var(--brand-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(196, 98, 45, 0.45);
}

.btn-primary:hover::before { opacity: 1; }

.btn-secondary {
  background: rgba(255,255,255,0.04);
  color: var(--base-100);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(196, 98, 45, 0.5);
  color: var(--base-100);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--brand-primary);
  border: 1.5px solid var(--brand-primary);
}

.btn-outline:hover {
  background: var(--brand-primary-dim);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 0.5rem 1.125rem;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 1rem 2.25rem;
  font-size: 1rem;
}

.btn-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* ─────────────────────────────────────────
   NAVIGATION
───────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0.875rem 0 1.35rem;
  transition:
    background var(--duration-mid) var(--ease-premium),
    padding var(--duration-mid) var(--ease-premium),
    box-shadow var(--duration-mid) var(--ease-premium),
    border-color var(--duration-mid) var(--ease-premium);
  background: linear-gradient(
    180deg,
    rgba(243, 237, 230, 0.98) 0%,
    rgba(243, 237, 230, 0.94) 45%,
    rgba(243, 237, 230, 0.55) 78%,
    rgba(243, 237, 230, 0) 100%
  );
  border-bottom: 1px solid rgba(196, 98, 45, 0.1);
}

.site-header.scrolled {
  background: rgba(13, 17, 23, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 0.65rem 0;
  box-shadow: var(--shadow-nav);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  flex-shrink: 0;
  min-width: 0;
}

.site-logo img,
.site-logo svg {
  box-sizing: border-box;
  object-fit: contain;
  flex-shrink: 0;
}

/* Hero / top-of-page: large natural logo on light header bar */
.site-header:not(.scrolled) .site-logo img,
.site-header:not(.scrolled) .site-logo svg {
  width: 80px;
  height: 80px;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  box-shadow: none;
  filter: none;
}

.site-header.scrolled .site-logo img,
.site-header.scrolled .site-logo svg {
  width: 52px;
  height: 52px;
  padding: 4px;
  border-radius: 12px;
  background: linear-gradient(
    160deg,
    rgba(196, 98, 45, 0.18) 0%,
    rgba(17, 24, 32, 0.92) 100%
  );
  border: 1px solid rgba(196, 98, 45, 0.35);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
  filter: brightness(1.1);
}

.site-footer .site-logo img,
.site-footer .site-logo svg {
  width: 56px;
  height: 56px;
  padding: 5px;
  border-radius: 10px;
  background: rgba(243, 237, 230, 0.94);
  border: 1px solid rgba(196, 98, 45, 0.15);
  box-shadow: none;
  filter: none;
}

.site-footer .logo-name {
  color: var(--base-100);
}

.site-footer .logo-tagline {
  color: var(--base-300);
  font-size: 0.6rem;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
  gap: 0.2rem;
}

.logo-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.3125rem;
  color: var(--base-900);
  letter-spacing: -0.025em;
  text-shadow: none;
  transition: color var(--duration-mid) var(--ease-premium);
}

.logo-tagline {
  font-size: 0.625rem;
  font-weight: 600;
  color: var(--base-700);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-shadow: none;
  transition: color var(--duration-mid) var(--ease-premium);
}

.site-header.scrolled .logo-name {
  color: var(--base-100);
  font-size: 1.0625rem;
  font-weight: 700;
}

.site-header.scrolled .logo-tagline {
  color: var(--base-300);
  font-size: 0.6rem;
}

.site-header:not(.scrolled) .nav-link {
  color: var(--base-700);
}

.site-header:not(.scrolled) .nav-link:hover,
.site-header:not(.scrolled) .nav-link.active {
  color: var(--base-900);
}

.site-header:not(.scrolled) .mobile-menu-btn span {
  background: var(--base-900);
}

.site-header.scrolled .mobile-menu-btn span {
  background: var(--base-100);
}

/* Photo hero pages: dark header — avoids light bar over background image */
body:has(.page-hero) .site-header:not(.scrolled),
body:has(.hero) .site-header:not(.scrolled) {
  background: linear-gradient(
    180deg,
    rgba(13, 17, 23, 0.9) 0%,
    rgba(13, 17, 23, 0.65) 55%,
    rgba(13, 17, 23, 0) 100%
  );
  border-bottom: none;
}

body:has(.page-hero) .site-header:not(.scrolled) .logo-name,
body:has(.hero) .site-header:not(.scrolled) .logo-name {
  color: var(--base-100);
  font-weight: 700;
}

body:has(.page-hero) .site-header:not(.scrolled) .logo-tagline,
body:has(.hero) .site-header:not(.scrolled) .logo-tagline {
  color: var(--base-300);
}

body:has(.page-hero) .site-header:not(.scrolled) .nav-link,
body:has(.hero) .site-header:not(.scrolled) .nav-link {
  color: var(--base-300);
}

body:has(.page-hero) .site-header:not(.scrolled) .nav-link:hover,
body:has(.page-hero) .site-header:not(.scrolled) .nav-link.active,
body:has(.hero) .site-header:not(.scrolled) .nav-link:hover,
body:has(.hero) .site-header:not(.scrolled) .nav-link.active {
  color: var(--base-100);
}

body:has(.page-hero) .site-header:not(.scrolled) .mobile-menu-btn span,
body:has(.hero) .site-header:not(.scrolled) .mobile-menu-btn span {
  background: var(--base-100);
}

body:has(.page-hero) .site-header:not(.scrolled) .btn-primary.btn-sm,
body:has(.hero) .site-header:not(.scrolled) .btn-primary.btn-sm {
  box-shadow: 0 2px 12px rgba(196, 98, 45, 0.35);
}

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

.nav-link {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--base-300);
  padding: 0.5rem 0.875rem;
  border-radius: var(--radius-sm);
  transition: color var(--duration-fast) ease, background var(--duration-fast) ease;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--brand-primary);
  border-radius: 2px;
  transition: width var(--duration-mid) var(--ease-premium);
}

.nav-link:hover,
.nav-link.active {
  color: var(--base-100);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: calc(100% - 1.75rem);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Mobile nav toggle */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  cursor: pointer;
  border: none;
  background: transparent;
  padding: 4px;
  border-radius: var(--radius-sm);
  transition: all var(--duration-fast) ease;
}

.mobile-menu-btn span {
  display: block;
  height: 2px;
  background: var(--base-100);
  border-radius: 2px;
  transition: all var(--duration-mid) var(--ease-premium);
  transform-origin: center;
}

.mobile-menu-btn[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.mobile-menu-btn[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.mobile-menu-btn[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile drawer — transform driven by Motion (js/motion.js) */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  padding-top: 80px;
  background: rgba(13, 17, 23, 0.97);
  backdrop-filter: blur(20px);
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 0.5rem;
  padding-inline: 2rem;
  will-change: transform;
}

.mobile-nav-link {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--base-300);
  padding: 1rem 0;
  width: 100%;
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color var(--duration-fast) ease;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: var(--brand-primary);
}

.mobile-nav-actions {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  width: 100%;
}

/* ─────────────────────────────────────────
   HERO SECTION
───────────────────────────────────────── */
.hero,
.page-hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: clamp(580px, 82vh, 900px);
  padding-top: 148px;
  padding-bottom: 5rem;
  background-color: var(--base-950);
  overflow: hidden;
}

.hero {
  --hero-bg-image: url("/assets/images/hero/hero-bg.webp");
}

.hero::before,
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--hero-bg-image);
  background-size: cover;
  background-position: center 35%;
  background-repeat: no-repeat;
  z-index: 0;
  pointer-events: none;
  transform-origin: center center;
  animation: heroKenBurnsIn 1.5s var(--ease-premium) forwards;
}

@keyframes heroKenBurnsIn {
  from { transform: scale(1.06); }
  to { transform: scale(1); }
}

.hero::after,
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to bottom,
    rgba(13, 17, 23, 0.45) 0%,
    rgba(13, 17, 23, 0.5) 40%,
    rgba(13, 17, 23, 0.85) 100%
  );
  pointer-events: none;
}

.hero .container,
.page-hero .container {
  position: relative;
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 820px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0.875rem;
  background: rgba(196, 98, 45, 0.12);
  border: 1px solid rgba(196, 98, 45, 0.25);
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-primary);
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--base-100);
  margin-bottom: 1.5rem;
}

.hero h1 .accent {
  color: var(--brand-primary);
}

.hero-subtitle {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: var(--base-300);
  line-height: 1.75;
  margin-bottom: 2.5rem;
  max-width: 680px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

/* Social proof strip */
.proof-strip {
  display: flex;
  align-items: stretch;
  gap: 0;
  flex-wrap: nowrap;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  background: rgba(26, 35, 50, 0.7);
  backdrop-filter: blur(8px);
  overflow: hidden;
  width: 100%;
  max-width: 100%;
}

.proof-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex: 1 1 0;
  min-width: 0;
  padding: 0.625rem 0.75rem;
  border-right: 1px solid rgba(255,255,255,0.08);
}

.proof-item:last-child { border-right: none; }

.proof-icon {
  width: 18px;
  height: 18px;
  color: var(--brand-primary);
  flex-shrink: 0;
}

.proof-text {
  font-size: clamp(0.6875rem, 1.1vw, 0.8125rem);
  font-weight: 600;
  color: var(--base-100);
  white-space: nowrap;
}

/* ─────────────────────────────────────────
   CARDS
───────────────────────────────────────── */
.card {
  background: var(--base-800);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--duration-mid) var(--ease-premium);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid transparent;
  background: linear-gradient(135deg, rgba(196, 98, 45, 0), rgba(196, 98, 45, 0)) border-box;
  transition: background var(--duration-mid) ease;
  pointer-events: none;
}

.card:hover {
  background: var(--base-700);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
  border-color: rgba(196, 98, 45, 0.3);
}

.card-icon {
  width: 52px;
  height: 52px;
  background: var(--brand-primary-dim);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--brand-primary);
  transition: background var(--duration-fast) ease;
}

.card:hover .card-icon {
  background: rgba(196, 98, 45, 0.25);
}

.card-icon svg {
  width: 26px;
  height: 26px;
}

.card h3 {
  font-size: 1.125rem;
  margin-bottom: 0.625rem;
}

.card p {
  font-size: 0.9375rem;
  color: var(--base-300);
  line-height: 1.7;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--brand-primary);
  margin-top: 1.25rem;
  transition: gap var(--duration-fast) ease;
}

.card-link:hover {
  gap: 0.625rem;
}

/* Service cards */
.service-card {
  background: var(--base-800);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--duration-mid) var(--ease-premium);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-card-hover);
  border-color: rgba(196, 98, 45, 0.3);
}

.service-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.service-card-body {
  padding: 1.5rem;
}

.service-tag {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-primary);
  background: var(--brand-primary-dim);
  padding: 0.25rem 0.625rem;
  border-radius: 100px;
  margin-bottom: 0.75rem;
}

/* ─────────────────────────────────────────
   AUTHORITY / RISK SECTION
───────────────────────────────────────── */
.authority-section {
  background: var(--base-900);
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.authority-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.authority-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.authority-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.authority-dot {
  width: 32px;
  height: 32px;
  background: var(--brand-primary-dim);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--brand-primary);
}

.authority-dot svg { width: 16px; height: 16px; }

.authority-section-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: block;
}

.location-map-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
}

/* ─────────────────────────────────────────
   COMPLIANCE BADGES
───────────────────────────────────────── */
.compliance-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}

.compliance-badge {
  background: var(--base-800);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1rem;
  text-align: center;
  transition: all var(--duration-mid) var(--ease-premium);
}

.compliance-badge:hover {
  border-color: rgba(196, 98, 45, 0.35);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(196, 98, 45, 0.15);
}

.compliance-icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 0.875rem;
  background: var(--brand-primary-dim);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-primary);
}

.compliance-icon svg { width: 22px; height: 22px; }

.compliance-badge h4 {
  font-size: 0.875rem;
  margin-bottom: 0.375rem;
  color: var(--base-100);
}

.compliance-badge p {
  font-size: 0.75rem;
  color: var(--base-300);
  line-height: 1.5;
}

/* ─────────────────────────────────────────
   TESTIMONIALS
───────────────────────────────────────── */
.testimonial-card {
  background: var(--base-800);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 1.25rem;
  right: 1.75rem;
  font-size: 4rem;
  font-family: var(--font-display);
  color: var(--brand-primary);
  opacity: 0.25;
  line-height: 1;
}

.stars {
  display: flex;
  gap: 3px;
  margin-bottom: 1rem;
  color: #FBBF24;
}

.testimonial-text {
  font-size: 0.9375rem;
  color: var(--base-300);
  line-height: 1.75;
  margin-bottom: 1.25rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--brand-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  flex-shrink: 0;
}

.author-name {
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--base-100);
  display: block;
}

.author-title {
  font-size: 0.8125rem;
  color: var(--base-300);
}

/* ─────────────────────────────────────────
   FORMS
───────────────────────────────────────── */
.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--base-100);
  margin-bottom: 0.5rem;
  letter-spacing: 0.01em;
}

.form-label .required {
  color: var(--brand-primary);
  margin-left: 3px;
}

.form-control {
  width: 100%;
  background: var(--base-800);
  border: 1.5px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  color: var(--base-100);
  padding: 0.8125rem 1rem;
  font-size: 0.9375rem;
  transition: border-color var(--duration-fast) ease, box-shadow var(--duration-fast) ease;
  appearance: none;
}

.form-control:focus {
  outline: none;
  border-color: var(--brand-primary);
  box-shadow: 0 0 0 3px rgba(196, 98, 45, 0.15);
}

.form-control::placeholder {
  color: var(--base-300);
  opacity: 0.6;
}

.form-control option {
  background: var(--base-800);
  color: var(--base-100);
}

textarea.form-control {
  resize: vertical;
  min-height: 130px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

/* Alert / notification */
.alert {
  display: none;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  font-size: 0.9375rem;
  font-weight: 500;
  margin-bottom: 1.25rem;
  align-items: center;
  gap: 0.625rem;
}

.alert.show { display: flex; }

.alert-success {
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #4ade80;
}

.alert-error {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #f87171;
}

/* ─────────────────────────────────────────
   CASE STUDY / PROJECT CARDS
───────────────────────────────────────── */
.project-card {
  background: var(--base-800);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--duration-mid) var(--ease-premium);
}

.project-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-card-hover);
  border-color: rgba(196, 98, 45, 0.3);
}

.project-card-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  transition: transform var(--duration-slow) var(--ease-premium);
}

.project-card:hover .project-card-img {
  transform: scale(1.03);
}

/* Category placeholders — used where no unique photo asset is available */
.project-card-thumb {
  width: 100%;
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(135deg, var(--base-800), var(--base-700));
}

.project-card-thumb::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 25% 15%, rgba(196, 98, 45, 0.2), transparent 55%);
}

.project-card-thumb svg {
  position: relative;
  z-index: 1;
  width: 52px;
  height: 52px;
  color: var(--brand-primary);
  opacity: 0.9;
}

.project-card-thumb--peb {
  background: linear-gradient(135deg, #1a2332 0%, #2a3545 55%, #1f2a38 100%);
}

.project-card-thumb--shed {
  background: linear-gradient(135deg, #1c2633 0%, #2d3a4a 55%, #1a2430 100%);
}

.project-card-thumb--mezzanine {
  background: linear-gradient(135deg, #1e2835 0%, #314052 55%, #1c2633 100%);
}

.project-card-thumb--geometric {
  background: linear-gradient(135deg, #1a2430 0%, #354656 55%, #1f2b38 100%);
}

.project-card-thumb--industrial {
  background: linear-gradient(135deg, #1c2834 0%, #2f4050 55%, #1a2632 100%);
}

.project-card-thumb--cladding {
  background: linear-gradient(135deg, #1f2a36 0%, #384858 55%, #1c2733 100%);
}

.location-map-placeholder {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(160deg, rgba(13, 17, 23, 0.35), rgba(13, 17, 23, 0.75)),
    repeating-linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.03) 0,
      rgba(255, 255, 255, 0.03) 1px,
      transparent 1px,
      transparent 48px
    ),
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.03) 0,
      rgba(255, 255, 255, 0.03) 1px,
      transparent 1px,
      transparent 48px
    ),
    linear-gradient(160deg, var(--base-800), var(--base-900));
}

.project-card-body {
  padding: 1.75rem;
}

.project-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-primary);
  background: var(--brand-primary-dim);
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  margin-bottom: 1rem;
}

.project-meta {
  display: flex;
  gap: 1.5rem;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.meta-item {
  display: flex;
  flex-direction: column;
}

.meta-label {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--base-300);
  font-weight: 600;
}

.meta-value {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--base-100);
  font-family: var(--font-display);
  margin-top: 0.25rem;
}

/* Filter buttons */
.filter-scroll {
  width: 100%;
  max-width: 100%;
  margin-bottom: 3rem;
  min-width: 0;
}

.filter-bar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 0;
  max-width: 100%;
}

.filter-btn {
  padding: 0.5rem 1.125rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--base-300);
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  border-radius: 100px;
  cursor: pointer;
  transition: all var(--duration-fast) ease;
}

.filter-btn.active,
.filter-btn:hover {
  color: var(--base-100);
  border-color: var(--brand-primary);
  background: var(--brand-primary-dim);
}

.filter-btn.active {
  color: var(--brand-primary);
}

/* ─────────────────────────────────────────
   CTA BANNER
───────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--base-800) 0%, rgba(196, 98, 45, 0.08) 100%);
  border: 1px solid rgba(196, 98, 45, 0.2);
  border-radius: var(--radius-xl);
  padding: 4rem 3.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse at center, rgba(196, 98, 45, 0.15), transparent);
  pointer-events: none;
}

/* ─────────────────────────────────────────
   STATS COUNTER
───────────────────────────────────────── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.stat-item {
  padding: 2rem 1.5rem;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.06);
  background: var(--base-800);
  transition: background var(--duration-fast) ease;
}

.stat-item:last-child { border-right: none; }
.stat-item:hover { background: var(--base-700); }

.stat-value {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--brand-primary);
  line-height: 1;
  display: block;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--base-300);
  margin-top: 0.5rem;
  font-weight: 500;
}

/* ─────────────────────────────────────────
   CONTACT SECTION
───────────────────────────────────────── */
.contact-card {
  background: var(--base-800);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.contact-method:last-child { border-bottom: none; }

.contact-icon {
  width: 44px;
  height: 44px;
  background: var(--brand-primary-dim);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-primary);
  flex-shrink: 0;
}

.contact-icon svg { width: 20px; height: 20px; }

.contact-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--base-300);
  margin-bottom: 0.375rem;
}

.contact-value {
  font-weight: 600;
  color: var(--base-100);
  font-size: 0.9375rem;
}

.contact-value a {
  color: var(--base-100);
  transition: color var(--duration-fast) ease;
}

.contact-value a:hover { color: var(--brand-primary); }

/* WhatsApp button */
.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.75rem;
  background: #25D366;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
  transition: all var(--duration-mid) var(--ease-premium);
}

.whatsapp-btn:hover {
  background: #22BF5B;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.4);
  color: #fff;
}

.whatsapp-btn svg { width: 22px; height: 22px; }

/* ─────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */
.site-footer {
  background: var(--base-900);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand p {
  font-size: 0.9375rem;
  color: var(--base-300);
  margin-top: 1rem;
  line-height: 1.7;
  max-width: 280px;
}

.footer-heading {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--base-100);
  margin-bottom: 1.25rem;
}

.footer-links { display: flex; flex-direction: column; gap: 0.625rem; }

.footer-link {
  font-size: 0.9375rem;
  color: var(--base-300);
  transition: color var(--duration-fast) ease;
}

.footer-link:hover { color: var(--brand-primary); }

.social-links {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.social-link {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--base-300);
  transition: all var(--duration-fast) ease;
}

.social-link:hover {
  background: var(--brand-primary-dim);
  border-color: rgba(196, 98, 45, 0.4);
  color: var(--brand-primary);
}

.social-link svg { width: 16px; height: 16px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-block: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-copyright {
  font-size: 0.875rem;
  color: var(--base-300);
  opacity: 0.7;
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  font-size: 0.875rem;
  color: var(--base-300);
  opacity: 0.7;
  transition: opacity var(--duration-fast) ease, color var(--duration-fast) ease;
}

.footer-legal a:hover {
  opacity: 1;
  color: var(--brand-primary);
}

/* ─────────────────────────────────────────
   PAGE HEADERS (inner pages)
───────────────────────────────────────── */
.page-hero {
  z-index: 1;
}

.page-hero--about {
  --hero-bg-image: url("/assets/images/og/og-about.webp");
}

.page-hero--services {
  --hero-bg-image: url("/assets/images/og/og-services.webp");
}

.page-hero--projects {
  --hero-bg-image: url("/assets/images/og/og-projects.webp");
}

.page-hero--contact {
  --hero-bg-image: url("/assets/images/og/og-contact.webp");
}

.page-hero .filter-scroll {
  width: 100%;
  max-width: 100%;
}

/* Keep content below inner-page heroes above any paint bleed */
.page-hero + .section,
.page-hero + .section--sm,
.page-hero + div {
  position: relative;
  z-index: 2;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--base-300);
  margin-bottom: 1.5rem;
}

.breadcrumb a { color: var(--base-300); }
.breadcrumb a:hover { color: var(--brand-primary); }
.breadcrumb span { opacity: 0.4; }

.page-hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.page-hero .text-overline {
  margin-bottom: 0.75rem;
}

.page-hero .hero-lead {
  color: var(--base-300);
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.75;
  margin-top: 1.25rem;
  max-width: 640px;
}

/* ─────────────────────────────────────────
   DIVIDERS & DECORATIVE
───────────────────────────────────────── */
.divider {
  width: 60px;
  height: 4px;
  background: var(--brand-gradient);
  border-radius: 4px;
  margin-bottom: 1.5rem;
}

.divider--center { margin-inline: auto; }

.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tag-copper {
  background: var(--brand-primary-dim);
  color: var(--brand-primary);
}

.tag-steel {
  background: rgba(74, 98, 116, 0.15);
  color: var(--brand-secondary);
}

/* ─────────────────────────────────────────
   SCROLL ANIMATIONS — Motion-driven (js/motion.js)
   Content is visible by default; JS hides then reveals when Motion loads.
───────────────────────────────────────── */
.motion-pending {
  contain: layout style paint;
}

.motion-revealed {
  opacity: 1;
}

.form-control,
.contact-card,
.contact-layout > *,
.leadership-grid > * {
  min-width: 0;
}

#enquiry-form {
  max-width: 100%;
  box-sizing: border-box;
}

/* Legacy delay classes kept for markup compatibility; Motion handles timing */
.fade-up.delay-1,
.fade-up.delay-2,
.fade-up.delay-3,
.fade-up.delay-4,
.fade-up.delay-5,
.fade-up.delay-6 { transition-delay: 0; }

/* ─────────────────────────────────────────
   ABOUT PAGE SPECIFIC
───────────────────────────────────────── */
.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.leadership-grid {
  display: grid;
  grid-template-columns: minmax(0, 300px) minmax(0, 1fr);
  gap: 4rem;
  align-items: start;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.8fr);
  gap: 3.5rem;
  align-items: start;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 340px), 1fr));
  gap: 1.75rem;
  position: relative;
  min-width: 0;
}

.about-img-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.about-img-wrap img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
}

.about-img-badge {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  background: rgba(13, 17, 23, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(196, 98, 45, 0.3);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.timeline {
  position: relative;
  padding-left: 2rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--brand-primary), transparent);
}

.timeline-item {
  position: relative;
  padding-bottom: 2rem;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -2.375rem;
  top: 6px;
  width: 12px;
  height: 12px;
  background: var(--brand-primary);
  border-radius: 50%;
  border: 3px solid var(--base-950);
}

.timeline-year {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--brand-primary);
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

/* ─────────────────────────────────────────
   SERVICES PAGE SPECIFIC
───────────────────────────────────────── */
.service-section {
  padding-block: 4rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.service-section:last-child { border-bottom: none; }

.service-section-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.service-section-grid.reverse { direction: rtl; }
.service-section-grid.reverse > * { direction: ltr; }

.service-section-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  margin-top: 1.5rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: var(--base-300);
}

.feature-check {
  width: 20px;
  height: 20px;
  color: var(--brand-primary);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ─────────────────────────────────────────
   FAQ ACCORDION
───────────────────────────────────────── */
.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  color: var(--base-100);
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  transition: color var(--duration-fast) ease;
}

.faq-question:hover { color: var(--brand-primary); }

.faq-icon {
  width: 22px;
  height: 22px;
  color: var(--brand-primary);
  flex-shrink: 0;
  transition: transform var(--duration-mid) var(--ease-premium);
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--duration-slow) var(--ease-premium);
  font-size: 0.9375rem;
  color: var(--base-300);
  line-height: 1.75;
}

.faq-answer-inner {
  padding-bottom: 1.25rem;
}

.faq-item.open .faq-answer {
  max-height: 400px;
}

.faq-answer[hidden] {
  display: block;
  max-height: 0;
}

/* ─────────────────────────────────────────
   SKIP LINK (accessibility)
───────────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  padding: 0.5rem 1rem;
  background: var(--brand-primary);
  color: #fff;
  font-weight: 600;
  z-index: 9999;
  transition: top var(--duration-fast) ease;
  border-radius: 0 0 var(--radius-sm) 0;
}

.skip-link:focus { top: 0; }

/* ─────────────────────────────────────────
   UTILITY CLASSES
───────────────────────────────────────── */
.hidden { display: none !important; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border-width: 0;
}

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-6 { margin-top: 3rem; }
.mt-8 { margin-top: 4rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-6 { margin-bottom: 3rem; }

.text-center { text-align: center; }
.font-bold { font-weight: 700; }

.bg-900 { background: var(--base-900); }
.bg-800 { background: var(--base-800); }

/* ─────────────────────────────────────────
   RESPONSIVE BREAKPOINTS
───────────────────────────────────────── */
@media (max-width: 1100px) {
  .compliance-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer-grid > *:last-child { grid-column: 1 / -1; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid .stat-item:nth-child(2) { border-right: none; }
  .stats-grid .stat-item:nth-child(3) { border-top: 1px solid rgba(255,255,255,0.06); }
}

@media (max-width: 900px) {
  .primary-nav { display: none; }
  .header-actions .btn { display: none; }
  .mobile-menu-btn { display: flex; }
  .mobile-nav { display: flex; padding-top: 120px; }

  .site-header:not(.scrolled) .site-logo img,
  .site-header:not(.scrolled) .site-logo svg {
    width: 92px;
    height: 92px;
  }

  .site-header.scrolled .site-logo img,
  .site-header.scrolled .site-logo svg {
    width: 50px;
    height: 50px;
  }

  .site-logo { gap: 0.875rem; min-width: 0; }
  .logo-text { min-width: 0; }

  .site-header:not(.scrolled) .logo-name { font-size: 1.4375rem; }
  .site-header:not(.scrolled) .logo-tagline {
    font-size: 0.5625rem;
    letter-spacing: 0.11em;
  }

  .hero,
  .page-hero {
    padding-top: 128px;
    padding-bottom: 2.75rem;
    min-height: clamp(500px, 78vh, 840px);
  }

  .hero-subtitle {
    margin-bottom: 1.5rem;
  }

  .hero-actions {
    margin-bottom: 1.25rem;
  }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .authority-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-intro-grid { grid-template-columns: 1fr; }
  .leadership-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .service-section-grid { grid-template-columns: 1fr; }
  .service-section-grid.reverse { direction: ltr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .compliance-grid { grid-template-columns: repeat(2, 1fr); }
  .filter-bar { border-radius: 12px; }
}

@media (max-width: 640px) {
  .container { padding-inline: 1rem; }
  .section { padding-block: 3.5rem; }
  .section--lg { padding-block: 4.5rem; }

  .hero,
  .page-hero {
    padding-top: 116px;
    padding-bottom: 2.25rem;
    min-height: clamp(460px, 74vh, 780px);
  }

  .hero h1,
  .page-hero h1 {
    font-size: 1.875rem;
    margin-bottom: 0.875rem;
    line-height: 1.15;
  }

  .hero-subtitle,
  .page-hero p {
    font-size: 0.9375rem;
    line-height: 1.65;
    margin-bottom: 1.25rem;
  }

  .hero-actions {
    margin-bottom: 1rem;
    gap: 0.625rem;
  }

  .breadcrumb {
    margin-bottom: 1rem;
  }

  .proof-strip {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    flex-direction: unset;
    width: 100%;
    max-width: 100%;
  }

  .proof-item {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    width: 100%;
    padding: 0.5rem 0.625rem;
  }

  .proof-item:nth-child(odd) {
    border-right: 1px solid rgba(255,255,255,0.08);
  }

  .proof-item:nth-last-child(-n+2) {
    border-bottom: none;
  }

  .proof-text {
    font-size: 0.6875rem;
  }
  .form-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .compliance-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-banner { padding: 2.5rem 1.5rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { text-align: center; }
  .project-meta { flex-wrap: wrap; gap: 1rem; }
  #enquiry-form { padding: 1.25rem; }
}

/* ─────────────────────────────────────────
   PRINT
───────────────────────────────────────── */
@media print {
  .site-header, .site-footer, .mobile-nav { display: none; }
  body { background: #fff; color: #000; }
  a { color: #000; text-decoration: underline; }
}

/* ═══════════════════════════════════════════════════════
   21ST.DEV PATTERN LIBRARY — HEXCENTRIC ADAPTATIONS
   Sources: Glowing Card [id:5328], Animated Tabs Bg [id:8315],
            GlowingHero [id:7935], Glassmorphism Nav [id:15025]
   Adapted to: #C4622D copper · #4A6274 steel · #111820 charcoal
═══════════════════════════════════════════════════════ */

/* ─────────────────────────────────────────
   PATTERN 1 — HERO AMBIENT ORB + GRID
   Derived from: GlowingHero [id:7935],
   Hero Static Radial Gradient [id:19151]
───────────────────────────────────────── */

/* Blueprint grid overlay for hero */
.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    linear-gradient(rgba(196, 98, 45, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(196, 98, 45, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 30%, black 0%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 30%, black 0%, transparent 80%);
}

/* Pulsing copper orb — the signature ambient glow */
.hero-orb {
  position: absolute;
  top: -180px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 700px;
  border-radius: 50%;
  z-index: 1;
  background: radial-gradient(
    circle at center,
    rgba(196, 98, 45, 0.22) 0%,
    rgba(196, 98, 45, 0.10) 30%,
    rgba(74, 98, 116, 0.06) 60%,
    transparent 70%
  );
  pointer-events: none;
  animation: orbPulse 6s ease-in-out infinite;
  filter: blur(2px);
}

@keyframes orbPulse {
  0%, 100% { opacity: 0.7; transform: translateX(-50%) scale(1); }
  50%       { opacity: 1;   transform: translateX(-50%) scale(1.07); }
}

/* Secondary side orb for depth */
.hero-orb-secondary {
  position: absolute;
  bottom: -80px;
  right: -60px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  z-index: 1;
  background: radial-gradient(
    circle at center,
    rgba(74, 98, 116, 0.18) 0%,
    rgba(74, 98, 116, 0.08) 40%,
    transparent 65%
  );
  pointer-events: none;
  animation: orbPulse 8s ease-in-out infinite reverse;
  filter: blur(4px);
}

/* Horizontal scan beam — thin animated light ray across hero */
.hero-beam {
  position: absolute;
  left: -10%;
  width: 120%;
  height: 1px;
  z-index: 1;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(196, 98, 45, 0.4) 40%,
    rgba(196, 98, 45, 0.8) 50%,
    rgba(196, 98, 45, 0.4) 60%,
    transparent 100%
  );
  top: 38%;
  pointer-events: none;
  animation: beamScan 8s ease-in-out infinite;
  opacity: 0;
}

@keyframes beamScan {
  0%   { top: 20%; opacity: 0; }
  10%  { opacity: 0.6; }
  80%  { opacity: 0.3; }
  90%  { top: 75%; opacity: 0; }
  100% { top: 75%; opacity: 0; }
}

/* ─────────────────────────────────────────
   PATTERN 2 — GLOWING CARD (21st.dev [id:5328])
   Ray streak + Corner scan lines + Ambient dot
   Adapted: copper #C4622D glow system
───────────────────────────────────────── */

/* Apply to: .card, .service-card, .project-card, .testimonial-card, .compliance-badge */
.card-glow {
  position: relative;
  overflow: hidden;
}

/* The RAY — diagonal light streak that sweeps on hover */
.card-glow::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    105deg,
    transparent 10%,
    rgba(196, 98, 45, 0.07) 40%,
    rgba(228, 160, 80, 0.12) 50%,
    rgba(196, 98, 45, 0.07) 60%,
    transparent 90%
  );
  transform: skewX(-15deg);
  transition: left var(--duration-slow) var(--ease-premium);
  pointer-events: none;
  z-index: 1;
}

.card-glow:hover::before {
  left: 140%;
}

/* The GLOW BORDER — conic gradient rotating border on hover */
.card-glow::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(
    135deg,
    rgba(196, 98, 45, 0) 0%,
    rgba(196, 98, 45, 0) 40%,
    rgba(196, 98, 45, 0.6) 50%,
    rgba(196, 98, 45, 0) 60%,
    rgba(196, 98, 45, 0) 100%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity var(--duration-mid) ease,
              background-position var(--duration-slow) ease;
  pointer-events: none;
  background-size: 300% 300%;
  background-position: 0% 0%;
}

.card-glow:hover::after {
  opacity: 1;
  background-position: 100% 100%;
}

/* Animated corner scan lines — 4 edges light up in sequence on hover */
.card-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  overflow: hidden;
  opacity: 0;
  transition: opacity var(--duration-fast) ease;
}

.card-glow:hover .card-lines { opacity: 1; }

.card-line {
  position: absolute;
  background: linear-gradient(to right, transparent, var(--brand-primary), transparent);
}

.card-line--top {
  top: 0; left: -100%; right: auto;
  width: 60%; height: 1px;
  animation: lineTop 2.4s ease-in-out infinite;
}
.card-line--bottom {
  bottom: 0; right: -100%; left: auto;
  width: 60%; height: 1px;
  background: linear-gradient(to left, transparent, var(--brand-primary), transparent);
  animation: lineBottom 2.4s ease-in-out infinite 1.2s;
}
.card-line--left {
  left: 0; top: -100%; bottom: auto;
  width: 1px; height: 60%;
  background: linear-gradient(to bottom, transparent, var(--brand-primary), transparent);
  animation: lineLeft 2.4s ease-in-out infinite 0.6s;
}
.card-line--right {
  right: 0; bottom: -100%; top: auto;
  width: 1px; height: 60%;
  background: linear-gradient(to top, transparent, var(--brand-primary), transparent);
  animation: lineRight 2.4s ease-in-out infinite 1.8s;
}

@keyframes lineTop    { 0% { left: -60%; } 100% { left: 160%; } }
@keyframes lineBottom { 0% { right: -60%; } 100% { right: 160%; } }
@keyframes lineLeft   { 0% { top: -60%; } 100% { top: 160%; } }
@keyframes lineRight  { 0% { bottom: -60%; } 100% { bottom: 160%; } }

/* The DOT — ambient copper glow orb emanating from top-right of card */
.card-dot {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: radial-gradient(
    circle at center,
    rgba(196, 98, 45, 0.35) 0%,
    rgba(196, 98, 45, 0.10) 50%,
    transparent 70%
  );
  pointer-events: none;
  opacity: 0;
  transition: opacity var(--duration-mid) ease;
}

.card-glow:hover .card-dot { opacity: 1; }

/* Cursor-follow glow on card hover (set via JS inline style) */
.card-cursor-glow {
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(
    circle at center,
    rgba(196, 98, 45, 0.12) 0%,
    transparent 70%
  );
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: opacity var(--duration-fast) ease;
  opacity: 0;
  z-index: 0;
}

.card-glow:hover .card-cursor-glow { opacity: 1; }

/* ─────────────────────────────────────────
   PATTERN 3 — ANIMATED FILTER PILL
   Derived from: Animated Tabs Background [id:8315]
   Spring-physics slide using CSS transition
───────────────────────────────────────── */

.filter-bar {
  position: relative;
  padding: 4px;
  background: rgba(26, 35, 50, 0.8);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 100px;
  backdrop-filter: blur(10px);
  max-width: 100%;
  flex-wrap: wrap;
  overflow: visible;
}

.filter-bar--wrap {
  border-radius: 12px;
  width: 100%;
  box-sizing: border-box;
}

/* Mobile / tablet: 2-column chip grid — no horizontal page scroll */
@media (max-width: 900px) {
  .filter-scroll {
    overflow: hidden;
    margin-bottom: 2rem;
  }

  .filter-bar--wrap {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.5rem;
    padding: 0.5rem;
    border-radius: 12px;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .filter-bar--wrap .filter-pill-bg {
    display: none !important;
  }

  .filter-bar--wrap .filter-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    white-space: normal;
    text-align: center;
    line-height: 1.35;
    padding: 0.625rem 0.5rem;
    font-size: 0.8125rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    box-sizing: border-box;
  }

  .filter-bar--wrap .filter-btn.active {
    background: linear-gradient(135deg, var(--brand-primary), rgba(196, 98, 45, 0.8));
    color: #fff;
    border-color: transparent;
    box-shadow: 0 4px 12px rgba(196, 98, 45, 0.35);
  }

  .filter-bar--wrap .filter-btn:hover:not(.active) {
    background: rgba(255, 255, 255, 0.06);
    color: var(--base-100);
  }
}

@media (max-width: 900px) and (min-width: 520px) {
  .filter-bar--wrap {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* Sliding background pill — position driven by Motion spring (js/motion.js) */
.filter-pill-bg {
  position: absolute;
  top: 4px;
  left: 4px;
  height: calc(100% - 8px);
  background: linear-gradient(135deg, var(--brand-primary), rgba(196, 98, 45, 0.75));
  border-radius: 100px;
  pointer-events: none;
  box-shadow: 0 4px 16px rgba(196, 98, 45, 0.35);
  z-index: 0;
  will-change: auto;
}

.filter-btn {
  position: relative;
  z-index: 1;
  border-radius: 100px;
  border: none;
  background: transparent;
  color: var(--base-300);
  font-weight: 600;
  font-size: 0.875rem;
  padding: 0.4375rem 1.125rem;
  cursor: pointer;
  white-space: nowrap;
  transition: color var(--duration-fast) ease;
}

.filter-btn.active { color: #fff; }
.filter-btn:hover:not(.active) { color: var(--base-100); }

/* ─────────────────────────────────────────
   PATTERN 4 — GLASSMORPHISM NAV DRAWER
   Derived from: Glassmorphism Navigation [id:15025]
   Enhanced backdrop + staggered link entrance
───────────────────────────────────────── */

/* Override mobile-nav with premium glassmorphism */
.mobile-nav {
  background: rgba(11, 14, 20, 0.94);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  border-left: 1px solid rgba(196, 98, 45, 0.12);
}

/* Nav link entrance driven by Motion stagger (js/motion.js) */
.mobile-nav-link {
  position: relative;
  opacity: 0;
}

.mobile-nav-actions {
  opacity: 0;
}

.mobile-nav-link.active::before {
  content: '';
  position: absolute;
  left: -1.25rem;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand-primary);
  box-shadow: 0 0 10px rgba(196, 98, 45, 0.8);
}

/* Nav link hover underline upgrade — animated from center */
.mobile-nav-link::after {
  content: '';
  position: absolute;
  bottom: 0.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--brand-primary);
  border-radius: 2px;
  transition: width var(--duration-mid) var(--ease-premium);
}

.mobile-nav-link:hover::after,
.mobile-nav-link.active::after { width: 40px; }

/* ─────────────────────────────────────────
   PATTERN 5 — PREMIUM STAT COUNTER CARD
   Shimmer sweep + glowing value
───────────────────────────────────────── */

.stat-item {
  position: relative;
  overflow: hidden;
}

/* Shimmer sweep animation on stat items */
.stat-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    105deg,
    transparent 10%,
    rgba(196, 98, 45, 0.04) 40%,
    rgba(228, 160, 80, 0.08) 50%,
    rgba(196, 98, 45, 0.04) 60%,
    transparent 90%
  );
  animation: statShimmer 4s ease-in-out infinite;
  pointer-events: none;
}

.stat-item:nth-child(2)::before { animation-delay: 1s; }
.stat-item:nth-child(3)::before { animation-delay: 2s; }
.stat-item:nth-child(4)::before { animation-delay: 3s; }

@keyframes statShimmer {
  0%   { left: -100%; }
  60%  { left: 150%; }
  100% { left: 150%; }
}

/* ─────────────────────────────────────────
   PATTERN 6 — HERO EYEBROW BADGE PULSE
───────────────────────────────────────── */

.hero-eyebrow {
  position: relative;
}

/* Pulsing ring behind the eyebrow badge */
.hero-eyebrow::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 100px;
  border: 1px solid rgba(196, 98, 45, 0.3);
  animation: eyebrowPulse 2.5s ease-in-out infinite;
}

@keyframes eyebrowPulse {
  0%, 100% { opacity: 0; transform: scale(1); }
  50%       { opacity: 0.6; transform: scale(1.04); }
}

/* ─────────────────────────────────────────
   PATTERN 7 — CTA BANNER AMBIENT PULSE
───────────────────────────────────────── */

.cta-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(196, 98, 45, 0.15);
  animation: ctaBorderPulse 3s ease-in-out infinite;
  pointer-events: none;
}

@keyframes ctaBorderPulse {
  0%, 100% { border-color: rgba(196, 98, 45, 0.15); box-shadow: none; }
  50%       { border-color: rgba(196, 98, 45, 0.35); box-shadow: 0 0 40px rgba(196, 98, 45, 0.08) inset; }
}

/* ─────────────────────────────────────────
   PATTERN 8 — PROOF STRIP HOVER GLOW
───────────────────────────────────────── */

.proof-item {
  transition: background var(--duration-fast) ease;
}

.proof-item:hover {
  background: rgba(196, 98, 45, 0.06);
}

.proof-item:hover .proof-icon {
  filter: drop-shadow(0 0 6px rgba(196, 98, 45, 0.7));
}

/* ─────────────────────────────────────────
   PATTERN 9 — SCROLL PROGRESS BAR
   Thin copper line at top of viewport
───────────────────────────────────────── */

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--brand-primary), rgba(196, 98, 45, 0.5));
  z-index: 9999;
  width: 0%;
  pointer-events: none;
  transform: translateZ(0);
}

/* ─────────────────────────────────────────
   PATTERN 10 — ENHANCED BUTTON STATES
   Ripple + shimmer from 21st.dev patterns
───────────────────────────────────────── */

.btn-primary {
  background: linear-gradient(135deg, #C4622D 0%, #d97340 50%, #C4622D 100%);
  background-size: 200% 100%;
  background-position: 100% 0;
  transition: all var(--duration-mid) var(--ease-premium),
              background-position var(--duration-slow) ease;
}

.btn-primary:hover {
  background-position: 0% 0;
  box-shadow: 0 8px 32px rgba(196, 98, 45, 0.5),
              0 0 0 1px rgba(196, 98, 45, 0.3);
}

/* Shimmer on primary button */
.btn-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    105deg,
    transparent 20%,
    rgba(255, 255, 255, 0.15) 50%,
    transparent 80%
  );
  transform: skewX(-15deg);
  transition: left 0.5s ease;
  pointer-events: none;
}

.btn-primary:hover::after {
  left: 140%;
}

/* ─────────────────────────────────────────
   PATTERN 11 — SECTION DIVIDER LINES
   Copper gradient horizontal rule
───────────────────────────────────────── */

.section-rule {
  width: 100%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(196, 98, 45, 0.25) 20%,
    rgba(196, 98, 45, 0.5) 50%,
    rgba(196, 98, 45, 0.25) 80%,
    transparent 100%
  );
  margin-block: 0;
}

/* ─────────────────────────────────────────
   PATTERN 12 — TESTIMONIAL CARD GLOW
───────────────────────────────────────── */

.testimonial-card {
  transition: all var(--duration-mid) var(--ease-premium);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(196, 98, 45, 0.12),
              0 1px 0 rgba(196, 98, 45, 0.2) inset;
  border-color: rgba(196, 98, 45, 0.2);
}

/* ─────────────────────────────────────────
   PATTERN 13 — LOGO HOVER EFFECT
───────────────────────────────────────── */

.site-logo {
  transition: all var(--duration-fast) ease;
}

.site-logo:hover .logo-name {
  color: var(--brand-primary);
}

.site-header.scrolled .site-logo:hover img,
.site-header.scrolled .site-logo:hover svg {
  filter: brightness(1.15);
  border-color: rgba(196, 98, 45, 0.55);
}

.site-header:not(.scrolled) .site-logo:hover .logo-name {
  color: var(--brand-primary);
}

/* ─────────────────────────────────────────
   PATTERN 14 — FOOTER SOCIAL LINK UPGRADE
───────────────────────────────────────── */

.social-link {
  position: relative;
  overflow: hidden;
}

.social-link::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(196, 98, 45, 0.3) 0%, transparent 70%);
  opacity: 0;
  transition: opacity var(--duration-fast) ease;
}

.social-link:hover::before { opacity: 1; }

/* ─────────────────────────────────────────
   PATTERN 15 — PROJECT CARD OVERLAY
   Tint overlay with "View Project" reveal
───────────────────────────────────────── */

.project-card .project-img-wrap {
  position: relative;
  overflow: hidden;
}

.project-card .project-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(13, 17, 23, 0.7) 0%,
    rgba(196, 98, 45, 0.15) 50%,
    transparent 100%
  );
  opacity: 0;
  transition: opacity var(--duration-mid) var(--ease-premium);
}

.project-card:hover .project-img-wrap::after { opacity: 1; }

/* ─────────────────────────────────────────
   KEYFRAME ADDITIONS
───────────────────────────────────────── */

@keyframes borderGlow {
  0%, 100% { box-shadow: 0 0 0 1px rgba(196, 98, 45, 0.1); }
  50%       { box-shadow: 0 0 0 1px rgba(196, 98, 45, 0.4), 0 0 20px rgba(196, 98, 45, 0.1); }
}

/* ─────────────────────────────────────────
   REDUCED-MOTION ACCESSIBILITY
───────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .hero::before,
  .page-hero::before,
  .hero-orb, .hero-orb-secondary, .hero-beam,
  .card-glow::before, .card-line,
  .stat-item::before, .hero-eyebrow::before,
  .cta-banner::after, .scroll-progress {
    animation: none !important;
    transition: none !important;
  }
  .card-glow::before { display: none; }
  .fade-up, .scale-in, .card, .service-card,
  .project-card, .testimonial-card, .authority-item,
  .stat-item, .compliance-badge, .faq-item,
  .cta-banner, .section-header--center,
  .mobile-nav-link, .mobile-nav-actions {
    opacity: 1 !important;
    transform: none !important;
  }
}
