* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #f7f3ef;
  --ink: #1c1a17;
  --muted: #6a6158;
  --accent: #b65d3a;
  --accent-dark: #8e472d;
  --soft: #efe6dd;
  --card: #ffffff;
  --olive: #5a6b4a;
  --sand: #dcc7b7;
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 6vw;
  gap: 16px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  border: 1px solid var(--sand);
  padding: 4px 10px;
  border-radius: 999px;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 40px 6vw 20px;
}

.hero-top {
  display: flex;
  gap: 28px;
  align-items: stretch;
}

.hero-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-visual {
  flex: 1;
  border-radius: 28px;
  overflow: hidden;
  background-color: var(--sand);
}

.hero h1 {
  font-size: clamp(2rem, 3.8vw, 3.4rem);
  line-height: 1.1;
}

.lead {
  font-size: 1.1rem;
  color: var(--muted);
}

.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
}

.btn.secondary {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent-dark);
}

.section {
  padding: 48px 6vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section.alt {
  background: var(--soft);
}

.section.bg-rack {
  background-image: url("https://images.unsplash.com/photo-1483985988355-763728e1935b?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: #3a332b;
  color: #fff;
  position: relative;
}

.section.bg-rack::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(28, 26, 23, 0.55);
}

.section.bg-rack > * {
  position: relative;
  z-index: 1;
}

.section.bg-atelier {
  background-image: url("https://images.unsplash.com/photo-1489987707025-afc232f7ea0f?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: #2c2520;
  color: #fff;
  position: relative;
}

.section.bg-atelier::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(28, 26, 23, 0.6);
}

.section.bg-atelier > * {
  position: relative;
  z-index: 1;
}

.split {
  display: flex;
  gap: 28px;
  align-items: stretch;
}

.split.reverse {
  flex-direction: row-reverse;
}

.panel {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.panel img,
.card img {
  border-radius: 18px;
  background-color: var(--sand);
}

.cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 220px;
  background: var(--card);
  border-radius: 20px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 220px;
}

.tag {
  font-size: 0.8rem;
  color: var(--olive);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.inline-cta {
  color: var(--accent-dark);
  font-weight: 600;
}

.quote {
  background: var(--card);
  border-radius: 18px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pricing-table {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.price-card {
  flex: 1 1 240px;
  background: #fff;
  border-radius: 20px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid var(--sand);
}

.price {
  font-size: 1.4rem;
  font-weight: 700;
}

.form-area {
  background: #fff;
  border-radius: 24px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--sand);
  font-size: 1rem;
  background: #fff;
}

.footer {
  margin-top: auto;
  padding: 32px 6vw 40px;
  background: #191614;
  color: #f5f1ed;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.disclaimer {
  font-size: 0.85rem;
  color: #d5cfc7;
}

.cookie-banner {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  display: none;
  flex-direction: column;
  gap: 12px;
  max-width: 320px;
  z-index: 50;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-btn {
  flex: 1;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #fff;
  font-weight: 600;
}

.cookie-btn.reject {
  background: transparent;
  color: var(--accent-dark);
}

.sticky-cta {
  position: sticky;
  bottom: 0;
  background: rgba(247, 243, 239, 0.92);
  border-top: 1px solid var(--sand);
  padding: 12px 6vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  backdrop-filter: blur(6px);
}

.two-col-list {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.two-col-list li {
  flex: 1 1 200px;
  list-style: none;
  background: #fff;
  padding: 14px;
  border-radius: 14px;
  border: 1px solid var(--sand);
}

.contact-block {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #fff;
  padding: 20px;
  border-radius: 18px;
}

.simple-hero {
  padding: 42px 6vw 10px;
}

.simple-hero h1 {
  font-size: clamp(1.9rem, 3vw, 3rem);
}

.legal {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 20px 6vw 40px;
}

@media (max-width: 920px) {
  .hero-top,
  .split {
    flex-direction: column;
  }

  .sticky-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}
