* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --bg: #faf7f2;
  --ink: #1f1b16;
  --muted: #6c6258;
  --accent: #7c4e2a;
  --accent-soft: #efe4d8;
  --card: #ffffff;
  --border: #e6ddd2;
  --shadow: 0 12px 30px rgba(31, 27, 22, 0.08);
}

body {
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.topbar {
  padding: 24px 0 18px;
  border-bottom: 1px solid var(--border);
  background: #fffdf9;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 14px;
  color: var(--muted);
}

.ad-label {
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 12px;
}

.section {
  padding: 64px 0;
}

.section-tight {
  padding: 40px 0;
}

.section-muted {
  background: #f5eee5;
}

.hero {
  color: #fff;
  padding: 110px 0 90px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(31, 27, 22, 0.75), rgba(31, 27, 22, 0.25));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 620px;
}

.hero h1 {
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.1;
  margin-bottom: 18px;
}

.hero p {
  font-size: 18px;
  color: #f1e8df;
  margin-bottom: 26px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 28px;
  border: none;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  box-shadow: var(--shadow);
}

.btn-secondary {
  background: #fff;
  color: var(--accent);
  border: 1px solid var(--accent);
  box-shadow: none;
}

.btn-ghost {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
  box-shadow: none;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > div {
  flex: 1 1 320px;
}

.image-wrap {
  background: #e2d7ca;
  border-radius: 18px;
  overflow: hidden;
  min-height: 260px;
  box-shadow: var(--shadow);
}

.note {
  font-size: 14px;
  color: var(--muted);
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.pill {
  padding: 6px 12px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--border);
  font-size: 13px;
  color: var(--muted);
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.card {
  flex: 1 1 240px;
  background: var(--card);
  border-radius: 18px;
  padding: 22px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 14px;
  border: 1px solid #f1e9df;
}

.card h3 {
  font-size: 18px;
}

.card-price {
  font-size: 20px;
  font-weight: 600;
  color: var(--accent);
}

.inline-cta {
  color: var(--accent);
  font-weight: 600;
  text-decoration: underline;
}

.testimonial {
  border-left: 3px solid var(--accent);
  padding-left: 16px;
  color: var(--muted);
}

.form-box {
  background: #fff;
  border-radius: 22px;
  padding: 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}

label {
  font-size: 14px;
  color: var(--muted);
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
  font-size: 15px;
  background: #fff;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: #fff;
  border: 1px solid var(--border);
  padding: 12px 14px;
  border-radius: 14px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 20;
}

.sticky-cta span {
  font-size: 13px;
  color: var(--muted);
}

footer {
  padding: 48px 0;
  background: #f3ece2;
  color: var(--muted);
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-grid > div {
  flex: 1 1 220px;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  border-top: 1px solid var(--border);
  padding: 16px 0;
  z-index: 30;
}

.cookie-content {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.bg-hero {
  background-image: url("https://images.unsplash.com/photo-1763630817183-c839c6d908f3?w=1400&q=80");
}

.bg-atelier {
  background-image: url("https://images.unsplash.com/photo-1766560361090-631fc8294b60?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #fff;
}

.bg-atelier .container {
  position: relative;
  z-index: 1;
}

.bg-atelier::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(31, 27, 22, 0.65);
}

.bg-atelier {
  position: relative;
}

.tagline {
  font-size: 20px;
  color: var(--muted);
}

.space-top {
  margin-top: 20px;
}

.center-text {
  text-align: center;
}

@media (max-width: 720px) {
  .topbar-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .sticky-cta {
    left: 16px;
    right: 16px;
    bottom: 16px;
    justify-content: space-between;
  }
}
