* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Tahoma, Arial, sans-serif;
  color: #1f2428;
  background-color: #f6f4f1;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 6vw;
  background-color: #ffffff;
  border-bottom: 1px solid #e5e1dc;
}

.brand {
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
}

.ad-label {
  font-size: 0.75rem;
  color: #6b625b;
  padding: 4px 10px;
  border: 1px solid #d6d1cb;
  border-radius: 999px;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  padding: 50px 6vw 20px;
  align-items: stretch;
}

.hero-copy {
  flex: 1 1 360px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.hero-copy h1 {
  font-size: 2.6rem;
  margin: 0;
  line-height: 1.2;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.button {
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid #1f2428;
  background-color: #1f2428;
  color: #ffffff;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.button.secondary {
  background-color: transparent;
  color: #1f2428;
}

.button:hover,
.nav-links a:hover {
  opacity: 0.82;
}

.hero-image {
  flex: 1 1 340px;
  min-height: 360px;
  border-radius: 18px;
  overflow: hidden;
  background-color: #d9d1c7;
  position: relative;
}

.hero-image .caption {
  position: absolute;
  bottom: 16px;
  left: 18px;
  background-color: rgba(255, 255, 255, 0.85);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
}

.section {
  padding: 50px 6vw;
}

.section.alt {
  background-color: #ffffff;
}

.section-title {
  font-size: 1.8rem;
  margin: 0 0 14px;
}

.asym-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
}

.asym-row .block {
  flex: 1 1 280px;
  background-color: #efe9e1;
  padding: 24px;
  border-radius: 18px;
}

.asym-row .block.wide {
  flex: 2 1 420px;
  background-color: #e4ded7;
}

.image-card {
  border-radius: 16px;
  overflow: hidden;
  background-color: #e0d8cf;
  min-height: 240px;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.feature-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-bottom: 12px;
  border-bottom: 1px solid #d9d1c7;
}

.offset-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.offset-card {
  flex: 1 1 220px;
  padding: 18px;
  border-radius: 16px;
  background-color: #ffffff;
  border: 1px solid #e5e1dc;
}

.offset-card img {
  width: 100%;
  height: 160px;
  border-radius: 12px;
  background-color: #ded5cb;
}

.offset-card .price {
  font-weight: 700;
  margin-top: 6px;
}

.floating-panel {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background-color: #1f2428;
  color: #ffffff;
  padding: 22px;
  border-radius: 18px;
}

.floating-panel a {
  color: #ffffff;
  text-decoration: underline;
}

.form-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
}

.form-box {
  flex: 1 1 320px;
  background-color: #ffffff;
  padding: 22px;
  border-radius: 16px;
  border: 1px solid #e5e1dc;
}

.form-box label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
}

.form-box input,
.form-box select,
.form-box textarea {
  width: 100%;
  padding: 10px 12px;
  margin-bottom: 14px;
  border-radius: 10px;
  border: 1px solid #d6d1cb;
  font-family: inherit;
}

.footer {
  margin-top: auto;
  padding: 32px 6vw;
  background-color: #14181b;
  color: #f0ece7;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 12px;
}

.footer small {
  color: #c8c1b7;
}

.sticky-cta {
  position: fixed;
  bottom: 22px;
  right: 22px;
  background-color: #cc7a4a;
  color: #ffffff;
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.18);
  z-index: 100;
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background-color: #ffffff;
  border: 1px solid #e5e1dc;
  border-radius: 16px;
  padding: 16px;
  display: none;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  z-index: 120;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-actions .button {
  padding: 8px 14px;
}

.page-title {
  padding: 30px 6vw 10px;
}

.page-title h1 {
  margin: 0;
  font-size: 2.2rem;
}

.content-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.content-columns .column {
  flex: 1 1 260px;
  background-color: #ffffff;
  padding: 20px;
  border-radius: 16px;
  border: 1px solid #e5e1dc;
}

.contact-block {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background-color: #ffffff;
  padding: 20px;
  border-radius: 16px;
  border: 1px solid #e5e1dc;
}

.legal-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.legal-list p {
  margin: 0;
}

.notice {
  background-color: #f1e6da;
  padding: 16px;
  border-radius: 14px;
}

.thanks-box {
  background-color: #ffffff;
  padding: 26px;
  border-radius: 18px;
  border: 1px solid #e5e1dc;
  max-width: 760px;
}

.muted {
  color: #6b625b;
}
