* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1e1c1a;
  background: #f6f2ee;
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a {
  color: #1b4b6f;
  text-decoration: none;
}

header,
main,
footer,
section {
  width: 100%;
}

.site-header {
  padding: 20px 6vw 10px;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  justify-content: space-between;
}

.nav-left,
.nav-center,
.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  font-size: 1.2rem;
  color: #1e1c1a;
}

.ad-label {
  font-size: 0.85rem;
  color: #5a4d44;
  background: #efe7e0;
  padding: 6px 10px;
  border-radius: 999px;
}

.nav-right a {
  font-size: 0.95rem;
}

.section {
  padding: 64px 6vw;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > * {
  flex: 1 1 320px;
}

.hero {
  color: #fdfbf9;
  background-image: url("https://images.unsplash.com/photo-1505691938895-1758d7feb511?w=1400&q=80");
  background-size: cover;
  background-position: center;
  position: relative;
  isolation: isolate;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(33, 28, 25, 0.55);
  z-index: 0;
}

.hero .split {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: clamp(2.4rem, 3vw, 3.4rem);
  margin: 0 0 16px;
}

.hero p {
  max-width: 520px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 8px;
  border: none;
  background: #1b4b6f;
  color: #fff;
  font-size: 0.95rem;
  cursor: pointer;
}

.btn.secondary {
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
}

.btn.dark {
  background: #2a2019;
  color: #fff;
}

.inline-link {
  color: #1b4b6f;
  text-decoration: underline;
}

.img-frame {
  background-color: #d7cfc6;
  border-radius: 16px;
  overflow: hidden;
  min-height: 260px;
}

.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.card {
  flex: 1 1 260px;
  background: #fff;
  border-radius: 18px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.card h3 {
  margin: 0;
}

.price {
  font-weight: 700;
  color: #1b4b6f;
}

.service-pick {
  align-self: flex-start;
}

.highlight {
  background: #f0e8df;
}

.list {
  padding-left: 18px;
  margin: 0;
}

.accent-bg {
  background-image: url("https://images.unsplash.com/photo-1501045661006-fcebe0257c3f?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #1f1b18;
  position: relative;
}

.accent-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(246, 242, 238, 0.82);
  z-index: 0;
}

.accent-bg > * {
  position: relative;
  z-index: 1;
}

.soft-bg {
  background-image: url("https://images.unsplash.com/photo-1505691723518-36a5ac3be353?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #1f1b18;
  position: relative;
}

.soft-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(250, 247, 243, 0.86);
  z-index: 0;
}

.soft-bg > * {
  position: relative;
  z-index: 1;
}

.form-panel {
  background: #fff;
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #c8bdb3;
  font-size: 0.95rem;
  background: #fff;
}

.form-hint {
  font-size: 0.9rem;
  color: #4e433b;
}

.form-error {
  color: #a03a2a;
  font-weight: 600;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: #2a2019;
  color: #fff;
  padding: 12px 16px;
  border-radius: 999px;
  z-index: 10;
}

.site-footer {
  padding: 48px 6vw;
  background: #1f1b18;
  color: #f9f6f2;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}

.footer-grid > * {
  flex: 1 1 220px;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  bottom: 16px;
  max-width: 420px;
  background: #fff;
  padding: 18px;
  border-radius: 14px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 20;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.subtle {
  font-size: 0.9rem;
  color: #6a5b51;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #efe7e0;
  color: #473c34;
  font-size: 0.85rem;
}

.notice {
  background: #efe7e0;
  padding: 16px;
  border-radius: 12px;
}

.page-title {
  font-size: clamp(2rem, 2.6vw, 2.8rem);
  margin: 0;
}

@media (max-width: 800px) {
  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
