:root {
  --navy-deep: #0b1a2b;
  --navy: #16283f;
  --navy-light: #1f3a5c;
  --gold: #c9992f;
  --gold-dark: #a87f26;
  --bg: #f7f8fa;
  --text: #16283f;
  --muted: #64748b;
  --white: #ffffff;
  --radius: 10px;
  --shadow: 0 20px 50px rgba(11,26,43,0.15);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-family: 'Poppins', sans-serif;
  color: var(--navy);
  line-height: 1.2;
}

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

a { color: inherit; text-decoration: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 15px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary, .btn-gold {
  background: var(--gold);
  color: var(--navy-deep);
  box-shadow: 0 10px 24px rgba(201,153,47,0.35);
}
.btn-primary:hover, .btn-gold:hover { background: var(--gold-dark); }

.btn-outline {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.6);
  color: var(--white);
}
.btn-outline:hover { background: rgba(255,255,255,0.12); }
.btn-outline-dark {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid rgba(11,26,43,0.25);
}
.btn-outline-dark:hover { border-color: var(--gold); color: var(--gold-dark); background: rgba(201,153,47,0.07); }

.btn-block { width: 100%; text-align: center; border: none; cursor: pointer; }

/* Utility bar */
.utility-bar {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.75);
  font-size: 13px;
}
.utility-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 24px;
}
.utility-left span { margin-right: 20px; }
.utility-right a { color: var(--gold); font-weight: 600; }

/* Header */
.site-header {
  background: var(--white);
  border-bottom: 1px solid #e8eaed;
  position: sticky;
  top: 0;
  z-index: 50;
  transition: background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
}
.brand { display: block; }
.brand img { height: 58px; width: auto; }
.brand .logo-light { display: none; }
.main-nav { display: flex; gap: 34px; }
.main-nav a {
  font-weight: 600; color: var(--navy); font-size: 14.5px;
  letter-spacing: 0.02em;
  position: relative; padding-bottom: 4px;
  transition: color 0.2s ease;
}
.main-nav a::after {
  content: '';
  position: absolute; left: 0; right: 100%; bottom: 0;
  height: 2px; background: var(--gold);
  transition: right 0.2s ease;
}
.main-nav a.active::after, .main-nav a:hover::after { right: 0; }
.main-nav a.active, .main-nav a:hover { color: var(--gold-dark); }

/* Transparent overlay header (home page, over hero) */
.site-header.header-overlay {
  position: absolute;
  top: auto;
  left: 0; right: 0;
  background: transparent;
  border-bottom-color: transparent;
}
.site-header.header-overlay .brand {
  background: rgba(255,255,255,0.96);
  padding: 10px 18px;
  border-radius: 8px;
  box-shadow: 0 6px 22px rgba(0,0,0,0.28);
}
.site-header.header-overlay .brand .logo-dark { display: block; }
.site-header.header-overlay .brand .logo-light { display: none; }
.site-header.header-overlay .main-nav a {
  color: rgba(255,255,255,0.95);
  text-shadow: 0 2px 10px rgba(0,0,0,0.6);
}
.site-header.header-overlay .main-nav a.active,
.site-header.header-overlay .main-nav a:hover { color: var(--gold); }

/* Solid state once scrolled */
.site-header.header-overlay.is-stuck {
  position: fixed;
  top: 0;
  background: rgba(255,255,255,0.97);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom-color: #e8eaed;
  box-shadow: 0 6px 24px rgba(11,26,43,0.08);
  animation: headerDrop 0.32s ease;
}
.site-header.header-overlay.is-stuck .brand {
  background: transparent;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
}
.site-header.header-overlay.is-stuck .brand .logo-dark { display: block; }
.site-header.header-overlay.is-stuck .brand .logo-light { display: none; }
.site-header.header-overlay.is-stuck .main-nav a { color: var(--navy); text-shadow: none; }
.site-header.header-overlay.is-stuck .main-nav a.active,
.site-header.header-overlay.is-stuck .main-nav a:hover { color: var(--gold-dark); }
@keyframes headerDrop {
  from { transform: translateY(-100%); }
  to { transform: translateY(0); }
}

/* Hero — full-bleed image with diagonal cut */
.hero-full {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: center;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% 88%, 0 100%);
  margin-bottom: -70px;
}
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(9,20,33,0.72) 0%, rgba(9,20,33,0.35) 35%, rgba(9,20,33,0.55) 100%),
    linear-gradient(90deg, rgba(11,26,43,0.45) 0%, rgba(11,26,43,0.30) 50%, rgba(11,26,43,0.45) 100%);
}
.hero-full-inner {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  padding: 190px 24px 200px;
}
.eyebrow {
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 13px;
  margin-bottom: 22px;
}
.eyebrow-light { color: var(--gold); }
.hero-full-inner h1 {
  color: var(--white);
  font-size: clamp(36px, 6vw, 68px);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  margin-bottom: 26px;
  text-shadow: 0 4px 30px rgba(0,0,0,0.4);
}
.hero-full-inner h1 .accent-rule {
  display: block;
  width: 78px; height: 3px;
  background: var(--gold);
  margin: 26px auto 0;
}
.hero-sub {
  color: rgba(255,255,255,0.9);
  font-size: 17.5px;
  max-width: 640px;
  margin: 0 auto 36px;
  text-shadow: 0 2px 14px rgba(0,0,0,0.35);
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }

/* Features */
.features { padding: 90px 0; background: var(--white); }
.features-head { max-width: 620px; margin: 0 auto 56px; text-align: center; }
.features-head h2 { font-size: 32px; margin-bottom: 14px; }
.features-head p { color: var(--muted); font-size: 16px; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.feature-card {
  position: relative;
  text-align: left;
  padding: 0;
  border-radius: var(--radius);
  border: 1px solid #edf0f3;
  overflow: hidden;
  background: var(--white);
  transition: box-shadow 0.35s ease, transform 0.35s ease, border-color 0.35s ease;
}
.feature-card:hover {
  box-shadow: 0 18px 42px rgba(11,26,43,0.14);
  transform: translateY(-5px);
  border-color: rgba(201,153,47,0.45);
}
.feature-media {
  position: relative;
  height: 210px;
  overflow: hidden;
}
.feature-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.feature-card:hover .feature-media img { transform: scale(1.07); }
.feature-media::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,26,43,0) 45%, rgba(11,26,43,0.35) 100%);
}
.feature-body { padding: 44px 26px 28px; }
.feature-icon {
  position: absolute;
  left: 24px; top: 180px;
  z-index: 3;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--navy-deep);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  border: 3px solid var(--white);
  box-shadow: 0 6px 18px rgba(11,26,43,0.22);
  transition: background 0.35s ease, color 0.35s ease, transform 0.35s ease;
}
.feature-card:hover .feature-icon {
  background: var(--gold);
  color: var(--navy-deep);
  transform: scale(1.08);
}
.feature-icon svg { width: 28px; height: 28px; }
.feature-body h3 { font-size: 19px; margin-bottom: 10px; transition: color 0.35s ease; }
.feature-card:hover .feature-body h3 { color: var(--gold-dark); }
.feature-body p { color: var(--muted); font-size: 14.5px; margin-bottom: 14px; }
.feature-link { color: var(--gold-dark); font-weight: 600; font-size: 14px; }

/* Commercial section */
.commercial { background: var(--navy-deep); padding: 100px 0 140px; position: relative; }
.commercial-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.commercial-copy h2 { color: var(--white); font-size: 30px; margin-bottom: 18px; }
.commercial-copy p { color: rgba(255,255,255,0.75); margin-bottom: 30px; font-size: 16px; }
.commercial-media { position: relative; }
.commercial-media > img {
  border-radius: var(--radius);
  height: 380px;
  object-fit: cover;
  width: 100%;
}
.quote-card {
  position: absolute;
  right: -20px;
  bottom: -90px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px;
  width: 280px;
}
.quote-card h4 { font-size: 18px; margin-bottom: 6px; }
.quote-card p { color: var(--muted); font-size: 13.5px; margin-bottom: 18px; }
.quote-form { display: flex; flex-direction: column; gap: 14px; }
.quote-form label { font-size: 12.5px; font-weight: 600; color: var(--navy); display: flex; flex-direction: column; gap: 6px; }
.quote-form select, .quote-form input {
  font-family: 'Inter', sans-serif;
  padding: 10px 12px;
  border-radius: 6px;
  border: 1px solid #dde1e6;
  font-size: 14px;
  color: var(--text);
}

/* Lower grid */
.lower-grid { padding: 160px 0 90px; background: var(--bg); }
.lower-grid-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.lower-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  min-height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px 28px;
  background: var(--navy-deep);
  border: 1px solid #edf0f3;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.lower-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 48px rgba(11,26,43,0.22);
}
.lower-bg { position: absolute; inset: 0; }
.lower-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.lower-card:hover .lower-bg img { transform: scale(1.07); }
.lower-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(9,20,33,0.40) 0%, rgba(9,20,33,0.72) 52%, rgba(9,20,33,0.93) 100%);
  transition: background 0.35s ease;
}
.lower-card:hover .lower-overlay {
  background: linear-gradient(180deg, rgba(9,20,33,0.50) 0%, rgba(9,20,33,0.80) 52%, rgba(9,20,33,0.96) 100%);
}
.lower-content { position: relative; z-index: 2; }
.lower-icon {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: rgba(201,153,47,0.18);
  border: 1px solid rgba(201,153,47,0.5);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  transition: background 0.35s ease, color 0.35s ease;
}
.lower-card:hover .lower-icon { background: var(--gold); color: var(--navy-deep); }
.lower-icon svg { width: 22px; height: 22px; }
.lower-card h3 { font-size: 19px; margin-bottom: 10px; color: var(--white); }
.lower-card p { color: rgba(255,255,255,0.82); font-size: 14.5px; margin-bottom: 14px; }
.lower-card a { color: var(--gold); font-weight: 600; font-size: 14px; }
.lower-card a:hover { color: var(--white); }

/* Footer */
.site-footer { background: var(--navy-deep); color: rgba(255,255,255,0.6); padding: 40px 0; text-align: center; }
.footer-logo { height: 56px; width: auto; margin: 0 auto 14px; opacity: 0.95; }
.footer-copy { margin-top: 8px; font-size: 13px; }

/* Page header (interior pages) */
.page-hero {
  position: relative;
  overflow: hidden;
  background: var(--navy-deep);
  padding: 96px 0 108px;
  clip-path: polygon(0 0, 100% 0, 100% 88%, 0 100%);
  margin-bottom: -46px;
}
.page-hero-bg { position: absolute; inset: 0; }
.page-hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(9,20,33,0.94) 0%, rgba(11,26,43,0.86) 45%, rgba(11,26,43,0.74) 100%);
}
.page-hero .container { position: relative; z-index: 2; }
.breadcrumb {
  color: rgba(255,255,255,0.6);
  font-size: 13px;
  letter-spacing: 0.04em;
  margin-bottom: 14px;
}
.breadcrumb a { color: rgba(255,255,255,0.75); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { margin: 0 8px; color: rgba(255,255,255,0.4); }
.breadcrumb .current { color: var(--gold); }
.page-hero .eyebrow { margin-bottom: 14px; }
.page-hero h1 {
  color: var(--white);
  font-size: clamp(32px, 4.4vw, 50px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.005em;
  line-height: 1.08;
  margin-bottom: 18px;
}
.page-hero h1::after {
  content: '';
  display: block;
  width: 70px; height: 3px;
  background: var(--gold);
  margin-top: 20px;
}
.page-hero p { color: rgba(255,255,255,0.78); font-size: 16.5px; max-width: 660px; }

/* Generic content sections */
.section { padding: 80px 0; }
.section-alt { background: var(--white); }
.section-head { max-width: 700px; margin-bottom: 48px; }
.section-head h2 { font-size: 28px; margin-bottom: 12px; }
.section-head p { color: var(--muted); font-size: 15.5px; }

/* Card grid (reusable 2/3/4 col) */
.card-grid { display: grid; gap: 26px; }
.card-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.card-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.card-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
.info-card {
  position: relative;
  background: var(--white);
  border: 1px solid #edf0f3;
  border-radius: var(--radius);
  padding: 28px;
  overflow: hidden;
  transition: border-color 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease;
}
.info-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(201,153,47,0.13) 0%, rgba(201,153,47,0.04) 45%, rgba(255,255,255,0) 100%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}
.info-card::after {
  content: '';
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.info-card:hover {
  border-color: rgba(201,153,47,0.45);
  box-shadow: 0 16px 38px rgba(11,26,43,0.10);
  transform: translateY(-5px);
}
.info-card:hover::before { opacity: 1; }
.info-card:hover::after { transform: scaleX(1); }
.info-card > * { position: relative; z-index: 1; }
.info-card h3 { transition: color 0.35s ease; }
.info-card:hover h3 { color: var(--gold-dark); }
.info-card .num { color: var(--gold-dark); font-weight: 700; font-size: 13px; margin-bottom: 8px; display: block; }
.info-card h3 { font-size: 17px; margin-bottom: 10px; }
.info-card p { color: var(--muted); font-size: 14.5px; }

/* Two-column text panels (mission/vision) */
.split-panel { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin-bottom: 20px; }
.text-panel {
  background: var(--bg); border: 1px solid #edf0f3; border-radius: var(--radius); padding: 30px;
  transition: background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease;
}
.text-panel:hover {
  background: linear-gradient(160deg, rgba(201,153,47,0.10), rgba(255,255,255,0.6));
  border-color: rgba(201,153,47,0.4);
  box-shadow: 0 14px 32px rgba(11,26,43,0.09);
  transform: translateY(-4px);
}
.text-panel h3 { font-size: 18px; margin-bottom: 12px; transition: color 0.35s ease; }
.text-panel:hover h3 { color: var(--gold-dark); }
.text-panel p, .text-panel ul { color: var(--muted); font-size: 15px; }
.text-panel ul { padding-left: 20px; margin-top: 6px; }
.text-panel li { margin-bottom: 6px; }

/* Disclosure / notice box */
.notice-box {
  background: #fff8e6;
  border: 1px solid #f0ddab;
  border-radius: var(--radius);
  padding: 22px 26px;
  color: #6b5311;
  font-size: 14.5px;
  margin-bottom: 40px;
}
.notice-box strong { color: #4d3b0a; }

/* Timeline steps (delivery approach) */
.step-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
.step-card { text-align: center; }
.step-card .step-num {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--navy-deep); color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Poppins', sans-serif; font-weight: 700;
  margin: 0 auto 14px;
}
.step-card h3 { font-size: 15.5px; margin-bottom: 8px; }
.step-card p { color: var(--muted); font-size: 13.5px; }

/* Org chart (simple nested list style) */
.org-top {
  background: var(--navy-deep); color: var(--white);
  text-align: center; padding: 16px; border-radius: 8px;
  max-width: 280px; margin: 0 auto 30px; font-weight: 600;
}
.org-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 20px; }
.org-card {
  background: var(--white); border: 1px solid #edf0f3; border-radius: 8px;
  padding: 18px;
  transition: background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease;
}
.org-card:hover {
  background: linear-gradient(160deg, rgba(201,153,47,0.10), rgba(255,255,255,0));
  border-color: rgba(201,153,47,0.4);
  box-shadow: 0 12px 28px rgba(11,26,43,0.09);
  transform: translateY(-3px);
}
.org-card h4 { font-size: 14.5px; margin-bottom: 8px; color: var(--gold-dark); }
.org-card ul { padding-left: 18px; font-size: 13.5px; color: var(--muted); }

/* Project cards */
.project-card {
  background: var(--white); border: 1px solid #edf0f3; border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease;
}
.project-card:hover {
  border-color: rgba(201,153,47,0.45);
  box-shadow: 0 18px 40px rgba(11,26,43,0.14);
  transform: translateY(-5px);
}
.project-card img {
  width: 100%; height: 200px; object-fit: cover;
  transition: transform 0.55s ease;
}
.project-card:hover img { transform: scale(1.06); }
.project-card-body { padding: 22px; }
.project-card-body h3 { font-size: 17px; margin-bottom: 6px; transition: color 0.35s ease; }
.project-card:hover .project-card-body h3 { color: var(--gold-dark); }
.project-card-body .meta { color: var(--gold-dark); font-size: 13px; font-weight: 600; margin-bottom: 10px; }
.project-card-body p { color: var(--muted); font-size: 14px; }

/* Reference table */
.ref-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.ref-table th, .ref-table td { text-align: left; padding: 12px 16px; border-bottom: 1px solid #edf0f3; }
.ref-table th { background: var(--navy-deep); color: var(--white); font-family: 'Poppins', sans-serif; font-size: 13px; }
.ref-table tr:nth-child(even) { background: #fafbfc; }
.table-wrap { overflow-x: auto; background: var(--white); border-radius: var(--radius); border: 1px solid #edf0f3; }

/* Contact page */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
.contact-info h3 { font-size: 20px; margin-bottom: 18px; }
.contact-line { display: flex; gap: 14px; margin-bottom: 18px; align-items: flex-start; }
.contact-line .ic {
  color: var(--gold-dark);
  flex-shrink: 0;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(201,153,47,0.12);
  display: flex; align-items: center; justify-content: center;
}
.contact-line .ic svg { width: 18px; height: 18px; }
.contact-line p { color: var(--muted); font-size: 14.5px; margin: 0; }
.contact-line strong { display: block; color: var(--navy); font-size: 14.5px; margin-bottom: 2px; }
.contact-form-card {
  background: var(--white); border: 1px solid #edf0f3; border-radius: var(--radius);
  padding: 32px;
}
.contact-form-card label { display: block; font-size: 13px; font-weight: 600; color: var(--navy); margin-bottom: 6px; margin-top: 16px; }
.contact-form-card label:first-child { margin-top: 0; }
.contact-form-card input, .contact-form-card select, .contact-form-card textarea {
  width: 100%; padding: 12px 14px; border-radius: 6px; border: 1px solid #dde1e6;
  font-family: 'Inter', sans-serif; font-size: 14.5px; color: var(--text);
}
.contact-form-card textarea { resize: vertical; min-height: 110px; }
.contact-form-card .btn { margin-top: 22px; }
.map-wrap { border-radius: var(--radius); overflow: hidden; border: 1px solid #edf0f3; margin-top: 30px; }
.map-wrap iframe { width: 100%; height: 280px; border: 0; display: block; }

/* Responsive additions */
@media (max-width: 900px) {
  .card-grid.cols-2, .card-grid.cols-3, .card-grid.cols-4 { grid-template-columns: 1fr; }
  .split-panel { grid-template-columns: 1fr; }
  .step-grid { grid-template-columns: repeat(2, 1fr); }
  .org-row { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

/* Mobile menu toggle */
.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 8px;
  width: 44px; height: 44px;
  align-items: center;
  justify-content: center;
}
.nav-toggle span {
  display: block;
  position: relative;
  width: 24px; height: 2px;
  background: var(--navy);
  transition: background 0.2s ease;
}
.nav-toggle span::before,
.nav-toggle span::after {
  content: '';
  position: absolute; left: 0;
  width: 24px; height: 2px;
  background: var(--navy);
  transition: transform 0.25s ease, top 0.25s ease;
}
.nav-toggle span::before { top: -7px; }
.nav-toggle span::after { top: 7px; }
.site-header.header-overlay:not(.is-stuck) .nav-toggle span,
.site-header.header-overlay:not(.is-stuck) .nav-toggle span::before,
.site-header.header-overlay:not(.is-stuck) .nav-toggle span::after {
  background: var(--white);
}
.nav-toggle.is-open span { background: transparent; }
.nav-toggle.is-open span::before { top: 0; transform: rotate(45deg); }
.nav-toggle.is-open span::after { top: 0; transform: rotate(-45deg); }

/* Responsive */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; padding-top: 40px; }
  .hero-media img { height: 320px; border-radius: var(--radius); }
  .hero-actions { margin-bottom: 40px; }
  .features-grid { grid-template-columns: 1fr; }
  .commercial-inner { grid-template-columns: 1fr; }
  .quote-card { position: static; width: auto; margin-top: 24px; }
  .commercial { padding-bottom: 90px; }
  .lower-grid { padding-top: 90px; }
  .lower-grid-inner { grid-template-columns: 1fr; }
  .nav-toggle { display: flex; order: 3; }
  .brand { order: 1; }
  .header-inner .btn-primary { order: 2; margin-left: auto; margin-right: 10px; padding: 10px 18px; font-size: 14px; }
  .main-nav {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--white);
    box-shadow: 0 18px 40px rgba(11,26,43,0.16);
    border-top: 1px solid #e8eaed;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  .main-nav.is-open { max-height: 420px; }
  .main-nav a {
    color: var(--navy) !important;
    text-shadow: none !important;
    padding: 16px 24px;
    border-bottom: 1px solid #f1f3f5;
    font-size: 16px;
  }
  .main-nav a::after { display: none; }
  .main-nav a.active { color: var(--gold-dark) !important; background: #fbf8f1; }
  .site-header { position: relative; }
  .utility-left span:first-child { display: none; }

  /* New header / hero responsive */
  .brand img { height: 46px; }
  .footer-logo { height: 46px; }
  .header-inner { padding: 12px 20px; }
  .site-header.header-overlay { position: absolute; }
  .site-header.header-overlay.is-stuck { position: fixed; }
  .hero-full { min-height: 560px; clip-path: polygon(0 0, 100% 0, 100% 93%, 0 100%); }
  .hero-full-inner { padding: 130px 20px 150px; }
  .hero-actions .btn { flex: 1 1 auto; text-align: center; }
  .page-hero { padding: 76px 0 86px; clip-path: polygon(0 0, 100% 0, 100% 93%, 0 100%); }
}

@media (max-width: 520px) {
  .brand img { height: 40px; }
  .header-inner .btn-primary { display: none; }
  .hero-full-inner { padding: 110px 18px 130px; }
  .step-grid { grid-template-columns: 1fr; }
  .org-row { grid-template-columns: 1fr; }
}
