* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1f2933;
  --muted: #5b6770;
  --sand: #f6f1ec;
  --clay: #f0e4da;
  --sage: #dfe9e2;
  --sky: #e7f0f7;
  --accent: #b4552d;
  --accent-soft: #f2d8c8;
  --card: #ffffff;
}

body {
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--ink);
  line-height: 1.55;
  background: #fffaf6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 7vw 18px;
  gap: 24px;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  background: var(--accent-soft);
  padding: 6px 12px;
  border-radius: 999px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.04em;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 42px 7vw 30px;
}

.hero-visual {
  background: var(--sand);
  padding: 16px;
  border-radius: 22px;
}

.hero-visual img {
  width: 100%;
  border-radius: 18px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 560px;
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  border: none;
  background: var(--accent);
  color: #fff;
  padding: 12px 20px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.section {
  padding: 40px 7vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section.alt {
  background: var(--clay);
}

.section.muted {
  background: var(--sage);
}

.section.sky {
  background: var(--sky);
}

.bg-atelier {
  background-color: #d9e0d6;
  background-image: url("https://images.unsplash.com/photo-1517849845537-4d257902454a?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-petshop {
  background-color: #f0e6dd;
  background-image: url("https://images.unsplash.com/photo-1525253086316-d0c936c814f8?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.split-row {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.offset-card {
  background: var(--card);
  padding: 22px;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(25, 25, 25, 0.08);
}

.offset-card.secondary {
  margin-left: auto;
  max-width: 520px;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--card);
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 8px 24px rgba(30, 30, 30, 0.08);
}

.card img {
  border-radius: 12px;
  width: 100%;
}

.image-frame {
  background-color: #e8dcd3;
  border-radius: 16px;
  overflow: hidden;
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.tagline {
  font-size: 0.95rem;
  color: var(--muted);
}

.inline-cta {
  color: var(--accent);
  font-weight: 600;
  text-decoration: underline;
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--card);
  padding: 22px;
  border-radius: 20px;
  box-shadow: 0 12px 28px rgba(20, 20, 20, 0.08);
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.field input,
.field select,
.field textarea {
  padding: 12px;
  border: 1px solid #d3c4b9;
  border-radius: 10px;
  font-size: 1rem;
}

.footer {
  margin-top: auto;
  padding: 28px 7vw 40px;
  background: #201915;
  color: #f7efe9;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer a {
  color: #f7efe9;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: var(--accent);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.2);
  z-index: 20;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  background: #fff;
  padding: 16px;
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.15);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-actions button {
  border: none;
  padding: 10px 16px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
}

.cookie-accept {
  background: var(--accent);
  color: #fff;
}

.cookie-reject {
  background: #ede2d8;
  color: var(--ink);
}

@media (min-width: 900px) {
  .hero {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .hero-visual {
    flex: 1;
  }

  .hero-content {
    flex: 1;
    padding-right: 40px;
  }

  .split {
    flex-direction: row;
    align-items: flex-start;
  }

  .split-row {
    flex-direction: row;
  }

  .cards {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card {
    flex: 1 1 240px;
  }
}
