* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --ink: #1c1c1c;
  --muted: #5f6368;
  --brand: #2f5d3a;
  --accent: #c9742b;
  --surface: #f7f4ef;
  --surface-strong: #efe7dc;
  --line: #e1dbd1;
}

body {
  margin: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: var(--brand);
  text-decoration: none;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.site-header {
  padding: 24px 0 12px;
  border-bottom: 1px solid var(--line);
  background: #ffffff;
}

.header-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  align-items: center;
}

.brand {
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.4px;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  border: 1px solid var(--line);
  padding: 6px 10px;
  border-radius: 999px;
}

.hero {
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
}

.hero-overlay {
  background: rgba(18, 24, 19, 0.62);
  padding: 90px 0 110px;
}

.hero h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin: 12px 0 18px;
}

.hero p {
  color: #e7e7e7;
  max-width: 620px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.75rem;
  color: #f0e7da;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: #ffffff;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.btn-secondary {
  background: transparent;
  border: 1px solid #ffffff;
  color: #ffffff;
}

.btn-ghost {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--brand);
}

.section {
  padding: 70px 0;
}

.section--soft {
  background: var(--surface);
}

.section--band {
  background-image: url("https://images.unsplash.com/photo-1469474968028-56623f02e42e?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
}

.section--band .band-overlay {
  background: rgba(14, 20, 16, 0.7);
  padding: 70px 0;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > div {
  flex: 1 1 320px;
}

.media-frame {
  background: var(--surface-strong);
  padding: 8px;
  border-radius: 16px;
}

.media-frame img {
  width: 100%;
  border-radius: 12px;
}

.inline-highlight {
  background: #fff4e7;
  padding: 18px;
  border-radius: 14px;
}

.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 240px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  width: 100%;
  height: 180px;
  border-radius: 12px;
}

.price {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--brand);
}

.list {
  margin: 16px 0 0;
  padding-left: 20px;
}

.testimonial {
  background: #ffffff;
  border-left: 4px solid var(--accent);
  padding: 16px 18px;
}

.form-shell {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 24px;
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.95rem;
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid var(--line);
  font-size: 0.95rem;
}

.footer {
  background: #111614;
  color: #d5d5d5;
  padding: 50px 0;
}

.footer a {
  color: #ffffff;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-grid > div {
  flex: 1 1 220px;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 20;
}

.sticky-cta .btn {
  padding: 10px 16px;
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px;
  display: none;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  z-index: 30;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.cookie-banner.visible {
  display: flex;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.page-hero {
  padding: 60px 0 30px;
  background: var(--surface);
}

.page-hero h1 {
  margin-bottom: 10px;
}

.legal-block {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 22px;
  margin: 18px 0;
}

.notice {
  font-size: 0.95rem;
  color: var(--muted);
}

@media (max-width: 760px) {
  .hero-overlay {
    padding: 70px 0 80px;
  }

  .sticky-cta {
    right: 12px;
    left: 12px;
  }

  .sticky-cta .btn {
    width: 100%;
  }
}
