* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1f1f22;
  --muted: #5e5e66;
  --accent: #8c6b4f;
  --accent-soft: #f1e7dd;
  --paper: #faf7f3;
  --shadow: rgba(17, 17, 17, 0.08);
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.nav {
  padding: 24px 6vw 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.nav-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.04em;
}

.ad-label {
  font-size: 0.9rem;
  color: var(--muted);
  padding: 6px 12px;
  border: 1px solid #d7c7b6;
  align-self: flex-start;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.nav-links a {
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

.main {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 64px;
  padding: 24px 6vw 80px;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: stretch;
}

.hero-visual {
  flex: 1 1 48%;
  min-height: 360px;
  background-color: #dbc8b7;
  position: relative;
  box-shadow: 0 24px 60px var(--shadow);
}

.hero-text {
  flex: 1 1 40%;
  display: flex;
  flex-direction: column;
  gap: 18px;
  justify-content: center;
}

.hero-text h1 {
  font-size: clamp(2rem, 3vw, 3.4rem);
  line-height: 1.15;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 20px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.btn-outline {
  background: transparent;
  color: var(--ink);
}

.section {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.split-offset {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}

.split-offset .text {
  flex: 1 1 52%;
}

.split-offset .media {
  flex: 1 1 40%;
  min-height: 260px;
  background-color: #e4d5c8;
  box-shadow: 0 20px 50px var(--shadow);
}

.offset-right {
  margin-left: auto;
}

.offset-left {
  margin-right: auto;
}

.accent-panel {
  background: var(--accent-soft);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 18px 40px var(--shadow);
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 240px;
  background: #fff;
  border: 1px solid #e2d6ca;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 16px;
  box-shadow: 0 14px 36px var(--shadow);
}

.card-media {
  height: 160px;
  background-color: #e9ddd2;
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.testimonial {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px;
  border-left: 3px solid var(--accent);
  background: #fff;
}

.form-shell {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: #fff;
  padding: 32px;
  border: 1px solid #eadfd4;
  box-shadow: 0 18px 44px var(--shadow);
}

.form-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.field {
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

input,
select,
textarea {
  padding: 10px 12px;
  border: 1px solid #cab9a8;
  font-size: 0.95rem;
}

.legal {
  font-size: 0.9rem;
  color: var(--muted);
}

.footer {
  padding: 40px 6vw 60px;
  background: #f0e6dc;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.floating-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  padding: 12px 16px;
  background: var(--accent);
  color: #fff;
  border: none;
  cursor: pointer;
  box-shadow: 0 16px 36px var(--shadow);
}

.cookie-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  background: #fff;
  border: 1px solid #e2d6ca;
  padding: 18px;
  display: none;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  box-shadow: 0 18px 44px var(--shadow);
  z-index: 999;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 10px 16px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: #fff;
  cursor: pointer;
}

.cookie-btn.secondary {
  background: transparent;
  color: var(--ink);
}

.page-hero {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}

.page-hero .media {
  flex: 1 1 38%;
  min-height: 240px;
  background-color: #e0d0c2;
}

.page-hero .text {
  flex: 1 1 52%;
}

.note {
  background: #fff;
  padding: 20px;
  border-left: 4px solid var(--accent);
}

.inline-link {
  color: var(--accent);
  text-decoration: underline;
}

.bg-soft {
  background: #f5ede4;
  padding: 28px;
}

.bg-atelier {
  background-image: url("https://images.unsplash.com/photo-1585128792020-803d29415281?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #fff;
}

.bg-atelier .accent-panel {
  background: rgba(31, 31, 34, 0.65);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.bg-mood {
  background-image: url("https://images.unsplash.com/photo-1567016376408-0226e4d0c1ea?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #fff;
}

.bg-mood .note {
  background: rgba(255, 255, 255, 0.88);
  color: var(--ink);
}

@media (max-width: 900px) {
  .hero,
  .split-offset,
  .page-hero {
    flex-direction: column;
  }

  .offset-right,
  .offset-left {
    margin: 0;
  }

  .floating-cta {
    right: 12px;
    bottom: 12px;
  }
}
