/* ==========================================================================
   DD Inc. — unified top menu (navy) for ALL static pages.
   Loaded LAST on every page so it reskins each page's .site-header to one
   consistent navy design. Matches the SPA header (assets/site/spa-header.*).
   Added 2026-07-28.
   ========================================================================== */

.site-header{
  background:#00122c !important;
  position:sticky; top:0; z-index:100;
  border-bottom:1px solid rgba(201,138,56,.18);
  font-family:"DM Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
}
/* remove the cream tab the About header used behind the logo */
.site-header .header-tab{ display:none !important; }

.site-header .header-inner{
  display:flex; align-items:center; gap:32px;
  height:88px;
  width:100%; max-width:1360px;
  margin-inline:auto; padding-inline:40px;
}

/* ---- brand ---- */
.site-header .brand{ display:flex; align-items:center; gap:14px; flex:0 0 auto; }
.site-header .brand-mark{ width:56px; height:auto; display:block; }
.site-header .brand-rule{ width:1px; height:44px; background:#c98a38; opacity:.55; display:block; }
.site-header .brand-text{ display:flex; flex-direction:column; gap:3px; }
.site-header .brand-name{
  font-family:"Playfair Display", Georgia, serif;
  font-size:27px; font-weight:600; line-height:1;
  color:#ffffff !important; letter-spacing:.01em;
}
.site-header .brand-inc{ font-size:20px; font-weight:500; }
.site-header .brand-tag{ font-size:11.5px; color:#c98a38 !important; line-height:1; }

/* ---- nav ---- */
.site-header .nav{ display:flex; align-items:center; gap:34px; margin-left:auto; }
.site-header .nav-item{ position:relative; }
.site-header .nav-link{
  font-size:12.5px; font-weight:500; letter-spacing:.11em; text-transform:uppercase;
  color:#faf8f6 !important; background:none; border:0; padding:0;
  font-family:inherit; cursor:pointer;
  display:inline-flex; align-items:center; gap:7px; white-space:nowrap;
  text-decoration:none; transition:color .18s ease;
}
.site-header .nav-link:hover{ color:#c98a38 !important; }
.site-header .nav-link.is-active{ position:relative; color:#ffffff !important; }
.site-header .nav-link.is-active::after{
  content:""; position:absolute; left:0; right:0; bottom:-9px;
  height:2px; background:#c98a38;
}
.site-header .caret{
  width:7px; height:7px;
  border-right:1.4px solid currentColor; border-bottom:1.4px solid currentColor;
  transform:translateY(-2px) rotate(45deg);
}

/* ---- solutions dropdown ---- */
.site-header .nav-menu{
  position:absolute; top:calc(100% + 18px); left:50%;
  transform:translateX(-50%) translateY(-6px);
  min-width:270px; background:#00122c;
  border:1px solid rgba(201,138,56,.28); padding:8px 0;
  opacity:0; visibility:hidden;
  transition:opacity .18s ease, transform .18s ease, visibility .18s;
}
.site-header .has-menu.open .nav-menu{ opacity:1; visibility:visible; transform:translateX(-50%) translateY(0); }
.site-header .nav-menu a{
  display:block; padding:11px 22px; font-size:13px;
  color:#ffffff !important; letter-spacing:.02em; text-transform:none; text-decoration:none;
}
.site-header .nav-menu a:hover{ background:rgba(201,138,56,.14); color:#c98a38 !important; }
.site-header .nav-menu a.is-active{ color:#c98a38 !important; }

/* ---- "Let's Connect" — gold outline (ghost) ---- */
.site-header .header-cta{
  flex:0 0 auto;
  display:inline-flex; align-items:center; gap:10px;
  background:transparent !important; color:#d08329 !important;
  border:1px solid #c98a38 !important;
  font-size:13px; font-weight:700; letter-spacing:.12em; text-transform:uppercase;
  padding:13px 22px; text-decoration:none;
  transition:background-color .18s ease, color .18s ease;
}
.site-header .header-cta:hover{ background:#c98a38 !important; color:#00122c !important; }
.site-header .header-cta .arrow{
  display:inline-block; width:22px; height:1.5px; background:currentColor; position:relative; margin-left:0;
}
.site-header .header-cta .arrow::after{
  content:""; position:absolute; right:0; top:50%;
  width:7px; height:7px;
  border-top:1.5px solid currentColor; border-right:1.5px solid currentColor;
  transform:translateY(-50%) rotate(45deg);
}

/* ---- burger ---- */
.site-header .burger{ display:none; background:none; border:0; padding:8px; cursor:pointer; margin-left:auto; }
.site-header .burger span{ display:block; width:24px; height:2px; background:#ffffff; margin:5px 0; }

/* ---- responsive ---- */
@media (max-width:1180px){
  .site-header .header-inner{ gap:18px; }
  .site-header .nav{ gap:20px; }
  .site-header .nav-link{ font-size:11px; letter-spacing:.06em; }
  .site-header .header-cta{ padding:12px 16px; }
  .site-header .brand-mark{ width:48px; }
  .site-header .brand-name{ font-size:23px; }
}
@media (max-width:980px){
  .site-header .header-inner{ padding-inline:28px; }
  .site-header .nav, .site-header .header-cta{ display:none; }
  .site-header .burger{ display:block; }
  body.nav-open .site-header .nav{
    display:flex; position:absolute; top:88px; left:0; right:0;
    flex-direction:column; align-items:flex-start; gap:0;
    background:#00122c; padding:14px 28px 22px;
  }
  body.nav-open .site-header .nav .nav-link{ color:#ffffff !important; padding:13px 0; }
  body.nav-open .site-header .has-menu .nav-menu{
    position:static; transform:none; opacity:1; visibility:visible;
    border:0; background:transparent; min-width:0; padding:0 0 8px 14px;
  }
  body.nav-open .site-header .nav-link.is-active::after{ display:none; }
}
@media (prefers-reduced-motion:reduce){ .site-header *{ transition:none !important; } }

/* ==========================================================================
   SITE FOOTER (address + phone) — shared across pages. Added 2026-07-28.
   ========================================================================== */
.site-footer{
  background:#00122c; color:#c8cfdb;
  border-top:1px solid rgba(201,138,56,.20);
  font-family:"DM Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
}
.site-footer .footer-inner{
  max-width:1360px; margin-inline:auto; padding:58px 40px 30px;
  display:grid; grid-template-columns:1.5fr 1fr 1.2fr; gap:44px;
}
.site-footer .footer-logo{ width:66px; height:auto; display:block; margin-bottom:14px; }
.site-footer .footer-tag{ color:#c98a38; font-size:13px; margin:0 0 8px; }
.site-footer .footer-brand p.footer-elev{ color:#aeb6c4; font-size:13.5px; margin:0; }
.site-footer h4{
  color:#ffffff; font-family:"Playfair Display", Georgia, serif;
  font-size:16px; font-weight:600; letter-spacing:.03em; margin:0 0 16px;
}
.site-footer a{ color:#c8cfdb; text-decoration:none; display:block; padding:5px 0; font-size:14px; transition:color .18s ease; }
.site-footer a:hover{ color:#c98a38; }
.site-footer .footer-contact p{ margin:0 0 12px; font-size:14px; line-height:1.65; color:#c8cfdb; }
.site-footer .footer-contact p a{ display:inline; padding:0; }
.site-footer .footer-cta{
  display:inline-block; margin-top:8px; padding:11px 20px;
  border:1px solid #c98a38; color:#d08329; font-size:12.5px; font-weight:700;
  letter-spacing:.1em; text-transform:uppercase;
}
.site-footer .footer-cta:hover{ background:#c98a38; color:#00122c; }
.site-footer .footer-bottom{
  border-top:1px solid rgba(255,255,255,.08);
  text-align:center; padding:18px 20px; font-size:12.5px; color:#8b93a3;
}
@media (max-width:820px){
  .site-footer .footer-inner{ grid-template-columns:1fr; gap:30px; padding:44px 28px 24px; }
}

/* ---- language switch (EN | FR) ---- */
.site-header .nav .lang-switch, .ddhdr-nav .lang-switch{
  display:inline-flex; align-items:center; gap:2px; margin-left:6px;
  border:1px solid rgba(201,138,56,.55); border-radius:2px; overflow:hidden;
}
.lang-switch button{
  background:none; border:0; cursor:pointer; font-family:inherit;
  font-size:11px; font-weight:700; letter-spacing:.08em;
  color:#c8cfdb; padding:5px 9px; line-height:1; transition:background .15s,color .15s;
}
.lang-switch button:hover{ color:#c98a38; }
.lang-switch button.on{ background:#c98a38; color:#00122c; }
@media (max-width:980px){
  body.nav-open .site-header .nav .lang-switch{ margin:12px 0 0; }
}
