* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1b1b1d;
  --muted: #5c6068;
  --light: #f4f2ee;
  --sand: #efe8df;
  --ocean: #23424e;
  --accent: #b85f3a;
  --cream: #fbf8f2;
}

body {
  font-family: "Segoe UI", "Inter", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.topbar {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 18px 6vw;
  background: var(--sand);
}

.nav-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  max-width: 520px;
}

.section {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 64px 6vw;
}

.section--split {
  flex-direction: row;
  align-items: stretch;
  gap: 32px;
}

.section--asymmetric {
  flex-direction: row;
  align-items: flex-start;
  gap: 36px;
}

.section--tight {
  padding-top: 40px;
  padding-bottom: 40px;
}

.section--bg {
  background-size: cover;
  background-position: center;
  color: #f7f5f2;
}

.section--bg .muted {
  color: #f1ece4;
}

.stack {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.stack--wide {
  gap: 28px;
}

.pill {
  display: inline-flex;
  align-self: flex-start;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--ocean);
  color: #fff;
  font-size: 0.8rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.headline {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  font-weight: 700;
  line-height: 1.1;
}

.subhead {
  font-size: 1.15rem;
  color: var(--muted);
}

.muted {
  color: var(--muted);
}

.panel {
  background: #fff;
  padding: 28px;
  border-radius: 16px;
  box-shadow: 0 14px 24px rgba(23, 23, 25, 0.08);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.panel--sand {
  background: var(--sand);
}

.panel--dark {
  background: #1c2b2f;
  color: #f4f1ec;
}

.offset {
  margin-top: 32px;
}

.media-block {
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}

.img-wrap {
  background: #d9d1c7;
  border-radius: 16px;
  overflow: hidden;
  width: 100%;
  height: 100%;
  min-height: 240px;
}

.img-wrap--tall {
  min-height: 360px;
}

.img-wrap--wide {
  min-height: 260px;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1;
  min-width: 220px;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 18px;
  box-shadow: 0 10px 18px rgba(23, 23, 25, 0.07);
}

.card .img-wrap {
  min-height: 160px;
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  background: var(--accent);
  color: #fff;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
}

.button--ghost {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form label {
  font-size: 0.9rem;
  color: var(--muted);
}

.form input,
.form select,
.form textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #d6cfc6;
  font-size: 0.95rem;
  background: #fff;
}

.form textarea {
  min-height: 120px;
  resize: vertical;
}

.footer {
  margin-top: auto;
  padding: 40px 6vw;
  background: var(--ocean);
  color: #f5f3ef;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.9rem;
}

.footer small {
  color: #e3ded6;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: var(--ocean);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 12px 20px rgba(23, 23, 25, 0.2);
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  max-width: 360px;
  background: #fff;
  border-radius: 14px;
  padding: 16px;
  box-shadow: 0 12px 24px rgba(23, 23, 25, 0.2);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.note {
  font-size: 0.85rem;
  color: var(--muted);
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 18px;
}

.list li {
  list-style: disc;
}

.divider {
  height: 1px;
  background: #ddd4c8;
  width: 100%;
}

.tag {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--accent);
}

.legal-header {
  min-height: 220px;
  display: flex;
  align-items: flex-end;
  padding: 48px 6vw;
  background-size: cover;
  background-position: center;
  color: #fff;
}

.bg-hero {
  background-image: url("https://images.unsplash.com/photo-1485217988980-11786ced9454?w=1400&q=80");
  background-color: #4a4a4f;
}

.bg-about {
  background-image: url("https://images.unsplash.com/photo-1520607162513-77705c0f0d4a?w=1400&q=80");
  background-color: #3b4a4f;
}

.bg-services {
  background-image: url("https://images.unsplash.com/photo-1519389950473-47ba0277781c?w=1400&q=80");
  background-color: #2f3f45;
}

.bg-privacy {
  background-image: url("https://images.unsplash.com/photo-1507679799987-c73779587ccf?w=1400&q=80");
  background-color: #3c4347;
}

.bg-gdpr {
  background-image: url("https://images.unsplash.com/photo-1446776811953-b23d57bd21aa?w=1400&q=80");
  background-color: #3a3e44;
}

.bg-cookies {
  background-image: url("https://images.unsplash.com/photo-1469474968028-56623f02e42e?w=1400&q=80");
  background-color: #444744;
}

.bg-terms {
  background-image: url("https://images.unsplash.com/photo-1503676260728-1c00da094a0b?w=1400&q=80");
  background-color: #454a50;
}

@media (max-width: 900px) {
  .section--split,
  .section--asymmetric {
    flex-direction: column;
  }

  .sticky-cta {
    position: static;
    margin: 12px auto 0;
    width: max-content;
  }
}
