:root {
  --site-primary: #24385b;
  --site-primary-light: #536c90;
  --site-primary-dark: #000f3c;
  --site-secondary: #b8ad70;
  --site-accent: #b45c00;
  --site-background: #fffce1;
  --site-surface: #fffff6;
  --site-text-primary: #030914;
  --site-text-secondary: #3f464f;
  --site-card-shadow: 0 12px 32px rgba(0,0,0,0.08);
  --site-button-shadow: 0 4px 12px rgba(0,0,0,0.06);
  --bs-body-bg: #fffce1;
  --bs-body-color: #030914;
  --bs-body-font-family: 'Outfit', sans-serif;
  --bs-link-color: #24385b;
  --bs-link-hover-color: #000f3c;
  --type-h1: clamp(2.2rem,4.5vw,3rem);
  --type-h2: 1.9rem;
  --type-h3: 1.4rem;
  --type-body: 1.06rem;
  --type-small: 0.9rem;
  --type-eyebrow: 0.74rem;
  --section-py: clamp(4rem,7vw,6rem);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  background: var(--bs-body-bg);
  color: var(--bs-body-color);
  font-family: var(--bs-body-font-family);
  font-size: var(--type-body);
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', serif;
  color: var(--site-text-primary);
  letter-spacing: -0.02em;
  text-wrap: balance;
}

h1, .site-h1 { font-size: var(--type-h1); line-height: 1.08; font-weight: 700; }
h2, .site-h2 { font-size: var(--type-h2); line-height: 1.16; font-weight: 700; }
h3, .site-h3 { font-size: var(--type-h3); line-height: 1.25; font-weight: 700; }
small, .site-small { font-size: var(--type-small); }
p, li { text-wrap: pretty; }

.btn-primary {
  background-color: var(--site-primary);
  border-color: var(--site-primary);
  color: #fff;
}

.btn-primary:hover, .btn-primary:focus {
  background-color: var(--site-primary-dark);
  border-color: var(--site-primary-dark);
  color: #fff;
}

.btn-outline-primary {
  color: var(--site-primary);
  border-color: var(--site-primary);
  background-color: transparent;
}

.btn-outline-primary:hover, .btn-outline-primary:focus {
  background-color: var(--site-primary);
  border-color: var(--site-primary);
  color: #fff;
}

.bg-primary { background-color: var(--site-primary) !important; }
.text-primary { color: var(--site-primary) !important; }
.border-primary { border-color: var(--site-primary) !important; }
a { color: var(--site-primary); }
a:hover { color: var(--site-primary-dark); }

.btn {
  border-radius: 8px;
  padding: 0.78rem 1.15rem;
  font-weight: 700;
  box-shadow: var(--site-button-shadow);
  letter-spacing: 0.01em;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, border-color 180ms ease, color 180ms ease;
  border-width: 1px;
}

.btn:hover { transform: translateY(-1px); }
.btn-sm { padding: 0.52rem 0.85rem; }

.form-control, .form-select {
  border-radius: 6px;
  border-color: rgba(36, 56, 91, 0.22);
  padding: 0.78rem 0.9rem;
  background-color: #fff;
  color: var(--site-text-primary);
}

.form-control:focus, .form-select:focus {
  border-color: var(--site-primary-light);
  box-shadow: 0 0 0 0.2rem rgba(36, 56, 91, 0.14);
}

.form-check-input:checked {
  background-color: var(--site-primary);
  border-color: var(--site-primary);
}

.card {
  border: 0;
  border-radius: 12px;
  box-shadow: var(--site-card-shadow);
  background: var(--site-surface);
}

.site-navbar {
  background: rgba(255, 252, 225, 0.96);
  backdrop-filter: blur(10px);
  padding-top: 1.1rem;
  padding-bottom: 1.1rem;
  transition: padding 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.site-navbar.navbar-shrink {
  padding-top: 0.45rem;
  padding-bottom: 0.45rem;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
  background: rgba(255, 252, 225, 0.99);
}

.logo-mark {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  transition: width 180ms ease, height 180ms ease;
}

.navbar-shrink .logo-mark {
  width: 36px;
  height: 36px;
}

.navbar-brand span {
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--site-text-primary);
}

.nav-link {
  color: var(--site-text-primary);
  font-weight: 650;
  font-size: 0.96rem;
}

.nav-link:hover, .nav-link:focus { color: var(--site-primary); }
.navbar-toggler { border-radius: 8px; border-color: rgba(36, 56, 91, 0.22); }

.site-main { padding-top: 88px; }
.hero-section { padding: clamp(4rem, 7vw, 5.6rem) 0 var(--section-py); }
.hero-copy { max-width: 860px; margin-inline: auto; }
.hero-copy .lead { max-width: 760px; margin-inline: auto; color: var(--site-text-secondary); }
.hero-image {
  width: 100%;
  max-height: 540px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--site-card-shadow);
}

.site-section { padding: var(--section-py) 0; background: var(--site-background); }
.section-visual {
  width: 100%;
  max-height: 430px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--site-card-shadow);
  margin-bottom: 2rem;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--site-accent);
  font-size: var(--type-eyebrow);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 800;
  margin-bottom: 0.85rem;
}

.section-kicker::before {
  content: "";
  display: inline-block;
  width: 2.2rem;
  height: 2px;
  background: var(--site-accent);
  border-radius: 999px;
}

.prose { max-width: 72ch; }
.prose-narrow { max-width: 62ch; }
.text-secondary-site { color: var(--site-text-secondary); }

.number-card {
  height: 100%;
  padding: 1.4rem;
}

.number-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 10px;
  background: rgba(36, 56, 91, 0.08);
  color: var(--site-primary);
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  margin-bottom: 1rem;
}

.operation-strip {
  border-radius: 8px;
  background: var(--site-surface);
  box-shadow: var(--site-card-shadow);
  padding: 1.1rem;
  margin-bottom: 2rem;
}

.operation-line {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.operation-pill {
  border: 1px solid rgba(36, 56, 91, 0.16);
  border-radius: 999px;
  padding: 0.45rem 0.75rem;
  color: var(--site-text-secondary);
  background: #fff;
  font-size: var(--type-small);
  font-weight: 650;
}

.contact-panel {
  background: var(--site-surface);
  border-radius: 12px;
  box-shadow: var(--site-card-shadow);
  padding: clamp(1.2rem, 3vw, 2rem);
}

.contact-facts {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.contact-facts li { margin-bottom: 0.75rem; }
.contact-facts strong { display: block; color: var(--site-text-primary); }
.numeric { font-variant-numeric: tabular-nums; }

.form-status {
  display: none;
  margin-top: 1rem;
  border-radius: 8px;
  padding: 0.9rem 1rem;
  background: rgba(184, 173, 112, 0.18);
  color: var(--site-text-primary);
}

.form-status.is-visible { display: block; }

.site-footer {
  padding: 3rem 0;
  text-align: center;
  background: var(--site-background);
}

.footer-brand {
  font-family: 'Outfit', serif;
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 0.9rem 0;
}

.footer-links a { font-weight: 650; text-decoration: none; }
.footer-links a:hover { text-decoration: underline; }

.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 1080;
  max-width: 760px;
  margin-inline: auto;
  background: var(--site-surface);
  color: var(--site-text-primary);
  border-radius: 12px;
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.14);
  padding: 1rem;
  display: none;
}

.cookie-banner.is-visible { display: block; }
.cookie-banner p { margin-bottom: 0; color: var(--site-text-secondary); }

.legal-main, .simple-main { padding: calc(88px + var(--section-py)) 0 var(--section-py); }
.legal-content { max-width: 850px; }
.legal-content h2 { margin-top: 2.25rem; }
.legal-content ul { padding-left: 1.2rem; }

@media (max-width: 991.98px) {
  .site-main { padding-top: 78px; }
  .navbar-collapse {
    padding-top: 1rem;
  }
}

@media (max-width: 575.98px) {
  .hero-section { padding-top: 3rem; }
  .cta-group .btn { width: 100%; }
  .cookie-banner { left: 0.75rem; right: 0.75rem; }
}
