* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1e1b22;
  --muted: #5f5b66;
  --accent: #d94f6b;
  --accent-dark: #a7354b;
  --paper: #f7f3ef;
  --mist: #eef1f6;
  --shadow: 0 18px 40px rgba(18, 16, 24, 0.08);
  --radius: 20px;
}

body {
  font-family: "Segoe UI", "Roboto", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 18px;
}

.site {
  display: flex;
  min-height: 100vh;
  background: #fff;
}

.sidebar {
  width: 260px;
  background: #121016;
  color: #fff;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.brand {
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.95rem;
}

.nav a {
  color: #e7e2ee;
  padding: 8px 0;
}

.nav a:hover {
  color: #fff;
}

.sidebar-cta {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease;
}

.button:hover {
  background: var(--accent-dark);
}

.button-outline {
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: transparent;
  color: #fff;
}

.main {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 36px 5vw 80px;
}

.section {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.section-heading {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.7rem;
  color: var(--muted);
}

.hero {
  background: var(--paper);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  box-shadow: var(--shadow);
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero h1 {
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.1;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.panel {
  background: var(--mist);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card {
  background: #fff;
  border-radius: 18px;
  padding: 20px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.card img {
  border-radius: 16px;
}

.price {
  font-weight: 700;
  color: var(--accent-dark);
}

.list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--muted);
}

.quote {
  font-style: italic;
  background: #fff6f1;
  border-left: 4px solid var(--accent);
  padding: 18px;
  border-radius: 16px;
}

.gallery-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.gallery-row img {
  height: 220px;
  object-fit: cover;
}

.form-section {
  background: #111019;
  color: #fff;
  border-radius: var(--radius);
  padding: 28px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.9rem;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d8d3dc;
  font-size: 1rem;
}

textarea {
  min-height: 110px;
  resize: vertical;
}

.form-note {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

.inline-cta {
  color: var(--accent-dark);
  font-weight: 600;
  text-decoration: underline;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: #111019;
  color: #fff;
  padding: 14px 18px;
  border-radius: 999px;
  box-shadow: var(--shadow);
  z-index: 20;
}

.footer {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 24px;
  border-top: 1px solid #ece7f0;
  color: var(--muted);
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #fff;
  color: var(--ink);
  border-radius: 16px;
  padding: 16px;
  box-shadow: var(--shadow);
  max-width: 320px;
  z-index: 30;
  display: none;
  flex-direction: column;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  flex: 1;
  border-radius: 12px;
  border: none;
  padding: 8px 10px;
  cursor: pointer;
}

.cookie-accept {
  background: var(--accent);
  color: #fff;
}

.cookie-reject {
  background: #ded7e6;
  color: #3a3242;
}

.stacked {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.stat {
  background: #fff;
  border-radius: 14px;
  padding: 14px;
  box-shadow: var(--shadow);
}

@media (min-width: 768px) {
  .split {
    flex-direction: row;
    align-items: stretch;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .gallery-row {
    flex-direction: row;
  }

  .cards {
    flex-direction: row;
  }

  .card {
    flex: 1;
  }

  .stats {
    flex-direction: row;
  }

  .stat {
    flex: 1;
  }
}

@media (max-width: 900px) {
  .site {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
  }

  .nav {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .sidebar-cta {
    margin-top: 0;
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
  }
}
