:root {
  color-scheme: light;
  --bg: #f6f4f1;
  --ink: #1d1c1a;
  --muted: #5e5a55;
  --accent: #c4511a;
  --accent-dark: #9a3f13;
  --panel: #ffffff;
  --tint: #efe7df;
  --shadow: 0 20px 40px rgba(20, 20, 20, 0.08);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

a.link-inline {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.topbar {
  padding: 24px 6vw 12px;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.nav-brand {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.ad-label {
  font-size: 0.9rem;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--tint);
  color: var(--muted);
}

main {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.section {
  padding: 36px 6vw;
}

.section.tint {
  background: var(--tint);
}

.section.panel {
  background: var(--panel);
  box-shadow: var(--shadow);
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > div {
  flex: 1 1 320px;
}

.hero-title {
  font-size: clamp(2rem, 3.8vw, 3.6rem);
  line-height: 1.15;
  margin: 0 0 16px;
}

.lead {
  font-size: 1.1rem;
  color: var(--muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  background: var(--accent-dark);
}

.btn-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn.secondary {
  background: transparent;
  color: var(--accent-dark);
  border: 2px solid var(--accent-dark);
}

.img-frame {
  background: #d9d2cb;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.frame-warm {
  background-color: #d2cbc4;
}

.frame-soft {
  background-color: #d8d1ca;
}

.img-cover {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.card-list {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 220px;
  background: var(--panel);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.card-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 700;
  color: var(--accent-dark);
}

.form-panel {
  background: var(--panel);
  border-radius: 20px;
  padding: 22px;
  box-shadow: var(--shadow);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #c9c2bb;
  font-size: 1rem;
  font-family: inherit;
  background: #fff;
}

textarea {
  min-height: 120px;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  box-shadow: var(--shadow);
  z-index: 10;
}

.footer {
  padding: 32px 6vw 48px;
  background: #1c1b19;
  color: #efe7df;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.disclaimer {
  font-size: 0.9rem;
  color: #d8ccc0;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  background: #ffffff;
  color: var(--ink);
  padding: 16px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.hidden {
  display: none;
}

.hero-visual {
  min-height: 360px;
}

.bg-hero {
  background-image: url("https://images.unsplash.com/photo-1503376780353-7e6692767b70?w=1400&q=80");
  background-size: cover;
  background-position: center;
  border-radius: 24px;
  min-height: 420px;
}

.bg-trust {
  background-image: url("https://images.unsplash.com/photo-1493238792000-8113da705763?w=1400&q=80");
  background-size: cover;
  background-position: center;
  border-radius: 24px;
  min-height: 360px;
}

.bg-workshop {
  background-image: url("https://images.unsplash.com/photo-1489515217757-5fd1be406fef?w=1400&q=80");
  background-size: cover;
  background-position: center;
  border-radius: 24px;
  min-height: 360px;
}

@media (max-width: 900px) {
  .sticky-cta {
    right: 16px;
    left: 16px;
    text-align: center;
  }
}
