:root {
  --bg: #f6f3ee;
  --ink: #1e1f1c;
  --muted: #5b5e58;
  --accent: #1f6d5a;
  --accent-dark: #144a3e;
  --sand: #efe3d3;
  --stone: #e1e4e0;
  --mint: #dbe7e2;
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 290px;
  padding: 32px 28px;
  background: #f1ece4;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 14px;
}

.ad-label {
  font-size: 12px;
  color: var(--muted);
  background: var(--sand);
  padding: 10px 12px;
  border-radius: 10px;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.nav a {
  padding: 8px 10px;
  border-radius: 8px;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav a:hover,
.nav a:focus {
  background: var(--accent);
  color: #fff;
}

.sidebar-card {
  padding: 16px;
  background: #fff;
  border-radius: 14px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sidebar-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: background 0.2s ease, color 0.2s ease, border 0.2s ease;
}

.btn.secondary {
  background: transparent;
  color: var(--accent-dark);
  border-color: var(--accent-dark);
}

.btn:hover,
.btn:focus {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: #fff;
}

.content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 40px 48px 120px;
}

.section {
  padding: 24px 0;
}

.section.tight {
  padding: 12px 0;
}

.section-band {
  background: #fff;
  border-radius: 22px;
  padding: 28px 32px;
  box-shadow: var(--shadow);
}

.section-alt {
  background: var(--mint);
  border-radius: 22px;
  padding: 28px 32px;
}

.section-sand {
  background: var(--sand);
  border-radius: 22px;
  padding: 28px 32px;
}

.section-bg {
  position: relative;
  border-radius: 22px;
  padding: 28px 32px;
  color: #fff;
  background-color: var(--stone);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.section-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(16, 20, 18, 0.45);
}

.section-bg > * {
  position: relative;
}

.bg-scooter-wall {
  background-image: url("https://images.pexels.com/photos/31589364/pexels-photo-31589364.jpeg");
}

.bg-workshop-tools {
  background-image: url("https://images.pexels.com/photos/31903992/pexels-photo-31903992.jpeg");
}

.bg-calm-mobility {
  background-image: url("https://images.pexels.com/photos/6334159/pexels-photo-6334159.jpeg");
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
}

.hero-copy {
  flex: 1 1 320px;
}

.hero-media {
  flex: 1 1 320px;
}

.hero h1 {
  font-size: 36px;
  margin: 0 0 12px;
}

.hero p {
  font-size: 18px;
  color: var(--muted);
  margin: 0 0 18px;
}

.inline-link {
  color: var(--accent-dark);
  border-bottom: 1px solid var(--accent-dark);
  padding-bottom: 2px;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > div {
  flex: 1 1 280px;
}

.taglist {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.cta-row {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.tag {
  background: #fff;
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 13px;
  box-shadow: var(--shadow);
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 240px;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.card img {
  height: 170px;
}

.card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.card-body p {
  margin: 0;
  color: var(--muted);
}

.price {
  font-weight: 700;
  font-size: 18px;
}

.img-frame {
  border-radius: 18px;
  overflow: hidden;
  background: var(--stone);
}

.frame-sand {
  background: var(--sand);
}

.frame-mint {
  background: var(--mint);
}

.frame-stone {
  background: var(--stone);
}

.list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.list li {
  padding-left: 22px;
  position: relative;
  color: var(--muted);
}

.list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent-dark);
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 14px;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #cfd4cc;
  font-size: 15px;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.form-note {
  font-size: 13px;
  color: var(--muted);
}

.footer {
  padding: 32px 0 12px;
  font-size: 13px;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer a {
  color: var(--accent-dark);
}

.disclaimer {
  background: #fff;
  border-radius: 16px;
  padding: 14px 16px;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 10;
  background: #fff;
  border-radius: 999px;
  padding: 10px 12px;
  box-shadow: var(--shadow);
  display: flex;
  gap: 10px;
  align-items: center;
}

.sticky-cta span {
  font-size: 13px;
  color: var(--muted);
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  max-width: 360px;
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: var(--shadow);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 11;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.notice {
  font-size: 13px;
  color: var(--muted);
}

.map-block {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: stretch;
}

.map-block .panel {
  flex: 1 1 260px;
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: var(--shadow);
}

.badge {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: #fff;
  font-size: 12px;
  box-shadow: var(--shadow);
  margin-bottom: 10px;
}

@media (max-width: 960px) {
  .page {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }

  .nav {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .content {
    padding: 32px 24px 120px;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }

  .cookie-banner {
    left: 16px;
    right: 16px;
    max-width: none;
  }
}

@media (max-width: 640px) {
  .sidebar {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav {
    flex-direction: column;
  }

  .sticky-cta span {
    display: none;
  }
}
