* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1e1e1e;
  background-color: #f7f4f1;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 6%;
  background-color: #f2ede7;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.5px;
}

.nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.85rem;
  color: #5b4a3a;
  border: 1px solid #d6c8bc;
  padding: 6px 10px;
  border-radius: 999px;
  background-color: #fdfbf9;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 70px 6%;
  background-color: #ece3d9;
  background-size: cover;
  background-position: center;
}

.hero .hero-inner {
  max-width: 620px;
  background-color: rgba(247, 244, 241, 0.88);
  padding: 28px;
  border-radius: 18px;
}

.hero h1 {
  margin: 0 0 12px;
  font-size: 2.5rem;
}

.hero p {
  margin: 0 0 14px;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid #1e1e1e;
  background-color: #1e1e1e;
  color: #fff;
  cursor: pointer;
  font-size: 0.95rem;
}

.btn.secondary {
  background-color: transparent;
  color: #1e1e1e;
}

.btn.light {
  background-color: #fdfbf9;
  color: #1e1e1e;
}

.section {
  padding: 60px 6%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}

.split .text {
  flex: 1 1 320px;
}

.split .media {
  flex: 1 1 320px;
}

.img-wrap {
  background-color: #d9cfc3;
  border-radius: 18px;
  overflow: hidden;
}

.storyline {
  background-color: #f0e7dc;
}

.storyline .story-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 240px;
  background-color: #fff;
  border-radius: 16px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 10px 30px rgba(23, 20, 16, 0.08);
}

.card .card-img {
  background-color: #d9cfc3;
  border-radius: 12px;
  overflow: hidden;
}

.testimonials {
  background-color: #f6efe8;
  background-size: cover;
  background-position: center;
}

.quote {
  background-color: rgba(255, 255, 255, 0.85);
  border-radius: 14px;
  padding: 16px;
}

.price {
  font-size: 1.15rem;
  font-weight: 700;
}

.form-section {
  background-color: #f7f4f1;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 520px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #cfc3b7;
  font-size: 1rem;
  background-color: #fff;
}

.footer {
  margin-top: auto;
  background-color: #efe6dc;
  padding: 40px 6%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 0.95rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background-color: #1e1e1e;
  color: #fff;
  border-radius: 999px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  z-index: 20;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background-color: #fff;
  padding: 18px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(23, 20, 16, 0.1);
  max-width: 320px;
  z-index: 30;
  display: none;
}

.cookie-banner.active {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.page-hero {
  padding: 80px 6%;
  background-color: #efe6dc;
  background-size: cover;
  background-position: center;
  color: #1e1e1e;
}

.page-hero .hero-panel {
  max-width: 600px;
  background-color: rgba(247, 244, 241, 0.9);
  padding: 24px;
  border-radius: 16px;
}

.legal {
  background-color: #f7f4f1;
  padding: 50px 6%;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-weight: 500;
}

.notice {
  padding: 18px;
  border-radius: 12px;
  background-color: #fff7e8;
}

.service-pick {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.inline-link {
  text-decoration: underline;
}

@media (max-width: 760px) {
  .hero h1 {
    font-size: 2rem;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}

.hero-bg {
  background-image: url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=1400&q=80");
}

.testimonial-bg {
  background-image: url("https://images.unsplash.com/photo-1506784983877-45594efa4cbe?w=1400&q=80");
}

.about-hero {
  background-image: url("https://images.unsplash.com/photo-1487014679447-9f8336841d58?w=1400&q=80");
}

.services-hero {
  background-image: url("https://images.unsplash.com/photo-1503602642458-232111445657?w=1400&q=80");
}

.contact-hero {
  background-image: url("https://images.unsplash.com/photo-1512290923902-8a9f81dc236c?w=1400&q=80");
}

.privacy-hero {
  background-image: url("https://images.unsplash.com/photo-1469474968028-56623f02e42e?w=1400&q=80");
}

.gdpr-hero {
  background-image: url("https://images.unsplash.com/photo-1494173853739-c21f58b16055?w=1400&q=80");
}

.cookies-hero {
  background-image: url("https://images.unsplash.com/photo-1441986300917-64674bd600d8?w=1400&q=80");
}

.terms-hero {
  background-image: url("https://images.unsplash.com/photo-1473181488821-2d23949a045a?w=1400&q=80");
}

.thanks-hero {
  background-image: url("https://images.unsplash.com/photo-1501004318641-b39e6451bec6?w=1400&q=80");
}
