* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1c1f1a;
  --muted: #5a6156;
  --accent: #3b6b4b;
  --accent-2: #a6753b;
  --paper: #f7f4ee;
  --panel: #ffffff;
  --soft: #e9e2d6;
  --shadow: rgba(28, 31, 26, 0.08);
}

body {
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, 90%);
  margin: 0 auto;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0 12px;
  gap: 16px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  border: 1px solid var(--soft);
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--panel);
}

.hero {
  background-image: url("https://images.unsplash.com/photo-1505693416388-ac5ce068fe85?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #f7f4ee;
  padding: 96px 0 110px;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(27, 36, 28, 0.55);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 620px;
}

.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(--accent);
  color: #fff;
  border: none;
  font-weight: 600;
}

.btn.secondary {
  background: var(--accent-2);
}

.section {
  padding: 64px 0;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}

.split > * {
  flex: 1 1 320px;
}

.image-wrap {
  background: var(--soft);
  padding: 10px;
  border-radius: 18px;
  box-shadow: 0 12px 30px var(--shadow);
}

.image-wrap img {
  width: 100%;
  height: 320px;
  border-radius: 12px;
}

.media {
  background: var(--soft);
}

.note {
  color: var(--muted);
  font-size: 0.95rem;
}

.story-band {
  background-image: url("https://images.pexels.com/photos/34134319/pexels-photo-34134319.jpeg");
  background-size: cover;
  background-position: center;
  color: #f7f4ee;
  position: relative;
}

.story-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(35, 28, 20, 0.55);
}

.story-band .container {
  position: relative;
  z-index: 1;
}

.story-band-alt {
  background-image: url("https://images.unsplash.com/photo-1502005097973-6a7082348e28?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #f7f4ee;
  position: relative;
}

.story-band-alt::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(35, 28, 20, 0.55);
}

.story-band-alt .container {
  position: relative;
  z-index: 1;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 240px;
  background: var(--panel);
  border-radius: 20px;
  box-shadow: 0 10px 24px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card img {
  width: 100%;
  height: 200px;
}

.card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.stacked {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.testimonial {
  background: var(--panel);
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 12px 24px var(--shadow);
}

.testimonial span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.9rem;
}

.form-panel {
  background: var(--panel);
  padding: 28px;
  border-radius: 20px;
  box-shadow: 0 12px 30px var(--shadow);
}

.form-panel form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.95rem;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--soft);
  font-size: 1rem;
  background: #fff;
}

.inline-link {
  color: var(--accent);
  text-decoration: underline;
}

.footer {
  background: #1f211c;
  color: #e6e0d6;
  padding: 40px 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  margin-top: 16px;
  font-size: 0.95rem;
}

.disclaimer {
  margin-top: 20px;
  font-size: 0.85rem;
  color: #c9c2b7;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: var(--accent);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.2);
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: var(--panel);
  border-radius: 18px;
  box-shadow: 0 12px 24px var(--shadow);
  padding: 18px;
  max-width: 360px;
  z-index: 20;
  display: none;
}

.cookie-actions {
  margin-top: 12px;
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  border: none;
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 600;
}

.cookie-accept {
  background: var(--accent);
  color: #fff;
}

.cookie-reject {
  background: var(--soft);
  color: var(--ink);
}

.page-hero {
  background-image: url("https://images.unsplash.com/photo-1507089947368-19c1da9775ae?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #f7f4ee;
  padding: 70px 0;
  position: relative;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(28, 31, 26, 0.55);
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.aside-image img {
  width: 100%;
  height: 360px;
  border-radius: 18px;
}

.compact {
  max-width: 780px;
}

.legal {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.contact-card {
  flex: 1 1 220px;
  background: var(--panel);
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 10px 22px var(--shadow);
}
