* {
  box-sizing: border-box;
}

:root {
  --ink: #1a1a1a;
  --muted: #5d6671;
  --paper: #f6f2ed;
  --stone: #e3ddd4;
  --sky: #dde6ee;
  --accent: #2b5d7c;
  --accent-soft: #cfe0ea;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.top-nav {
  padding: 20px 0;
  background: #ffffff;
  border-bottom: 1px solid var(--stone);
}

.nav-inner {
  width: min(1080px, 92%);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.nav-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  background: var(--paper);
  padding: 6px 10px;
  border-radius: 999px;
}

.hero {
  position: relative;
  padding: 80px 0 60px;
  color: #ffffff;
  background-size: cover;
  background-position: center;
}

.bg-hero {
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(15, 24, 33, 0.62);
}

.hero-content {
  position: relative;
  width: min(880px, 90%);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero h1 {
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  margin: 0;
  line-height: 1.2;
}

.hero p {
  font-size: 1.1rem;
  margin: 0;
  max-width: 660px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  background: var(--accent);
  color: #ffffff;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  font-size: 1rem;
}

.content {
  width: min(980px, 92%);
  margin: 0 auto;
  padding: 60px 0;
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.story-block {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 28px;
  background: var(--paper);
  border-radius: 24px;
}

.story-block.split {
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
}

.story-block .text {
  flex: 1 1 320px;
}

.story-block .media {
  flex: 1 1 240px;
  background: var(--sky);
  border-radius: 18px;
  overflow: hidden;
}

.media img {
  width: 100%;
  height: 100%;
}

.pull-quote {
  font-size: 1.2rem;
  font-style: italic;
  color: var(--muted);
  padding-left: 18px;
  border-left: 3px solid var(--accent);
}

.section-title {
  font-size: 1.6rem;
  margin: 0 0 12px;
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.service-card {
  flex: 1 1 240px;
  min-width: 220px;
  background: #ffffff;
  border: 1px solid var(--stone);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-card .media {
  height: 180px;
  background: var(--stone);
}

.service-card .card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.form-panel {
  background: var(--accent-soft);
  border-radius: 28px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid var(--stone);
  font-size: 1rem;
  font-family: inherit;
}

.inline-cta {
  font-weight: 600;
  color: var(--accent);
}

.footer {
  margin-top: auto;
  background: #111820;
  color: #d8dee4;
  padding: 40px 0;
}

.footer-inner {
  width: min(1080px, 92%);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.95rem;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: var(--accent);
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  z-index: 50;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  background: #ffffff;
  border: 1px solid var(--stone);
  border-radius: 16px;
  padding: 16px;
  width: min(360px, 90%);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 60;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-button {
  flex: 1 1 120px;
  border-radius: 999px;
  padding: 10px 16px;
  cursor: pointer;
  border: 1px solid var(--stone);
  background: #ffffff;
}

.cookie-button.primary {
  background: var(--accent);
  color: #ffffff;
  border-color: var(--accent);
}

.section-background {
  background-size: cover;
  background-position: center;
  border-radius: 28px;
  padding: 40px;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.bg-runway {
  background-image: url("https://images.unsplash.com/photo-1469474968028-56623f02e42e?w=1400&q=80");
}

.section-background::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(14, 22, 30, 0.6);
}

.section-background .content-layer {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.two-column {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.two-column > div {
  flex: 1 1 280px;
}

.legal-list {
  margin: 0;
  padding-left: 18px;
}

.small-note {
  font-size: 0.9rem;
  color: var(--muted);
}

@media (max-width: 720px) {
  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
  .story-block.split {
    flex-direction: column;
  }
  .hero {
    padding: 64px 0 48px;
  }
}
