* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #1e1b17;
  background: #f6f2ee;
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: #1e1b17;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.site-header {
  background: #fff6ee;
  border-bottom: 1px solid #eaded1;
}

.nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 18px 6%;
  gap: 24px;
}

.nav-links {
  display: flex;
  flex-direction: row;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.nav-disclosure {
  font-size: 0.85rem;
  color: #5a5046;
  background: #f0e3d6;
  padding: 6px 10px;
  border-radius: 20px;
}

.hero {
  position: relative;
  display: flex;
  flex-direction: column;
}

.hero-image {
  min-height: 360px;
  background-color: #d7c7b6;
}

.hero-image img {
  height: 360px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  padding: 40px 6% 20px 6%;
  background: #fff6ee;
}

.hero-content h1 {
  font-size: 2.4rem;
  margin: 0 0 12px 0;
  max-width: 760px;
}

.hero-content p {
  max-width: 760px;
  margin: 0 0 20px 0;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: #1e1b17;
  color: #f9f4ef;
  border: none;
  border-radius: 999px;
  padding: 12px 20px;
  font-size: 0.95rem;
  cursor: pointer;
  z-index: 9;
  display: inline-block;
}

.content {
  display: flex;
  flex-direction: column;
  gap: 36px;
  padding: 40px 6% 60px 6%;
}

.article {
  display: flex;
  flex-direction: column;
  gap: 22px;
  max-width: 860px;
  margin: 0 auto;
}

.article-wide {
  max-width: 1040px;
}

.split {
  display: flex;
  flex-direction: row;
  gap: 26px;
  align-items: stretch;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > div {
  flex: 1 1 280px;
}

.image-frame {
  background: #e6d7c7;
  padding: 10px;
}

.image-frame img {
  width: 100%;
  height: 100%;
}

.card-row {
  display: flex;
  flex-direction: row;
  gap: 18px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 220px;
  background: #ffffff;
  border: 1px solid #eaded1;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card-image {
  background: #dfd1c4;
}

.card h3 {
  margin: 0;
  font-size: 1.1rem;
}

.price {
  font-weight: 600;
}

.cta-inline {
  font-weight: 600;
  border-bottom: 1px solid #1e1b17;
}

.cta-section {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: #f0e3d6;
  padding: 22px;
}

.background-block {
  background-color: #2a221b;
  background-image: url("https://images.unsplash.com/photo-1469474968028-56623f02e42e?w=1400&q=80");
  background-size: cover;
  background-position: center;
  padding: 32px;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.background-block .overlay {
  background: rgba(28, 23, 18, 0.7);
  padding: 20px;
}

.cta-section button {
  align-self: flex-start;
}

.button {
  background: #1e1b17;
  color: #f9f4ef;
  border: none;
  padding: 10px 18px;
  font-size: 1rem;
  cursor: pointer;
}

.form-wrap {
  background: #fff;
  border: 1px solid #eaded1;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-row input,
.form-row select,
.form-row textarea {
  padding: 10px;
  border: 1px solid #d4c6b8;
  font-size: 1rem;
}

.notice {
  background: #efe2d4;
  padding: 18px;
}

.site-footer {
  margin-top: auto;
  background: #1e1b17;
  color: #f9f4ef;
  padding: 30px 6%;
}

.footer-links {
  display: flex;
  flex-direction: row;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 0.9rem;
}

.references {
  font-size: 0.85rem;
  margin-top: 16px;
  color: #d9cfc3;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  background: #ffffff;
  border: 1px solid #eaded1;
  padding: 16px;
  max-width: 320px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 10px;
}

.cookie-actions button {
  flex: 1 1 auto;
}

.legal-block {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-block {
  background: #fff;
  border: 1px solid #eaded1;
  padding: 22px;
}

.hero-subtle {
  background: #f0e3d6;
  padding: 32px 6%;
}

.hero-subtle h1 {
  margin: 0 0 10px 0;
}
