* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", "Segoe UI", sans-serif;
  color: #1f1f1f;
  background-color: #f6f4f1;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 6vw 18px;
  gap: 16px;
  background-color: #f6f4f1;
}

.nav-left {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.brand {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: lowercase;
}

.ad-label {
  font-size: 12px;
  color: #4d4d4d;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 14px;
}

.nav-links a {
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover {
  border-bottom-color: #1f1f1f;
}

.nav-cta {
  display: flex;
  gap: 12px;
  align-items: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid #1f1f1f;
  background-color: #1f1f1f;
  color: #f6f4f1;
  font-size: 14px;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.button:hover {
  background-color: #343434;
  transform: translateY(-1px);
}

.button-outline {
  background-color: transparent;
  color: #1f1f1f;
}

.button-outline:hover {
  background-color: #1f1f1f;
  color: #f6f4f1;
}

.hero {
  display: flex;
  align-items: stretch;
  padding: 40px 6vw 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.35;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 540px;
  background-color: rgba(246, 244, 241, 0.92);
  padding: 32px;
  border-radius: 28px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.hero h1 {
  font-size: 38px;
  line-height: 1.15;
}

.hero p {
  font-size: 16px;
  color: #3c3c3c;
}

.hero-note {
  display: flex;
  gap: 12px;
  font-size: 14px;
}

.hero-note span {
  background-color: #1f1f1f;
  color: #f6f4f1;
  padding: 4px 10px;
  border-radius: 12px;
}

.section {
  padding: 72px 6vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
}

.section-offset {
  background-color: #ffffff;
  margin: 0 0 0 8vw;
  border-radius: 32px 0 0 32px;
  padding: 64px 6vw 64px 4vw;
}

.split {
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.split .media {
  flex: 1 1 280px;
  display: flex;
  justify-content: center;
}

.img-frame {
  background-color: #e7e0d7;
  padding: 10px;
  border-radius: 22px;
  width: 100%;
  max-width: 420px;
}

.img-frame img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 16px;
}

.floating-panel {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background-color: #f0ede8;
  padding: 28px;
  border-radius: 26px;
  max-width: 420px;
  align-self: flex-end;
  box-shadow: -20px 20px 40px rgba(0, 0, 0, 0.08);
}

.floating-panel a {
  text-decoration: underline;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.service-card {
  flex: 1 1 240px;
  background-color: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-width: 240px;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
}

.service-card .img-frame {
  padding: 0;
  border-radius: 0;
  background-color: #d9d4ca;
}

.service-card img {
  height: 180px;
  border-radius: 0;
}

.service-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 22px;
}

.price {
  font-size: 18px;
  font-weight: 700;
  color: #1f1f1f;
}

.quote {
  border-left: 3px solid #1f1f1f;
  padding-left: 16px;
  font-style: italic;
  color: #444444;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.form-card {
  background-color: #ffffff;
  padding: 32px;
  border-radius: 30px;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.08);
  max-width: 620px;
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.lead-form label {
  font-weight: 600;
  font-size: 14px;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #c9c2b8;
  font-size: 14px;
  background-color: #fbfaf8;
}

.form-status {
  font-size: 14px;
  color: #1f1f1f;
}

.disclaimer {
  font-size: 12px;
  color: #4c4c4c;
}

.footer {
  margin-top: auto;
  padding: 40px 6vw 60px;
  background-color: #1f1f1f;
  color: #f6f4f1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 14px;
}

.footer small {
  color: #bdb8ae;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 10;
}

.sticky-cta a {
  padding: 12px 18px;
  border-radius: 999px;
  background-color: #1f1f1f;
  color: #f6f4f1;
  display: inline-flex;
  gap: 8px;
  font-size: 13px;
}

.sticky-cta a:hover {
  background-color: #343434;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background-color: #ffffff;
  padding: 20px;
  border-radius: 18px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 320px;
  z-index: 12;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-actions button {
  flex: 1 1 auto;
}

.hidden {
  display: none;
}

.page-hero {
  padding: 64px 6vw 36px;
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.page-hero .img-frame img {
  height: 260px;
}

.list-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.list-grid div {
  background-color: #ffffff;
  padding: 16px 20px;
  border-radius: 18px;
}

.pill {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background-color: #1f1f1f;
  color: #f6f4f1;
  font-size: 12px;
}

.hero-home::before {
  background-image: url("https://images.unsplash.com/photo-1497366216548-37526070297c?w=1400&q=80");
}

.hero-about::before {
  background-image: url("https://images.unsplash.com/photo-1497215728101-856f4ea42174?w=1400&q=80");
}

.hero-services::before {
  background-image: url("https://images.unsplash.com/photo-1487017159836-4e23ece2e4cf?w=1400&q=80");
}

.hero-contact::before {
  background-image: url("https://images.unsplash.com/photo-1472224371017-08207f84aaae?w=1400&q=80");
}

.hero-privacy::before {
  background-image: url("https://images.unsplash.com/photo-1446776811953-b23d57bd21aa?w=1400&q=80");
}

.hero-gdpr::before {
  background-image: url("https://images.unsplash.com/photo-1473172707857-f9e276582ab6?w=1400&q=80");
}

.hero-cookies::before {
  background-image: url("https://images.unsplash.com/photo-1519389950473-47ba0277781c?w=1400&q=80");
}

.hero-terms::before {
  background-image: url("https://images.unsplash.com/photo-1496307042754-b4aa456c4a2d?w=1400&q=80");
}

.section-bg {
  background-size: cover;
  background-position: center;
  color: #1f1f1f;
  border-radius: 34px;
}

.section-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(246, 244, 241, 0.92);
  border-radius: 34px;
}

.section-bg > * {
  position: relative;
  z-index: 1;
}

.bg-trust {
  background-image: url("https://images.unsplash.com/photo-1517245386807-bb43f82c33c4?w=1400&q=80");
}

.media-slim img {
  height: 240px;
}

.legal-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 820px;
}

.legal-content ul {
  padding-left: 20px;
}

.legal-content li {
  margin-bottom: 6px;
}

.contact-card {
  background-color: #ffffff;
  padding: 28px;
  border-radius: 26px;
  max-width: 520px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.08);
}

.thanks-card {
  background-color: #ffffff;
  padding: 32px;
  border-radius: 28px;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.1);
  max-width: 620px;
}

.reference-list a {
  text-decoration: underline;
}
