* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1a1a1a;
  background: #f8f7f4;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 6vw;
  background: #f8f7f4;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 18px;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.85rem;
  padding: 6px 12px;
  border-radius: 999px;
  background: #1f2a24;
  color: #fdfbf7;
}

.hero {
  position: relative;
  display: flex;
  align-items: stretch;
  min-height: 78vh;
  padding: 0 6vw 60px;
}

.hero-visual {
  flex: 1.2;
  background-position: center;
  background-size: cover;
  border-radius: 32px;
  min-height: 520px;
}

.image-hero {
  background-image: url("https://images.unsplash.com/photo-1637666544359-0e88de7b3206?w=1400&q=80");
}

.hero-content {
  flex: 1;
  padding: 60px 0 0 6vw;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero h1 {
  font-size: clamp(2.5rem, 4vw, 4rem);
  line-height: 1.1;
  margin: 0;
}

.hero p {
  font-size: 1.05rem;
  max-width: 480px;
}

.cta-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.button {
  border: none;
  background: #1f2a24;
  color: #fefcf8;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.button.secondary {
  background: transparent;
  color: #1f2a24;
  border: 1px solid #1f2a24;
}

.button:hover,
.button:focus {
  opacity: 0.85;
}

.section {
  padding: 70px 6vw;
}

.section.alt {
  background: #f0efe9;
}

.split {
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text {
  flex: 1;
  min-width: 280px;
}

.split .visual {
  flex: 1;
  min-width: 280px;
}

.img-frame {
  background: #e6e2d8;
  border-radius: 24px;
  overflow: hidden;
}

.story {
  max-width: 820px;
}

.pull {
  font-size: 1.15rem;
  font-weight: 600;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.list li {
  padding-left: 28px;
  position: relative;
}

.list li::before {
  content: "•";
  position: absolute;
  left: 8px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.card {
  flex: 1;
  min-width: 240px;
  background: #ffffff;
  border-radius: 20px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.06);
}

.card h3 {
  margin: 0;
}

.pricing {
  background-position: center;
  background-size: cover;
  color: #fefcf8;
}

.image-pricing {
  background-image: url("https://images.unsplash.com/photo-1637157216470-d92cd2edb2e8?w=1400&q=80");
}

.pricing-overlay {
  background: rgba(24, 32, 28, 0.78);
  border-radius: 26px;
  padding: 40px;
}

.price-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 28px;
}

.price-item {
  flex: 1;
  min-width: 240px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 18px;
}

.price-item span {
  font-weight: 700;
  font-size: 1.2rem;
}

.form-wrap {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  align-items: flex-start;
}

.lead-form {
  flex: 1;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.lead-form label {
  font-weight: 600;
  font-size: 0.95rem;
}

.lead-form select,
.lead-form input,
.lead-form textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #c9c6bc;
  font-size: 1rem;
  font-family: inherit;
}

.lead-form button {
  align-self: flex-start;
}

.form-note {
  font-size: 0.9rem;
  color: #46433b;
}

.quote {
  border-left: 3px solid #1f2a24;
  padding-left: 16px;
  margin: 18px 0;
  font-style: italic;
}

.footer {
  margin-top: auto;
  padding: 50px 6vw;
  background: #1f2a24;
  color: #f8f7f4;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.disclaimer {
  font-size: 0.85rem;
  color: #d6d3c8;
  max-width: 760px;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 50;
  padding: 12px 18px;
  border-radius: 999px;
  background: #f3c15c;
  color: #1f2a24;
  border: none;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: #ffffff;
  border-radius: 18px;
  padding: 16px 20px;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.12);
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  z-index: 60;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.simple-hero {
  padding: 70px 6vw 40px;
  background: #f0efe9;
}

.simple-hero h1 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 3rem);
}

.content {
  padding: 40px 6vw 70px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 900px;
}

.contact-grid {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.contact-box {
  flex: 1;
  min-width: 240px;
  background: #ffffff;
  border-radius: 18px;
  padding: 18px;
}

.muted {
  color: #5b584f;
}

@media (max-width: 900px) {
  .hero {
    flex-direction: column;
  }

  .hero-content {
    padding: 40px 0 0;
  }

  .sticky-cta {
    right: 16px;
  }
}
