* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1f2529;
  --muted: #5c6b73;
  --accent: #2d6a6f;
  --accent-2: #c6a15b;
  --bg: #f6f4f0;
  --panel: #ffffff;
  --soft: #e7e1d9;
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

.site {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  flex: 0 0 260px;
  background: var(--panel);
  border-right: 1px solid var(--soft);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.brand {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.ad-label {
  font-size: 12px;
  color: var(--muted);
  background: #f1ede6;
  padding: 6px 8px;
  border-radius: 6px;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.nav a {
  font-size: 14px;
  color: var(--ink);
}

.sticky-cta {
  margin-top: auto;
  position: sticky;
  top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.btn {
  border: none;
  background: var(--accent);
  color: #fff;
  padding: 12px 16px;
  border-radius: 8px;
  cursor: pointer;
  text-align: center;
  font-size: 14px;
}

.btn.alt {
  background: var(--accent-2);
  color: #1d1c1a;
}

.content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.section {
  padding: 46px 8vw;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.section.soft {
  background: var(--soft);
}

.section.panel {
  background: var(--panel);
}

.section.narrow {
  max-width: 980px;
}

.section-header {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tagline {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

.two-col {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
}

.two-col > div {
  flex: 1 1 280px;
}

.hero {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  align-items: center;
}

.hero .hero-media {
  flex: 1 1 360px;
  border-radius: 18px;
  overflow: hidden;
  background-color: #d9d0c5;
}

.hero .hero-copy {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero img,
.card img,
.inline-media img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.cards {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 240px;
  background: var(--panel);
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--soft);
  display: flex;
  flex-direction: column;
}

.card-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.inline-media {
  border-radius: 14px;
  overflow: hidden;
  background-color: #d6d9db;
}

.form-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.form-grid label {
  font-size: 13px;
  color: var(--muted);
}

.form-field {
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #cfc7bd;
  font-size: 14px;
}

.form-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.note {
  font-size: 13px;
  color: var(--muted);
}

.footer {
  padding: 30px 8vw;
  background: #1f2529;
  color: #f5f3f0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 13px;
}

.footer a {
  color: #f2d9a4;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  right: 20px;
  max-width: 340px;
  background: #fff;
  border: 1px solid var(--soft);
  border-radius: 12px;
  padding: 16px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.banner-visible {
  display: flex;
}

@media (max-width: 900px) {
  .site {
    flex-direction: column;
  }

  .sidebar {
    flex-direction: row;
    flex-wrap: wrap;
    border-right: none;
    border-bottom: 1px solid var(--soft);
  }

  .sticky-cta {
    position: static;
    flex-direction: row;
  }
}
