* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #101418;
  background-color: #f7f6f2;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.top-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 18px 0 10px;
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: lowercase;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 14px;
}

.ad-label {
  font-size: 12px;
  color: #515a66;
  background: #e5e2d6;
  padding: 8px 12px;
  border-radius: 999px;
}

.split {
  display: flex;
  gap: 32px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.split.gap-tight {
  gap: 12px;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text {
  flex: 1 1 360px;
}

.split .media {
  flex: 1 1 360px;
}

.image-frame {
  background-color: #d8d2c4;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
}

.frame-hero {
  height: 360px;
}

.frame-large {
  height: 340px;
}

.frame-medium {
  height: 300px;
}

.frame-tall {
  height: 320px;
}

.frame-card {
  height: 180px;
  margin-bottom: 12px;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero {
  padding: 42px 0 24px;
}

.hero h1 {
  font-size: 42px;
  margin: 0 0 12px;
  line-height: 1.1;
}

.hero p {
  font-size: 18px;
  color: #3c4652;
  margin-bottom: 20px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: #0f2c3b;
  color: #f7f6f2;
  font-weight: 600;
  border: 1px solid #0f2c3b;
}

.btn.secondary {
  background: transparent;
  color: #0f2c3b;
}

.section {
  padding: 36px 0;
}

.section-title {
  font-size: 26px;
  margin: 0 0 12px;
}

.note {
  font-size: 14px;
  color: #5a6572;
}

.panel {
  background: #ffffff;
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(15, 44, 59, 0.08);
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 16px 0 0;
}

.list-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.list-item span {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: #d4b06a;
  flex-shrink: 0;
  margin-top: 4px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 220px;
  background: #fdfcf8;
  border-radius: 20px;
  padding: 18px;
  border: 1px solid #e8e1d4;
}

.card h3 {
  margin-top: 0;
}

.price {
  font-weight: 700;
  color: #0f2c3b;
}

.inline-cta {
  color: #0f2c3b;
  text-decoration: underline;
  font-weight: 600;
}

.highlight {
  background: #f0eee7;
}

.footer {
  margin-top: auto;
  padding: 28px 0 40px;
  background: #101418;
  color: #f7f6f2;
}

.footer a {
  color: #f7f6f2;
  text-decoration: underline;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
  justify-content: space-between;
}

.disclaimer {
  font-size: 12px;
  color: #c6cbd2;
  margin-top: 16px;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form label {
  font-size: 14px;
  font-weight: 600;
}

.form input,
.form select,
.form textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #d7d1c6;
  font-size: 14px;
  font-family: inherit;
}

.form button {
  align-self: flex-start;
}

.sticky-cta {
  position: fixed;
  bottom: 16px;
  right: 16px;
  z-index: 10;
  background: #0f2c3b;
  color: #f7f6f2;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 14px;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  bottom: 16px;
  right: 16px;
  background: #ffffff;
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
  display: none;
  z-index: 12;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.legal-block {
  background: #ffffff;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

@media (max-width: 860px) {
  .hero h1 {
    font-size: 34px;
  }

  .nav-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .sticky-cta {
    left: 16px;
    right: auto;
  }
}
