* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  color: #1b1f2a;
  background: #f6f3ef;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

header {
  padding: 24px 6vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: #f6f3ef;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand-title {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand-sub {
  font-size: 0.9rem;
  color: #5b606d;
}

.ad-label {
  font-size: 0.82rem;
  padding: 6px 10px;
  border: 1px solid #8d8f96;
  border-radius: 999px;
  background: #ffffff;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.nav-links a {
  padding: 6px 8px;
  border-radius: 16px;
}

.nav-links a:hover {
  background: #e6e0d6;
}

.hero {
  padding: 40px 6vw 20px;
}

.section {
  padding: 44px 6vw;
}

.section.alt {
  background: #ffffff;
}

.bg-brief {
  background-image: url("https://images.unsplash.com/photo-1496307042754-b4aa456c4a2d?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-blend-mode: multiply;
  background-color: #f2ede6;
}

.bg-brief .text {
  background: rgba(255, 255, 255, 0.88);
  padding: 18px;
  border-radius: 16px;
}

.split {
  display: flex;
  gap: 36px;
  align-items: stretch;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text,
.split .media {
  flex: 1 1 320px;
  min-width: 280px;
}

.text h1,
.text h2,
.text h3 {
  margin-top: 0;
}

.tagline {
  font-size: 1.1rem;
  color: #555a66;
}

.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.btn {
  padding: 12px 18px;
  border-radius: 24px;
  border: none;
  background: #24324a;
  color: #ffffff;
  font-weight: 600;
  cursor: pointer;
}

.btn.light {
  background: #f0c06d;
  color: #2d2a22;
}

.btn.outline {
  background: transparent;
  border: 1px solid #24324a;
  color: #24324a;
}

.btn:hover {
  filter: brightness(0.95);
}

.media-frame {
  background: #d9d2c5;
  border-radius: 22px;
  overflow: hidden;
  min-height: 240px;
  display: flex;
}

.media-frame img {
  width: 100%;
  height: 100%;
}

.cards {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 220px;
  background: #ffffff;
  border-radius: 20px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}

.card .price {
  font-weight: 700;
  color: #2d2a22;
}

.price {
  font-weight: 700;
  color: #2d2a22;
}

.card-image {
  background: #d8d2c7;
  border-radius: 16px;
  overflow: hidden;
  height: 160px;
  display: flex;
}

.pill {
  display: inline-flex;
  padding: 6px 12px;
  background: #e6e0d6;
  border-radius: 999px;
  font-size: 0.85rem;
}

.form-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #c8c4bc;
  font-size: 1rem;
}

textarea {
  resize: vertical;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  padding: 12px 16px;
  background: #f0c06d;
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
  font-weight: 600;
  z-index: 10;
}

.sticky-cta:hover {
  filter: brightness(0.95);
}

footer {
  padding: 36px 6vw 48px;
  background: #1f2430;
  color: #f2f2f2;
}

.footer-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.footer-grid div {
  flex: 1 1 220px;
}

.legal-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: #ffffff;
  padding: 16px;
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
  display: none;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.inline-link {
  text-decoration: underline;
}

.notice {
  background: #fef7e6;
  border-radius: 16px;
  padding: 14px 18px;
}

.stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.split-list {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.split-list div {
  flex: 1 1 200px;
}
