:root {
  --color-header-bg: #0e192a;
  --color-body-bg: #ffffff;
  --color-body-text: #444444;
  --color-heading: #333333;
  --color-accent: #fb525a;
  --color-white: #ffffff;
  --color-muted: #999999;
  --color-border: #e5e5e5;
}
* { box-sizing: border-box; }
body { margin: 0; font-family: "Nunito Sans", sans-serif; color: var(--color-body-text); background: var(--color-body-bg); line-height: 1.7; }
a { color: var(--color-accent); text-decoration: none; }
a:hover { text-decoration: underline; }
.container { width: min(1200px, 92vw); margin: 0 auto; }
.site-header { background: var(--color-header-bg); min-height: 70px; position: relative; z-index: 2000; }
.nav-row { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 16px 0; }
.logo { display: inline-flex; align-items: center; line-height: 1; }
.logo img { display: block; height: 54px; width: auto; max-width: 100%; }
.menu { display: flex; align-items: center; gap: 18px; }
.menu a { color: var(--color-white); text-transform: uppercase; font-size: 14px; font-weight: 600; letter-spacing: 1px; }
.menu a.active, .menu a:hover { color: var(--color-accent); text-decoration: none; }
.menu-btn { display: none; border: 1px solid #365; background: transparent; color: white; padding: 8px 10px; }
.lang-switcher a { color: var(--color-white); }
.lang-switcher { font-size: 12px; letter-spacing: 1px; }
.lang-switcher a { font-size: 12px; font-weight: 600; letter-spacing: 1px; }
.lang-switcher a.active { color: var(--color-accent); }
.hero { min-height: 62vh; background: linear-gradient(130deg, rgba(14,25,42,.83), rgba(14,25,42,.45)), url('/static/images/hero.svg') center/cover no-repeat; color: white; position: relative; overflow: hidden; display: flex; align-items: end; }
.hero::after { content: ""; position: absolute; inset: 0; background: rgba(255,255,255,.08); clip-path: polygon(40% 0, 100% 0, 100% 100%, 14% 100%); }
.hero.inner { min-height: 45vh; }
.hero-content { position: relative; z-index: 1; padding: 80px 0; max-width: 760px; }
h1, h2, h3 { font-family: "Fanwood Text", serif; color: var(--color-heading); font-weight: 400; }
.hero h1 { color: var(--color-white); font-size: clamp(2rem, 4vw, 2.75rem); }
.hero p { color: #f1f1f1; font-size: 1.1rem; }
.btn { display: inline-block; border: 1px solid var(--color-accent); background: var(--color-accent); color: #fff; padding: 11px 20px; text-transform: uppercase; font-size: 13px; letter-spacing: 2px; margin-right: 10px; }
.btn:hover { background: transparent; color: var(--color-accent); text-decoration: none; }
.btn-outline { background: transparent; color: var(--color-accent); }
.section { padding: 82px 0; }
.section.light { background: #fff; }
.section.dark { background: var(--color-header-bg); }
.section.dark h2, .section.dark h3, .section.dark p, .section.dark a, .section.dark blockquote { color: #fff; }
.columns { display: grid; gap: 25px; }
.columns.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.columns.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.breadcrumbs { background: #f2f2f2; color: var(--color-muted); font-size: 13px; padding: 12px 0; }
.presence-band { text-align: center; }
blockquote { font-size: 2rem; font-style: italic; margin: 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 45px; }
form label { display: block; margin-bottom: 14px; font-size: 14px; }
input, textarea { width: 100%; border: 1px solid var(--color-border); padding: 12px; font: inherit; }
.err { color: #c33; display: block; margin: -10px 0 10px; }
.flash { padding: 10px; border: 1px solid var(--color-border); }
.flash.success { border-color: #1f9d55; color: #1f9d55; }
.flash.error { border-color: #c33; color: #c33; }
.cta-banner { background: linear-gradient(130deg, rgba(14,25,42,.9), rgba(14,25,42,.6)), url('/static/images/cta.svg') center/cover no-repeat; padding: 70px 0; }
.cta-banner h2 { color: white; font-size: 2.2rem; margin-top: 0; }
.cta-banner a { color: white; text-transform: uppercase; letter-spacing: 2px; font-size: 13px; }
.site-footer { background: var(--color-header-bg); color: #fff; padding: 22px 0; }
.footer-line { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.footer-line a { color: white; }
.doc-copy { font-size: 1.02rem; line-height: 1.85; color: var(--color-body-text); }
@media (max-width: 980px) {
  .logo img { height: 44px; }
  .menu-btn { display: block; }
  .menu { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--color-header-bg); padding: 15px; flex-direction: column; align-items: flex-start; z-index: 2100; border-top: 1px solid rgba(255,255,255,.08); box-shadow: 0 10px 24px rgba(0,0,0,.35); }
  .menu.open { display: flex; }
  .columns.two, .columns.three, .contact-grid { grid-template-columns: 1fr; }
}
