* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #2b2a28;
  background: #f6f3ee;
}

img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

a {
  color: #2b2a28;
  text-decoration: none;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.nav {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.nav-brand {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav-ad {
  font-size: 0.85rem;
  background: #efe7dc;
  padding: 8px 12px;
  border-radius: 999px;
}

.nav-links {
  display: flex;
  gap: 16px;
  font-size: 0.95rem;
}

.hero {
  padding: 40px 0 20px;
}

.split {
  display: flex;
  gap: 32px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split-text {
  flex: 1;
}

.split-media {
  flex: 1;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: #5c564f;
}

h1,
h2,
h3 {
  margin: 12px 0;
}

h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

h2 {
  font-size: clamp(1.5rem, 3vw, 2.4rem);
}

p {
  line-height: 1.6;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid #2b2a28;
  background: #2b2a28;
  color: #f6f3ee;
  font-weight: 600;
}

.button.secondary {
  background: transparent;
  color: #2b2a28;
}

.inline-link {
  font-weight: 600;
  border-bottom: 1px solid #2b2a28;
}

.section {
  padding: 60px 0;
}

.section.tight {
  padding: 40px 0;
}

.bg-texture {
  background-image: url("https://images.unsplash.com/photo-1642781319034-04153f7a0e09?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #f6f3ee;
}

.layered {
  position: relative;
  overflow: hidden;
}

.layered::before {
  content: "";
  position: absolute;
  inset: 10% 55% 10% -15%;
  background: rgba(255, 255, 255, 0.18);
  transform: rotate(-4deg);
}

.layered > .container {
  position: relative;
  z-index: 1;
}

.card-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 220px;
  background: #ffffff;
  border-radius: 20px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid #e4ded4;
}

.card .image-frame {
  height: 150px;
  border-radius: 16px;
  overflow: hidden;
  background-color: #e3ddd2;
}

.price {
  font-weight: 700;
  color: #2b2a28;
}

.image-frame {
  height: 360px;
  border-radius: 24px;
  overflow: hidden;
  background-color: #e3ddd2;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cta-row {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.list-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.list-bullet {
  width: 14px;
  height: 14px;
  border-radius: 4px;
  background: #b58b63;
  margin-top: 6px;
}

.form-shell {
  background: #ffffff;
  border-radius: 24px;
  padding: 24px;
  border: 1px solid #e4ded4;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.9rem;
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #ccc3b6;
  font-size: 1rem;
  font-family: inherit;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 20;
  padding: 12px 18px;
  border-radius: 999px;
  border: none;
  background: #b58b63;
  color: #fff9f2;
  font-weight: 600;
  cursor: pointer;
}

.footer {
  margin-top: auto;
  padding: 30px 0 50px;
  background: #efe7dc;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: #ffffff;
  padding: 16px;
  border-radius: 16px;
  border: 1px solid #e4ded4;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 12px;
}

.cookie-actions button {
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid #2b2a28;
  background: #2b2a28;
  color: #ffffff;
  font-weight: 600;
  cursor: pointer;
}

.cookie-actions button.secondary {
  background: transparent;
  color: #2b2a28;
}

@media (max-width: 900px) {
  .split,
  .split.reverse {
    flex-direction: column;
  }

  .image-frame {
    height: 260px;
  }

  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}
[hidden] {
  display: none !important;
}