:root {
  --ink: #1d1c1a;
  --muted: #5b5751;
  --accent: #2f6b4f;
  --accent-soft: #e6f0ea;
  --sand: #f6f2ec;
  --clay: #efe8df;
  --sun: #f4c66a;
  --shadow: rgba(16, 14, 12, 0.08);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: #fffdf9;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

a:focus,
button:focus,
select:focus,
input:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.top-bar {
  padding: 18px 0 10px;
  border-bottom: 1px solid var(--clay);
}

.top-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.brand {
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.4px;
}

.ad-label {
  font-size: 0.9rem;
  color: var(--muted);
  background: var(--accent-soft);
  padding: 6px 10px;
  border-radius: 999px;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.nav a {
  padding: 6px 0;
  border-bottom: 2px solid transparent;
}

.nav a:hover {
  border-bottom-color: var(--accent);
}

.hero {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  margin-top: 28px;
  min-height: 420px;
  display: flex;
  align-items: stretch;
  background: var(--sand);
  box-shadow: 0 24px 50px var(--shadow);
}

.hero-media {
  flex: 1.1;
  position: relative;
}

.hero-content {
  flex: 1;
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  background: rgba(255, 253, 249, 0.92);
}

.hero h1 {
  font-size: clamp(2rem, 3.4vw, 3.4rem);
  line-height: 1.1;
  margin: 0;
}

.hero p {
  margin: 0;
  color: var(--muted);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button,
.button-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
}

.button {
  background: var(--accent);
  color: #fff;
}

.button-outline {
  background: transparent;
  border-color: var(--accent);
  color: var(--accent);
}

section {
  padding: 64px 0;
}

.section-muted {
  background: var(--sand);
}

.section-clay {
  background: var(--clay);
}

.section-sun {
  background: #fff4db;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text {
  flex: 1;
  min-width: 260px;
}

.split .visual {
  flex: 1;
  min-width: 260px;
}

.image-frame {
  background-color: #e7e0d7;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 40px var(--shadow);
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.story-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.story-card {
  flex: 1 1 240px;
  padding: 24px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 14px 30px var(--shadow);
}

.story-card h3 {
  margin-top: 0;
}

.quote {
  padding: 26px;
  border-left: 4px solid var(--accent);
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 12px 28px var(--shadow);
}

.pricing-table {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.price-card {
  flex: 1 1 240px;
  padding: 22px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 14px 28px var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price-tag {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent);
}

.form-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
}

.form-panel {
  flex: 1.2;
  min-width: 260px;
  background: #fff;
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 18px 38px var(--shadow);
}

.form-panel form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

input,
select {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #cfc7be;
  font-size: 1rem;
  background: #fff;
}

.small-note {
  font-size: 0.9rem;
  color: var(--muted);
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.gallery .image-frame {
  flex: 1 1 280px;
  min-height: 220px;
}

.footer {
  padding: 48px 0 80px;
  background: #1f1d1a;
  color: #f6f2ec;
}

.footer a {
  color: #f6f2ec;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}

.footer-col {
  flex: 1 1 200px;
}

.disclaimer {
  font-size: 0.9rem;
  color: #d9d2c8;
  margin-top: 20px;
}

.sticky-cta {
  position: fixed;
  right: 22px;
  bottom: 22px;
  background: #fff;
  border-radius: 999px;
  padding: 6px;
  box-shadow: 0 14px 30px var(--shadow);
  z-index: 20;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 14px 30px var(--shadow);
  max-width: 320px;
  z-index: 30;
}

.cookie-banner p {
  margin-top: 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.cookie-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.hidden {
  display: none;
}

.page-hero {
  padding: 40px 0 0;
}

.page-hero h1 {
  font-size: clamp(2rem, 3vw, 3rem);
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 16px;
}

.section-title {
  font-size: 1.8rem;
  margin-top: 0;
}

.notice {
  padding: 18px;
  background: var(--accent-soft);
  border-radius: 14px;
  color: var(--muted);
}

@media (max-width: 920px) {
  .hero {
    flex-direction: column;
  }

  .hero-content {
    padding: 32px;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
