/* ==========================================================================
   Busel Commerce House W.L.L — site styles
   Single stylesheet. Tokens first, then base, layout, components, pages.
   ========================================================================== */

:root {
  --navy-900: #081426;
  --navy-800: #0b1b33;
  --navy-700: #122a4c;
  --navy-600: #1b3a66;
  --navy-100: #e6ebf3;
  --gold-500: #f2b705;
  --gold-600: #d9a304;
  --gold-700: #8a6400;
  --gold-100: #fdf3d0;
  --ink-900: #0f172a;
  --ink-700: #334155;
  --ink-500: #64748b;
  --ink-300: #cbd5e1;
  --ink-100: #f1f5f9;
  --white: #ffffff;
  --bg: #ffffff;
  --bg-alt: #f6f8fb;
  --radius: 10px;
  --radius-sm: 6px;
  --shadow: 0 10px 30px rgba(8, 20, 38, 0.10);
  --shadow-sm: 0 2px 8px rgba(8, 20, 38, 0.08);
  --container: 1200px;
  --gutter: 20px;
  --font: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --header-h: 72px;
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-700);
  background: var(--bg);
}
h1, h2, h3, h4 { color: var(--ink-900); line-height: 1.2; margin: 0 0 .5em; font-weight: 700; letter-spacing: -0.01em; }
h1 { font-size: clamp(2rem, 4.5vw, 3.25rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.25rem); }
h3 { font-size: 1.2rem; }
h4 { font-size: 1rem; }
p { margin: 0 0 1em; }
a { color: var(--navy-600); text-decoration: none; touch-action: manipulation; }
a:hover { color: var(--navy-800); }
img { max-width: 100%; height: auto; display: block; }
ul { padding-left: 1.2em; }
strong { color: var(--ink-900); }
:focus-visible { outline: 3px solid var(--gold-500); outline-offset: 2px; }
.visually-hidden { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: 72px 0; }
.section--alt { background: var(--bg-alt); }
.section--dark { background: var(--navy-800); color: #c9d3e3; }
.section--dark h2, .section--dark h3, .section--dark h4 { color: var(--white); }
.section--dark p { color: #c9d3e3; }
.section-head { max-width: 720px; margin-bottom: 40px; }
.section-head--center { text-align: center; margin-left: auto; margin-right: auto; }
.eyebrow {
  display: inline-block; font-size: .78rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--gold-700); margin-bottom: 10px;
}
.section--dark .eyebrow, .hero .eyebrow, .page-hero .eyebrow, .side-card .eyebrow { color: var(--gold-500); }
.lead { font-size: 1.1rem; color: var(--ink-500); }
.section--dark .lead { color: #aab6c9; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 22px; border-radius: var(--radius-sm); font-weight: 600; font-size: .95rem;
  border: 2px solid transparent; cursor: pointer; transition: background .2s, color .2s, border-color .2s, transform .15s;
  line-height: 1.2; white-space: nowrap; touch-action: manipulation; min-height: 44px;
}
.btn svg { width: 16px; height: 16px; flex: none; }
.btn--primary { background: var(--gold-500); color: var(--navy-900); }
.btn--primary:hover { background: var(--gold-600); color: var(--navy-900); transform: translateY(-1px); }
.btn--outline { border-color: rgba(255,255,255,.55); color: var(--white); background: transparent; }
.btn--outline:hover { border-color: var(--white); background: rgba(255,255,255,.08); color: var(--white); }
.btn--dark { background: var(--navy-800); color: var(--white); }
.btn--dark:hover { background: var(--navy-700); color: var(--white); }
.btn--ghost { border-color: var(--ink-300); color: var(--navy-800); background: var(--white); }
.btn--ghost:hover { border-color: var(--navy-800); }
.btn--sm { padding: 9px 16px; font-size: .88rem; min-height: 40px; }
.link-arrow { display: inline-flex; align-items: center; gap: 6px; font-weight: 600; color: var(--navy-800); }
.link-arrow svg { width: 15px; height: 15px; transition: transform .2s; }
.link-arrow:hover svg { transform: translateX(3px); }

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 50;
  background: var(--white); border-bottom: 1px solid var(--navy-100);
  transition: box-shadow .2s;
}
.header.is-scrolled { box-shadow: var(--shadow-sm); }
.header__inner { display: flex; align-items: center; justify-content: space-between; height: var(--header-h); gap: 24px; }
.logo { display: inline-flex; align-items: center; gap: 12px; color: var(--navy-800); }
.logo__mark { width: 44px; height: 44px; flex: none; }
.logo__text { line-height: 1.05; }
.logo__name { display: block; font-weight: 800; font-size: 1.15rem; letter-spacing: .04em; color: var(--navy-800); }
.logo__sub { display: block; font-size: .66rem; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-500); font-weight: 600; }
.nav { display: none; }
.nav__list { list-style: none; margin: 0; padding: 0; display: flex; gap: 6px; }
.nav__link { display: block; padding: 10px 14px; font-weight: 600; font-size: .95rem; color: var(--ink-700); border-radius: var(--radius-sm); position: relative; }
.nav__link:hover, .nav__link.is-active { color: var(--navy-800); }
.nav__link.is-active::after { content: ""; position: absolute; left: 14px; right: 14px; bottom: 4px; height: 2px; background: var(--gold-500); }
.header__cta { display: none; }
.burger {
  display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 44px; height: 44px; padding: 0 10px; background: none; border: 1px solid var(--navy-100); border-radius: var(--radius-sm); cursor: pointer;
}
.burger span { display: block; height: 2px; background: var(--navy-800); border-radius: 2px; transition: transform .2s, opacity .2s; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-nav {
  display: none; position: fixed; inset: var(--header-h) 0 0 0; background: var(--white); z-index: 49;
  padding: 16px var(--gutter) 40px; overflow-y: auto;
}
.mobile-nav.is-open { display: block; }
.mobile-nav ul { list-style: none; margin: 0; padding: 0; }
.mobile-nav a { display: block; padding: 14px 6px; font-weight: 600; font-size: 1.05rem; border-bottom: 1px solid var(--navy-100); color: var(--ink-900); }
.mobile-nav .mobile-nav__sub a { padding-left: 22px; font-weight: 500; font-size: .95rem; color: var(--ink-700); }
.mobile-nav .btn { margin-top: 20px; width: 100%; justify-content: center; }

/* Dropdown (desktop) */
.nav__item { position: relative; }
.nav__item--has-sub > .nav__link { padding-right: 28px; }
.nav__item--has-sub > .nav__link::before {
  content: ""; position: absolute; right: 12px; top: 50%; width: 6px; height: 6px;
  border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: translateY(-70%) rotate(45deg);
}
.sub {
  position: absolute; left: 0; top: 100%; min-width: 300px; background: var(--white); border: 1px solid var(--navy-100);
  border-radius: var(--radius); box-shadow: var(--shadow); padding: 8px; list-style: none; margin: 4px 0 0;
  opacity: 0; visibility: hidden; transform: translateY(6px); transition: opacity .15s, transform .15s, visibility .15s;
}
.nav__item--has-sub:hover .sub, .nav__item--has-sub:focus-within .sub { opacity: 1; visibility: visible; transform: translateY(0); }
.sub a { display: block; padding: 9px 12px; border-radius: var(--radius-sm); font-size: .92rem; color: var(--ink-700); font-weight: 500; }
.sub a:hover { background: var(--bg-alt); color: var(--navy-800); }
.sub a strong { display: block; color: var(--navy-800); font-weight: 600; }

@media (min-width: 960px) {
  .nav { display: block; }
  .header__cta { display: inline-flex; }
  .burger, .mobile-nav { display: none !important; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative; color: var(--white); background: var(--navy-900); overflow: hidden;
  min-height: 560px; display: flex; align-items: center;
}
.hero__bg { position: absolute; inset: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(8,20,38,.94) 0%, rgba(8,20,38,.82) 45%, rgba(8,20,38,.45) 100%);
}
.hero__inner { position: relative; padding-top: 80px; padding-bottom: 80px; display: grid; gap: 40px; align-items: center; }
.hero h1 { color: var(--white); margin-bottom: 20px; }
.hero h1 .accent { color: var(--gold-500); }
.hero__lead { font-size: 1.1rem; color: #d5dde9; max-width: 560px; margin-bottom: 28px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 36px; }
.hero__tags { display: flex; flex-wrap: wrap; gap: 8px 18px; font-size: .88rem; color: #c9d3e3; padding: 0; margin: 0; list-style: none; }
.hero__tags li { display: inline-flex; align-items: center; gap: 8px; }
.hero__tags svg { width: 16px; height: 16px; color: var(--gold-500); }
.hero__panel {
  background: rgba(11,27,51,.85); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius);
  padding: 28px; backdrop-filter: blur(4px);
}
.hero__panel h3 { color: var(--white); font-size: 1.05rem; margin-bottom: 18px; padding-bottom: 14px; border-bottom: 2px solid var(--gold-500); display: inline-block; }
.hero__facts { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.hero__facts li { display: flex; align-items: center; gap: 14px; }
.hero__facts .ico { width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(242,183,5,.6); display: grid; place-items: center; color: var(--gold-500); flex: none; }
.hero__facts .ico svg { width: 20px; height: 20px; }
.hero__facts b { display: block; color: var(--white); font-size: 1.15rem; line-height: 1.1; }
.hero__facts span { font-size: .85rem; color: #aab6c9; }
@media (min-width: 960px) {
  .hero__inner { grid-template-columns: 1.4fr 1fr; padding-top: 100px; padding-bottom: 100px; }
  .hero__panel { justify-self: end; width: 100%; max-width: 380px; }
}

/* Page hero (inner pages) */
.page-hero { position: relative; background: var(--navy-800); color: var(--white); overflow: hidden; }
.page-hero__bg { position: absolute; inset: 0; }
.page-hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero__bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(8,20,38,.95), rgba(8,20,38,.6)); }
.page-hero__inner { position: relative; padding-top: 64px; padding-bottom: 64px; max-width: 760px; }
.page-hero h1 { color: var(--white); margin-bottom: 14px; }
.page-hero p { color: #d5dde9; font-size: 1.05rem; margin: 0; }
.breadcrumb { list-style: none; margin: 0 0 18px; padding: 0; display: flex; flex-wrap: wrap; gap: 6px; font-size: .85rem; color: #aab6c9; }
.breadcrumb a { color: #d5dde9; }
.breadcrumb li + li::before { content: "/"; margin-right: 6px; color: #6d7d97; }
@media (min-width: 960px) { .page-hero__inner { padding-top: 90px; padding-bottom: 90px; } }

/* ---------- Grids & cards ---------- */
.grid { display: grid; gap: 24px; }
.grid--2 { grid-template-columns: 1fr; }
.grid--3 { grid-template-columns: 1fr; }
.grid--4 { grid-template-columns: 1fr; }
@media (min-width: 640px) { .grid--2, .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .grid--3 { grid-template-columns: repeat(3, 1fr); } .grid--4 { grid-template-columns: repeat(4, 1fr); } }

.card {
  background: var(--white); border: 1px solid var(--navy-100); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column; transition: transform .2s, box-shadow .2s;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.card__img { aspect-ratio: 16 / 10; overflow: hidden; background: var(--ink-100); }
.card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.card:hover .card__img img { transform: scale(1.04); }
.card__body { padding: 20px 22px 22px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.card__body h3 { margin: 0; font-size: 1.1rem; }
.card__body p { margin: 0; font-size: .93rem; color: var(--ink-500); flex: 1; }
.card__body .link-arrow { margin-top: 8px; font-size: .9rem; }
.card--featured .card__body h3 { color: var(--navy-800); }
.tag { display: inline-block; font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--gold-700); }

.feature { background: var(--bg-alt); border-radius: var(--radius); padding: 26px 24px; }
.feature__ico { width: 52px; height: 52px; border-radius: 50%; background: var(--gold-100); color: var(--navy-800); display: grid; place-items: center; margin-bottom: 16px; }
.feature__ico svg { width: 24px; height: 24px; }
.feature h3 { font-size: 1.05rem; margin-bottom: 8px; }
.feature p { margin: 0; font-size: .93rem; color: var(--ink-500); }
.section--alt .feature { background: var(--white); border: 1px solid var(--navy-100); }

.split { display: grid; gap: 40px; align-items: center; }
@media (min-width: 960px) { .split { grid-template-columns: 1fr 1.6fr; } .split--even { grid-template-columns: 1fr 1fr; } .split--reverse > :first-child { order: 2; } }
.split__media { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.split__media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 3; }

/* Steps */
.steps { list-style: none; margin: 0; padding: 0; display: grid; gap: 20px; counter-reset: step; }
@media (min-width: 640px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .steps { grid-template-columns: repeat(3, 1fr); } }
.steps li { position: relative; background: var(--white); border: 1px solid var(--navy-100); border-radius: var(--radius); padding: 24px 22px 22px 22px; counter-increment: step; }
.steps li::before {
  content: counter(step, decimal-leading-zero); display: inline-block; font-weight: 800; font-size: .95rem; color: var(--navy-800);
  background: var(--gold-500); border-radius: 6px; padding: 4px 10px; margin-bottom: 14px; letter-spacing: .05em;
}
.steps h3 { font-size: 1.02rem; margin-bottom: 6px; }
.steps p { margin: 0; font-size: .92rem; color: var(--ink-500); }
.section--dark .steps li { background: rgba(255,255,255,.04); border-color: rgba(255,255,255,.12); }
.section--dark .steps p { color: #aab6c9; }

/* Stats strip */
.stats { background: var(--bg-alt); border: 1px solid var(--navy-100); border-radius: var(--radius); display: grid; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 640px) { .stats { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 960px) { .stats { grid-template-columns: repeat(6, 1fr); } }
.stat { padding: 24px 18px; display: flex; gap: 12px; align-items: center; border-right: 1px solid var(--navy-100); border-bottom: 1px solid var(--navy-100); }
.stat svg { width: 30px; height: 30px; color: var(--navy-600); flex: none; }
.stat b { display: block; font-size: 1.5rem; color: var(--ink-900); line-height: 1; margin-bottom: 4px; }
.stat span { font-size: .8rem; color: var(--ink-500); }

/* Industries / markets strip */
.strip { display: grid; gap: 18px; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 640px) { .strip { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 960px) { .strip { grid-template-columns: repeat(6, 1fr); } }
.strip__item { text-align: center; padding: 18px 8px; border-left: 1px solid rgba(255,255,255,.12); }
.strip__item:first-child { border-left: 0; }
.strip__item svg { width: 40px; height: 40px; color: var(--white); margin: 0 auto 10px; }
.strip__item b { display: block; color: var(--white); font-size: .95rem; }

/* Markets */
.markets { display: grid; gap: 28px; }
@media (min-width: 960px) { .markets { grid-template-columns: 1fr auto 1fr; align-items: center; } }
.markets__col { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius); padding: 26px; }
.markets__col h3 { color: var(--gold-500); font-size: .85rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 14px; }
.markets__list { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.markets__list li { background: rgba(255,255,255,.08); border-radius: 999px; padding: 6px 14px; font-size: .9rem; color: var(--white); }
.markets__arrow { display: grid; place-items: center; color: var(--gold-500); }
.markets__arrow svg { width: 48px; height: 48px; transform: rotate(90deg); }
@media (min-width: 960px) { .markets__arrow svg { transform: none; } }
.markets__hubs { margin-top: 24px; text-align: center; font-size: .92rem; color: #aab6c9; }
.markets__hubs b { color: var(--white); }

/* Map */
.map-wrap { position: relative; border-radius: var(--radius); overflow: hidden; background: var(--navy-900); border: 1px solid rgba(255,255,255,.1); }
.map-wrap svg { width: 100%; height: auto; display: block; }

/* CTA band */
.cta-band { background: var(--navy-800); color: var(--white); }
.cta-band__inner { display: flex; flex-wrap: wrap; gap: 20px; align-items: center; justify-content: space-between; padding-top: 40px; padding-bottom: 40px; }
.cta-band__text { display: flex; align-items: center; gap: 20px; }
.cta-band__ico { width: 56px; height: 56px; border-radius: 50%; background: var(--gold-500); color: var(--navy-900); display: grid; place-items: center; flex: none; }
.cta-band__ico svg { width: 26px; height: 26px; }
.cta-band h2 { color: var(--white); font-size: 1.35rem; margin: 0 0 4px; }
.cta-band p { margin: 0; color: #c9d3e3; }

/* ---------- Footer ---------- */
.footer { background: var(--navy-900); color: #aab6c9; font-size: .92rem; }
.footer__top { padding: 60px 0 40px; display: grid; gap: 36px; }
@media (min-width: 640px) { .footer__top { grid-template-columns: 1fr 1fr; } }
@media (min-width: 960px) { .footer__top { grid-template-columns: 1.6fr 1fr 1fr 1.3fr; } }
.footer .logo { color: var(--white); margin-bottom: 16px; }
.footer .logo__name { color: var(--white); }
.footer .logo__sub { color: #8b9bb5; }
.footer h4 { color: var(--white); font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 16px; }
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.footer a { color: #c9d3e3; }
.footer a:hover { color: var(--gold-500); }
.footer__contact li { display: flex; gap: 10px; align-items: flex-start; }
.footer__contact svg { width: 18px; height: 18px; color: var(--gold-500); flex: none; margin-top: 3px; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 20px 0; display: flex; flex-wrap: wrap; gap: 10px 24px; justify-content: space-between; font-size: .84rem; color: #8b9bb5; }
.footer__bottom a { color: #8b9bb5; }

/* ---------- Content blocks ---------- */
.prose { max-width: 760px; }
.prose h2 { margin-top: 1.6em; font-size: 1.5rem; }
.prose h3 { margin-top: 1.4em; }
.prose ul li { margin-bottom: .4em; }
.checklist { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; }
.checklist svg { width: 20px; height: 20px; color: var(--gold-600); flex: none; margin-top: 3px; }
.checklist--2 { grid-template-columns: 1fr; }
@media (min-width: 640px) { .checklist--2 { grid-template-columns: 1fr 1fr; } }
.section--dark .checklist svg { color: var(--gold-500); }

.info-table { width: 100%; border-collapse: collapse; font-size: .95rem; }
.info-table th, .info-table td { text-align: left; padding: 12px 14px; border-bottom: 1px solid var(--navy-100); vertical-align: top; }
.info-table th { width: 38%; color: var(--ink-900); font-weight: 600; background: var(--bg-alt); }
.table-wrap { overflow-x: auto; border: 1px solid var(--navy-100); border-radius: var(--radius); }

.pill-list { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.pill-list li { background: var(--bg-alt); border: 1px solid var(--navy-100); border-radius: 999px; padding: 6px 14px; font-size: .9rem; color: var(--ink-700); }

.notice { background: var(--gold-100); border-left: 4px solid var(--gold-500); padding: 16px 20px; border-radius: var(--radius-sm); font-size: .95rem; }

.side-card { background: var(--navy-800); color: #c9d3e3; border-radius: var(--radius); padding: 28px; }
.side-card h3 { color: var(--white); }
.side-card p { color: #c9d3e3; }
.side-card .btn { width: 100%; justify-content: center; margin-top: 8px; }
.side-card dl { margin: 0 0 16px; }
.side-card dt { font-size: .75rem; text-transform: uppercase; letter-spacing: .1em; color: var(--gold-500); margin-top: 12px; }
.side-card dd { margin: 2px 0 0; color: var(--white); }

.sidebar-layout { display: grid; gap: 40px; }
@media (min-width: 960px) { .sidebar-layout { grid-template-columns: 1fr 340px; align-items: start; } .sidebar-layout > aside { position: sticky; top: calc(var(--header-h) + 24px); } }

.subcats { display: grid; gap: 14px; grid-template-columns: 1fr; }
@media (min-width: 640px) { .subcats { grid-template-columns: 1fr 1fr; } }
.subcat { display: flex; gap: 14px; align-items: flex-start; background: var(--white); border: 1px solid var(--navy-100); border-radius: var(--radius); padding: 18px; }
.subcat svg { width: 26px; height: 26px; color: var(--gold-600); flex: none; margin-top: 2px; }
.subcat h3 { font-size: 1rem; margin: 0 0 4px; }
.subcat p { margin: 0; font-size: .9rem; color: var(--ink-500); }

.dept { background: var(--white); border: 1px solid var(--navy-100); border-radius: var(--radius); padding: 24px; }
.dept__ico { width: 46px; height: 46px; border-radius: 10px; background: var(--navy-800); color: var(--gold-500); display: grid; place-items: center; margin-bottom: 14px; }
.dept__ico svg { width: 22px; height: 22px; }
.dept h3 { font-size: 1.05rem; margin-bottom: 6px; }
.dept p { font-size: .92rem; color: var(--ink-500); margin: 0 0 8px; }
.dept a { font-size: .9rem; font-weight: 600; }

/* ---------- Forms ---------- */
.form { display: grid; gap: 18px; }
.form__row { display: grid; gap: 18px; }
@media (min-width: 640px) { .form__row--2 { grid-template-columns: 1fr 1fr; } }
.form label { display: block; font-size: .88rem; font-weight: 600; color: var(--ink-900); margin-bottom: 6px; }
.form label .req { color: #c2410c; }
.form input, .form select, .form textarea {
  width: 100%; font: inherit; font-size: .95rem; padding: 11px 13px; border: 1px solid var(--ink-300);
  border-radius: var(--radius-sm); background: var(--white); color: var(--ink-900);
}
.form input:focus, .form select:focus, .form textarea:focus { border-color: var(--navy-600); outline: 2px solid rgba(27,58,102,.2); }
.form textarea { min-height: 130px; resize: vertical; }
.form__hint { font-size: .82rem; color: var(--ink-500); margin: 4px 0 0; }
.form__consent { display: flex; gap: 10px; align-items: flex-start; font-size: .88rem; color: var(--ink-500); }
.form__consent input { width: auto; margin-top: 4px; }
.form-card { background: var(--white); border: 1px solid var(--navy-100); border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow-sm); }
.hp { position: absolute; left: -9999px; }
.form__success { display: none; background: #ecfdf5; border: 1px solid #a7f3d0; color: #065f46; padding: 18px 20px; border-radius: var(--radius-sm); }
.form__success.is-visible { display: block; }

/* Contact info */
.contact-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 22px; }
.contact-list li { display: flex; gap: 16px; }
.contact-list .ico { width: 46px; height: 46px; border-radius: 10px; background: var(--gold-100); color: var(--navy-800); display: grid; place-items: center; flex: none; }
.contact-list .ico svg { width: 22px; height: 22px; }
.contact-list b { display: block; color: var(--ink-900); margin-bottom: 2px; }
.contact-list span, .contact-list a { font-size: .95rem; }
.map-embed { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--navy-100); }
.map-embed iframe { width: 100%; height: 380px; border: 0; display: block; }

/* Utilities */
.mt-0 { margin-top: 0; } .mt-1 { margin-top: 12px; } .mt-2 { margin-top: 24px; } .mt-3 { margin-top: 40px; }
.mb-0 { margin-bottom: 0; } .mb-2 { margin-bottom: 24px; }
.text-center { text-align: center; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; }
.muted { color: var(--ink-500); }
.small { font-size: .88rem; }
.divider { border: 0; border-top: 1px solid var(--navy-100); margin: 40px 0; }

/* Animations */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(16px); transition: opacity .6s ease, transform .6s ease; }
  .reveal.is-in { opacity: 1; transform: none; }
}

/* Spacing for stacked headings inside sidebar layouts */
.sidebar-layout > div > h2:not(.mt-0) { margin-top: 1.8em; }
.sidebar-layout > div > .steps { margin-top: 8px; }
