/* Base */
* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #1e1e1e;
  background: #f7f4ef;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 6vw;
  background: #efe7da;
  border-bottom: 1px solid #d9cfc1;
}

.brand {
  font-size: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
}

.ad-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #5b4c3a;
}

.nav {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 14px;
}

.nav a {
  padding: 6px 10px;
  background: #f7f4ef;
  border: 1px solid #d9cfc1;
}

.hero {
  display: flex;
  flex-direction: column;
  padding: 70px 6vw 40px;
  background: #e7ddd0;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  right: -80px;
  top: 40px;
  width: 380px;
  height: 380px;
  background-color: #d8cfc0;
  background-image: url("https://images.unsplash.com/photo-1505691938895-1758d7feb511?w=1400&q=80");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 6px;
  box-shadow: 0 30px 50px rgba(0,0,0,0.2);
}

.hero-inner {
  max-width: 620px;
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 44px;
  margin: 0 0 16px;
}

.hero p {
  font-size: 18px;
  line-height: 1.6;
  margin: 0 0 18px;
}

.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 18px;
  border: 1px solid #1e1e1e;
  background: #1e1e1e;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn.secondary {
  background: transparent;
  color: #1e1e1e;
}

.section {
  padding: 60px 6vw;
  position: relative;
}

.section.alt {
  background: #fff8ee;
}

.asym-row {
  display: flex;
  gap: 30px;
  align-items: stretch;
  flex-wrap: wrap;
}

.asym-row.reverse {
  flex-direction: row-reverse;
}

.text-block {
  flex: 1 1 320px;
}

.image-frame {
  flex: 1 1 280px;
  background: #d8cfc0;
  padding: 12px;
  transform: translateY(20px);
}

.image-frame.offset {
  transform: translateY(-30px);
}

.image-frame img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.callout {
  background: #fff;
  border: 1px solid #d9cfc1;
  padding: 24px;
  transform: translateX(20px);
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 220px;
  background: #fff;
  border: 1px solid #d9cfc1;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.image-box {
  background: #d8cfc0;
  padding: 8px;
}

.image-box img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.price {
  font-weight: 700;
}

.form-wrap {
  background: #1e1e1e;
  color: #fff;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-wrap input,
.form-wrap select {
  width: 100%;
  padding: 10px;
  border: none;
}

.form-wrap button {
  padding: 12px 18px;
  background: #f2c35b;
  border: none;
  cursor: pointer;
}

.divider {
  height: 1px;
  background: #d9cfc1;
  margin: 24px 0;
}

.footer {
  padding: 30px 6vw;
  background: #efe7da;
  margin-top: auto;
  font-size: 13px;
  line-height: 1.6;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 12px;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: #1e1e1e;
  color: #fff;
  padding: 10px 14px;
  z-index: 20;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  background: #fff;
  border: 1px solid #d9cfc1;
  padding: 16px;
  z-index: 30;
  max-width: 320px;
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.cookie-actions button {
  padding: 8px 10px;
  border: 1px solid #1e1e1e;
  background: #1e1e1e;
  color: #fff;
  cursor: pointer;
}

.cookie-actions .reject {
  background: transparent;
  color: #1e1e1e;
}

.page-title {
  font-size: 34px;
  margin-bottom: 8px;
}

.note {
  font-size: 14px;
  color: #463a2e;
}

.simple-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.highlight-panel {
  background: #fff;
  border-left: 4px solid #f2c35b;
  padding: 16px;
}
