:root {
  --blue: #082a54;
  --green: #08723f;
  --gold: #d99a16;
  --ink: #091831;
  --muted: #5f6b7a;
  --paper: #f6f4ee;
  --white: #fff;
  --line: #d8dee6;
}
* { box-sizing: border-box; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: Inter, Arial, sans-serif; line-height: 1.55; }
a { color: inherit; font-weight: 800; }
img { max-width: 100%; height: auto; }
.site-header { position: sticky; top: 0; z-index: 20; display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 16px clamp(18px, 4vw, 54px); color: var(--white); background: rgba(8, 42, 84, .96); box-shadow: 0 10px 28px rgba(8, 42, 84, .16); }
.brand { display: flex; align-items: center; gap: 12px; color: var(--white); text-decoration: none; font-weight: 900; }
.brand-mark { display: grid; width: 42px; height: 42px; place-items: center; color: var(--blue); background: var(--white); border-radius: 8px; }
.main-nav { display: flex; align-items: center; gap: 18px; font-size: 14px; }
.main-nav a { color: var(--white); text-decoration: none; opacity: .92; }
.nav-action { padding: 9px 13px; border: 1px solid rgba(255,255,255,.35); border-radius: 7px; }
.menu-toggle { display: none; color: var(--white); background: transparent; border: 1px solid rgba(255,255,255,.35); border-radius: 7px; padding: 9px 12px; font-weight: 800; }
.site-main { overflow: hidden; }

.wp-block-cover.siecmi-hero { min-height: 760px; color: var(--white); }
.siecmi-hero .wp-block-cover__inner-container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.eyebrow { margin: 0 0 12px; color: var(--gold); font-size: 13px; font-weight: 900; text-transform: uppercase; }
h1, h2, h3, p { overflow-wrap: anywhere; }
h1 { margin: 0; max-width: 900px; font-size: clamp(42px, 7vw, 88px); line-height: .98; letter-spacing: 0; }
h2 { margin: 0 0 16px; font-size: clamp(30px, 4vw, 54px); line-height: 1.05; letter-spacing: 0; }
h3 { margin: 0 0 10px; font-size: 23px; line-height: 1.18; }
.hero-subtitle { max-width: 760px; color: rgba(255,255,255,.9); font-size: clamp(18px, 2vw, 24px); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.wp-block-button__link { border-radius: 7px; padding: 12px 17px; font-weight: 900; text-decoration: none; }
.wp-block-button.is-style-fill .wp-block-button__link { background: var(--green); color: var(--white); }
.wp-block-button.is-style-outline .wp-block-button__link { border: 1px solid currentColor; background: transparent; color: inherit; }

.section { padding: clamp(62px, 8vw, 104px) clamp(18px, 4vw, 54px); }
.section.light { background: var(--white); }
.section-inner { width: min(1180px, 100%); margin-left: auto !important; margin-right: auto !important; }
.split { gap: clamp(30px, 6vw, 78px); align-items: center !important; }
.section p { color: var(--muted); font-size: 17px; }
.section-image img, .section-image { border-radius: 12px; box-shadow: 0 24px 70px rgba(8,42,84,.18); overflow: hidden; }
.cards { gap: 16px; }
.card { height: 100%; padding: 24px; background: #fbfcfd; border: 1px solid var(--line); border-radius: 10px; }
.card strong { display: block; margin: 12px 0; color: var(--gold); font-size: 30px; }
.form-layout { align-items: flex-start !important; gap: clamp(28px, 5vw, 70px); }
.contact-form { display: grid; gap: 13px; padding: 24px; background: var(--white); border: 1px solid var(--line); border-radius: 10px; }
.contact-form label { display: grid; gap: 7px; color: var(--muted); font-size: 13px; font-weight: 900; }
.contact-form input, .contact-form textarea { width: 100%; padding: 12px 13px; border: 1px solid var(--line); border-radius: 7px; font: inherit; }
.site-footer { display: flex; justify-content: space-between; gap: 20px; padding: 28px clamp(18px, 4vw, 54px); color: var(--white); background: var(--blue); }
.site-footer span { display: block; color: rgba(255,255,255,.72); }

@media (max-width: 980px) {
  .menu-toggle { display: inline-flex; }
  .main-nav { display: none; position: absolute; top: 74px; left: 0; right: 0; padding: 18px; flex-direction: column; align-items: flex-start; background: var(--blue); }
  .menu-open .main-nav { display: flex; }
  .wp-block-columns { flex-wrap: wrap !important; }
  .site-footer { flex-direction: column; }
}
@media (max-width: 620px) {
  h1 { font-size: 42px; }
  .hero-actions, .wp-block-button, .wp-block-button__link { width: 100%; }
}

