* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --ink: #1d1b1a;
  --muted: #6b6461;
  --cream: #f6f1ec;
  --sand: #efe5dc;
  --rose: #d3b6ad;
  --accent: #8b5e52;
  --leaf: #7c8a7d;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

header {
  padding: 20px 6vw;
  background: #fff;
  border-bottom: 1px solid #efe6df;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.brand {
  font-size: 22px;
  letter-spacing: 0.04em;
  font-weight: 600;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  font-size: 14px;
}

.ad-label {
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--sand);
  font-size: 12px;
  color: var(--muted);
}

main {
  flex: 1;
}

.hero {
  min-height: 70vh;
  display: flex;
  align-items: center;
  padding: 70px 6vw;
  background-color: #e9ded6;
  background-image: url("https://images.unsplash.com/photo-1763631403216-8d193008481e?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  max-width: 560px;
  background: rgba(255, 255, 255, 0.88);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero h1 {
  font-size: 40px;
  line-height: 1.1;
  margin: 0;
}

.hero p {
  margin: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  border: 0;
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.section {
  padding: 70px 6vw;
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.section.alt {
  background: var(--cream);
}

.section.highlight {
  background: var(--sand);
}

.split {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > div {
  flex: 1 1 280px;
}

.img-wrap {
  background-color: #e8dcd2;
  border-radius: 18px;
  overflow: hidden;
}

.img-warm {
  background-color: #eadfd7;
}

.img-soft {
  background-color: #e3d6cc;
}

.img-mist {
  background-color: #e7dad1;
}

.img-petal {
  background-color: #e4d7cd;
}

.img-clay {
  background-color: #e6dbd2;
}

.img-rose {
  background-color: #e5d7cc;
}

.img-dust {
  background-color: #eaded6;
}

.img-silk {
  background-color: #e5d8d0;
}

.card-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 220px;
  background: #fff;
  border-radius: 20px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 12px 30px rgba(29, 27, 26, 0.08);
}

.card h3 {
  margin: 0;
}

.tag {
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.price {
  font-size: 20px;
  font-weight: 600;
  color: var(--accent);
}

.inline-cta {
  font-weight: 600;
}

.testimonials {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.quote {
  background: #fff;
  border-left: 4px solid var(--rose);
  padding: 16px 18px;
}

.form-wrap {
  background: #fff;
  padding: 24px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 12px 30px rgba(29, 27, 26, 0.08);
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-weight: 600;
  font-size: 14px;
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #d8cbc3;
  font-size: 14px;
}

.sticky-cta {
  position: fixed;
  bottom: 16px;
  right: 16px;
  background: #fff;
  border-radius: 999px;
  padding: 10px 14px;
  display: flex;
  gap: 12px;
  align-items: center;
  box-shadow: 0 10px 20px rgba(29, 27, 26, 0.12);
  z-index: 10;
}

.sticky-cta span {
  font-size: 13px;
  color: var(--muted);
}

footer {
  background: #111;
  color: #f7f3f0;
  padding: 40px 6vw;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-links a {
  color: #f7f3f0;
}

.legal {
  font-size: 12px;
  color: #d8cfc9;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  border-top: 1px solid #e6ddd6;
  padding: 16px 6vw;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hidden {
  display: none;
}

.service-hero {
  background: #f0e6dd;
}

.page-hero {
  padding: 50px 6vw;
}

.page-hero h1 {
  margin: 0;
}

.note {
  font-size: 13px;
  color: var(--muted);
}

.background-panel {
  background-color: #e7ddd6;
  background-image: url("https://images.unsplash.com/photo-1742631454377-3eb6645b4780?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #1b1615;
}

.background-panel .panel-content {
  background: rgba(255, 255, 255, 0.9);
  padding: 24px;
  max-width: 520px;
}
