/* =========================================================
   AH GROUP — Corporate Website
   Design system / global stylesheet
   Brand: Navy #0D2232 · Gold #D2A24C · Cream #F5EFE1
   ========================================================= */

:root {
  /* Brand palette */
  --navy-900: #081826;
  --navy-800: #0b1d2e;
  --navy-700: #0d2232;   /* primary */
  --navy-600: #13293b;
  --navy-500: #1c354a;
  --gold-600: #b9863a;
  --gold-500: #d2a24c;   /* accent */
  --gold-400: #e0b86c;
  --olive:    #726642;
  --cream:    #f5efe1;
  --paper:    #faf8f3;
  --white:    #ffffff;

  /* Functional */
  --ink:        #11202e;
  --ink-soft:   #34465a;
  --muted:      #6c7889;
  --line:       #e7e3d8;
  --line-dark:  rgba(255,255,255,.10);

  /* Type */
  --f-head: "Plus Jakarta Sans", "Segoe UI", system-ui, sans-serif;
  --f-body: "Inter", "Segoe UI", system-ui, sans-serif;

  /* Layout */
  --container: 1180px;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow-sm: 0 2px 10px rgba(13,34,50,.06);
  --shadow-md: 0 16px 40px rgba(13,34,50,.10);
  --shadow-lg: 0 30px 70px rgba(8,24,38,.18);
  --ease: cubic-bezier(.16,.84,.44,1);
  --nav-h: 78px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--f-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
h1, h2, h3, h4 { font-family: var(--f-head); font-weight: 700; line-height: 1.12; letter-spacing: -.02em; color: var(--ink); }
section { position: relative; }

/* ---------- Helpers ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 24px; }
.narrow { max-width: 820px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--f-head); font-weight: 600; font-size: 13px;
  letter-spacing: .18em; text-transform: uppercase; color: var(--gold-600);
  margin-bottom: 18px;
}
.eyebrow::before { content: ""; width: 28px; height: 2px; background: var(--gold-500); display: inline-block; }
.eyebrow.center { justify-content: center; }
.section { padding: 110px 0; }
.section-head { max-width: 720px; margin-bottom: 56px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { font-size: clamp(30px, 4vw, 46px); }
.section-head p { color: var(--muted); font-size: 18px; margin-top: 18px; }
.lead { font-size: 20px; color: var(--ink-soft); line-height: 1.7; }
.text-gold { color: var(--gold-600); }
.bg-paper { background: var(--paper); }
.bg-cream { background: linear-gradient(180deg, #fbfaf5, #f4efe2); }
.bg-navy { background: var(--navy-700); color: var(--cream); }
.bg-navy h1,.bg-navy h2,.bg-navy h3 { color: #fff; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--f-head); font-weight: 600; font-size: 15px;
  padding: 15px 28px; border-radius: 999px; cursor: pointer;
  border: 1.5px solid transparent; transition: all .35s var(--ease); white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-gold { background: var(--gold-500); color: var(--navy-900); }
.btn-gold:hover { background: var(--gold-400); transform: translateY(-2px); box-shadow: 0 12px 26px rgba(210,162,76,.35); }
.btn-ghost { background: transparent; color: var(--cream); border-color: rgba(245,239,225,.28); }
.btn-ghost:hover { border-color: var(--gold-500); color: #fff; }
.btn-dark { background: var(--navy-700); color: #fff; }
.btn-dark:hover { background: var(--navy-600); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; color: var(--navy-700); border-color: var(--line); }
.btn-outline:hover { border-color: var(--navy-700); transform: translateY(-2px); }
.link-arrow { display: inline-flex; align-items: center; gap: 8px; font-family: var(--f-head); font-weight: 600; color: var(--gold-600); transition: gap .3s var(--ease); }
.link-arrow:hover { gap: 14px; }
.link-arrow svg { width: 16px; height: 16px; }

/* =========================================================
   HEADER / NAV
   ========================================================= */
.site-header {
  position: fixed; inset: 0 0 auto 0; height: var(--nav-h); z-index: 100;
  display: flex; align-items: center;
  transition: background .4s var(--ease), box-shadow .4s var(--ease), height .4s var(--ease);
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.site-header.scrolled { background: rgba(8,24,38,.92); backdrop-filter: blur(14px); box-shadow: 0 1px 0 var(--line-dark); height: 66px; }

/* Brand lockup */
.brand { display: inline-flex; align-items: center; gap: 13px; }
.brand .mark { width: 42px; height: 42px; flex: none; }
.brand .word { display: flex; flex-direction: column; line-height: 1; }
.brand .word b { font-family: var(--f-head); font-weight: 800; font-size: 20px; letter-spacing: .04em; color: #fff; }
.brand .word span { font-size: 10.5px; letter-spacing: .34em; text-transform: uppercase; color: var(--gold-400); margin-top: 4px; }

.nav { display: flex; align-items: center; gap: 6px; }
.nav a {
  font-family: var(--f-head); font-weight: 500; font-size: 15px; color: rgba(245,239,225,.82);
  padding: 10px 16px; border-radius: 8px; transition: color .25s, background .25s; position: relative;
}
.nav a:hover { color: #fff; }
.nav a.active { color: var(--gold-400); }
.nav a.active::after { content: ""; position: absolute; left: 16px; right: 16px; bottom: 4px; height: 2px; background: var(--gold-500); border-radius: 2px; }
.nav-actions { display: flex; align-items: center; gap: 14px; }
.lang-switch { font-family: var(--f-head); font-weight: 600; font-size: 13px; letter-spacing: .04em; color: rgba(245,239,225,.7); border: 1px solid rgba(245,239,225,.22); padding: 7px 12px; border-radius: 8px; transition: all .25s; }
.lang-switch:hover { color: #fff; border-color: var(--gold-500); }

.nav-toggle { display: none; width: 44px; height: 44px; border: 0; background: transparent; cursor: pointer; flex-direction: column; gap: 5px; align-items: center; justify-content: center; }
.nav-toggle span { width: 24px; height: 2px; background: var(--cream); border-radius: 2px; transition: .3s var(--ease); }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =========================================================
   HERO
   ========================================================= */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; color: var(--cream);
  background: radial-gradient(120% 90% at 80% -10%, #18334a 0%, var(--navy-700) 42%, var(--navy-900) 100%); overflow: hidden; }
.hero::before { /* subtle grid/texture */ content:""; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 64px 64px; mask-image: radial-gradient(80% 70% at 70% 20%, #000, transparent 80%); }
.hero .skyline { position: absolute; left: 0; right: 0; bottom: 0; width: 100%; opacity: .5; pointer-events: none; }
.hero-inner { position: relative; z-index: 2; padding: calc(var(--nav-h) + 60px) 0 120px; max-width: 880px; }
.hero h1 { font-size: clamp(40px, 6.4vw, 76px); color: #fff; letter-spacing: -.03em; }
.hero h1 .accent { color: var(--gold-400); }
.hero p { font-size: clamp(17px, 2vw, 21px); color: rgba(245,239,225,.78); margin-top: 26px; max-width: 600px; line-height: 1.7; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 40px; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 28px; margin-top: 56px; padding-top: 30px; border-top: 1px solid rgba(245,239,225,.14); }
.hero-badge b { font-family: var(--f-head); font-size: 15px; color: #fff; display: block; }
.hero-badge span { font-size: 13px; color: rgba(245,239,225,.6); letter-spacing: .04em; }

/* =========================================================
   GROUP / TWO COMPANIES CARDS
   ========================================================= */
.companies-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.company-card {
  position: relative; border-radius: var(--radius); overflow: hidden; padding: 42px;
  background: var(--white); border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .45s;
  display: flex; flex-direction: column; min-height: 340px;
}
.company-card::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 4px; background: linear-gradient(90deg, var(--gold-500), var(--olive)); }
.company-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.company-card .tag { font-family: var(--f-head); font-weight: 600; font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-600); }
.company-card h3 { font-size: 26px; margin: 16px 0 14px; }
.company-card p { color: var(--muted); flex: 1; }
.company-card .card-foot { margin-top: 26px; display: flex; align-items: center; justify-content: space-between; }
.company-card .reg { font-size: 12.5px; color: var(--muted); font-family: var(--f-head); }
.card-ico { width: 56px; height: 56px; border-radius: 14px; display: grid; place-items: center; background: linear-gradient(140deg, var(--navy-700), var(--navy-500)); color: var(--gold-400); margin-bottom: 24px; }
.card-ico svg { width: 28px; height: 28px; }

/* =========================================================
   STATS BAND
   ========================================================= */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.stat { text-align: center; padding: 18px; }
.stat b { font-family: var(--f-head); font-weight: 800; font-size: clamp(34px, 4vw, 46px); color: #fff; display: block; letter-spacing: -.02em; }
.stat b .unit { color: var(--gold-400); }
.stat span { color: rgba(245,239,225,.66); font-size: 14px; letter-spacing: .04em; margin-top: 6px; display: block; }

/* =========================================================
   FEATURE / SERVICES GRID
   ========================================================= */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.feature {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 34px;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease); height: 100%;
}
.feature:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.feature .ico { width: 52px; height: 52px; border-radius: 13px; display: grid; place-items: center; background: var(--cream); color: var(--gold-600); margin-bottom: 22px; }
.feature .ico svg { width: 26px; height: 26px; }
.feature h3 { font-size: 19px; margin-bottom: 10px; }
.feature p { color: var(--muted); font-size: 15.5px; }

/* ---------- Split / about ---------- */
.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: 64px; align-items: center; }
.split .media { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); }
.split .media img { width: 100%; height: 100%; object-fit: cover; }
.split-panel { background: var(--navy-700); border-radius: var(--radius); padding: 54px; color: var(--cream); position: relative; overflow: hidden; }
.split-panel::after { content:""; position:absolute; right:-60px; bottom:-60px; width:200px; height:200px; border-radius:50%; background: radial-gradient(circle, rgba(210,162,76,.22), transparent 70%); }
.check-list li { display: flex; gap: 14px; padding: 12px 0; border-bottom: 1px solid var(--line); align-items: flex-start; }
.check-list.on-dark li { border-color: rgba(255,255,255,.1); }
.check-list .ck { flex: none; width: 24px; height: 24px; border-radius: 50%; background: var(--cream); color: var(--gold-600); display: grid; place-items: center; margin-top: 2px; }
.check-list.on-dark .ck { background: rgba(210,162,76,.16); color: var(--gold-400); }
.check-list .ck svg { width: 13px; height: 13px; }
.check-list b { font-family: var(--f-head); font-size: 16px; display: block; }
.check-list span { color: var(--muted); font-size: 14.5px; }
.check-list.on-dark span { color: rgba(245,239,225,.66); }

/* =========================================================
   PAGE HERO (interior pages)
   ========================================================= */
.page-hero { position: relative; padding: calc(var(--nav-h) + 90px) 0 80px; color: var(--cream);
  background: radial-gradient(110% 120% at 85% -20%, #18334a, var(--navy-700) 55%, var(--navy-900)); overflow: hidden; }
.page-hero::before { content:""; position:absolute; inset:0; background-image: linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px); background-size: 56px 56px; mask-image: radial-gradient(70% 80% at 75% 10%, #000, transparent 78%); }
.page-hero .container { position: relative; z-index: 2; }
.breadcrumb { display: flex; gap: 8px; align-items: center; font-size: 13.5px; color: rgba(245,239,225,.6); margin-bottom: 22px; font-family: var(--f-head); }
.breadcrumb a:hover { color: var(--gold-400); }
.breadcrumb svg { width: 14px; height: 14px; opacity: .6; }
.page-hero h1 { font-size: clamp(36px, 5vw, 60px); color: #fff; max-width: 760px; }
.page-hero p { color: rgba(245,239,225,.78); font-size: 19px; margin-top: 20px; max-width: 620px; }
.page-hero .tag-pill { display:inline-flex; align-items:center; gap:8px; background: rgba(210,162,76,.14); border:1px solid rgba(210,162,76,.34); color: var(--gold-400); font-family: var(--f-head); font-weight:600; font-size:13px; letter-spacing:.1em; text-transform:uppercase; padding:8px 16px; border-radius:999px; margin-bottom:22px; }

/* ---------- Info / registration table ---------- */
.info-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.info-card .row { display: grid; grid-template-columns: 220px 1fr; gap: 24px; padding: 20px 30px; border-bottom: 1px solid var(--line); }
.info-card .row:last-child { border-bottom: 0; }
.info-card .row dt { font-family: var(--f-head); font-weight: 600; color: var(--muted); font-size: 14px; letter-spacing: .03em; }
.info-card .row dd { color: var(--ink); font-weight: 500; }
.info-card .row dd small { color: var(--muted); display:block; font-weight:400; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.contact-item { display: flex; gap: 18px; padding: 22px 0; border-bottom: 1px solid var(--line); }
.contact-item:last-child { border-bottom: 0; }
.contact-item .ico { flex: none; width: 48px; height: 48px; border-radius: 12px; background: var(--cream); color: var(--gold-600); display: grid; place-items: center; }
.contact-item .ico svg { width: 22px; height: 22px; }
.contact-item h4 { font-size: 16px; margin-bottom: 4px; }
.contact-item p, .contact-item address { color: var(--muted); font-style: normal; font-size: 15px; line-height: 1.6; }
.contact-item a:hover { color: var(--gold-600); }
.form { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 40px; box-shadow: var(--shadow-md); }
.form .field { margin-bottom: 20px; }
.form label { display: block; font-family: var(--f-head); font-weight: 600; font-size: 14px; margin-bottom: 8px; color: var(--ink-soft); }
.form input, .form textarea, .form select {
  width: 100%; padding: 14px 16px; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  font-family: var(--f-body); font-size: 15.5px; color: var(--ink); background: var(--paper); transition: border .25s, box-shadow .25s;
}
.form input:focus, .form textarea:focus, .form select:focus { outline: none; border-color: var(--gold-500); box-shadow: 0 0 0 4px rgba(210,162,76,.14); background: #fff; }
.form textarea { resize: vertical; min-height: 130px; }
.form .row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.map-embed { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid var(--line); }
.map-embed iframe { width: 100%; height: 100%; min-height: 320px; border: 0; display: block; }

/* ---------- CTA band ---------- */
.cta-band { background: linear-gradient(120deg, var(--navy-800), var(--navy-600)); border-radius: 22px; padding: 64px; text-align: center; position: relative; overflow: hidden; }
.cta-band::before { content:""; position:absolute; inset:0; background: radial-gradient(60% 120% at 50% 0%, rgba(210,162,76,.18), transparent 70%); }
.cta-band > * { position: relative; z-index: 2; }
.cta-band h2 { color: #fff; font-size: clamp(28px, 3.6vw, 40px); }
.cta-band p { color: rgba(245,239,225,.74); max-width: 560px; margin: 18px auto 30px; }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer { background: var(--navy-900); color: rgba(245,239,225,.7); padding: 80px 0 30px; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 44px; padding-bottom: 50px; border-bottom: 1px solid rgba(255,255,255,.08); }
.site-footer .brand .word b { font-size: 19px; }
.footer-about p { margin-top: 22px; font-size: 14.5px; line-height: 1.7; color: rgba(245,239,225,.6); max-width: 320px; }
.footer-col h5 { font-family: var(--f-head); color: #fff; font-size: 14px; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 20px; }
.footer-col a, .footer-col p { display: block; color: rgba(245,239,225,.62); font-size: 14.5px; padding: 6px 0; transition: color .25s; }
.footer-col a:hover { color: var(--gold-400); }
.footer-col address { font-style: normal; font-size: 14px; line-height: 1.7; color: rgba(245,239,225,.6); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 20px; padding-top: 26px; flex-wrap: wrap; }
.footer-bottom p { font-size: 13.5px; color: rgba(245,239,225,.5); }
.footer-bottom .reg-ids { display: flex; gap: 18px; flex-wrap: wrap; font-size: 12.5px; color: rgba(245,239,225,.42); }

/* =========================================================
   REVEAL ANIMATION
   ========================================================= */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; } .reveal.d2 { transition-delay: .16s; } .reveal.d3 { transition-delay: .24s; } .reveal.d4 { transition-delay: .32s; }

/* =========================================================
   LOGOS / BADGES
   ========================================================= */
/* Company logo on home cards */
.company-card .logo-badge { width: 80px; height: 80px; border-radius: 16px; overflow: hidden; margin-bottom: 22px; box-shadow: var(--shadow-sm); flex: none; }
.company-card .logo-badge img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Page hero with logo badge (company pages) */
.page-hero.with-logo .container { display: flex; align-items: center; justify-content: space-between; gap: 48px; flex-wrap: wrap; }
.page-hero.with-logo .hero-text { flex: 1 1 480px; }
.page-hero-logo { flex: none; width: 180px; height: 180px; border-radius: 26px; background: #fff; padding: 14px; box-shadow: var(--shadow-lg); }
.page-hero-logo img { width: 100%; height: 100%; object-fit: contain; }

/* =========================================================
   PER-COMPANY CONTACT CARDS
   ========================================================= */
.contact-company { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow-sm); height: 100%; }
.contact-company .head { display: flex; align-items: center; gap: 16px; margin-bottom: 22px; }
.contact-company .head .lg { width: 58px; height: 58px; border-radius: 13px; overflow: hidden; flex: none; box-shadow: var(--shadow-sm); }
.contact-company .head .lg img { width: 100%; height: 100%; object-fit: cover; }
.contact-company .head .tag { font-family: var(--f-head); font-weight: 600; font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-600); display: block; }
.contact-company .head h3 { font-size: 19px; margin-top: 5px; }
.contact-company .line { display: flex; gap: 13px; padding: 13px 0; border-top: 1px solid var(--line); align-items: flex-start; }
.contact-company .line:first-of-type { border-top: 0; padding-top: 4px; }
.contact-company .line .ic { flex: none; width: 22px; height: 22px; color: var(--gold-600); margin-top: 1px; }
.contact-company .line .ic svg { width: 22px; height: 22px; }
.contact-company .line .tx { font-size: 14.5px; color: var(--ink-soft); line-height: 1.55; }
.contact-company .line .tx b { display: block; font-family: var(--f-head); font-size: 11.5px; color: var(--muted); font-weight: 600; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 3px; }
.contact-company .line a:hover { color: var(--gold-600); }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 980px) {
  .split { grid-template-columns: 1fr; gap: 40px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .stats { grid-template-columns: 1fr 1fr; gap: 30px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 760px) {
  body { font-size: 16px; }
  .section { padding: 78px 0; }
  .nav, .nav-actions .lang-switch { display: none; }
  .nav-toggle { display: flex; }
  .site-header.menu-open { background: var(--navy-900); }
  .nav.mobile-open {
    display: flex; position: fixed; inset: var(--nav-h) 0 auto 0; flex-direction: column; gap: 0;
    background: var(--navy-900); padding: 14px 24px 26px; border-top: 1px solid var(--line-dark); box-shadow: var(--shadow-lg);
  }
  .nav.mobile-open a { padding: 15px 6px; font-size: 17px; border-bottom: 1px solid rgba(255,255,255,.06); width: 100%; }
  .nav.mobile-open a.active::after { display: none; }
  .companies-grid { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .info-card .row { grid-template-columns: 1fr; gap: 6px; padding: 16px 20px; }
  .form .row2 { grid-template-columns: 1fr; }
  .cta-band { padding: 44px 24px; }
  .split-panel { padding: 36px; }
  .hero-badges { gap: 20px; }
}
@media (max-width: 480px) {
  .stats { grid-template-columns: 1fr 1fr; }
  .brand .word span { letter-spacing: .24em; }
}
@media (max-width: 760px) {
  .page-hero.with-logo .container { gap: 26px; }
  .page-hero-logo { width: 120px; height: 120px; border-radius: 20px; padding: 10px; order: -1; }
}

/* WordPress admin bar offset (only shown to logged-in admins) */
body.admin-bar .site-header { top: 32px; }
@media screen and (max-width: 782px) {
  body.admin-bar .site-header { top: 46px; }
}
