* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: #1a1a1a;
  background: #f6f6f2;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
  background-color: #d8d4cf;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 6vw;
  gap: 24px;
  background: #ffffff;
  border-bottom: 1px solid #e4e4e4;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand strong {
  font-size: 1.1rem;
  letter-spacing: 0.5px;
}

.ad-label {
  font-size: 0.85rem;
  color: #575757;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.nav a {
  padding: 6px 10px;
  border-radius: 999px;
  background: #f0f0ef;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  padding: 50px 6vw 30px;
  align-items: stretch;
  background: #f9f4ef;
}

.hero-content {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.hero-media {
  flex: 1 1 320px;
  min-height: 320px;
  background: #d8d4cf;
  border-radius: 24px;
  overflow: hidden;
}

.hero-media img {
  width: 100%;
  height: 100%;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  border: none;
  cursor: pointer;
  background: #1f4f4d;
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 0.95rem;
}

.button.secondary {
  background: #f2d9c2;
  color: #1a1a1a;
}

.section {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 48px 6vw;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.panel {
  flex: 1 1 300px;
}

.panel-image {
  flex: 1 1 280px;
  min-height: 260px;
  border-radius: 20px;
  overflow: hidden;
  background: #dfe7e3;
}

.panel-image img {
  width: 100%;
  height: 100%;
}

.story-bg {
  background-image: url("https://images.unsplash.com/photo-1507238691740-187a5b1d37b8?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
}

.atelier-bg {
  background-image: url("https://images.unsplash.com/photo-1519389950473-47ba0277781c?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.card img {
  width: 100%;
  height: 160px;
  border-radius: 12px;
}

.card .price {
  font-weight: 600;
  color: #1f4f4d;
}

.highlight {
  background: #1f4f4d;
  color: #ffffff;
}

.highlight .button.secondary {
  background: #ffffff;
  color: #1f4f4d;
}

.inline-link {
  text-decoration: underline;
  font-weight: 600;
}

.form-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  background: #ffffff;
  padding: 24px;
  border-radius: 20px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.08);
}

.form-wrap form {
  flex: 1 1 280px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #cfcfcf;
  font-size: 0.95rem;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  z-index: 20;
  border-radius: 999px;
  padding: 12px 16px;
  background: #f2d9c2;
  color: #1a1a1a;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.footer {
  margin-top: auto;
  padding: 32px 6vw;
  background: #111615;
  color: #f7f7f2;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-links a {
  text-decoration: underline;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: #ffffff;
  border-radius: 18px;
  padding: 18px;
  max-width: 320px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-actions button {
  padding: 8px 14px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
}

.cookie-accept {
  background: #1f4f4d;
  color: #ffffff;
}

.cookie-reject {
  background: #e9e2d9;
  color: #1a1a1a;
}

.simple-page {
  padding: 48px 6vw;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.simple-block {
  background: #ffffff;
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.05);
}

@media (max-width: 720px) {
  .top-bar {
    flex-direction: column;
    align-items: flex-start;
  }

  .sticky-cta {
    right: 10px;
    left: 10px;
    width: calc(100% - 20px);
  }
}
