:root {
  --navy: #0a2342;
  --navy-2: #102f55;
  --blue: #1c4e9e;
  --gold: #c79b3b;
  --green: #2e8b57;
  --ink: #111827;
  --muted: #5e6877;
  --line: #dbe3ee;
  --soft: #f5f7fa;
  --white: #ffffff;
  --silver: #eef2f7;
  --shadow: 0 18px 45px rgba(10, 35, 66, .12);
  color-scheme: light;
}

[data-theme="dark"] {
  --ink: #f8fafc;
  --muted: #b8c5d5;
  --soft: #0d1828;
  --white: #101827;
  --silver: #152238;
  --line: #2b3c56;
  --shadow: 0 18px 45px rgba(0, 0, 0, .28);
  color-scheme: dark;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }

.skip-link {
  position: absolute;
  top: -40px;
  left: 16px;
  z-index: 100;
  padding: 8px 12px;
  background: var(--gold);
  color: #111;
}
.skip-link:focus { top: 16px; }

.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .82);
  border-bottom: 1px solid rgba(219, 227, 238, .7);
  backdrop-filter: blur(18px);
}
[data-theme="dark"] .site-nav { background: rgba(10, 20, 34, .82); }
.nav-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand { display: inline-flex; align-items: center; gap: 10px; color: var(--navy); }
[data-theme="dark"] .brand { color: var(--ink); }
.brand span { display: grid; line-height: 1; text-transform: uppercase; letter-spacing: 0; }
.brand strong { font-size: 1rem; }
.brand small { font-size: .72rem; color: var(--muted); }
.nav-panel { display: flex; align-items: center; gap: 20px; }
.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links > a, .mega-trigger {
  border: 0;
  background: transparent;
  padding: 10px 11px;
  color: var(--ink);
  font-weight: 700;
  font-size: .88rem;
}
.nav-links > a { position: relative; }
.nav-links > a::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 5px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}
.nav-links > a:hover::after,
.nav-links > a[aria-current="page"]::after { transform: scaleX(1); }
.mega-wrap { position: relative; }
.mega-trigger span { color: var(--gold); }
.mega-menu {
  position: absolute;
  top: 100%;
  left: -80px;
  width: min(720px, calc(100vw - 40px));
  padding: 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: .18s ease;
}
.mega-wrap:hover .mega-menu,
.mega-wrap:focus-within .mega-menu { opacity: 1; pointer-events: auto; transform: translateY(0); }
.mega-menu strong { display: block; color: var(--gold); margin-bottom: 8px; }
.mega-menu a { display: block; padding: 6px 0; color: var(--muted); font-weight: 650; }
.nav-actions { display: flex; align-items: center; gap: 8px; }
.icon-btn {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  border-radius: 8px;
}
.icon-btn svg, .feature-icon svg, .play-button svg, .download-card svg, .map-pin svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.language-control {
  min-width: 74px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 8px;
  padding: 0 8px;
}
.language-control svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2; }
.language-control select { border: 0; background: transparent; color: var(--ink); font-weight: 800; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 18px;
  border-radius: 8px;
  border: 1px solid var(--gold);
  background: var(--gold);
  color: #101010;
  font-weight: 850;
  box-shadow: 0 8px 20px rgba(199, 155, 59, .22);
}
.button:hover { transform: translateY(-1px); }
.button-light { background: rgba(255,255,255,.08); color: var(--ink); border-color: var(--line); box-shadow: none; }
.button-small { min-height: 36px; padding: 8px 12px; font-size: .86rem; }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.menu-toggle { display: none; }

.hero {
  position: relative;
  min-height: 86vh;
  overflow: hidden;
  display: grid;
  align-items: end;
  padding: 130px 0 28px;
  background: var(--navy);
}
.hero-bg, .hero-bg img, .hero-overlay { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.04); animation: slowZoom 18s ease-in-out infinite alternate; }
.hero-overlay { background: linear-gradient(90deg, rgba(5, 19, 37, .92), rgba(10,35,66,.65) 40%, rgba(10,35,66,.12)); }
.hero-content {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 32px;
  color: white;
  max-width: 760px;
  justify-self: center;
}
.hero h1, .page-hero h1, .project-hero h1 {
  font-family: Poppins, Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(2.6rem, 7vw, 6rem);
  line-height: .95;
  margin: 12px 0;
  letter-spacing: 0;
}
.hero p { font-size: clamp(1.1rem, 2vw, 1.45rem); margin: 0 0 14px; }
.hero-copy { max-width: 710px; color: rgba(255,255,255,.82); }
.hero-stats {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}
.eyebrow {
  display: inline-flex;
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
  font-size: .76rem;
  letter-spacing: .08em;
}

.section-block {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 76px 0;
}
.section-head { max-width: 760px; margin-bottom: 28px; }
.section-head h2, .split h2, .cta-band h2, .project-detail-grid h2, .media-plan-grid h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.04;
  margin: 10px 0;
  letter-spacing: 0;
}
.section-head p, .split p, .feature-card p, .project-body p, .news-card p, .download-card p { color: var(--muted); }
.split {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  gap: 44px;
  align-items: center;
}
.dark-band {
  width: 100%;
  max-width: none;
  padding-left: max(16px, calc((100vw - 1180px) / 2));
  padding-right: max(16px, calc((100vw - 1180px) / 2));
  background: linear-gradient(135deg, var(--navy), #19212b 54%, #31513d);
  color: white;
}
.dark-band .feature-card { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.18); }
.dark-band p { color: rgba(255,255,255,.76); }

.stat-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}
.stat-card, .feature-card, .project-card, .office-card, .leader-card, .award-card, .news-card, .download-card, .testimonial-card, .values-grid article, .process-steps article, .project-detail-grid article, .media-plan-grid article {
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.stat-card {
  padding: 18px;
  color: var(--ink);
  background: rgba(255,255,255,.92);
}
.stat-card strong {
  display: block;
  font-family: Montserrat, Inter, sans-serif;
  font-size: clamp(1.4rem, 3vw, 2.4rem);
  line-height: 1;
  color: var(--navy);
}
.stat-card span { color: var(--muted); font-weight: 750; }
.feature-grid, .values-grid, .download-grid, .award-grid, .news-grid, .testimonial-grid, .office-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.feature-card, .values-grid article, .download-card, .award-card, .news-card, .testimonial-card, .office-card, .leader-card {
  padding: 22px;
}
.feature-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--silver);
  color: var(--blue);
  margin-bottom: 14px;
}
.feature-card h3, .project-card h3, .office-card h3, .leader-card h3 { margin: 8px 0; line-height: 1.18; }
.feature-card strong { color: var(--gold); }

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.project-card { overflow: hidden; }
.project-media { position: relative; display: block; aspect-ratio: 16 / 10; background: var(--silver); }
.project-media img { width: 100%; height: 100%; object-fit: cover; }
.project-media span {
  position: absolute;
  right: 12px;
  top: 12px;
  padding: 6px 9px;
  border-radius: 8px;
  background: rgba(10, 35, 66, .88);
  color: white;
  font-size: .78rem;
  font-weight: 850;
}
.project-body { padding: 18px; }
.project-meta { display: flex; gap: 8px; flex-wrap: wrap; }
.project-meta span {
  padding: 4px 8px;
  border-radius: 8px;
  background: var(--silver);
  color: var(--muted);
  font-size: .76rem;
  font-weight: 850;
}
dl { margin: 0; display: grid; gap: 8px; }
dl div { display: grid; grid-template-columns: 95px 1fr; gap: 12px; }
dt { color: var(--muted); }
dd { margin: 0; font-weight: 800; }
.progress {
  height: 8px;
  border-radius: 999px;
  background: var(--silver);
  overflow: hidden;
  margin: 16px 0;
}
.progress span { display: block; height: 100%; background: linear-gradient(90deg, var(--gold), var(--green)); }
.progress.big { height: 14px; }
.card-actions { display: flex; gap: 12px; justify-content: space-between; align-items: center; }
.compare-label { display: inline-flex; align-items: center; gap: 6px; color: var(--muted); font-weight: 760; }
.finder-panel {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  padding: 16px;
  margin-bottom: 22px;
  border: 1px solid var(--line);
  background: var(--soft);
  border-radius: 8px;
}
.finder-panel label, .calculator label, .lead-form label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-weight: 850;
}
input, select, textarea {
  min-height: 44px;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  padding: 10px 12px;
}
textarea { min-height: 110px; resize: vertical; }

.page-hero {
  min-height: 48vh;
  display: grid;
  align-items: end;
  padding: 120px 0 72px;
  background:
    linear-gradient(135deg, rgba(10,35,66,.94), rgba(28,78,158,.76)),
    url("../images/hero-skyline.png") center/cover;
  color: white;
}
.page-hero-inner { width: min(1180px, calc(100% - 32px)); margin: 0 auto; max-width: 840px; }
.page-hero p { color: rgba(255,255,255,.82); font-size: 1.15rem; }

.timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.timeline-item {
  padding: 18px;
  border-left: 4px solid var(--gold);
  background: var(--soft);
  border-radius: 8px;
}
.timeline-item strong { color: var(--blue); font-size: 1.4rem; }
.process-steps, .experience-grid, .mixed-panel, .calc-grid, .project-detail-grid, .media-plan-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.process-steps article strong { color: var(--gold); font-size: 1.5rem; }
.experience-grid, .mixed-panel, .calc-grid, .project-detail-grid, .media-plan-grid { grid-template-columns: repeat(3, 1fr); }
.experience-grid article, .mixed-panel > div {
  padding: 28px;
  min-height: 270px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.presence-map {
  position: relative;
  min-height: 420px;
  border: 1px solid var(--line);
  background: var(--soft);
  border-radius: 8px;
  overflow: hidden;
  display: grid;
  place-items: center;
}
.presence-map img { width: min(420px, 86%); opacity: .9; }
.map-pin {
  position: absolute;
  transform: translate(-50%, -50%);
  border: 0;
  background: transparent;
  color: var(--gold);
  display: grid;
  place-items: center;
}
.map-pin span {
  position: absolute;
  left: 24px;
  white-space: nowrap;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 4px 7px;
  color: var(--ink);
  font-size: .72rem;
  font-weight: 850;
}
.presence-map output {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  padding: 12px;
  background: rgba(255,255,255,.9);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
}

.cta-band {
  width: min(1180px, calc(100% - 32px));
  margin: 34px auto 80px;
  padding: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: white;
  background: linear-gradient(135deg, var(--navy), #243347, #38523d);
  border-radius: 8px;
}
.cta-band p { color: rgba(255,255,255,.8); }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--blue);
  font-weight: 850;
}
.text-link svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 2; }

.leader-avatar {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  color: white;
  border-radius: 8px;
  font-weight: 900;
}
.leadership-grid { grid-template-columns: repeat(5, 1fr); }
.leader-card strong { color: var(--blue); }
.award-grid { grid-template-columns: repeat(5, 1fr); }
.award-card span { color: var(--gold); font-weight: 900; }
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: 8px; }
table { border-collapse: collapse; width: 100%; background: var(--white); }
th, td { padding: 14px; border-bottom: 1px solid var(--line); text-align: left; }
th { color: var(--muted); font-size: .82rem; text-transform: uppercase; }
.form-section { display: grid; grid-template-columns: .75fr 1.25fr; gap: 32px; align-items: start; }
.lead-form, .compact-form, .calculator {
  display: grid;
  gap: 12px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}
.calc-result {
  display: grid;
  align-content: center;
  min-height: 230px;
  padding: 28px;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  color: white;
  border-radius: 8px;
}
.calc-result span { color: rgba(255,255,255,.75); }
.calc-result strong { font-size: clamp(2rem, 5vw, 3.6rem); line-height: 1; }
.calc-result p { color: rgba(255,255,255,.75); }
.calc-grid { grid-template-columns: .9fr 1.1fr; }
.project-hero {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  min-height: 66vh;
  align-items: stretch;
  background: var(--navy);
  color: white;
}
.project-hero img { width: 100%; height: 100%; object-fit: cover; }
.project-hero > div { display: grid; align-content: center; padding: 96px min(6vw, 70px); }
.project-hero p { color: rgba(255,255,255,.8); font-size: 1.12rem; }
.project-detail-grid { grid-template-columns: repeat(3, 1fr); }
.project-detail-grid article, .media-plan-grid article { padding: 22px; }
.media-plan-grid { grid-template-columns: repeat(4, 1fr); }
.media-plan-grid img, .tour-preview img { width: 100%; aspect-ratio: 16/10; object-fit: cover; border-radius: 8px; border: 1px solid var(--line); }
.tour-preview { position: relative; }
.play-button {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.4);
  background: var(--gold);
  color: #111;
  display: grid;
  place-items: center;
}
.tour-preview .play-button, .video-card .play-button { position: absolute; left: 50%; top: 46%; transform: translate(-50%, -50%); }
.check-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.check-list li { position: relative; padding-left: 24px; }
.check-list li::before { content: ""; position: absolute; left: 0; top: .6em; width: 10px; height: 10px; border-radius: 50%; background: var(--green); }
.office-card img, .gallery-item img, .video-card img { width: 100%; aspect-ratio: 16/10; object-fit: cover; border-radius: 8px; border: 1px solid var(--line); }
.office-grid, .download-grid, .news-grid { grid-template-columns: repeat(3, 1fr); }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.gallery-item { margin: 0; }
.gallery-item figcaption { margin-top: 8px; color: var(--muted); font-weight: 700; font-size: .86rem; }
.video-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.video-card { position: relative; border: 1px solid var(--line); border-radius: 8px; padding: 12px; background: var(--white); }
.video-card h3 { margin: 12px 0 4px; }
.faq-list { display: grid; gap: 12px; max-width: 880px; }
details { border: 1px solid var(--line); border-radius: 8px; padding: 16px; background: var(--white); }
summary { font-weight: 900; cursor: pointer; }
.policy-content { display: grid; gap: 16px; max-width: 900px; }
.policy-content article { padding: 20px; border: 1px solid var(--line); border-radius: 8px; background: var(--soft); }
.sitemap-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.sitemap-columns ul { columns: 2; padding-left: 18px; }

.site-footer {
  background: #091b31;
  color: white;
  padding: 54px max(16px, calc((100vw - 1180px) / 2)) 24px;
}
.footer-logo { width: 230px; height: auto; margin-bottom: 12px; filter: brightness(1.1); }
.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,.16);
}
.newsletter-form label { display: block; font-weight: 900; margin-bottom: 8px; }
.newsletter-form div { display: flex; gap: 10px; }
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  padding: 30px 0;
}
.footer-grid a { display: block; color: rgba(255,255,255,.72); padding: 4px 0; }
.footer-grid strong { display: block; color: var(--gold); margin-bottom: 8px; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: rgba(255,255,255,.68);
  font-size: .9rem;
}

.search-modal, .booking-modal, .compare-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(7, 18, 34, .72);
  display: grid;
  place-items: center;
  padding: 18px;
}
[hidden] { display: none !important; }
.modal-panel {
  width: min(560px, 100%);
  max-height: min(760px, 90vh);
  overflow: auto;
  background: var(--white);
  color: var(--ink);
  border-radius: 8px;
  border: 1px solid var(--line);
  padding: 24px;
  box-shadow: var(--shadow);
  position: relative;
}
.modal-panel.wide { width: min(980px, 100%); }
.modal-close { position: absolute; right: 14px; top: 14px; }
.search-panel label { display: block; font-size: 1.6rem; font-weight: 900; margin-bottom: 12px; }
.search-results { display: grid; gap: 8px; margin-top: 14px; }
.search-results a {
  display: block;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}
.compare-tray {
  position: sticky;
  bottom: 14px;
  z-index: 20;
  margin: 22px auto 0;
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px;
  border-radius: 8px;
  background: var(--navy);
  color: white;
  box-shadow: var(--shadow);
}
.compare-content { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.compare-content article { border: 1px solid var(--line); border-radius: 8px; padding: 14px; }
.chat-widget { position: fixed; right: 18px; bottom: 18px; z-index: 80; }
.chat-launcher {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 0;
  background: var(--gold);
  color: #111;
  font-weight: 950;
  box-shadow: var(--shadow);
}
.chat-panel {
  width: min(360px, calc(100vw - 36px));
  background: var(--white);
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
  margin-bottom: 10px;
}
.chat-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px;
  background: var(--navy);
  color: white;
}
.chat-head button { background: transparent; color: white; border: 0; }
.chat-log { max-height: 260px; overflow: auto; padding: 12px; display: grid; gap: 8px; }
.chat-panel form { display: flex; gap: 8px; padding: 12px; border-top: 1px solid var(--line); }
.chat-panel form button { width: 44px; border: 0; border-radius: 8px; background: var(--gold); }
.chat-panel form svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2; }

.reveal { opacity: 0; transform: translateY(16px); transition: opacity .55s ease, transform .55s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }

@keyframes slowZoom {
  from { transform: scale(1.02); }
  to { transform: scale(1.08); }
}

@media (max-width: 1040px) {
  .menu-toggle { display: inline-grid; }
  .nav-panel {
    position: fixed;
    inset: 76px 0 auto 0;
    display: none;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    padding: 14px 16px 18px;
    box-shadow: var(--shadow);
  }
  .nav-panel.open { display: grid; }
  .nav-links, .nav-actions { flex-wrap: wrap; align-items: stretch; }
  .mega-menu { position: static; width: 100%; opacity: 1; pointer-events: auto; transform: none; margin-top: 8px; display: none; }
  .mega-wrap:focus-within .mega-menu, .mega-wrap:hover .mega-menu { display: grid; }
  .stat-grid, .feature-grid, .values-grid, .project-grid, .office-grid, .leadership-grid, .award-grid, .news-grid, .download-grid, .gallery-grid, .video-grid, .timeline, .process-steps, .experience-grid, .mixed-panel, .media-plan-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .project-hero, .split, .form-section, .footer-top, .calc-grid, .project-detail-grid {
    grid-template-columns: 1fr;
  }
  .project-hero img { min-height: 360px; }
  .finder-panel { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 680px) {
  .hero { min-height: 92vh; padding-top: 110px; }
  .hero-overlay { background: linear-gradient(180deg, rgba(5,19,37,.8), rgba(5,19,37,.94)); }
  .hero-content { margin-bottom: 18px; }
  .stat-grid, .feature-grid, .values-grid, .project-grid, .office-grid, .leadership-grid, .award-grid, .news-grid, .download-grid, .gallery-grid, .video-grid, .timeline, .process-steps, .experience-grid, .mixed-panel, .media-plan-grid, .finder-panel, .footer-grid, .sitemap-columns, .compare-content {
    grid-template-columns: 1fr;
  }
  .nav-actions { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .nav-book { grid-column: 1 / -1; }
  .page-hero { min-height: 44vh; padding-top: 100px; }
  .section-block { padding: 52px 0; }
  .cta-band { display: grid; padding: 24px; }
  .footer-bottom { display: grid; }
  .newsletter-form div { display: grid; }
}
