* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: #1b1b1b;
  background: #f8f5f1;
  line-height: 1.6;
}

a {
  color: #1b1b1b;
  text-decoration: underline;
}

header {
  padding: 24px 6vw 10px;
  position: relative;
}

.nav-shell {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
}

.brand-block {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand-title {
  font-size: 1.4rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.ad-label {
  font-size: 0.85rem;
  color: #5a4c41;
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: flex-end;
  font-size: 0.95rem;
}

main {
  padding: 0 6vw 80px;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  margin-top: 30px;
  position: relative;
}

.hero-copy {
  flex: 1 1 320px;
  min-width: 280px;
}

.hero-title {
  font-size: 2.6rem;
  line-height: 1.2;
  margin: 0 0 16px;
}

.hero-card {
  background: #ffffff;
  padding: 24px;
  border-radius: 14px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.hero-image {
  flex: 1 1 360px;
  min-width: 320px;
  position: relative;
  background-color: #d6d2cc;
  border-radius: 18px;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 20px;
}

.button {
  background: #1f3b2c;
  color: #fff;
  border: none;
  padding: 12px 22px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.95rem;
}

.button.secondary {
  background: #f1dfc7;
  color: #1b1b1b;
}

.button:hover,
.button:focus {
  filter: brightness(0.95);
}

.section {
  margin-top: 70px;
  position: relative;
}

.section-tag {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  color: #6a5b4f;
  margin-bottom: 12px;
}

.asymmetric {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: stretch;
}

.offset-block {
  flex: 1 1 320px;
  background: #fff;
  padding: 26px;
  border-radius: 16px;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.06);
}

.offset-block.highlight {
  margin-top: 30px;
  background: #1f3b2c;
  color: #fff;
}

.offset-block.highlight a {
  color: #fff;
}

.inline-image {
  flex: 1 1 260px;
  background-color: #cfd7d5;
  border-radius: 16px;
  overflow: hidden;
}

.inline-image img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
}

.card-image {
  background-color: #c9c1b8;
}

.card-image img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 600;
  color: #1f3b2c;
}

.split-band {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  background: #efe7dd;
  padding: 28px;
  border-radius: 18px;
}

.split-band .text {
  flex: 1 1 280px;
}

.split-band .detail {
  flex: 1 1 260px;
  background: #fff;
  border-radius: 14px;
  padding: 18px;
}

.bg-vision {
  background-image: url("https://images.unsplash.com/photo-1487014679447-9f8336841d58?w=1400&q=80");
  background-color: #4a4f4b;
  background-size: cover;
  background-position: center;
  border-radius: 18px;
  padding: 40px;
  color: #ffffff;
  min-height: 260px;
  position: relative;
}

.bg-vision::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(20, 28, 24, 0.55);
  border-radius: 18px;
}

.bg-vision-content {
  position: relative;
  max-width: 520px;
}

.sticky-column {
  flex: 1 1 220px;
}

.sticky-cta {
  position: sticky;
  top: 24px;
  background: #1f3b2c;
  color: #fff;
  padding: 18px;
  border-radius: 16px;
}

.sticky-cta p {
  margin-top: 0;
}

.form-wrap {
  flex: 2 1 320px;
  background: #fff;
  padding: 26px;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.9rem;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #d2c9bd;
  font-size: 0.95rem;
  font-family: inherit;
}

textarea {
  min-height: 110px;
  resize: vertical;
}

.footer {
  background: #1b1b1b;
  color: #f5f1ea;
  padding: 40px 6vw;
}

.footer a {
  color: #f5f1ea;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}

.footer-col {
  flex: 1 1 220px;
}

.disclaimer {
  font-size: 0.85rem;
  margin-top: 18px;
  color: #d6c9bb;
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  right: 16px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.2);
  padding: 16px;
  max-width: 320px;
  display: none;
  z-index: 100;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.banner-button {
  flex: 1;
  border: none;
  padding: 8px 12px;
  border-radius: 10px;
  cursor: pointer;
}

.banner-button.accept {
  background: #1f3b2c;
  color: #fff;
}

.banner-button.reject {
  background: #f1dfc7;
  color: #1b1b1b;
}

.banner-button:hover,
.banner-button:focus {
  filter: brightness(0.95);
}

.note {
  background: #f5efe7;
  padding: 16px;
  border-radius: 12px;
}

.tiny {
  font-size: 0.85rem;
}

.page-hero {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  align-items: flex-start;
  margin-top: 26px;
}

.page-hero-image {
  flex: 1 1 300px;
  background-color: #d5d0c9;
  border-radius: 18px;
  overflow: hidden;
}

.page-hero-image img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

.spacer {
  height: 20px;
}

@media (max-width: 900px) {
  .hero-title {
    font-size: 2.1rem;
  }

  nav {
    justify-content: flex-start;
  }
}
