* {
  box-sizing: border-box;
}

:root {
  --ink: #2a1f16;
  --muted: #6a5747;
  --paper: #f7f3ec;
  --sand: #efe4d4;
  --clay: #d9c5ad;
  --accent: #c56a2a;
  --accent-dark: #8f4a1f;
  --forest: #36594a;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Noto Sans", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--accent-dark);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.page-wrap {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.site-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 20px 6vw;
  gap: 16px;
  background: #fff;
  border-bottom: 1px solid #eadfce;
}

.logo {
  font-weight: 700;
  letter-spacing: 0.5px;
  font-size: 1.1rem;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  font-size: 0.95rem;
}

.ad-label {
  background: var(--sand);
  color: var(--ink);
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.8rem;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  padding: 70px 6vw 60px;
  background-image: url("https://images.unsplash.com/photo-1672770057229-72f8150aece3?w=1400&q=80");
  background-size: cover;
  background-position: center;
  position: relative;
  color: #fff;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(31, 22, 14, 0.52);
}

.hero-content,
.hero-aside {
  position: relative;
  z-index: 1;
  flex: 1 1 300px;
}

.hero-aside {
  align-self: flex-end;
  background: rgba(247, 243, 236, 0.88);
  color: var(--ink);
  padding: 24px;
  border-radius: 18px;
  margin-top: 80px;
}

.section {
  padding: 64px 6vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section-title {
  font-size: 2rem;
  margin: 0;
}

.section-subtitle {
  margin: 0;
  color: var(--muted);
}

.split-row {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}

.split-row.reverse {
  flex-direction: row-reverse;
}

.offset-card {
  background: #fff;
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 12px 24px rgba(42, 31, 22, 0.1);
  margin-left: 24px;
}

.media-frame {
  background: var(--clay);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
}

.media-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 220px;
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 220px;
}

.card h3 {
  margin: 0;
}

.tag {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--sand);
  font-size: 0.8rem;
}

.trust-band {
  background-image: url("https://images.unsplash.com/photo-1761544775659-aaa6fa2e5b3d?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #fff;
  position: relative;
}

.trust-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(32, 26, 19, 0.64);
}

.trust-band .section-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.benefit-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.benefit-item {
  flex: 1 1 200px;
  background: #fff;
  padding: 18px;
  border-radius: 14px;
}

.pricing-section {
  background: var(--sand);
}

.price-card {
  background: #fff;
  padding: 20px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1 1 220px;
}

.price-card strong {
  font-size: 1.2rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
}

.btn.secondary {
  background: var(--forest);
}

.btn.ghost {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.form-panel {
  background: #fff;
  padding: 24px;
  border-radius: 18px;
  box-shadow: 0 10px 22px rgba(42, 31, 22, 0.08);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.lead-form label {
  font-weight: 600;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #dbcab5;
  font-size: 1rem;
}

.form-status {
  color: var(--accent-dark);
  min-height: 20px;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: var(--forest);
  color: #fff;
  padding: 12px 16px;
  border-radius: 999px;
  z-index: 20;
  font-size: 0.9rem;
}

.site-footer {
  margin-top: auto;
  background: #fff;
  padding: 32px 6vw;
  border-top: 1px solid #eadfce;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.disclaimer {
  color: var(--muted);
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  bottom: 16px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 12px 26px rgba(42, 31, 22, 0.16);
  padding: 16px;
  max-width: 360px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 8px 14px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
}

.cookie-btn.outline {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.inner-hero {
  padding: 64px 6vw 40px;
  background: var(--sand);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.texture-section {
  background-image: url("https://images.unsplash.com/photo-1762978902169-e5789f7b56b8?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.texture-section .section-inner {
  background: rgba(247, 243, 236, 0.9);
  padding: 24px;
  border-radius: 18px;
}

.contact-card {
  background: #fff;
  padding: 24px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.legal-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 40px 6vw 70px;
}

.notice {
  background: var(--sand);
  padding: 14px;
  border-radius: 12px;
}

@media (max-width: 880px) {
  .hero {
    padding-top: 90px;
  }

  .hero-aside {
    margin-top: 0;
  }

  .sticky-cta {
    left: 18px;
    right: auto;
  }
}
