* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1e1c1a;
  --muted: #5e5852;
  --cream: #f6f2ec;
  --stone: #ece4da;
  --rose: #f1d9d9;
  --sage: #d7e2d3;
  --sand: #efe7dc;
  --deep: #2c2926;
  --accent: #b16453;
  --accent-2: #3f6b63;
}

body {
  font-family: "Georgia", "Times New Roman", serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  object-fit: cover;
}

a {
  color: var(--accent-2);
  text-decoration: none;
}

a:hover,
a:focus {
  text-decoration: underline;
}

button {
  border: none;
  font-family: inherit;
  cursor: pointer;
}

.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px;
}

.top-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 24px;
  background: var(--sand);
}

.brand {
  font-size: 1.4rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ad-label {
  font-size: 0.9rem;
  color: var(--deep);
  background: var(--rose);
  padding: 6px 10px;
  border-radius: 999px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.95rem;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  padding: 42px 24px;
  background: var(--stone);
}

.hero-copy {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-image {
  flex: 1 1 320px;
  min-height: 320px;
  background-color: #d8c9bd;
  border-radius: 18px;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;
}

.bg-scent {
  background-color: #d8d1c7;
  background-image: url("https://images.unsplash.com/photo-1523292562811-8fa7962a78c8?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-atelier {
  background-color: #d0d6d1;
  background-image: url("https://images.unsplash.com/photo-1515378791036-0648a3ef77b2?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.btn {
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: 0.95rem;
}

.btn.secondary {
  background: var(--deep);
}

.btn.ghost {
  background: transparent;
  border: 1px solid var(--deep);
  color: var(--deep);
}

.magazine-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding: 32px 0;
}

.col-main {
  flex: 2 1 360px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.col-side {
  flex: 1 1 240px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.panel {
  background: #fff;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
}

.panel.rose {
  background: var(--rose);
}

.panel.sage {
  background: var(--sage);
}

.panel.sand {
  background: var(--sand);
}

.section-title {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.inline-media {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}

.inline-media .media {
  flex: 1 1 200px;
  min-height: 220px;
  border-radius: 16px;
  overflow: hidden;
  background-color: #d9d1c8;
}

.inline-media .media img {
  width: 100%;
  height: 100%;
}

.stats {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.stat {
  flex: 1 1 140px;
  background: #fff;
  padding: 14px;
  border-radius: 12px;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.service-card {
  flex: 1 1 250px;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-media {
  height: 180px;
  background-color: #d6cbc2;
}

.service-media img {
  width: 100%;
  height: 100%;
}

.service-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: bold;
  color: var(--accent-2);
}

.form-area {
  background: #fff;
  padding: 24px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-area label {
  font-size: 0.9rem;
  color: var(--muted);
}

.form-area input,
.form-area select,
.form-area textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #d7cfc6;
  font-family: inherit;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.form-row > div {
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: var(--deep);
  color: #fff;
  padding: 12px 16px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 10;
}

.sticky-cta button {
  background: #fff;
  color: var(--deep);
  padding: 6px 12px;
  border-radius: 999px;
}

.footer {
  padding: 32px 24px;
  background: var(--deep);
  color: #f5f1ec;
}

.footer a {
  color: #f5f1ec;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-col {
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
  max-width: 320px;
  z-index: 12;
}

.cookie-actions {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.cookie-actions button {
  padding: 8px 12px;
  border-radius: 999px;
}

.muted {
  color: var(--muted);
}

.centered {
  text-align: center;
}

.contact-block {
  background: #fff;
  border-radius: 16px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.legal-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.simple-hero {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 30px 24px;
  background: var(--sage);
}

.simple-hero .text {
  flex: 1 1 320px;
}

.simple-hero .media {
  flex: 1 1 280px;
  background-color: #cfdacd;
  border-radius: 16px;
  overflow: hidden;
  min-height: 240px;
}

.simple-hero .media img {
  width: 100%;
  height: 100%;
}

.disclaimer {
  margin-top: 18px;
  font-size: 0.9rem;
  color: #efe8e1;
}

@media (max-width: 760px) {
  .top-bar {
    justify-content: center;
  }

  .sticky-cta {
    right: 10px;
    left: 10px;
    justify-content: space-between;
  }
}
