
:root {
  color-scheme: light;
  --page: #f6f8fb;
  --page-soft: #edf3f8;
  --surface: #ffffff;
  --surface-raised: #ffffff;
  --text: #1b2a3a;
  --heading: #071d3c;
  --muted: #607183;
  --line: #d9e3ed;
  --line-strong: #c5d3e0;
  --header: rgba(255,255,255,.96);
  --nav: #40556b;
  --stage: #eef4f8;
  --stage-2: #e4edf5;
  --blue: #0d62c8;
  --blue-2: #124d9c;
  --cyan: #0cc8ef;
  --cyan-soft: #dff7fc;
  --accent-text: #0a8fb2;
  --shadow: 0 24px 70px rgba(18,48,83,.12);
  --shadow-soft: 0 12px 34px rgba(18,48,83,.07);
  --radius: 24px;
  --max: 1180px;
}

html[data-theme="dark"] {
  color-scheme: dark;
  --page: #475c6e;
  --page-soft: #536a7d;
  --surface: #5d7386;
  --surface-raised: #678094;
  --text: #f1f5f8;
  --heading: #ffffff;
  --muted: #d4dde5;
  --line: #6b8193;
  --line-strong: #7d92a4;
  --header: rgba(92,111,127,.96);
  --nav: #ffffff;
  --stage: #7a91a5;
  --stage-2: #6f879b;
  --blue: #78bdff;
  --blue-2: #2f7ec8;
  --cyan: #63e4f8;
  --cyan-soft: #416675;
  --accent-text: #9af2ff;
  --shadow: 0 24px 70px rgba(10,22,34,.23);
  --shadow-soft: 0 12px 34px rgba(10,22,34,.17);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin:0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color:var(--text);
  background:var(--page);
  transition:background .22s ease,color .22s ease;
}
a { color:inherit; text-decoration:none; }
img { display:block; max-width:100%; }
button { font:inherit; }
.container { width:min(var(--max), calc(100% - 40px)); margin:0 auto; }
.narrow { max-width:900px; }

.site-header {
  position:sticky; top:0; z-index:100;
  background:var(--header); backdrop-filter:blur(18px);
  border-bottom:1px solid var(--line);
}
.nav { height:92px; display:flex; align-items:center; gap:26px; }
.brand { margin-right:auto; }
.brand-logo { width:300px; max-height:62px; object-fit:contain; object-position:left center; }
.nav-links { display:flex; align-items:center; gap:28px; color:var(--nav); font-size:14px; font-weight:700; }
.nav-links a:hover, .nav-links a.active { color:var(--blue); }
.nav-cta {
  padding:12px 17px; border-radius:999px;
  background:linear-gradient(135deg,var(--blue-2),var(--cyan));
  color:white !important; box-shadow:0 9px 24px rgba(13,98,200,.18);
}
.nav-actions { display:flex; align-items:center; gap:9px; }
.theme-toggle, .menu-btn {
  width:42px; height:42px; border-radius:999px; border:1px solid var(--line);
  background:var(--surface); color:var(--heading); cursor:pointer;
}
.menu-btn { display:none; font-size:21px; }

.hero {
  position:relative; overflow:hidden;
  background:
    radial-gradient(circle at 86% 15%, color-mix(in srgb, var(--cyan) 9%, transparent), transparent 25%),
    linear-gradient(180deg,var(--surface),var(--page));
  padding:105px 0 90px;
}
.hero:after {
  content:""; position:absolute; width:560px; height:560px; border-radius:50%;
  right:-220px; top:-100px; border:1px solid color-mix(in srgb,var(--blue) 16%,transparent);
  box-shadow:0 0 0 95px color-mix(in srgb,var(--blue) 3%,transparent),
             0 0 0 190px color-mix(in srgb,var(--blue) 2%,transparent);
}
.hero-grid { display:grid; grid-template-columns:1.08fr .92fr; gap:64px; align-items:center; position:relative; z-index:1; }
.eyebrow {
  color:var(--blue); text-transform:uppercase; letter-spacing:.16em;
  font-size:12px; font-weight:900; display:flex; align-items:center; gap:10px;
}
.eyebrow:before { content:""; width:28px; height:2px; background:linear-gradient(90deg,var(--blue),var(--cyan)); }
h1,h2,h3 { color:var(--heading); }
h1 { font-size:clamp(50px,6.4vw,82px); letter-spacing:-.052em; line-height:.98; margin:18px 0 24px; }
.hero h1 span { color:var(--accent-text); }
.hero-copy, .lead { color:var(--muted); font-size:19px; line-height:1.75; }
.hero-actions { display:flex; gap:13px; flex-wrap:wrap; margin-top:32px; }

.btn {
  display:inline-flex; align-items:center; justify-content:center; min-height:46px;
  padding:12px 19px; border-radius:999px; font-weight:800; border:1px solid transparent;
}
.btn-primary { color:#fff; background:linear-gradient(135deg,var(--blue-2),var(--cyan)); box-shadow:0 10px 28px rgba(13,98,200,.18); }
.btn-secondary { color:var(--heading); background:var(--surface); border-color:var(--line-strong); }
.btn.full { width:100%; margin-top:22px; }

.brand-stage {
  min-height:450px; position:relative; overflow:hidden; border:1px solid var(--line);
  border-radius:32px; background:linear-gradient(145deg,var(--stage),var(--stage-2));
  box-shadow:var(--shadow); padding:36px;
  display:flex; flex-direction:column; justify-content:flex-end;
}
.stage-glow {
  position:absolute; width:270px; height:270px; border-radius:50%; left:50%; top:48%;
  transform:translate(-50%,-50%); background:color-mix(in srgb,var(--cyan) 14%,transparent);
  filter:blur(18px);
}
.od-stage { width:78%; max-height:260px; object-fit:contain; margin:auto; position:relative; z-index:1; }
.stage-rule { height:2px; background:linear-gradient(90deg,var(--blue),var(--cyan),var(--blue)); opacity:.85; }
.stage-meta { display:flex; justify-content:space-between; gap:18px; margin-top:17px; text-transform:uppercase; font-size:11px; letter-spacing:.12em; color:var(--muted); }
.stage-meta strong { color:var(--heading); }

.proof-strip { background:var(--surface); border-block:1px solid var(--line); }
.proof-grid { display:grid; grid-template-columns:repeat(3,1fr); }
.proof-grid > div { padding:27px 30px; border-right:1px solid var(--line); }
.proof-grid > div:last-child { border-right:0; }
.proof-grid strong { display:block; color:var(--heading); margin-bottom:6px; font-size:14px; }
.proof-grid span { color:var(--muted); font-size:13px; line-height:1.55; }

.section { padding:92px 0; }
.section.soft { background:var(--surface); }
.section-head { display:flex; justify-content:space-between; gap:48px; align-items:end; margin-bottom:42px; }
.section-head.compact { display:block; }
.section-head h2, .split h2, .about-grid h2, .contact-copy h2 {
  font-size:clamp(35px,4.5vw,54px); letter-spacing:-.04em; line-height:1.04; margin:10px 0 0;
}
.section-head > p { max-width:520px; color:var(--muted); line-height:1.72; }

.cards.three { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.card, .problem, .plain-card, .service-detail-grid > div, .principles > div, .contact-card {
  background:var(--surface-raised); border:1px solid var(--line); box-shadow:var(--shadow-soft);
}
.card { padding:30px; border-radius:var(--radius); }
.card-kicker, .plain-number { color:var(--blue); font-weight:900; font-size:12px; letter-spacing:.14em; text-transform:uppercase; }
.card h3 { font-size:24px; line-height:1.17; margin:18px 0 12px; }
.card p { color:var(--muted); line-height:1.7; }
.card a { color:var(--blue); font-weight:800; font-size:14px; display:inline-block; margin-top:12px; }

.split { display:grid; grid-template-columns:.9fr 1.1fr; gap:54px; align-items:center; }
.split.reverse { grid-template-columns:1.1fr .9fr; }
.visual-panel {
  min-height:430px; border:1px solid var(--line); border-radius:30px;
  background:
    radial-gradient(circle at 50% 48%, color-mix(in srgb,var(--cyan) 14%,transparent), transparent 28%),
    linear-gradient(145deg,var(--stage),var(--stage-2));
  display:grid; place-items:center; box-shadow:var(--shadow);
}
.visual-panel img { width:70%; max-height:300px; object-fit:contain; }

.steps { margin-top:28px; display:grid; gap:16px; }
.step { display:grid; grid-template-columns:42px 1fr; gap:14px; }
.step > span {
  width:36px; height:36px; border-radius:50%; display:grid; place-items:center;
  color:var(--blue); background:var(--cyan-soft); border:1px solid var(--line-strong); font-weight:900;
}
.step strong { color:var(--heading); }
.step p { color:var(--muted); margin:4px 0 0; line-height:1.58; font-size:14px; }

.problem-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:18px; }
.problem { padding:25px; border-radius:20px; transition:.2s ease; }
.problem:hover { transform:translateY(-3px); border-color:color-mix(in srgb,var(--blue) 40%,var(--line)); }
.problem strong { display:block; color:var(--heading); font-size:18px; margin-bottom:8px; }
.problem span { color:var(--muted); line-height:1.6; font-size:14px; }

.cta-band {
  padding:72px 0;
  background:
    radial-gradient(circle at 84% 35%, color-mix(in srgb,var(--cyan) 12%,transparent), transparent 25%),
    linear-gradient(135deg,var(--stage),var(--stage-2));
  border-block:1px solid var(--line);
}
.cta-inner { display:flex; justify-content:space-between; gap:40px; align-items:center; }
.cta-inner h2 { font-size:clamp(34px,4vw,48px); margin:9px 0 12px; letter-spacing:-.04em; max-width:790px; }
.cta-inner p { color:var(--muted); margin:0; max-width:760px; line-height:1.65; }

.page-hero {
  padding:84px 0 64px;
  background:linear-gradient(180deg,var(--surface),var(--page-soft));
  border-bottom:1px solid var(--line);
}
.page-hero h1 { font-size:clamp(48px,6vw,72px); }
.page-hero p { font-size:19px; color:var(--muted); line-height:1.75; max-width:820px; }

.plain-grid { display:grid; gap:22px; }
.plain-card { border-radius:26px; padding:38px; }
.plain-card h2 { font-size:clamp(29px,3.5vw,42px); letter-spacing:-.035em; line-height:1.08; margin:12px 0 15px; }
.plain-card > p { color:var(--muted); line-height:1.76; font-size:17px; }
.help-box { margin-top:24px; padding:22px 24px; border-radius:18px; background:var(--page-soft); border:1px solid var(--line); }
.help-box strong { color:var(--heading); }
.help-box ul { color:var(--muted); line-height:1.8; margin-bottom:0; }

.service-detail-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:17px; }
.service-detail-grid > div { padding:25px; border-radius:18px; }
.service-detail-grid strong { display:block; color:var(--heading); margin-bottom:7px; }
.service-detail-grid span { color:var(--muted); line-height:1.58; font-size:14px; }

.about-grid { display:grid; grid-template-columns:1.05fr .95fr; gap:55px; align-items:start; }
.about-grid p { color:var(--muted); line-height:1.78; }
.principles { display:grid; gap:14px; }
.principles > div { padding:23px; border-radius:18px; }
.principles strong { display:block; color:var(--heading); margin-bottom:7px; }
.principles span { color:var(--muted); font-size:14px; line-height:1.6; }
.muted { color:var(--muted); }

.contact-layout { display:grid; grid-template-columns:.9fr 1.1fr; gap:54px; align-items:start; }
.contact-copy p { line-height:1.72; }
.contact-card { padding:32px; border-radius:24px; }
.contact-line { padding:18px 0; border-bottom:1px solid var(--line); }
.contact-line:last-of-type { border-bottom:0; }
.contact-line > span { display:block; color:var(--blue); text-transform:uppercase; letter-spacing:.14em; font-size:11px; font-weight:900; margin-bottom:7px; }
.contact-line a, .contact-line strong { color:var(--heading); font-size:18px; }

.site-footer {
  background:#102033; color:#c0ccd7; padding:44px 0;
  border-top:1px solid #33485e;
}
.footer-grid { display:grid; grid-template-columns:1.2fr .8fr .7fr; gap:36px; align-items:end; }
.footer-logo { width:250px; max-height:68px; object-fit:contain; object-position:left center; }
.footer-tagline { font-size:11px; text-transform:uppercase; letter-spacing:.13em; color:#90a5b7; margin:14px 0 0; }
.footer-contact { display:flex; flex-direction:column; gap:7px; font-size:13px; }
.footer-meta { display:flex; flex-direction:column; gap:5px; font-size:12px; color:#8ea1b2; text-align:right; }

@media (max-width: 920px) {
  .nav-links {
    display:none; position:absolute; top:92px; left:20px; right:20px; padding:14px;
    background:var(--surface); border:1px solid var(--line); border-radius:18px; box-shadow:var(--shadow);
    flex-direction:column; align-items:stretch; gap:0;
  }
  .nav-links.open { display:flex; }
  .nav-links a { padding:13px 12px; }
  .nav-cta { margin-top:6px; text-align:center; }
  .menu-btn { display:inline-grid; place-items:center; }
  .hero-grid, .split, .split.reverse, .about-grid, .contact-layout { grid-template-columns:1fr; }
  .hero { padding-top:76px; }
  .brand-stage { min-height:390px; }
  .cards.three { grid-template-columns:1fr; }
  .proof-grid { grid-template-columns:1fr; }
  .proof-grid > div { border-right:0; border-bottom:1px solid var(--line); }
  .proof-grid > div:last-child { border-bottom:0; }
  .section-head { display:block; }
  .section-head > p { margin-top:16px; }
  .problem-grid, .service-detail-grid { grid-template-columns:1fr; }
  .cta-inner { display:block; }
  .cta-inner .btn { margin-top:22px; }
  .footer-grid { grid-template-columns:1fr; align-items:start; }
  .footer-meta { text-align:left; }
}
@media (max-width: 600px) {
  .container { width:min(var(--max), calc(100% - 28px)); }
  .brand-logo { width:220px; }
  .hero h1 { font-size:46px; }
  .section { padding:68px 0; }
  .plain-card { padding:26px; }
  .stage-meta { flex-direction:column; }
}
@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior:auto !important; transition:none !important; }
}


/* ================================================================
   Locked brand treatment: full primary Omnium Dynamics lockup
   ================================================================ */
.nav {
  min-height: 122px;
  height: auto;
  padding-block: 12px;
}
.brand-full {
  min-width: 390px;
  max-width: 470px;
}
.full-brand-logo {
  width: 100%;
  max-height: 94px;
  object-fit: contain;
  object-position: left center;
}
html[data-theme="dark"] .site-header {
  background: rgba(92,111,127,.96);
}
html[data-theme="dark"] .hero {
  background:
    radial-gradient(circle at 86% 15%, color-mix(in srgb, var(--cyan) 12%, transparent), transparent 25%),
    linear-gradient(180deg, #61798c, #495f71);
}
html[data-theme="dark"] .brand-stage,
html[data-theme="dark"] .visual-panel {
  background:
    radial-gradient(circle at 50% 48%, color-mix(in srgb,var(--cyan) 17%,transparent), transparent 29%),
    linear-gradient(145deg, #8ea4b5, #748b9f);
  border-color: rgba(213,226,235,.28);
}
html[data-theme="dark"] .footer-brand-plate {
  background: #8197a8;
  border-color: #a1b2bf;
}
/* Light slate "brand plate" prevents metallic navy from disappearing. */
html[data-theme="dark"] .brand-full {
  padding: 8px 14px;
  border-radius: 16px;
  background: rgba(217,228,236,.35);
  border: 1px solid rgba(222,232,239,.46);
  box-shadow: 0 8px 18px rgba(21,37,51,.12);
}

.footer-brand-plate {
  width: min(430px, 100%);
  padding: 14px 17px;
  border-radius: 16px;
  background: #71879a;
  border: 1px solid #879aab;
}
.footer-full-logo {
  width: 100%;
  max-height: 98px;
  object-fit: contain;
  object-position: left center;
}

/* ================================================================
   Meet the Owners
   ================================================================ */
.owner-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.owner-card {
  overflow: hidden;
  background: var(--surface-raised);
  border: 1px solid var(--line);
  border-radius: 26px;
  box-shadow: var(--shadow-soft);
}
.owner-photo-placeholder {
  min-height: 310px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 9px;
  background:
    radial-gradient(circle at 50% 44%, color-mix(in srgb,var(--cyan) 15%,transparent), transparent 29%),
    linear-gradient(145deg,var(--stage),var(--stage-2));
}
.owner-photo-placeholder > span {
  width: 116px;
  height: 116px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 32px;
  font-weight: 900;
  letter-spacing: .05em;
  color: var(--heading);
  background: color-mix(in srgb,var(--surface) 67%,transparent);
  border: 2px solid color-mix(in srgb,var(--cyan) 55%,var(--line));
}
.owner-photo-placeholder small {
  color: var(--muted);
  font-size: 10px;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.owner-card-copy { padding: 31px; }
.owner-role {
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: .13em;
  font-size: 11px;
  font-weight: 900;
}
.owner-card h2 {
  margin: 9px 0 13px;
  font-size: 36px;
  letter-spacing: -.035em;
}
.owner-card p {
  color: var(--muted);
  line-height: 1.73;
}
.credential-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}
.credential-chips span {
  padding: 8px 11px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--page-soft);
  color: var(--heading);
  font-size: 12px;
  font-weight: 750;
}
.text-link {
  display: inline-block;
  margin-top: 18px;
  color: var(--blue);
  font-weight: 850;
}
.owner-profile {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 58px;
  align-items: start;
}
.owner-profile-heading h2 {
  margin: 10px 0 0;
  font-size: clamp(34px,4vw,50px);
  letter-spacing: -.04em;
  line-height: 1.04;
}
.owner-profile-copy p {
  margin-top: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}
.owner-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.owner-mini {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: var(--surface-raised);
  box-shadow: var(--shadow-soft);
}
.owner-mini-avatar {
  width: 64px;
  height: 64px;
  flex: 0 0 64px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--heading);
  background: var(--stage);
  border: 1px solid var(--line-strong);
  font-weight: 900;
}
.owner-mini strong {
  display: block;
  color: var(--heading);
  font-size: 18px;
}
.owner-mini span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
}
.owners-link { margin-top: 22px; }

@media (max-width: 1180px) {
  .brand-full { min-width: 330px; max-width: 380px; }
  .nav-links { gap: 16px; font-size: 12.5px; }
}
@media (max-width: 920px) {
  .nav { min-height: 100px; }
  .brand-full { min-width: 0; max-width: 330px; }
  .full-brand-logo { max-height: 76px; }
  .nav-links { top: 100px; }
  .owner-cards,
  .owner-mini-grid,
  .owner-profile { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .brand-full { max-width: 255px; }
  .full-brand-logo { max-height: 66px; }
}


.owner-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 18%;
  background: var(--page-soft);
}
.owner-mini-photo {
  object-fit: cover;
  object-position: center 15%;
  border: 2px solid var(--line-strong);
  background: var(--surface);
}
.owner-card-copy .text-link { margin-bottom: 2px; }
@media (max-width: 920px) {
  .owner-photo { max-height: 520px; }
}


/* ================================================================
   v3.2 — Full-width brand masthead + navigation beneath
   ================================================================ */

/* Header becomes a two-tier masthead:
   1) large full logo spanning the content width
   2) navigation immediately beneath it */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--header);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

.masthead-shell {
  width: 100%;
}

.brand-masthead {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 16px 0 12px;
}

.brand-masthead .brand-full {
  width: 100%;
  max-width: 1120px;
  min-width: 0;
  display: flex;
  justify-content: center;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.brand-masthead .full-brand-logo {
  width: 100%;
  max-width: 1120px;
  height: 142px;
  max-height: none;
  object-fit: contain;
  object-position: center;
}

.nav-band {
  border-top: 1px solid var(--line);
  background: color-mix(in srgb, var(--header) 92%, transparent);
}

.nav-band .nav {
  min-height: 64px;
  height: auto;
  padding: 8px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.nav-band .nav-links {
  flex: 1 1 auto;
  justify-content: center;
  gap: 30px;
}

.nav-band .nav-actions {
  flex: 0 0 auto;
}

/* Dark-mode masthead gives the locked metallic logo plenty of contrast
   without boxing it into a small badge. */
html[data-theme="dark"] .site-header {
  background: #73899b;
}

html[data-theme="dark"] .brand-masthead {
  background:
    linear-gradient(180deg, #8fa3b3 0%, #8197a8 100%);
}

html[data-theme="dark"] .brand-masthead .brand-full {
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
}

html[data-theme="dark"] .nav-band {
  background: #63798c;
  border-top-color: rgba(232, 239, 244, .28);
}

/* Footer mirrors the masthead: wide logo first, details below. */
.site-footer {
  background: #102033;
  color: #c0ccd7;
  padding: 0;
  border-top: 1px solid #33485e;
}

.footer-masthead {
  padding: 26px 0 22px;
  display: flex;
  justify-content: center;
}

.footer-brand-plate {
  width: 100%;
  max-width: 1120px;
  padding: 18px 24px;
  border-radius: 20px;
  background: #8197a8;
  border: 1px solid #a1b2bf;
}

.footer-full-logo {
  width: 100%;
  height: 150px;
  max-height: none;
  object-fit: contain;
  object-position: center;
}

.footer-info-band {
  border-top: 1px solid rgba(185, 203, 217, .18);
  background: #0c1a2a;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 36px;
  align-items: start;
  padding: 26px 0 30px;
}

.footer-contact,
.footer-service-area,
.footer-meta {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 13px;
}

.footer-contact strong,
.footer-service-area strong {
  color: #e6eef5;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 2px;
}

.footer-service-area {
  text-align: center;
}

.footer-meta {
  text-align: right;
  color: #8ea1b2;
}

/* Override the previous dark footer plate so it stays consistent. */
html[data-theme="dark"] .footer-brand-plate {
  background: #8197a8;
  border-color: #a1b2bf;
}

@media (max-width: 1100px) {
  .brand-masthead .full-brand-logo {
    height: 125px;
  }
  .footer-full-logo {
    height: 132px;
  }
  .nav-band .nav-links {
    gap: 20px;
    font-size: 13px;
  }
}

@media (max-width: 920px) {
  .site-header {
    position: sticky;
  }

  .brand-masthead {
    padding: 10px 0 8px;
  }

  .brand-masthead .full-brand-logo {
    height: 102px;
  }

  .nav-band .nav {
    min-height: 58px;
    justify-content: flex-end;
    position: relative;
  }

  .nav-band .nav-links {
    display: none;
    position: absolute;
    top: 58px;
    left: 0;
    right: 0;
    padding: 14px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .nav-band .nav-links.open {
    display: flex;
  }

  .nav-band .nav-links a {
    padding: 13px 12px;
  }

  .nav-band .nav-cta {
    margin-top: 6px;
    text-align: center;
  }

  .nav-band .nav-actions {
    margin-left: auto;
  }

  .footer-full-logo {
    height: 116px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-contact,
  .footer-service-area,
  .footer-meta {
    text-align: center;
    align-items: center;
  }
}

@media (max-width: 600px) {
  .container {
    width: min(var(--max), calc(100% - 24px));
  }

  .brand-masthead .full-brand-logo {
    height: 82px;
  }

  .footer-masthead {
    padding: 18px 0 16px;
  }

  .footer-brand-plate {
    padding: 12px 14px;
    border-radius: 16px;
  }

  .footer-full-logo {
    height: 88px;
  }
}
