:root {
  color-scheme: light;
  --bg: #f7f4ef;
  --ink: #1e1e1b;
  --muted: #5f5f59;
  --accent: #c26b3a;
  --accent-dark: #8f4a26;
  --surface: #ffffff;
  --sand: #efe7dd;
  --shadow: 0 18px 40px rgba(30, 30, 27, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

header {
  padding: 28px 0 10px;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  flex-wrap: wrap;
}

.brand {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.ad-label {
  font-size: 0.78rem;
  background: var(--sand);
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--muted);
}

.nav-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  font-size: 0.95rem;
}

.nav-links a {
  padding: 6px 10px;
  border-radius: 999px;
  background: transparent;
  border: 1px solid transparent;
}

.nav-links a:focus,
.nav-links a:hover {
  border-color: var(--accent);
}

.hero {
  margin-top: 20px;
  padding: 32px 0 60px;
}

.split {
  display: flex;
  gap: 36px;
  align-items: stretch;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > div {
  flex: 1 1 320px;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  color: var(--muted);
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.15;
}

h1 {
  font-size: clamp(2.4rem, 4vw, 3.4rem);
}

h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
}

h3 {
  font-size: 1.2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  border: 0;
  cursor: pointer;
}

.btn.secondary {
  background: var(--sand);
  color: var(--ink);
}

.btn.ghost {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.pill {
  background: var(--sand);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
}

.image-box {
  border-radius: 22px;
  overflow: hidden;
  background-color: #d9d1c7;
  min-height: 280px;
  box-shadow: var(--shadow);
}

.section {
  padding: 60px 0;
}

.section.alt {
  background: var(--surface);
}

.section.bg-atelier {
  background-image: url("https://images.unsplash.com/photo-1503387762-592deb58ef4e?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #fff;
}

.section.bg-atelier .card,
.section.bg-atelier .muted {
  color: #fff;
}

.card-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  background: var(--surface);
  padding: 22px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card figure {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  background-color: #e6dfd5;
  height: 170px;
}

.price {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent-dark);
}

.muted {
  color: var(--muted);
}

.inline-link {
  color: var(--accent);
  font-weight: 600;
}

.form-card {
  background: var(--surface);
  border-radius: 24px;
  padding: 24px;
  box-shadow: var(--shadow);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.95rem;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d6cdc3;
  font-size: 0.95rem;
  font-family: inherit;
  background: #fff;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.footer {
  background: #12120f;
  color: #e6e1da;
  padding: 50px 0 70px;
}

.footer a {
  color: #e6e1da;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
}

.sticky-cta {
  position: fixed;
  bottom: 22px;
  right: 22px;
  background: var(--accent);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: var(--shadow);
  font-weight: 600;
  z-index: 10;
}

#cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #fff;
  padding: 16px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  display: none;
  width: min(320px, 90vw);
  z-index: 12;
}

#cookie-banner p {
  margin: 0 0 12px;
  font-size: 0.9rem;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.legal-block {
  background: var(--surface);
  padding: 24px;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.table-like {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.table-like div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 8px;
  border-bottom: 1px dashed #d7d0c8;
}

.table-like span {
  font-weight: 600;
}

@media (max-width: 760px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .sticky-cta {
    right: 14px;
    bottom: 14px;
  }

  .table-like div {
    flex-direction: column;
  }
}
