* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1c1f24;
  --muted: #5b6470;
  --accent: #2f6d66;
  --accent-dark: #244f4a;
  --soft: #f3f1ec;
  --sun: #f6d694;
  --mist: #e6eef0;
}

body {
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: #fcfbf8;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

header {
  padding: 28px 6vw 10px;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.4px;
}

.nav-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  background: var(--soft);
  padding: 6px 10px;
  border-radius: 999px;
}

.hero {
  padding: 40px 6vw 70px;
}

.hero-inner {
  display: flex;
  gap: 30px;
  align-items: stretch;
  flex-wrap: wrap;
}

.hero-text {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 20px 0;
}

.hero-text h1 {
  font-size: clamp(2rem, 3vw, 3.1rem);
  line-height: 1.2;
}

.hero-media {
  flex: 1 1 320px;
  position: relative;
  background: #d6dde0;
  border-radius: 24px;
  overflow: hidden;
  min-height: 340px;
}

.hero-card {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(255, 255, 255, 0.94);
  padding: 16px 18px;
  border-radius: 16px;
  max-width: 260px;
  font-size: 0.95rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  border: none;
}

.btn.alt {
  background: var(--accent-dark);
}

.section {
  padding: 60px 6vw;
}

.section.soft {
  background: var(--soft);
}

.section.mist {
  background: var(--mist);
}

.offset-row {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  align-items: center;
}

.offset-row.reverse {
  flex-direction: row-reverse;
}

.offset-text {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.offset-media {
  flex: 1 1 280px;
  background: #dfe7ea;
  border-radius: 22px;
  overflow: hidden;
  min-height: 260px;
}

.note {
  padding: 18px 22px;
  background: #fff;
  border-left: 4px solid var(--accent);
  font-size: 0.98rem;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 240px;
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 220px;
}

.card .price {
  font-weight: 700;
  color: var(--accent-dark);
}

.card-media {
  background: #e2e2e2;
  border-radius: 14px;
  overflow: hidden;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.split-band {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: stretch;
}

.band {
  flex: 1 1 300px;
  padding: 22px;
  border-radius: 18px;
  background: #fff;
}

.band.dark {
  background: var(--accent);
  color: #fff;
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 560px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-size: 0.95rem;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #cbd2d6;
  font-size: 1rem;
  background: #fff;
}

.inline-link {
  color: var(--accent-dark);
  text-decoration: underline;
}

.floating-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 20;
}

.floating-cta a {
  background: var(--sun);
  color: #5c4105;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 600;
  display: inline-flex;
}

footer {
  padding: 30px 6vw 50px;
  background: #191c20;
  color: #f5f5f5;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.disclaimer {
  font-size: 0.85rem;
  color: #cfd5db;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
  max-width: 320px;
  z-index: 25;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions button {
  flex: 1;
  padding: 8px 10px;
  border-radius: 10px;
  border: none;
  font-weight: 600;
}

.cookie-actions .accept {
  background: var(--accent);
  color: #fff;
}

.cookie-actions .reject {
  background: #d8dde3;
}

.simple-hero {
  padding: 40px 6vw;
}

.simple-hero h1 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.legal {
  padding: 40px 6vw 70px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-block {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #fff;
  padding: 20px;
  border-radius: 16px;
}

@media (max-width: 860px) {
  .floating-cta {
    right: 12px;
    bottom: 12px;
  }
}
