* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1d232a;
  --muted: #5b6470;
  --accent: #2b5cff;
  --accent-dark: #1d3bb3;
  --bg: #f4f5f7;
  --soft: #eef1f5;
  --card: #ffffff;
  --warm: #f8f1ea;
  --olive: #e7efe9;
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

a {
  color: var(--accent-dark);
  text-decoration: none;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.wrap {
  width: min(1160px, 92%);
  margin: 0 auto;
}

.nav {
  padding: 24px 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.02em;
}

.ad-label {
  background: #f0e6ff;
  color: #3c2a66;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.hero {
  position: relative;
  color: #f7f8fb;
  padding: 90px 0 110px;
  background-image: url("https://images.unsplash.com/photo-1460925895917-afdab827c52f?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(17, 23, 35, 0.6);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 28px;
  max-width: 620px;
}

.hero h1 {
  font-size: clamp(2.5rem, 3vw, 3.6rem);
  line-height: 1.1;
}

.hero p {
  font-size: 1.1rem;
  color: #e2e6ef;
}

.btn {
  background: var(--accent);
  color: white;
  padding: 12px 22px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.btn.secondary {
  background: #ffffff;
  color: var(--accent-dark);
}

.btn.ghost {
  background: transparent;
  border: 1px solid #c7d2ff;
  color: var(--accent-dark);
}

.section {
  padding: 70px 0;
}

.section.soft {
  background: var(--soft);
}

.section.warm {
  background: var(--warm);
}

.section.olive {
  background: var(--olive);
}

.section.photo-band {
  background-image: url("https://images.unsplash.com/photo-1507679799987-c73779587ccf?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #f5f7fb;
  position: relative;
}

.section.photo-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(17, 23, 35, 0.62);
}

.section.photo-band .wrap {
  position: relative;
  z-index: 1;
}

.section.photo-band .btn.secondary {
  color: #111723;
}

.split {
  display: flex;
  gap: 42px;
  align-items: stretch;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .col {
  flex: 1 1 320px;
}

.offset-card {
  background: var(--card);
  padding: 28px;
  border-radius: 18px;
  box-shadow: 0 24px 50px rgba(25, 32, 45, 0.12);
  margin-top: -36px;
  margin-left: 24px;
}

.offset-card.right {
  margin-left: 0;
  margin-right: 24px;
}

.media-frame {
  background: #dfe6ef;
  border-radius: 20px;
  overflow: hidden;
  min-height: 240px;
}

.media-frame.small {
  min-height: 180px;
}

.media-frame img {
  height: 100%;
  object-fit: cover;
}

.stack {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  background: var(--card);
  border-radius: 16px;
  padding: 20px;
  flex: 1 1 220px;
  min-width: 220px;
  box-shadow: 0 18px 36px rgba(16, 22, 32, 0.08);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.card .price {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--accent-dark);
}

.card img {
  border-radius: 12px;
}

.quote {
  background: #fff;
  border-left: 4px solid var(--accent);
  padding: 16px 20px;
  border-radius: 12px;
  font-size: 0.95rem;
}

.form-wrap {
  background: #ffffff;
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 20px 38px rgba(18, 24, 36, 0.12);
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-grid label {
  font-weight: 600;
  font-size: 0.95rem;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #ccd5e3;
  font-size: 0.95rem;
}

.inline-cta {
  font-weight: 600;
  text-decoration: underline;
}

.sticky-cta {
  position: fixed;
  right: 28px;
  bottom: 28px;
  background: #111723;
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 0.9rem;
  z-index: 9;
}

.footer {
  background: #101623;
  color: #d5d9e2;
  padding: 50px 0;
  margin-top: auto;
}

.footer a {
  color: #c5d1ff;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
}

.footer-col {
  flex: 1 1 200px;
}

.legal-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.notice {
  font-size: 0.85rem;
  color: #a9b1bf;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: #ffffff;
  border-radius: 16px;
  padding: 18px 20px;
  box-shadow: 0 20px 40px rgba(15, 20, 30, 0.2);
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: #e5ecff;
  color: #1a3e9f;
  font-size: 0.82rem;
  font-weight: 600;
}

.mini {
  font-size: 0.9rem;
  color: var(--muted);
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 18px;
}

.list li {
  list-style: disc;
}

.map {
  background: #dae5f2;
  border-radius: 16px;
  padding: 20px;
}

.banner {
  background: #182033;
  color: #f5f7fb;
  border-radius: 16px;
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.muted {
  color: var(--muted);
}

.top-gap {
  margin-top: 22px;
}

.center {
  text-align: center;
}

.references a {
  color: #cfe0ff;
}

@media (max-width: 720px) {
  .nav-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .offset-card,
  .offset-card.right {
    margin: 0;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}
