* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: #1e1f22;
  background: #f6f4f1;
  line-height: 1.6;
}

a {
  color: #2b5d5b;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 6%;
  background: #f6f4f1;
  gap: 16px;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.ad-label {
  font-size: 0.85rem;
  color: #6a5f57;
  border: 1px solid #c7bfb6;
  padding: 6px 10px;
  border-radius: 20px;
  background: #fdfcfb;
}

.hero {
  background-image: url("https://images.pexels.com/photos/8036462/pexels-photo-8036462.jpeg");
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 120px 6% 100px;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(26, 22, 18, 0.55);
}

.hero-content {
  position: relative;
  max-width: 680px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.hero h1 {
  font-size: 2.8rem;
  margin: 0;
}

.hero p {
  margin: 0;
  font-size: 1.1rem;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  border: none;
  border-radius: 28px;
  padding: 12px 22px;
  background: #e0b36e;
  color: #1c1204;
  cursor: pointer;
}

.btn.secondary {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.section {
  padding: 70px 6%;
}

.section-tone {
  background: #f0ebe4;
}

.section-dark {
  background: #26221e;
  color: #f5f0ea;
}

.section-bg-atelier {
  background-image: url("https://images.pexels.com/photos/10061463/pexels-photo-10061463.jpeg");
  background-size: cover;
  background-position: center;
  color: #fff;
  position: relative;
}

.section-bg-atelier::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(23, 19, 16, 0.6);
}

.section-bg-atelier .content {
  position: relative;
}

.section h2,
.section h3 {
  margin-top: 0;
}

.split {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text,
.split .media {
  flex: 1 1 300px;
}

.story-card {
  background: #fff;
  padding: 28px;
  border-radius: 20px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.image-frame {
  background-color: #ded6cf;
  border-radius: 20px;
  overflow: hidden;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.quote {
  border-left: 4px solid #e0b36e;
  padding-left: 18px;
  font-style: italic;
}

.service-grid {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.service-card {
  flex: 1 1 220px;
  background: #fff;
  border-radius: 18px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.service-card button {
  align-self: flex-start;
}

.pricing {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.pricing-item {
  background: #fff;
  border-radius: 18px;
  padding: 18px 22px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.form-wrap {
  background: #fff;
  padding: 28px;
  border-radius: 20px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
}

.form-wrap form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-wrap input,
.form-wrap select,
.form-wrap textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #c9c0b8;
  background: #fffdfb;
}

.inline-cta {
  color: #2b5d5b;
  text-decoration: underline;
}

.sticky-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #2b5d5b;
  color: #fff;
  padding: 12px 18px;
  border-radius: 30px;
  display: flex;
  gap: 10px;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.sticky-cta.visible {
  opacity: 1;
  pointer-events: auto;
}

.sticky-cta button {
  background: #e0b36e;
  color: #1c1204;
  border: none;
  border-radius: 20px;
  padding: 8px 14px;
  cursor: pointer;
}

.footer {
  background: #1e1a16;
  color: #e8e0d6;
  padding: 40px 6%;
  margin-top: auto;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.footer small {
  display: block;
  margin-top: 20px;
  color: #c7bfb6;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fdfcfb;
  border-top: 1px solid #c7bfb6;
  padding: 16px 6%;
  display: none;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  z-index: 10;
}

.cookie-banner.visible {
  display: flex;
}

.cookie-actions {
  display: flex;
  gap: 12px;
}

.highlight {
  color: #e0b36e;
}

.note {
  font-size: 0.95rem;
  color: #6f655c;
}

.contact-block {
  background: #fff;
  padding: 24px;
  border-radius: 18px;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
