* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --ink: #1d1a1a;
  --muted: #5d5a5a;
  --accent: #bb3b5b;
  --accent-dark: #8f2844;
  --soft: #f7f2f1;
  --warm: #f4e8e2;
  --highlight: #fff3ea;
  --border: #e5d8d2;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.08);
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #fffdfc;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(187, 59, 91, 0.35);
  outline-offset: 2px;
}

.site-header {
  padding: 20px 6vw 10px;
  background: #fff;
  border-bottom: 1px solid var(--border);
}

.nav-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: lowercase;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
  color: var(--muted);
}

.nav-links a {
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
}

.nav-links a:hover,
.nav-links a:focus {
  border-bottom-color: var(--accent);
}

.ad-label {
  font-size: 12px;
  color: #8b3a53;
  background: #fff2f5;
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 600;
}

.section {
  padding: 70px 6vw;
}

.section.tight {
  padding: 50px 6vw;
}

.section.alt {
  background: var(--soft);
}

.section.warm {
  background: var(--warm);
}

.section.highlight {
  background: var(--highlight);
}

.hero {
  background-size: cover;
  background-position: center;
  background-color: #2c1f22;
  color: #fff;
  position: relative;
  padding: 120px 6vw 90px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(28, 18, 18, 0.55);
}

.hero-inner {
  position: relative;
  max-width: 760px;
}

.hero h1 {
  font-size: clamp(34px, 4vw, 54px);
  margin-bottom: 12px;
}

.hero p {
  font-size: 18px;
  color: #f8f3f2;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 22px;
}

.btn {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
}

.btn.secondary {
  background: transparent;
  border: 1px solid #fff;
}

.btn.dark {
  background: var(--accent-dark);
}

.link-inline {
  color: var(--accent-dark);
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text {
  flex: 1 1 320px;
}

.split .media {
  flex: 1 1 280px;
}

.image-frame {
  background: #efe1dd;
  padding: 10px;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.image-frame img {
  width: 100%;
  height: 320px;
  border-radius: 16px;
}

.stacked {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 220px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  width: 100%;
  height: 160px;
  border-radius: 14px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--border);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 14px;
  color: var(--muted);
}

.metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.metric {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px;
  min-width: 180px;
}

.metric strong {
  display: block;
  font-size: 22px;
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.gallery .image-frame img {
  height: 220px;
}

.pricing-table {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.price-item {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px 20px;
}

.price-item span {
  color: var(--muted);
}

.form-card {
  background: #fff;
  border-radius: 20px;
  padding: 26px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.form-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.form-grid .field {
  flex: 1 1 240px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

label {
  font-weight: 600;
  font-size: 14px;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--border);
  font-size: 14px;
}

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}

.faq-item button {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  padding: 0;
}

.faq-item p {
  margin: 10px 0 0;
  color: var(--muted);
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: #fff;
  border-radius: 999px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  padding: 8px;
  z-index: 10;
}

.sticky-cta a {
  padding: 10px 18px;
}

.site-footer {
  padding: 40px 6vw 50px;
  background: #1e1a1b;
  color: #f6f1f2;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  justify-content: space-between;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  font-size: 14px;
  color: #e0d7da;
}

.footer-links a {
  border-bottom: 1px solid transparent;
}

.footer-links a:hover,
.footer-links a:focus {
  border-bottom-color: #f6d9e0;
}

.disclaimer {
  margin-top: 20px;
  font-size: 13px;
  color: #d9c8cd;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  padding: 16px;
  max-width: 340px;
  z-index: 15;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.badge {
  background: #fff;
  border-radius: 10px;
  border: 1px solid var(--border);
  padding: 6px 10px;
  font-size: 13px;
  color: var(--muted);
}

.legal-hero {
  background-size: cover;
  background-position: center;
  background-color: #2c1f22;
  padding: 90px 6vw 70px;
  color: #fff;
  position: relative;
}

.legal-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(29, 20, 20, 0.55);
}

.legal-hero h1 {
  position: relative;
  margin: 0;
}

.legal-content {
  max-width: 820px;
  margin: 0 auto;
}

.contact-card {
  background: #fff;
  border-radius: 18px;
  border: 1px solid var(--border);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.thanks-card {
  max-width: 720px;
  margin: 0 auto;
  background: #fff;
  padding: 28px;
  border-radius: 20px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.bg-hero-main {
  background-image: url("https://images.unsplash.com/photo-1770052242680-09fc9f380806?w=1400&q=80");
}

.bg-trust {
  background-image: linear-gradient(rgba(255, 249, 246, 0.9), rgba(255, 249, 246, 0.9)), url("https://images.unsplash.com/photo-1773212666406-09186f268cdc?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-about {
  background-image: url("https://images.unsplash.com/photo-1669723027015-9a3cfab8c5df?w=1400&q=80");
}

.bg-services {
  background-image: url("https://images.unsplash.com/photo-1768827642561-4d06523d0324?w=1400&q=80");
}

.bg-contact {
  background-image: url("https://images.unsplash.com/photo-1667985501712-139352fe88bc?w=1400&q=80");
}

.bg-thanks {
  background-image: url("https://images.unsplash.com/photo-1711301163897-3281c45e1010?w=1400&q=80");
}

.bg-privacy {
  background-image: url("https://images.unsplash.com/photo-1551468133-32ed0f9d86f1?w=1400&q=80");
}

.bg-gdpr {
  background-image: url("https://images.unsplash.com/photo-1685969116188-ed5ad852a97a?w=1400&q=80");
}

.bg-cookies {
  background-image: url("https://images.unsplash.com/photo-1770988042769-8457db10f3c6?w=1400&q=80");
}

.bg-terms {
  background-image: url("https://images.unsplash.com/photo-1613539246066-78db6ec4ff0f?w=1400&q=80");
}

@media (max-width: 720px) {
  .hero {
    padding: 90px 6vw 70px;
  }

  .sticky-cta {
    right: 50%;
    transform: translateX(50%);
  }
}
