* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --ink: #1b1a1f;
  --muted: #5c5a63;
  --accent: #b12e5c;
  --accent-soft: #f8e7ee;
  --sand: #f6f1ed;
  --olive: #b7c2ae;
  --shadow: 0 18px 40px rgba(20, 20, 20, 0.08);
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #faf8f6;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
}

.layout {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.sidebar {
  background: #141316;
  color: #fdf6f9;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.brand {
  font-size: 1.4rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 0.95rem;
}

.nav a {
  padding: 6px 0;
  opacity: 0.88;
}

.nav a:hover,
.nav a:focus {
  opacity: 1;
  color: #ffd4e4;
}

.sidebar-cta {
  background: #2b272f;
  border-radius: 16px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.9rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  border: none;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button.outline {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.button:hover,
.button:focus {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(177, 46, 92, 0.18);
}

.main {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 28px 20px 60px;
}

.sticky-cta {
  position: sticky;
  top: 12px;
  z-index: 3;
  align-self: flex-start;
  background: #fff0f6;
  border-radius: 999px;
  padding: 10px 16px;
  box-shadow: var(--shadow);
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 0.9rem;
}

.section {
  background: #fff;
  border-radius: 28px;
  padding: 28px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.section.alt {
  background: var(--sand);
}

.section.olive {
  background: rgba(183, 194, 174, 0.18);
}

.section.dark {
  background: #1d1b21;
  color: #f8f1f4;
}

.section h1,
.section h2,
.section h3 {
  margin: 0;
  line-height: 1.2;
}

.hero {
  background: linear-gradient(120deg, rgba(20, 19, 22, 0.88), rgba(20, 19, 22, 0.65)),
    url("images/hero.svg");
  background-size: cover;
  background-position: center;
  color: #fff;
  min-height: 360px;
  justify-content: flex-end;
}

.hero p {
  max-width: 520px;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.split.reverse {
  flex-direction: column-reverse;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 220px;
  background: #fff;
  border-radius: 20px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border: 1px solid #eee2e8;
}

.price {
  font-weight: 700;
  color: var(--accent);
  font-size: 1.1rem;
}

.inline-cta {
  color: var(--accent);
  font-weight: 600;
  border-bottom: 1px solid currentColor;
}

.tag {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(177, 46, 92, 0.12);
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 600;
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.9rem;
}

input,
select,
textarea {
  width: 100%;
  border-radius: 12px;
  border: 1px solid #dcd1d8;
  padding: 12px 14px;
  font-size: 1rem;
  font-family: inherit;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.list-item {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.list-item:last-child {
  border-bottom: none;
}

.quote {
  font-style: italic;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: #fff;
  padding: 18px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  display: none;
  flex-direction: column;
  gap: 14px;
  z-index: 10;
}

.cookie-banner.show {
  display: flex;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.media-frame {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.media-frame img {
  width: 100%;
}

.section-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.map-card {
  background: #fff;
  padding: 18px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border: 1px solid #efe3ea;
}

.legal {
  font-size: 0.95rem;
  color: var(--muted);
}

@media (min-width: 960px) {
  .layout {
    flex-direction: row;
  }

  .sidebar {
    width: 240px;
    min-height: 100vh;
    position: sticky;
    top: 0;
    align-self: flex-start;
  }

  .main {
    padding: 40px 48px 80px;
  }

  .split {
    flex-direction: row;
    align-items: center;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .section-grid {
    flex-direction: row;
  }

  .section-grid > * {
    flex: 1;
  }
}
