* {
  box-sizing: border-box;
}

:root {
  --charcoal: #1b1b1b;
  --ink: #2c2c2c;
  --sand: #f6f2ee;
  --rose: #e7b3b8;
  --olive: #8a9072;
  --cloud: #f9f7f4;
  --accent: #a24c5a;
  --shadow: rgba(0, 0, 0, 0.12);
}

body {
  margin: 0;
  font-family: "Arial", sans-serif;
  color: var(--ink);
  background: var(--cloud);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.layout {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 260px;
  background: var(--sand);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  border-right: 1px solid rgba(0, 0, 0, 0.08);
}

.brand {
  font-size: 22px;
  font-weight: 700;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 15px;
}

.nav a {
  padding: 6px 0;
  border-bottom: 1px solid transparent;
}

.nav a:hover {
  border-bottom: 1px solid var(--accent);
}

.sidebar-note {
  font-size: 13px;
  color: #5b5959;
}

.sidebar-cta {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.main {
  flex: 1;
  padding: 0 0 80px;
}

.section {
  padding: 56px 64px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section.tight {
  padding: 40px 64px;
}

.section.inset {
  background: var(--sand);
}

.section.accent {
  background: #fff4f5;
}

.section.hero {
  background-image: url("image-hero.svg");
  background-size: cover;
  background-position: center;
  color: #1f1b1a;
  min-height: 60vh;
  justify-content: center;
}

.hero-content {
  max-width: 520px;
  background: rgba(255, 255, 255, 0.85);
  padding: 32px;
  border-radius: 18px;
  box-shadow: 0 20px 40px var(--shadow);
}

.split {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.split-row {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: white;
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 12px 24px var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.card-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card img {
  border-radius: 12px;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  background: var(--rose);
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.04em;
}

.price {
  font-size: 22px;
  font-weight: 700;
  color: var(--accent);
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: white;
  padding: 12px 20px;
  border-radius: 999px;
  border: none;
  font-size: 15px;
  cursor: pointer;
}

.cta-button.secondary {
  background: var(--olive);
}

.cta-link {
  color: var(--accent);
  text-decoration: underline;
  font-weight: 600;
}

.quote {
  font-style: italic;
  background: white;
  padding: 20px;
  border-radius: 14px;
  box-shadow: 0 12px 24px var(--shadow);
}

.gallery {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.gallery-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.image-frame {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 26px var(--shadow);
}

.form-panel {
  background: white;
  padding: 32px;
  border-radius: 18px;
  box-shadow: 0 14px 30px var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-panel label {
  font-weight: 600;
  font-size: 14px;
}

.form-panel input,
.form-panel select,
.form-panel textarea {
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 15px;
}

.form-panel button {
  align-self: flex-start;
}

.sticky-cta {
  position: sticky;
  top: 18px;
  align-self: flex-start;
  background: white;
  padding: 18px 20px;
  border-radius: 14px;
  box-shadow: 0 12px 24px var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer {
  padding: 32px 64px;
  background: var(--sand);
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: white;
  padding: 18px 20px;
  border-radius: 16px;
  box-shadow: 0 18px 36px var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 999;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hidden {
  display: none;
}

@media (min-width: 820px) {
  .split {
    flex-direction: row;
  }

  .split-row {
    flex-direction: row;
  }

  .cards {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card {
    flex: 1 1 240px;
  }

  .card-row {
    flex-direction: row;
  }

  .gallery-row {
    flex-direction: row;
  }
}

@media (max-width: 920px) {
  .layout {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
  }

  .sidebar-cta {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .section,
  .footer {
    padding: 40px 24px;
  }
}
