* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #1e1a17;
  background-color: #fbf7f3;
  line-height: 1.6;
}

img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

header {
  padding: 28px 6vw 10px;
}

.topbar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  align-items: center;
  justify-content: space-between;
}

.brand {
  font-size: 1.6rem;
  letter-spacing: 0.04em;
  font-weight: 600;
}

.ad-label {
  font-size: 0.85rem;
  background: #efe2da;
  padding: 6px 10px;
  border-radius: 18px;
}

nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  list-style: none;
  font-size: 0.95rem;
}

.hero {
  min-height: 72vh;
  display: flex;
  align-items: center;
  padding: 40px 6vw;
  color: #fef8f4;
  background-color: #4b3228;
  background-size: cover;
  background-position: center;
  position: relative;
}

.page-home .hero {
  background-image: url("https://images.unsplash.com/photo-1468327768560-75b778cbb551?w=1400&q=80");
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(39, 26, 23, 0.45);
}

.hero-content {
  position: relative;
  max-width: 560px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  padding: 12px 22px;
  border-radius: 28px;
  background: #f3c9ba;
  border: none;
  font-weight: 600;
  cursor: pointer;
}

.btn.outline {
  background: transparent;
  border: 1px solid #f3c9ba;
  color: #fdf5f0;
}

.section {
  padding: 60px 6vw;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.section.alt {
  background: #f5ede7;
}

.section.dark {
  background: #2c211c;
  color: #fef6f2;
}

.section.reveal {
  background-image: url("https://images.unsplash.com/photo-1469022563428-aa04fef9f5a2?w=1400&q=80");
  background-color: #3b2a24;
  background-size: cover;
  background-position: center;
  color: #fff7f2;
  position: relative;
}

.section.reveal::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(34, 21, 18, 0.55);
}

.section.reveal > * {
  position: relative;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.split .media {
  flex: 1 1 280px;
  background-color: #ead8cf;
  border-radius: 18px;
  overflow: hidden;
  min-height: 260px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 10px 30px rgba(36, 25, 20, 0.08);
}

.card .media {
  background-color: #ecd4c8;
  border-radius: 12px;
  overflow: hidden;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  background: #f2ded4;
  padding: 6px 12px;
  border-radius: 16px;
}

.quote {
  background: #f6e7dd;
  padding: 18px;
  border-radius: 14px;
  font-style: italic;
}

.pricing {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pricing-item {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(42, 32, 27, 0.15);
}

.form-wrap {
  background: #fff4ee;
  padding: 24px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 0.95rem;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #dcc7be;
  font-size: 1rem;
  width: 100%;
  background: #fff;
}

.inline-link {
  color: #7a3c2e;
  font-weight: 600;
  text-decoration: underline;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: #f3c9ba;
  color: #2c1d18;
  padding: 10px 18px;
  border-radius: 24px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(44, 29, 24, 0.2);
  z-index: 50;
}

.page-hero {
  min-height: 38vh;
  padding: 60px 6vw;
  display: flex;
  align-items: flex-end;
  background-color: #4b362e;
  background-size: cover;
  background-position: center;
  color: #fff7f1;
  position: relative;
}

.page-about .page-hero {
  background-image: url("https://images.unsplash.com/photo-1509042239860-f550ce710b93?w=1400&q=80");
}

.page-services .page-hero {
  background-image: url("https://images.unsplash.com/photo-1477511801984-4ad318ed9846?w=1400&q=80");
}

.page-contact .page-hero {
  background-image: url("https://images.unsplash.com/photo-1506784983877-45594efa4cbe?w=1400&q=80");
}

.page-thanks .page-hero {
  background-image: url("https://images.unsplash.com/photo-1469474968028-56623f02e42e?w=1400&q=80");
}

.page-privacy .page-hero {
  background-image: url("https://images.pexels.com/photos/5413727/pexels-photo-5413727.jpeg");
}

.page-gdpr .page-hero {
  background-image: url("https://images.unsplash.com/photo-1494253109108-2e30c049369b?w=1400&q=80");
}

.page-cookies .page-hero {
  background-image: url("https://images.unsplash.com/photo-1470509037663-253afd7f0f51?w=1400&q=80");
}

.page-terms .page-hero {
  background-image: url("https://images.pexels.com/photos/37309564/pexels-photo-37309564.jpeg");
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(36, 22, 18, 0.45);
}

.page-hero h1 {
  position: relative;
}

.footer {
  padding: 40px 6vw;
  background: #221814;
  color: #f5e8e1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  background: #fffaf7;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 12px 28px rgba(32, 20, 16, 0.18);
  display: none;
  z-index: 60;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions button {
  padding: 8px 16px;
  border-radius: 18px;
  border: none;
  cursor: pointer;
  background: #f3c9ba;
}

.cookie-actions .secondary {
  background: #e6d4cc;
}

.reference-list {
  font-size: 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

@media (max-width: 820px) {
  .hero {
    min-height: auto;
  }

  nav ul {
    gap: 10px;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}
