* {
  box-sizing: border-box;
}

:root {
  --bg: #f7f3ef;
  --ink: #2b2724;
  --muted: #5f5954;
  --accent: #8a5a3b;
  --accent-2: #4b6a6a;
  --light: #fffdfb;
  --dark: #201d1b;
  --highlight: #f0e2d6;
  --shadow: 0 16px 40px rgba(25, 20, 17, 0.12);
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 16px;
}

.layout {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 240px;
  padding: 32px 24px;
  background: var(--light);
  display: flex;
  flex-direction: column;
  gap: 24px;
  border-right: 1px solid rgba(43, 39, 36, 0.08);
}

.brand {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 14px;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.nav a {
  color: var(--ink);
  font-weight: 600;
}

.nav small {
  color: var(--muted);
  font-weight: 400;
  font-size: 12px;
}

.sidebar-cta {
  margin-top: auto;
  padding: 16px;
  border-radius: 16px;
  background: var(--highlight);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sidebar-cta a {
  color: var(--dark);
  font-weight: 600;
}

main {
  flex: 1;
  padding: 36px 40px 60px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.section {
  padding: 28px 32px;
  border-radius: 24px;
  background: var(--light);
  box-shadow: var(--shadow);
}

.section--dark {
  background: var(--dark);
  color: var(--light);
}

.section--dark a {
  color: #f2c9a7;
}

.section--accent {
  background: var(--highlight);
}

.section--image {
  background: linear-gradient(120deg, rgba(138, 90, 59, 0.08), rgba(75, 106, 106, 0.14));
  position: relative;
  overflow: hidden;
}

.section--image::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1470321084001-0f6df0f0003a?auto=format&fit=crop&w=1400&q=80");
  background-size: cover;
  background-position: center;
  opacity: 0.16;
}

.section--image > * {
  position: relative;
}

.split {
  display: flex;
  gap: 28px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .copy {
  flex: 1.1;
}

.split .media {
  flex: 0.9;
}

.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 220px;
  background: var(--light);
  padding: 18px;
  border-radius: 18px;
  border: 1px solid rgba(43, 39, 36, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  border-radius: 14px;
  height: 150px;
  object-fit: cover;
}

.price {
  font-weight: 700;
  color: var(--accent-2);
}

.inline-cta {
  font-weight: 600;
  color: var(--accent-2);
}

.button {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.button.secondary {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.button.dark {
  background: #2f2a27;
}

.stacked {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.list span {
  display: block;
  color: var(--muted);
}

.two-column {
  display: flex;
  gap: 22px;
  align-items: stretch;
}

.two-column > div {
  flex: 1;
}

.sticky-wrap {
  display: flex;
  gap: 24px;
}

.sticky-card {
  align-self: flex-start;
  position: sticky;
  top: 24px;
  background: var(--highlight);
  padding: 18px;
  border-radius: 18px;
  min-width: 220px;
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(43, 39, 36, 0.2);
  font-family: inherit;
  background: #fff;
}

.footer {
  padding: 26px 32px;
  background: var(--light);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 14px;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: var(--dark);
  color: var(--light);
  padding: 18px 22px;
  border-radius: 18px;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-actions .button {
  padding: 10px 16px;
}

@media (max-width: 980px) {
  .layout {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    border-right: none;
    border-bottom: 1px solid rgba(43, 39, 36, 0.08);
  }

  .nav {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px 16px;
  }

  main {
    padding: 28px 24px 48px;
  }

  .split,
  .two-column,
  .sticky-wrap {
    flex-direction: column;
  }

  .sticky-card {
    position: static;
  }
}
