* {
  box-sizing: border-box;
}

:root {
  --bg: #f7f2ec;
  --ink: #2a1e16;
  --muted: #6d5c4f;
  --accent: #b04a2f;
  --accent-dark: #8f3a24;
  --cream: #fff8f2;
  --card: #ffffff;
  --sand: #efe3d7;
  --olive: #d9d3c4;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page {
  min-height: 100vh;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 20px 6vw;
  background: var(--cream);
  border-bottom: 1px solid #e5d8cb;
  gap: 12px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  background: var(--sand);
  padding: 6px 10px;
  border-radius: 999px;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 70px 6vw 40px;
  background: linear-gradient(180deg, rgba(247, 242, 236, 0.95), rgba(247, 242, 236, 0.7)), url("https://images.pexels.com/photos/7125659/pexels-photo-7125659.jpeg") center/cover no-repeat;
}

.hero.about {
  background: linear-gradient(180deg, rgba(247, 242, 236, 0.95), rgba(247, 242, 236, 0.7)), url("https://images.pexels.com/photos/31692599/pexels-photo-31692599.jpeg") center/cover no-repeat;
}

.hero.services {
  background: linear-gradient(180deg, rgba(247, 242, 236, 0.95), rgba(247, 242, 236, 0.7)), url("https://images.pexels.com/photos/9623570/pexels-photo-9623570.jpeg") center/cover no-repeat;
}

.hero.contact {
  background: linear-gradient(180deg, rgba(247, 242, 236, 0.95), rgba(247, 242, 236, 0.7)), url("https://images.pexels.com/photos/4820673/pexels-photo-4820673.jpeg") center/cover no-repeat;
}

.hero.legal {
  background: linear-gradient(180deg, rgba(247, 242, 236, 0.95), rgba(247, 242, 236, 0.7)), url("https://images.pexels.com/photos/37539930/pexels-photo-37539930.jpeg") center/cover no-repeat;
}

.hero.thanks {
  background: linear-gradient(180deg, rgba(247, 242, 236, 0.95), rgba(247, 242, 236, 0.7)), url("https://images.pexels.com/photos/37539930/pexels-photo-37539930.jpeg") center/cover no-repeat;
}

.hero.privacy {
  background: linear-gradient(180deg, rgba(247, 242, 236, 0.95), rgba(247, 242, 236, 0.7)), url("https://images.pexels.com/photos/1419950/pexels-photo-1419950.jpeg") center/cover no-repeat;
}

.hero.gdpr {
  background: linear-gradient(180deg, rgba(247, 242, 236, 0.95), rgba(247, 242, 236, 0.7)), url("https://images.pexels.com/photos/7791301/pexels-photo-7791301.jpeg") center/cover no-repeat;
}

.hero.cookies {
  background: linear-gradient(180deg, rgba(247, 242, 236, 0.95), rgba(247, 242, 236, 0.7)), url("https://images.pexels.com/photos/13403714/pexels-photo-13403714.jpeg") center/cover no-repeat;
}

.hero.terms {
  background: linear-gradient(180deg, rgba(247, 242, 236, 0.95), rgba(247, 242, 236, 0.7)), url("https://images.pexels.com/photos/6280320/pexels-photo-6280320.jpeg") center/cover no-repeat;
}

.bg-services {
  background: linear-gradient(120deg, rgba(245, 237, 229, 0.9), rgba(245, 237, 229, 0.7)), url("https://images.pexels.com/photos/7791301/pexels-photo-7791301.jpeg") center/cover no-repeat;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 700px;
}

.hero-title {
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  line-height: 1.1;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--muted);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: white;
  font-weight: 600;
  cursor: pointer;
}

.btn.secondary {
  background: transparent;
  color: var(--accent-dark);
  border-color: var(--accent-dark);
}

.section {
  padding: 60px 6vw;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.section.alt {
  background: var(--cream);
}

.section.split {
  flex-direction: row;
  gap: 36px;
  align-items: stretch;
  flex-wrap: wrap;
}

.section.split.reverse {
  flex-direction: row-reverse;
}

.section .text-block {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.section .visual-block {
  flex: 1 1 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-frame {
  width: 100%;
  max-width: 520px;
  background: var(--olive);
  border-radius: 18px;
  overflow: hidden;
}

.frame-olive {
  background: var(--olive);
}

.frame-sand {
  background: var(--sand);
}

.frame-dark {
  background: #4b3a30;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--sand);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.9rem;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 240px;
  background: var(--card);
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid #eee3d7;
}

.card .image-frame {
  max-width: none;
  height: 160px;
}

.story-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  background: var(--sand);
  padding: 24px;
  border-radius: 20px;
}

.metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.metric {
  background: var(--card);
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid #f0e4d8;
  min-width: 180px;
}

.pricing {
  background: var(--ink);
  color: white;
  border-radius: 24px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.pricing .card {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.2);
  color: white;
}

.pricing .card p {
  color: #f7e9dd;
}

.form-block {
  background: var(--card);
  border-radius: 22px;
  padding: 26px;
  border: 1px solid #efe1d2;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-block form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-block label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #d7c6b7;
  font-size: 1rem;
  font-family: inherit;
}

.inline-cta {
  color: var(--accent-dark);
  text-decoration: underline;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: var(--accent-dark);
  color: white;
  padding: 12px 18px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  z-index: 20;
}

.footer {
  background: #1f1611;
  color: #f5ede5;
  padding: 40px 6vw;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer a {
  color: #f5ede5;
}

.footer .links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: var(--card);
  border-radius: 16px;
  padding: 16px;
  border: 1px solid #e7d8ca;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  display: none;
  max-width: 320px;
  z-index: 30;
}

.cookie-banner.visible {
  display: block;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.cookie-actions button {
  flex: 1;
}

.bg-section {
  background: linear-gradient(120deg, rgba(245, 237, 229, 0.9), rgba(245, 237, 229, 0.7)), url("https://images.pexels.com/photos/6280322/pexels-photo-6280322.jpeg") center/cover no-repeat;
}

.bg-section-dark {
  background: linear-gradient(120deg, rgba(31, 22, 17, 0.85), rgba(31, 22, 17, 0.8)), url("https://images.pexels.com/photos/4422871/pexels-photo-4422871.jpeg") center/cover no-repeat;
  color: #f5ede5;
}

.two-col {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.two-col > div {
  flex: 1 1 260px;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 18px;
}

.highlight {
  background: var(--sand);
  padding: 18px;
  border-radius: 16px;
}

.plain-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact-box {
  background: var(--card);
  border-radius: 18px;
  padding: 18px;
  border: 1px solid #eadbce;
}

@media (max-width: 860px) {
  .section.split,
  .section.split.reverse {
    flex-direction: column;
  }

  .hero {
    padding-top: 50px;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
