* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1c2330;
  background: #f7f5f2;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  object-fit: cover;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.nav {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 6vw;
  align-items: center;
}

.nav-left,
.nav-right {
  display: flex;
  flex-direction: row;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.ad-label {
  font-size: 0.85rem;
  background: #e8dccf;
  padding: 6px 10px;
  border-radius: 999px;
}

.hero {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 32px;
  padding: 32px 6vw 48px;
}

.hero-copy {
  flex: 1.1;
  display: flex;
  flex-direction: column;
  gap: 18px;
  justify-content: center;
}

.hero-media {
  flex: 0.9;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-card {
  position: absolute;
  bottom: -18px;
  left: -18px;
  background: #fff3e6;
  padding: 14px 18px;
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  width: 70%;
}

.image-frame {
  background-color: #d9d3c8;
  border-radius: 22px;
  overflow: hidden;
}

.section {
  padding: 64px 6vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section.alt {
  background: #f1ede6;
}

.section.accent {
  background: #1c2330;
  color: #f7f5f2;
}

.split {
  display: flex;
  flex-direction: row;
  gap: 32px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.offset-card {
  background: #ffffff;
  padding: 24px;
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(28, 35, 48, 0.15);
  margin-left: -40px;
}

.stacked {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.pill {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: #f3cfa6;
  font-size: 0.85rem;
  align-self: flex-start;
}

.card-grid {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 24px;
}

.card {
  flex: 1 1 260px;
  background: #ffffff;
  border-radius: 18px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 16px 30px rgba(28, 35, 48, 0.08);
}

.card.dark {
  background: #2b3445;
  color: #f7f5f2;
}

.price {
  font-weight: 700;
  font-size: 1.1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: #1c2330;
  color: #f7f5f2;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.btn.secondary {
  background: #f3cfa6;
  color: #1c2330;
}

.btn.ghost {
  background: transparent;
  border: 1px solid #1c2330;
  color: #1c2330;
}

.cta-row {
  display: flex;
  flex-direction: row;
  gap: 16px;
  flex-wrap: wrap;
}

.inline-link {
  font-weight: 600;
  text-decoration: underline;
}

.form-wrapper {
  display: flex;
  flex-direction: row;
  gap: 32px;
  flex-wrap: wrap;
  align-items: flex-start;
}

form {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: #ffffff;
  padding: 24px;
  border-radius: 18px;
  box-shadow: 0 18px 34px rgba(28, 35, 48, 0.1);
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #c8c2b8;
  font-family: inherit;
}

.form-hint {
  font-size: 0.9rem;
  color: #4b5563;
}

.sticky-cta {
  position: sticky;
  bottom: 0;
  background: rgba(247, 245, 242, 0.95);
  display: flex;
  justify-content: center;
  padding: 12px 6vw;
  gap: 16px;
  border-top: 1px solid #e0dbd3;
}

.footer {
  margin-top: auto;
  padding: 40px 6vw;
  background: #161b26;
  color: #f7f5f2;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-links {
  display: flex;
  flex-direction: row;
  gap: 16px;
  flex-wrap: wrap;
}

.legal-note {
  font-size: 0.9rem;
  color: #c9ced8;
}

.cookie-banner {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: #ffffff;
  padding: 18px;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(28, 35, 48, 0.18);
  max-width: 320px;
  z-index: 999;
  display: none;
  flex-direction: column;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.notice {
  background: #fdf2e5;
  padding: 18px;
  border-radius: 16px;
  border: 1px solid #f1d5b8;
}

.two-col {
  display: flex;
  flex-direction: row;
  gap: 24px;
  flex-wrap: wrap;
}

.two-col > div {
  flex: 1 1 280px;
}

@media (max-width: 920px) {
  .hero,
  .split,
  .split.reverse {
    flex-direction: column;
  }

  .offset-card {
    margin-left: 0;
  }

  .hero-card {
    position: relative;
    left: 0;
    bottom: 0;
    width: 100%;
  }
}
