:root{
  --brand-gold:#bb9b49;
  --brand-gold-dark:#a1813f;
  --brand-dark:#222;
  --brand-light:#f8f9fa;
  --text-color:#333;
  --border-color:#e7e7e7;
  --shadow-soft:0 3px 12px rgba(0,0,0,.08);
  --shadow-card:0 10px 28px rgba(0,0,0,.08);
}

body{
  color:var(--text-color);
  background-color:var(--brand-light);
  line-height:1.65;
  overflow-x:hidden;
}

.skip-link{
  position:absolute;
  left:-9999px;
  top:auto;
  width:1px;
  height:1px;
  overflow:hidden;
}

.skip-link:focus{
  position:fixed;
  left:15px;
  top:15px;
  width:auto;
  height:auto;
  padding:10px 14px;
  background:#000;
  color:#fff;
  z-index:10000;
  text-decoration:none;
  border-radius:8px;
}

.about-hero{
  background:linear-gradient(135deg,#000 0%,#333 100%);
}

.about-hero h1{
  color:#fff;
  font-size:2.45rem;
  margin-bottom:10px;
}

.about-hero__sub{
  color:var(--brand-gold);
  font-weight:600;
  margin:0;
}

.breadcrumb{
  background:transparent;
  margin-bottom:0;
}

.breadcrumb-item a{
  color:var(--brand-gold);
  text-decoration:none;
}

.breadcrumb-item a:hover{
  color:var(--brand-gold-dark);
  text-decoration:underline;
}

.breadcrumb-item.active{
  color:var(--brand-gold);
}

.about-cta-strip{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:12px;
  margin:24px auto 0;
  padding:0 15px;
}

.about-card{
  background:#fff;
  border-radius:14px;
  box-shadow:var(--shadow-card);
  padding:28px;
  margin-bottom:28px;
}

.about-card h2{
  margin-bottom:14px;
}

.about-card h3{
  margin-top:22px;
  margin-bottom:10px;
}

.about-card h4{
  margin-top:18px;
  margin-bottom:10px;
}

.about-card a{
  color:var(--brand-gold);
  font-weight:700;
  text-decoration:none;
}

.about-card a:hover{
  color:var(--brand-gold-dark);
  text-decoration:underline;
}

.about-card--intro{
  display:grid;
  grid-template-columns:minmax(260px,500px) 1fr;
  gap:28px;
  align-items:start;
}

.about-intro-media img{
  width:100%;
  height:auto;
  display:block;
  border-radius:12px;
}

.about-rules{
  margin-bottom:18px;
}

.rules-title{
  font-size:1.2rem;
  font-weight:700;
  color:var(--brand-gold);
}

.rule-line{
  font-size:1.1rem;
  font-weight:700;
  color:#000;
}

.about-intro-actions{
  margin-top:18px;
}

.signature-block img{
  max-width:70px;
  height:auto;
}

.faq-container details{
  margin-bottom:15px;
  border:1px solid var(--brand-gold);
  border-radius:10px;
  padding:0;
  background:#f9f9f9;
  overflow:hidden;
}

.faq-container summary{
  font-weight:700;
  font-size:1.05rem;
  outline:none;
  list-style:none;
  cursor:pointer;
  padding:16px 18px;
  position:relative;
}

.faq-container summary::-webkit-details-marker{
  display:none;
}

.faq-container summary::after{
  content:"+";
  position:absolute;
  right:18px;
  top:50%;
  transform:translateY(-50%);
  color:var(--brand-gold);
  font-size:1.3rem;
  font-weight:700;
}

.faq-container details[open]{
  background:#fff8dc;
  border-color:var(--brand-gold);
}

.faq-container details[open] summary::after{
  content:"−";
}

.faq-container details > *:not(summary){
  padding:0 18px 18px;
}

.faq-container ul{
  padding-left:22px;
  margin-bottom:12px;
}

.about-reasons-card{
  background:rgba(0,0,0,.38);
  border-radius:14px;
  padding:28px;
}

.about-reasons-card h2,
.about-reasons-card p,
.about-reasons-card .reason-title{
  color:#fff;
}

.about-reason{
  margin-bottom:22px;
}

.about-reason .icon-styled{
  flex:0 0 60px;
  margin-right:14px;
}

.about-reason .icon-styled img{
  width:60px;
  height:60px;
  display:block;
}

.soul-card{
  text-align:left;
}

.soul-image-wrap img{
  width:100%;
  max-width:420px;
  height:auto;
  border-radius:12px;
}

.soul-list{
  padding-left:22px;
}

.btn-row{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}

.btn-maincolor{
  min-width:220px;
}

/* Sticky CTA mobile */
.sticky-cta{
  position:fixed;
  left:0;
  right:0;
  bottom:0;
  display:none;
  gap:8px;
  padding:10px;
  background:rgba(0,0,0,.92);
  z-index:9999;
}

.sticky-cta__btn{
  flex:1;
  text-align:center;
  padding:12px 10px;
  border-radius:12px;
  font-weight:800;
  text-decoration:none;
  line-height:1;
  color:#fff;
  background:var(--brand-gold);
  border:0;
}

.sticky-cta__btn:nth-child(2),
.sticky-cta__btn:nth-child(3){
  background:transparent;
  border:2px solid var(--brand-gold);
  color:var(--brand-gold);
}

.sticky-cta__btn:hover{
  filter:brightness(1.05);
  text-decoration:none;
}

.sticky-cta__btn:focus-visible{
  outline:3px solid #fff;
  outline-offset:2px;
}

/* Sticky CTA desktop */
.sticky-cta-desktop{
  position:fixed;
  right:18px;
  bottom:18px;
  display:none;
  gap:10px;
  padding:10px;
  background:rgba(0,0,0,.88);
  border-radius:14px;
  z-index:9999;
  box-shadow:0 10px 30px rgba(0,0,0,.25);
}

.sticky-cta-desktop .sticky-cta__btn{
  flex:0 0 auto;
  min-width:120px;
  padding:12px 14px;
  border-radius:12px;
}

.sticky-cta-desktop .sticky-cta__btn:nth-child(2),
.sticky-cta-desktop .sticky-cta__btn:nth-child(3){
  background:transparent;
  border:2px solid var(--brand-gold);
  color:var(--brand-gold);
}

@media (min-width:769px){
  .sticky-cta-desktop{
    display:flex;
  }
}

@media (max-width:991px){
  .about-hero h1{
    font-size:2rem;
  }

  .about-card{
    padding:22px;
  }

  .about-card--intro{
    grid-template-columns:1fr;
  }
}

@media (max-width:768px){
  .sticky-cta{
    display:flex;
  }

  body{
    padding-bottom:70px;
  }

  .about-cta-strip .btn,
  .btn-row .btn{
    width:100%;
  }

  .about-card{
    padding:18px;
  }

  .about-hero h1{
    font-size:1.8rem;
  }

  .about-reasons-card{
    padding:18px;
  }
}

@media (max-width:575px){
  .about-card h2{
    font-size:1.45rem;
  }

  .about-card h3{
    font-size:1.2rem;
  }

  .about-card h4{
    font-size:1.05rem;
  }
}