:root{
  --forest:#0B302B;
  --gold:#D4AF37;
  --white:#ffffff;
  --ink: rgba(11,18,32,.92);

  --cream: #fbfbf7;
  --paper: rgba(255,255,255,.86);
  --line: rgba(11,18,32,.12);

  --shadow: 0 20px 52px rgba(0,0,0,.16);
  --shadowSoft: 0 14px 34px rgba(0,0,0,.10);

  --radius: 18px;
  --container: 1140px;

  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family: var(--sans);
  color: var(--ink);
  background:
    radial-gradient(900px 540px at 12% 10%, rgba(212,175,55,.08), transparent 60%),
    radial-gradient(900px 540px at 90% 0%, rgba(11,48,43,.10), transparent 62%),
    var(--cream);
}

.bp-container{ width: min(var(--container), calc(100% - 40px)); margin:0 auto; }
.section{ padding: 56px 0; }
.section-head h2{
  margin:0;
  font-family: var(--serif);
  font-size: 30px;
  letter-spacing: .3px;
  color: rgba(11,18,32,.94);
}
.section-head p{
  margin: 8px 0 0;
  max-width: 90ch;
  color: rgba(11,18,32,.72);
  font-weight: 650;
  line-height: 1.7;
}
.section-dark{
  background: linear-gradient(180deg, rgba(11,48,43,.96), rgba(11,48,43,.98));
  color: rgba(255,255,255,.90);
}
.section-dark .section-head h2{ color: var(--white); }
.section-dark .section-head p{ color: rgba(255,255,255,.78); }

.bp-header{
  background: var(--forest);
  border-bottom: 1px solid rgba(212,175,55,.60);
  position: sticky; top:0; z-index: 999;
}
.bp-header__inner{
  display:flex; align-items:center; justify-content:space-between;
  gap: 16px;
  padding: 14px 0;
}
.bp-brand{ display:flex; align-items:center; gap:12px; text-decoration:none; }
.bp-brand__logo{
  width: 48px; height:48px; object-fit:contain;
  border-radius: 14px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(212,175,55,.35);
  padding: 6px;
}
.bp-brand__name{
  font-family: var(--serif);
  font-weight: 700;
  font-size: 20px;
  color: var(--white);
  line-height: 1.05;
}
.gold{ color: var(--gold); }
.bp-brand__tag{
  margin-top: 2px;
  font-family: var(--serif);
  font-weight: 600;
  color: rgba(255,255,255,.80);
  letter-spacing: .5px;
  font-size: 12px;
}

.bp-nav{ display:flex; align-items:center; gap: 18px; }
.bp-nav__link{
  font-family: var(--serif);
  font-weight: 700;
  font-size: 15px;
  color: var(--white);
  text-decoration:none;
  padding: 10px 10px;
  border-radius: 12px;
  transition: color .18s ease, background .18s ease, border-color .18s ease;
}
.bp-nav__link:hover{ color: var(--gold); background: rgba(255,255,255,.06); }
.bp-nav__cta{
  border: 1px solid rgba(212,175,55,.55);
  background: rgba(212,175,55,.10);
}
.bp-nav__cta:hover{ border-color: rgba(212,175,55,.80); background: rgba(212,175,55,.14); }

.bp-menu{
  display:none;
  width: 44px; height:44px;
  border-radius: 14px;
  border: 1px solid rgba(212,175,55,.45);
  background: rgba(255,255,255,.06);
  cursor:pointer;
  position: relative;
}
.bp-menu span, .bp-menu span::before, .bp-menu span::after{
  content:"";
  position:absolute;
  left: 12px; right: 12px;
  height:2px;
  background: rgba(255,255,255,.90);
  border-radius: 2px;
}
.bp-menu span{ top: 21px; }
.bp-menu span::before{ top: -7px; }
.bp-menu span::after{ top: 7px; }

.bp-mobile{
  display:none;
  border-top: 1px solid rgba(212,175,55,.25);
  padding: 10px 0 14px;
}
.bp-mobile a{
  display:block;
  padding: 12px 20px;
  font-family: var(--serif);
  font-weight: 700;
  color: var(--white);
  text-decoration:none;
}
.bp-mobile a:hover{ color: var(--gold); background: rgba(255,255,255,.05); }

.hero{
  padding: 44px 0 18px;
  background:
    radial-gradient(1200px 600px at 12% 0%, rgba(212,175,55,.10), transparent 60%),
    radial-gradient(900px 540px at 92% 8%, rgba(11,48,43,.14), transparent 62%);
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 18px;
  align-items: stretch;
}
.badge{
  display:inline-flex; align-items:center; gap:10px;
  background: rgba(11,48,43,.06);
  border: 1px solid rgba(212,175,55,.30);
  padding: 9px 12px;
  border-radius: 999px;
  font-weight: 850;
  color: rgba(11,48,43,.92);
}
.badge-dot{
  width: 10px; height:10px; border-radius: 99px;
  background: var(--gold);
  box-shadow: 0 0 0 7px rgba(212,175,55,.12);
}
.hero-title{
  margin: 14px 0 10px;
  font-family: var(--serif);
  font-weight: 700;
  letter-spacing: .2px;
  font-size: clamp(30px, 4.1vw, 54px);
  line-height: 1.02;
}
.hero-sub{
  display:block;
  margin-top: 6px;
  font-size: clamp(16px, 1.6vw, 20px);
  color: rgba(11,18,32,.72);
  font-family: var(--sans);
  font-weight: 800;
  letter-spacing: .1px;
}
.hero-text{
  margin: 10px 0 0;
  color: rgba(11,18,32,.74);
  font-weight: 650;
  line-height: 1.8;
  max-width: 90ch;
}
.hero-actions{ display:flex; gap: 10px; flex-wrap: wrap; margin-top: 14px; }

.btn{
  display:inline-flex; align-items:center; justify-content:center; gap: 8px;
  padding: 11px 14px;
  border-radius: 14px;
  font-weight: 900;
  text-decoration:none;
  border: 1px solid rgba(11,18,32,.18);
  background: rgba(255,255,255,.88);
  color: rgba(11,18,32,.88);
  box-shadow: var(--shadowSoft);
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.btn:hover{ transform: translateY(-1px); box-shadow: var(--shadow); }
.btn.gold{
  border: 1px solid rgba(212,175,55,.70);
  background: linear-gradient(135deg, rgba(212,175,55,.95), rgba(212,175,55,.75));
  color: rgba(11,48,43,.96);
}
.btn.outline{
  background: transparent;
  border-color: rgba(11,48,43,.22);
}

.hero-kpis{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 10px;
  margin-top: 14px;
}
.kpi{
  border: 1px solid rgba(11,18,32,.12);
  background: rgba(255,255,255,.86);
  border-radius: 16px;
  padding: 12px;
}
.kpi b{ display:block; font-weight: 950; color: rgba(11,18,32,.88); }
.kpi span{ display:block; margin-top: 2px; font-weight: 750; color: rgba(11,18,32,.64); font-size: 12px; }

.chips{ display:flex; flex-wrap:wrap; gap: 10px; margin-top: 14px; }
.chip{
  border: 1px solid rgba(11,18,32,.10);
  background: rgba(255,255,255,.88);
  border-radius: 999px;
  padding: 8px 10px;
  font-weight: 900;
  font-size: 12px;
  color: rgba(11,18,32,.72);
}

.hero-frame{
  border-radius: 22px;
  overflow:hidden;
  border: 1px solid rgba(212,175,55,.22);
  background: rgba(11,48,43,.06);
  box-shadow: var(--shadow);
}
.frame-top{
  display:flex; align-items:center; justify-content:space-between; gap: 14px;
  padding: 12px 14px;
  background: rgba(11,48,43,.92);
  border-bottom: 1px solid rgba(212,175,55,.45);
}
.frame-dots{ display:flex; gap: 7px; }
.frame-dots span{ width: 10px; height:10px; border-radius: 99px; background: rgba(212,175,55,.70); opacity:.85; }
.frame-title{
  font-family: var(--serif);
  color: rgba(255,255,255,.88);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .4px;
}

.slider{ position: relative; height: 390px; background: rgba(255,255,255,.60); }
.slides{ position:absolute; inset:0; }
.slide{
  position:absolute; inset:0;
  width:100%; height:100%;
  object-fit: cover;
  opacity:0;
  transform: scale(1.02);
  transition: opacity .55s ease, transform .55s ease;
}
.slide.active{ opacity: 1; transform: scale(1); }

.slider .nav{
  position:absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height:44px;
  border-radius: 14px;
  border: 1px solid rgba(212,175,55,.35);
  background: rgba(11,48,43,.78);
  color: rgba(255,255,255,.92);
  font-size: 22px;
  font-weight: 900;
  cursor:pointer;
  display:grid; place-items:center;
}
.slider .nav:hover{ border-color: rgba(212,175,55,.70); }
.slider .nav.prev{ left: 12px; }
.slider .nav.next{ right: 12px; }

.slider .dots{
  position:absolute; left: 50%; bottom: 12px; transform: translateX(-50%);
  display:flex; gap: 8px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(11,48,43,.78);
  border: 1px solid rgba(212,175,55,.35);
}
.slider .dot{
  width: 10px; height:10px;
  border-radius: 99px;
  border: 0;
  cursor:pointer;
  background: rgba(255,255,255,.35);
}
.slider .dot.active{ background: var(--gold); }

.grid-3{ display:grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 14px; margin-top: 14px; }
.grid-2{ display:grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 14px; margin-top: 14px; }
.mt{ margin-top: 14px; }

.card{
  border: 1px solid rgba(11,18,32,.10);
  background: rgba(255,255,255,.88);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadowSoft);
}
.card h3{
  margin: 0 0 8px;
  font-family: var(--serif);
  font-size: 18px;
  letter-spacing: .2px;
  color: rgba(11,18,32,.92);
}
.card p{
  margin:0;
  color: rgba(11,18,32,.72);
  font-weight: 650;
  line-height: 1.75;
}

.card.dark{
  background: rgba(255,255,255,.06);
  border-color: rgba(212,175,55,.18);
  color: rgba(255,255,255,.92);
}
.card.dark h3{ color: rgba(255,255,255,.92); }
.card.dark p{ color: rgba(255,255,255,.76); }

.tags{ display:flex; flex-wrap:wrap; gap: 10px; margin-top: 12px; }
.tags span{
  background: rgba(11,48,43,.06);
  border: 1px solid rgba(212,175,55,.22);
  color: rgba(11,48,43,.92);
  padding: 7px 10px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 12px;
}
.section-dark .tags span{
  background: rgba(255,255,255,.06);
  border-color: rgba(212,175,55,.25);
  color: rgba(255,255,255,.88);
}

.bullets{
  margin: 10px 0 0;
  padding-left: 18px;
  color: rgba(11,18,32,.76);
  font-weight: 650;
  line-height: 1.75;
}
.section-dark .bullets{ color: rgba(255,255,255,.82); }

.panel{
  margin-top: 14px;
  border-radius: 18px;
  border: 1px solid rgba(212,175,55,.22);
  background: rgba(255,255,255,.06);
  padding: 16px;
}
.panel-title{
  margin: 0 0 6px;
  font-family: var(--serif);
  color: var(--gold);
  font-size: 18px;
}
.panel-sub{ font-weight: 950; margin: 10px 0 8px; color: rgba(255,255,255,.90); }

.faq-wrap{ display:grid; gap: 10px; margin-top: 14px; }
.faq{
  border-radius: 16px;
  border: 1px solid rgba(212,175,55,.22);
  background: rgba(255,255,255,.06);
  overflow:hidden;
}
.faq summary{
  cursor:pointer;
  list-style:none;
  padding: 12px 14px;
  font-family: var(--serif);
  font-weight: 700;
  color: rgba(255,255,255,.92);
}
.faq summary::-webkit-details-marker{ display:none; }
.faq-body{
  padding: 0 14px 14px;
  color: rgba(255,255,255,.82);
  font-weight: 650;
  line-height: 1.75;
}

.contact-grid{ display:grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 14px; }
.form{ display:grid; gap: 10px; margin-top: 10px; }
.input{
  width:100%;
  border-radius: 14px;
  border: 1px solid rgba(11,18,32,.12);
  background: rgba(255,255,255,.92);
  padding: 12px 12px;
  font-weight: 750;
  outline:none;
}
textarea.input{ min-height: 140px; resize: vertical; }
.input:focus{ border-color: rgba(212,175,55,.60); box-shadow: 0 0 0 5px rgba(212,175,55,.14); }

.hp{ position:absolute; left:-9999px; width:1px; height:1px; overflow:hidden; }
.help{ margin-top: 8px; font-weight: 650; color: rgba(11,18,32,.70); }
.info{ display:grid; gap: 8px; color: rgba(11,18,32,.78); font-weight: 650; }
.map{ margin-top: 12px; border-radius: 18px; overflow:hidden; border: 1px solid rgba(11,18,32,.12); background: rgba(255,255,255,.86); }

.bp-footer{
  background: var(--forest);
  color: rgba(255,255,255,.80);
  padding: 44px 0 18px;
  border-top: 1px solid rgba(212,175,55,.30);
}
.bp-footer__grid{
  display:grid;
  grid-template-columns: 1.1fr 1fr 1.2fr;
  gap: 22px;
}
.bp-footer__title{
  margin: 0 0 10px;
  font-family: var(--serif);
  font-weight: 800;
  font-size: 16px;
  color: var(--gold);
}
.bp-footer__list{ margin:0; padding-left: 16px; line-height: 1.9; }
.bp-footer__list a{
  color: rgba(255,255,255,.90);
  text-decoration:none;
  font-weight: 650;
}
.bp-footer__list a:hover{ color: var(--gold); }
.bp-footer__meta{ display:grid; gap: 8px; font-weight: 650; }
.bp-footer__meta span{ color: var(--gold); font-weight: 900; }
.bp-footer__meta a{ color: rgba(255,255,255,.90); text-decoration:none; }
.bp-footer__meta a:hover{ color: var(--gold); }

.bp-footer__brands{ display:flex; gap: 10px; flex-wrap:wrap; margin-top: 14px; }
.bp-footer__brand{
  width: 58px; height: 46px;
  border-radius: 14px;
  border: 1px solid rgba(212,175,55,.25);
  background: rgba(255,255,255,.06);
  display:inline-flex; align-items:center; justify-content:center;
}
.bp-footer__brand img{ max-width: 44px; max-height: 26px; object-fit: contain; filter: brightness(1.05); }

.bp-footer__bottom{ margin-top: 26px; text-align:center; }
.bp-footer__divider{
  height:1px; width: min(720px, 92%);
  margin: 0 auto 14px;
  background: linear-gradient(90deg, transparent, rgba(212,175,55,.70), transparent);
}
.bp-footer__tagline{
  font-family: var(--serif);
  font-weight: 700;
  letter-spacing: .6px;
  color: rgba(255,255,255,.92);
  font-size: 18px;
}
.bp-footer__copy{ margin-top: 8px; font-weight: 650; font-size: 12px; color: rgba(255,255,255,.66); }

@media (max-width: 980px){
  .bp-nav{ display:none; }
  .bp-menu{ display:inline-block; }
  .hero-grid{ grid-template-columns: 1fr; }
  .slider{ height: 340px; }
  .grid-3{ grid-template-columns: 1fr; }
  .grid-2{ grid-template-columns: 1fr; }
  .contact-grid{ grid-template-columns: 1fr; }
  .hero-kpis{ grid-template-columns: 1fr; }
  .bp-footer__grid{ grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce){
  .slide{ transition:none !important; }
  .btn{ transition:none !important; }
}
