* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --sand: #f7f4ef;
  --clay: #e3d6c8;
  --forest: #2a4a3a;
  --ink: #1f1d1a;
  --sun: #f0b37a;
  --leaf: #6b8b6f;
  --stone: #fdfbf8;
}

body {
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--sand);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 16px;
}

a {
  color: inherit;
  text-decoration: none;
}

.page-shell {
  width: min(1200px, 92%);
  margin: 0 auto;
}

.floating-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
}

.brand {
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 0.95rem;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.9rem;
}

.nav-links a {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.04);
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
  padding: 42px 0 28px;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  right: 8%;
  top: -30px;
  width: 160px;
  height: 160px;
  background: var(--sun);
  border-radius: 40px;
  opacity: 0.4;
  z-index: 0;
}

.hero-text {
  flex: 1 1 320px;
  position: relative;
  z-index: 1;
}

.hero-text h1 {
  font-size: clamp(2.2rem, 3vw, 3.4rem);
  line-height: 1.1;
  margin-bottom: 18px;
}

.hero-text p {
  font-size: 1.05rem;
  margin-bottom: 20px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--forest);
  color: white;
  font-weight: 600;
  transition: transform 0.2s ease;
}

.btn-secondary {
  background: transparent;
  border: 1px solid var(--forest);
  color: var(--forest);
}

.btn:hover {
  transform: translateY(-2px);
}

.hero-media {
  flex: 1 1 280px;
  position: relative;
}

.hero-card {
  background: var(--stone);
  padding: 18px;
  border-radius: 20px;
  position: absolute;
  bottom: -30px;
  left: -20px;
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.08);
  width: min(240px, 80%);
}

.section {
  padding: 60px 0;
  position: relative;
}

.section.light {
  background: var(--stone);
}

.section .eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.75rem;
  color: var(--leaf);
  margin-bottom: 10px;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > div {
  flex: 1 1 280px;
}

.offset-card {
  background: var(--clay);
  padding: 26px;
  border-radius: 22px;
  position: relative;
  top: -24px;
}

.stacked-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 220px;
  background: white;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.card h3 {
  margin-bottom: 8px;
}

.card .price {
  font-weight: 700;
  color: var(--forest);
  margin-top: 10px;
}

.testimonial {
  background: var(--forest);
  color: white;
  padding: 24px;
  border-radius: 22px;
}

.inline-cta {
  color: var(--forest);
  font-weight: 600;
  text-decoration: underline;
}

.form-panel {
  background: white;
  padding: 28px;
  border-radius: 20px;
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.08);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d4c9be;
  font-size: 1rem;
  background: #faf8f5;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.footer {
  padding: 40px 0 60px;
  font-size: 0.85rem;
  color: #4f4a45;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 12px;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: var(--sun);
  color: var(--ink);
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 14px 22px rgba(0, 0, 0, 0.15);
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  background: white;
  padding: 16px;
  border-radius: 16px;
  box-shadow: 0 14px 22px rgba(0, 0, 0, 0.15);
  max-width: 320px;
  display: none;
  z-index: 11;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-btn {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--forest);
  background: transparent;
  cursor: pointer;
}

.cookie-btn.primary {
  background: var(--forest);
  color: white;
}

.mini-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.mini-grid .mini {
  flex: 1 1 180px;
  background: rgba(255, 255, 255, 0.7);
  padding: 16px;
  border-radius: 16px;
}

.contact-card {
  background: var(--stone);
  padding: 22px;
  border-radius: 18px;
}

.policy {
  background: white;
  padding: 30px;
  border-radius: 20px;
}

.policy h2 {
  margin-bottom: 16px;
}

.notice {
  font-size: 0.9rem;
  color: #4d4a46;
}

@media (max-width: 720px) {
  .hero-card {
    position: static;
    width: 100%;
    margin-top: 18px;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
