* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1f1b16;
  background: #f8f5f1;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  background: #d8d0c5;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.header {
  padding: 24px 0 12px;
}

.nav {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.brand {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.ad-label {
  font-size: 0.85rem;
  background: #1f1b16;
  color: #f8f5f1;
  padding: 6px 10px;
  border-radius: 999px;
}

.hero {
  padding: 60px 0 40px;
}

.hero-wrap {
  display: flex;
  gap: 30px;
  align-items: stretch;
  flex-wrap: wrap;
}

.hero-text {
  flex: 1 1 320px;
  background: #f1e7db;
  padding: 36px;
  border-radius: 24px;
  position: relative;
  top: 18px;
}

.hero-image {
  flex: 1 1 320px;
  border-radius: 28px;
  overflow: hidden;
  background: #d9d1c7;
  min-height: 360px;
}

.hero-image img {
  width: 100%;
  height: 100%;
}

.section {
  padding: 50px 0;
}

.section-offset {
  background: #fff;
  position: relative;
  margin: 0 auto;
  width: min(1200px, 94%);
  border-radius: 28px;
  padding: 44px 0;
}

.bg-workshop {
  background-image: url("https://images.unsplash.com/photo-1511379938547-c1f69419868d?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.bg-vitrine {
  background-image: url("https://images.unsplash.com/photo-1500534314209-a25ddb2bd429?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.split {
  display: flex;
  gap: 28px;
  align-items: center;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split-card {
  flex: 1 1 280px;
  background: #f7efe6;
  padding: 24px;
  border-radius: 20px;
}

.image-card {
  flex: 1 1 280px;
  border-radius: 22px;
  overflow: hidden;
  background: #c9c0b4;
  min-height: 260px;
}

.floating-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #1f1b16;
  color: #f8f5f1;
  padding: 28px;
  border-radius: 24px;
  max-width: 520px;
  margin: -80px 0 0 auto;
}

.card-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 240px;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #e2d8cc;
  display: flex;
  flex-direction: column;
}

.card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tag {
  font-size: 0.85rem;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.btn {
  background: #1f1b16;
  color: #f8f5f1;
  border: none;
  padding: 12px 18px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
}

.btn.light {
  background: #f1e7db;
  color: #1f1b16;
  border: 1px solid #1f1b16;
}

.btn.outline {
  background: transparent;
  color: #1f1b16;
  border: 1px solid #1f1b16;
}

.inline-link {
  text-decoration: underline;
}

.quote {
  font-style: italic;
  background: #f1e7db;
  padding: 20px;
  border-radius: 18px;
  flex: 1 1 220px;
}

.pricing {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.pricing .card {
  border: none;
  background: #fdfbf8;
}

.form-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: flex-start;
}

.form-panel {
  flex: 1 1 320px;
  background: #fff;
  border-radius: 24px;
  padding: 26px;
  border: 1px solid #e2d8cc;
}

.form-panel form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-panel label {
  font-weight: 600;
}

.form-panel input,
.form-panel select,
.form-panel textarea {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #cdbfb1;
  font-size: 1rem;
  background: #fdfbf8;
}

.service-select {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.service-option {
  display: flex;
  gap: 14px;
  align-items: center;
  background: #f7efe6;
  padding: 14px;
  border-radius: 16px;
}

.service-option img {
  width: 120px;
  height: 90px;
  border-radius: 14px;
  background: #d8cfc4;
}

.footer {
  background: #1f1b16;
  color: #f8f5f1;
  padding: 40px 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 18px;
}

.disclaimer {
  font-size: 0.9rem;
  color: #e4dccf;
}

.cookie-banner {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: #fff;
  border: 1px solid #e2d8cc;
  border-radius: 18px;
  padding: 16px;
  width: min(320px, 90vw);
  box-shadow: 0 12px 30px rgba(31, 27, 22, 0.15);
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  left: 18px;
  background: #1f1b16;
  color: #f8f5f1;
  border: none;
  padding: 12px 18px;
  border-radius: 999px;
  cursor: pointer;
  z-index: 15;
}

.page-hero {
  padding: 40px 0 30px;
}

.page-hero .hero-text {
  top: 0;
}

.legal-section {
  background: #fff;
  border-radius: 22px;
  padding: 26px;
  border: 1px solid #e2d8cc;
}

.contact-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.contact-grid .card {
  background: #fff;
}

.note {
  font-size: 0.95rem;
  color: #3f3731;
}

.spacer {
  height: 16px;
}
