* {
  box-sizing: border-box;
}

:root {
  --ink: #12161b;
  --muted: #5a6570;
  --paper: #f7f4ef;
  --accent: #0a5db5;
  --accent-dark: #084a8e;
  --sand: #efe7da;
  --graphite: #2a2f36;
  --line: #d8d2c7;
  --soft: #f0ede7;
  --radius: 14px;
  --shadow: 0 12px 30px rgba(18, 22, 27, 0.08);
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:focus,
button:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

header {
  background: #ffffff;
  border-bottom: 1px solid var(--line);
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 24px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand strong {
  font-size: 1.3rem;
  letter-spacing: 0.4px;
}

.brand span {
  font-size: 0.9rem;
  color: var(--muted);
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: flex-end;
  font-size: 0.95rem;
}

.ad-disclosure {
  font-size: 0.85rem;
  color: var(--graphite);
  background: var(--sand);
  padding: 6px 10px;
  border-radius: 999px;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 72px 0 42px;
  background: linear-gradient(120deg, rgba(10, 93, 181, 0.08), rgba(10, 93, 181, 0));
}

.hero-inner {
  display: flex;
  align-items: stretch;
  gap: 32px;
  flex-wrap: wrap;
}

.hero-copy {
  flex: 1 1 360px;
}

.hero-image {
  flex: 1 1 320px;
  min-height: 320px;
  border-radius: var(--radius);
  background-color: #c8d3de;
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
}

.hero-image.newsroom {
  background-image: url("https://images.unsplash.com/photo-1454165205744-3b78555e5572?w=1400&q=80");
}

.hero-image.editorial {
  background-image: url("https://images.unsplash.com/photo-1507206130118-b5907f817163?w=1400&q=80");
}

.hero-image.services {
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
}

.hero-image.contact {
  background-image: url("https://images.unsplash.com/photo-1521737604893-d14cc237f11d?w=1400&q=80");
}

.badge-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.9rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--accent);
  color: #ffffff;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.btn.secondary {
  background: var(--graphite);
}

.btn.ghost {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.btn:hover {
  background: var(--accent-dark);
  color: #ffffff;
}

.btn.secondary:hover {
  background: #1b1f25;
}

.btn.ghost:hover {
  background: var(--accent);
  color: #ffffff;
}

.section {
  padding: 56px 0;
}

.section.alt {
  background: #ffffff;
}

.section.soft {
  background: var(--soft);
}

.section-title {
  font-size: 2rem;
  margin-bottom: 12px;
}

.section-subtitle {
  color: var(--muted);
  max-width: 720px;
  margin-bottom: 32px;
}

.mag-row {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  align-items: stretch;
}

.mag-col {
  flex: 1 1 280px;
}

.mag-col.wide {
  flex: 2 1 480px;
}

.media-frame {
  background-color: #d3d8df;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.media-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.card-list {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 240px;
  background: #ffffff;
  padding: 18px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card h3 {
  margin: 0;
}

.price {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent);
}

.quote {
  background: #ffffff;
  border-left: 4px solid var(--accent);
  padding: 18px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.quote-stack {
  margin-top: 18px;
}

.split-banner {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  background: #ffffff;
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}

.split-banner .text {
  flex: 2 1 320px;
}

.split-banner .aside {
  flex: 1 1 200px;
  background: var(--soft);
  border-radius: var(--radius);
  padding: 16px;
}

.form-panel {
  background: #ffffff;
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.95rem;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid var(--line);
  font-family: inherit;
  font-size: 0.95rem;
}

footer {
  background: var(--graphite);
  color: #ffffff;
  padding: 36px 0 80px;
}

footer a {
  color: #ffffff;
}

.footer-cols {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-col {
  flex: 1 1 240px;
}

.footer-note {
  margin-top: 24px;
}

.sticky-cta {
  position: fixed;
  bottom: 16px;
  right: 16px;
  background: #ffffff;
  border-radius: 999px;
  padding: 10px 16px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 100;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  border-top: 1px solid var(--line);
  padding: 16px 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  z-index: 120;
}

.cookie-banner p {
  margin: 0;
  max-width: 720px;
  color: var(--muted);
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.hidden {
  display: none;
}

.bg-market {
  background-image: url("https://images.unsplash.com/photo-1444653614773-995cb1ef9efa?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
}

.bg-briefing {
  background-image: url("https://images.unsplash.com/photo-1520607162513-77705c0f0d4a?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
}

.bg-briefing .section-title,
.bg-briefing .section-subtitle {
  color: #ffffff;
}

.bg-market .section-title,
.bg-market .section-subtitle {
  color: #ffffff;
}

.list-plain {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

@media (max-width: 860px) {
  .topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .sticky-cta {
    left: 16px;
    right: 16px;
    border-radius: 16px;
    justify-content: space-between;
  }
}
