* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #1b1b1b;
  background: #f7f4f0;
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: #1b1b1b;
  text-decoration: none;
}

.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 24px 80px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 0;
}

.brand {
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
  text-align: right;
}

.ad-label {
  font-size: 0.85rem;
  color: #5a4c3b;
  background: #f0e7dd;
  padding: 6px 10px;
  border-radius: 14px;
}

.hero {
  display: flex;
  align-items: stretch;
  gap: 32px;
  margin-top: 20px;
  position: relative;
}

.hero-copy {
  flex: 1;
  padding: 40px 0;
}

.hero-copy h1 {
  font-size: 2.8rem;
  line-height: 1.1;
  margin-bottom: 16px;
}

.hero-image {
  flex: 1;
  position: relative;
  margin-top: 20px;
}

.hero-image .image-frame {
  border-radius: 18px;
  overflow: hidden;
  background: #d9d2c6;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15);
}

.hero-tag {
  position: absolute;
  top: -18px;
  right: 20px;
  background: #1b1b1b;
  color: #fff;
  padding: 10px 16px;
  border-radius: 18px;
  font-size: 0.9rem;
}

.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.button {
  padding: 12px 20px;
  border-radius: 24px;
  border: 1px solid #1b1b1b;
  background: #1b1b1b;
  color: #fff;
  cursor: pointer;
  font-size: 1rem;
}

.button.alt {
  background: transparent;
  color: #1b1b1b;
}

.section {
  margin-top: 72px;
  position: relative;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 18px;
}

.offset-block {
  display: flex;
  gap: 28px;
  align-items: center;
  flex-wrap: wrap;
}

.offset-block.reverse {
  flex-direction: row-reverse;
}

.offset-block .text {
  flex: 1;
  min-width: 280px;
}

.offset-block .visual {
  flex: 1;
  min-width: 280px;
  position: relative;
}

.offset-block .visual .image-frame {
  border-radius: 16px;
  overflow: hidden;
  background: #d8d1c6;
}

.float-card {
  position: absolute;
  bottom: -22px;
  left: 24px;
  background: #fff;
  padding: 14px 16px;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  font-size: 0.95rem;
}

.highlight-band {
  background: #efe6db;
  padding: 26px 24px;
  border-radius: 20px;
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.highlight-band .item {
  flex: 1;
  min-width: 220px;
}

.pricing-list {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.price-card {
  flex: 1;
  min-width: 230px;
  background: #ffffff;
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.08);
}

.price-card .image-frame {
  border-radius: 14px;
  overflow: hidden;
  background: #dcd6cc;
  margin-bottom: 12px;
}

.testimonial-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.testimonial {
  flex: 1;
  min-width: 240px;
  background: #fff;
  padding: 18px;
  border-radius: 16px;
  border: 1px solid #e6dfd4;
}

.form-wrap {
  background: #ffffff;
  padding: 28px;
  border-radius: 20px;
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  align-items: flex-start;
}

.form-wrap form {
  flex: 1;
  min-width: 260px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-wrap input,
.form-wrap select,
.form-wrap textarea {
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #d6d1c8;
  font-size: 1rem;
}

.form-note {
  flex: 1;
  min-width: 220px;
}

.floating-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: #1b1b1b;
  color: #fff;
  padding: 12px 18px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 10;
}

.footer {
  margin-top: 80px;
  padding: 32px 0 24px;
  border-top: 1px solid #d9d2c6;
  font-size: 0.95rem;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: #ffffff;
  padding: 18px 20px;
  border-radius: 16px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
  max-width: 360px;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.muted {
  color: #5f564c;
}

.two-column {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.two-column .column {
  flex: 1;
  min-width: 260px;
}

.legal-box {
  background: #ffffff;
  padding: 24px;
  border-radius: 18px;
}

.image-strip {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.image-strip .image-frame {
  flex: 1;
  min-width: 220px;
  border-radius: 16px;
  overflow: hidden;
  background: #d5cec4;
}

.notice {
  background: #1b1b1b;
  color: #fff;
  padding: 18px;
  border-radius: 14px;
}

.bg-atelier {
  background-image: url("https://images.unsplash.com/photo-1493666438817-866a91353ca9?w=1400&q=80");
  background-size: cover;
  background-position: center;
  border-radius: 24px;
  color: #ffffff;
  padding: 36px;
  position: relative;
  overflow: hidden;
}

.bg-atelier::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.5);
}

.bg-atelier .bg-content {
  position: relative;
  z-index: 1;
}

@media (max-width: 900px) {
  .hero {
    flex-direction: column;
  }

  .floating-cta {
    position: static;
    margin: 24px auto 0;
    width: fit-content;
  }

  .cookie-banner {
    right: 24px;
  }
}
