/* Base */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1a1f24;
  background: #f6f4f1;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: #1b4d3e;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.container {
  width: min(1160px, 92%);
  margin: 0 auto;
}

.topbar {
  padding: 18px 0;
  background: #f1ede7;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: lowercase;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.85rem;
  color: #6b5f52;
  border: 1px solid #cfc5ba;
  padding: 6px 10px;
  border-radius: 999px;
  background: #fff9f2;
}

.hero {
  padding: 48px 0 80px;
  position: relative;
}

.hero-layout {
  display: flex;
  gap: 32px;
  align-items: stretch;
}

.hero-copy {
  flex: 1.1;
  background: #ffffff;
  padding: 36px 36px 44px;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(26, 31, 36, 0.08);
  transform: translateY(20px);
}

.hero-image {
  flex: 0.9;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.image-card {
  background: #ddd5c9;
  border-radius: 20px;
  overflow: hidden;
}

.image-card img {
  width: 100%;
  height: 100%;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  background: #1b4d3e;
  color: #fff;
  border-radius: 999px;
  font-weight: 600;
}

.floating-cta {
  position: fixed;
  right: 20px;
  bottom: 22px;
  background: #d54f30;
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.18);
  z-index: 10;
}

.asym-section {
  padding: 70px 0;
  position: relative;
}

.asym-section.alt {
  background: #ffffff;
}

.split {
  display: flex;
  gap: 34px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.offset-panel {
  background: #fdf7ee;
  padding: 32px;
  border-radius: 18px;
  box-shadow: 0 16px 40px rgba(15, 18, 22, 0.08);
  transform: translateX(-16px);
}

.offset-panel.right {
  transform: translateX(16px);
  background: #eef3f0;
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.service-card {
  flex: 1 1 250px;
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(26, 31, 36, 0.06);
  display: flex;
  flex-direction: column;
}

.service-card .content {
  padding: 18px 20px 24px;
}

.price {
  font-weight: 700;
  color: #1b4d3e;
}

.insight-band {
  display: flex;
  gap: 26px;
  align-items: stretch;
}

.insight-card {
  flex: 1;
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 10px 26px rgba(26, 31, 36, 0.08);
}

.form-shell {
  background: #fff;
  padding: 28px;
  border-radius: 18px;
  box-shadow: 0 18px 36px rgba(15, 18, 22, 0.1);
}

.form-shell form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #d2c8bc;
  font-size: 1rem;
}

.submit-btn {
  background: #1b4d3e;
  color: #fff;
  border: none;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.footer {
  padding: 40px 0 60px;
  background: #1a1f24;
  color: #f2ede7;
  margin-top: auto;
}

.footer a {
  color: #f2ede7;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.disclaimer {
  font-size: 0.9rem;
  color: #c7beb5;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  bottom: 16px;
  background: #fff;
  padding: 16px;
  border-radius: 14px;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.2);
  width: min(360px, 90%);
  z-index: 20;
  display: none;
  flex-direction: column;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  gap: 12px;
}

.cookie-btn {
  flex: 1;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #cbbfb3;
  background: #f7f1eb;
  cursor: pointer;
  font-weight: 600;
}

.cookie-btn.accept {
  background: #1b4d3e;
  color: #fff;
  border-color: #1b4d3e;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #efe9e1;
  font-size: 0.85rem;
}

.hero-visual {
  background: #cfc6bb;
  border-radius: 22px;
  overflow: hidden;
  min-height: 340px;
}

.bg-vision {
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-vision .container {
  color: #fff;
}

.bg-vision-overlay {
  background: rgba(18, 24, 30, 0.55);
  padding: 60px 0;
}

.list-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.quote {
  font-style: italic;
  border-left: 4px solid #d54f30;
  padding-left: 16px;
}

.small-note {
  font-size: 0.9rem;
  color: #6a6258;
}

.page-hero {
  padding: 42px 0;
  background: #fff;
}

.page-hero .split {
  align-items: flex-start;
}

.link-button {
  display: inline-flex;
  padding: 10px 18px;
  background: #d54f30;
  color: #fff;
  border-radius: 999px;
  font-weight: 600;
}

.inline-cta {
  font-weight: 600;
  color: #d54f30;
}

@media (max-width: 920px) {
  .hero-layout,
  .split,
  .insight-band {
    flex-direction: column;
  }

  .offset-panel,
  .offset-panel.right {
    transform: none;
  }

  .floating-cta {
    right: 12px;
  }
}
