:root {
  --bg: #f6f3ef;
  --ink: #1f1a17;
  --accent: #5b3b2e;
  --muted: #7b6f68;
  --paper: #ffffff;
  --sand: #efe8df;
  --olive: #6a6d55;
  --rose: #d8c3b6;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.topbar {
  display: flex;
  flex-direction: column;
  padding: 22px 6vw 10px;
  background: var(--paper);
  border-bottom: 1px solid #e7dfd6;
}

.topbar-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.brand {
  font-size: 1.3rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  border: 1px solid #e0d7ce;
  padding: 6px 10px;
  border-radius: 999px;
  background: #f9f6f2;
}

.nav {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.nav a {
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--sand);
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  padding: 60px 6vw 40px;
  align-items: stretch;
}

.hero-visual {
  flex: 1 1 48%;
  min-height: 380px;
  background: #e6ddd3;
  background-size: cover;
  background-position: center;
  border-radius: 28px;
}

.hero-copy {
  flex: 1 1 40%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  padding: 18px 8px 18px 0;
}

.hero-copy h1 {
  font-size: 2.8rem;
  margin: 0;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.button.secondary {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.inline-link {
  text-decoration: underline;
  color: var(--accent);
}

.section {
  padding: 50px 6vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section.asymmetric {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}

.section.asymmetric.reverse {
  flex-direction: row-reverse;
}

.split-large {
  flex: 1 1 52%;
}

.split-image {
  flex: 1 1 38%;
}

.half-image {
  flex: 1 1 44%;
}

.half-form {
  flex: 1 1 48%;
}

.section-card {
  background: var(--paper);
  padding: 24px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(31, 26, 23, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 220px;
  background: var(--paper);
  border-radius: 18px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid #eee3d8;
}

.card img {
  border-radius: 14px;
  width: 100%;
  height: 180px;
  background: #e9e1d8;
}

.image-frame {
  background: #e7dbd0;
  border-radius: 16px;
  overflow: hidden;
}

.split-rail {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.rail-main {
  flex: 1 1 58%;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.rail-side {
  flex: 1 1 28%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: sticky;
  top: 24px;
  align-self: flex-start;
  background: var(--rose);
  padding: 18px;
  border-radius: 18px;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
  padding: 18px;
  background: var(--paper);
  border-radius: 16px;
  border: 1px solid #eadfd5;
}

.price {
  font-weight: 700;
  color: var(--accent);
  white-space: nowrap;
}

.form-panel {
  background: var(--sand);
  padding: 26px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-weight: 600;
  font-size: 0.95rem;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d9cdc2;
  font-size: 1rem;
  background: #fff;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.contact-card {
  flex: 1 1 240px;
  background: var(--paper);
  padding: 18px;
  border-radius: 16px;
  border: 1px solid #e7dbd0;
}

.footer {
  margin-top: auto;
  padding: 30px 6vw 40px;
  background: #1e1815;
  color: #f2ebe2;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer small {
  color: #c8bdb4;
}

.banner {
  min-height: 260px;
  border-radius: 24px;
  background-color: #e6ddd3;
  background-size: cover;
  background-position: center;
}

.home-hero {
  background-image: url("https://images.unsplash.com/photo-1483985988355-763728e1935b?w=1400&q=80");
}

.atelier-banner {
  background-image: url("https://images.unsplash.com/photo-1521572163474-6864f9cf17ab?w=1400&q=80");
}

.about-banner {
  background-image: url("https://images.unsplash.com/photo-1489987707025-afc232f7ea0f?w=1400&q=80");
}

.services-banner {
  background-image: url("https://images.unsplash.com/photo-1503342394128-c104d54dba01?w=1400&q=80");
}

.policy-section {
  background: var(--paper);
  padding: 28px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  background: var(--paper);
  border-radius: 18px;
  box-shadow: 0 12px 40px rgba(30, 24, 21, 0.2);
  padding: 16px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 50;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-actions .button {
  padding: 10px 16px;
}

@media (max-width: 900px) {
  .hero {
    flex-direction: column;
  }

  .rail-side {
    position: static;
  }
}
