* {
  box-sizing: border-box;
}

:root {
  --bg: #f7f4ef;
  --ink: #1c1a17;
  --muted: #5a534c;
  --accent: #2a6f97;
  --accent-2: #c97c5d;
  --paper: #ffffff;
  --sand: #efe7dc;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  object-fit: cover;
}

.container {
  width: min(1160px, 92%);
  margin: 0 auto;
}

.topbar {
  padding: 20px 0 0;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 24px;
  background: var(--paper);
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.brand span {
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--muted);
}

.menu {
  display: flex;
  gap: 18px;
  font-size: 14px;
}

.ad-label {
  font-size: 12px;
  color: var(--muted);
  max-width: 220px;
  text-align: right;
}

.hero {
  margin-top: 28px;
  border-radius: 24px;
  overflow: hidden;
  background: #dfe5eb;
  position: relative;
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(28, 26, 23, 0.7), rgba(28, 26, 23, 0.1));
}

.hero-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 64px;
  min-height: 420px;
  color: #fff;
}

.hero-text {
  max-width: 540px;
}

.hero-text h1 {
  font-size: clamp(32px, 4vw, 52px);
  margin: 0 0 16px;
}

.hero-text p {
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.85);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}

.btn.primary {
  background: var(--accent);
  color: #fff;
}

.btn.secondary {
  border-color: #fff;
  color: #fff;
  background: transparent;
}

.btn.tertiary {
  border-color: var(--accent);
  color: var(--accent);
  background: transparent;
}

.split {
  display: flex;
  gap: 32px;
  align-items: center;
  padding: 64px 0;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text {
  flex: 1;
}

.split .media {
  flex: 1;
  border-radius: 18px;
  overflow: hidden;
  background: #d9d4cc;
  min-height: 320px;
  box-shadow: var(--shadow);
}

.split .media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-card {
  background: var(--paper);
  border-radius: 20px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 280px;
  background: var(--paper);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.card .card-media {
  background: #e6e0d9;
  min-height: 180px;
}

.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.card .card-body {
  padding: 20px;
}

.pricing {
  font-weight: 700;
  color: var(--accent-2);
}

.badge {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--sand);
  color: var(--muted);
  font-size: 12px;
  margin-bottom: 12px;
}

.form-wrap {
  background: var(--paper);
  border-radius: 24px;
  padding: 32px;
  box-shadow: var(--shadow);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #d6d0c8;
  font-size: 15px;
  font-family: inherit;
  background: #fff;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.footer {
  margin-top: 80px;
  padding: 40px 0 60px;
  background: #12110f;
  color: #f0ece6;
}

.footer a {
  color: #f0ece6;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.footer small {
  color: #cfc8bf;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 10;
}

.sticky-cta a {
  background: var(--accent-2);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: var(--shadow);
  font-weight: 600;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  max-width: 360px;
  background: #ffffff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: var(--shadow);
  display: none;
  z-index: 12;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions button {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid #d6d0c8;
  background: #fff;
  cursor: pointer;
}

.cookie-actions button.primary {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.page-hero {
  margin: 40px auto 20px;
  border-radius: 20px;
  overflow: hidden;
  background: #ded9d1;
  min-height: 260px;
  box-shadow: var(--shadow);
}

.page-hero img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.legal {
  background: var(--paper);
  border-radius: 18px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.inline-link {
  color: var(--accent);
  text-decoration: underline;
}

@media (max-width: 960px) {
  .split {
    flex-direction: column;
  }

  .split.reverse {
    flex-direction: column;
  }

  .hero-inner {
    padding: 48px 32px;
    flex-direction: column;
    align-items: flex-start;
  }

  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .menu {
    flex-wrap: wrap;
  }

  .ad-label {
    text-align: left;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}
