/* Gaubert Law — navy + gold, matching the firm's existing branding
   (#0c2340 / #112337 navy, #ae802c gold, fleur-de-lis mark). */

:root {
  --navy: #0c2340;
  --navy-2: #112337;
  --navy-3: #17304a;
  --gold: #ae802c;
  --gold-bright: #c9982f;
  --gold-soft: #e8d6ad;
  --ink: #1c2530;
  --body: #4a5561;
  --line: #e2e5ea;
  --bg: #ffffff;
  --bg-alt: #f6f7f9;
  --radius: 6px;
  --wrap: 1160px;
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, "Times New Roman", serif;
  --sans: "Segoe UI", Roboto, "Helvetica Neue", Arial, system-ui, sans-serif;
  --shadow: 0 2px 14px rgba(12, 35, 64, 0.08);
  --shadow-lg: 0 18px 46px rgba(12, 35, 64, 0.22);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.7;
  color: var(--body);
  background: var(--bg);
  -webkit-text-size-adjust: 100%;
}

h1, h2, h3 { font-family: var(--serif); color: var(--ink); line-height: 1.2; margin: 0 0 .6em; font-weight: 600; }
h1 { font-size: clamp(2rem, 4.4vw, 3.1rem); }
h2 { font-size: clamp(1.5rem, 2.6vw, 2.1rem); }
h3 { font-size: 1.2rem; }
p { margin: 0 0 1.1em; }
a { color: var(--gold); text-decoration: none; }
a:hover, a:focus-visible { text-decoration: underline; }
img, svg { max-width: 100%; }

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

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 22px; }
.layout-narrow { max-width: 800px; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--gold); color: #fff; padding: 10px 16px;
}
.skip-link:focus { left: 8px; top: 8px; }

.fleur { width: 26px; height: 36px; fill: var(--gold); flex: none; }

/* ---------------------------------------------------------- buttons */

.btn {
  display: inline-block; padding: 13px 26px; border: 2px solid transparent;
  border-radius: var(--radius); font-weight: 700; font-size: .82rem;
  letter-spacing: .1em; text-transform: uppercase; cursor: pointer;
  text-align: center; transition: background .15s, color .15s, border-color .15s;
}
.btn:hover, .btn:focus-visible { text-decoration: none; }
.btn-gold { background: var(--gold); border-color: var(--gold); color: #fff; }
.btn-gold:hover, .btn-gold:focus-visible { background: var(--gold-bright); border-color: var(--gold-bright); color: #fff; }
.btn-navy { background: var(--navy); border-color: var(--navy); color: #fff; }
.btn-navy:hover, .btn-navy:focus-visible { background: var(--navy-3); border-color: var(--navy-3); color: #fff; }
.btn-ghost { background: transparent; border-color: rgba(255,255,255,.55); color: #fff; }
.btn-ghost:hover, .btn-ghost:focus-visible { background: rgba(255,255,255,.12); border-color: #fff; color: #fff; }
.btn-lg { padding: 16px 32px; font-size: .86rem; }
.btn-sm { padding: 9px 16px; font-size: .74rem; }
.btn-block { display: block; width: 100%; }

.eyebrow {
  display: block; font-size: .76rem; letter-spacing: .18em;
  text-transform: uppercase; color: var(--gold); font-weight: 700; margin-bottom: .7em;
}
.readmore { font-weight: 700; font-size: .84rem; letter-spacing: .06em; text-transform: uppercase; }

/* ----------------------------------------------------------- header */

.topbar { background: var(--navy-2); color: #cfd6de; font-size: .84rem; }
.topbar-inner { display: flex; justify-content: space-between; align-items: center; gap: 14px; min-height: 42px; flex-wrap: wrap; }
.topbar a { color: #cfd6de; }
.topbar-phone .label { color: var(--gold-soft); letter-spacing: .1em; text-transform: uppercase; font-size: .74rem; margin-right: 4px; }
.topbar-phone { font-weight: 700; letter-spacing: .04em; }
.topbar-cta { color: var(--gold-soft); font-weight: 700; letter-spacing: .08em; text-transform: uppercase; font-size: .74rem; }

.site-header { background: #fff; position: sticky; top: 0; z-index: 40; box-shadow: 0 1px 0 rgba(12,35,64,.1); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 18px; min-height: 78px; }

.brand { display: flex; align-items: center; gap: 12px; color: var(--navy); }
.brand:hover { text-decoration: none; }
.brand-crest { width: auto; height: 46px; flex: none; object-fit: contain; }
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-name { font-family: var(--serif); font-size: 1.35rem; letter-spacing: .06em; text-transform: uppercase; color: var(--navy); }
.brand-tag { font-size: .68rem; letter-spacing: .28em; text-transform: uppercase; color: var(--gold); }

.nav-toggle {
  display: none; background: none; border: 0; padding: 10px; cursor: pointer;
  flex-direction: column; gap: 5px;
}
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--navy); transition: transform .2s, opacity .2s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.primary-nav ul { list-style: none; margin: 0; padding: 0; display: flex; align-items: center; gap: 4px; }
.nav-item { position: relative; }
.nav-item > a {
  display: block; padding: 12px 13px; color: var(--navy-2); font-size: .82rem;
  font-weight: 600; letter-spacing: .09em; text-transform: uppercase;
}
.nav-item > a:hover, .nav-item > a:focus-visible { color: var(--gold); text-decoration: none; }
.nav-item.active > a { color: var(--gold); }
.nav-item.has-children > a::after { content: "▾"; margin-left: 6px; font-size: .7em; opacity: .7; }
.submenu-toggle { display: none; }

.submenu {
  position: absolute; top: 100%; left: 0; min-width: 250px; background: #fff;
  border-top: 3px solid var(--gold); box-shadow: var(--shadow-lg);
  padding: 6px 0 !important; display: none !important; flex-direction: column; gap: 0 !important;
  border-radius: 0 0 var(--radius) var(--radius);
}
.nav-item.has-children:hover > .submenu,
.nav-item.has-children:focus-within > .submenu,
.nav-item.has-children.open > .submenu { display: flex !important; }
.submenu li { width: 100%; }
.submenu a {
  display: block; padding: 10px 18px; color: var(--ink); font-size: .88rem;
  text-transform: none; letter-spacing: 0; font-weight: 500;
}
.submenu a:hover, .submenu a:focus-visible { background: var(--bg-alt); color: var(--gold); text-decoration: none; }
.nav-cta { margin-left: 8px; }

/* ------------------------------------------------------------- hero */

.hero {
  position: relative;
  background:
    linear-gradient(180deg, rgba(12,35,64,.93), rgba(12,35,64,.97)),
    radial-gradient(circle at 82% 18%, rgba(174,128,44,.4), transparent 55%),
    url(/img/gaubert-hero-bg.jpg) center top / cover no-repeat,
    var(--navy);
  color: #fff; padding: clamp(64px, 11vw, 128px) 0;
  border-bottom: 5px solid var(--gold);
}
.hero-inner {
  display: flex; align-items: flex-end; justify-content: space-between; gap: 40px;
}
.hero-copy { max-width: 620px; }
.hero h1 { color: #fff; letter-spacing: .04em; text-transform: uppercase; margin-bottom: .35em; }
.hero-lede { font-size: 1.12rem; color: #cdd5de; max-width: 640px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.hero-photo {
  flex: none; align-self: flex-end; width: 240px; height: auto; display: block;
  border-radius: var(--radius) var(--radius) 0 0; box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,.15); border-bottom: 0;
}

.page-hero {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-2) 100%);
  color: #fff; padding: clamp(44px, 7vw, 82px) 0; border-bottom: 4px solid var(--gold);
}
.page-hero h1 { color: #fff; margin-bottom: .3em; }
.page-hero-sub { color: #c8d1dc; font-size: 1.05rem; max-width: 720px; margin: 0; }

.crumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 18px; padding: 0; font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: #93a2b4; }
.crumbs li + li::before { content: "/"; margin-right: 8px; color: #5d7086; }
.crumbs a { color: var(--gold-soft); }

/* ------------------------------------------------------------ stats */

.stats { background: var(--navy-2); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(255,255,255,.09); }
.stat { background: var(--navy-2); padding: 34px 20px; text-align: center; }
.stat-figure { display: block; font-family: var(--serif); font-size: clamp(1.3rem, 2.4vw, 2rem); color: var(--gold-bright); line-height: 1.2; }
.stat-label { display: block; margin-top: 8px; font-size: .74rem; letter-spacing: .14em; text-transform: uppercase; color: #a9b6c5; }

/* --------------------------------------------------------- sections */

.section { padding: clamp(52px, 8vw, 92px) 0; }
.section-alt { background: var(--bg-alt); }
.section-head { max-width: 720px; margin-bottom: 42px; }
.section-head h2 { margin: 0; }

.prose h2 { margin-top: 1.6em; }
.prose-block:first-child h2 { margin-top: 0; }
.prose .bullets { margin-bottom: 1.4em; }
.pullout { margin-top: 2em; }
.small { font-size: .9rem; }

.bullets { margin: 0 0 1.2em; padding-left: 1.2em; }
.bullets li { margin-bottom: .5em; }
.checks { list-style: none; margin: 0 0 1.4em; padding: 0; }
.checks li { position: relative; padding-left: 30px; margin-bottom: .6em; }
.checks li::before {
  content: ""; position: absolute; left: 4px; top: .62em; width: 9px; height: 9px;
  background: var(--gold); transform: rotate(45deg);
}

.area-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 26px; }
.area-card {
  background: #fff; border: 1px solid var(--line); border-top: 4px solid var(--gold);
  border-radius: var(--radius); padding: 30px 26px 26px; box-shadow: var(--shadow);
  display: flex; flex-direction: column;
}
.area-card p { flex: 1; font-size: .96rem; }
.area-card-icon { display: block; margin-bottom: 12px; }
.area-card-icon-img { width: 34px; height: auto; display: block; }
.area-card h3 { font-size: 1.28rem; }

.why-intro { max-width: 820px; margin-bottom: 44px; }
.why-represent-label { font-weight: 700; color: var(--ink); margin-bottom: .8em; }
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }
.why-block { background: #fff; border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow); }
.why-block h3 { color: var(--gold); font-size: 1.1rem; letter-spacing: .04em; text-transform: uppercase; }

.bio-layout { display: grid; grid-template-columns: 1fr 320px; gap: 46px; align-items: start; }
.bio-layout .prose { order: 1; }
.bio-card {
  order: 2; background: var(--bg-alt); border: 1px solid var(--line);
  border-top: 4px solid var(--gold); border-radius: var(--radius); padding: 28px;
  position: sticky; top: 108px;
}
.bio-card h2 { font-size: .82rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); margin-bottom: .9em; }
.bio-card h2 + * { margin-top: 0; }
.bio-card ul { font-size: .95rem; }
.bio-card .btn { margin-top: 14px; }
.bio-crest { display: block; margin-bottom: 16px; }
.bio-crest img { width: 26px; height: auto; }
.bio-photo { width: 260px; height: auto; border-radius: var(--radius); box-shadow: var(--shadow); float: right; margin: 0 0 20px 28px; }
.bio-contact { list-style: none; padding: 0; margin: 0 0 1.6em; }
.bio-contact li { margin-bottom: .4em; }

/* -------------------------------------------------------------- Q&A */

.qa-list { border-top: 1px solid var(--line); }
.qa-item { border-bottom: 1px solid var(--line); }
.qa-item summary {
  cursor: pointer; list-style: none; padding: 22px 34px 22px 0; position: relative;
  font-family: var(--serif); font-size: 1.12rem; color: var(--ink); display: flex; gap: 14px; align-items: flex-start;
}
.qa-item summary::-webkit-details-marker { display: none; }
.qa-item summary::after {
  content: "+"; position: absolute; right: 4px; top: 20px; font-size: 1.5rem;
  color: var(--gold); font-family: var(--sans); line-height: 1;
}
.qa-item[open] summary::after { content: "–"; }
.qa-mark {
  flex: none; width: 26px; height: 26px; border-radius: 50%; background: var(--gold);
  color: #fff; font-family: var(--sans); font-size: .8rem; font-weight: 700;
  display: inline-flex; align-items: center; justify-content: center; margin-top: 3px;
}
.qa-answer { padding: 0 34px 22px 40px; }

/* ------------------------------------------------------------- blog */

.blog-note { font-size: .92rem; color: #6c7a89; margin-bottom: 32px; }
.post-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 26px; }
.post-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow); display: flex; flex-direction: column; }
.post-card time { font-size: .74rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); font-weight: 700; }
.post-card h3 { margin: .5em 0 .2em; font-size: 1.15rem; }
.post-card h3 a { color: var(--ink); }
.post-card h3 a:hover { color: var(--gold); }
.post-cat { font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: #8b97a4; margin-bottom: .9em; }
.post-card p { font-size: .94rem; }
.post-card > p:nth-of-type(2) { flex: 1; }

/* ---------------------------------------------------------- contact */

.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 26px; }
.contact-card { background: var(--bg-alt); border-left: 4px solid var(--gold); border-radius: var(--radius); padding: 28px; }
.contact-card h2 { font-size: .82rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); }

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

.cta-band { background: var(--navy); color: #fff; padding: 52px 0; }
.cta-band-inner { display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap; }
.cta-band h2 { color: #fff; margin-bottom: .2em; }
.cta-band p { color: #c2cbd6; margin: 0; }
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ------------------------------------------------------------- form */

/* scroll-margin keeps the sticky header from covering the section heading
   when someone follows a /contact#consultation link. */
.consult { background: var(--bg-alt); padding: clamp(52px, 8vw, 88px) 0; border-top: 1px solid var(--line); scroll-margin-top: 92px; }
.consult-inner { display: grid; grid-template-columns: 1fr 480px; gap: 50px; align-items: start; }
.consult-copy h2 { margin-top: 0; }
.consult-points { list-style: none; padding: 0; margin: 1.6em 0 0; }
.consult-points li { position: relative; padding-left: 28px; margin-bottom: .55em; }
.consult-points li::before { content: ""; position: absolute; left: 2px; top: .6em; width: 9px; height: 9px; background: var(--gold); transform: rotate(45deg); }

.consult-form { background: #fff; border-radius: var(--radius); border-top: 4px solid var(--gold); padding: 32px; box-shadow: var(--shadow); }
.field { margin-bottom: 18px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field label { display: block; font-size: .76rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 700; color: var(--ink); margin-bottom: 7px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 14px; border: 1px solid var(--line); border-radius: var(--radius);
  font: inherit; font-size: .96rem; color: var(--ink); background: #fff;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--gold); outline: none; box-shadow: 0 0 0 3px rgba(174,128,44,.16); }
.field textarea { resize: vertical; min-height: 108px; }
.form-status { margin: 14px 0 0; font-size: .92rem; min-height: 1.2em; }
.form-status.ok { color: #1c6b3f; font-weight: 600; }
.form-status.err { color: #a32020; font-weight: 600; }
.form-note { margin: 12px 0 0; font-size: .8rem; color: #8b97a4; }

/* ----------------------------------------------------------- footer */

.site-footer { background: var(--navy); color: #b9c3ce; padding: 60px 0 0; font-size: .92rem; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.3fr; gap: 36px; padding-bottom: 44px; }
.site-footer h3 { color: #fff; font-size: .8rem; letter-spacing: .16em; text-transform: uppercase; margin-bottom: 1.1em; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: .55em; }
.site-footer a { color: #b9c3ce; }
.site-footer a:hover { color: var(--gold-bright); }
.footer-logo { width: 64px; height: auto; display: block; }
.footer-name { font-family: var(--serif); color: #fff; font-size: 1.1rem; margin: 12px 0 2px; }
.footer-tag { letter-spacing: .22em; text-transform: uppercase; font-size: .72rem; color: var(--gold-soft); }
.footer-social { display: flex; gap: 16px; margin-top: 16px; font-size: .82rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding-top: 22px; padding-bottom: 26px; font-size: .82rem; }
.footer-bottom p { margin: 0 0 .4em; }
.demo-note { color: #7e8d9d; }

/* ------------------------------------------------------ chat widget */

.chat-widget {
  position: fixed; right: 20px; bottom: 20px; z-index: 60; font-size: 15px;
  /* The bubble comes first in the DOM so it stays the first tab stop, but it
     belongs below the panel visually — hence column-reverse. */
  display: flex; flex-direction: column-reverse; align-items: flex-end;
}

.chat-bubble {
  width: 60px; height: 60px; border-radius: 50%; border: 0; cursor: pointer;
  background: var(--gold); color: #fff; box-shadow: var(--shadow-lg);
  display: flex; align-items: center; justify-content: center; margin-left: auto;
  transition: background .15s, transform .15s;
}
.chat-bubble:hover { background: var(--gold-bright); transform: translateY(-2px); }
.chat-bubble svg { width: 28px; height: 28px; fill: #fff; }
.chat-bubble .icon-close { display: none; }
.chat-bubble[aria-expanded="true"] .icon-chat { display: none; }
.chat-bubble[aria-expanded="true"] .icon-close { display: block; }

.chat-panel {
  width: min(374px, calc(100vw - 32px)); height: min(540px, calc(100vh - 130px));
  background: #fff; border-radius: 12px; box-shadow: var(--shadow-lg);
  display: flex; flex-direction: column; overflow: hidden; margin-bottom: 14px;
  border: 1px solid rgba(12,35,64,.14);
}
.chat-panel[hidden] { display: none; }

.chat-head { background: var(--navy); color: #fff; padding: 14px 16px; display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.chat-head-title { display: flex; align-items: center; gap: 11px; }
.chat-head strong { display: block; font-size: .95rem; font-family: var(--serif); letter-spacing: .02em; }
.chat-head small { display: block; font-size: .74rem; color: #a9b8c8; }
.chat-avatar { width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center; flex: none; }
.chat-avatar .fleur { width: 16px; height: 22px; }
.chat-close { background: none; border: 0; color: #fff; font-size: 1.7rem; line-height: 1; cursor: pointer; padding: 0 4px; opacity: .8; }
.chat-close:hover { opacity: 1; }

.chat-log { flex: 1; overflow-y: auto; padding: 16px; background: var(--bg-alt); display: flex; flex-direction: column; gap: 10px; }
.msg { max-width: 84%; padding: 10px 14px; border-radius: 14px; line-height: 1.55; font-size: .93rem; white-space: pre-wrap; word-wrap: break-word; }
.msg.bot { background: #fff; color: var(--ink); border: 1px solid var(--line); border-bottom-left-radius: 4px; align-self: flex-start; }
.msg.user { background: var(--navy); color: #fff; border-bottom-right-radius: 4px; align-self: flex-end; }
.msg.notice { background: #fdf3e0; border: 1px solid #e6cf9f; color: #6a4c12; align-self: stretch; max-width: 100%; font-size: .89rem; }
.msg.notice a { color: #8a5f10; text-decoration: underline; font-weight: 600; }
.msg a { color: inherit; }
.msg.bot a { color: var(--gold); }

.chat-quick-replies { display: flex; flex-wrap: wrap; gap: 8px; align-self: stretch; }
.chat-quick-reply {
  border: 1px solid var(--gold); background: #fff; color: var(--gold);
  font-weight: 700; font-size: .82rem; padding: 8px 14px; border-radius: 999px;
  cursor: pointer; transition: background .15s, color .15s;
}
.chat-quick-reply:hover, .chat-quick-reply:focus-visible { background: var(--gold); color: #fff; }

.typing { display: inline-flex; gap: 4px; align-items: center; }
.typing span { width: 6px; height: 6px; border-radius: 50%; background: #9aa6b3; animation: blink 1.2s infinite; }
.typing span:nth-child(2) { animation-delay: .2s; }
.typing span:nth-child(3) { animation-delay: .4s; }
@keyframes blink { 0%, 60%, 100% { opacity: .25; } 30% { opacity: 1; } }

.chat-form { display: flex; gap: 8px; padding: 10px 12px; border-top: 1px solid var(--line); background: #fff; align-items: flex-end; }
.chat-form textarea {
  flex: 1; resize: none; border: 1px solid var(--line); border-radius: 18px;
  padding: 9px 14px; font: inherit; font-size: .93rem; max-height: 110px; line-height: 1.45; color: var(--ink);
}
.chat-form textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(174,128,44,.16); }
.chat-send { flex: none; width: 38px; height: 38px; border-radius: 50%; border: 0; background: var(--gold); cursor: pointer; display: flex; align-items: center; justify-content: center; }
.chat-send:hover:not(:disabled) { background: var(--gold-bright); }
.chat-send:disabled { opacity: .45; cursor: not-allowed; }
.chat-send svg { width: 17px; height: 17px; fill: #fff; }
.chat-disclaimer { margin: 0; padding: 7px 14px 10px; font-size: .72rem; color: #8b97a4; background: #fff; text-align: center; }

/* ------------------------------------------------------ responsive */

@media (max-width: 1020px) {
  .consult-inner { grid-template-columns: 1fr; gap: 34px; }
  .bio-layout { grid-template-columns: 1fr; gap: 34px; }
  .bio-card { position: static; order: 1; }
  .bio-layout .prose { order: 2; }
  .bio-photo { float: none; width: 100%; max-width: 280px; margin: 0 auto 24px; display: block; }
  .hero-inner { flex-direction: column-reverse; align-items: center; text-align: center; gap: 24px; }
  .hero-copy { max-width: 100%; }
  .hero-lede { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-photo { width: 180px; align-self: center; border-radius: var(--radius); border-bottom: 1px solid rgba(255,255,255,.15); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .nav-toggle { display: flex; }
  .primary-nav {
    position: absolute; top: 100%; left: 0; right: 0; background: var(--navy-2);
    max-height: calc(100vh - 120px); overflow-y: auto; display: none;
    border-top: 3px solid var(--gold); box-shadow: var(--shadow-lg);
  }
  .primary-nav.open { display: block; }
  .primary-nav ul { flex-direction: column; align-items: stretch; gap: 0; padding: 8px 0; }
  .nav-item { border-bottom: 1px solid rgba(255,255,255,.07); }
  .nav-item > a { padding: 14px 22px; }
  .nav-item.has-children > a::after { display: none; }
  .submenu-toggle {
    display: block; position: absolute; right: 8px; top: 4px; width: 44px; height: 44px;
    background: none; border: 0; cursor: pointer;
  }
  .submenu-toggle span::before {
    content: "▾"; color: var(--gold-soft); font-size: .9rem; display: block; transition: transform .2s;
  }
  .submenu-toggle[aria-expanded="true"] span::before { transform: rotate(180deg); }
  .submenu {
    position: static; min-width: 0; box-shadow: none; border-top: 0; background: rgba(0,0,0,.22);
    border-radius: 0; padding: 0 !important;
  }
  .nav-item.has-children:hover > .submenu, .nav-item.has-children:focus-within > .submenu { display: none !important; }
  .nav-item.has-children.open > .submenu { display: flex !important; }
  .submenu a { color: #d7dee6; padding: 12px 34px; }
  .submenu a:hover { background: rgba(255,255,255,.06); color: var(--gold-soft); }
  .nav-cta { margin: 10px 22px 6px; border-bottom: 0; }
  .header-inner { position: relative; }
}

@media (max-width: 620px) {
  body { font-size: 16px; }
  .topbar-inner { justify-content: center; gap: 8px; padding-top: 6px; padding-bottom: 6px; }
  .stats-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .hero-actions .btn, .cta-actions .btn { flex: 1 1 100%; }
  .consult-form { padding: 24px 20px; }
  .chat-widget { right: 14px; bottom: 14px; }
  .chat-panel { height: min(500px, calc(100vh - 110px)); }
  .qa-answer { padding-left: 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
