@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@300;500;700&display=swap");

:root {
  --ink: #1f2328;
  --muted: #5c6470;
  --soft: #f6f2ee;
  --sand: #efe7de;
  --linen: #fbf8f5;
  --accent: #8b5e44;
  --accent-dark: #6f4934;
  --fog: #e3ded6;
  --accent-2: #2f5d62;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Manrope", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--linen);
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a {
  color: inherit;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 5vw;
  background: var(--linen);
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand span {
  font-weight: 500;
  color: var(--muted);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--accent-dark);
  background: var(--sand);
  padding: 6px 12px;
  border-radius: 999px;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 70px 5vw 80px;
  background: url("https://images.unsplash.com/photo-1505691938895-1758d7feb511?w=1400&q=80") center/cover no-repeat;
  position: relative;
  color: #fff;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(20, 16, 12, 0.86), rgba(20, 16, 12, 0.35));
}

.hero-content {
  position: relative;
  max-width: 620px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  z-index: 1;
}

.hero h1 {
  margin: 0;
  font-size: 2.8rem;
  line-height: 1.05;
}

.hero p {
  margin: 0;
  font-size: 1.05rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  background: var(--accent-dark);
}

.btn-outline {
  background: transparent;
  border-color: #fff;
}

.section {
  padding: 70px 5vw;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.section.alt {
  background: var(--soft);
}

.section.dark {
  background: var(--accent-2);
  color: #fdf9f6;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > div {
  flex: 1 1 320px;
}

.img-box {
  background: var(--fog);
  border-radius: 18px;
  overflow: hidden;
  min-height: 240px;
}

.inline-card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 240px;
  background: #fff;
  border-radius: 18px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 12px 30px rgba(32, 27, 22, 0.08);
}

.card h3 {
  margin: 0;
}

.card p {
  margin: 0;
  color: var(--muted);
}

.price {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent);
}

.inline-link {
  color: var(--accent-dark);
  font-weight: 600;
  text-decoration: underline;
}

.notice {
  background: var(--sand);
  padding: 16px 20px;
  border-radius: 14px;
  color: var(--accent-dark);
}

.tagline {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.tag {
  padding: 6px 12px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--fog);
  font-size: 0.85rem;
}

.form-shell {
  background: #fff;
  padding: 26px;
  border-radius: 22px;
  box-shadow: 0 20px 40px rgba(29, 22, 15, 0.08);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-shell label {
  font-weight: 600;
  font-size: 0.9rem;
}

.form-shell input,
.form-shell select {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--fog);
  font-family: inherit;
  font-size: 1rem;
}

.form-shell button {
  cursor: pointer;
}

.services-chooser {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.services-chooser label {
  flex: 1 1 220px;
  border: 1px solid var(--fog);
  border-radius: 16px;
  padding: 14px 16px;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.services-chooser input {
  margin-right: 8px;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 20px;
  background: #fff;
  border-radius: 999px;
  padding: 10px 14px;
  box-shadow: 0 12px 30px rgba(29, 22, 15, 0.18);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 20;
}

.sticky-cta button {
  border: none;
}

.footer {
  padding: 50px 5vw;
  background: #1b1b1b;
  color: #f5efe8;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer a {
  color: #f5efe8;
  text-decoration: none;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #fff;
  border-radius: 18px;
  padding: 16px 18px;
  max-width: 340px;
  box-shadow: 0 18px 40px rgba(29, 22, 15, 0.18);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 30;
}

.cookie-banner button {
  border: none;
}

.simple-header {
  padding: 50px 5vw 24px;
}

.page-content {
  padding: 24px 5vw 70px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.highlight {
  background: var(--sand);
  border-radius: 16px;
  padding: 16px 18px;
}

@media (max-width: 720px) {
  .topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .sticky-cta {
    left: 20px;
    right: 20px;
    justify-content: space-between;
  }
}
