:root {
  --bg: #f6f3ef;
  --ink: #1d1b1a;
  --muted: #5c5855;
  --accent: #7b4f2c;
  --accent-soft: #efe6de;
  --panel: #ffffff;
  --shadow: 0 18px 40px rgba(30, 20, 10, 0.1);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

.page {
  min-height: 100vh;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 28px;
  background: #fffaf5;
  border-bottom: 1px solid #e7dfd7;
}

.ad-label {
  font-size: 0.9rem;
  color: var(--muted);
}

.top-links {
  display: flex;
  gap: 16px;
  font-size: 0.95rem;
}

.shell {
  display: flex;
  gap: 32px;
  padding: 32px 28px 48px;
}

.sidebar {
  width: 220px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.brand {
  font-size: 1.4rem;
  font-weight: 700;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.nav a {
  padding: 8px 10px;
  border-radius: 8px;
  background: #fffaf5;
  border: 1px solid #efe6de;
}

.content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 48px;
  border-radius: 24px;
  background: #3f2c22;
  color: #fff;
  min-height: 380px;
  justify-content: center;
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.hero .cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 24px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #fff;
  font-weight: 600;
}

.btn.alt {
  background: #fff;
  color: var(--accent);
}

.section {
  padding: 28px;
  background: var(--panel);
  border-radius: 18px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.section.split {
  flex-direction: row;
  gap: 28px;
  align-items: stretch;
}

.section.split.reverse {
  flex-direction: row-reverse;
}

.section-bg {
  background-color: #efe6de;
  background-image: url("https://images.unsplash.com/photo-1496181133206-80ce9b88a853?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #241b16;
}

.section-bg.alt {
  background-color: #e3e8e6;
  background-image: url("https://images.unsplash.com/photo-1487014679447-9f8336841d58?w=1400&q=80");
}

.card-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 220px;
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  border: 1px solid #eee2d8;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 12px;
  background-color: #e7e0d8;
}

.inline-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 16px;
  background-color: #e7e0d8;
}

.pricing-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pricing-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 14px 16px;
  border-radius: 14px;
  background: #fffaf5;
  border: 1px solid #efe6de;
}

.sticky-cta {
  position: sticky;
  top: 24px;
  align-self: flex-start;
  padding: 16px 18px;
  background: #fff;
  border: 1px solid #eee2d8;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.form-panel {
  background: #fff;
  border-radius: 18px;
  padding: 24px;
  border: 1px solid #efe6de;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-panel label {
  font-weight: 600;
}

.form-panel input,
.form-panel select,
.form-panel textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #d9cfc6;
  font-size: 1rem;
  font-family: inherit;
}

.form-panel button {
  padding: 12px 18px;
  border-radius: 20px;
  border: none;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
}

.footer {
  margin-top: 32px;
  padding: 24px;
  border-top: 1px solid #e7dfd7;
  font-size: 0.9rem;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  right: 20px;
  max-width: 320px;
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow);
  border: 1px solid #efe6de;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  flex: 1;
  padding: 8px 12px;
  border-radius: 16px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #fff;
  font-weight: 600;
}

.cookie-actions .reject {
  background: #fff;
  color: var(--accent);
}

.hidden {
  display: none;
}

.columns {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.column {
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.highlight {
  background: #fffaf5;
  border-radius: 12px;
  padding: 12px 14px;
  border: 1px solid #efe6de;
}
