* {
  box-sizing: border-box;
}

:root {
  --bg: #f7f3ef;
  --ink: #1f1a17;
  --muted: #6f625b;
  --accent: #b25f42;
  --accent-dark: #8f4630;
  --surface: #ffffff;
  --surface-alt: #efe7e0;
  --soft: #f2e9e1;
}

body {
  margin: 0;
  font-family: "Inter", "Arial", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: var(--accent-dark);
  text-decoration: none;
}

a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.topbar {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 18px 6vw;
  background: var(--surface);
  border-bottom: 1px solid #eadfd6;
}

.topbar-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.brand {
  font-size: 22px;
  letter-spacing: 1px;
  font-weight: 600;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.nav a {
  font-size: 15px;
}

.ad-label {
  font-size: 13px;
  color: var(--muted);
  max-width: 520px;
}

.hero {
  position: relative;
  padding: 70px 6vw 110px;
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  background: var(--surface-alt);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1487412720507-e7ab37603c6f?w=1400&q=80");
  background-size: cover;
  background-position: center;
  opacity: 0.22;
}

.hero-content {
  position: relative;
  flex: 1 1 320px;
  max-width: 520px;
}

.hero-card {
  position: relative;
  flex: 1 1 320px;
  background: var(--surface);
  padding: 26px;
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  align-self: flex-start;
}

.section {
  padding: 70px 6vw;
}

.section-offset {
  margin-top: -40px;
}

.section-header {
  max-width: 680px;
  margin-bottom: 30px;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.split .panel {
  flex: 1 1 280px;
}

.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.card {
  flex: 1 1 240px;
  background: var(--surface);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
}

.card-body {
  padding: 20px 20px 26px;
}

.card-image {
  background: #d7c5b7;
  padding: 0;
}

.tag {
  display: inline-flex;
  padding: 6px 14px;
  background: var(--soft);
  border-radius: 999px;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 12px;
}

.cta-button {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 12px 18px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
  align-self: flex-start;
}

.cta-link {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  font-weight: 600;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: var(--accent-dark);
  color: #fff;
  border: none;
  padding: 12px 18px;
  border-radius: 999px;
  cursor: pointer;
  z-index: 10;
}

.asym-block {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
  background: var(--surface);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.08);
}

.asym-image {
  flex: 1 1 240px;
  border-radius: 16px;
  overflow: hidden;
  background: #ccb9aa;
}

.asym-text {
  flex: 1 1 260px;
}

.quote {
  background: var(--soft);
  padding: 22px;
  border-radius: 16px;
  font-style: italic;
}

.form-wrap {
  background: var(--surface);
  padding: 28px;
  border-radius: 20px;
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.08);
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-grid label {
  font-size: 14px;
  color: var(--muted);
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #d9ccc2;
  font-size: 15px;
  font-family: inherit;
}

.image-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.image-strip .strip-image {
  flex: 1 1 160px;
  border-radius: 16px;
  overflow: hidden;
  background: #d9cbbf;
}

.footer {
  margin-top: auto;
  padding: 40px 6vw;
  background: #1c1512;
  color: #f5efe9;
}

.footer a {
  color: #f5efe9;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 14px;
}

.disclaimer {
  font-size: 13px;
  color: #e2d5cb;
  margin-top: 20px;
  max-width: 820px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: var(--surface);
  padding: 16px;
  border-radius: 16px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
  max-width: 360px;
  display: none;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions button {
  border: none;
  padding: 8px 12px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
}

.cookie-accept {
  background: var(--accent);
  color: #fff;
}

.cookie-reject {
  background: #e5d8cf;
  color: var(--ink);
}

.bg-atelier {
  background-image: url("https://images.unsplash.com/photo-1521572163474-6864f9cf17ab?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: var(--surface);
}

.bg-atelier .section-header,
.bg-atelier p {
  color: #fff;
}

.service-button {
  background: none;
  border: 1px solid var(--accent);
  color: var(--accent-dark);
  padding: 8px 14px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
}

.service-button.is-selected {
  background: var(--accent);
  color: #fff;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.price-tag {
  font-weight: 700;
  color: var(--accent-dark);
}

.offset-layer {
  margin-left: 6vw;
  margin-right: 2vw;
}

@media (max-width: 820px) {
  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }

  .offset-layer {
    margin: 0;
  }
}
