* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1e1b1a;
  --muted: #5b554f;
  --mist: #f6f1ed;
  --stone: #e8e1db;
  --sand: #f3ede7;
  --clay: #d9cdbf;
  --accent: #4b6c6f;
  --accent-dark: #2f4a4f;
  --line: #d2c6bb;
  --warning: #7a5b3a;
}

body {
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.site-header {
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 24px;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: lowercase;
}

.main-nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--warning);
  max-width: 260px;
  text-align: right;
}

.hero {
  padding: 56px 0 40px;
}

.split {
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split-text {
  flex: 1 1 320px;
}

.split-media {
  flex: 1 1 320px;
  min-height: 320px;
}

.image-frame {
  background: var(--stone);
  border-radius: 18px;
  overflow: hidden;
  min-height: 280px;
}

.hero h1 {
  font-size: 2.8rem;
  line-height: 1.15;
  margin-bottom: 16px;
}

.hero p {
  font-size: 1.05rem;
  color: var(--muted);
  margin-bottom: 22px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  border: none;
  cursor: pointer;
  gap: 8px;
}

.btn:hover {
  background: var(--accent-dark);
}

.btn-ghost {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.btn-ghost:hover {
  background: var(--accent);
  color: #fff;
}

.inline-link {
  color: var(--accent-dark);
  border-bottom: 1px solid var(--accent-dark);
}

.section {
  padding: 48px 0;
}

.section-title {
  font-size: 1.9rem;
  margin-bottom: 14px;
}

.section-lead {
  color: var(--muted);
  margin-bottom: 26px;
}

.card-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 220px;
  background: var(--mist);
  border-radius: 16px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 220px;
}

.card .image-frame {
  min-height: 150px;
}

.price {
  font-weight: 700;
  color: var(--accent-dark);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 20px;
  align-items: center;
}

.notice-actions {
  margin-top: 12px;
}

.tag {
  background: var(--sand);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
}

.bg-shelving {
  background-image: url("https://images.unsplash.com/photo-1743207820696-6ea16d63177f?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #fff;
  position: relative;
}

.bg-shelving::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(30, 27, 26, 0.55);
}

.bg-shelving .page,
.bg-shelving .split-text,
.bg-shelving .split-media {
  position: relative;
  z-index: 1;
}

.quote {
  background: #fff;
  border-left: 4px solid var(--accent);
  padding: 16px 20px;
  margin-bottom: 12px;
}

.form-wrap {
  background: var(--mist);
  border-radius: 18px;
  padding: 22px;
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.9rem;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid var(--line);
  font-size: 1rem;
  font-family: inherit;
}

.form-note {
  font-size: 0.9rem;
  color: var(--muted);
}

.sticky-cta {
  position: fixed;
  bottom: 16px;
  right: 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 14px;
  display: flex;
  gap: 10px;
  align-items: center;
  z-index: 30;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.sticky-cta span {
  font-size: 0.9rem;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 32px 0 48px;
  background: var(--sand);
}

.footer-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
}

.footer-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.disclaimer {
  font-size: 0.85rem;
  color: var(--muted);
  max-width: 560px;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
  display: none;
  z-index: 40;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.12);
}

.cookie-banner.visible {
  display: block;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.link-button {
  background: none;
  border: none;
  color: var(--accent);
  text-decoration: underline;
  cursor: pointer;
  font-size: 0.9rem;
  padding: 0;
}

.notice {
  background: var(--mist);
  border-radius: 16px;
  padding: 18px;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 12px;
  padding-left: 18px;
}

.list li {
  list-style: disc;
}

.small {
  font-size: 0.9rem;
  color: var(--muted);
}

@media (max-width: 900px) {
  .hero h1 {
    font-size: 2.2rem;
  }

  .ad-label {
    text-align: left;
    max-width: 100%;
  }

  .sticky-cta {
    left: 16px;
    right: 16px;
    justify-content: space-between;
  }
}
