:root {
  --ink: #1e1e1e;
  --muted: #5f5f5f;
  --sand: #f6f1ec;
  --linen: #f0ebe6;
  --clay: #c7b9ad;
  --forest: #3e4a3f;
  --accent: #8c6f5a;
  --sun: #e6d8c9;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #faf8f6;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: var(--forest);
  text-decoration: none;
}

a:hover,
a:focus {
  text-decoration: underline;
}

button {
  font-family: inherit;
}

.header {
  background: #fff;
  border-bottom: 1px solid #e6e0da;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 22px 6vw 14px;
  gap: 18px;
  flex-wrap: wrap;
}

.brand {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.nav {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.nav a {
  font-size: 14px;
  color: var(--ink);
}

.ad-label {
  font-size: 12px;
  background: var(--sun);
  padding: 6px 10px;
  border-radius: 999px;
}

.hero {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 28px;
  padding: 64px 6vw 48px;
}

.hero-content {
  flex: 1.1;
  align-self: center;
  max-width: 520px;
}

.hero h1 {
  font-size: 46px;
  line-height: 1.1;
  margin: 0 0 16px;
}

.hero p {
  margin: 0 0 18px;
  color: var(--muted);
}

.hero-image {
  flex: 1;
  background: var(--sun);
  padding: 12px;
  margin-top: 24px;
}

.hero-image img {
  width: 100%;
  height: 420px;
}

.button {
  background: var(--forest);
  color: #fff;
  border: none;
  padding: 12px 20px;
  border-radius: 28px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.button.secondary {
  background: transparent;
  color: var(--forest);
  border: 1px solid var(--forest);
}

.section {
  padding: 56px 6vw;
}

.section.alt {
  background: var(--sand);
}

.bg-atelier {
  background-color: #5a534b;
  background-image: url("https://images.unsplash.com/photo-1493809842364-78817add7ffb?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #fff;
}

.bg-atelier .section-title,
.bg-atelier p {
  color: #fff;
}

.bg-texture {
  background-color: #cbb8a7;
  background-image: url("https://images.unsplash.com/photo-1507089947368-19c1da9775ae?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.section-title {
  font-size: 30px;
  margin-bottom: 12px;
}

.asym-wrap {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.asym-block {
  flex: 1;
  min-width: 260px;
}

.asym-block.offset {
  margin-top: 40px;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.08);
  flex: 1 1 240px;
  min-width: 240px;
}

.card img {
  width: 100%;
  height: 180px;
  background: var(--clay);
}

.card-body {
  padding: 18px;
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.highlight {
  background: var(--forest);
  color: #fff;
  padding: 28px;
  border-radius: 24px;
}

.inline-cta {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: var(--accent);
  font-weight: 600;
}

.image-panel {
  background: var(--sun);
  padding: 12px;
  position: relative;
}

.image-panel img {
  width: 100%;
  height: 280px;
}

.layered {
  position: relative;
}

.layered::before {
  content: "";
  position: absolute;
  top: -20px;
  left: 10%;
  right: 10%;
  bottom: -20px;
  background: var(--linen);
  z-index: 0;
  border-radius: 20px;
}

.layered > * {
  position: relative;
  z-index: 1;
}

.form-wrap {
  background: #fff;
  padding: 24px;
  border-radius: 20px;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.1);
}

.form-wrap label {
  display: block;
  font-size: 14px;
  margin-bottom: 8px;
}

.form-wrap input,
.form-wrap select,
.form-wrap textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #d6cec7;
  margin-bottom: 14px;
  font-size: 15px;
}

.form-note {
  font-size: 13px;
  color: var(--muted);
}

.sticky-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.15);
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 50;
}

.sticky-cta span {
  font-size: 13px;
  color: var(--muted);
}

.footer {
  background: #1f1f1f;
  color: #e7e1db;
  padding: 48px 6vw;
}

.footer a {
  color: #f3e7dc;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-block {
  flex: 1 1 220px;
}

.disclaimer {
  font-size: 13px;
  color: #d4c7bd;
  margin-top: 18px;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  border-top: 1px solid #e3dcd6;
  padding: 16px 6vw;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  z-index: 100;
}

.cookie-banner p {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
}

.cookie-actions {
  display: flex;
  gap: 12px;
}

.page-hero {
  padding: 56px 6vw 32px;
  background: var(--sand);
}

.page-hero h1 {
  margin: 0;
  font-size: 36px;
}

.listing {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.simple-card {
  background: #fff;
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

@media (max-width: 900px) {
  .hero {
    flex-direction: column;
  }

  .hero-image {
    margin-top: 0;
  }

  .sticky-cta {
    left: 16px;
    right: 16px;
  }
}
