* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Arial", sans-serif;
  color: #1f1d1b;
  background: #f6f3ef;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.top-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 16px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.04em;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.ad-label {
  font-size: 12px;
  background: #f2dede;
  color: #612f2f;
  padding: 6px 10px;
  border-radius: 20px;
  white-space: nowrap;
}

.hero {
  position: relative;
  padding: 120px 0 110px;
  color: #fff;
}

.hero-bg {
  background-image: url("https://images.unsplash.com/photo-1687816043131-fd1c0d01df58?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: #2a2622;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(20, 17, 15, 0.55);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 520px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid #1f1d1b;
  background: #1f1d1b;
  color: #fff;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  background: #2a2724;
}

.btn-outline {
  background: transparent;
  color: #1f1d1b;
}

.section {
  padding: 80px 0;
}

.section.alt {
  background: #fff;
}

.section.tinted {
  background: #f0e9df;
}

.section-bg {
  background-image: url("https://images.unsplash.com/photo-1610508072973-dd4e656a677f?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #fff;
  background-color: #3a2f28;
}

.section-bg .overlay {
  background: rgba(29, 24, 20, 0.7);
  padding: 80px 0;
}

.split {
  display: flex;
  gap: 36px;
  align-items: center;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text {
  flex: 1 1 320px;
}

.split .visual {
  flex: 1 1 320px;
}

.offset-card {
  background: #fff;
  padding: 28px;
  border-radius: 24px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
  transform: translateY(-24px);
}

.image-wrap {
  background: #e6ded2;
  border-radius: 22px;
  overflow: hidden;
  height: 320px;
}

.image-wrap.tall {
  height: 420px;
}

.cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  background: #fff;
  border-radius: 20px;
  padding: 18px;
  flex: 1 1 240px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.card .image-wrap {
  height: 180px;
}

.inline-cta {
  text-decoration: underline;
}

.quote {
  font-style: italic;
  border-left: 4px solid #caa97e;
  padding-left: 16px;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.step span {
  font-weight: 700;
  color: #a4763b;
}

.sticky-cta {
  position: sticky;
  top: 16px;
  background: #1f1d1b;
  color: #fff;
  padding: 18px 22px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 280px;
}

.pricing {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.pricing-item {
  flex: 1 1 220px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 18px;
  padding: 18px;
}

.form-box {
  background: #fff;
  padding: 28px;
  border-radius: 22px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.form-row label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1 1 220px;
  font-size: 14px;
}

.form-row input,
.form-row select,
.form-row textarea {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #d8d2c8;
  font-size: 14px;
  font-family: inherit;
}

.footer {
  margin-top: auto;
  padding: 40px 0;
  background: #1f1d1b;
  color: #f7f3ee;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 14px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: #fff;
  color: #1f1d1b;
  padding: 18px 20px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  display: none;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 12px;
}

.legal-hero {
  padding: 70px 0;
}

.legal-hero.bg-privacy {
  background-image: url("https://images.unsplash.com/photo-1609587639086-b4cbf85e4355?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: #2a2622;
}

.legal-hero.bg-gdpr {
  background-image: url("https://images.unsplash.com/photo-1614226114676-8e02ac5f4763?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: #2a2622;
}

.legal-hero.bg-cookies {
  background-image: url("https://images.unsplash.com/photo-1505691938895-1758d7feb511?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: #2a2622;
}

.legal-hero.bg-terms {
  background-image: url("https://images.unsplash.com/photo-1522708323590-d24dbb6b0267?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: #2a2622;
}

.legal-hero .overlay {
  background: rgba(24, 20, 18, 0.7);
  color: #fff;
  padding: 70px 0;
}

.service-hero {
  background-image: url("https://images.unsplash.com/photo-1639813806535-b206d3dcf3b6?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #fff;
  background-color: #2a2622;
}

.about-visual {
  background-image: url("https://images.unsplash.com/photo-1602030716064-9fe21272561b?w=800&q=80");
  background-size: cover;
  background-position: center;
  border-radius: 22px;
  height: 360px;
  background-color: #e6ded2;
}

.contact-visual {
  background-image: url("https://images.unsplash.com/photo-1617233210035-36c869b56d3b?w=800&q=80");
  background-size: cover;
  background-position: center;
  border-radius: 22px;
  height: 320px;
  background-color: #e6ded2;
}

.thanks-visual {
  background-image: url("https://images.unsplash.com/photo-1698746158409-31df3573756f?w=800&q=80");
  background-size: cover;
  background-position: center;
  border-radius: 22px;
  height: 320px;
  background-color: #e6ded2;
}

.service-card-img-1 {
  background-image: url("https://images.unsplash.com/photo-1606855637183-ea2a00b6f15f?w=600&q=80");
}

.service-card-img-2 {
  background-image: url("https://images.unsplash.com/photo-1606855637060-a513f51f494c?w=600&q=80");
}

.service-card-img-3 {
  background-image: url("https://images.unsplash.com/photo-1601433131149-d2074d51296c?w=600&q=80");
}

.service-card-img-1,
.service-card-img-2,
.service-card-img-3 {
  background-size: cover;
  background-position: center;
  border-radius: 18px;
  height: 180px;
  background-color: #e6ded2;
}

.index-card-img-1 {
  background-image: url("https://images.unsplash.com/photo-1766431014990-39bb54f64f50?w=600&q=80");
}

.index-card-img-2 {
  background-image: url("https://images.unsplash.com/photo-1542728929-2b5d9a0c8d48?w=600&q=80");
}

.index-card-img-3 {
  background-image: url("https://images.unsplash.com/photo-1699436639670-1e5799b14aae?w=600&q=80");
}

.index-card-img-4 {
  background-image: url("https://images.unsplash.com/photo-1728614669329-29e10a0698ea?w=600&q=80");
}

.index-card-img-5 {
  background-image: url("https://images.unsplash.com/photo-1605134542908-581a01bc658d?w=600&q=80");
}

.index-card-img-1,
.index-card-img-2,
.index-card-img-3,
.index-card-img-4,
.index-card-img-5 {
  background-size: cover;
  background-position: center;
  border-radius: 16px;
  height: 170px;
  background-color: #e6ded2;
}

.story-image {
  background-image: url("https://images.unsplash.com/photo-1774427721906-31fc088e25e9?w=800&q=80");
}

.trust-image {
  background-image: url("https://images.unsplash.com/photo-1652161853855-005106816b9f?w=800&q=80");
}

.process-image {
  background-image: url("https://images.unsplash.com/photo-1602260513914-a28f4fbdfd20?w=800&q=80");
}

.story-image,
.trust-image,
.process-image {
  background-size: cover;
  background-position: center;
  border-radius: 22px;
  height: 320px;
  background-color: #e6ded2;
}

.legal-body {
  display: flex;
  flex-direction: column;
  gap: 18px;
  line-height: 1.6;
}

.disclaimer {
  font-size: 13px;
  color: #f0e9df;
  margin-top: 16px;
  max-width: 820px;
}
