:root {
  --site-primary: #005a13;
  --site-primary-dark: #003a00;
  --site-accent: #bd4236;
  --site-secondary: #6d774e;
  --site-primary-light: #52915f;
  --site-surface: #fffaf5;
  --site-text-secondary: #4e594f;
  --bs-body-bg: #fbf4ef;
  --bs-body-color: #08150a;
  --bs-body-font-family: 'DM Sans', sans-serif;
  --site-radius-card: 24px;
  --site-radius-input: 12px;
  --site-radius-image: 16px;
}

body {
  background: var(--bs-body-bg);
  color: var(--bs-body-color);
  font-family: var(--bs-body-font-family);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'DM Serif Display', serif;
}

.btn-primary {
  background-color: var(--site-primary);
  border-color: var(--site-primary);
  color: #fff;
}

.btn-primary:hover,
.btn-primary:focus {
  background-color: var(--site-primary-dark);
  border-color: var(--site-primary-dark);
  color: #fff;
}

.btn-outline-primary {
  color: var(--site-primary);
  border-color: var(--site-primary);
  background-color: transparent;
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
  background-color: var(--site-primary);
  border-color: var(--site-primary);
  color: #fff;
}

.bg-primary {
  background-color: var(--site-primary) !important;
}

.text-primary {
  color: var(--site-primary) !important;
}

.border-primary {
  border-color: var(--site-primary) !important;
}

a {
  color: var(--site-primary);
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}

a:hover {
  color: var(--site-primary-dark);
}

.btn {
  border-radius: 9999px;
  padding: 0.8rem 1.4rem;
  font-weight: 600;
  box-shadow: none;
  letter-spacing: 0.01em;
  transition: transform 0.2s ease, color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
  border-width: 1px;
}

.btn:hover,
.btn:focus {
  transform: translateY(-1px);
}

.form-control,
.form-select {
  border-radius: 12px;
  border: 1px solid rgba(109, 119, 78, 0.35);
  background: #fffaf5;
  color: var(--bs-body-color);
  padding: 0.8rem 1rem;
  box-shadow: none;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--site-primary-light);
  box-shadow: none;
}

.card {
  border-radius: 24px;
  border: 1px solid rgba(109, 119, 78, 0.26);
  background: var(--site-surface);
  box-shadow: none;
}

img {
  border-radius: 16px;
}

.navbar-shell {
  background: var(--site-surface);
  border-bottom: 1px solid rgba(109, 119, 78, 0.2);
}

.site-logo {
  width: 52px;
  height: 52px;
  object-fit: contain;
  border-radius: 16px;
}

.brand-text {
  font-family: 'DM Serif Display', serif;
  font-size: 1.1rem;
  color: var(--bs-body-color);
  line-height: 1.1;
}

.nav-link {
  color: var(--bs-body-color);
  font-weight: 500;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.nav-link:hover,
.nav-link:focus,
.nav-link.active {
  color: var(--site-primary);
}

.hero-title {
  max-width: 760px;
  margin: 0 auto;
}

.hero-subtitle {
  max-width: 860px;
  margin: 0 auto;
  color: var(--site-text-secondary);
}

.hero-image {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  border: 1px solid rgba(109, 119, 78, 0.22);
}

.section-rule {
  width: 60%;
  margin: 0 auto;
  border: 0;
  border-top: 1px solid rgba(109, 119, 78, 0.5);
  opacity: 1;
}

.section-kicker {
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.8rem;
  color: var(--site-secondary);
  font-weight: 700;
}

.process-step {
  height: 100%;
}

.process-number {
  width: 48px;
  height: 48px;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 90, 19, 0.08);
  color: var(--site-primary);
  font-weight: 700;
}

.info-list,
.contact-list,
.footer-links,
.rating-list,
.faq-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.info-list li,
.contact-list li,
.rating-list li,
.faq-list li {
  padding: 0.4rem 0;
  color: var(--site-text-secondary);
}

.check-list li::before {
  content: "•";
  color: var(--site-primary);
  margin-right: 0.5rem;
}

.why-panel,
.contact-panel,
.order-summary,
.legal-panel {
  background: var(--site-surface);
  border: 1px solid rgba(109, 119, 78, 0.24);
  border-radius: 24px;
}

.legal-content {
  max-width: 960px;
}

.testimonial-card blockquote,
.review-card blockquote {
  color: var(--site-text-secondary);
}

.muted-text {
  color: var(--site-text-secondary);
}

.map-frame {
  width: 100%;
  min-height: 340px;
  border: 1px solid rgba(109, 119, 78, 0.24);
  border-radius: 24px;
}

.footer-links a {
  color: var(--bs-body-color);
}

.footer-links a:hover {
  color: var(--site-primary);
}

.site-footer {
  text-align: center;
}

.site-footer .brand-text {
  font-size: 1.5rem;
}

.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 1080;
  background: var(--site-surface);
  border: 1px solid rgba(109, 119, 78, 0.28);
  border-radius: 24px;
  padding: 1rem 1.25rem;
}

.cookie-banner[hidden] {
  display: none !important;
}

.cookie-text {
  color: var(--site-text-secondary);
}

.link-inline {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 600;
}

.link-inline:hover {
  gap: 0.5rem;
}

.notice-box {
  border: 1px solid rgba(189, 66, 54, 0.24);
  background: rgba(189, 66, 54, 0.05);
  border-radius: 24px;
}

.accordion-item {
  border-radius: 24px !important;
  overflow: hidden;
  border: 1px solid rgba(109, 119, 78, 0.24);
  margin-bottom: 1rem;
  background: var(--site-surface);
}

.accordion-button {
  background: var(--site-surface);
  color: var(--bs-body-color);
  box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
  background: rgba(0, 90, 19, 0.06);
  color: var(--site-primary);
}

.navbar-toggler {
  border-radius: 9999px;
  border-color: rgba(109, 119, 78, 0.35);
}

.navbar-toggler:focus {
  box-shadow: none;
}

@media (max-width: 991.98px) {
  .brand-text {
    font-size: 1rem;
  }

  .navbar-collapse {
    padding-top: 1rem;
  }
}
