* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1a1d21;
  background: #f7f5f2;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 6vw;
  background: #f7f5f2;
  border-bottom: 1px solid #e4e1da;
}

.brand {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
}

.ad-label {
  font-size: 0.82rem;
  background: #121417;
  color: #f7f5f2;
  padding: 6px 10px;
  border-radius: 999px;
}

.hero {
  position: relative;
  min-height: 70vh;
  padding: 90px 6vw;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #f7f5f2;
  background-size: cover;
  background-position: center;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.15));
}

.hero-content {
  position: relative;
  max-width: 640px;
}

.hero h1 {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  margin-bottom: 12px;
}

.hero p {
  margin-top: 0;
  font-size: 1.1rem;
}

.btn,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid #121417;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn {
  background: #f7f5f2;
  color: #121417;
}

.btn-secondary {
  background: transparent;
  color: #f7f5f2;
  border-color: #f7f5f2;
}

.btn:hover,
.btn-secondary:hover {
  transform: translateY(-2px);
}

.section {
  padding: 72px 6vw;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.section.alt {
  background: #ffffff;
}

.split {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text,
.split .media {
  flex: 1 1 320px;
}

.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.card {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 14px 30px rgba(12, 15, 18, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  border-radius: 14px;
  height: 180px;
  width: 100%;
}

.price {
  font-weight: 700;
  font-size: 1.1rem;
}

.quote {
  border-left: 3px solid #121417;
  padding-left: 16px;
  font-style: italic;
}

.cta-strip {
  background: #121417;
  color: #f7f5f2;
  padding: 28px;
  border-radius: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
}

.form-wrap {
  background: #ffffff;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 20px 40px rgba(12, 15, 18, 0.08);
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #c8c2b8;
  font-size: 1rem;
}

.inline-link {
  text-decoration: underline;
}

.footer {
  padding: 40px 6vw;
  background: #121417;
  color: #f7f5f2;
  margin-top: auto;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: #ffffff;
  border-radius: 999px;
  padding: 10px 16px;
  box-shadow: 0 14px 24px rgba(12, 15, 18, 0.18);
  display: flex;
  gap: 10px;
  align-items: center;
  z-index: 5;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  background: #ffffff;
  padding: 16px 18px;
  border-radius: 16px;
  box-shadow: 0 18px 28px rgba(12, 15, 18, 0.2);
  max-width: 320px;
  display: none;
  z-index: 6;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.bg-hero {
  background-image: url("https://images.unsplash.com/photo-1542291026-7eec264c27ff?w=1400&q=80");
}

.bg-story {
  background-image: url("https://images.unsplash.com/photo-1525966222134-fcfa99b8ae77?w=1400&q=80");
}

.bg-insight {
  background-image: url("https://images.unsplash.com/photo-1526170375885-4d8ecf77b99f?w=1400&q=80");
}

.bg-trust {
  background-image: url("https://images.unsplash.com/photo-1491553895911-0055eca6402d?w=1400&q=80");
}

.bg-about {
  background-image: url("https://images.unsplash.com/photo-1519681393784-d120267933ba?w=1400&q=80");
}

.bg-services {
  background-image: url("https://images.unsplash.com/photo-1512436991641-6745cdb1723f?w=1400&q=80");
}

.bg-contact {
  background-image: url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=1400&q=80");
}

.bg-legal {
  background-image: url("https://images.pexels.com/photos/30476469/pexels-photo-30476469.jpeg");
}

.bg-policy {
  background-image: url("https://images.unsplash.com/photo-1502134249126-9f3755a50d78?w=1400&q=80");
}

.bg-privacy {
  background-image: url("https://images.unsplash.com/photo-1504805572947-34fad45aed93?w=1400&q=80");
}

.bg-gdpr {
  background-image: url("https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?w=1400&q=80");
}

.bg-cookies {
  background-image: url("https://images.unsplash.com/photo-1529333166437-7750a6dd5a70?w=1400&q=80");
}

.bg-terms {
  background-image: url("https://images.unsplash.com/photo-1515378791036-0648a3ef77b2?w=1400&q=80");
}

.image-frame {
  background: #e8e3d8;
  border-radius: 20px;
  padding: 12px;
}

.image-frame img {
  width: 100%;
  height: 320px;
  border-radius: 16px;
}

.meta-note {
  font-size: 0.9rem;
  color: #50565d;
}
