:root {
  --color-bg: #ececec;
  --color-primary: #84934a;
  --color-primary-dark: #656d3f;
  --color-accent: #492828;
  --color-surface: #ffffff;
  --color-text: #1f1f1f;
  --color-muted: #5c5c5c;
  --font-base: "Inter", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --font-heading: "Manrope", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --shadow-soft: 0 8px 24px rgba(0, 0, 0, 0.08);
  --shadow-strong: 0 14px 34px rgba(0, 0, 0, 0.14);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 22px;
  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2.25rem;
  --space-2xl: 3.5rem;
  --max-width: 1120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-base);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
  background-image: radial-gradient(circle at 10% 15%, rgba(132, 147, 74, 0.12), transparent 35%);
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-md);
}

a {
  color: var(--color-accent);
  text-decoration: none;
  transition: color 0.25s ease, opacity 0.25s ease;
}

a:hover,
a:focus-visible {
  color: var(--color-primary-dark);
}

.container {
  width: min(100% - 2rem, var(--max-width));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 15;
  background: rgba(236, 236, 236, 0.96);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(8px);
}

.header-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-lg);
  padding: var(--space-md) 0;
}

.brand {
  display: block;
}

.brand img {
  width: 4rem;
  position: relative;
  z-index: 20;
}

.brand img {
  display: inline-block;
  transform: rotate(-5deg);
  transition: transform var(--transition-normal);
}

.brand:hover img {
  transform: rotate(0);
}

/* Responsive Styles */
@media (max-width: 992px) {
  .brand img {
    width: 3rem;
    position: relative;
    z-index: 20;
  }
}

@media (max-width: 768px) {
  .brand img {
    width: 3rem;
    position: relative;
    z-index: 20;
  }
}

@media (max-width: 576px) {
  .brand img {
    width: 2rem;
    position: relative;
    z-index: 20;
  }
}

@media (max-width: 400px) {
  .brand img {
    width: 2rem;
    position: relative;
    z-index: 20;
  }
}

.site-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.site-nav a {
  font-weight: 600;
}

.hero {
  padding: var(--space-2xl) 0 var(--space-xl);
}

.hero-minimal {
  max-width: 760px;
}

.hero-chip {
  display: inline-block;
  margin-bottom: var(--space-sm);
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: rgba(73, 40, 40, 0.08);
  color: var(--color-accent);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.9rem, 5vw, 3rem);
  line-height: 1.15;
  margin: 0 0 var(--space-md);
}

.hero p {
  max-width: 700px;
  margin: 0;
  color: var(--color-muted);
  font-size: 1.05rem;
}

.section {
  padding: var(--space-xl) 0;
}

.section h2 {
  font-family: var(--font-heading);
  margin-top: 0;
  margin-bottom: var(--space-lg);
  font-size: clamp(1.4rem, 3vw, 2rem);
}

.tiles {
  display: grid;
  gap: var(--space-lg);
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.tile {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.tile:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-strong);
}

.feature-band {
  background: linear-gradient(135deg, #f8f8f8, #eef3de);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(101, 109, 63, 0.18);
  padding: var(--space-lg);
}

.us-note {
  background: #fefcf8;
  border: 1px solid rgba(73, 40, 40, 0.16);
  border-left: 5px solid var(--color-primary-dark);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
}

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: var(--space-md);
}

.stat {
  background: #fff;
  border-radius: var(--radius-md);
  padding: var(--space-md);
  box-shadow: var(--shadow-soft);
}

.stat strong {
  display: block;
  font-size: 1.35rem;
  color: var(--color-accent);
}

.interactive-wrap {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-soft);
}

.slider-grid {
  display: grid;
  gap: var(--space-md);
}

.slider-grid input[type="range"] {
  accent-color: var(--color-primary-dark);
}

.result-badge {
  margin-top: var(--space-md);
  padding: 0.65rem 0.8rem;
  border-radius: var(--radius-sm);
  background: rgba(132, 147, 74, 0.14);
  font-weight: 700;
}

.faq-list details {
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  margin-bottom: var(--space-sm);
  padding: var(--space-md);
}

.faq-list summary {
  cursor: pointer;
  font-weight: 700;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.72rem 1.1rem;
  border-radius: var(--radius-sm);
  border: 0;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, opacity 0.2s ease, background 0.2s ease;
}

.cta-primary {
  background: var(--color-primary);
  color: #fff;
}

.cta-secondary {
  background: var(--color-accent);
  color: #fff;
}

.cta-light {
  background: transparent;
  color: var(--color-accent);
  border: 1px solid rgba(0, 0, 0, 0.2);
}

.cta:hover,
.cta:focus-visible {
  transform: translateY(-2px);
  opacity: 0.95;
}

.split {
  display: grid;
  gap: var(--space-lg);
  align-items: center;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.site-footer {
  margin-top: var(--space-2xl);
  background: #202020;
  color: #f2f2f2;
  padding: var(--space-xl) 0;
}

.footer-grid {
  display: grid;
  gap: var(--space-lg);
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.site-footer a {
  color: #d8e3b8;
}

.footer-title {
  margin-top: 0;
  font-family: var(--font-heading);
}

.form-group {
  display: grid;
  gap: 0.35rem;
  margin-bottom: var(--space-md);
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: var(--radius-sm);
  padding: 0.75rem 0.85rem;
  font: inherit;
  background: #fff;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.error {
  color: #a80000;
  font-size: 0.9rem;
}

.ok {
  color: #1a6b2c;
  font-size: 0.95rem;
}

.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 20;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-strong);
  padding: var(--space-lg);
  display: none;
}

.cookie-banner.active {
  display: block;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 22;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  place-items: center;
  padding: 1rem;
}

.cookie-modal.active {
  display: grid;
}

.cookie-panel {
  width: min(100%, 620px);
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-strong);
  padding: var(--space-lg);
}

.toggle-row {
  display: flex;
  justify-content: space-between;
  gap: var(--space-md);
  align-items: center;
  padding: 0.45rem 0;
}

.map-embed iframe {
  border: 0;
  width: 100%;
  height: 320px;
  border-radius: var(--radius-md);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.policy-list p {
  margin: 0 0 0.8rem;
}

.policy-highlight {
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  padding: var(--space-lg);
}

@media (max-width: 900px) {

  .split,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .site-nav ul {
    flex-wrap: wrap;
    gap: var(--space-sm) var(--space-md);
  }
}

@media (max-width: 640px) {
  .header-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero {
    padding-top: var(--space-xl);
  }
}