:root {
  --navy: #13213C;
  --navy-light: #1B2A4A;
  --navy-mid: #243656;
  --gold: #C5A55A;
  --gold-light: #D4BC7E;
  --gold-pale: #F0E8D4;
  --cream: #FAF8F4;
  --off-white: #F5F3EF;
  --warm-grey: #9A9488;
  --text: #2C2C2C;
  --text-light: #6B6860;
  --white: #FFFFFF;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Outfit', system-ui, sans-serif;
  --transition: cubic-bezier(0.22, 1, 0.36, 1);
}
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--sans); color: var(--text); background: var(--cream); overflow-x: hidden; -webkit-font-smoothing: antialiased; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 48px; }

/* ===== ANIMATIONS ===== */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.9s var(--transition), transform 0.9s var(--transition); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes glowPulse { 0%, 100% { opacity: 0.6; transform: scale(1); } 50% { opacity: 1; transform: scale(1.15); } }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

/* ===== TOPBAR ===== */
.topbar { background: var(--navy); color: rgba(255,255,255,0.6); font-size: 0.75rem; letter-spacing: 0.06em; padding: 8px 0; }
.topbar .container { display: flex; justify-content: space-between; align-items: center; }
.topbar a { color: var(--gold-light); text-decoration: none; }
.topbar a:hover { color: var(--gold); }
.topbar-left { display: flex; gap: 24px; align-items: center; }
.topbar-right { display: flex; gap: 20px; align-items: center; }
.rics-badge-small { display: inline-flex; align-items: center; gap: 6px; background: rgba(197,165,90,0.12); border: 1px solid rgba(197,165,90,0.3); border-radius: 3px; padding: 3px 10px; font-size: 0.68rem; color: var(--gold-light); font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; }
.rics-badge-small svg { width: 12px; height: 12px; fill: var(--gold-light); }

/* ===== HEADER ===== */
header { position: sticky; top: 0; z-index: 1000; background: var(--white); border-bottom: 1px solid rgba(0,0,0,0.06); transition: box-shadow 0.4s ease, background 0.4s ease; }
header.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,0.08); background: rgba(255,255,255,0.97); backdrop-filter: blur(12px); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 28px; padding: 0 48px; max-width: 1520px; margin: 0 auto; height: 80px; }
.logo { display: flex; flex-direction: column; text-decoration: none; line-height: 1.15; flex-shrink: 0; min-width: 360px; }
.logo-main { font-family: var(--serif); font-size: 1.45rem; font-weight: 700; color: var(--navy); letter-spacing: -0.01em; }
.logo-sub { font-family: var(--sans); font-size: 0.63rem; font-weight: 600; color: #9F7A2D; letter-spacing: 0.14em; text-transform: uppercase; white-space: nowrap; }
nav { display: flex; align-items: center; }
nav > a, .nav-dropdown > .nav-trigger { font-family: var(--sans); font-size: 0.8rem; font-weight: 500; color: var(--navy); text-decoration: none; letter-spacing: 0.04em; text-transform: uppercase; padding: 28px 16px; display: flex; align-items: center; gap: 5px; transition: color 0.3s ease; cursor: pointer; background: none; border: none; position: relative; }
nav > a::after, .nav-trigger::after { content: ''; position: absolute; bottom: 0; left: 16px; right: 16px; height: 2px; background: var(--gold); transform: scaleX(0); transition: transform 0.4s var(--transition); transform-origin: left; }
nav > a:hover::after, .nav-dropdown:hover .nav-trigger::after { transform: scaleX(1); }
nav > a:hover, .nav-dropdown:hover .nav-trigger { color: var(--gold); }
.nav-arrow { width: 10px; height: 10px; fill: currentColor; transition: transform 0.3s ease; }
.nav-dropdown:hover .nav-arrow { transform: rotate(180deg); }
.header-cta { background: var(--navy); color: var(--white); font-family: var(--sans); font-size: 0.74rem; font-weight: 600; letter-spacing: 0.09em; text-transform: uppercase; text-decoration: none; padding: 12px 20px; border-radius: 2px; transition: all 0.3s ease; margin-left: 12px; white-space: nowrap; }
.header-cta:hover { background: var(--gold); color: var(--navy); }

/* RICS logos */
.rics-logo-header { display: flex; align-items: center; gap: 4px; margin-left: 20px; padding: 5px 12px; border: 1.5px solid var(--gold); border-radius: 3px; text-decoration: none; transition: all 0.3s ease; flex-shrink: 0; }
.rics-logo-header:hover { background: rgba(197,165,90,0.06); }
.rics-logo-header span { font-family: Georgia, serif; font-size: 0.72rem; font-weight: 700; color: var(--gold); letter-spacing: 0.15em; }
.rics-logo-header svg { width: 14px; height: 14px; }
.rics-logo-footer { display: inline-flex; align-items: center; gap: 8px; padding: 10px 18px; border: 1.5px solid rgba(197,165,90,0.35); border-radius: 3px; text-decoration: none; transition: all 0.3s ease; }
.rics-logo-footer:hover { border-color: var(--gold); }
.rics-logo-footer span { font-family: Georgia, serif; font-size: 0.75rem; font-weight: 700; color: var(--gold); letter-spacing: 0.12em; }
.rics-logo-footer small { font-family: var(--sans); font-size: 0.65rem; font-weight: 500; color: rgba(255,255,255,0.45); letter-spacing: 0.08em; text-transform: uppercase; }
.rics-logo-footer svg { width: 16px; height: 16px; }
.rics-banner-badge { display: inline-flex; align-items: center; gap: 8px; padding: 8px 16px; border: 1px solid rgba(197,165,90,0.3); border-radius: 3px; margin-top: 20px; }
.rics-banner-badge span { font-family: Georgia, serif; font-size: 0.7rem; font-weight: 700; color: var(--gold); letter-spacing: 0.12em; }
.rics-banner-badge small { font-family: var(--sans); font-size: 0.62rem; font-weight: 500; color: rgba(255,255,255,0.45); letter-spacing: 0.06em; text-transform: uppercase; }
.rics-banner-badge svg { width: 14px; height: 14px; }

/* Dropdown */
.nav-dropdown { position: relative; }
.mega-menu { position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(8px); background: var(--white); border: 1px solid rgba(0,0,0,0.06); border-radius: 4px; box-shadow: 0 20px 60px rgba(0,0,0,0.1), 0 4px 12px rgba(0,0,0,0.04); padding: 32px 36px; min-width: 280px; opacity: 0; visibility: hidden; transition: opacity 0.35s ease, transform 0.35s var(--transition), visibility 0.35s; pointer-events: none; }
.mega-menu.wide { min-width: 720px; padding: 36px 40px; }
.nav-dropdown:hover .mega-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); pointer-events: auto; }
.mega-menu-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px 32px; }
.mega-menu-grid.two-col { grid-template-columns: repeat(2, 1fr); }
.mega-menu h4 { font-family: var(--serif); font-size: 1.05rem; font-weight: 600; color: var(--navy); margin-bottom: 14px; padding-bottom: 10px; border-bottom: 1px solid var(--gold-pale); }
.mega-link { display: block; padding: 7px 12px; margin: 0 -12px; font-size: 0.82rem; color: var(--text-light); text-decoration: none; border-radius: 4px; transition: all 0.2s ease; line-height: 1.4; }
.mega-link:hover { background: var(--off-white); color: var(--navy); padding-left: 16px; }
.mega-col { min-width: 200px; }
.mega-col + .mega-col { border-left: 1px solid rgba(0,0,0,0.04); padding-left: 32px; }

/* Sectors dropdown uses a simpler flat list in the shared shell, so force a 2 x 4 grid layout. */
nav .nav-dropdown:nth-of-type(3) .mega-menu {
  min-width: 520px;
  display: grid;
  grid-template-columns: repeat(2, minmax(180px, 1fr));
  gap: 0 28px;
}

nav .nav-dropdown:nth-of-type(3) .mega-menu h4 {
  grid-column: 1 / -1;
}

/* ===== HAMBURGER ===== */
.hamburger { display: none; flex-direction: column; justify-content: center; align-items: center; width: 44px; height: 44px; background: none; border: 1px solid rgba(0,0,0,0.08); border-radius: 4px; cursor: pointer; gap: 5px; padding: 0; z-index: 1100; transition: border-color 0.3s ease; }
.hamburger:hover { border-color: var(--gold); }
.hamburger span { display: block; width: 20px; height: 1.5px; background: var(--navy); border-radius: 2px; transition: all 0.4s var(--transition); transform-origin: center; }
.hamburger.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ===== MOBILE OVERLAY ===== */
.mobile-overlay { position: fixed; inset: 0; z-index: 1050; background: var(--white); overflow-y: auto; -webkit-overflow-scrolling: touch; padding: 80px 0 40px; transform: translateX(100%); transition: transform 0.5s var(--transition); }
.mobile-overlay.open { transform: translateX(0); }
body.menu-open { overflow: hidden; }
.mobile-nav { padding: 16px 28px; }
.mobile-nav-item { border-bottom: 1px solid rgba(0,0,0,0.06); }
.mobile-nav-link { display: flex; align-items: center; justify-content: space-between; padding: 18px 0; font-family: var(--sans); font-size: 1rem; font-weight: 600; color: var(--navy); text-decoration: none; letter-spacing: 0.03em; background: none; border: none; width: 100%; cursor: pointer; text-align: left; }
.mobile-nav-link svg { width: 14px; height: 14px; stroke: var(--warm-grey); fill: none; stroke-width: 2; transition: transform 0.4s var(--transition); flex-shrink: 0; }
.mobile-nav-item.expanded .mobile-nav-link svg { transform: rotate(180deg); }
.mobile-nav-item.expanded .mobile-nav-link { color: var(--gold); }
.mobile-sub { max-height: 0; overflow: hidden; transition: max-height 0.5s var(--transition); }
.mobile-sub-inner { padding: 0 0 16px 0; }
.mobile-sub-group { margin-bottom: 16px; }
.mobile-sub-heading { font-family: var(--sans); font-size: 0.7rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); padding: 8px 0; margin-bottom: 4px; }
.mobile-sub-link { display: block; padding: 9px 0 9px 12px; font-size: 0.88rem; color: var(--text-light); text-decoration: none; border-left: 2px solid transparent; transition: all 0.2s ease; }
.mobile-sub-link:hover, .mobile-sub-link:active { color: var(--navy); border-left-color: var(--gold); padding-left: 16px; }
.mobile-nav-cta { display: block; text-align: center; background: var(--navy); color: var(--white); font-family: var(--sans); font-size: 0.85rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; text-decoration: none; padding: 16px 28px; border-radius: 3px; margin: 28px 28px 0; transition: background 0.3s ease; }
.mobile-nav-cta:hover { background: var(--gold); color: var(--navy); }
.mobile-nav-footer { margin-top: 32px; padding: 24px 28px; border-top: 1px solid rgba(0,0,0,0.06); display: flex; flex-direction: column; gap: 12px; }
.mobile-nav-footer a { font-size: 0.82rem; color: var(--text-light); text-decoration: none; display: flex; align-items: center; gap: 10px; }
.mobile-nav-footer a svg { width: 16px; height: 16px; stroke: var(--gold); fill: none; stroke-width: 1.8; flex-shrink: 0; }
.mobile-rics-badge { display: inline-flex; align-items: center; gap: 8px; background: var(--off-white); border: 1px solid rgba(197,165,90,0.2); border-radius: 3px; padding: 10px 16px; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--navy); margin-top: 8px; width: fit-content; }
.mobile-rics-badge svg { width: 14px; height: 14px; fill: var(--gold); }

/* ===== BUTTONS ===== */
.btn-primary { display: inline-flex; align-items: center; gap: 10px; background: var(--gold); color: var(--navy); font-family: var(--sans); font-size: 0.82rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; text-decoration: none; padding: 16px 36px; border-radius: 2px; transition: all 0.4s var(--transition); border: none; cursor: pointer; }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(197,165,90,0.3); }
.btn-secondary { display: inline-flex; align-items: center; gap: 10px; background: transparent; color: var(--white); font-family: var(--sans); font-size: 0.82rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; text-decoration: none; padding: 16px 32px; border: 1px solid rgba(255,255,255,0.2); border-radius: 2px; transition: all 0.4s ease; }
.btn-secondary:hover { border-color: var(--gold); color: var(--gold); }

/* ===== HERO ===== */
.hero { position: relative; min-height: 92vh; display: flex; align-items: center; background: var(--navy); overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background: radial-gradient(ellipse 80% 60% at 70% 40%, rgba(36,54,86,1) 0%, transparent 70%), radial-gradient(ellipse 50% 50% at 20% 80%, rgba(19,33,60,1) 0%, transparent 60%), linear-gradient(135deg, #0D1A2E 0%, #1B2A4A 40%, #243656 100%); }
.hero-pattern { position: absolute; inset: 0; opacity: 0.035; background-image: repeating-linear-gradient(0deg, transparent, transparent 80px, rgba(197,165,90,1) 80px, rgba(197,165,90,1) 81px), repeating-linear-gradient(90deg, transparent, transparent 80px, rgba(197,165,90,1) 80px, rgba(197,165,90,1) 81px); }
.hero-glow { position: absolute; width: 600px; height: 600px; border-radius: 50%; background: radial-gradient(circle, rgba(197,165,90,0.08) 0%, transparent 70%); top: -100px; right: -100px; animation: glowPulse 8s ease-in-out infinite; }
.hero-content { position: relative; z-index: 2; max-width: 1400px; margin: 0 auto; padding: 0 48px; width: 100%; }
.hero-layout { display: grid; grid-template-columns: minmax(0, 1.26fr) minmax(245px, 315px); gap: 64px; align-items: end; }
.hero-copy { max-width: 820px; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 12px; margin-bottom: 32px; opacity: 0; animation: fadeUp 1s var(--transition) 0.3s forwards; }
.hero-eyebrow-line { width: 48px; height: 1px; background: var(--gold); }
.hero-eyebrow-text { font-family: var(--sans); font-size: 0.78rem; font-weight: 600; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); }
.hero h1 { font-family: var(--serif); font-size: clamp(2.8rem, 5vw, 4.45rem); font-weight: 600; color: var(--white); line-height: 1.05; max-width: 820px; margin-bottom: 24px; opacity: 0; animation: fadeUp 1s var(--transition) 0.5s forwards; }
.hero-highlight { color: var(--gold-light); }
.hero-subtitle { font-family: var(--sans); font-size: 1.08rem; font-weight: 300; color: rgba(255,255,255,0.72); max-width: 700px; line-height: 1.65; margin-bottom: 48px; opacity: 0; animation: fadeUp 1s var(--transition) 0.7s forwards; }
.hero-actions { display: flex; gap: 16px; align-items: center; opacity: 0; animation: fadeUp 1s var(--transition) 0.9s forwards; flex-wrap: wrap; }
.hero-panel { align-self: center; padding: 26px 26px; border: 1px solid rgba(197,165,90,0.18); background: linear-gradient(180deg, rgba(255,255,255,0.07) 0%, rgba(255,255,255,0.03) 100%); backdrop-filter: blur(10px); box-shadow: 0 20px 50px rgba(0,0,0,0.12); }
.hero-panel-kicker { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 18px; }
.hero-panel-item { padding: 16px 0; border-top: 1px solid rgba(255,255,255,0.08); }
.hero-panel-item:first-of-type { border-top: none; padding-top: 0; }
.hero-panel-item h2 { font-family: var(--serif); font-size: 1.32rem; font-weight: 600; color: var(--white); margin-bottom: 8px; line-height: 1.1; }
.hero-panel-item p { font-size: 0.84rem; line-height: 1.6; color: rgba(255,255,255,0.62); }
.hero-panel-footer { margin-top: 18px; padding-top: 18px; border-top: 1px solid rgba(197,165,90,0.18); font-size: 0.74rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.52); }

/* ===== TRUST BAR ===== */
.trust-bar { background: var(--white); padding: 20px 0; border-bottom: 1px solid rgba(0,0,0,0.05); }
.trust-bar .container { display: flex; align-items: center; justify-content: center; gap: 44px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 10px; font-size: 0.76rem; color: var(--text-light); letter-spacing: 0.02em; }
.trust-icon { width: 32px; height: 32px; border-radius: 50%; background: var(--off-white); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.trust-icon svg { width: 16px; height: 16px; stroke: var(--gold); fill: none; stroke-width: 1.8; }
.trust-item strong { color: var(--navy); font-weight: 600; }

/* ===== SECTIONS ===== */
.section { padding: 96px 0; }
.section-dark { background: var(--navy); color: var(--white); }
.section-alt { background: var(--off-white); }
.section-header { margin-bottom: 44px; }
.section-eyebrow { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
.section-eyebrow-line { width: 40px; height: 1px; background: var(--gold); }
.section-eyebrow-text { font-family: var(--sans); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); }
.section-title { font-family: var(--serif); font-size: clamp(2rem, 3.2vw, 2.8rem); font-weight: 600; color: var(--navy); line-height: 1.12; max-width: 620px; }
.section-dark .section-title { color: var(--white); }
.section-subtitle { font-size: 0.98rem; font-weight: 300; color: var(--text-light); max-width: 700px; line-height: 1.7; margin-top: 16px; }
.section-dark .section-subtitle { color: rgba(255,255,255,0.55); }

/* ===== SERVICE PILLARS ===== */
.service-pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-pillar { background: var(--white); border: 1px solid rgba(0,0,0,0.06); border-radius: 4px; padding: 40px 32px; position: relative; overflow: hidden; transition: all 0.5s var(--transition); cursor: pointer; display: flex; flex-direction: column; text-decoration: none; color: inherit; }
.service-pillar::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform 0.5s var(--transition); }
.service-pillar:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,0.08); border-color: transparent; }
.service-pillar:hover::before { transform: scaleX(1); }
.pillar-icon { width: 52px; height: 52px; border-radius: 4px; background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%); display: flex; align-items: center; justify-content: center; margin-bottom: 24px; }
.pillar-icon svg { width: 24px; height: 24px; stroke: var(--gold); fill: none; stroke-width: 1.5; }
.pillar-title { font-family: var(--serif); font-size: 1.35rem; font-weight: 600; color: var(--navy); margin-bottom: 14px; line-height: 1.2; min-height: 68px; }
.pillar-title-compact { font-size: 1.28rem; line-height: 1.14; }
.pillar-desc { font-size: 0.88rem; color: var(--text-light); line-height: 1.65; margin-bottom: 24px; min-height: 108px; }
.pillar-services { list-style: none; padding-top: 18px; border-top: 1px solid rgba(0,0,0,0.06); min-height: 206px; }
.pillar-services li { font-size: 0.8rem; color: var(--text-light); padding: 6px 0 6px 16px; position: relative; }
.pillar-services li::before { content: ''; position: absolute; left: 0; top: 13px; width: 6px; height: 1px; background: var(--gold); }
.pillar-link { display: inline-flex; align-items: center; gap: 6px; font-size: 0.78rem; font-weight: 600; color: var(--navy); text-decoration: none; letter-spacing: 0.06em; text-transform: uppercase; margin-top: auto; padding-top: 20px; transition: gap 0.3s ease, color 0.3s ease; }
.pillar-link:hover { gap: 10px; color: var(--gold); }
.pillar-link svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; }

/* ===== FIRE SAFETY ===== */
.fire-safety { display: grid; grid-template-columns: 1fr 1fr; gap: 0; min-height: 560px; }
.fire-left { background: linear-gradient(160deg, #0D1A2E 0%, var(--navy) 60%, var(--navy-mid) 100%); padding: 80px 64px; display: flex; flex-direction: column; justify-content: center; position: relative; overflow: hidden; }
.fire-left::after { content: ''; position: absolute; width: 300px; height: 300px; border: 1px solid rgba(197,165,90,0.08); border-radius: 50%; bottom: -100px; right: -80px; }
.fire-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(197,165,90,0.1); border: 1px solid rgba(197,165,90,0.25); border-radius: 2px; padding: 8px 16px; margin-bottom: 28px; width: fit-content; }
.fire-badge-dot { width: 6px; height: 6px; border-radius: 50%; background: #E85D45; animation: pulse 2s ease-in-out infinite; }
.fire-badge-text { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-light); }
.fire-title { font-family: var(--serif); font-size: 2.4rem; font-weight: 600; color: var(--white); line-height: 1.15; margin-bottom: 20px; }
.fire-desc { font-size: 0.95rem; font-weight: 300; color: rgba(255,255,255,0.6); line-height: 1.75; margin-bottom: 36px; max-width: 480px; }
.fire-cta { align-self: flex-start; padding-inline: 28px; }
.fire-right { background: var(--white); padding: 64px; display: flex; flex-direction: column; justify-content: center; }
.fire-services-groups { display: grid; gap: 24px; }
.fire-service-group { display: grid; grid-template-columns: minmax(170px, 210px) minmax(0, 1fr); gap: 24px; padding-bottom: 24px; border-bottom: 1px solid rgba(0,0,0,0.06); }
.fire-service-group:last-child { padding-bottom: 0; border-bottom: none; }
.fire-group-title { font-family: var(--sans); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--navy); line-height: 1.5; }
.fire-group-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px 22px; }
.fire-service-item { display: flex; align-items: flex-start; gap: 10px; }
.fire-service-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); margin-top: 6px; flex-shrink: 0; }
.fire-service-text { font-size: 0.84rem; color: var(--text); line-height: 1.5; }
.fire-legislation { margin-top: 32px; padding-top: 24px; border-top: 1px solid rgba(0,0,0,0.06); display: flex; flex-wrap: wrap; gap: 8px; }
.legislation-tag { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--navy); background: var(--off-white); border: 1px solid rgba(0,0,0,0.06); padding: 6px 14px; border-radius: 2px; }

/* ===== SECTORS ===== */
.sectors-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.sector-card { position: relative; background: var(--navy-mid); border-radius: 4px; padding: 40px 28px; min-height: 200px; display: flex; flex-direction: column; justify-content: flex-end; overflow: hidden; transition: all 0.5s var(--transition); cursor: default; border: 1px solid rgba(255,255,255,0.05); }
.sector-card::before { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,0.4) 100%); }
.sector-card:hover { transform: translateY(-4px); border-color: rgba(197,165,90,0.3); }
.sector-number { position: absolute; top: 20px; left: 28px; font-family: var(--serif); font-size: 2.5rem; font-weight: 300; color: rgba(197,165,90,0.12); z-index: 1; }
.sector-name { font-family: var(--serif); font-size: 1.25rem; font-weight: 600; color: var(--white); position: relative; z-index: 1; margin-bottom: 6px; }
.sector-desc { font-size: 0.78rem; color: rgba(255,255,255,0.45); position: relative; z-index: 1; line-height: 1.5; }

/* ===== PROJECTS ===== */
.projects-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.project-card { background: var(--white); border: 1px solid rgba(0,0,0,0.06); border-radius: 4px; overflow: hidden; transition: all 0.5s var(--transition); }
.project-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,0.06); }
.project-visual { height: 180px; background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%); position: relative; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.project-visual-pattern { position: absolute; inset: 0; opacity: 0.06; background-image: repeating-linear-gradient(45deg, transparent, transparent 20px, var(--gold) 20px, var(--gold) 21px); }
.project-visual-icon { position: relative; z-index: 1; }
.project-visual-icon svg { width: 48px; height: 48px; stroke: var(--gold); fill: none; stroke-width: 1; opacity: 0.6; }
.project-body { padding: 28px; }
.project-tag { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.project-title { font-family: var(--serif); font-size: 1.2rem; font-weight: 600; color: var(--navy); margin-bottom: 10px; line-height: 1.3; }
.project-desc { font-size: 0.85rem; color: var(--text-light); line-height: 1.6; }

/* ===== RICS SECTION ===== */
.rics-section { background: var(--off-white); padding: 100px 0; }
.rics-inner { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: center; }
.rics-emblem { display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 60px; }
.rics-shield { width: 140px; height: 160px; background: var(--navy); border-radius: 4px 4px 70px 70px; display: flex; align-items: center; justify-content: center; margin-bottom: 28px; border: 2px solid var(--gold); }
.rics-shield-text { font-family: var(--serif); font-size: 1.8rem; font-weight: 700; color: var(--gold); letter-spacing: 0.05em; }
.rics-emblem-label { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.25em; text-transform: uppercase; color: var(--navy); text-align: center; }
.rics-content h3 { font-family: var(--serif); font-size: 2.2rem; font-weight: 600; color: var(--navy); margin-bottom: 20px; line-height: 1.2; }
.rics-content p { font-size: 0.95rem; color: var(--text-light); line-height: 1.75; margin-bottom: 16px; }
.rics-points { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 32px; }
.rics-point { display: flex; align-items: flex-start; gap: 12px; padding: 16px; background: var(--white); border-radius: 4px; }
.rics-point-icon { width: 28px; height: 28px; border-radius: 50%; background: var(--navy); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.rics-point-icon svg { width: 12px; height: 12px; stroke: var(--gold); fill: none; stroke-width: 2; }
.rics-point-text { font-size: 0.82rem; color: var(--text); line-height: 1.5; }

/* ===== INSIGHTS ===== */
.insights-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.insight-card { background: var(--navy-mid); border-radius: 4px; padding: 36px 28px; border: 1px solid rgba(255,255,255,0.05); transition: all 0.4s var(--transition); text-decoration: none; display: block; }
.insight-card:hover { border-color: rgba(197,165,90,0.3); transform: translateY(-3px); }
.insight-date { font-size: 0.7rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.insight-title { font-family: var(--serif); font-size: 1.15rem; font-weight: 600; color: var(--white); line-height: 1.35; margin-bottom: 12px; }
.insight-excerpt { font-size: 0.82rem; color: rgba(255,255,255,0.45); line-height: 1.6; }

/* ===== CONTACT ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.contact-layout { display: grid; grid-template-columns: minmax(0, 1fr) minmax(340px, 480px); gap: 34px; align-items: start; }
.contact-content { display: grid; gap: 28px; }
.contact-title { margin-bottom: 24px; }
.contact-intro { font-size: 0.95rem; color: var(--text-light); line-height: 1.75; margin-bottom: 40px; max-width: 500px; }
.contact-details { margin-bottom: 32px; }
.contact-detail-item { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.contact-detail-item:last-child { margin-bottom: 0; }
.contact-detail-title { font-weight: 600; color: var(--navy); font-size: 0.88rem; }
.contact-detail-text { color: var(--text-light); font-size: 0.82rem; }
.contact-panel-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.contact-info-card { background: var(--white); border: 1px solid rgba(19,33,60,0.08); border-radius: 4px; padding: 28px 26px; box-shadow: 0 16px 36px rgba(19,33,60,0.05); min-height: 100%; }
.contact-info-card h3 { font-family: var(--serif); font-size: 1.34rem; color: var(--navy); margin-bottom: 16px; line-height: 1.12; }
.contact-direct-card { background: linear-gradient(180deg, rgba(19,33,60,0.98) 0%, rgba(32,54,96,0.98) 100%); border: 1px solid rgba(197,165,90,0.16); border-radius: 4px; padding: 30px 28px; box-shadow: 0 22px 44px rgba(19,33,60,0.12); }
.contact-direct-card h3 { font-family: var(--serif); font-size: 1.42rem; color: var(--white); margin-bottom: 18px; }
.contact-direct-card .section-eyebrow-text { color: var(--gold-light); }
.contact-direct-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px 24px; }
.contact-direct-label { display: inline-block; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 8px; }
.contact-direct-card p, .contact-direct-card a { font-size: 0.9rem; line-height: 1.75; color: rgba(255,255,255,0.74); text-decoration: none; }
.contact-bullet-list { list-style: none; display: grid; gap: 12px; }
.contact-bullet-list li { position: relative; padding-left: 18px; font-size: 0.88rem; color: var(--text-light); line-height: 1.72; }
.contact-bullet-list li::before { content: ''; position: absolute; left: 0; top: 0.82em; width: 7px; height: 1px; background: var(--gold); }
.contact-form-card { background: linear-gradient(180deg, #FBFAF6 0%, #F4F1E8 100%); border: 1px solid rgba(19,33,60,0.18); border-radius: 4px; padding: 40px; box-shadow: 0 24px 54px rgba(19,33,60,0.12); }
.contact-form-intro { font-size: 0.9rem; color: var(--text-light); line-height: 1.72; margin-bottom: 22px; }
.contact-form-row { margin-bottom: 20px; }
.contact-form-row:last-of-type { margin-bottom: 24px; }
.contact-form-row.two-col { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.contact-label { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--navy); display: block; margin-bottom: 8px; }
.contact-input { width: 100%; padding: 13px 16px; border: 1px solid rgba(19,33,60,0.16); border-radius: 3px; font-family: var(--sans); font-size: 0.88rem; color: var(--text); background: var(--white); outline: none; transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease; }
.contact-input::placeholder { color: #7A7F8C; }
.contact-input:focus { border-color: rgba(197,165,90,0.85); box-shadow: 0 0 0 3px rgba(197,165,90,0.14); background: #FFFEFB; }
.contact-select { color: var(--text-light); }
.contact-textarea { resize: vertical; min-height: 110px; }
.contact-submit { width: 100%; background: var(--navy); color: var(--white); border: none; padding: 16px; font-family: var(--sans); font-size: 0.82rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; border-radius: 3px; cursor: pointer; transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease; }
.contact-submit:hover { background: var(--gold); color: var(--navy); transform: translateY(-1px); box-shadow: 0 10px 24px rgba(197,165,90,0.22); }

/* ===== FIRM PAGE ===== */
.firm-banner { padding-bottom: 72px; }
.firm-banner-content { position: relative; z-index: 2; }
.firm-banner-points { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.firm-banner-point { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold-light); border: 1px solid rgba(197,165,90,0.24); background: rgba(197,165,90,0.08); padding: 8px 14px; border-radius: 2px; }
.firm-overview { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(290px, 380px); gap: 56px; align-items: start; }
.firm-lead { font-size: 1.04rem; color: var(--navy); line-height: 1.8; margin-bottom: 18px; max-width: 760px; }
.firm-body { font-size: 0.95rem; color: var(--text-light); line-height: 1.8; margin-bottom: 14px; }
.content-link { color: var(--navy); text-decoration: none; transition: color 0.2s ease; }
.content-link:hover { color: var(--gold); }
.firm-summary-card { background: linear-gradient(180deg, var(--navy) 0%, var(--navy-mid) 100%); border: 1px solid rgba(197,165,90,0.16); border-radius: 4px; padding: 30px 28px; box-shadow: 0 24px 48px rgba(19,33,60,0.14); }
.firm-summary-kicker { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 18px; }
.firm-summary-item { padding: 16px 0; border-top: 1px solid rgba(255,255,255,0.08); }
.firm-summary-item:first-of-type { border-top: none; padding-top: 0; }
.firm-summary-item h3 { font-family: var(--serif); font-size: 1.25rem; color: var(--white); margin-bottom: 8px; line-height: 1.1; }
.firm-summary-item p { font-size: 0.84rem; color: rgba(255,255,255,0.62); line-height: 1.65; }
.firm-discipline-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.firm-discipline-card { background: var(--white); border: 1px solid rgba(19,33,60,0.08); border-radius: 4px; padding: 28px 24px; box-shadow: 0 16px 36px rgba(19,33,60,0.05); }
.firm-discipline-card h3 { font-family: var(--serif); font-size: 1.28rem; color: var(--navy); margin-bottom: 12px; line-height: 1.15; }
.firm-discipline-card p { font-size: 0.85rem; color: var(--text-light); line-height: 1.7; }
.firm-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.firm-panel { background: var(--white); border: 1px solid rgba(19,33,60,0.08); border-radius: 4px; padding: 34px 32px; box-shadow: 0 16px 36px rgba(19,33,60,0.05); }
.firm-chip-list { display: flex; flex-wrap: wrap; gap: 10px; margin: 4px 0 24px; }
.firm-chip { font-size: 0.76rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--navy); background: var(--off-white); border: 1px solid rgba(19,33,60,0.08); padding: 8px 12px; border-radius: 2px; }
.firm-process-list { display: grid; gap: 18px; margin-top: 4px; }
.firm-process-item { display: grid; grid-template-columns: 38px minmax(0, 1fr); gap: 14px; align-items: start; }
.firm-process-number { font-family: var(--serif); font-size: 1.5rem; line-height: 1; color: rgba(197,165,90,0.72); }
.firm-process-item h3 { font-family: var(--serif); font-size: 1.1rem; color: var(--navy); margin-bottom: 6px; }
.firm-process-item p { font-size: 0.84rem; color: var(--text-light); line-height: 1.65; }
.firm-standards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.firm-standard-card { background: var(--white); border: 1px solid rgba(19,33,60,0.08); border-radius: 4px; padding: 30px 26px; }
.firm-standard-card h3 { font-family: var(--serif); font-size: 1.25rem; color: var(--navy); margin-bottom: 10px; line-height: 1.15; }
.firm-standard-card p { font-size: 0.85rem; color: var(--text-light); line-height: 1.7; }
.firm-cta { background: linear-gradient(135deg, #0D1A2E 0%, var(--navy) 55%, var(--navy-mid) 100%); border: 1px solid rgba(197,165,90,0.16); border-radius: 4px; padding: 40px 42px; display: flex; justify-content: space-between; gap: 28px; align-items: end; box-shadow: 0 24px 54px rgba(19,33,60,0.12); }
.firm-cta .section-title { color: var(--white); max-width: 760px; }
.sector-banner-grid { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(280px, 360px); gap: 36px; align-items: end; }
.sector-audience-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.sector-audience-card { background: var(--white); border: 1px solid rgba(19,33,60,0.08); border-radius: 4px; padding: 28px 24px; box-shadow: 0 16px 36px rgba(19,33,60,0.05); }
.sector-audience-card h3 { font-family: var(--serif); font-size: 1.18rem; color: var(--navy); margin-bottom: 10px; line-height: 1.15; }
.sector-audience-card p { font-size: 0.84rem; color: var(--text-light); line-height: 1.7; }
.sector-support-strip { background: linear-gradient(180deg, rgba(19,33,60,0.03) 0%, rgba(19,33,60,0.06) 100%); border: 1px solid rgba(19,33,60,0.08); border-radius: 4px; padding: 34px 32px; }
.sector-support-list { list-style: none; display: grid; gap: 14px; margin-top: 20px; }
.sector-support-list li { position: relative; padding-left: 18px; font-size: 0.9rem; color: var(--text-light); line-height: 1.7; }
.sector-support-list li::before { content: ''; position: absolute; top: 11px; left: 0; width: 6px; height: 6px; border-radius: 50%; background: rgba(197,165,90,0.82); }
.service-summary-list { display: grid; gap: 16px; margin-top: 8px; }
.service-summary-item { padding-top: 16px; border-top: 1px solid rgba(255,255,255,0.08); }
.service-summary-item:first-child { padding-top: 0; border-top: none; }
.service-summary-item h3 { font-family: var(--serif); font-size: 1.18rem; color: var(--white); margin-bottom: 6px; line-height: 1.15; }
.service-summary-item p { font-size: 0.84rem; color: rgba(255,255,255,0.62); line-height: 1.65; }
.service-summary-item a { color: rgba(255,255,255,0.62); text-decoration: none; }
.service-key-list { list-style: none; display: grid; gap: 12px; margin-top: 12px; }
.service-key-list li { position: relative; padding-left: 22px; font-size: 0.9rem; color: var(--text-light); line-height: 1.75; }
.service-key-list li::before { content: ''; position: absolute; left: 0; top: 13px; width: 9px; height: 1px; background: var(--gold); }
.service-link-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-link-card { background: var(--white); border: 1px solid rgba(19,33,60,0.08); border-radius: 4px; padding: 26px 24px; box-shadow: 0 16px 36px rgba(19,33,60,0.05); text-decoration: none; transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease; display: flex; flex-direction: column; min-height: 100%; }
.service-link-card:hover { transform: translateY(-3px); box-shadow: 0 22px 44px rgba(19,33,60,0.08); border-color: rgba(197,165,90,0.28); }
.service-link-card h3 { font-family: var(--serif); font-size: 1.25rem; color: var(--navy); margin-bottom: 10px; line-height: 1.15; }
.service-link-card p { font-size: 0.85rem; color: var(--text-light); line-height: 1.7; margin-bottom: 18px; }
.service-link-arrow { font-size: 0.76rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-top: auto; }
.insight-section-intro { max-width: 900px; }
.insight-featured-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 34px; }
.insight-featured-card { min-height: 100%; background: linear-gradient(180deg, #17294A 0%, #0D1A2E 100%); border: 1px solid rgba(197,165,90,0.18); border-radius: 4px; padding: 30px 28px; box-shadow: 0 22px 50px rgba(19,33,60,0.08); display: block; text-decoration: none; transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease; }
.insight-featured-card:hover { transform: translateY(-3px); box-shadow: 0 28px 54px rgba(19,33,60,0.12); border-color: rgba(197,165,90,0.32); }
.insight-featured-card h3 { font-family: var(--serif); font-size: 1.42rem; line-height: 1.15; color: var(--white); margin-bottom: 14px; }
.insight-featured-card p { font-size: 0.88rem; line-height: 1.75; color: rgba(255,255,255,0.68); }
.insight-card-meta { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 18px; }
.insight-article-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.insight-article-card { min-height: 100%; background: var(--white); border: 1px solid rgba(19,33,60,0.08); border-radius: 4px; padding: 26px 24px; box-shadow: 0 16px 36px rgba(19,33,60,0.05); }
.insight-article-tag { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.insight-article-card h3 { font-family: var(--serif); font-size: 1.24rem; line-height: 1.15; color: var(--navy); margin-bottom: 12px; }
.insight-article-card p { font-size: 0.85rem; line-height: 1.7; color: var(--text-light); }
.insight-prose { display: grid; gap: 26px; }
.insight-prose .content-block { margin-bottom: 0; }
.service-faq-list { display: grid; gap: 14px; }
.service-faq-item { background: var(--white); border: 1px solid rgba(19,33,60,0.08); border-radius: 4px; padding: 0 24px; box-shadow: 0 12px 28px rgba(19,33,60,0.04); }
.service-faq-item summary { list-style: none; cursor: pointer; padding: 22px 0; font-family: var(--serif); font-size: 1.22rem; color: var(--navy); display: flex; justify-content: space-between; gap: 16px; align-items: center; }
.service-faq-item summary::-webkit-details-marker { display: none; }
.service-faq-item summary::after { content: '+'; font-family: var(--sans); font-size: 1rem; color: var(--gold); flex: 0 0 auto; }
.service-faq-item[open] summary::after { content: '-'; }
.service-faq-item p { padding: 0 0 22px; font-size: 0.9rem; color: var(--text-light); line-height: 1.75; }
.project-hero-grid { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(300px, 380px); gap: 56px; align-items: center; }
.project-intro-grid { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(300px, 380px); gap: 28px; align-items: stretch; }
.project-intro-copy { background: var(--white); border: 1px solid rgba(19,33,60,0.08); border-radius: 4px; padding: 30px 28px; box-shadow: 0 16px 36px rgba(19,33,60,0.05); }
.project-focus-card { background: linear-gradient(180deg, var(--navy) 0%, var(--navy-mid) 100%); border: 1px solid rgba(197,165,90,0.16); border-radius: 4px; padding: 30px 28px; box-shadow: 0 22px 44px rgba(19,33,60,0.12); }
.project-focus-card .section-title { color: var(--white); font-size: 2rem; margin-bottom: 14px; }
.project-focus-card .firm-body { color: rgba(255,255,255,0.72); margin-bottom: 18px; }
.project-focus-list { list-style: none; display: grid; gap: 10px; }
.project-focus-list li { position: relative; padding-left: 18px; font-size: 0.86rem; line-height: 1.7; color: rgba(255,255,255,0.72); }
.project-focus-list li::before { content: ''; position: absolute; left: 0; top: 0.7em; width: 7px; height: 1px; background: var(--gold); }
.project-pillar-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.project-pillar-card { background: linear-gradient(180deg, rgba(19,33,60,0.98) 0%, rgba(32,54,96,0.98) 100%); border: 1px solid rgba(197,165,90,0.16); border-radius: 4px; padding: 26px 24px; box-shadow: 0 20px 42px rgba(19,33,60,0.12); min-height: 100%; }
.project-pillar-card h3 { font-family: var(--serif); font-size: 1.28rem; color: var(--white); margin-bottom: 10px; line-height: 1.15; }
.project-pillar-card p { font-size: 0.86rem; line-height: 1.72; color: rgba(255,255,255,0.68); }
.project-card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.project-detail-card { background: var(--white); border: 1px solid rgba(19,33,60,0.08); border-radius: 4px; padding: 26px 24px; box-shadow: 0 14px 34px rgba(19,33,60,0.05); position: relative; min-height: 100%; }
.project-detail-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--gold) 0%, rgba(197,165,90,0.18) 100%); }
.project-detail-card h3 { font-family: var(--serif); font-size: 1.22rem; color: var(--navy); margin-bottom: 10px; line-height: 1.15; }
.project-detail-card p { font-size: 0.86rem; color: var(--text-light); line-height: 1.72; }
.project-scope-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.project-scope-card { background: linear-gradient(180deg, var(--navy) 0%, var(--navy-mid) 100%); border: 1px solid rgba(197,165,90,0.16); border-radius: 4px; padding: 28px 26px; box-shadow: 0 22px 44px rgba(19,33,60,0.12); min-height: 100%; }
.project-scope-card .section-title { color: var(--white); font-size: 2rem; margin-bottom: 14px; }
.project-scope-card .firm-body { color: rgba(255,255,255,0.72); margin-bottom: 18px; }
.project-scope-card h3 { font-family: var(--serif); font-size: 1.32rem; color: var(--white); margin-bottom: 16px; }
.project-scope-card ul { list-style: none; display: grid; gap: 10px; }
.project-scope-card li { position: relative; padding-left: 18px; font-size: 0.86rem; line-height: 1.7; color: rgba(255,255,255,0.72); }
.project-scope-card li::before { content: ''; position: absolute; left: 0; top: 0.7em; width: 7px; height: 1px; background: var(--gold); }
.project-stage-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.project-stage-card { background: var(--white); border: 1px solid rgba(19,33,60,0.08); border-radius: 4px; padding: 24px 24px 22px; box-shadow: 0 14px 34px rgba(19,33,60,0.05); min-height: 100%; }
.project-stage-number { display: inline-flex; align-items: center; justify-content: center; width: 42px; height: 42px; border-radius: 999px; background: rgba(197,165,90,0.12); color: var(--navy); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.12em; margin-bottom: 18px; }
.project-stage-card h3 { font-family: var(--serif); font-size: 1.18rem; color: var(--navy); margin-bottom: 10px; line-height: 1.15; }
.project-stage-card p { font-size: 0.86rem; color: var(--text-light); line-height: 1.72; }
.approach-step-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.approach-step-card { background: var(--white); border: 1px solid rgba(19,33,60,0.08); border-radius: 4px; padding: 28px 22px; box-shadow: 0 14px 30px rgba(19,33,60,0.04); }
.approach-step-number { display: inline-block; font-family: var(--serif); font-size: 2rem; line-height: 1; color: rgba(197,165,90,0.72); margin-bottom: 16px; }
.approach-step-card h3 { font-family: var(--serif); font-size: 1.2rem; color: var(--navy); margin-bottom: 10px; line-height: 1.15; }
.approach-step-card p { font-size: 0.84rem; color: var(--text-light); line-height: 1.7; }
.approach-list { list-style: none; display: grid; gap: 12px; margin-top: 8px; }
.approach-list li { position: relative; padding-left: 20px; font-size: 0.9rem; color: var(--text-light); line-height: 1.75; }
.approach-list li::before { content: ''; position: absolute; left: 0; top: 13px; width: 8px; height: 1px; background: var(--gold); }
.leadership-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; align-items: stretch; }
.leadership-card { background: var(--white); border: 1px solid rgba(19,33,60,0.08); border-radius: 4px; overflow: hidden; box-shadow: 0 18px 40px rgba(19,33,60,0.06); display: flex; flex-direction: column; min-height: 100%; }
.leadership-portrait { min-height: 320px; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, #0D1A2E 0%, var(--navy) 60%, var(--navy-mid) 100%); position: relative; overflow: hidden; }
.leadership-portrait::before { content: ''; position: absolute; inset: 0; opacity: 0.06; background-image: repeating-linear-gradient(45deg, transparent, transparent 24px, rgba(197,165,90,1) 24px, rgba(197,165,90,1) 25px); }
.leadership-portrait span { position: relative; z-index: 1; font-family: var(--serif); font-size: 4.2rem; font-weight: 600; letter-spacing: 0.04em; color: rgba(255,255,255,0.92); }
.leadership-card-body { padding: 30px 28px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.leadership-name { font-family: var(--serif); font-size: 2rem; line-height: 1.05; color: var(--navy); }
.leadership-role { font-size: 0.86rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold); }
.leadership-credentials { font-size: 0.82rem; font-weight: 500; letter-spacing: 0.04em; color: var(--text-light); min-height: 22px; }
.leadership-credentials-empty { opacity: 0; }
.leadership-bio { font-size: 0.92rem; color: var(--text-light); line-height: 1.8; margin-top: 6px; }
.leadership-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: auto; padding-top: 14px; }
.leadership-closing { margin-top: 28px; background: linear-gradient(135deg, #0D1A2E 0%, var(--navy) 55%, var(--navy-mid) 100%); border: 1px solid rgba(197,165,90,0.16); border-radius: 4px; color: var(--white); padding: 24px 28px; font-family: var(--serif); font-size: 1.55rem; line-height: 1.2; box-shadow: 0 20px 44px rgba(19,33,60,0.1); }

/* ===== PAGE BANNER (Inner Pages) ===== */
.page-banner { position: relative; padding: 100px 0 60px; background: var(--navy); overflow: hidden; }
.page-banner-bg { position: absolute; inset: 0; background: linear-gradient(135deg, #0D1A2E 0%, #1B2A4A 40%, #243656 100%); }
.page-banner-pattern { position: absolute; inset: 0; opacity: 0.03; background-image: repeating-linear-gradient(0deg, transparent, transparent 60px, rgba(197,165,90,1) 60px, rgba(197,165,90,1) 61px), repeating-linear-gradient(90deg, transparent, transparent 60px, rgba(197,165,90,1) 60px, rgba(197,165,90,1) 61px); }
.page-breadcrumb { font-size: 0.78rem; color: rgba(255,255,255,0.4); margin-bottom: 16px; letter-spacing: 0.03em; }
.page-breadcrumb a { color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.2s; }
.page-breadcrumb a:hover { color: var(--gold); }
.page-banner-title { font-family: var(--serif); font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 600; color: var(--white); line-height: 1.15; max-width: 700px; }
.page-banner-subtitle { font-size: 1.05rem; font-weight: 300; color: rgba(255,255,255,0.55); max-width: 600px; line-height: 1.7; margin-top: 16px; }

/* ===== INNER PAGE CONTENT ===== */
.inner-content { max-width: 800px; }
.content-block { margin-bottom: 48px; }
.content-block h2 { font-family: var(--serif); font-size: 1.6rem; font-weight: 600; color: var(--navy); margin-bottom: 16px; line-height: 1.25; }
.content-block p { font-size: 0.95rem; color: var(--text-light); line-height: 1.8; margin-bottom: 12px; }
.service-list { list-style: none; padding: 0; }
.service-list li { font-size: 0.9rem; color: var(--text); padding: 10px 0 10px 24px; position: relative; border-bottom: 1px solid rgba(0,0,0,0.04); line-height: 1.5; }
.service-list li::before { content: ''; position: absolute; left: 0; top: 18px; width: 8px; height: 1px; background: var(--gold); }
.service-list li:last-child { border-bottom: none; }

/* ===== FOOTER ===== */
footer { background: #0A1020; color: rgba(255,255,255,0.5); padding: 80px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 64px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.footer-brand .logo { margin-bottom: 20px; }
.footer-brand .logo-main { color: var(--white); }
.footer-brand p { font-size: 0.85rem; line-height: 1.7; max-width: 320px; margin-bottom: 24px; }
.footer-col h5 { font-family: var(--sans); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 24px; }
.footer-col a { display: block; font-size: 0.85rem; color: rgba(255,255,255,0.45); text-decoration: none; padding: 5px 0; transition: color 0.2s ease; }
.footer-col a:hover { color: var(--white); }
.footer-bottom { padding: 28px 0; display: flex; justify-content: space-between; align-items: center; font-size: 0.75rem; }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { color: rgba(255,255,255,0.35); text-decoration: none; }
.footer-legal a:hover { color: var(--gold-light); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .service-pillars { grid-template-columns: repeat(2, 1fr); }
  .sectors-grid { grid-template-columns: repeat(2, 1fr); }
  .fire-safety { grid-template-columns: 1fr; }
  .fire-service-group { grid-template-columns: 1fr; gap: 14px; }
  .sector-banner-grid, .firm-overview, .firm-two-col, .project-hero-grid, .project-intro-grid, .project-scope-grid { grid-template-columns: 1fr; }
  .sector-audience-grid { grid-template-columns: repeat(2, 1fr); }
  .project-card-grid, .project-stage-grid, .project-pillar-grid { grid-template-columns: repeat(2, 1fr); }
  .approach-step-grid { grid-template-columns: repeat(2, 1fr); }
  .firm-discipline-grid { grid-template-columns: repeat(2, 1fr); }
  .firm-standards-grid { grid-template-columns: 1fr; }
  .service-link-grid, .insight-featured-grid, .insight-article-grid { grid-template-columns: 1fr; }
  .leadership-grid { grid-template-columns: 1fr; }
  .firm-cta { flex-direction: column; align-items: flex-start; }
  .rics-inner { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-layout { grid-template-columns: 1fr; gap: 40px; }
  .hero-copy { max-width: 860px; }
  .hero-panel { max-width: 460px; }
}
@media (max-width: 768px) {
  .container { padding: 0 24px; }
  .header-inner { padding: 0 24px; height: 64px; }
  nav { display: none; }
  .header-cta { display: none; }
  .hamburger { display: flex; }
  .topbar { display: none; }
  .section { padding: 80px 0; }
  .page-banner { padding: 80px 0 48px; }
  .service-pillars, .projects-grid, .insights-grid, .insight-featured-grid, .insight-article-grid { grid-template-columns: 1fr; }
  .pillar-title, .pillar-desc, .pillar-services { min-height: 0; }
  .sectors-grid { grid-template-columns: repeat(2, 1fr); }
  .fire-group-list { grid-template-columns: 1fr; }
  .firm-banner-point { width: 100%; }
  .sector-audience-grid, .project-card-grid, .project-stage-grid, .project-scope-grid, .project-pillar-grid, .contact-form-row.two-col { grid-template-columns: 1fr; }
  .approach-step-grid { grid-template-columns: 1fr; }
  .firm-discipline-grid { grid-template-columns: 1fr; }
  .firm-panel, .firm-summary-card, .firm-cta, .project-scope-card, .project-detail-card, .project-stage-card, .project-intro-copy, .project-focus-card, .project-pillar-card { padding: 28px 24px; }
  .sector-support-strip { padding: 28px 24px; }
  .firm-overview { gap: 32px; }
  .leadership-portrait { min-height: 260px; }
  .leadership-card-body { padding: 26px 24px; }
  .leadership-name { font-size: 1.8rem; }
  .leadership-closing { padding: 22px 24px; font-size: 1.3rem; }
  .fire-left, .fire-right { padding: 48px 24px; }
  .rics-points { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-content { padding: 0 24px; }
  .hero-layout { grid-template-columns: 1fr; gap: 32px; }
  .hero-copy { max-width: 100%; }
  .hero h1 { font-size: clamp(2.45rem, 10vw, 3.6rem); }
  .hero-subtitle { max-width: 100%; font-size: 1rem; }
  .hero-panel { padding: 22px 22px 24px; }
  .hero-panel-item h2 { font-size: 1.2rem; }
  .logo { min-width: auto; }
  .logo-sub { white-space: normal; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .footer-legal { flex-wrap: wrap; justify-content: center; }
  .contact-grid, .contact-layout, .contact-panel-grid, .contact-direct-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-form-card { padding: 28px 24px; }
}
