* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1b1b1d;
  --muted: #5a5f66;
  --paper: #f7f6f3;
  --accent: #1f4aa8;
  --accent-dark: #123373;
  --sand: #efe7dd;
  --steel: #e2e7ef;
  --olive: #e9ece2;
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:focus,
button:focus,
select:focus,
input:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.page {
  max-width: 1180px;
  margin: 0 auto;
  padding: 32px 24px 80px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0 12px;
  border-bottom: 1px solid #dedad3;
}

.nav-brand {
  font-weight: 700;
  letter-spacing: 0.4px;
}

.nav-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.ad-label {
  font-size: 0.9rem;
  color: var(--muted);
  border: 1px solid #d4d0c8;
  padding: 6px 10px;
  border-radius: 16px;
  background: #ffffff;
}

.hero {
  display: flex;
  gap: 28px;
  margin-top: 36px;
  align-items: stretch;
}

.hero-copy {
  flex: 1.1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-image {
  flex: 0.9;
  border-radius: 18px;
  overflow: hidden;
  background-color: #d7dde6;
  min-height: 340px;
}

.hero-image img {
  height: 100%;
}

.hero h1 {
  font-size: 2.7rem;
  line-height: 1.1;
}

.hero p {
  font-size: 1.05rem;
  color: var(--muted);
}

.cta-row {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 22px;
  border-radius: 28px;
  border: none;
  background: var(--accent);
  color: #ffffff;
  font-weight: 600;
  cursor: pointer;
}

.btn.secondary {
  background: #ffffff;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.btn:hover,
.btn.secondary:hover,
.inline-cta:hover,
.nav-links a:hover,
.sticky-cta:hover {
  background: var(--accent-dark);
  color: #ffffff;
}

.inline-cta {
  padding: 6px 0;
  border-bottom: 1px solid var(--accent);
}

.mag-section {
  margin-top: 48px;
  display: flex;
  gap: 28px;
  align-items: stretch;
}

.mag-section.reverse {
  flex-direction: row-reverse;
}

.column {
  flex: 1;
}

.column.wide {
  flex: 1.4;
}

.column.narrow {
  flex: 0.6;
}

.card-grid {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.card {
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  flex: 1 1 220px;
  border: 1px solid #ece8e1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card .media-box {
  border-radius: 12px;
  overflow: hidden;
  background-color: #e2e7ef;
}

.media-box {
  border-radius: 16px;
  overflow: hidden;
  background-color: #e2e7ef;
}

.panel {
  background: var(--sand);
  padding: 24px;
  border-radius: 18px;
}

.panel.steel {
  background: var(--steel);
}

.panel.olive {
  background: var(--olive);
}

.bg-vision {
  background-image: url("https://images.unsplash.com/photo-1470225620780-dba8ba36b745?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
}

.bg-vision a {
  color: #ffffff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
}

.bg-vision .panel {
  background: rgba(15, 18, 26, 0.7);
}

.bg-stage {
  background-image: url("https://images.unsplash.com/photo-1506784983877-45594efa4cbe?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
}

.bg-stage .panel {
  background: rgba(18, 20, 26, 0.72);
}

.quote {
  font-style: italic;
  color: var(--muted);
}

.divider {
  height: 1px;
  background: #dcd7d0;
  margin: 32px 0;
}

.form-section {
  background: #ffffff;
  border-radius: 18px;
  padding: 28px;
  border: 1px solid #ece8e1;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.95rem;
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #d7d3cb;
  font-size: 1rem;
}

.footer {
  margin-top: 64px;
  padding-top: 24px;
  border-top: 1px solid #dedad3;
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: var(--accent);
  color: #ffffff;
  padding: 14px 20px;
  border-radius: 28px;
  font-weight: 600;
  z-index: 5;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  max-width: 360px;
  background: #ffffff;
  border: 1px solid #e2ddd5;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  display: none;
  z-index: 6;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions button {
  flex: 1;
}

.legal-page {
  max-width: 920px;
}

@media (max-width: 960px) {
  .hero,
  .mag-section,
  .mag-section.reverse {
    flex-direction: column;
  }

  .sticky-cta {
    right: 16px;
    left: 16px;
    text-align: center;
  }
}
