:root {
  --navy: #0b1c36;
  --navy-2: #102445;
  --navy-3: #071221;
  --gold: #f5c518;
  --gold-2: #e0b210;
  --gold-text: #1a1403;
  --white: #ffffff;
  --muted: #64748b;
  --text: #334155;
  --line: #e8edf3;
  --bg: #f5f7fa;
  --shadow: 0 16px 40px rgba(11, 28, 54, 0.1);
  --radius: 10px;
  --header-top: 42px;
  --header-main: 78px;
  --header-h: 120px;
  --container: 1180px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; overflow-x: hidden; }
body {
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, Segoe UI, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  font-size: 16px;
}
img, svg, video { max-width: 100%; height: auto; }
img { display: block; }
.hero-bg, .page-hero-bg, .cta-bg, .svc-card-img img, .proj-card img, .about-photo img, .split img, .post-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, p { margin: 0; }
.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}
.skip-link {
  position: absolute;
  left: 16px;
  top: -40px;
  z-index: 2000;
  background: var(--gold);
  color: var(--navy);
  padding: 8px 12px;
  font-weight: 700;
}
.skip-link:focus { top: 8px; }

.ecc-icon { width: 20px; height: 20px; display: inline-block; flex: 0 0 auto; vertical-align: middle; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--navy);
  color: var(--white);
}
.admin-bar .site-header { top: 32px; }
.topbar-wrap { border-bottom: 1px solid rgba(255,255,255,.08); }
.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: var(--header-top);
  font-size: 13px;
}
.topbar-left, .topbar-right {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 18px;
}
.topbar a, .topbar span { color: #dbe4f0; }
.topbar a:hover { color: var(--gold); }
.top-item { display: inline-flex; align-items: center; gap: 8px; }
.top-item .ecc-icon { width: 14px; height: 14px; color: var(--gold); }
.top-motto { color: #f1d56a; letter-spacing: .04em; font-weight: 600; }
.socials { display: inline-flex; gap: 8px; }
.social {
  width: 28px;
  height: 28px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.social .ecc-icon { width: 13px; height: 13px; color: var(--white); }
.social:hover { border-color: var(--gold); background: var(--gold); }
.social:hover .ecc-icon { color: var(--navy); }

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: var(--header-main);
  position: relative;
}
@media (min-width: 901px) {
  .navbar {
    display: grid;
    grid-template-columns: auto 1fr auto;
  }
  .nav { justify-content: center; }
}
.logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  flex: 0 0 auto;
}
.logo img, .custom-logo {
  height: 52px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
}
.logo-mark {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: .08em;
  color: var(--gold);
}
.logo-sub {
  margin-top: 4px;
  font-size: 10px;
  letter-spacing: .12em;
  font-weight: 700;
  color: #e8eef7;
  text-transform: uppercase;
}
.nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav > li { position: relative; }
.nav > li > a,
.nav-drop > button {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #e8eef7;
  font-weight: 600;
  font-size: 14px;
  padding: 10px 12px;
  background: none;
  border: 0;
  cursor: pointer;
  white-space: nowrap;
}
.nav > li > a:hover,
.nav > li.current > a,
.nav-drop > button:hover { color: var(--gold); }
.nav .ecc-icon { width: 16px; height: 16px; }
.dropdown {
  position: absolute;
  top: calc(100% - 4px);
  left: 0;
  min-width: 240px;
  background: var(--white);
  color: var(--navy);
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: .2s ease;
  z-index: 1200;
}
.nav-drop:hover > .dropdown,
.nav-drop:focus-within > .dropdown,
.nav-drop.open > .dropdown {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.dropdown a {
  display: block;
  padding: 10px 16px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 600;
}
.dropdown a:hover { background: #fff8dc; color: var(--navy); }
.header-cta { flex: 0 0 auto; }
.header-tools {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}
.h-btn {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,.16);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: rgba(255,255,255,.05);
  transition: .2s ease;
}
.h-btn .ecc-icon { width: 18px; height: 18px; }
.h-btn:hover {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
  transform: translateY(-1px);
}
.h-btn.h-wa:hover { background: #25d366; color: #fff; border-color: #25d366; }
.mobile-only { display: none; }
.slider-prev { transform: rotate(90deg); }
.slider-next { transform: rotate(-90deg); }
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,.2);
  background: transparent;
  color: var(--white);
  border-radius: 6px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 4px;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .04em;
  text-transform: uppercase;
  border: 2px solid transparent;
  cursor: pointer;
  transition: .22s ease;
  white-space: nowrap;
}
.btn .ecc-icon { width: 16px; height: 16px; }
.btn-gold { background: var(--gold); color: var(--gold-text); border-color: var(--gold); }
.btn-gold:hover { background: var(--gold-2); border-color: var(--gold-2); transform: translateY(-2px); }
.btn-navy { background: var(--navy); color: var(--white); border-color: var(--navy); }
.btn-navy:hover { background: var(--gold); color: var(--gold-text); border-color: var(--gold); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,.75); }
.btn-ghost:hover { background: var(--gold); color: var(--gold-text); border-color: var(--gold); }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }

/* Hero */
.hero {
  position: relative;
  color: var(--white);
  min-height: calc(100vh - var(--header-h));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  isolation: isolate;
}
.hero-bg, .hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  background: linear-gradient(90deg, rgba(7,18,33,.86) 0%, rgba(7,18,33,.62) 48%, rgba(7,18,33,.35) 100%);
}
.hero-inner {
  padding: 64px 0 36px;
  max-width: 680px;
}
.eyebrow {
  display: inline-block;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.hero h1 {
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.12;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -.02em;
}
.hero h1 em {
  font-style: normal;
  color: var(--gold);
}
.hero-lead {
  margin-top: 18px;
  color: #d7e0ec;
  font-size: 17px;
  max-width: 560px;
}
.hero-inner .btn-row { margin-top: 28px; }

.stats {
  background: rgba(8, 18, 34, .92);
  border-top: 1px solid rgba(245, 197, 24, .22);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.stat {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 8px;
  min-width: 0;
}
.stat-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(245, 197, 24, .12);
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}
.stat-icon .ecc-icon { width: 22px; height: 22px; }
.stat b {
  display: block;
  color: var(--white);
  font-size: 22px;
  line-height: 1.15;
}
.stat span {
  display: block;
  color: #b7c4d6;
  font-size: 13px;
}

/* Sections */
.section { padding: 84px 0; }
.section-head { margin-bottom: 36px; }
.kicker {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.kicker::before {
  content: "";
  width: 18px;
  height: 3px;
  background: var(--gold);
}
h2 {
  font-size: clamp(26px, 3.4vw, 40px);
  line-height: 1.2;
  color: var(--navy);
  font-weight: 800;
}
.lead { color: var(--muted); max-width: 560px; margin-top: 12px; }
.svc-showcase {
  display: grid;
  grid-template-columns: minmax(220px, 1.15fr) repeat(3, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
  margin-bottom: 20px;
}
.svc-intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding-right: 8px;
}
.svc-intro .btn { margin-top: 22px; align-self: flex-start; }
.svc-row-4 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.svc-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(11, 28, 54, .05);
  transition: transform .25s ease, box-shadow .25s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.svc-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.svc-card-img {
  position: relative;
  aspect-ratio: 16 / 11;
  overflow: hidden;
  background: #dbe3ee;
}
.svc-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .45s ease;
}
.svc-card:hover .svc-card-img img { transform: scale(1.06); }
.svc-card-icon {
  position: absolute;
  left: 12px;
  bottom: 12px;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: var(--gold);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 18px rgba(11,28,54,.18);
}
.svc-card-body { padding: 18px 18px 16px; }
.svc-card h3 { color: var(--navy); font-size: 18px; margin-bottom: 8px; }
.svc-card p { color: var(--muted); font-size: 14px; }
.svc-more {
  margin-top: 14px;
  display: inline-flex;
  color: var(--navy);
  font-weight: 800;
  font-size: 13px;
  align-items: center;
  gap: 6px;
}
.svc-card:hover .svc-more { color: var(--gold-2); }

/* About */
.about {
  background: var(--navy);
  color: var(--white);
}
.about h2, .about .kicker { color: var(--white); }
.about .kicker { color: #c5d0e0; }
.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr .9fr;
  gap: 36px;
  align-items: center;
}
.about-photo {
  border-radius: 12px;
  overflow: hidden;
  min-height: 460px;
  height: 100%;
  background: #0a1628;
}
.about-photo img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
  object-position: center top;
}
.about-copy p { color: #c9d4e4; margin: 16px 0 24px; }
.feature-list { display: grid; gap: 16px; }
.feature {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  align-items: start;
}
.feature-ico {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: rgba(245,197,24,.12);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature b { color: var(--white); display: block; }
.feature span { color: #b7c4d6; font-size: 14px; }

/* Projects */
.projects { background: var(--bg); }
.proj-top {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  margin-bottom: 28px;
}
.proj-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.proj-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  min-height: 280px;
  isolation: isolate;
  display: block;
}
.proj-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}
.proj-card:hover img { transform: scale(1.06); }
.proj-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7,18,33,.86) 0%, rgba(7,18,33,.1) 55%);
}
.proj-meta {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 1;
  color: var(--white);
}
.proj-meta h3 { font-size: 20px; }
.proj-meta span { color: var(--gold); font-size: 13px; font-weight: 700; }

/* Why + testimonials */
.why-wrap {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  min-height: 0;
}
.why {
  background: var(--navy-2);
  color: var(--white);
  padding: 84px 0;
}
.why-inner, .quote-inner {
  width: min(560px, calc(100% - 48px));
  margin-left: auto;
  margin-right: 24px;
}
.quote-panel {
  background: var(--white);
  padding: 84px 0;
}
.quote-inner { margin-left: 24px; margin-right: auto; }
.why h2 { color: var(--white); }
.why p { color: #c9d4e4; margin: 14px 0 22px; }
.why-list { display: grid; gap: 14px; margin-bottom: 28px; }
.why-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.why-item .ecc-icon { color: var(--gold); margin-top: 2px; }
.why-item b { display: block; color: var(--white); }
.why-item span { color: #b7c4d6; font-size: 14px; }

.quote-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
}
.slider-nav { display: flex; gap: 8px; }
.slider-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--white);
  cursor: pointer;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.slider-btn:hover { background: var(--gold); border-color: var(--gold); }
.slides { position: relative; min-height: 250px; }
.slide {
  display: none;
  color: var(--text);
}
.slide.is-active { display: block; }
.slide .ecc-icon.quote-mark { width: 36px; height: 36px; color: var(--gold); margin-bottom: 12px; }
.slide q { display: block; font-size: 20px; line-height: 1.55; color: var(--navy); quotes: none; }
.who { display: flex; align-items: center; gap: 12px; margin-top: 22px; }
.avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  flex: 0 0 auto;
}
.stars { color: var(--gold); display: inline-flex; gap: 2px; }
.stars .ecc-icon { width: 14px; height: 14px; }

/* CTA */
.cta {
  position: relative;
  isolation: isolate;
  color: var(--white);
  padding: 72px 0;
  text-align: center;
}
.cta img.cta-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}
.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(7,18,33,.72);
  z-index: -1;
}
.cta h2 { color: var(--white); }
.cta p { color: #d7e0ec; margin: 12px auto 22px; max-width: 560px; }
.cta-actions {
  display: flex;
  gap: 18px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.cta-phone {
  color: var(--gold);
  font-weight: 800;
  font-size: 20px;
}

/* Inner pages */
.page-hero {
  position: relative;
  isolation: isolate;
  color: var(--white);
  padding: 72px 0 64px;
  overflow: hidden;
}
.page-hero img.page-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7,18,33,.88), rgba(7,18,33,.55));
  z-index: -1;
}
.page-hero h1 { color: var(--white); font-size: clamp(30px, 4vw, 46px); max-width: 820px; }
.page-hero p { color: #d7e0ec; max-width: 640px; margin-top: 14px; }
.crumbs { color: #c5d0e0; font-size: 13px; margin-bottom: 12px; }
.crumbs a:hover { color: var(--gold); }

.split {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 40px;
  align-items: start;
}
.split img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 12px;
}
.prose h2 { margin: 8px 0 12px; }
.prose p, .prose li { color: var(--text); }
.prose p + p { margin-top: 12px; }
.prose ul { margin: 14px 0 0; display: grid; gap: 8px; }
.prose li { padding-left: 22px; position: relative; }
.prose li::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--gold);
  position: absolute;
  left: 0;
  top: 9px;
  border-radius: 50%;
}

.contact-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 32px;
  align-items: start;
}
.contact-card, .form-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 28px;
  box-shadow: 0 8px 24px rgba(11,28,54,.05);
}
.contact-card h3 { color: var(--navy); margin-bottom: 8px; }
.info-row {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}
.info-row .ecc-icon { color: var(--gold); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-grid .full { grid-column: 1 / -1; }
label { display: block; font-size: 13px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
input, select, textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 12px 12px;
  background: #fbfcfe;
  color: var(--navy);
}
textarea { min-height: 140px; resize: vertical; }
input:focus, select:focus, textarea:focus {
  outline: 2px solid rgba(245,197,24,.45);
  border-color: var(--gold);
}
.hp { position: absolute; left: -9999px; height: 0; overflow: hidden; }
.notice {
  padding: 12px 14px;
  border-radius: 8px;
  margin-bottom: 16px;
  font-weight: 600;
}
.notice-ok { background: #ecfdf3; color: #166534; }
.notice-err { background: #fef2f2; color: #991b1b; }
.related { margin-top: 18px; display: grid; gap: 8px; }
.related a { color: var(--navy); font-weight: 700; border-bottom: 1px solid var(--line); padding-bottom: 8px; }
.related a:hover { color: var(--gold-2); }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.post-card {
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  background: var(--white);
  min-width: 0;
}
.post-card img { width: 100%; height: 180px; object-fit: cover; }
.post-card .pad { padding: 18px; }
.post-card h3 { font-size: 18px; color: var(--navy); }
.empty { color: var(--muted); }

.entry { max-width: 820px; }
.entry h1 { color: var(--navy); margin-bottom: 16px; }
.entry img { border-radius: 10px; margin: 16px 0; }

/* Footer */
.site-footer {
  background: var(--navy-3);
  color: #c9d4e4;
  padding: 36px 0 28px;
}
.footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-nav { display: flex; flex-wrap: wrap; gap: 8px 18px; }
.footer-nav a:hover { color: var(--gold); }
.footer-right { display: flex; align-items: center; gap: 14px; }
.copy { font-size: 13px; color: #8ea0b8; margin-top: 18px; }
.contact-quick { margin-top: 22px; }
.contact-actions .h-btn {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--gold);
}
.contact-actions .h-btn:hover { color: var(--navy); background: var(--gold); border-color: var(--gold); }
.contact-actions .h-btn.h-wa:hover { background: #25d366; color: #fff; border-color: #25d366; }
.float-wa {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 28px rgba(37, 211, 102, .35);
  z-index: 1100;
}
.float-wa .ecc-icon { width: 28px; height: 28px; }
.float-wa:hover { transform: translateY(-2px); color: #fff; }

/* Mobile */
@media (max-width: 1100px) {
  .svc-showcase { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .svc-intro { grid-column: 1 / -1; }
  .svc-row-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 1024px) {
  .about-grid, .why-wrap, .split, .contact-grid { grid-template-columns: 1fr; }
  .about-grid { gap: 24px; }
  .why-inner, .quote-inner { width: min(var(--container), calc(100% - 40px)); margin: 0 auto; }
  .svc-grid, .proj-grid, .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .about-photo, .about-photo img { min-height: 320px; }
}
@media (max-width: 900px) {
  .logo { order: 1; margin-right: auto; }
  .header-tools { order: 2; }
  .nav-toggle { order: 3; margin-left: 8px; display: inline-flex; }
  .nav { order: 4; }
  .nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: var(--navy-2);
    flex-direction: column;
    align-items: stretch;
    padding: 12px 20px 20px;
    gap: 0;
    border-top: 1px solid rgba(255,255,255,.08);
    max-height: calc(100vh - var(--header-h));
    overflow: auto;
  }
  .is-open .nav { display: flex; }
  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    background: transparent;
    box-shadow: none;
    padding: 0 0 8px 12px;
  }
  .nav-drop.open > .dropdown { display: block; }
  .dropdown a { color: #d7e0ec; }
  .header-cta { display: none; }
  .h-btn { width: 40px; height: 40px; }
  .mobile-only { display: block; padding: 12px 0 8px; }
  .mobile-only .btn {
    width: 100%;
    color: var(--gold-text);
    background: var(--gold);
    border-color: var(--gold);
    justify-content: center;
    margin-top: 6px;
  }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .topbar-right .top-motto { display: none; }
}
@media (max-width: 640px) {
  .container { width: calc(100% - 28px); }
  .svc-grid, .svc-showcase, .svc-row-4, .proj-grid, .blog-grid, .stats-grid, .form-grid { grid-template-columns: 1fr; }
  .svc-intro { grid-column: auto; }
  .topbar { display: none; }
  :root { --header-h: 78px; }
  .hero { min-height: calc(100vh - 78px); }
  .hero-inner { padding-top: 40px; }
  .section { padding: 56px 0; }
  .why, .quote-panel { padding: 56px 0; }
  .btn { width: 100%; }
  .btn-row { width: 100%; }
  .proj-top { flex-direction: column; align-items: flex-start; }
  .split img { height: 260px; }
  .slides { min-height: 0; }
}
@media (max-width: 782px) {
  .admin-bar .site-header { top: 46px; }
}
