* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Arial", "Helvetica", sans-serif;
  color: #1f1f1f;
  background: #f7f4ef;
  line-height: 1.6;
}

a {
  color: #1f1f1f;
  text-decoration: underline;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.topbar {
  background: #f0ebe2;
  padding: 18px 0;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.ad-label {
  font-size: 12px;
  color: #5c5146;
  max-width: 320px;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 14px;
}

.hero {
  position: relative;
  color: #fdfbf7;
  padding: 90px 0;
  background-color: #2a2a2a;
  background-size: cover;
  background-position: center;
}

.hero-bg {
  background-image: url("https://images.unsplash.com/photo-1505691938895-1758d7feb511?w=1400&q=80");
}

.section-bg-atelier {
  background-image: url("https://images.unsplash.com/photo-1499951360447-b19be8fe80f5?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.section-bg-atelier .container {
  background: rgb(255 255 255 / 72%);
  padding: 40px;
}

.hero-overlay {
  background: rgba(20, 20, 20, 0.5);
  padding: 48px;
  max-width: 640px;
}

.hero h1 {
  font-size: 44px;
  line-height: 1.1;
  margin-bottom: 16px;
}

.hero p {
  margin: 0 0 22px 0;
  font-size: 18px;
}

.button-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  background: #d9894a;
  color: #fff;
  border: none;
  padding: 12px 18px;
  cursor: pointer;
  font-weight: 600;
}

.btn-secondary {
  background: #5b4e45;
}

.section {
  padding: 70px 0;
}

.section-light {
  background: #fdfbf7;
}

.section-dark {
  background: #2c2b2a;
  color: #f9f6f1;
}

.split {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > div {
  flex: 1 1 320px;
}

.image-frame {
  background: #d9d2c7;
  padding: 12px;
  display: flex;
}

.image-frame img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

.card-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 240px;
  background: #ffffff;
  padding: 20px;
  border: 1px solid #e2d9cc;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  background: #d9d2c7;
}

.storyline {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.quote {
  font-style: italic;
  background: #f0ebe2;
  padding: 16px;
  color: #2a2a2a;
  border-left: 4px solid #d9894a;
}

.pricing {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.price-card {
  flex: 1 1 250px;
  background: #fdfbf7;
  border: 1px solid #e5ddd2;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price-card strong {
  font-size: 20px;
}

.sticky-panel {
  position: sticky;
  top: 24px;
  align-self: flex-start;
  background: #fff3e4;
  padding: 18px;
  border: 1px solid #e0c9b4;
  max-width: 260px;
}

.form-section {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.form-wrapper {
  flex: 1 1 320px;
  background: #ffffff;
  padding: 24px;
  border: 1px solid #e2d9cc;
}

.form-wrapper label {
  display: block;
  font-weight: 600;
  margin-top: 14px;
}

.form-wrapper select,
.form-wrapper input,
.form-wrapper textarea {
  width: 100%;
  padding: 10px;
  margin-top: 6px;
  border: 1px solid #c9c0b6;
  font-family: inherit;
}

.form-wrapper button {
  margin-top: 18px;
  width: 100%;
}

.inline-cta {
  background: #fff3e4;
  color: #262423;
  padding: 18px;
}

.footer {
  background: #262423;
  color: #f1ede7;
  padding: 40px 0;
  font-size: 14px;
}

.footer a {
  color: #f1ede7;
}

.footer-columns {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.footer-columns > div {
  flex: 1 1 220px;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: #fdfbf7;
  border: 1px solid #d7cfc4;
  padding: 16px;
  display: none;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  z-index: 1000;
}

.cookie-banner button {
  padding: 8px 14px;
  border: none;
  cursor: pointer;
}

.cookie-accept {
  background: #d9894a;
  color: #fff;
}

.cookie-reject {
  background: #8a8075;
  color: #fff;
}

.simple-hero {
  background-color: #2a2a2a;
  color: #fff;
  padding: 60px 0;
}

.legal-section {
  padding: 50px 0 80px 0;
}

.legal-section h2 {
  margin-top: 30px;
}
