/* ==========================================================================
   S&K Glazing Limited — Master Stylesheet
   Aesthetic direction: Luxury industrial / chrome-blue editorial
   Font pairing: Bricolage Grotesque (display) + Geist (body)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,400;12..96,500;12..96,600;12..96,700;12..96,800&family=Geist:wght@300;400;500;600;700&display=swap');

:root {
  /* Brand colours — derived from the chrome-blue logo */
  --ink-deep: #0a1424;          /* midnight navy — primary dark */
  --ink-mid: #14253d;           /* slightly lighter for sections */
  --ink-soft: #1c3252;          /* card backgrounds */
  --chrome-blue: #1976d2;       /* primary brand blue */
  --chrome-light: #4ba3ed;      /* lighter accent blue */
  --chrome-glow: #82c4f5;       /* highlight / glow accents */
  --silver: #c8d4e2;            /* soft secondary text */
  --silver-bright: #e8eef5;     /* bright on dark */
  --pearl: #f5f7fa;             /* near-white for content sections */
  --paper: #ffffff;             /* pure white */
  --ink-text: #0a1424;          /* body text on light */
  --muted-text: #5a6b80;        /* secondary text on light */
  --line: #dde4ed;              /* hairline divider */
  --success: #2e8b57;           /* success/CTA */
  --warning: #ff9c33;           /* attention */

  /* Type */
  --font-display: 'Bricolage Grotesque', 'Inter', -apple-system, sans-serif;
  --font-body: 'Geist', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Layout */
  --container-max: 1280px;
  --container-narrow: 1080px;
  --container-prose: 720px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(10, 20, 36, 0.06), 0 1px 3px rgba(10, 20, 36, 0.04);
  --shadow-md: 0 4px 6px rgba(10, 20, 36, 0.04), 0 10px 20px rgba(10, 20, 36, 0.06);
  --shadow-lg: 0 20px 25px rgba(10, 20, 36, 0.08), 0 8px 10px rgba(10, 20, 36, 0.04);
  --shadow-glow: 0 0 0 1px rgba(25, 118, 210, 0.1), 0 8px 24px rgba(25, 118, 210, 0.18);
}

/* ===== Reset & base ===== */
*, *::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-size: 16px;
  line-height: 1.6;
  color: var(--ink-text);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
button { font: inherit; cursor: pointer; border: none; background: none; }
a { color: var(--chrome-blue); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--chrome-light); }

/* ===== Typography ===== */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink-deep);
}
h1 { font-size: clamp(2.2rem, 5.5vw, 4rem); font-weight: 700; letter-spacing: -0.03em; }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.625rem); }
h4 { font-size: 1.1rem; font-weight: 500; }

p { margin-bottom: 1.1em; }
.lead {
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  line-height: 1.55;
  color: var(--muted-text);
  font-weight: 400;
}

/* ===== Containers ===== */
.container { width: 100%; max-width: var(--container-max); margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: var(--container-narrow); }
.container-prose { max-width: var(--container-prose); }

/* ===== MODERN HEADER ===== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  transition: padding 0.3s, box-shadow 0.3s, background 0.3s, border-color 0.3s;
}
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
}

/* Transparent header treatment when sitting over cinematic hero */
body.has-hero-cinematic .site-header:not(.scrolled) {
  background: linear-gradient(180deg, rgba(10, 20, 36, 0.55) 0%, rgba(10, 20, 36, 0) 100%);
  border-bottom-color: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
body.has-hero-cinematic .site-header:not(.scrolled) .brand-name { color: white; }
body.has-hero-cinematic .site-header:not(.scrolled) .brand-sub { color: rgba(255, 255, 255, 0.7); }
body.has-hero-cinematic .site-header:not(.scrolled) .nav-link { color: rgba(255, 255, 255, 0.92); }
body.has-hero-cinematic .site-header:not(.scrolled) .nav-link:hover { color: white; background: rgba(255, 255, 255, 0.1); }
body.has-hero-cinematic .site-header:not(.scrolled) .nav-link.is-active { color: var(--chrome-glow); }
body.has-hero-cinematic .site-header:not(.scrolled) .nav-link.is-active::after { background: var(--chrome-glow); }
body.has-hero-cinematic .site-header:not(.scrolled) .action-pill {
  background: rgba(255, 255, 255, 0.12);
  color: white;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
body.has-hero-cinematic .site-header:not(.scrolled) .action-pill:hover {
  background: rgba(255, 255, 255, 0.2);
}
body.has-hero-cinematic .site-header:not(.scrolled) .action-wa:hover {
  background: #25D366;
}
body.has-hero-cinematic .site-header:not(.scrolled) .menu-toggle {
  color: white;
}
.header-inner {
  display: flex; align-items: center;
  gap: 28px;
  height: 76px;
  transition: height 0.3s;
}
.site-header.scrolled .header-inner { height: 64px; }

/* Brand */
.brand-modern {
  display: flex; align-items: center; gap: 12px;
  color: var(--ink-deep);
  text-decoration: none;
  flex-shrink: 0;
}
.brand-mark {
  height: 44px; width: auto;
  transition: height 0.3s;
}
.site-header.scrolled .brand-mark { height: 38px; }
.brand-word { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name {
  font-family: var(--font-display); font-weight: 700;
  font-size: 1.08rem; letter-spacing: -0.02em;
  color: var(--ink-deep);
}
.brand-sub {
  font-size: 0.68rem; color: var(--muted-text);
  letter-spacing: 0.1em; text-transform: uppercase;
  margin-top: 2px;
}

/* Centered nav */
.nav-main {
  display: flex; gap: 2px; align-items: center;
  margin: 0 auto;
}
.nav-link {
  position: relative;
  color: var(--ink-deep);
  font-weight: 500;
  font-size: 0.92rem;
  padding: 8px 14px;
  border-radius: 8px;
  text-decoration: none;
  transition: color 0.2s, background 0.2s;
}
.nav-link:hover { color: var(--chrome-blue); background: rgba(25, 118, 210, 0.06); }
.nav-link.is-active { color: var(--chrome-blue); }
.nav-link.is-active::after {
  content: '';
  position: absolute;
  left: 14px; right: 14px;
  bottom: 2px;
  height: 2px;
  background: var(--chrome-blue);
  border-radius: 2px;
}

/* Right actions */
.header-actions {
  display: flex; align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.action-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 14px;
  border-radius: 999px;
  font-weight: 500; font-size: 0.88rem;
  text-decoration: none;
  transition: all 0.2s;
  white-space: nowrap;
}
.action-wa {
  background: rgba(37, 211, 102, 0.1);
  color: #128c4d;
}
.action-wa:hover {
  background: #25D366;
  color: white;
  transform: translateY(-1px);
}
.action-phone {
  background: rgba(15, 23, 42, 0.05);
  color: var(--ink-deep);
}
.action-phone:hover {
  background: var(--ink-deep);
  color: white;
  transform: translateY(-1px);
}
.action-pill svg { flex-shrink: 0; }
.btn-quote {
  display: inline-flex; align-items: center;
  padding: 10px 20px;
  background: linear-gradient(135deg, var(--chrome-blue) 0%, #1565c0 100%);
  color: white;
  border-radius: 999px;
  font-weight: 600; font-size: 0.9rem;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(25, 118, 210, 0.3);
  transition: all 0.2s;
  white-space: nowrap;
}
.btn-quote:hover {
  background: linear-gradient(135deg, #1565c0 0%, var(--ink-deep) 100%);
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(25, 118, 210, 0.4);
}

.menu-toggle {
  display: none;
  padding: 9px;
  background: transparent;
  border: none;
  color: var(--ink-deep);
  cursor: pointer;
  border-radius: 8px;
  transition: background 0.2s;
}
.menu-toggle:hover { background: rgba(0, 0, 0, 0.05); }

/* ===== MOBILE MENU OVERLAY ===== */
.mobile-menu {
  position: fixed;
  top: 0; right: 0;
  width: 100%; max-width: 420px; height: 100vh;
  background: white;
  z-index: 200;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex; flex-direction: column;
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
  overflow-y: auto;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu-backdrop {
  position: fixed; inset: 0;
  background: rgba(15, 23, 42, 0.4);
  z-index: 199;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
}
.mobile-menu-backdrop.open { opacity: 1; pointer-events: auto; }
.mobile-menu-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 24px;
  border-bottom: 1px solid var(--line);
}
.mobile-menu-title {
  font-family: var(--font-display);
  font-weight: 700; font-size: 1.1rem;
  letter-spacing: -0.01em;
}
.mobile-menu-close {
  background: var(--pearl);
  border: none;
  border-radius: 999px;
  width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer; color: var(--ink-deep);
  transition: background 0.2s;
}
.mobile-menu-close:hover { background: #e2e8f0; }
.mobile-menu-nav {
  display: flex; flex-direction: column;
  padding: 12px 0;
}
.mobile-menu-nav a {
  padding: 14px 24px;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--ink-deep);
  text-decoration: none;
  display: flex; align-items: center; justify-content: space-between;
  transition: background 0.2s, padding 0.2s;
}
.mobile-menu-nav a::after {
  content: '→';
  color: var(--muted-text);
  font-size: 1rem;
  opacity: 0;
  transition: opacity 0.2s, transform 0.2s;
}
.mobile-menu-nav a:hover { background: var(--pearl); padding-left: 28px; }
.mobile-menu-nav a:hover::after { opacity: 1; transform: translateX(4px); }
.mobile-menu-actions {
  display: flex; flex-direction: column;
  gap: 8px;
  padding: 16px 24px;
  border-top: 1px solid var(--line);
  margin-top: auto;
}
.mma-item {
  display: flex; align-items: center; gap: 12px;
  padding: 12px;
  border-radius: 12px;
  text-decoration: none;
  color: var(--ink-deep);
  transition: background 0.2s;
}
.mma-item:hover { background: var(--pearl); color: var(--ink-deep); }
.mma-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.mma-blue { background: rgba(25, 118, 210, 0.1); color: var(--chrome-blue); }
.mma-green { background: rgba(37, 211, 102, 0.1); color: #128c4d; }
.mma-purple { background: rgba(139, 92, 246, 0.1); color: #7c3aed; }
.mma-label { display: flex; flex-direction: column; }
.mma-label strong { font-size: 0.92rem; font-weight: 600; color: var(--ink-deep); }
.mma-label span { font-size: 0.82rem; color: var(--muted-text); }
.mobile-menu-foot {
  padding: 16px 24px 24px;
  font-size: 0.78rem;
  color: var(--muted-text);
  border-top: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 6px;
}
.mma-badge {
  display: inline-flex; align-items: center; gap: 6px;
  color: #128c4d;
  font-weight: 500;
}
.mma-dot {
  display: inline-block;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #25D366;
  box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { box-shadow: 0 0 0 6px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Responsive header */
@media (max-width: 1180px) {
  .nav-link { padding: 8px 10px; font-size: 0.88rem; }
  .action-pill .action-text { display: none; }
  .action-pill { padding: 9px; }
  .header-actions { gap: 6px; }
}
@media (max-width: 980px) {
  .nav-main { display: none; }
  .menu-toggle { display: inline-flex; }
  .brand-sub { display: none; }
  .header-inner { gap: 16px; height: 68px; }
  .site-header.scrolled .header-inner { height: 60px; }
}
@media (max-width: 640px) {
  .action-pill.action-phone { display: none; }
  .btn-quote { padding: 9px 14px; font-size: 0.85rem; }
  .brand-mark { height: 38px; }
  .brand-name { font-size: 0.98rem; }
}

/* ===== Hero ===== */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(ellipse 60% 80% at 80% 20%, rgba(25, 118, 210, 0.18), transparent 60%),
    radial-gradient(ellipse 50% 60% at 10% 80%, rgba(75, 163, 237, 0.12), transparent 60%),
    linear-gradient(165deg, var(--ink-deep) 0%, #0d1c34 50%, #0a1424 100%);
  color: white;
  padding: clamp(80px, 12vw, 140px) 0 clamp(80px, 10vw, 120px);
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, black 30%, transparent 80%);
}
.hero .container { position: relative; z-index: 1; }
.hero-grid {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 80px; align-items: center;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.8rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--chrome-glow);
  margin-bottom: 24px;
}
.hero-eyebrow::before {
  content: ''; display: inline-block; width: 28px; height: 1px; background: var(--chrome-glow);
}
.hero h1 {
  color: white; margin-bottom: 24px;
}
.hero h1 .accent {
  background: linear-gradient(120deg, var(--chrome-glow) 0%, var(--chrome-light) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  font-style: italic; font-weight: 700;
}
.hero-lead {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  color: var(--silver); margin-bottom: 36px; line-height: 1.6;
  max-width: 580px;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 26px; border-radius: 999px;
  font-weight: 600; font-size: 0.95rem;
  transition: all 0.25s;
}
.btn-primary {
  background: linear-gradient(135deg, var(--chrome-blue) 0%, var(--chrome-light) 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(25, 118, 210, 0.4);
}
.btn-primary:hover {
  color: white; transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(25, 118, 210, 0.5);
}
.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}
.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.14);
  color: white;
  border-color: rgba(255, 255, 255, 0.3);
}

.hero-trust {
  display: flex; gap: 32px; margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  flex-wrap: wrap;
}
.trust-item { display: flex; flex-direction: column; }
.trust-num {
  font-family: var(--font-display); font-size: 1.75rem; font-weight: 700;
  color: var(--chrome-glow); line-height: 1;
}
.trust-label {
  font-size: 0.78rem; color: var(--silver);
  margin-top: 4px; text-transform: uppercase; letter-spacing: 0.08em;
}

/* Hero visual / logo showcase */
.hero-visual {
  position: relative; aspect-ratio: 1; max-width: 460px; margin-left: auto;
}
.hero-visual-glow {
  position: absolute; inset: 0;
  background: radial-gradient(circle, rgba(75, 163, 237, 0.4) 0%, transparent 65%);
  filter: blur(40px);
}
.hero-visual img {
  position: relative; z-index: 1;
  width: 100%; height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 30px 60px rgba(25, 118, 210, 0.35));
  animation: floatLogo 6s ease-in-out infinite;
}
@keyframes floatLogo {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-12px) rotate(1deg); }
}

/* ===== Section frames ===== */
section { padding: clamp(64px, 8vw, 110px) 0; }
.section-eyebrow {
  display: inline-block;
  font-size: 0.78rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.16em;
  color: var(--chrome-blue);
  margin-bottom: 16px;
}
.section-head { max-width: 720px; margin-bottom: 48px; }
.section-head h2 { margin-bottom: 16px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

/* ===== Service grid ===== */
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}
.service-card {
  position: relative; padding: 28px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: all 0.3s;
  display: flex; flex-direction: column; gap: 14px;
  text-decoration: none; color: inherit;
}
.service-card:hover {
  border-color: var(--chrome-blue);
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow);
  color: inherit;
}
.service-card-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--chrome-blue) 0%, var(--chrome-light) 100%);
  color: white; border-radius: 12px;
  font-size: 1.4rem;
}
.service-card h3 {
  font-size: 1.15rem; font-weight: 600;
  color: var(--ink-deep); margin: 0;
}
.service-card p {
  font-size: 0.92rem; color: var(--muted-text);
  margin: 0; flex-grow: 1;
}
.service-card-arrow {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--chrome-blue); font-weight: 500; font-size: 0.88rem;
  margin-top: auto;
}
.service-card:hover .service-card-arrow { gap: 10px; }

/* ===== Feature blocks (alternating) ===== */
.feature-block {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.feature-block.reverse { grid-template-columns: 1fr 1fr; }
.feature-block.reverse > :first-child { order: 2; }
.feature-block-text h2 { margin-bottom: 20px; }
.feature-list { list-style: none; margin: 24px 0; }
.feature-list li {
  padding: 12px 0 12px 32px; position: relative;
  border-bottom: 1px solid var(--line);
  font-size: 0.96rem;
}
.feature-list li:last-child { border-bottom: none; }
.feature-list li::before {
  content: ''; position: absolute; left: 0; top: 18px;
  width: 18px; height: 18px;
  background: linear-gradient(135deg, var(--chrome-blue) 0%, var(--chrome-light) 100%);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(25, 118, 210, 0.1);
}
.feature-list li::after {
  content: '✓'; position: absolute; left: 4px; top: 14px;
  color: white; font-size: 0.7rem; font-weight: 700;
}
.feature-visual {
  aspect-ratio: 1.1;
  background:
    radial-gradient(ellipse at top right, rgba(75, 163, 237, 0.15), transparent 60%),
    linear-gradient(135deg, var(--pearl) 0%, #e9eff8 100%);
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.feature-visual::before {
  content: '';
  position: absolute; inset: -20%;
  background-image:
    linear-gradient(rgba(25, 118, 210, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(25, 118, 210, 0.05) 1px, transparent 1px);
  background-size: 30px 30px;
  transform: rotate(-3deg);
}
.feature-visual-content {
  position: relative; z-index: 1;
  text-align: center; padding: 32px;
}
.feature-visual-stat {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5rem); font-weight: 800;
  background: linear-gradient(135deg, var(--chrome-blue) 0%, var(--ink-deep) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  line-height: 1;
}
.feature-visual-label {
  margin-top: 12px; font-size: 0.95rem;
  color: var(--ink-deep); font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.1em;
}

/* ===== Acoustic CTA banner (flagship service highlight) ===== */
.acoustic-banner {
  position: relative; overflow: hidden;
  padding: clamp(56px, 7vw, 90px) 0;
  background:
    radial-gradient(circle at 75% 50%, rgba(75, 163, 237, 0.25), transparent 60%),
    linear-gradient(135deg, var(--ink-deep) 0%, #0d1c34 100%);
  color: white;
}
.acoustic-banner::before {
  content: 'NEAR AN AIRPORT?';
  position: absolute; top: 10%; left: -5%;
  font-family: var(--font-display);
  font-size: clamp(6rem, 14vw, 14rem); font-weight: 800;
  color: rgba(255, 255, 255, 0.02);
  letter-spacing: -0.03em;
  transform: rotate(-5deg);
  pointer-events: none;
}
.acoustic-content {
  position: relative; z-index: 1;
  max-width: 720px;
}
.acoustic-content h2 {
  color: white; margin-bottom: 20px;
}
.acoustic-content h2 .accent {
  color: var(--chrome-glow); font-style: italic;
}
.acoustic-content p { color: var(--silver); font-size: 1.1rem; margin-bottom: 28px; }

/* ===== Locations grid ===== */
.locations-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 8px;
}
.location-link {
  padding: 14px 18px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--ink-deep);
  font-weight: 500; font-size: 0.92rem;
  display: flex; align-items: center; justify-content: space-between;
  transition: all 0.2s;
}
.location-link:hover {
  background: var(--ink-deep); color: white; border-color: var(--ink-deep);
  transform: translateY(-1px);
}
.location-link span { color: var(--muted-text); font-size: 0.8rem; }
.location-link:hover span { color: var(--chrome-glow); }

/* ===== Process / timeline ===== */
.process-list { display: grid; gap: 20px; }
.process-step {
  display: grid; grid-template-columns: auto 1fr; gap: 24px;
  padding: 24px 28px;
  background: var(--pearl);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--chrome-blue);
}
.process-num {
  font-family: var(--font-display);
  font-size: 2.5rem; font-weight: 700;
  background: linear-gradient(135deg, var(--chrome-blue) 0%, var(--ink-deep) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  line-height: 1;
}
.process-step h4 { font-size: 1.1rem; margin-bottom: 6px; }
.process-step p { color: var(--muted-text); font-size: 0.95rem; margin: 0; }

/* ===== FAQ ===== */
.faq-list { margin-top: 32px; }
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-q {
  width: 100%; text-align: left;
  padding: 22px 0; padding-right: 40px;
  font-family: var(--font-display);
  font-size: 1.1rem; font-weight: 600;
  color: var(--ink-deep);
  position: relative;
  transition: color 0.2s;
}
.faq-q::after {
  content: '+';
  position: absolute; right: 0; top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem; font-weight: 400;
  color: var(--chrome-blue);
  transition: transform 0.3s;
}
.faq-q:hover { color: var(--chrome-blue); }
.faq-item.open .faq-q::after { transform: translateY(-50%) rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease-out;
}
.faq-item.open .faq-a { max-height: 800px; }
.faq-a-inner { padding: 0 0 24px; color: var(--muted-text); line-height: 1.7; }

/* ===== Contact / Form ===== */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 56px;
}
.contact-info { }
.contact-info h2 { margin-bottom: 20px; }
.contact-info p { color: var(--muted-text); margin-bottom: 28px; }
.contact-items { display: grid; gap: 20px; }
.contact-item {
  display: grid; grid-template-columns: auto 1fr; gap: 16px; align-items: start;
  padding: 18px;
  background: var(--pearl);
  border-radius: var(--radius-md);
}
.contact-icon {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--chrome-blue) 0%, var(--chrome-light) 100%);
  color: white;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}
.contact-item-label {
  font-size: 0.78rem; color: var(--muted-text);
  text-transform: uppercase; letter-spacing: 0.1em;
  margin-bottom: 2px;
}
.contact-item-value {
  font-weight: 500; color: var(--ink-deep); font-size: 1rem;
}
.contact-item-value a { color: inherit; }
.contact-item-value a:hover { color: var(--chrome-blue); }

.contact-form {
  padding: 36px;
  background: linear-gradient(135deg, var(--pearl) 0%, #e9eff8 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
}
.contact-form h3 { margin-bottom: 8px; }
.contact-form .form-sub { color: var(--muted-text); margin-bottom: 24px; font-size: 0.95rem; }
.form-group { margin-bottom: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-group label {
  display: block; font-size: 0.85rem; font-weight: 500;
  margin-bottom: 6px; color: var(--ink-deep);
}
.form-control {
  width: 100%; padding: 12px 16px;
  background: white;
  border: 1px solid var(--line); border-radius: 8px;
  font: inherit; font-size: 0.95rem;
  color: var(--ink-deep);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-control:focus {
  outline: none;
  border-color: var(--chrome-blue);
  box-shadow: 0 0 0 3px rgba(25, 118, 210, 0.15);
}
textarea.form-control { resize: vertical; min-height: 110px; }
.btn-submit {
  width: 100%; padding: 14px;
  background: linear-gradient(135deg, var(--chrome-blue) 0%, var(--chrome-light) 100%);
  color: white; border-radius: 8px;
  font-weight: 600; font-size: 1rem;
  transition: all 0.2s;
}
.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(25, 118, 210, 0.35);
}
.form-disclaimer { font-size: 0.78rem; color: var(--muted-text); margin-top: 12px; text-align: center; }

/* ===== Footer ===== */
.site-footer {
  background: var(--ink-deep);
  color: var(--silver);
  padding: 80px 0 32px;
}
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px;
  margin-bottom: 56px;
}
.footer-brand img { height: 56px; margin-bottom: 16px; }
.footer-brand h3 { color: white; font-size: 1.1rem; margin-bottom: 6px; }
.footer-brand p { font-size: 0.9rem; color: var(--silver); line-height: 1.6; margin-bottom: 16px; max-width: 320px; }
.footer-col h4 {
  color: white; font-size: 0.85rem; font-weight: 600;
  margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.12em;
}
.footer-col ul { list-style: none; display: grid; gap: 8px; }
.footer-col a {
  color: var(--silver); font-size: 0.9rem;
  display: inline-block; padding: 2px 0;
}
.footer-col a:hover { color: var(--chrome-glow); }

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.82rem; color: var(--silver); flex-wrap: wrap; gap: 16px;
}
.footer-bottom a { color: var(--silver); }
.footer-bottom a:hover { color: white; }
.footer-meta { display: flex; gap: 20px; flex-wrap: wrap; }

/* ===== WhatsApp floating ===== */
.whatsapp-float {
  position: fixed; bottom: 24px; right: 24px;
  width: 60px; height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 1.8rem;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  z-index: 50;
  transition: transform 0.2s;
}
.whatsapp-float:hover { transform: scale(1.08); color: white; }
.whatsapp-float svg { width: 32px; height: 32px; }

/* ===== Prose (content pages, blog posts) ===== */
.prose { max-width: var(--container-prose); margin: 0 auto; }
.prose h2 { margin-top: 2.4em; margin-bottom: 0.7em; }
.prose h3 { margin-top: 1.8em; margin-bottom: 0.6em; }
.prose p { font-size: 1.05rem; line-height: 1.75; color: #2c3e58; margin-bottom: 1.2em; }
.prose ul, .prose ol { margin: 0 0 1.2em 1.6em; }
.prose li { margin-bottom: 0.4em; line-height: 1.7; }

/* ===== Breadcrumbs ===== */
.breadcrumbs {
  padding: 16px 0;
  background: var(--pearl);
  border-bottom: 1px solid var(--line);
  font-size: 0.85rem;
}
.breadcrumbs ol { list-style: none; display: flex; gap: 8px; flex-wrap: wrap; }
.breadcrumbs li { display: flex; align-items: center; gap: 8px; color: var(--muted-text); }
.breadcrumbs li:not(:last-child)::after { content: '/'; opacity: 0.4; }
.breadcrumbs a { color: var(--muted-text); }
.breadcrumbs a:hover { color: var(--chrome-blue); }
.breadcrumbs li:last-child { color: var(--ink-deep); font-weight: 500; }

/* ===== Page hero (smaller variant) ===== */
.page-hero {
  background:
    radial-gradient(ellipse at top right, rgba(25, 118, 210, 0.15), transparent 60%),
    linear-gradient(165deg, var(--ink-deep) 0%, #0d1c34 100%);
  color: white;
  padding: 64px 0 80px;
}
.page-hero h1 { color: white; margin-bottom: 16px; max-width: 800px; }
.page-hero .lead { color: var(--silver); max-width: 700px; }
.page-hero-meta {
  display: flex; gap: 24px; margin-top: 28px; flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.page-hero-meta .item { font-size: 0.9rem; color: var(--silver); }
.page-hero-meta .item strong { color: var(--chrome-glow); margin-right: 6px; }

/* ===== Blog ===== */
.blog-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
}
.blog-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s;
  color: inherit; text-decoration: none;
  display: flex; flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-3px); color: inherit;
  border-color: var(--chrome-blue);
  box-shadow: var(--shadow-glow);
}
.blog-card-image {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--chrome-blue) 0%, var(--ink-deep) 100%);
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.blog-card-image::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 24px 24px;
}
.blog-card-image-text {
  position: relative; z-index: 1;
  font-family: var(--font-display);
  font-size: 2.5rem; font-weight: 800;
  color: rgba(255, 255, 255, 0.95);
  text-align: center; padding: 24px;
  letter-spacing: -0.02em; line-height: 1.05;
}
.blog-card-body { padding: 24px; flex-grow: 1; display: flex; flex-direction: column; }
.blog-card-meta {
  display: flex; gap: 12px; align-items: center;
  font-size: 0.78rem; color: var(--muted-text);
  text-transform: uppercase; letter-spacing: 0.08em;
  margin-bottom: 12px;
}
.blog-card h3 { font-size: 1.2rem; margin-bottom: 10px; line-height: 1.3; }
.blog-card-excerpt { color: var(--muted-text); font-size: 0.95rem; flex-grow: 1; }

/* ===== Mobile ===== */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { max-width: 320px; margin: 0 auto; }
  .feature-block,
  .feature-block.reverse { grid-template-columns: 1fr; gap: 40px; }
  .feature-block.reverse > :first-child { order: 0; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 640px) {
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; justify-content: center; }
}

/* ============= IMAGE DISPLAYS ============= */

/* Service card with hero image */
.service-card-image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: linear-gradient(135deg, var(--ink-deep) 0%, var(--chrome-blue) 100%);
  margin: -28px -28px 0 -28px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.service-card-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.service-card:hover .service-card-image img { transform: scale(1.05); }

/* Image galleries */
.image-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 14px;
  margin: 40px 0;
}
.gallery-item {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--ink-deep);
  cursor: zoom-in;
  transition: transform 0.3s, box-shadow 0.3s;
}
.gallery-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.gallery-item:hover img { transform: scale(1.05); }

/* Featured/showcase grid - mosaic style */
.mosaic-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 12px;
  aspect-ratio: 16/9;
  margin: 40px 0;
}
.mosaic-grid > :first-child {
  grid-row: span 2;
}
.mosaic-grid .gallery-item { border-radius: var(--radius-md); }

@media (max-width: 768px) {
  .mosaic-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    aspect-ratio: auto;
  }
  .mosaic-grid > :first-child { grid-row: auto; grid-column: span 2; aspect-ratio: 16/9; }
}

/* Hero image (page-hero with background image) */
.page-hero.with-image {
  position: relative;
  overflow: hidden;
}
.page-hero.with-image::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10, 20, 36, 0.88) 0%, rgba(13, 28, 52, 0.82) 100%);
  z-index: 1;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
  filter: brightness(0.7);
}
.page-hero.with-image .container { position: relative; z-index: 2; }

/* Service hero side-by-side with image */
.service-intro-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  align-items: center;
  margin: 48px 0;
}
.service-intro-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-lg);
}
.service-intro-image img {
  width: 100%; height: 100%;
  object-fit: cover;
}
@media (max-width: 768px) {
  .service-intro-grid { grid-template-columns: 1fr; gap: 32px; }
  .service-intro-image { aspect-ratio: 16/10; }
}

/* Hero feature visual swap - use real image instead of stat */
.hero-feature-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 1.1;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.hero-feature-image img {
  width: 100%; height: 100%;
  object-fit: cover;
}

/* Showcase strip — narrow horizontal scroll of work photos */
.showcase-strip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 1fr);
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 8px 0 20px;
  margin: 0 -24px;
  padding-left: 24px;
  padding-right: 24px;
}
.showcase-strip::-webkit-scrollbar { height: 8px; }
.showcase-strip::-webkit-scrollbar-thumb { background: var(--line); border-radius: 4px; }
.showcase-strip .gallery-item {
  scroll-snap-align: start;
  min-width: 260px;
}

/* Lazy loading placeholder */
img[loading="lazy"] {
  background: linear-gradient(135deg, var(--pearl) 0%, #e9eff8 100%);
}

/* ============= HERO SHOWCASE (replaces floating logo) ============= */
.hero-showcase {
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 14px;
  max-width: 560px;
  margin-left: auto;
}
.hero-showcase-main {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4),
              0 0 0 1px rgba(130, 196, 245, 0.18);
}
.hero-showcase-main img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}
.hero-showcase:hover .hero-showcase-main img { transform: scale(1.04); }
.hero-showcase-badge {
  position: absolute;
  bottom: 18px; left: 18px;
  background: rgba(10, 20, 36, 0.86);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(130, 196, 245, 0.3);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  color: white;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hero-showcase-badge .badge-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--chrome-glow);
  line-height: 1;
}
.hero-showcase-badge .badge-label {
  font-size: 0.75rem;
  color: var(--silver);
  line-height: 1.3;
}
.hero-showcase-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.hero-showcase-strip img {
  width: 100%; aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s;
}
.hero-showcase-strip img:hover { transform: translateY(-3px); }

@media (max-width: 980px) {
  .hero-showcase { max-width: 480px; margin: 0 auto; }
  .hero-showcase-main { aspect-ratio: 4/3; }
}

/* ============= LOGO ON DARK BACKGROUNDS ============= */
/* Footer logo: chrome-blue glow ring for separation */
.footer-brand img {
  background: radial-gradient(circle at center,
              rgba(130, 196, 245, 0.18) 0%,
              transparent 70%);
  padding: 8px;
  border-radius: 14px;
}

/* ============= CASE STUDY CARDS ============= */
.case-study-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 24px;
}
.case-study-card {
  position: relative;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  color: var(--ink-deep);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}
.case-study-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.case-study-card-image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.case-study-card-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.case-study-card:hover .case-study-card-image img { transform: scale(1.06); }
.case-study-card-tag {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--ink-deep);
  color: white;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 6px 12px;
  border-radius: 999px;
}
.case-study-card-body {
  padding: 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.case-study-card-body h3 {
  margin: 0 0 8px;
  font-size: 1.2rem;
}
.case-study-card-meta {
  font-size: 0.85rem;
  color: var(--muted-text);
  margin-bottom: 12px;
}
.case-study-card-excerpt {
  color: var(--muted-text);
  font-size: 0.92rem;
  flex-grow: 1;
}
.case-study-card-arrow {
  margin-top: 14px;
  color: var(--chrome-blue);
  font-weight: 600;
  font-size: 0.9rem;
}

/* ============= CASE STUDY DETAIL PAGE ============= */
.cs-hero {
  background: var(--ink-deep);
  color: white;
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}
.cs-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.cs-hero-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
  aspect-ratio: 4/3;
}
.cs-hero-image img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.cs-hero h1 {
  color: white;
  margin-bottom: 16px;
}
.cs-hero .cs-tag {
  display: inline-block;
  background: var(--chrome-blue);
  color: white;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.cs-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.cs-hero-meta-item {
  display: flex;
  flex-direction: column;
}
.cs-hero-meta-item strong {
  color: var(--chrome-glow);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}
.cs-hero-meta-item span { color: white; font-size: 0.95rem; }

.cs-section {
  padding: 70px 0;
}
.cs-section h2 {
  font-size: 1.8rem;
  margin-bottom: 18px;
}
.cs-section p { margin-bottom: 14px; line-height: 1.65; }

.cs-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 12px;
  margin: 30px 0;
}
.cs-gallery img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius-md);
}

@media (max-width: 768px) {
  .cs-hero-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ============= INCLUDED / NOT INCLUDED LISTS ============= */
.scheme-lists {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin: 36px 0;
}
.scheme-list {
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--line);
}
.scheme-list.included {
  background: linear-gradient(135deg, #f0fdf4 0%, #ffffff 100%);
  border-color: rgba(34, 197, 94, 0.25);
}
.scheme-list.excluded {
  background: linear-gradient(135deg, #fef2f2 0%, #ffffff 100%);
  border-color: rgba(239, 68, 68, 0.25);
}
.scheme-list h3 {
  font-size: 1.15rem;
  margin: 0 0 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.scheme-list.included h3 { color: #15803d; }
.scheme-list.excluded h3 { color: #b91c1c; }
.scheme-list ul {
  margin: 0;
  padding-left: 0;
  list-style: none;
}
.scheme-list li {
  padding: 8px 0 8px 28px;
  position: relative;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.06);
  font-size: 0.95rem;
}
.scheme-list li:last-child { border-bottom: none; }
.scheme-list.included li::before {
  content: "✓";
  position: absolute; left: 4px;
  color: #15803d; font-weight: 700;
}
.scheme-list.excluded li::before {
  content: "✗";
  position: absolute; left: 4px;
  color: #b91c1c; font-weight: 700;
}
@media (max-width: 768px) {
  .scheme-lists { grid-template-columns: 1fr; }
}

/* ============= CASE STUDY STORY SEQUENCE ============= */
.cs-story {
  display: flex;
  flex-direction: column;
  gap: 60px;
  margin: 40px 0;
}
.cs-story-step {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: center;
}
.cs-story-step:nth-child(even) {
  grid-template-columns: 1fr 1.4fr;
}
.cs-story-step:nth-child(even) .cs-story-image { order: 2; }
.cs-story-step:nth-child(even) .cs-story-text { order: 1; }
.cs-story-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-lg);
}
.cs-story-image img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.cs-story-text h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}
.cs-story-text p { color: var(--muted-text); line-height: 1.65; }

@media (max-width: 880px) {
  .cs-story-step, .cs-story-step:nth-child(even) {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .cs-story-step:nth-child(even) .cs-story-image { order: 0; }
  .cs-story-step:nth-child(even) .cs-story-text { order: 0; }
}

/* ============= CASE STUDY SPECS + QUOTE ============= */
.cs-specs-block {
  background: var(--pearl);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin: 40px 0;
}
.cs-specs-block h2 { margin-top: 0; }
.cs-specs {
  display: grid;
  gap: 12px;
}
.cs-spec-row {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}
.cs-spec-row:last-child { border-bottom: none; }
.cs-spec-k {
  font-weight: 600;
  color: var(--ink-deep);
}
.cs-spec-v { color: var(--muted-text); }

.cs-quote {
  margin: 50px 0 0;
  padding: 32px;
  background: linear-gradient(135deg, var(--ink-deep) 0%, #122648 100%);
  border-radius: var(--radius-lg);
  color: white;
  border-left: 5px solid var(--chrome-blue);
}
.cs-quote p {
  font-family: var(--font-display);
  font-size: 1.35rem;
  line-height: 1.4;
  margin: 0 0 14px;
  font-style: italic;
}
.cs-quote cite {
  display: block;
  color: var(--chrome-glow);
  font-size: 0.9rem;
  font-style: normal;
  font-weight: 600;
}

/* ============= CINEMATIC FULL-BLEED HERO ============= */
.hero-cinematic {
  position: relative;
  min-height: 86vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  margin-top: -76px; /* pull behind sticky header */
}
.hero-cinematic-bg {
  position: absolute; inset: 0;
  z-index: 0;
}
.hero-cinematic-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  animation: heroKenBurns 18s ease-in-out infinite alternate;
}
@keyframes heroKenBurns {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}
.hero-cinematic-overlay {
  position: absolute; inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(10, 20, 36, 0.55) 0%, rgba(10, 20, 36, 0.45) 40%, rgba(10, 20, 36, 0.8) 100%);
}
.hero-cinematic-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  padding: 140px 0 80px;
}
.hero-cinematic-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--chrome-glow);
  margin-bottom: 22px;
  padding: 8px 16px;
  background: rgba(130, 196, 245, 0.12);
  border: 1px solid rgba(130, 196, 245, 0.3);
  border-radius: 999px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.hero-cinematic-h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.4rem, 6.5vw, 5.4rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: white;
  margin: 0 0 24px;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}
.hero-cinematic-sub {
  font-size: clamp(1rem, 1.8vw, 1.4rem);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.95);
  margin: 0 auto 28px;
  max-width: 920px;
  line-height: 1.5;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
.hero-cinematic-tagline {
  font-size: clamp(0.92rem, 1.3vw, 1.08rem);
  color: rgba(255, 255, 255, 0.85);
  margin: 0 auto 44px;
  max-width: 880px;
  line-height: 1.55;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}
.hero-cinematic-tagline strong {
  color: white;
  font-weight: 600;
}

/* Three-CTA card row */
.hero-cinematic-ctas {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 940px;
  margin: 0 auto;
}
.hc-cta {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 22px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  color: white;
  text-decoration: none;
  text-align: left;
  transition: all 0.25s;
}
.hc-cta:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.35);
  transform: translateY(-2px);
  color: white;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}
.hc-cta-primary {
  background: linear-gradient(135deg, rgba(25, 118, 210, 0.92) 0%, rgba(13, 71, 161, 0.92) 100%);
  border-color: rgba(130, 196, 245, 0.4);
}
.hc-cta-primary:hover {
  background: linear-gradient(135deg, rgba(25, 118, 210, 1) 0%, rgba(13, 71, 161, 1) 100%);
}
.hc-cta-wa:hover {
  background: rgba(37, 211, 102, 0.25);
  border-color: rgba(37, 211, 102, 0.6);
}
.hc-cta-icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  color: white;
}
.hc-cta-wa .hc-cta-icon {
  color: #25D366;
  background: rgba(255, 255, 255, 0.95);
}
.hc-cta-label {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.hc-cta-label strong {
  font-size: 1rem;
  font-weight: 600;
  color: white;
  letter-spacing: -0.01em;
}
.hc-cta-label span {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.75);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Trust strip at bottom */
.hero-cinematic-trust {
  position: relative;
  z-index: 2;
  margin-top: auto;
  background: rgba(10, 20, 36, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(130, 196, 245, 0.18);
}
.hero-cinematic-trust-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  padding: 20px 0;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
}
.hctrust-item {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
}
.hctrust-item strong {
  color: var(--chrome-glow);
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
}

/* Responsive */
@media (max-width: 880px) {
  .hero-cinematic { min-height: 90vh; }
  .hero-cinematic-content { padding: 110px 0 50px; }
  .hero-cinematic-ctas {
    grid-template-columns: 1fr;
    max-width: 460px;
  }
  .hero-cinematic-trust-inner {
    justify-content: center;
    gap: 18px;
    font-size: 0.82rem;
  }
}
@media (max-width: 540px) {
  .hero-cinematic-content { padding: 90px 0 40px; }
  .hero-cinematic-h1 br { display: none; }
  .hero-cinematic-sub br { display: none; }
  .hc-cta { padding: 14px 16px; }
  .hctrust-item strong { font-size: 1rem; }
}

/* ============= AIRPORT NOISE SCHEMES ============= */
.scheme-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 22px;
  margin: 40px 0;
}
.scheme-card {
  display: flex;
  flex-direction: column;
  padding: 28px;
  background: white;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 14px;
  text-decoration: none;
  color: inherit;
  transition: all 0.25s;
}
.scheme-card:hover {
  border-color: var(--chrome-blue);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
  color: inherit;
}
.scheme-card-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 14px;
}
.scheme-card-head h3 {
  font-size: 1.2rem;
  margin: 0;
  font-family: var(--font-display);
  color: var(--ink-deep);
}
.scheme-airport-code {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--chrome-blue);
  background: rgba(25, 118, 210, 0.08);
  padding: 4px 10px;
  border-radius: 6px;
}
.scheme-card-status {
  margin-bottom: 16px;
}
.status-badge {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 999px;
}
.status-active {
  background: rgba(34, 197, 94, 0.12);
  color: #15803d;
}
.status-cycle {
  background: rgba(234, 179, 8, 0.12);
  color: #a16207;
}
.status-paused {
  background: rgba(239, 68, 68, 0.12);
  color: #b91c1c;
}
.scheme-card-grant {
  font-size: 1rem;
  color: var(--ink-deep);
  margin: 0 0 12px;
}
.scheme-card-area {
  font-size: 0.88rem;
  color: var(--ink-soft);
  margin: 0 0 20px;
  line-height: 1.5;
  flex: 1;
}
.scheme-card-cta {
  font-weight: 600;
  color: var(--chrome-blue);
  font-size: 0.92rem;
}

/* Individual scheme page */
.scheme-hero-row {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 48px;
  align-items: start;
}
.scheme-hero-meta {
  background: white;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 14px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.scheme-meta-block {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.scheme-meta-label {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-soft);
}
.scheme-meta-value {
  font-size: 1rem;
  color: var(--ink-deep);
  line-height: 1.45;
}
@media (max-width: 880px) {
  .scheme-hero-row { grid-template-columns: 1fr; gap: 28px; }
}

/* Coverage grid */
.scheme-coverage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 32px 0;
}
.coverage-card {
  padding: 28px;
  border-radius: 12px;
  border: 1px solid rgba(15, 23, 42, 0.08);
}
.coverage-included {
  background: rgba(34, 197, 94, 0.04);
  border-color: rgba(34, 197, 94, 0.2);
}
.coverage-excluded {
  background: rgba(239, 68, 68, 0.04);
  border-color: rgba(239, 68, 68, 0.2);
}
.coverage-card h3 {
  margin-top: 0;
  font-size: 1.2rem;
}
.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(15, 23, 42, 0.05);
  font-size: 0.95rem;
  line-height: 1.55;
}
.check-list li:last-child { border-bottom: none; }
.check-icon {
  flex-shrink: 0;
  font-weight: 700;
  font-size: 1.1rem;
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.check-yes { color: #15803d; background: rgba(34, 197, 94, 0.15); }
.check-no { color: #b91c1c; background: rgba(239, 68, 68, 0.15); }
@media (max-width: 768px) {
  .scheme-coverage-grid { grid-template-columns: 1fr; }
}

/* Apply steps */
.apply-steps {
  counter-reset: step;
  list-style: none;
  padding: 0;
  margin: 32px 0;
  display: grid;
  gap: 14px;
  max-width: 760px;
}
.apply-steps li {
  counter-increment: step;
  background: white;
  padding: 18px 22px 18px 64px;
  border-radius: 10px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  position: relative;
  font-size: 0.96rem;
  line-height: 1.55;
}
.apply-steps li::before {
  content: counter(step);
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  background: var(--chrome-blue);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
}

/* ============= AIRPORT SCHEME ROLE BADGES ============= */
.role-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 18px;
}
.role-badge-official {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.12) 0%, rgba(22, 163, 74, 0.12) 100%);
  color: #15803d;
  border: 1px solid rgba(34, 197, 94, 0.3);
}
.role-badge-guidance {
  background: rgba(15, 23, 42, 0.06);
  color: var(--ink-soft);
  border: 1px solid rgba(15, 23, 42, 0.1);
}

.scheme-card-role { margin-bottom: 12px; }
.role-pill {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 3px 10px;
  border-radius: 6px;
}
.role-pill-official {
  background: rgba(34, 197, 94, 0.12);
  color: #15803d;
}
.role-pill-guidance {
  background: rgba(15, 23, 42, 0.05);
  color: var(--ink-soft);
}

.hub-callout {
  background: var(--sand);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 12px;
  padding: 24px 28px;
  margin-top: 28px;
  max-width: 880px;
  font-size: 0.96rem;
  line-height: 1.6;
}
.hub-callout strong { color: var(--ink-deep); }

/* Force hub-callout to render readable inside dark hero */
.hub-callout {
  background: white !important;
  color: var(--ink-deep) !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
}
.hub-callout strong { color: var(--ink-deep) !important; }

/* Override role badges for dark hero context (scheme pages) */
.scheme-hero .role-badge-guidance {
  background: rgba(255, 255, 255, 0.12) !important;
  color: white !important;
  border: 1px solid rgba(255, 255, 255, 0.25) !important;
  backdrop-filter: blur(10px);
}
.scheme-hero .role-badge-official {
  background: rgba(34, 197, 94, 0.18) !important;
  color: #86efac !important;
  border: 1px solid rgba(34, 197, 94, 0.45) !important;
  backdrop-filter: blur(10px);
}

/* ============= HTML SITEMAP PAGE ============= */
.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin: 48px 0;
}
.sitemap-col h2 {
  font-size: 1.15rem;
  margin: 0 0 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--chrome-blue);
  font-family: var(--font-display);
  color: var(--ink-deep);
}
.sitemap-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sitemap-col li {
  padding: 6px 0;
  font-size: 0.92rem;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}
.sitemap-col li a {
  text-decoration: none;
  color: var(--ink-deep);
  transition: color 0.15s;
}
.sitemap-col li a:hover { color: var(--chrome-blue); }

.sitemap-col-wide { grid-column: span 2; }
.sitemap-locations {
  columns: 3;
  column-gap: 32px;
}
.sitemap-locations li {
  break-inside: avoid;
}
@media (max-width: 768px) {
  .sitemap-col-wide { grid-column: span 1; }
  .sitemap-locations { columns: 2; }
}
@media (max-width: 480px) {
  .sitemap-locations { columns: 1; }
}
.sitemap-flag-official {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  color: #15803d;
  background: rgba(34, 197, 94, 0.12);
  padding: 1px 8px;
  border-radius: 4px;
  margin-left: 6px;
}

/* Footer now has 5 columns - adjust */
@media (min-width: 900px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr 1fr !important;
  }
}
