* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --bg: #f6f2ed;
  --ink: #1f1b17;
  --muted: #6a5f55;
  --accent: #9b5f3b;
  --accent-dark: #7a482b;
  --panel: #fff9f4;
  --line: #e6ddd4;
  --shadow: 0 12px 30px rgba(31, 27, 23, 0.12);
}

body {
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

header {
  padding: 26px 6vw;
  background: #f9f5f1;
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
}

.brand {
  font-size: 1.3rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  font-size: 0.95rem;
}

.ad-label {
  padding: 6px 10px;
  background: #1f1b17;
  color: #fff7ef;
  font-size: 0.8rem;
  border-radius: 999px;
}

.split {
  display: flex;
  gap: 4vw;
  padding: 64px 6vw;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text {
  flex: 1;
  min-width: 260px;
}

.split .media {
  flex: 1;
  min-width: 260px;
  display: flex;
  justify-content: center;
}

.hero {
  background: #efe7df;
}

.hero h1 {
  font-size: clamp(2.2rem, 3.6vw, 3.4rem);
  line-height: 1.1;
  margin-bottom: 16px;
}

.hero p {
  font-size: 1.05rem;
  color: var(--muted);
  margin-bottom: 20px;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0;
}

.tag {
  padding: 6px 12px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  font-size: 0.85rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 999px;
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.button.secondary {
  background: #f1e6dc;
  color: var(--ink);
  border: 1px solid var(--line);
}

.button:hover,
.button:focus {
  transform: translateY(-1px);
  background: var(--accent-dark);
}

.inline-link {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.image-frame {
  background: #e7ded5;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.image-frame.alt {
  background: #d7c9bf;
}

.card-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card {
  display: flex;
  gap: 16px;
  background: var(--panel);
  padding: 16px;
  border-radius: 16px;
  border: 1px solid var(--line);
}

.card img {
  width: 120px;
  height: 96px;
  border-radius: 12px;
}

.price {
  font-weight: 600;
  color: var(--accent-dark);
}

.form-wrap {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 24px;
  box-shadow: var(--shadow);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 0.9rem;
  color: var(--muted);
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid var(--line);
  font-size: 1rem;
  background: #fff;
}

.grid-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.info-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: #f1e6dc;
  font-size: 0.85rem;
}

.section-note {
  margin-top: 16px;
  color: var(--muted);
  font-size: 0.95rem;
}

footer {
  margin-top: auto;
  padding: 40px 6vw;
  background: #1f1b17;
  color: #f8efe6;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.9rem;
}

.footer-note {
  margin-top: 18px;
  color: #d8cfc5;
  font-size: 0.85rem;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: #fff;
  border-radius: 999px;
  box-shadow: var(--shadow);
  padding: 6px;
  z-index: 20;
}

.sticky-cta button {
  border: none;
  background: var(--accent);
  color: #fff;
  border-radius: 999px;
  padding: 10px 16px;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.sticky-cta button:hover,
.sticky-cta button:focus {
  transform: translateY(-1px);
  background: var(--accent-dark);
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: #fff;
  border-radius: 18px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 18px;
  display: none;
  z-index: 30;
}

.cookie-actions {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.notice {
  background: #f5efe8;
  border-radius: 16px;
  padding: 18px;
  border: 1px solid var(--line);
}

@media (max-width: 900px) {
  .split,
  .split.reverse {
    flex-direction: column;
    align-items: flex-start;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
