* {
  box-sizing: border-box;
}

:root {
  --ink: #1f1f1f;
  --muted: #5a5a5a;
  --bg: #f7f4f0;
  --panel: #ffffff;
  --accent: #2f6f63;
  --accent-dark: #23544b;
  --warm: #efe5da;
  --cool: #e4eef0;
  --line: #e2ddd5;
}

body {
  margin: 0;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover,
a:focus {
  color: var(--accent-dark);
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 260px;
  background: var(--panel);
  border-right: 1px solid var(--line);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.brand h2 {
  margin: 0;
  font-size: 1.3rem;
  letter-spacing: 0.5px;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  background: var(--warm);
  padding: 6px 10px;
  border-radius: 999px;
  display: inline-block;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.nav a {
  font-weight: 600;
}

.sidebar .cta {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  background: var(--accent);
  color: #fff;
  border-radius: 8px;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.btn.secondary {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.btn:hover,
.btn:focus {
  background: var(--accent-dark);
  color: #fff;
}

.content {
  flex: 1;
  padding: 36px 40px 80px;
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.hero {
  display: flex;
  gap: 28px;
  align-items: stretch;
}

.hero-text {
  flex: 1.1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-media {
  flex: 0.9;
  min-height: 320px;
}

.image-frame {
  background-color: var(--cool);
  border-radius: 16px;
  overflow: hidden;
}

.media-tall {
  min-height: 260px;
}

.card-media {
  height: 170px;
}

.section {
  padding: 26px;
  border-radius: 18px;
  background: var(--panel);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.section.warm {
  background: var(--warm);
}

.section.cool {
  background: var(--cool);
}

.split {
  display: flex;
  gap: 24px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.cards {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 220px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.price {
  font-weight: 700;
  color: var(--accent-dark);
}

.badge-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.badge {
  background: #fff;
  border: 1px solid var(--line);
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.85rem;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.timeline-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.dot {
  width: 12px;
  height: 12px;
  background: var(--accent);
  border-radius: 50%;
  margin-top: 6px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid var(--line);
  font-size: 1rem;
  background: #fff;
}

.form-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.form-row > div {
  flex: 1;
  min-width: 220px;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: var(--accent);
  color: #fff;
  padding: 14px 18px;
  border-radius: 999px;
  font-weight: 600;
  z-index: 9;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 10;
}

.footer {
  border-top: 1px solid var(--line);
  padding-top: 16px;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.92rem;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.bg-image-section {
  background-image: url("https://images.unsplash.com/photo-1769210642642-51b7e09dfaee?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #fff;
  position: relative;
}

.bg-image-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  border-radius: 18px;
}

.bg-image-section > * {
  position: relative;
  z-index: 1;
}

.notice {
  background: #fff7e6;
  border-left: 4px solid #d6a55c;
  padding: 12px 14px;
  border-radius: 8px;
}

@media (max-width: 980px) {
  .page {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid var(--line);
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }

  .sidebar .cta {
    margin-top: 0;
    flex-direction: row;
  }

  .content {
    padding: 28px 20px 80px;
  }

  .hero,
  .split {
    flex-direction: column;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}
