* {
  box-sizing: border-box;
}

:root {
  --ink: #1b1b1b;
  --muted: #5b6168;
  --accent: #1f6e5e;
  --accent-soft: #d9f2ea;
  --sand: #f6f1ea;
  --fog: #eef0f2;
  --sun: #f6d68b;
  --berry: #c46b6b;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

header {
  padding: 28px 6vw 12px;
}

.nav-wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
}

.brand {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 14px;
}

.ad-label {
  margin-left: auto;
  font-size: 12px;
  color: var(--muted);
  max-width: 220px;
}

.hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: flex-end;
  padding: 120px 6vw 60px;
  color: #fff;
  overflow: hidden;
  background-color: #3b3f44;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.15));
}

.hero-bg {
  background: url("https://images.unsplash.com/photo-1507089947368-19c1da9775ae?w=1400&q=80") center/cover no-repeat;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 560px;
}

.hero h1 {
  font-size: 46px;
  margin: 0 0 16px;
}

.hero p {
  margin: 0 0 28px;
  font-size: 18px;
}

.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 30px;
  font-weight: 600;
  background: var(--sun);
  color: var(--ink);
  border: 0;
  cursor: pointer;
}

.btn-secondary {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.6);
  color: #fff;
}

.section {
  padding: 70px 6vw;
}

.bg-layer-one {
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.7)),
    url("https://images.unsplash.com/photo-1519710164239-da123dc03ef4?w=1400&q=80") center/cover no-repeat;
}

.section.asym {
  display: flex;
  gap: 40px;
  align-items: center;
}

.offset-panel {
  flex: 1;
  background: var(--sand);
  padding: 40px;
  border-radius: 24px;
  margin-top: -40px;
}

.offset-image {
  flex: 1;
  background-color: var(--fog);
  border-radius: 28px;
  overflow: hidden;
  transform: translateY(30px);
}

.offset-image img {
  width: 100%;
  height: 420px;
}

.split-tilt {
  display: flex;
  gap: 30px;
  align-items: stretch;
}

.split-tilt .pane {
  flex: 1;
  padding: 30px;
  border-radius: 22px;
  background: var(--fog);
}

.split-tilt .pane.accent {
  background: var(--accent-soft);
}

.cards {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 260px;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card-image {
  background-color: #dfe4ea;
}

.card-image img {
  width: 100%;
  height: 200px;
}

.card-body {
  padding: 20px;
}

.price-tag {
  font-weight: 700;
  color: var(--accent);
}

.floating-cta {
  position: sticky;
  top: 20px;
  margin-left: auto;
  background: #fff;
  border: 1px solid #e2e5e9;
  padding: 16px 18px;
  border-radius: 18px;
  max-width: 220px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.image-strip {
  display: flex;
  gap: 18px;
  align-items: stretch;
}

.image-strip .strip-photo {
  flex: 1;
  border-radius: 20px;
  overflow: hidden;
  background-color: #e5e0d7;
}

.image-strip img {
  width: 100%;
  height: 240px;
}

.form-wrap {
  display: flex;
  gap: 36px;
  align-items: flex-start;
}

.form-box {
  flex: 1;
  background: var(--fog);
  padding: 32px;
  border-radius: 22px;
}

.form-box form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 14px;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d7dbe0;
  font-size: 14px;
}

.note {
  font-size: 13px;
  color: var(--muted);
}

.footer {
  padding: 50px 6vw 70px;
  background: #111;
  color: #f3f3f3;
}

.footer-columns {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.footer small {
  color: #c9c9c9;
}

.inline-cta {
  color: var(--accent);
  text-decoration: underline;
}

.page-hero {
  padding: 80px 6vw 50px;
  display: flex;
  gap: 40px;
  align-items: center;
}

.page-hero img {
  width: 360px;
  height: 260px;
  border-radius: 24px;
  background-color: #dcd6cf;
}

.neutral-bg {
  background: var(--sand);
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  width: 280px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
  display: none;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions button {
  flex: 1;
  border-radius: 12px;
  padding: 10px;
  border: 0;
  cursor: pointer;
}

.accept-btn {
  background: var(--accent);
  color: #fff;
}

.reject-btn {
  background: #cfd4da;
}

.legal-text {
  font-size: 14px;
  color: var(--muted);
}

@media (max-width: 960px) {
  .section.asym,
  .split-tilt,
  .form-wrap,
  .page-hero {
    flex-direction: column;
  }

  .floating-cta {
    position: static;
    margin-left: 0;
  }

  .hero h1 {
    font-size: 36px;
  }
}
