:root {
  --bg: #0B1A0F;
  --surface: #122117;
  --ink: #E8E4DB;
  --ink-mid: #9CA38B;
  --ink-faint: #566150;
  --ink-ghost: #1F3326;
  --accent: #D4A843;
  --accent2: #8B4513;
  --accent-dim: #9B7830;
  --dark: #060E08;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Source Sans 3', sans-serif;
  --nav-height: 64px;
  --card-radius: 6px;
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  margin: 0; padding: 0;
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.7;
  font-size: 17px;
}
h1,h2,h3,h4,h5,h6 { font-family: var(--font-serif); color: var(--ink); margin-top: 0; }
a { color: var(--accent); text-decoration: none; transition: color .2s; }
a:hover { color: var(--ink); }
img { max-width: 100%; height: auto; }

/* Navbar */
.navbar-custom {
  background: var(--dark);
  border-bottom: 1px solid var(--ink-ghost);
  min-height: var(--nav-height);
  padding: .5rem 0;
}
.navbar-custom .navbar-brand {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--accent) !important;
  font-weight: 700;
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.navbar-custom .brand-main { font-size: 1.2rem; }
.navbar-custom .brand-sub { font-size: .7rem; color: var(--ink-mid) !important; font-family: var(--font-sans); font-weight: 400; letter-spacing: .5px; }
.navbar-custom .nav-link {
  color: var(--ink-mid) !important;
  font-size: .95rem;
  padding: .5rem 1rem !important;
  transition: color .2s;
}
.navbar-custom .nav-link:hover { color: var(--accent) !important; }
.navbar-custom .navbar-toggler { border-color: var(--ink-faint); }
.navbar-custom .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%239CA38B' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.btn-accent {
  background: var(--accent);
  color: var(--dark) !important;
  border: none;
  font-weight: 600;
  padding: .5rem 1.25rem;
  border-radius: var(--card-radius);
  transition: background .2s, transform .1s;
}
.btn-accent:hover { background: var(--accent-dim); transform: translateY(-1px); box-shadow: 0 4px 20px rgba(212,168,67,.3); }
.btn-outline-accent {
  background: transparent;
  color: var(--accent) !important;
  border: 2px solid var(--accent);
  font-weight: 600;
  padding: .45rem 1.2rem;
  border-radius: var(--card-radius);
  transition: all .2s;
}
.btn-outline-accent:hover { background: var(--accent); color: var(--dark) !important; }

/* Phone badge in navbar */
.nav-phone {
  color: var(--accent) !important;
  font-weight: 600;
  font-size: .9rem;
  white-space: nowrap;
}
.nav-phone i { margin-right: .3rem; }

/* Hero */
.hero-section {
  background: linear-gradient(160deg, var(--dark) 0%, var(--bg) 40%, var(--surface) 100%);
  padding: 6rem 0 5rem;
  text-align: center;
  border-bottom: none;
  position: relative;
  overflow: hidden;
}
.hero-section h1 {
  font-size: 2.8rem;
  color: var(--accent);
  margin-bottom: 1rem;
  text-shadow: 0 0 40px rgba(212,168,67,.25);
}
.hero-section p.lead {
  font-size: 1.2rem;
  color: var(--ink-mid);
  max-width: 700px;
  margin: 0 auto 2rem;
}
@media (max-width: 768px) {
  .hero-section { padding: 3.5rem 0 3rem; }
  .hero-section h1 { font-size: 2rem; }
}

/* Stats */
.stats-section { background: var(--surface); padding: 3rem 0; }
.stat-item { text-align: center; padding: 1.5rem .5rem; }
.stat-n {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--accent);
  font-weight: 700;
}
.stat-em { font-size: 1.2rem; color: var(--accent-dim); }
.stat-label { color: var(--ink-mid); font-size: .9rem; margin-top: .25rem; }

/* Section common */
.section { padding: 4.5rem 0; position: relative; }

/* Alternating bands */
.band-a { background: var(--bg); }
.band-b { background: var(--surface); }
.section h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}
.section h2 em {
  font-style: normal;
  color: var(--accent);
}
.section h2::after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent);
  margin-top: .6rem;
  border-radius: 2px;
}
.section h2.text-center::after { margin-left: auto; margin-right: auto; }

/* Cards */
.card-custom {
  background: var(--surface);
  border: 1px solid var(--ink-ghost);
  border-left: 3px solid var(--accent-dim);
  border-radius: var(--card-radius);
  padding: 1.75rem;
  height: 100%;
  transition: all .3s ease;
  position: relative;
  overflow: hidden;
}
.card-custom:hover {
  border-left-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(212,168,67,.1);
}
.card-custom h3 {
  font-size: 1.15rem;
  color: var(--accent);
  margin-bottom: .75rem;
  position: relative;
}
.card-custom p { color: var(--ink-mid); font-size: .95rem; margin: 0; position: relative; }

/* Services (home) */
.service-card {
  background: var(--surface);
  border: 1px solid var(--ink-ghost);
  border-radius: var(--card-radius);
  padding: 2rem 1.5rem;
  text-align: center;
  height: 100%;
  transition: border-color .3s, transform .2s;
}
.service-card:hover { border-color: var(--accent); transform: translateY(-3px); box-shadow: 0 8px 30px rgba(212,168,67,.12); }
.service-card i { font-size: 2rem; color: var(--accent); margin-bottom: 1rem; }
.service-card h3 { font-size: 1.1rem; margin-bottom: .75rem; }
.service-card p { color: var(--ink-mid); font-size: .9rem; margin: 0; }

/* Perks / why */
.perk-item { text-align: center; padding: 1.5rem 1rem; }
.perk-item i { font-size: 1.8rem; color: var(--accent); margin-bottom: .75rem; }
.perk-item h4 { font-size: 1rem; margin-bottom: .5rem; }
.perk-item p { color: var(--ink-mid); font-size: .9rem; margin: 0; }

/* Process / steps */
.process-step { text-align: center; padding: 1.5rem 1rem; }
.process-step i { font-size: 2rem; color: var(--accent); margin-bottom: 1rem; display: block; }
.process-step h4 { font-size: 1.05rem; margin-bottom: .5rem; }
.process-step p { color: var(--ink-mid); font-size: .9rem; margin: 0; }

/* Detail */
.detail-section ul { padding-left: 1.25rem; }
.detail-section li {
  color: var(--ink-mid);
  margin-bottom: .5rem;
  line-height: 1.6;
}
.detail-section li::marker { color: var(--accent); }
.detail-label {
  display: inline-block;
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: .5rem;
}

/* FAQ */
.faq-section .accordion-item {
  background: var(--surface);
  border: 1px solid var(--ink-ghost);
  margin-bottom: .5rem;
  border-radius: var(--card-radius) !important;
}
.faq-section .accordion-button {
  background: var(--surface);
  color: var(--ink);
  font-weight: 600;
  font-size: 1rem;
  box-shadow: none !important;
  border-radius: var(--card-radius) !important;
}
.faq-section .accordion-button::after {
  filter: invert(.7) sepia(1) saturate(3) hue-rotate(15deg);
}
.faq-section .accordion-button:not(.collapsed) {
  background: var(--ink-ghost);
  color: var(--accent);
}
.faq-section .accordion-body {
  color: var(--ink-mid);
  font-size: .95rem;
  line-height: 1.7;
}

/* CTA banner */
.cta-section {
  background: transparent;
  padding: 3rem 0;
  text-align: left;
  position: relative;
}
.cta-section .container {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.cta-section .cta-text { flex: 1; min-width: 280px; }
.cta-section .cta-actions { display: flex; gap: .75rem; flex-wrap: wrap; flex-shrink: 0; }
.cta-section h2 { color: var(--ink); font-size: 1.5rem; margin-bottom: .4rem; }
.cta-section h2::after { display: none; }
.cta-section p { color: var(--ink-mid); margin: 0; font-size: .95rem; }
@media (max-width: 768px) {
  .cta-section .container { flex-direction: column; text-align: center; }
  .cta-section { text-align: center; }
  .cta-section .cta-actions { justify-content: center; }
}

/* Contact cards */
.contact-card {
  background: var(--surface);
  border: 1px solid var(--ink-ghost);
  border-radius: var(--card-radius);
  padding: 2rem 1.5rem;
  text-align: center;
  height: 100%;
  transition: transform .3s, box-shadow .3s;
}
.contact-card:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,.2); }
.contact-card i { font-size: 1.8rem; color: var(--accent); margin-bottom: 1rem; }
.contact-card h4 { font-size: 1rem; margin-bottom: .5rem; }
.contact-card .desc { color: var(--ink); font-size: 1rem; font-weight: 600; }
.contact-card .hint { color: var(--ink-faint); font-size: .85rem; margin-top: .25rem; }
.contact-card .card-link {
  display: inline-block; margin-top: .75rem;
  color: var(--accent); font-weight: 600; font-size: .9rem;
}
.contact-card .card-link:hover { color: var(--ink); }

/* Text section */
.text-section p { color: var(--ink-mid); }
.text-section strong { color: var(--ink); }

/* Footer */
.footer-custom {
  background: var(--dark);
  border-top: none;
  padding: 3rem 0 1.5rem;
  font-size: .9rem;
  position: relative;
}
.footer-custom::before {
  content: '';
  position: absolute; top: 0; left: 5%; right: 5%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-dim), transparent);
}
.footer-custom h5 {
  font-family: var(--font-serif);
  color: var(--accent);
  font-size: 1rem;
  margin-bottom: 1rem;
}
.footer-custom a { color: var(--ink-mid); }
.footer-custom a:hover { color: var(--accent); }
.footer-custom ul { list-style: none; padding: 0; margin: 0; }
.footer-custom li { margin-bottom: .4rem; }
.footer-brand {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--accent);
  font-weight: 700;
}
.footer-tagline { color: var(--ink-faint); font-size: .85rem; margin-top: .25rem; }
.footer-copy {
  text-align: center;
  color: var(--ink-faint);
  font-size: .8rem;
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--ink-ghost);
}

/* Running boar animation */
.boar-track {
  position: absolute;
  bottom: 8px;
  left: 0; right: 0;
  height: 60px;
  pointer-events: none;
  overflow: hidden;
  border-bottom: 1.5px dashed var(--ink-ghost);
}
.boar-runner {
  position: absolute;
  bottom: 0;
  font-size: 2.5rem;
  line-height: 1;
  animation: boarRun 16s linear infinite;
  opacity: .2;
  transform: scaleX(-1);
}
.boar-runner:nth-child(2) {
  animation-delay: -8s;
  opacity: .12;
  font-size: 2rem;
}
@keyframes boarRun {
  0%   { left: -60px; }
  100% { left: calc(100% + 60px); }
}
@media (max-width: 768px) {
  .boar-runner { font-size: 1.8rem; }
  .boar-runner:nth-child(2) { font-size: 1.4rem; }
  .boar-track { height: 38px; bottom: 6px; }
}

/* 404 page */
.error-page { padding: 5rem 1.5rem; text-align: center; min-height: 50vh; display: flex; align-items: center; justify-content: center; }
.error-page h1 { font-size: 3rem; margin-bottom: 1rem; color: var(--accent); }
.error-page p { color: var(--ink-mid); margin-bottom: 2rem; }
