:root {
  --navy: #02084f;
  --navy-2: #091532;
  --blue: #075ce1;
  --blue-2: #2a74f4;
  --ink: #0e1524;
  --muted: #5d6676;
  --line: #dfe3e9;
  --paper: #f7f7f4;
  --cream: #eeeae0;
  --white: #ffffff;
  --success: #1b6a47;
  --radius: 2px;
  --shadow: 0 24px 60px rgba(8, 15, 35, .14);
  --max: 1240px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.skip-link {
  position: fixed;
  z-index: 999;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  background: var(--white);
  color: var(--navy);
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }

.container { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.narrow { width: min(calc(100% - 40px), 820px); margin-inline: auto; }
.section { padding: 112px 0; }
.section-sm { padding: 72px 0; }
.section-dark { background: var(--navy-2); color: var(--white); }
.section-cream { background: var(--cream); }
.section-white { background: var(--white); }

.eyebrow {
  margin: 0 0 16px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.section-dark .eyebrow { color: #78a9ff; }

h1, h2, h3, p { margin-top: 0; }
h1, h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -.035em;
  line-height: 1.04;
}
h1 { font-size: clamp(44px, 6.3vw, 88px); }
h2 { font-size: clamp(36px, 4.5vw, 60px); }
h3 { line-height: 1.25; }
.lede { max-width: 730px; color: var(--muted); font-size: clamp(18px, 2vw, 22px); line-height: 1.55; }
.section-dark .lede { color: #cbd4e7; }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 48px; margin-bottom: 54px; }
.section-head h2 { max-width: 760px; margin-bottom: 0; }
.section-head p { max-width: 440px; margin-bottom: 4px; color: var(--muted); }

.topbar {
  background: var(--navy-2);
  color: #dbe4f6;
  font-size: 12px;
  letter-spacing: .04em;
}
.topbar .container { display: flex; min-height: 34px; align-items: center; justify-content: space-between; gap: 16px; }
.topbar a { color: var(--white); font-weight: 700; }

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid rgba(8, 21, 50, .1);
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(14px);
}
.container.header-inner { width: min(calc(100% - 40px), 1480px); }
.header-inner { display: flex; min-height: 86px; align-items: center; gap: 20px; }
.brand { flex: 0 0 156px; }
.brand img { width: 156px; height: auto; }
.main-nav { display: flex; min-width: 0; flex: 1; align-items: center; justify-content: center; gap: clamp(13px, 1.25vw, 22px); }
.main-nav a, .nav-button {
  position: relative;
  border: 0;
  background: none;
  color: #20283a;
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .075em;
  white-space: nowrap;
  text-transform: uppercase;
}
.main-nav a::after, .nav-button::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 2px;
  background: var(--blue);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .22s ease;
}
.main-nav a:hover::after, .main-nav a[aria-current="page"]::after, .nav-button:hover::after { transform: scaleX(1); }
.nav-group { position: relative; }
.nav-button { padding: 0; }
.nav-button span { margin-left: 3px; font-size: 9px; }
.nav-dropdown {
  position: absolute;
  top: 28px;
  left: -20px;
  display: grid;
  min-width: 265px;
  padding: 12px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: .2s ease;
}
.nav-group:hover .nav-dropdown, .nav-group:focus-within .nav-dropdown { opacity: 1; pointer-events: auto; transform: none; }
.nav-dropdown a { padding: 11px 12px; font-size: 12px; }
.nav-dropdown a:hover { background: #f0f4ff; color: var(--blue); }
.nav-dropdown a::after { display: none; }

.header-actions { display: flex; flex: 0 0 auto; align-items: center; gap: 12px; }
.lang-select {
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--white);
  color: var(--ink);
  padding: 0 30px 0 12px;
  font-size: 12px;
  font-weight: 800;
}
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--navy);
  cursor: pointer;
}
.menu-toggle span, .menu-toggle::before, .menu-toggle::after {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  content: "";
  transition: .2s;
}
.menu-toggle span { margin: 4px 0; }

.btn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .075em;
  white-space: nowrap;
  text-transform: uppercase;
  transition: transform .18s ease, background .18s ease, color .18s ease, border .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--blue); color: var(--white); }
.btn-primary:hover { background: #0049bd; }
.btn-dark { background: var(--navy); color: var(--white); }
.btn-light { border-color: rgba(255,255,255,.55); color: var(--white); }
.btn-outline { border-color: var(--navy); color: var(--navy); }
.btn-white { background: var(--white); color: var(--navy); }
.text-link { color: var(--blue); font-size: 13px; font-weight: 900; letter-spacing: .06em; text-transform: uppercase; }
.text-link::after { display: inline-block; margin-left: 8px; content: "→"; transition: transform .2s; }
.text-link:hover::after { transform: translateX(4px); }

.hero {
  position: relative;
  min-height: min(790px, calc(100vh - 120px));
  display: flex;
  align-items: end;
  overflow: hidden;
  background: #101629 url("/assets/images/orion-hero.webp") center/cover no-repeat;
  color: var(--white);
}
.hero::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(4,10,29,.86) 0%, rgba(4,10,29,.57) 40%, rgba(4,10,29,.08) 72%), linear-gradient(0deg, rgba(5,9,22,.42), transparent 45%);
  content: "";
}
.hero-content { position: relative; z-index: 1; width: min(760px, 100%); padding: 132px 0 88px; }
.hero h1 { max-width: 720px; margin-bottom: 28px; }
.hero-copy { max-width: 610px; margin-bottom: 34px; color: #ecf0f7; font-size: clamp(18px, 2vw, 22px); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-note { margin: 22px 0 0; color: #d3daea; font-size: 13px; }

.inner-hero {
  position: relative;
  min-height: 540px;
  display: flex;
  align-items: end;
  overflow: hidden;
  background: var(--navy-2);
  color: var(--white);
}
.inner-hero::after {
  position: absolute;
  top: -15%;
  right: -5%;
  width: min(58vw, 820px);
  aspect-ratio: 1.4;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
  content: "";
  transform: rotate(-14deg);
}
.inner-hero .container { position: relative; z-index: 2; padding-top: 112px; padding-bottom: 70px; }
.inner-hero h1 { max-width: 860px; margin-bottom: 22px; }
.inner-hero .lede { color: #d5dced; }
.breadcrumbs { margin-bottom: 32px; color: #b7c1d7; font-size: 12px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.breadcrumbs a { color: var(--white); }

.trust-bar { background: var(--white); border-bottom: 1px solid var(--line); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item { padding: 30px 26px; border-left: 1px solid var(--line); }
.trust-item:last-child { border-right: 1px solid var(--line); }
.trust-item strong { display: block; color: var(--navy); font-family: Georgia, serif; font-size: 25px; font-weight: 400; line-height: 1.15; }
.trust-item span { color: var(--muted); font-size: 12px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }

.service-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.service-card {
  position: relative;
  min-height: 410px;
  display: flex;
  align-items: end;
  overflow: hidden;
  background: var(--navy-2);
  color: var(--white);
}
.service-card::before { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(3,8,25,.9), rgba(3,8,25,.08) 70%); content: ""; }
.service-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.service-card:hover img { transform: scale(1.035); }
.service-card-body { position: relative; z-index: 1; width: 100%; padding: 34px; }
.service-card h3 { max-width: 480px; margin: 0 0 8px; font-family: Georgia, serif; font-size: 32px; font-weight: 400; }
.service-card p { max-width: 470px; margin-bottom: 20px; color: #d8dfeb; }
.service-card .text-link { color: #8eb5ff; }

.split { display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: clamp(48px, 7vw, 104px); }
.split.reverse { grid-template-columns: .95fr 1.05fr; }
.split-media { position: relative; }
.split-media img { width: 100%; min-height: 520px; object-fit: cover; box-shadow: var(--shadow); }
.media-tag {
  position: absolute;
  right: -24px;
  bottom: 34px;
  max-width: 210px;
  padding: 20px;
  background: var(--blue);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
}
.split-copy h2 { margin-bottom: 26px; }
.split-copy p { color: var(--muted); }
.feature-list { display: grid; gap: 18px; padding: 0; margin: 30px 0; list-style: none; }
.feature-list li { display: grid; grid-template-columns: 34px 1fr; gap: 12px; align-items: start; }
.feature-list li::before { display: grid; width: 28px; height: 28px; place-items: center; background: var(--blue); color: var(--white); content: "✓"; font-size: 13px; font-weight: 900; }
.feature-list strong { display: block; margin-bottom: 3px; color: var(--ink); }
.section-dark .feature-list strong { color: var(--white); }
.section-dark .feature-list span { color: #bec9dd; }

.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 42px; background: rgba(255,255,255,.17); }
.stat { padding: 28px; background: var(--navy-2); }
.stat strong { display: block; font-family: Georgia, serif; font-size: 42px; font-weight: 400; }
.stat span { color: #bcc7db; font-size: 12px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }

.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.process-card { min-height: 300px; padding: 42px 34px; background: var(--white); }
.process-number { color: var(--blue); font-family: Georgia, serif; font-size: 56px; line-height: 1; }
.process-card h3 { margin: 38px 0 12px; font-size: 20px; }
.process-card p { margin: 0; color: var(--muted); }

.project-grid { display: grid; grid-template-columns: 1.35fr .65fr; grid-template-rows: repeat(2, 290px); gap: 16px; }
.project-card { position: relative; overflow: hidden; background: var(--navy-2); color: var(--white); }
.project-card:first-child { grid-row: 1 / 3; }
.project-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.project-card:hover img { transform: scale(1.03); }
.project-overlay { position: absolute; inset: auto 0 0; padding: 58px 26px 24px; background: linear-gradient(0deg, rgba(4,9,25,.86), transparent); }
.project-overlay strong { display: block; font-family: Georgia, serif; font-size: 25px; font-weight: 400; }
.project-overlay span { color: #dbe2ee; font-size: 12px; text-transform: uppercase; letter-spacing: .08em; }
.preview-label { position: absolute; top: 14px; left: 14px; z-index: 2; padding: 7px 10px; background: rgba(255,255,255,.92); color: var(--navy); font-size: 10px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }

.reviews-reserved { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px; }
.review-slot { min-height: 240px; display: flex; flex-direction: column; justify-content: space-between; padding: 30px; border: 1px solid var(--line); background: var(--white); }
.stars { color: var(--blue); letter-spacing: .18em; }
.review-slot p { color: var(--muted); }
.review-slot strong { font-size: 13px; }

.service-area-band { overflow: hidden; background: var(--blue); color: var(--white); }
.service-area-band .container { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 40px; padding-top: 58px; padding-bottom: 58px; }
.service-area-band h2 { margin-bottom: 12px; font-size: clamp(32px, 4vw, 50px); }
.service-area-band p { margin: 0; color: #e8efff; }

.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-question { width: 100%; display: grid; grid-template-columns: 1fr auto; gap: 20px; padding: 24px 0; border: 0; background: none; color: var(--ink); cursor: pointer; text-align: left; font-weight: 800; }
.faq-question span:last-child { color: var(--blue); font-size: 22px; transition: transform .2s; }
.faq-question[aria-expanded="true"] span:last-child { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; color: var(--muted); transition: max-height .3s ease; }
.faq-answer p { max-width: 760px; padding: 0 0 24px; margin: 0; }

.content-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.content-card { padding: 36px; border: 1px solid var(--line); background: var(--white); }
.content-card h3 { color: var(--navy); font-family: Georgia, serif; font-size: 28px; font-weight: 400; }
.content-card p { color: var(--muted); }
.content-card ul { padding-left: 20px; color: var(--muted); }
.brand-list { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.brand-list span { padding: 9px 12px; border: 1px solid var(--line); background: var(--white); color: var(--navy); font-size: 12px; font-weight: 800; }

.quote-form { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: grid; gap: 8px; }
.field-full { grid-column: 1 / -1; }
.field label { font-size: 12px; font-weight: 900; letter-spacing: .06em; text-transform: uppercase; }
.field input, .field select, .field textarea {
  width: 100%;
  min-height: 52px;
  border: 1px solid #cfd5df;
  border-radius: 0;
  background: var(--white);
  color: var(--ink);
  padding: 13px 14px;
  outline: 0;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(7,92,225,.12); }
.field-help { color: var(--muted); font-size: 12px; }
.check-field { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; }
.check-field input { margin-top: 5px; accent-color: var(--blue); }
.hidden-field { position: absolute !important; left: -9999px !important; }
.form-status { margin-bottom: 22px; padding: 16px; border-left: 3px solid var(--success); background: #edf8f2; color: #174d37; }
.form-status.error { border-color: #b42318; background: #fff1f0; color: #7a271a; }
.contact-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: 70px; }
.contact-panel { padding: 34px; background: var(--navy-2); color: var(--white); }
.contact-panel h3 { font-family: Georgia, serif; font-size: 30px; font-weight: 400; }
.contact-panel a { display: block; margin: 12px 0; color: #dbe5f6; }
.contact-panel hr { margin: 28px 0; border: 0; border-top: 1px solid rgba(255,255,255,.18); }

.cta-panel { position: relative; overflow: hidden; padding: clamp(48px, 7vw, 88px); background: var(--navy-2); color: var(--white); }
.cta-panel::after { position: absolute; right: -140px; bottom: -210px; width: 480px; height: 480px; border: 1px solid rgba(255,255,255,.18); border-radius: 50%; content: ""; }
.cta-panel h2 { position: relative; z-index: 1; max-width: 780px; }
.cta-panel p { position: relative; z-index: 1; max-width: 620px; color: #cbd4e7; }
.cta-panel .hero-actions { position: relative; z-index: 1; }

.site-footer { padding: 74px 0 32px; background: #070b16; color: #d4dbea; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 50px; }
.footer-brand img { width: 190px; filter: brightness(0) invert(1); }
.footer-brand p { max-width: 360px; margin-top: 22px; color: #9fa9bc; }
.footer-title { margin-bottom: 18px; color: var(--white); font-size: 12px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.footer-links { display: grid; gap: 10px; }
.footer-links a { color: #aeb8ca; font-size: 14px; }
.footer-links a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; margin-top: 58px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.12); color: #8893a7; font-size: 12px; }

.mobile-cta { display: none; }

[data-reveal] { opacity: 0; transform: translateY(18px); transition: opacity .55s ease, transform .55s ease; }
[data-reveal].is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
  [data-reveal] { opacity: 1; transform: none; }
}

@media (max-width: 1320px) {
  .container.header-inner { width: min(calc(100% - 32px), 1288px); }
  .header-inner { gap: 14px; }
  .brand, .brand img { width: 140px; flex-basis: 140px; }
  .main-nav { gap: 11px; }
  .main-nav a, .nav-button { font-size: 10px; letter-spacing: .05em; }
  .header-actions .btn { display: none; }
}

@media (max-width: 1040px) {
  body { padding-bottom: 66px; }
  .container, .narrow { width: min(calc(100% - 32px), var(--max)); }
  .section { padding: 78px 0; }
  .section-sm { padding: 54px 0; }
  .topbar .container span:first-child { display: none; }
  .topbar .container { justify-content: center; }
  .header-inner { min-height: 72px; }
  .brand, .brand img { width: 135px; flex-basis: 135px; }
  .menu-toggle { display: flex; flex-direction: column; margin-left: auto; }
  .header-actions { order: 2; }
  .main-nav {
    position: fixed;
    top: 106px;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    padding: 20px 24px 110px;
    overflow-y: auto;
    background: var(--white);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: .2s ease;
  }
  .main-nav.is-open { opacity: 1; pointer-events: auto; transform: none; }
  .main-nav > a, .nav-button { display: block; width: 100%; padding: 17px 0; border-bottom: 1px solid var(--line); font-size: 14px; text-align: left; }
  .main-nav a::after, .nav-button::after { display: none; }
  .nav-dropdown { position: static; display: none; min-width: 0; padding: 4px 0 10px 14px; border: 0; box-shadow: none; opacity: 1; pointer-events: auto; transform: none; }
  .nav-group.is-open .nav-dropdown { display: grid; }
  .nav-dropdown a { padding: 10px 0; }
  .hero { min-height: 680px; background-position: 61% center; }
  .hero::before { background: linear-gradient(90deg, rgba(4,10,29,.86), rgba(4,10,29,.47)), linear-gradient(0deg, rgba(5,9,22,.5), transparent 55%); }
  .hero-content { padding: 118px 0 60px; }
  .section-head, .split, .split.reverse, .contact-layout { grid-template-columns: 1fr; }
  .section-head { display: grid; gap: 18px; }
  .split-media img { min-height: 390px; }
  .media-tag { right: 12px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item { border-bottom: 1px solid var(--line); }
  .service-card { min-height: 360px; }
  .process-grid, .reviews-reserved { grid-template-columns: 1fr; }
  .project-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 420px 250px; }
  .project-card:first-child { grid-column: 1 / -1; grid-row: auto; }
  .service-area-band .container { grid-template-columns: 1fr; }
  .content-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .mobile-cta {
    position: fixed;
    z-index: 80;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 66px;
    box-shadow: 0 -8px 24px rgba(4,10,29,.18);
  }
  .mobile-cta a { display: grid; place-items: center; background: var(--navy); color: var(--white); font-size: 12px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
  .mobile-cta a:last-child { background: var(--blue); }
}

@media (max-width: 580px) {
  .lang-select { width: 68px; padding-left: 8px; }
  .hero h1 { font-size: 46px; }
  .hero-actions .btn { width: 100%; }
  .trust-grid, .service-grid, .stats, .project-grid, .footer-grid, .quote-form { grid-template-columns: 1fr; }
  .trust-item { border-right: 1px solid var(--line); }
  .service-card { min-height: 390px; }
  .service-card-body { padding: 26px; }
  .project-grid { grid-template-rows: repeat(3, 330px); }
  .project-card:first-child { grid-column: auto; }
  .field-full { grid-column: auto; }
  .footer-bottom { display: grid; }
  .inner-hero { min-height: 470px; }
}
