*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --bg: #f5f2ee;
  --ink: #1a1a1a;
  --muted: #5b5b5b;
  --accent: #b06b3b;
  --accent-dark: #8f532d;
  --soft: #e8e0d6;
  --deep: #2b2b2b;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: var(--accent-dark);
  text-decoration: none;
}

a:focus,
button:focus,
select:focus,
input:focus,
textarea:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

header {
  padding: 24px 6vw 16px;
  border-bottom: 1px solid #ddd4c8;
  background: #fffaf4;
}

.top-bar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.brand {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.nav-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  align-items: center;
  font-size: 0.95rem;
  color: var(--muted);
}

.nav-meta .ad-label {
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--soft);
  color: var(--deep);
  font-weight: 600;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.nav-links a {
  padding: 6px 0;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover {
  border-bottom-color: var(--accent);
}

main {
  padding: 32px 6vw 60px;
}

.mag-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}

.mag-col {
  flex: 1 1 280px;
  min-width: 260px;
}

.mag-col.wide {
  flex: 2 1 420px;
}

.section {
  margin: 36px 0;
  padding: 24px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}

.section.dark {
  background: var(--deep);
  color: #f6f1ea;
}

.section.soft {
  background: var(--soft);
}

.section h2 {
  margin-top: 0;
  font-size: 1.7rem;
}

.section h3 {
  margin-top: 0;
}

.intro-title {
  font-size: 2.4rem;
  margin: 0 0 12px;
}

.hero-image {
  border-radius: 16px;
  overflow: hidden;
  background-color: #d8cfc4;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 220px;
  background: #ffffff;
  border-radius: 14px;
  padding: 16px;
  border: 1px solid #efe6dc;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  width: 100%;
  height: 160px;
  border-radius: 12px;
  background-color: #d8cfc4;
}

.price {
  font-weight: 700;
  color: var(--accent-dark);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  border: none;
  cursor: pointer;
  min-width: 160px;
}

.btn:hover {
  background: var(--accent-dark);
}

.btn.light {
  background: #fff;
  color: var(--accent-dark);
  border: 1px solid var(--accent-dark);
}

.btn.light:hover {
  background: var(--soft);
}

.inline-link {
  font-weight: 600;
  text-decoration: underline;
}

.split-banner {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}

.split-banner img {
  width: 100%;
  height: 240px;
  border-radius: 16px;
  background-color: #d8cfc4;
}

.quote {
  border-left: 4px solid var(--accent);
  padding-left: 16px;
  color: var(--deep);
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #cfc2b6;
  font-size: 1rem;
  background: #fff;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.form-row > div {
  flex: 1 1 220px;
}

.sticky-cta {
  position: fixed;
  right: 16px;
  bottom: 16px;
  padding: 12px 20px;
  background: var(--deep);
  color: #fff;
  border-radius: 999px;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.2);
  z-index: 200;
}

.sticky-cta:hover {
  background: #141414;
}

footer {
  padding: 28px 6vw 40px;
  background: #1f1b16;
  color: #f0e8df;
}

footer a {
  color: #f4d8b9;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-col {
  flex: 1 1 220px;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  bottom: 16px;
  max-width: 360px;
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  padding: 16px;
  z-index: 250;
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.pill {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: #fff3e7;
  color: var(--accent-dark);
  font-weight: 600;
  font-size: 0.9rem;
}

.note {
  font-size: 0.95rem;
  color: var(--muted);
}

.bg-image {
  background-color: #d8cfc4;
  border-radius: 16px;
  overflow: hidden;
}

.bg-image img {
  width: 100%;
  height: 280px;
}

.list-plain {
  padding-left: 18px;
}

.list-plain li {
  margin-bottom: 8px;
}
