* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1a1a1a;
  background-color: #f5f2ee;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.container {
  width: min(1180px, 92%);
  margin: 0 auto;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  gap: 20px;
}

.nav-brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.nav-brand strong {
  font-size: 1.15rem;
  letter-spacing: 0.02em;
}

.nav-menu {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
}

.nav-ad {
  font-size: 0.85rem;
  padding: 6px 10px;
  border-radius: 20px;
  background: #f0d7c6;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  padding: 40px 0 10px;
}

.hero-copy {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-card {
  flex: 1 1 320px;
  background: #fff;
  border-radius: 28px;
  padding: 26px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-image {
  border-radius: 22px;
  overflow: hidden;
  background-color: #d9c8b5;
}

.hero-image img {
  width: 100%;
  height: 320px;
}

.section {
  padding: 50px 0;
}

.section-alt {
  background: #efe7de;
}

.section-dark {
  background: #1f1f1f;
  color: #fdfbf9;
}

.section-title {
  font-size: clamp(1.6rem, 2.5vw, 2.3rem);
  margin-bottom: 18px;
}

.split-asym {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: stretch;
}

.split-asym .block {
  flex: 1 1 300px;
  padding: 24px;
  border-radius: 24px;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.split-asym .block.media {
  background: #fff;
  padding: 0;
  overflow: hidden;
}

.offset-panel {
  margin-top: -30px;
  background: #f7f1ea;
  border-radius: 24px;
  padding: 22px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.card {
  flex: 1 1 260px;
  background: #fff;
  border-radius: 20px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
}

.card img {
  width: 100%;
  height: 180px;
  border-radius: 16px;
}

.price {
  font-weight: 700;
  font-size: 1.1rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.btn {
  padding: 12px 18px;
  border-radius: 999px;
  background: #1f1f1f;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-light {
  background: #fff;
  color: #1f1f1f;
  border: 1px solid #1f1f1f;
}

.inline-link {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.sticky-cta {
  position: sticky;
  top: 20px;
  align-self: flex-start;
  background: #1f1f1f;
  color: #fff;
  padding: 18px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-wrap {
  background: #fff;
  border-radius: 22px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #c9c1b8;
  font-size: 1rem;
}

.footer {
  margin-top: auto;
  background: #121212;
  color: #e9e3dd;
  padding: 30px 0;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-col {
  flex: 1 1 200px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.legal-links {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
  padding: 16px;
  display: none;
  gap: 12px;
  z-index: 50;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.policy-block {
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  margin-bottom: 16px;
}

.image-frame {
  background-color: #d5c6b7;
  border-radius: 20px;
  overflow: hidden;
}

.image-frame img {
  width: 100%;
  height: 260px;
}

.notice {
  font-size: 0.95rem;
  background: #f7efe7;
  border-radius: 16px;
  padding: 14px;
}
