* {
  box-sizing: border-box;
}

:root {
  --ink: #1c1f24;
  --muted: #5d6570;
  --accent: #2f6f7e;
  --accent-dark: #23545f;
  --warm: #f2efe9;
  --cool: #eef3f6;
  --sand: #f7f3ed;
  --card: #ffffff;
  --line: #d9e0e6;
}

body {
  margin: 0;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover,
a:focus {
  color: var(--accent-dark);
}

img {
  display: block;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: min(1140px, 92%);
  margin: 0 auto;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.brand {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.ad-label {
  font-size: 0.85rem;
  background: var(--warm);
  color: var(--ink);
  padding: 6px 10px;
  border-radius: 999px;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: #fff;
  padding: 6px 12px;
  border-radius: 20px;
  cursor: pointer;
}

.split {
  display: flex;
  align-items: stretch;
  gap: 40px;
  padding: 70px 0;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split-content {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  gap: 18px;
  justify-content: center;
}

.split-media {
  flex: 1 1 50%;
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cool);
}

.split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  color: var(--muted);
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.2;
}

.lead {
  font-size: 1.1rem;
  color: var(--muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.btn:hover,
.btn:focus {
  background: var(--accent-dark);
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}

.btn-outline:hover,
.btn-outline:focus {
  color: #fff;
  background: var(--accent);
}

.section {
  padding: 60px 0;
}

.section.alt {
  background: var(--sand);
}

.section.cool {
  background: var(--cool);
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.card {
  flex: 1 1 280px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 700;
  color: var(--accent-dark);
}

.divider {
  height: 1px;
  background: var(--line);
  margin: 12px 0;
}

.form-shell {
  background: #fff;
  border-radius: 24px;
  padding: 28px;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-shell label {
  font-weight: 600;
}

.form-shell input,
.form-shell select,
.form-shell textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid var(--line);
  font-size: 1rem;
}

.form-shell button {
  align-self: flex-start;
}

.cta-strip {
  background: var(--ink);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  border-radius: 20px;
  gap: 16px;
}

.cta-strip a.btn {
  background: #fff;
  color: var(--ink);
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: var(--accent);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  z-index: 40;
}

.sticky-cta:hover,
.sticky-cta:focus {
  background: var(--accent-dark);
  color: #fff;
}

.footer {
  margin-top: auto;
  padding: 40px 0;
  border-top: 1px solid var(--line);
  background: #fff;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
  max-width: 360px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  z-index: 60;
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.image-frame {
  border-radius: 18px;
  overflow: hidden;
  background: var(--cool);
}

.frame-warm {
  background: #e8ddd1;
}

.frame-sand {
  background: #f0eadf;
}

.frame-cool {
  background: #dfe8ef;
}

.bg-abstract {
  background-image: url("https://images.unsplash.com/photo-1498050108023-c5249f4df085?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #fff;
}

.bg-abstract .lead,
.bg-abstract h2 {
  color: #fff;
}

.bg-abstract .cta-strip {
  background: rgba(28, 31, 36, 0.88);
}

.list {
  padding-left: 18px;
  color: var(--muted);
}

@media (max-width: 960px) {
  .split,
  .split.reverse {
    flex-direction: column;
  }

  .nav-links {
    display: none;
    width: 100%;
    padding-top: 14px;
  }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .nav {
    flex-wrap: wrap;
  }

  .nav-toggle {
    display: inline-flex;
  }
}
