* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --bg: #f6f3ef;
  --ink: #1f1e1b;
  --muted: #6b645c;
  --accent: #a24b3b;
  --accent-dark: #7b372c;
  --soft: #efe8df;
  --shadow: 0 18px 40px rgba(18, 17, 15, 0.12);
  --radius: 18px;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 16px;
}

.page {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  flex: 0 0 260px;
  background: #fff;
  padding: 32px 26px;
  border-right: 1px solid #eee2d6;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.brand {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.brand small {
  display: block;
  font-size: 12px;
  color: var(--muted);
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 1.8px;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 15px;
}

.nav a {
  padding: 8px 0;
  color: var(--muted);
  border-bottom: 1px solid transparent;
}

.nav a:hover {
  color: var(--ink);
  border-color: #ecdac9;
}

.sidebar-note {
  background: var(--soft);
  padding: 16px;
  border-radius: 14px;
  font-size: 13px;
  color: var(--muted);
}

.content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

header.page-header {
  padding: 28px 8vw 0;
}

.section {
  padding: 48px 8vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section--hero {
  padding-top: 24px;
  background: linear-gradient(120deg, #fff 0%, #f4ece3 100%);
}

.hero-layout {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}

.hero-copy {
  flex: 1 1 320px;
}

.hero-copy h1 {
  font-size: clamp(32px, 4vw, 48px);
  margin: 0 0 12px;
}

.hero-copy p {
  color: var(--muted);
  max-width: 520px;
}

.hero-media {
  flex: 1 1 280px;
  position: relative;
}

.hero-media::after {
  content: "";
  position: absolute;
  bottom: -18px;
  left: 20px;
  right: 20px;
  height: 60%;
  background: rgba(162, 75, 59, 0.12);
  border-radius: 20px;
  z-index: -1;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.pill {
  background: #fff;
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 13px;
  color: var(--muted);
  border: 1px solid #eadaca;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.split > div {
  flex: 1 1 300px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 240px;
  background: #fff;
  padding: 22px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.card img {
  border-radius: 14px;
  height: 150px;
  object-fit: cover;
}

.highlight {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-shadow: var(--shadow);
}

.section--contrast {
  background: #171614;
  color: #f6f0ea;
}

.section--contrast .pill {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.2);
  color: #efe6de;
}

.section--image {
  background-image: linear-gradient(180deg, rgba(245, 239, 232, 0.8), rgba(245, 239, 232, 0.95)),
    url("https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?auto=format&fit=crop&w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease;
}

.cta-button:hover {
  background: var(--accent-dark);
}

.inline-cta {
  color: var(--accent);
  text-decoration: underline;
  font-weight: 600;
}

.cta-secondary {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.price {
  font-weight: 700;
  font-size: 18px;
}

.form-card {
  background: #fff;
  padding: 26px;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-shadow: var(--shadow);
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-size: 13px;
  color: var(--muted);
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #e4d7ca;
  font-size: 14px;
  font-family: inherit;
}

.form-status {
  font-size: 13px;
  color: var(--muted);
}

footer {
  padding: 40px 8vw;
  border-top: 1px solid #e9ded2;
  background: #fff;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 14px;
  color: var(--muted);
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  padding: 12px 18px;
  border-radius: 999px;
  background: #fff;
  box-shadow: var(--shadow);
  border: 1px solid #eadaca;
  font-weight: 600;
  z-index: 20;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: #fff;
  box-shadow: var(--shadow);
  padding: 18px;
  border-radius: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 12px;
}

.cookie-hidden {
  display: none;
}

.meta-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: var(--muted);
}

.detail-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.detail-grid > div {
  flex: 1 1 220px;
  background: #fff;
  padding: 16px;
  border-radius: 12px;
  border: 1px solid #efe1d4;
}

@media (max-width: 960px) {
  .page {
    flex-direction: column;
  }

  .sidebar {
    flex: none;
    border-right: none;
    border-bottom: 1px solid #eee2d6;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}
