/* ============================================================
   Bald Eagle Enterprise Consulting — Design System
   Executive Navy / Metallic Gold / Playfair Display + Inter
   ============================================================ */

:root {
  --navy: #0B2545;
  --navy-deep: #071A33;
  --navy-soft: #13315C;
  --gold: #C8A04D;
  --gold-soft: #D9BC7E;
  --charcoal: #2D2D2D;
  --slate: #6B7280;
  --ice: #4FA3E3;
  --bg: #F8F9FA;
  --white: #FFFFFF;
  --line: #E5E7EB;
  --shadow-sm: 0 2px 10px rgba(11, 37, 69, 0.06);
  --shadow-md: 0 10px 30px rgba(11, 37, 69, 0.10);
  --shadow-lg: 0 22px 50px rgba(11, 37, 69, 0.16);
  --radius: 14px;
  --font-head: "Playfair Display", Georgia, serif;
  --font-body: "Inter", -apple-system, "Segoe UI", sans-serif;
  --nav-h: 78px;
  --maxw: 1180px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.7;
  font-size: 16.5px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 28px;
}

/* ---------- Typography ---------- */

h1, h2, h3, .serif {
  font-family: var(--font-head);
  color: var(--navy);
  line-height: 1.18;
  font-weight: 700;
}

h1 { font-size: clamp(2.4rem, 5.2vw, 3.9rem); letter-spacing: -0.5px; overflow-wrap: break-word; }
h2 { font-size: clamp(1.9rem, 3.4vw, 2.6rem); letter-spacing: -0.3px; }
h3 { font-size: 1.25rem; }

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.lead {
  color: var(--slate);
  font-size: 1.12rem;
  max-width: 640px;
}

.gold-rule {
  width: 64px;
  height: 2px;
  background: var(--gold);
  border: 0;
  margin: 26px 0;
}

.center { text-align: center; }
.center .gold-rule, .center .lead { margin-left: auto; margin-right: auto; }

/* ---------- Buttons ---------- */

.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 15px 32px;
  border-radius: 6px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all 0.28s ease;
  text-align: center;
}

.btn-primary {
  background: var(--navy);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--navy-soft);
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(11, 37, 69, 0.25);
}

.btn-gold {
  background: var(--gold);
  color: var(--navy-deep);
}
.btn-gold:hover {
  background: var(--gold-soft);
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(200, 160, 77, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--gold);
}
.btn-outline:hover {
  background: rgba(200, 160, 77, 0.10);
  transform: translateY(-2px);
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
}
.btn-outline-light:hover {
  border-color: var(--gold);
  color: var(--gold-soft);
  transform: translateY(-2px);
}

/* ---------- Header / Navigation ---------- */

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--navy);
  box-shadow: 0 2px 18px rgba(0, 0, 0, 0.25);
}

.nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 28px;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-right: auto;
}

.brand img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  object-fit: cover;
}

.brand-name {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-name .top {
  font-family: var(--font-head);
  font-size: 1.16rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.06em;
}

.brand-name .sub {
  font-size: 0.6rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.84rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.25s ease, border-color 0.25s ease;
}

.nav-links a:hover { color: var(--gold-soft); }

.nav-links a.active {
  color: var(--white);
  border-bottom-color: var(--gold);
}

.nav-cta {
  background: var(--gold);
  color: var(--navy-deep);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 12px 22px;
  border-radius: 5px;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.nav-cta:hover { background: var(--gold-soft); transform: translateY(-1px); }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  margin: 5px 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

main { padding-top: var(--nav-h); }

/* ---------- Hero ---------- */

.hero {
  background:
    radial-gradient(1100px 500px at 85% 0%, rgba(200, 160, 77, 0.10), transparent 60%),
    linear-gradient(180deg, var(--white) 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 56px;
  align-items: center;
  padding: 92px 0 96px;
}

.hero-grid > *, .split > *, .contact-grid > * { min-width: 0; }

.hero h1 { margin-bottom: 24px; }

.hero .lead { margin-bottom: 36px; }

.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-art { position: relative; }

.hero-art img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.hero-art::after {
  content: "";
  position: absolute;
  inset: 18px -18px -18px 18px;
  border: 1.5px solid var(--gold);
  border-radius: var(--radius);
  z-index: -1;
  opacity: 0.6;
}

/* ---------- Who We Are band (full-bleed composition) ---------- */

.who-band {
  background: #F6F5F1;
  padding: 44px 0;
}

.who-wrap {
  max-width: 1180px;
  margin: 0 auto;
  position: relative;
  line-height: 0;
}

.who-wrap img {
  width: 100%;
  height: auto;
  border-radius: 6px;
}

.who-cta {
  position: absolute;
  left: 3.4%;
  top: 76%;
  width: 23%;
  height: 11%;
  border-radius: 6px;
}

.who-cta:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* ---------- Sections ---------- */

.section { padding: 96px 0; }
.section.tinted { background: var(--bg); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-head { max-width: 720px; margin: 0 auto 60px; text-align: center; }
.section-head .lead { margin-top: 18px; }

/* ---------- Credibility strip ---------- */

.cred-strip {
  background: var(--navy);
  padding: 44px 0;
}

.cred-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 34px;
}

.cred-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.cred-item svg { flex-shrink: 0; margin-top: 3px; }

.cred-item strong {
  display: block;
  color: var(--white);
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}

.cred-item span {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.84rem;
  line-height: 1.5;
  display: block;
  margin-top: 4px;
}

/* ---------- Cards ---------- */

.card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

.card-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.card-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 38px 30px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
}

.card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-md);
  border-color: rgba(200, 160, 77, 0.5);
}

.icon-badge {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  background: rgba(200, 160, 77, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.card h3 { margin-bottom: 12px; }

.card p { color: var(--slate); font-size: 0.95rem; }

.card .card-link {
  display: inline-block;
  margin-top: 18px;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.card .card-link:hover { color: var(--navy); }

/* ---------- Process timeline ---------- */

.timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
  position: relative;
  margin-top: 10px;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 31px;
  left: 8%;
  right: 8%;
  height: 1.5px;
  background: linear-gradient(90deg, var(--gold), rgba(200, 160, 77, 0.35));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1.6s ease 0.3s;
}

.timeline.visible::before { transform: scaleX(1); }

.step { text-align: center; position: relative; }

.step-num {
  width: 62px;
  height: 62px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--navy);
  border: 1.5px solid var(--gold);
  color: var(--gold);
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 8px var(--white);
}

.section.tinted .step-num { box-shadow: 0 0 0 8px var(--bg); }

.step h3 { font-size: 1.02rem; margin-bottom: 8px; }

.step p { color: var(--slate); font-size: 0.86rem; line-height: 1.55; }

/* ---------- Navy band (why choose us / commitment) ---------- */

.navy-band {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 100%);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}

.navy-band::before {
  content: "";
  position: absolute;
  top: -120px; right: -120px;
  width: 420px; height: 420px;
  border-radius: 50%;
  border: 1px solid rgba(200, 160, 77, 0.25);
}

.navy-band::after {
  content: "";
  position: absolute;
  top: -60px; right: -60px;
  width: 420px; height: 420px;
  border-radius: 50%;
  border: 1px solid rgba(200, 160, 77, 0.15);
}

.navy-band h2, .navy-band h3 { color: var(--white); }

.navy-band .section-head .lead { color: rgba(255, 255, 255, 0.7); }

.navy-band .card {
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: none;
  backdrop-filter: blur(6px);
}

.navy-band .card:hover {
  transform: translateY(-7px);
  border-color: rgba(200, 160, 77, 0.55);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.navy-band .card p { color: rgba(255, 255, 255, 0.68); }

.navy-band .icon-badge { background: rgba(200, 160, 77, 0.12); }

/* ---------- Industry tiles ---------- */

.tile-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.tile {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  display: flex;
  align-items: center;
  gap: 18px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.tile:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(200, 160, 77, 0.5);
}

.tile .icon-badge {
  width: 54px; height: 54px;
  margin: 0;
  flex-shrink: 0;
}

.tile h3 { font-size: 1.02rem; margin-bottom: 3px; }

.tile p { color: var(--slate); font-size: 0.85rem; line-height: 1.5; }

/* ---------- Split section (about preview) ---------- */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.split-art { position: relative; }

.split-art img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  width: 100%;
}

.split-art::after {
  content: "";
  position: absolute;
  inset: -18px 18px 18px -18px;
  border: 1.5px solid var(--gold);
  border-radius: var(--radius);
  z-index: -1;
  opacity: 0.55;
}

.split h2 { margin-bottom: 8px; }

.split .lead { margin-bottom: 26px; }

.check-list { list-style: none; }

.check-list li {
  padding-left: 34px;
  position: relative;
  margin-bottom: 15px;
  color: var(--charcoal);
  font-size: 0.98rem;
}

.check-list li strong { color: var(--navy); }

.check-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 5px;
  width: 18px; height: 18px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  background:
    linear-gradient(45deg, transparent 48%, var(--gold) 48%) no-repeat 4px 8px / 5px 1.7px,
    linear-gradient(-52deg, transparent 48%, var(--gold) 48%) no-repeat 8px 5.4px / 8px 1.7px;
  background-color: rgba(200, 160, 77, 0.08);
}

/* ---------- Quote block ---------- */

.quote-block {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  padding-top: 46px;
}

.quote-block::before {
  content: "\201C";
  font-family: var(--font-head);
  font-size: 6rem;
  color: var(--gold);
  line-height: 1;
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  opacity: 0.85;
}

.quote-block blockquote {
  font-family: var(--font-head);
  font-size: 1.5rem;
  color: var(--navy);
  line-height: 1.5;
  font-style: italic;
}

.quote-block cite {
  display: block;
  margin-top: 24px;
  font-style: normal;
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--slate);
}

/* ---------- CTA band ---------- */

.cta-band {
  background:
    radial-gradient(800px 300px at 20% 120%, rgba(79, 163, 227, 0.18), transparent 60%),
    linear-gradient(140deg, var(--navy) 0%, var(--navy-deep) 100%);
  padding: 92px 0;
  text-align: center;
}

.cta-band h2 { color: var(--white); margin-bottom: 14px; }

.cta-band p {
  color: rgba(255, 255, 255, 0.72);
  max-width: 560px;
  margin: 0 auto 36px;
}

.cta-band .btn-gold { padding: 17px 42px; }

/* ---------- Page hero (interior pages) ---------- */

.page-hero {
  background: linear-gradient(150deg, var(--navy) 0%, var(--navy-deep) 100%);
  padding: 84px 0 76px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  right: -140px; top: -140px;
  width: 460px; height: 460px;
  border-radius: 50%;
  border: 1px solid rgba(200, 160, 77, 0.3);
}

.page-hero h1 { color: var(--white); font-size: clamp(2.2rem, 4.5vw, 3.2rem); margin-bottom: 16px; }

.page-hero .lead { color: rgba(255, 255, 255, 0.72); }

.breadcrumb {
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.breadcrumb a { color: rgba(255, 255, 255, 0.6); }
.breadcrumb a:hover { color: var(--gold-soft); }

/* ---------- Service detail rows ---------- */

.service-row {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 26px;
  padding: 40px 0;
  border-bottom: 1px solid var(--line);
}

.service-row:last-child { border-bottom: 0; }

.service-row h3 { font-size: 1.35rem; margin-bottom: 10px; }

.service-row p { color: var(--slate); max-width: 760px; }

/* ---------- FAQ ---------- */

.faq-list { max-width: 820px; margin: 0 auto; }

.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  margin-bottom: 14px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  padding: 22px 26px;
  font-weight: 600;
  color: var(--navy);
  font-size: 1.02rem;
  list-style: none;
  position: relative;
  padding-right: 56px;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 24px; top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-head);
  font-size: 1.5rem;
  color: var(--gold);
  transition: transform 0.25s ease;
}

.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }

.faq-item .faq-body {
  padding: 0 26px 24px;
  color: var(--slate);
  font-size: 0.95rem;
}

/* ---------- Values / stats-free about ---------- */

.value-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

/* ---------- Contact ---------- */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  align-items: start;
}

.contact-info h2 { margin-bottom: 8px; }

.info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 26px;
}

.info-item .icon-badge { width: 50px; height: 50px; margin: 0; flex-shrink: 0; }

.info-item strong { color: var(--navy); display: block; font-size: 0.95rem; }

.info-item span, .info-item a { color: var(--slate); font-size: 0.92rem; }

.info-item a:hover { color: var(--gold); }

.contact-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 44px;
}

.contact-form h3 { margin-bottom: 6px; font-size: 1.4rem; }

.contact-form .form-sub { color: var(--slate); font-size: 0.9rem; margin-bottom: 28px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

.field { margin-bottom: 18px; }

.field label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 8px;
}

.field input, .field select, .field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--charcoal);
  padding: 13px 15px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--bg);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200, 160, 77, 0.18);
  background: var(--white);
}

.field textarea { resize: vertical; min-height: 130px; }

.contact-form .btn { width: 100%; margin-top: 6px; }

/* ---------- Footer ---------- */

.site-footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.72);
  border-top: 3px solid var(--gold);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding: 68px 0 52px;
}

.footer-brand .brand { margin: 0 0 18px; }

.footer-brand p { font-size: 0.88rem; line-height: 1.65; max-width: 300px; }

.site-footer h4 {
  color: var(--white);
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.site-footer ul { list-style: none; }

.site-footer ul li { margin-bottom: 11px; }

.site-footer ul a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.72);
  transition: color 0.25s ease;
}

.site-footer ul a:hover { color: var(--gold-soft); }

.footer-contact li {
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom .container { display: contents; }

/* ---------- Scroll reveal ---------- */

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible { opacity: 1; transform: none; }

.reveal.d1 { transition-delay: 0.1s; }
.reveal.d2 { transition-delay: 0.2s; }
.reveal.d3 { transition-delay: 0.3s; }
.reveal.d4 { transition-delay: 0.4s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .timeline::before { transform: scaleX(1); transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Form success note ---------- */

.form-success {
  background: rgba(200, 160, 77, 0.1);
  border: 1px solid var(--gold);
  border-radius: 8px;
  padding: 16px 20px;
  color: var(--navy);
  font-size: 0.92rem;
  margin-bottom: 24px;
  display: none;
}

.form-success.show { display: block; }

/* ============================================================
   Responsive
   ============================================================ */

@media (max-width: 1020px) {
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .cred-grid { grid-template-columns: repeat(2, 1fr); gap: 26px; }
  .tile-grid { grid-template-columns: repeat(2, 1fr); }
  .timeline { grid-template-columns: repeat(3, 1fr); row-gap: 44px; }
  .timeline::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .nav-links { gap: 20px; }
}

@media (max-width: 820px) {
  :root { --nav-h: 70px; }

  .nav-toggle { display: block; }

  .nav-links {
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--navy-deep);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 12px 28px 24px;
    box-shadow: 0 18px 30px rgba(0, 0, 0, 0.3);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
  }

  .nav-links.open {
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links li { width: 100%; }

  .nav-links a {
    display: block;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.9rem;
  }

  .nav-cta { display: none; }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 44px;
    padding: 56px 0 64px;
  }

  .hero-art { max-width: 420px; }

  .split, .contact-grid { grid-template-columns: 1fr; gap: 44px; }

  .split-art { order: -1; max-width: 460px; }

  .section { padding: 68px 0; }

  .service-row { grid-template-columns: 1fr; gap: 14px; }

  .contact-form { padding: 30px 24px; }

  .form-row { grid-template-columns: 1fr; gap: 0; }
}

@media (max-width: 560px) {
  h1 { font-size: clamp(1.95rem, 8.4vw, 2.4rem); }
  .card-grid, .tile-grid, .cred-grid, .value-cols { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: 1fr; }
  .step { display: grid; grid-template-columns: 62px 1fr; gap: 18px; text-align: left; }
  .step-num { margin: 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .hero-ctas .btn { width: 100%; }
  .page-hero h1 { font-size: clamp(1.8rem, 7.6vw, 2.4rem); }
}
