* {
  box-sizing: border-box;
}

:root {
  --ink: #1f2428;
  --muted: #5a646e;
  --cream: #f6f2ee;
  --sage: #e2ebe3;
  --pebble: #f1f5f7;
  --clay: #f3e7dd;
  --accent: #2e6d4f;
  --accent-dark: #1d4734;
  --border: #dde3e7;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

a {
  color: var(--accent-dark);
  text-decoration: none;
}

header {
  padding: 24px 6vw 10px;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 18px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  border-left: 2px solid var(--accent);
  padding-left: 12px;
}

main {
  display: flex;
  flex-direction: column;
  gap: 48px;
  padding-bottom: 80px;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  padding: 10px 6vw 0;
  align-items: center;
}

.hero-text {
  flex: 1 1 320px;
  min-width: 260px;
}

.hero-text h1 {
  font-size: 2.8rem;
  line-height: 1.2;
  margin-bottom: 16px;
}

.hero-media {
  flex: 1 1 320px;
  min-width: 260px;
  background: var(--clay);
  padding: 18px;
  transform: translateY(12px);
}

.hero-media img {
  width: 100%;
  height: 360px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  background: var(--accent);
  color: #fff;
  border-radius: 24px;
  font-weight: 600;
}

.btn.secondary {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.section {
  padding: 0 6vw;
}

.offset-block {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  align-items: stretch;
}

.offset-card {
  flex: 1 1 260px;
  background: var(--sage);
  padding: 24px;
  border-radius: 28px;
  transform: translateY(-12px);
}

.offset-media {
  flex: 1 1 280px;
  background: var(--pebble);
  padding: 16px;
  border-radius: 32px;
}

.offset-media img {
  height: 280px;
}

.layered {
  background: var(--cream);
  padding: 36px 6vw;
  margin: 0 4vw;
  border-radius: 32px;
}

.bg-banner {
  background-image: url("https://images.unsplash.com/photo-1753685724244-8080b761bcde?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&ixid=M3w5NzM4NDF8MHwxfHNlYXJjaHwzM3x8VGllcnBmbGVnZSUyQyUyMGRpZSUyMGRlbiUyMEFsbHRhZyUyMGxlaWNodGVyJTIwbWFjaHR8ZGV8MHwwfHx8MTc4Mjg5NTE3MXww&ixlib=rb-4.1.0&q=80&w=1080");
  background-size: cover;
  background-position: center;
  background-color: #203028;
  color: #f7f7f7;
  border-radius: 32px;
  margin: 0 6vw;
  padding: 36px;
}

.bg-banner a {
  color: #f7f7f7;
  text-decoration: underline;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 220px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card-media {
  background: var(--clay);
  border-radius: 18px;
  overflow: hidden;
}

.card-media img {
  height: 170px;
}

.price {
  font-weight: 700;
  color: var(--accent-dark);
}

.form-wrap {
  background: var(--pebble);
  padding: 28px;
  border-radius: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid var(--border);
  font-size: 1rem;
  font-family: inherit;
}

.two-col {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.two-col > div {
  flex: 1 1 200px;
}

.sticky-cta {
  position: sticky;
  bottom: 0;
  background: #fff;
  border-top: 1px solid var(--border);
  padding: 12px 6vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.sticky-cta span {
  color: var(--muted);
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.contact-card {
  flex: 1 1 260px;
  background: var(--cream);
  padding: 22px;
  border-radius: 24px;
}

.legal-text {
  max-width: 820px;
}

footer {
  padding: 40px 6vw 60px;
  background: #111;
  color: #f0f0f0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

footer a {
  color: #f0f0f0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 16px;
  max-width: 320px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  display: none;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.cookie-actions button {
  border: none;
  padding: 8px 14px;
  border-radius: 18px;
  cursor: pointer;
  font-weight: 600;
}

.cookie-accept {
  background: var(--accent);
  color: #fff;
}

.cookie-reject {
  background: #f0f0f0;
}

@media (max-width: 760px) {
  .nav-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-text h1 {
    font-size: 2.2rem;
  }

  .sticky-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}
