* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  color: #1f2328;
  background: #f7f5f2;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  gap: 24px;
}

.brand {
  font-size: 20px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  font-weight: 600;
}

.nav-links {
  display: flex;
  gap: 18px;
  font-size: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.ad-label {
  font-size: 12px;
  padding: 6px 10px;
  border: 1px solid #c1b7ac;
  border-radius: 999px;
  background: #fff6e5;
}

.split {
  display: flex;
  gap: 32px;
  align-items: stretch;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.panel {
  flex: 1 1 360px;
  min-width: 280px;
}

.panel-tight {
  flex: 1 1 320px;
}

.panel-bg {
  border-radius: 24px;
  background-color: #d9d2c7;
  min-height: 320px;
  overflow: hidden;
}

.panel-bg.atelier {
  background-image: url("https://images.unsplash.com/photo-7MAISGqP2Jw?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.panel-bg.studio {
  background-image: url("https://images.unsplash.com/photo-g39p1kDjvSY?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.panel-bg.material {
  background-image: url("https://images.unsplash.com/photo-hTVwP4rzD48?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.section {
  padding: 56px 0;
}

.section.alt {
  background: #efe9e1;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 1.4px;
  font-size: 12px;
  color: #6a635a;
}

h1,
h2,
h3 {
  margin: 12px 0 16px;
  line-height: 1.2;
}

h1 {
  font-size: 40px;
}

h2 {
  font-size: 30px;
}

h3 {
  font-size: 20px;
}

.lead {
  font-size: 18px;
  color: #3a3f44;
}

.cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid #1f2328;
  background: #1f2328;
  color: #fff;
  font-size: 14px;
  cursor: pointer;
}

.btn.secondary {
  background: transparent;
  color: #1f2328;
}

.btn.light {
  background: #fff;
  color: #1f2328;
  border-color: #fff;
}

.cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 240px;
  background: #fff;
  border-radius: 20px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

.card-image {
  border-radius: 16px;
  overflow: hidden;
  background-color: #d9d2c7;
  height: 180px;
}

.price {
  font-weight: 600;
  font-size: 18px;
}

.steps {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.step {
  flex: 1 1 220px;
  background: #fff;
  border-radius: 18px;
  padding: 16px;
  border: 1px solid #e1d9cf;
}

.quote {
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  border: 1px solid #e1d9cf;
}

.inline-link {
  border-bottom: 1px solid currentColor;
}

.form-wrap {
  background: #fff;
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

label {
  display: block;
  font-size: 14px;
  margin-bottom: 6px;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #d6cec4;
  font-size: 14px;
  background: #faf8f5;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.field {
  margin-bottom: 16px;
}

.sticky-cta {
  position: sticky;
  bottom: 0;
  background: #1f2328;
  color: #fff;
  padding: 14px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.sticky-cta .btn {
  border-color: #fff;
}

.footer {
  padding: 40px 0 60px;
  font-size: 14px;
  color: #4d4d4d;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin: 12px 0 24px;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  right: 20px;
  max-width: 360px;
  background: #ffffff;
  border: 1px solid #d6cec4;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.16);
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.hidden {
  display: none;
}

.hero-image {
  border-radius: 28px;
  overflow: hidden;
  background-color: #d9d2c7;
  min-height: 420px;
}

.img-inline {
  border-radius: 20px;
  overflow: hidden;
  background-color: #d9d2c7;
  height: 240px;
}

.legal-box {
  background: #fff;
  border-radius: 18px;
  padding: 20px;
  border: 1px solid #e1d9cf;
}

.contact-block {
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  border: 1px solid #e1d9cf;
}
