:root {
  --navy: #023166;
  --navy-dark: #01244c;
  --navy-mid: #0b3d73;
  --gold: #ca8a05;
  --gold-dark: #a36e04;
  --gold-soft: #f4e6c3;
  --white: #ffffff;
  --off: #f5f7fb;
  --text: #122033;
  --muted: #5b6b7f;
  --line: rgba(2, 49, 102, 0.12);
  --shadow: 0 18px 50px rgba(2, 49, 102, 0.12);
  --radius: 18px;
  --container: 1180px;
  --header-h: 86px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; max-width: 100%; overflow-x: clip; }
body {
  font-family: "Cairo", sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.8;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font-family: inherit; }
ul { margin: 0; padding: 0; list-style: none; }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 16px;
}

.skip-link {
  position: absolute;
  right: 12px;
  top: -40px;
  background: var(--gold);
  color: var(--navy);
  padding: 8px 12px;
  z-index: 1000;
}
.skip-link:focus { top: 12px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  cursor: pointer;
  transition: .25s ease;
}
.btn svg { width: 18px; height: 18px; }
.btn-gold { background: var(--gold); color: var(--navy-dark); }
.btn-gold:hover { background: #d99a16; transform: translateY(-1px); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-mid); }
.btn-light { background: var(--white); color: var(--navy); }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,.4); }
.btn-outline:hover { background: rgba(255,255,255,.1); }

.topbar {
  position: relative;
  background: #011226;
  color: #e8eef6;
  border-bottom: 1px solid rgba(202,138,5,.35);
}
.topbar-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 16px;
  min-height: 46px;
}
.topbar-cluster {
  display: flex;
  align-items: stretch;
  min-width: 0;
}
.topbar-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border-inline-start: 1px solid rgba(255,255,255,.1);
  transition: background .2s ease;
  min-width: 0;
}
.topbar-cluster .topbar-item:first-child {
  border-inline-start: 0;
  padding-inline-start: 0;
}
.topbar-item:hover {
  background: rgba(255,255,255,.04);
}
.topbar-ico {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: rgba(202,138,5,.14);
  color: var(--gold);
  flex: 0 0 auto;
}
.topbar-ico svg { width: 14px; height: 14px; }
.topbar-item small {
  display: block;
  font-size: 10px;
  letter-spacing: .06em;
  color: #9fb0c3;
  line-height: 1.2;
  font-weight: 600;
}
.topbar-item strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  line-height: 1.35;
  white-space: nowrap;
}
.topbar-phone {
  background: rgba(202,138,5,.08);
  border-inline-start: 0;
}
.topbar-phone:hover { background: rgba(202,138,5,.16); }
.topbar-phone strong { color: var(--gold); font-size: 14px; }
.topbar-badge {
  display: inline-flex;
  align-items: center;
  align-self: center;
  margin-inline-end: 8px;
  padding: 4px 10px;
  border: 1px solid rgba(202,138,5,.45);
  border-radius: 999px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .04em;
  white-space: nowrap;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(16px);
  box-shadow: 0 8px 24px rgba(2,49,102,.06);
}
.site-header::after {
  content: "";
  position: absolute;
  right: 0;
  left: 0;
  bottom: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--navy) 0%, var(--gold) 50%, var(--navy) 100%);
  background-size: 220% 100%;
  animation: goldFlow 9s linear infinite;
}
.site-header.is-scrolled {
  background: rgba(1, 22, 48, .96);
}
.site-header.is-scrolled .brand strong,
.site-header.is-scrolled .nav-list a {
  color: var(--white);
}
.site-header.is-scrolled .brand small {
  color: #c5d3e3;
}
.site-header.is-scrolled .nav-list a:hover,
.site-header.is-scrolled .nav-list .is-active,
.site-header.is-scrolled .nav-list .current-menu-item > a {
  color: var(--gold);
  background: rgba(202,138,5,.12);
}
.site-header.is-scrolled .nav-toggle span {
  background: var(--white);
}
.header-inner {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  position: relative;
  z-index: 2;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  flex: 0 0 auto;
}
.brand img { width: 64px; height: 64px; }
.brand strong {
  display: block;
  color: var(--navy);
  font-size: 18px;
  line-height: 1.2;
}
.brand small, .brand em {
  display: block;
  color: var(--muted);
  font-style: normal;
  font-size: 12px;
}
.brand em { color: var(--gold-dark); font-weight: 700; }

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}
.nav-list {
  display: flex;
  align-items: center;
  gap: 2px;
  flex-wrap: nowrap;
}
.nav-list a {
  display: block;
  padding: 8px 9px;
  color: var(--navy);
  font-weight: 600;
  font-size: 13.5px;
  border-radius: 8px;
  white-space: nowrap;
}
.nav-list a:hover,
.nav-list .is-active,
.nav-list .current-menu-item > a {
  color: var(--gold-dark);
  background: var(--off);
}
.header-sheen {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 35%, rgba(202,138,5,.1) 50%, transparent 65%);
  background-size: 240% 100%;
  animation: goldFlow 12s linear infinite;
  pointer-events: none;
}
.header-cta { display: flex; gap: 8px; }
.header-cta .btn { min-height: 42px; padding-inline: 16px; font-size: 14px; }
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  padding: 0;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--navy);
}

.hero,
.page-hero,
.cta-band,
.site-footer {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.hero {
  min-height: min(86vh, 760px);
  display: grid;
  align-items: end;
  color: var(--white);
}
.page-hero {
  color: var(--white);
  padding: 80px 0 64px;
}
.page-hero-inner,
.hero-content,
.cta-band-inner,
.footer-grid,
.footer-bar,
.footer-copy {
  position: relative;
  z-index: 2;
}

.fx-stage {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  background: radial-gradient(1200px 600px at 80% -10%, #0a4a86 0%, transparent 55%),
              radial-gradient(900px 500px at -10% 110%, #ca8a05 0%, transparent 42%),
              linear-gradient(160deg, #011226 0%, var(--navy) 48%, #01244c 100%);
}
.fx-base { display: none; }
.fx-grid {
  position: absolute;
  inset: -20%;
  background-image:
    linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: .35;
  animation: gridShift 22s linear infinite;
}
.fx-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(8px);
  opacity: .55;
}
.fx-glow-a {
  width: 340px;
  height: 340px;
  right: 8%;
  top: -80px;
  background: radial-gradient(circle, rgba(202,138,5,.55), transparent 68%);
  animation: floatA 12s ease-in-out infinite;
}
.fx-glow-b {
  width: 420px;
  height: 420px;
  left: -80px;
  bottom: -120px;
  background: radial-gradient(circle, rgba(80,160,230,.35), transparent 70%);
  animation: floatB 16s ease-in-out infinite;
}
.fx-glow-c {
  width: 180px;
  height: 180px;
  right: 28%;
  bottom: 12%;
  background: radial-gradient(circle, rgba(255,255,255,.22), transparent 70%);
  animation: floatA 9s ease-in-out infinite reverse;
}
.fx-sweep {
  position: absolute;
  inset: 0 auto 0 -45%;
  width: 38%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.1), rgba(202,138,5,.16), transparent);
  transform: skewX(-18deg);
  animation: sweep 8s linear infinite;
}
.fx-routes {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.fx-routes path {
  fill: none;
  stroke: rgba(202,138,5,.55);
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-dasharray: 10 18;
  animation: routeMove 18s linear infinite;
}
.fx-routes path:nth-child(2) {
  stroke: rgba(255,255,255,.28);
  animation-duration: 24s;
  animation-direction: reverse;
}
.fx-routes path:nth-child(3) {
  stroke: rgba(202,138,5,.28);
  animation-duration: 30s;
}

.hero-content {
  padding: 88px 0 64px;
  max-width: 820px;
}
.eyebrow {
  display: inline-block;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: .08em;
  margin: 0 0 10px;
}
.eyebrow.gold { color: var(--gold); }
.hero h1, .page-hero h1, .section h2 {
  font-weight: 800;
  line-height: 1.25;
  margin: 0 0 14px;
}
.hero h1 { font-size: clamp(28px, 4.6vw, 52px); max-width: 16ch; }
.lead, .lead-body { font-size: 18px; color: #e7eef6; }
.lead-body { color: var(--muted); }
.hero-actions, .cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 18px;
}
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  color: #d5e0ec;
  font-size: 14px;
}
.hero-meta li, .contact-list li, .footer-contact li {
  display: flex;
  gap: 8px;
  align-items: flex-start;
}
.hero-meta svg, .contact-list svg, .footer-contact svg {
  width: 16px;
  height: 16px;
  color: var(--gold);
  flex: 0 0 auto;
  margin-top: 4px;
}

.page-hero .lead { max-width: 680px; }

.trust-bar {
  background: var(--navy);
  color: var(--white);
  padding: 28px 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.trust-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.trust-item h3 { margin: 0; font-size: 16px; color: var(--gold); }
.trust-item p { margin: 4px 0 0; color: #d7e3ef; font-size: 13px; }
.icon-badge {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(202,138,5,.15);
  color: var(--gold);
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}
.icon-badge svg { width: 20px; height: 20px; }

.section { padding: 84px 0; }
.section-navy { background: var(--navy-dark); color: var(--white); }
.section-navy h2, .section-navy h3 { color: var(--white); }
.section-navy .card p { color: #d5deea; }
.section-soft { background: var(--off); }
.section-head { margin-bottom: 36px; }
.section-head h2, .split h2 { font-size: clamp(26px, 3vw, 38px); color: var(--navy); }
.section-navy .section-head h2 { color: var(--white); }

.split {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 42px;
  align-items: center;
}
.media-frame {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}
.media-frame img { width: 100%; height: 100%; object-fit: cover; }
.media-wide { max-width: 920px; margin-inline: auto; }

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.cards-grid.four { grid-template-columns: repeat(4, 1fr); }
.cards-stack { grid-template-columns: 1fr; }
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: 0 10px 30px rgba(2,49,102,.05);
  transition: transform .25s ease, box-shadow .25s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.card h3 { margin: 0 0 8px; color: var(--navy); font-size: 18px; }
.card p { margin: 0; color: var(--muted); }
.card-dark {
  background: rgba(255,255,255,.06);
  border-color: rgba(202,138,5,.25);
}
.card-dark h3 { color: var(--gold); }
.plain-list { display: grid; gap: 8px; }
.plain-list li::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-left: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.check-list { margin: 18px 0 24px; display: grid; gap: 10px; }
.check-list li {
  position: relative;
  padding-right: 28px;
  font-weight: 600;
  color: var(--navy);
}
.check-list li::before {
  content: "";
  position: absolute;
  right: 0;
  top: 10px;
  width: 14px;
  height: 8px;
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(45deg);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.process-card {
  background: var(--white);
  border-top: 4px solid var(--gold);
  border-radius: 16px;
  padding: 20px;
  box-shadow: var(--shadow);
}
.process-card span {
  color: var(--gold);
  font-size: 28px;
  font-weight: 800;
}
.process-card h3 { margin: 8px 0; color: var(--navy); font-size: 17px; }
.process-card p { margin: 0; color: var(--muted); font-size: 14px; }

.ports-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.ports-wrap span {
  background: rgba(255,255,255,.08);
  color: #edf3fa;
  border: 1px solid rgba(202,138,5,.28);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 13px;
}
.ports-light span {
  background: var(--white);
  color: var(--navy);
  border-color: var(--line);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.gallery-page { grid-template-columns: repeat(2, 1fr); }
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  min-height: 220px;
  box-shadow: var(--shadow);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 220px;
  transition: transform .45s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item span {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  padding: 14px;
  background: linear-gradient(transparent, rgba(2,49,102,.88));
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
}

.map-frame {
  min-height: 360px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.map-tall { min-height: 520px; }
.map-frame iframe { width: 100%; height: 100%; min-height: inherit; border: 0; }

.contact-list { display: grid; gap: 12px; margin: 18px 0; }
.contact-list a { color: var(--navy); font-weight: 700; }
.form-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}
.form-card h3 { margin-top: 0; color: var(--navy); }
.form-card label { display: block; margin: 12px 0 6px; font-weight: 700; color: var(--navy); }
.form-card input, .form-card select, .form-card textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
  background: var(--off);
}
.form-card button { margin-top: 16px; width: 100%; }
.form-note { padding: 10px 12px; border-radius: 10px; }
.form-note.success { background: #e9f8ee; color: #0d6b32; }
.form-note.error { background: #fdeeee; color: #9b1c1c; }
.hp { position: absolute; left: -9999px; }

.center-cta { text-align: center; margin-top: 28px; }
.center-cta .media-frame { margin-bottom: 22px; }

.cta-band {
  color: var(--white);
  padding: 48px 0;
}
.cta-band .fx-stage {
  background: linear-gradient(110deg, #011226 0%, var(--navy) 58%, #8a6208 140%);
}
.cta-band-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}
.cta-band h2 { margin: 0 0 6px; }
.cta-band p { margin: 0; color: #e7eef6; }

.site-footer { color: #d5e0ec; }
.site-footer .fx-stage {
  background: radial-gradient(800px 400px at 100% 0%, rgba(202,138,5,.18), transparent 50%),
              linear-gradient(180deg, #011226 0%, #010d1c 100%);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr .8fr .8fr 1.1fr;
  gap: 28px;
  padding: 56px 0 36px;
}
.footer-brand h3, .site-footer h4 { color: var(--white); margin: 12px 0; }
.site-footer h4 { color: var(--gold); }
.footer-links, .footer-contact { display: grid; gap: 8px; }
.footer-links a:hover, .footer-contact a:hover { color: var(--gold); }
.footer-bar {
  border-top: 1px solid rgba(202,138,5,.28);
  background: rgba(0,0,0,.18);
}
.footer-bar-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  justify-content: space-between;
  padding: 16px 0;
}
.footer-bar-inner a,
.footer-bar-inner > span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #e8eef6;
  font-weight: 600;
  font-size: 14px;
}
.footer-bar-inner svg {
  width: 16px;
  height: 16px;
  color: var(--gold);
}
.footer-copy {
  background: rgba(0,0,0,.28);
  padding: 16px 0;
  font-size: 13px;
  text-align: center;
}

.whatsapp-float {
  position: fixed;
  left: 18px;
  bottom: 18px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 30px rgba(37, 211, 102, .35);
  z-index: 60;
  font-size: 0;
  line-height: 0;
  overflow: hidden;
}
.whatsapp-float svg {
  display: none;
}
.whatsapp-float::before {
  content: "";
  width: 32px;
  height: 32px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 32px 32px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23ffffff' d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 012.893 6.994c-.003 5.45-4.435 9.884-9.885 9.884m8.413-18.297A11.815 11.815 0 0012.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 005.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893a11.821 11.821 0 00-3.48-8.413z'/%3E%3C/svg%3E");
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(1, 14, 32, .92);
  display: grid;
  place-items: center;
  z-index: 80;
  padding: 24px;
}
.lightbox img {
  max-width: min(100%, 980px);
  max-height: 88vh;
  border-radius: 12px;
}
.lightbox-close {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  font-size: 22px;
  cursor: pointer;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: rise .7s ease forwards;
}
.reveal:nth-child(2) { animation-delay: .08s; }
.reveal:nth-child(3) { animation-delay: .16s; }
.reveal:nth-child(4) { animation-delay: .24s; }
@keyframes rise {
  to { opacity: 1; transform: none; }
}
@keyframes goldFlow {
  0% { background-position: 0 0; }
  100% { background-position: 220% 0; }
}
@keyframes sweep {
  0% { transform: translateX(-10%) skewX(-18deg); }
  100% { transform: translateX(360%) skewX(-18deg); }
}
@keyframes gridShift {
  0% { transform: translate3d(0,0,0); }
  100% { transform: translate3d(48px, 48px, 0); }
}
@keyframes floatA {
  0%, 100% { transform: translate3d(0,0,0) scale(1); }
  50% { transform: translate3d(-30px, 24px, 0) scale(1.08); }
}
@keyframes floatB {
  0%, 100% { transform: translate3d(0,0,0); }
  50% { transform: translate3d(40px, -20px, 0); }
}
@keyframes routeMove {
  to { stroke-dashoffset: -280; }
}

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(1,18,40,.45);
  z-index: 40;
}

@media (max-width: 1200px) {
  .topbar-item small { display: none; }
  .topbar-badge { display: none; }
}

@media (max-width: 1100px) {
  .trust-grid, .process-grid, .cards-grid.four, .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid, .split { grid-template-columns: 1fr; }
  .header-cta { display: none; }
  .nav-toggle { display: block; }
  .site-nav {
    position: fixed;
    top: 0;
    right: 0;
    left: auto;
    height: 100vh;
    width: min(86vw, 360px);
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 88px 20px 24px;
    transform: translateX(110%);
    transition: transform .28s ease;
    box-shadow: var(--shadow);
    z-index: 55;
    visibility: hidden;
    pointer-events: none;
  }
  .nav-open .site-nav { transform: none; visibility: visible; pointer-events: auto; }
  .nav-open .site-header { overflow: visible; }
  .nav-list { flex-direction: column; align-items: stretch; flex-wrap: wrap; }
  .nav-list a { font-size: 16px; padding: 12px; }
  .site-nav .header-cta { display: flex; flex-direction: column; margin-top: 18px; }
  .topbar-cluster:last-child { display: none; }
}

@media (max-width: 860px) {
  .brand em { display: none; }
  .header-inner { width: 100%; gap: 12px; }
  .cards-grid, .gallery-grid, .gallery-page, .trust-grid, .process-grid { grid-template-columns: 1fr; }
  .hero { min-height: min(78vh, 720px); }
  .hero-content { padding: 48px 0 36px; width: 100%; max-width: none; }
  .hero h1 { max-width: none; font-size: clamp(26px, 8.4vw, 36px); }
  .brand { min-width: 0; }
  .brand img { width: 48px; height: 48px; }
  .brand small { display: none; }
  .brand strong { font-size: 15px; }
  .topbar-inner { justify-content: stretch; }
  .topbar-cluster { width: 100%; }
  .topbar-item { flex: 1; padding: 8px 10px; }
  .topbar-item strong { font-size: 12px; }
  .cta-band-inner, .hero-actions, .cta-actions { flex-direction: column; align-items: stretch; }
  .footer-bar-inner { flex-direction: column; align-items: flex-start; gap: 10px; }
  .btn { width: 100%; }
  .header-cta .btn { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal, .gallery-item img, .btn,
  .fx-grid, .fx-glow, .fx-sweep, .fx-routes path, .topbar::after, .site-header::after {
    animation: none !important;
    transition: none;
    transform: none;
    opacity: 1;
  }
}
