/* =========================================================
   BEAUTYRELLA – STARTSEITE 2026
   ========================================================= */

.br-home{
  --home-bg:#f4ede7;
  --home-bg2:#eee3da;
  --home-white:#ffffff;
  --home-dark:#211b18;
  --home-dark2:#171310;
  --home-text:#5e5149;
  --home-muted:#88766d;
  --home-accent:#b98263;
  --home-accent-light:#d7b198;
  --home-line:#dfd0c7;

  margin:0;
  background:var(--home-bg);
  color:var(--home-text);
}

.br-home *{
  box-sizing:border-box;
}

.br-home-wrap{
  width:100%;
  max-width:1220px;
  margin:0 auto;
  padding:0 28px;
}

.br-home a{
  text-decoration:none;
}

.br-home-kicker{
  display:block;
  margin-bottom:16px;

  color:var(--home-accent);
  font-size:10px;
  font-weight:700;
  letter-spacing:.18em;
  text-transform:uppercase;
}

.br-home h2{
  margin:0;
  color:var(--home-dark);
  font-size:clamp(2.8rem,5.1vw,5rem);
  line-height:1.01;
  font-weight:200;
  letter-spacing:-.045em;
}

.br-home p{
  font-size:15px;
  line-height:1.82;
}

.br-home-lead{
  color:var(--home-dark)!important;
  font-size:18px!important;
}


/* HERO */

.br-home-hero{
  position:relative;
  min-height:760px;
  display:flex;
  align-items:center;
  overflow:hidden;
  background:var(--home-dark2);
}

.br-home-hero-media,
.br-home-hero-media img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
}

.br-home-hero-media img{
  display:block;
  object-fit:cover;
  object-position:center;
}

.br-home-hero-overlay{
  position:absolute;
  inset:0;
  z-index:1;

  background:
    linear-gradient(
      90deg,
      rgba(18,14,12,.94) 0%,
      rgba(18,14,12,.78) 31%,
      rgba(18,14,12,.28) 62%,
      rgba(18,14,12,.06) 100%
    ),
    linear-gradient(
      180deg,
      rgba(0,0,0,.04),
      rgba(0,0,0,.34)
    );
}

.br-home-hero-inner{
  position:relative;
  z-index:2;
}

.br-home-hero-copy{
  max-width:760px;
  padding:135px 0 150px;
}

.br-home-hero h1{
  margin:0 0 25px;

  color:#fff;
  font-size:clamp(4.5rem,8vw,7.8rem);
  line-height:.91;
  font-weight:100;
  letter-spacing:-.055em;
}

.br-home-hero-lead{
  max-width:650px;
  margin:0;

  color:rgba(255,255,255,.76);
  font-size:17px;
  line-height:1.75;
}

.br-home-actions{
  display:flex;
  flex-wrap:wrap;
  gap:11px;
  margin-top:31px;
}

.br-home-btn{
  display:inline-flex;
  min-height:48px;
  align-items:center;
  justify-content:center;

  padding:0 23px;
  border-radius:999px;

  font-size:12px;
  font-weight:650;

  transition:
    transform .2s ease,
    background .2s ease,
    color .2s ease,
    border-color .2s ease;
}

.br-home-btn:hover{
  transform:translateY(-1px);
}

.br-home-btn-primary{
  border:1px solid var(--home-accent-light);
  background:var(--home-accent-light);
  color:var(--home-dark)!important;
}

.br-home-btn-secondary{
  border:1px solid rgba(255,255,255,.28);
  background:rgba(255,255,255,.035);
  color:#fff!important;
}

.br-home-btn-dark{
  border:1px solid var(--home-dark);
  background:var(--home-dark);
  color:#fff!important;
}

.br-home-scroll{
  position:absolute;
  left:50%;
  bottom:22px;
  z-index:3;

  transform:translateX(-50%);
  text-align:center;

  color:rgba(255,255,255,.54)!important;
  font-size:9px;
  letter-spacing:.16em;
  text-transform:uppercase;
}

.br-home-scroll span{
  display:block;
  width:1px;
  height:31px;
  margin:8px auto 0;
  background:rgba(255,255,255,.37);
}


/* TRUST */

.br-home-trust{
  background:var(--home-dark);
  color:#fff;
}

.br-home-trust-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
}

.br-home-trust-grid>div{
  padding:28px 30px;
  border-right:1px solid rgba(255,255,255,.10);
}

.br-home-trust-grid>div:first-child{
  border-left:1px solid rgba(255,255,255,.10);
}

.br-home-trust strong{
  display:block;
  margin-bottom:5px;

  color:#fff;
  font-size:17px;
  font-weight:500;
}

.br-home-trust span{
  color:rgba(255,255,255,.48);
  font-size:11px;
}


/* INTRO */

.br-home-section{
  padding:105px 0;
}

.br-home-intro-grid{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:95px;
  align-items:start;
}

.br-home-copy p{
  max-width:680px;
  margin-top:0;
}

.br-home-text-links{
  display:flex;
  flex-wrap:wrap;
  gap:22px;
  margin-top:29px;
}

.br-home-text-links a,
.br-home-text-arrow{
  color:var(--home-accent)!important;
  font-size:12px;
  font-weight:650;
}


/* HEADING ROW */

.br-home-heading-row{
  display:grid;
  grid-template-columns:1fr .72fr;
  gap:80px;
  align-items:end;
}

.br-home-heading-row>p{
  margin:0;
  color:var(--home-muted);
}

.br-home-heading-row-light h2{
  color:#fff;
}

.br-home-heading-row-light>p{
  color:rgba(255,255,255,.55);
}


/* SERVICES */

.br-home-services{
  padding:100px 0;
  background:#fff;
}

.br-home-service-grid{
  display:grid;
  grid-template-columns:repeat(12,1fr);
  gap:14px;
  margin-top:45px;
}

.br-home-service{
  position:relative;
  min-height:285px;

  display:flex;
  flex-direction:column;

  padding:27px;
  overflow:hidden;

  border:1px solid var(--home-line);
  border-radius:16px;

  background:#f8f4f1;
  color:var(--home-dark)!important;

  transition:.28s ease;
}

.br-home-service:hover{
  transform:translateY(-4px);
  border-color:#ceb2a1;
  box-shadow:0 20px 48px rgba(60,43,34,.08);
}

.br-home-service-featured{
  grid-column:span 6;
  min-height:360px;

  background:
    radial-gradient(circle at 95% 0%,rgba(184,130,99,.18),transparent 34%),
    var(--home-dark);

  border-color:var(--home-dark);
  color:#fff!important;
}

.br-home-service:not(.br-home-service-featured){
  grid-column:span 3;
}

.br-home-service-more{
  grid-column:span 6!important;
}

.br-home-service-index{
  color:var(--home-accent);
  font-size:10px;
  letter-spacing:.15em;
}

.br-home-service-tag{
  margin-top:auto;
  padding-top:55px;

  color:var(--home-accent);
  font-size:9px;
  font-weight:700;
  letter-spacing:.16em;
}

.br-home-service h3{
  margin:10px 0 13px;

  color:inherit;
  font-size:27px;
  line-height:1.08;
  font-weight:300;
}

.br-home-service p{
  max-width:430px;
  margin:0 0 19px;

  color:var(--home-muted);
  font-size:12px;
  line-height:1.65;
}

.br-home-service-featured p{
  color:rgba(255,255,255,.56);
}

.br-home-service strong{
  margin-top:auto;
  color:var(--home-accent);
  font-size:11px;
  font-weight:650;
}

.br-home-service-links{
  display:flex;
  flex-wrap:wrap;
  gap:7px 13px;
  margin-top:16px;
}

.br-home-service-links a{
  color:var(--home-text)!important;
  font-size:11px;
  border-bottom:1px solid transparent;
}

.br-home-service-links a:hover{
  color:var(--home-accent)!important;
  border-color:var(--home-accent);
}

.br-home-subservices{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:1px;

  margin-top:15px;
  border:1px solid var(--home-line);
  background:var(--home-line);
  border-radius:14px;
  overflow:hidden;
}

.br-home-subservices>div{
  padding:25px;
  background:#fff;
}

.br-home-subservices span{
  display:block;
  margin-bottom:16px;

  color:var(--home-dark);
  font-size:13px;
  font-weight:600;
}

.br-home-subservices a{
  display:inline-block;
  margin:0 12px 8px 0;

  color:var(--home-muted)!important;
  font-size:11px;
}

.br-home-subservices a:hover{
  color:var(--home-accent)!important;
}


/* LEXICON */

.br-home-lexicon{
  padding:110px 0;
  background:
    radial-gradient(circle at 10% 0%,rgba(185,130,99,.12),transparent 27%),
    var(--home-dark);
}

.br-home-lexicon-grid{
  display:grid;
  grid-template-columns:.8fr 1.2fr;
  gap:80px;
  align-items:center;
}

.br-home-lexicon-copy h2{
  color:#fff;
}

.br-home-lexicon-copy p{
  max-width:500px;
  margin:23px 0 0;
  color:rgba(255,255,255,.59);
}

.br-home-lexicon-copy .br-home-btn{
  margin-top:24px;
  border-color:var(--home-accent-light);
  background:var(--home-accent-light);
  color:var(--home-dark)!important;
}

.br-home-lexicon-gallery{
  display:grid;
  grid-template-columns:1.25fr .75fr;
  grid-template-rows:1fr 1fr;
  gap:12px;
  min-height:520px;
}

.br-home-lexicon-img{
  margin:0;
  overflow:hidden;
  border-radius:17px;
  background:#100d0b;
}

.br-home-lexicon-img-large{
  grid-row:1 / 3;
}

.br-home-lexicon-img img{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
  transition:transform .65s ease;
}

.br-home-lexicon-img:hover img{
  transform:scale(1.035);
}


/* TEAM */

.br-home-team{
  padding:105px 0 115px;
  background:var(--home-bg);
}

.br-home-team-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
  margin-top:46px;
}

.br-home-team-card{
  position:relative;
  min-height:470px;

  overflow:hidden;
  border-radius:18px;
  background:#181310;

  box-shadow:0 18px 48px rgba(58,41,31,.08);

  isolation:isolate;
}

.br-home-team-card:after{
  content:"";
  position:absolute;
  inset:0;
  z-index:2;

  border:1px solid rgba(216,177,152,0);
  border-radius:18px;

  box-shadow:
    inset 0 0 0 1px rgba(216,177,152,0),
    0 0 0 rgba(185,130,99,0);

  transition:.35s ease;
  pointer-events:none;
}

.br-home-team-card:hover:after{
  border-color:rgba(216,177,152,.48);
  box-shadow:
    inset 0 0 0 1px rgba(216,177,152,.12),
    0 0 32px rgba(185,130,99,.22);
}

.br-home-team-card img{
  position:absolute;
  inset:0;
  z-index:0;

  width:100%;
  height:100%;
  object-fit:cover;

  filter:grayscale(100%);
  transition:
    transform .55s ease,
    filter .55s ease;
}

.br-home-team-card:hover img{
  transform:scale(1.035);
  filter:grayscale(25%) sepia(8%);
}

.br-home-team-overlay{
  position:absolute;
  inset:auto 0 0;
  z-index:1;

  padding:95px 27px 27px;

  background:
    linear-gradient(
      180deg,
      transparent,
      rgba(22,16,13,.88)
    );

  transform:translateY(9px);
  transition:.35s ease;
}

.br-home-team-card:hover .br-home-team-overlay{
  transform:translateY(0);
}

.br-home-team-overlay span{
  color:var(--home-accent-light);
  font-size:9px;
  font-weight:700;
  letter-spacing:.17em;
}

.br-home-team-overlay h3{
  margin:8px 0 0;
  color:#fff;
  font-size:35px;
  font-weight:200;
}


/* VIDEO */

.br-home-video-section{
  padding:105px 0;
  background:
    radial-gradient(circle at 88% 0%,rgba(184,130,99,.13),transparent 31%),
    var(--home-dark2);
}

.br-home-video-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:15px;
  margin-top:45px;
}

.br-home-video-card{
  position:relative;
  min-height:410px;

  display:block;
  padding:0;
  overflow:hidden;

  border:1px solid rgba(255,255,255,.10);
  border-radius:17px;

  background:#0e0b09;
  cursor:pointer;
}

.br-home-video-card>img,
.br-home-video-card>video{
  position:absolute;
  inset:0;

  width:100%;
  height:100%;

  display:block;
  object-fit:cover;
}

.br-home-video-card>img{
  transition:transform .55s ease;
}

.br-home-video-card:hover>img{
  transform:scale(1.025);
}

.br-home-video-shade{
  position:absolute;
  inset:0;

  background:
    linear-gradient(180deg,rgba(0,0,0,.04),rgba(0,0,0,.52));

  pointer-events:none;
}

.br-home-video-play{
  position:absolute;
  left:50%;
  top:50%;

  width:68px;
  height:68px;

  transform:translate(-50%,-50%);
  color:#fff;

  transition:transform .25s ease;
}

.br-home-video-card:hover .br-home-video-play{
  transform:translate(-50%,-50%) scale(1.06);
}

.br-home-video-play svg{
  width:100%;
  height:100%;
  fill:none;
  stroke:currentColor;
  stroke-width:1.2;
}

.br-home-video-play path{
  fill:#fff;
  stroke:none;
}

.br-home-video-label{
  position:absolute;
  left:24px;
  bottom:22px;

  color:#fff;
  font-size:20px;
  font-weight:300;
  text-align:left;
}

.br-home-video-label small{
  display:block;
  margin-bottom:5px;

  color:var(--home-accent-light);
  font-size:9px;
  font-weight:700;
  letter-spacing:.16em;
}


/* U18 */

.br-home-u18{
  background:#fff;
}

.br-home-u18-grid{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:85px;
  align-items:center;
}

.br-home-u18-grid>div>p{
  max-width:650px;
}

.br-home-u18-note{
  margin:28px 0 27px;
  padding:21px 23px;

  border-left:2px solid var(--home-accent);
  background:var(--home-bg);
}

.br-home-u18-note strong{
  display:block;
  margin-bottom:6px;
  color:var(--home-dark);
}

.br-home-u18-note p{
  margin:0;
  font-size:12px;
}

.br-home-u18-image{
  display:block;
  max-width:360px;
  margin:0 auto;

  overflow:hidden;
  border-radius:16px;

  box-shadow:0 24px 60px rgba(64,45,34,.11);
}

.br-home-u18-image img{
  display:block;
  width:100%;
  height:auto;
}


/* CARE */

.br-home-care{
  padding:105px 0;
  background:var(--home-bg2);
}

.br-home-care-grid{
  display:grid;
  grid-template-columns:.8fr 1.2fr;
  gap:85px;
  align-items:center;
}

.br-home-care-copy p{
  max-width:520px;
}

.br-home-care-assets{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
  align-items:center;
}

.br-home-care-assets>div{
  min-height:370px;

  display:flex;
  align-items:center;
  justify-content:center;

  padding:28px;
  overflow:hidden;

  border:1px solid var(--home-line);
  border-radius:17px;

  background:rgba(255,255,255,.54);
}

.br-home-care-assets img{
  max-width:100%;
  max-height:330px;
  width:auto;
  height:auto;
}


/* PARTNER */

.br-home-partner{
  padding:80px 0;
  background:#fff;
}

.br-home-partner-inner{
  display:grid;
  grid-template-columns:1fr 300px;
  gap:70px;
  align-items:center;

  padding-top:55px;
  padding-bottom:55px;

  border-top:1px solid var(--home-line);
  border-bottom:1px solid var(--home-line);
}

.br-home-partner-inner h2{
  font-size:clamp(2.3rem,4vw,4rem);
}

.br-home-partner-inner p{
  max-width:620px;
}

.br-home-partner-inner img{
  width:100%;
  max-width:250px;
  height:auto;
  justify-self:center;
}

.br-home-partner .br-home-btn-secondary{
  border-color:var(--home-dark);
  color:var(--home-dark)!important;
}


/* FINAL CTA */

.br-home-final{
  padding:110px 0;

  background:
    radial-gradient(circle at 50% -10%,rgba(185,130,99,.15),transparent 35%),
    var(--home-dark);

  text-align:center;
}

.br-home-final .br-home-wrap{
  max-width:880px;
}

.br-home-final h2{
  color:#fff;
}

.br-home-final p{
  margin:22px auto 0;
  color:rgba(255,255,255,.56);
}

.br-home-actions-center{
  justify-content:center;
}


/* RESPONSIVE */

@media(max-width:1000px){

  .br-home-heading-row,
  .br-home-intro-grid,
  .br-home-lexicon-grid,
  .br-home-u18-grid,
  .br-home-care-grid{
    grid-template-columns:1fr;
    gap:38px;
  }

  .br-home-service-featured{
    grid-column:span 12;
  }

  .br-home-service:not(.br-home-service-featured){
    grid-column:span 6;
  }

  .br-home-service-more{
    grid-column:span 12!important;
  }

  .br-home-team-card{
    min-height:400px;
  }

}

@media(max-width:760px){

  .br-home-wrap{
    padding-left:20px;
    padding-right:20px;
  }

  .br-home-hero{
    min-height:700px;
  }

  .br-home-hero-media img{
    object-position:center top;
  }

  .br-home-hero-overlay{
    background:
      linear-gradient(
        180deg,
        rgba(17,13,11,.08) 0%,
        rgba(17,13,11,.20) 33%,
        rgba(17,13,11,.90) 72%,
        rgba(17,13,11,.98) 100%
      );
  }

  .br-home-hero-copy{
    padding:335px 0 105px;
  }

  .br-home-trust-grid{
    grid-template-columns:1fr 1fr;
  }

  .br-home-trust-grid>div,
  .br-home-trust-grid>div:first-child{
    border-left:0;
    border-right:1px solid rgba(255,255,255,.10);
    border-bottom:1px solid rgba(255,255,255,.10);
  }

  .br-home-section,
  .br-home-services,
  .br-home-lexicon,
  .br-home-team,
  .br-home-video-section,
  .br-home-care,
  .br-home-final{
    padding-top:75px;
    padding-bottom:75px;
  }

  .br-home-service:not(.br-home-service-featured){
    grid-column:span 12;
  }

  .br-home-subservices{
    grid-template-columns:1fr;
  }

  .br-home-lexicon-gallery{
    min-height:440px;
  }

  .br-home-team-grid,
  .br-home-video-grid{
    grid-template-columns:1fr;
  }

  .br-home-team-card{
    min-height:500px;
  }

  .br-home-partner-inner{
    grid-template-columns:1fr;
  }

  .br-home-partner-inner img{
    max-width:210px;
  }

}

@media(max-width:520px){

  .br-home-actions{
    flex-direction:column;
  }

  .br-home-btn{
    width:100%;
  }

  .br-home-trust-grid{
    grid-template-columns:1fr;
  }

  .br-home-lexicon-gallery{
    grid-template-columns:1fr 1fr;
    grid-template-rows:300px 180px;
    min-height:0;
  }

  .br-home-lexicon-img-large{
    grid-column:1 / 3;
    grid-row:auto;
  }

  .br-home-team-card{
    min-height:430px;
  }

}


/* =========================================================
   BEAUTYRELLA HOME V2 – WOW UPDATE
   ========================================================= */

/* PROOF STRIP */
.br-home-trust{
  position:relative;
  overflow:hidden;
  background:
    radial-gradient(circle at 8% 0%,rgba(185,130,99,.13),transparent 28%),
    linear-gradient(180deg,#211b18,#171310);
}

.br-home-trust:before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    linear-gradient(90deg,transparent,rgba(216,177,152,.035),transparent);
}

.br-home-trust-grid{
  position:relative;
  z-index:1;
  min-height:210px;
}

.br-home-proof{
  position:relative;
  min-height:210px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  padding:35px 30px;
  overflow:hidden;
  border-right:1px solid rgba(255,255,255,.11);
  transition:.28s ease;
}

.br-home-proof:first-child{
  border-left:1px solid rgba(255,255,255,.11);
}

.br-home-proof:after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  height:2px;
  background:linear-gradient(90deg,transparent,var(--home-accent),transparent);
  transform:scaleX(0);
  transform-origin:center;
  transition:.3s ease;
}

.br-home-proof:hover{
  background:rgba(255,255,255,.025);
}

.br-home-proof:hover:after{
  transform:scaleX(1);
}

.br-home-proof-no{
  position:absolute;
  right:18px;
  top:10px;
  color:rgba(185,130,99,.10);
  font-size:62px;
  line-height:1;
  font-weight:200;
}

.br-home-proof strong{
  position:relative;
  z-index:1;
  margin:0 0 8px;
  color:#fff;
  font-size:clamp(2rem,3.2vw,3.4rem);
  line-height:1;
  font-weight:200;
  letter-spacing:-.035em;
}

.br-home-proof-primary strong{
  color:var(--home-accent-light);
  text-shadow:0 0 24px rgba(216,177,152,.18);
}

.br-home-proof b{
  position:relative;
  z-index:1;
  color:var(--home-accent-light);
  font-size:10px;
  line-height:1.35;
  letter-spacing:.09em;
  font-weight:700;
}

.br-home-proof small{
  position:relative;
  z-index:1;
  margin-top:12px;
  color:rgba(255,255,255,.47);
  font-size:10px;
  line-height:1.55;
}

/* IMAGE-DRIVEN SERVICE CARDS */
.br-home-services{
  background:
    radial-gradient(circle at 90% 8%,rgba(185,130,99,.06),transparent 24%),
    #fff;
}

.br-home-service-image{
  isolation:isolate;
  border-color:rgba(79,54,41,.08);
  background:#1a1512;
}

.br-home-service-image:before{
  content:"";
  position:absolute;
  inset:0;
  z-index:-3;
  background-image:var(--service-image);
  background-size:cover;
  background-position:center;
  transform:scale(1.01);
  transition:transform .6s ease, filter .4s ease;
}

.br-home-service-image:after{
  content:"";
  position:absolute;
  inset:0;
  z-index:-2;
  background:
    linear-gradient(180deg,rgba(14,10,8,.14) 0%,rgba(14,10,8,.42) 44%,rgba(14,10,8,.94) 100%);
}

.br-home-service-image:hover:before{
  transform:scale(1.055);
}

.br-home-service-image,
.br-home-service-image h3{
  color:#fff!important;
}

.br-home-service-image p{
  color:rgba(255,255,255,.66)!important;
}

.br-home-service-image .br-home-service-index{
  color:rgba(255,255,255,.78);
}

.br-home-service-image .br-home-service-tag,
.br-home-service-image strong{
  color:var(--home-accent-light);
}

.br-home-service-image .br-home-service-links a{
  color:rgba(255,255,255,.72)!important;
}

.br-home-service-image .br-home-service-links a:hover{
  color:#fff!important;
}

.br-home-service{
  box-shadow:0 12px 35px rgba(57,40,31,.045);
}

.br-home-service:hover{
  box-shadow:
    0 24px 55px rgba(52,36,28,.16),
    0 0 0 1px rgba(185,130,99,.18);
}

.br-home-service-featured{
  min-height:390px;
}

.br-home-service:not(.br-home-service-featured){
  min-height:320px;
}

.br-home-service-more{
  min-height:320px!important;
}

.br-home-subservices{
  margin-top:18px;
  border:none;
  background:linear-gradient(135deg,#211b18,#171310);
  box-shadow:0 18px 44px rgba(43,29,22,.10);
}

.br-home-subservices>div{
  background:transparent;
  border-right:1px solid rgba(255,255,255,.10);
}

.br-home-subservices>div:last-child{
  border-right:0;
}

.br-home-subservices span{
  color:var(--home-accent-light);
}

.br-home-subservices a{
  color:rgba(255,255,255,.62)!important;
}

.br-home-subservices a:hover{
  color:#fff!important;
}

/* LEXICON: stronger editorial appearance */
.br-home-lexicon{
  padding-top:120px;
  padding-bottom:120px;
}

.br-home-lexicon-gallery{
  box-shadow:0 20px 55px rgba(0,0,0,.18);
  border-radius:18px;
}

/* TEAM */
.br-home-team{
  position:relative;
  background:
    radial-gradient(circle at 20% 0%,rgba(185,130,99,.08),transparent 28%),
    var(--home-bg);
}

.br-home-team-grid{
  grid-template-columns:repeat(3,minmax(0,1fr));
  align-items:stretch;
}

.br-home-team-card{
  display:block!important;
  min-height:520px!important;
  opacity:1!important;
  visibility:visible!important;
}

.br-home-team-after{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:30px;
  margin-top:28px;
  padding-top:22px;
  border-top:1px solid var(--home-line);
}

.br-home-team-after span{
  color:var(--home-accent);
  font-size:11px;
  font-weight:700;
  letter-spacing:.12em;
  text-transform:uppercase;
}

.br-home-team-after p{
  max-width:650px;
  margin:0;
  color:var(--home-muted);
  font-size:12px;
}

/* VIDEO: PORTRAIT / PHONE STYLE */
.br-home-video-section{
  overflow:hidden;
}

.br-home-video-layout{
  display:grid;
  grid-template-columns:.72fr 1.28fr;
  gap:70px;
  align-items:center;
  margin-top:52px;
}

.br-home-video-sidecopy h3{
  margin:0;
  color:#fff;
  font-size:clamp(3rem,5vw,5.2rem);
  line-height:.95;
  font-weight:100;
  letter-spacing:-.045em;
}

.br-home-video-sidecopy p{
  max-width:400px;
  color:rgba(255,255,255,.52);
}

.br-home-video-grid{
  display:flex;
  justify-content:flex-end;
  align-items:flex-start;
  gap:18px;
  margin-top:0;
}

.br-home-video-card{
  width:min(100%,315px);
  aspect-ratio:9/16;
  min-height:0;
  flex:0 1 315px;
  border-radius:24px;
  box-shadow:0 28px 70px rgba(0,0,0,.32);
}

.br-home-video-card:nth-child(2){
  margin-top:55px;
}

.br-home-video-card>img,
.br-home-video-card>video{
  object-fit:cover;
}

.br-home-video-label{
  left:20px;
  bottom:20px;
  font-size:18px;
}

.br-home-video-play{
  width:62px;
  height:62px;
}

/* RESPONSIVE V2 */
@media(max-width:1000px){
  .br-home-trust-grid{
    grid-template-columns:1fr 1fr;
  }

  .br-home-proof,
  .br-home-proof:first-child{
    border-left:0;
    border-bottom:1px solid rgba(255,255,255,.10);
  }

  .br-home-video-layout{
    grid-template-columns:1fr;
    gap:40px;
  }

  .br-home-video-grid{
    justify-content:center;
  }

  .br-home-team-card{
    min-height:460px!important;
  }
}

@media(max-width:760px){
  .br-home-proof{
    min-height:170px;
    padding:28px 20px;
  }

  .br-home-proof strong{
    font-size:2.5rem;
  }

  .br-home-proof-no{
    font-size:48px;
  }

  .br-home-team-grid{
    grid-template-columns:1fr;
  }

  .br-home-team-card{
    min-height:500px!important;
  }

  .br-home-team-after{
    align-items:flex-start;
    flex-direction:column;
    gap:8px;
  }

  .br-home-video-grid{
    gap:12px;
  }

  .br-home-video-card{
    width:calc(50% - 6px);
    flex-basis:calc(50% - 6px);
    border-radius:18px;
  }

  .br-home-video-card:nth-child(2){
    margin-top:32px;
  }

  .br-home-video-label{
    left:13px;
    bottom:14px;
    font-size:13px;
  }

  .br-home-video-play{
    width:48px;
    height:48px;
  }
}

@media(max-width:520px){
  .br-home-trust-grid{
    grid-template-columns:1fr;
  }

  .br-home-proof{
    min-height:150px;
  }

  .br-home-video-sidecopy h3{
    font-size:3.3rem;
  }
}


/* =========================================================
   BEAUTYRELLA HOME V3 – PIERCING FIRST
   ========================================================= */

.br-home-services-v3{
  padding:110px 0 120px;
  background:
    radial-gradient(circle at 86% 2%,rgba(185,130,99,.07),transparent 23%),
    #fff;
}

.br-home-heading-row-v3{
  margin-bottom:48px;
}

.br-home-heading-row-v3 h2{
  max-width:720px;
}

.br-home-piercing-label-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  margin-bottom:14px;
}

.br-home-piercing-label-row>span{
  color:var(--home-accent);
  font-size:10px;
  font-weight:700;
  letter-spacing:.18em;
}

.br-home-piercing-label-row>a{
  color:var(--home-accent)!important;
  font-size:11px;
  font-weight:650;
}

.br-home-piercing-grid{
  display:grid;
  grid-template-columns:repeat(6,minmax(0,1fr));
  gap:12px;
}

.br-home-piercing-card{
  position:relative;
  min-height:365px;
  overflow:hidden;
  border-radius:16px;
  background:#171310;
  box-shadow:0 18px 40px rgba(47,31,23,.09);
  isolation:isolate;
}

.br-home-piercing-card:after{
  content:"";
  position:absolute;
  inset:0;
  z-index:3;
  border:1px solid rgba(216,177,152,.20);
  border-radius:16px;
  pointer-events:none;
  transition:.3s ease;
}

.br-home-piercing-card:hover:after{
  border-color:rgba(216,177,152,.72);
  box-shadow:inset 0 0 0 1px rgba(216,177,152,.12);
}

.br-home-piercing-card img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .55s ease, filter .4s ease;
}

.br-home-piercing-card:hover img{
  transform:scale(1.045);
  filter:saturate(1.05) contrast(1.03);
}

.br-home-piercing-card-shade{
  position:absolute;
  inset:0;
  z-index:1;
  background:
    linear-gradient(180deg,rgba(13,9,7,.04),rgba(13,9,7,.12) 38%,rgba(13,9,7,.90) 100%);
}

.br-home-piercing-no{
  position:absolute;
  top:18px;
  left:18px;
  z-index:2;
  color:rgba(255,255,255,.78);
  font-size:10px;
  letter-spacing:.12em;
}

.br-home-piercing-card-copy{
  position:absolute;
  left:18px;
  right:18px;
  bottom:18px;
  z-index:2;
}

.br-home-piercing-card-copy h3{
  margin:0 0 7px;
  color:#fff;
  font-size:20px;
  line-height:1.12;
  font-weight:350;
}

.br-home-piercing-card-copy span{
  color:var(--home-accent-light);
  font-size:10px;
  font-weight:650;
}

.br-home-beauty-title{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:50px;
  align-items:end;
  margin:74px 0 28px;
  padding-top:32px;
  border-top:1px solid var(--home-line);
}

.br-home-beauty-title .br-home-kicker{
  grid-column:1 / -1;
  margin-bottom:-27px;
}

.br-home-beauty-title h3{
  margin:0;
  color:var(--home-dark);
  font-size:clamp(2.2rem,4vw,3.8rem);
  line-height:1;
  font-weight:200;
  letter-spacing:-.035em;
}

.br-home-beauty-title p{
  margin:0;
  color:var(--home-muted);
}

.br-home-beauty-grid{
  display:grid;
  grid-template-columns:repeat(12,minmax(0,1fr));
  gap:13px;
}

.br-home-beauty-card{
  position:relative;
  grid-column:span 3;
  min-height:245px;
  display:flex;
  flex-direction:column;
  padding:27px;
  overflow:hidden;
  border:1px solid #dfd0c7;
  border-radius:16px;
  background:
    radial-gradient(circle at 100% 0%,rgba(185,130,99,.10),transparent 34%),
    linear-gradient(145deg,#faf7f4,#f1e8e1);
  color:var(--home-dark)!important;
  transition:.28s ease;
}

.br-home-beauty-card-wide{
  grid-column:span 6;
  min-height:230px;
}

.br-home-beauty-card:hover{
  transform:translateY(-4px);
  border-color:#caa48f;
  box-shadow:
    0 22px 50px rgba(55,38,29,.10),
    0 0 32px rgba(185,130,99,.08);
}

.br-home-beauty-no{
  position:absolute;
  right:20px;
  top:13px;
  color:rgba(185,130,99,.15);
  font-size:52px;
  line-height:1;
  font-weight:200;
}

.br-home-beauty-tag{
  margin-top:auto;
  padding-top:45px;
  color:var(--home-accent);
  font-size:9px;
  font-weight:700;
  letter-spacing:.16em;
}

.br-home-beauty-card h4{
  margin:9px 0 12px;
  color:var(--home-dark);
  font-size:25px;
  line-height:1.06;
  font-weight:300;
}

.br-home-beauty-card p{
  margin:0 0 18px;
  color:var(--home-muted);
  font-size:12px;
  line-height:1.65;
}

.br-home-beauty-card strong{
  margin-top:auto;
  color:var(--home-accent);
  font-size:11px;
}

.br-home-beauty-links{
  display:flex;
  flex-wrap:wrap;
  gap:9px 17px;
  margin-top:7px;
}

.br-home-beauty-links a{
  color:var(--home-text)!important;
  font-size:11px;
  border-bottom:1px solid transparent;
}

.br-home-beauty-links a:hover{
  color:var(--home-accent)!important;
  border-color:var(--home-accent);
}

/* Lexikon as single editorial CTA */
.br-home-lexicon-v3{
  padding:95px 0;
}

.br-home-lexicon-banner{
  display:grid;
  grid-template-columns:.78fr 1.22fr;
  min-height:470px;
  overflow:hidden;
  border:1px solid rgba(216,177,152,.20);
  border-radius:20px;
  background:#171310;
  box-shadow:0 28px 70px rgba(0,0,0,.20);
}

.br-home-lexicon-banner .br-home-lexicon-copy{
  display:flex;
  flex-direction:column;
  justify-content:center;
  padding:55px;
}

.br-home-lexicon-banner .br-home-lexicon-copy h2{
  color:#fff;
  font-size:clamp(3.2rem,5vw,5.3rem);
}

.br-home-lexicon-banner .br-home-lexicon-copy p{
  max-width:470px;
}

.br-home-lexicon-visual{
  position:relative;
  min-height:470px;
  overflow:hidden;
}

.br-home-lexicon-visual:after{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg,#171310 0%,rgba(23,19,16,.35) 17%,transparent 42%),
    linear-gradient(180deg,transparent 62%,rgba(17,13,11,.18));
  pointer-events:none;
}

.br-home-lexicon-visual img{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
  object-position:center;
  transition:transform .7s ease;
}

.br-home-lexicon-banner:hover .br-home-lexicon-visual img{
  transform:scale(1.025);
}

/* Team: force actual visible images */
.br-home-team-v3{
  padding-top:105px;
  padding-bottom:115px;
}

.br-home-team-grid-v3{
  display:grid!important;
  grid-template-columns:repeat(3,minmax(0,1fr))!important;
  gap:18px!important;
  margin-top:46px!important;
}

.br-home-team-grid-v3 .br-home-team-card{
  position:relative!important;
  display:block!important;
  width:100%!important;
  min-height:500px!important;
  height:500px!important;
  opacity:1!important;
  visibility:visible!important;
  overflow:hidden!important;
}

.br-home-team-grid-v3 .br-home-team-card img{
  position:absolute!important;
  inset:0!important;
  display:block!important;
  width:100%!important;
  height:100%!important;
  object-fit:cover!important;
  opacity:1!important;
  visibility:visible!important;
}

@media(max-width:1100px){
  .br-home-piercing-grid{
    grid-template-columns:repeat(3,minmax(0,1fr));
  }

  .br-home-piercing-card{
    min-height:390px;
  }

  .br-home-beauty-card{
    grid-column:span 6;
  }

  .br-home-beauty-card-wide{
    grid-column:span 6;
  }
}

@media(max-width:800px){
  .br-home-heading-row-v3,
  .br-home-beauty-title,
  .br-home-lexicon-banner{
    grid-template-columns:1fr;
  }

  .br-home-beauty-title .br-home-kicker{
    grid-column:auto;
    margin-bottom:0;
  }

  .br-home-piercing-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }

  .br-home-piercing-card{
    min-height:360px;
  }

  .br-home-lexicon-banner .br-home-lexicon-copy{
    padding:38px 28px 32px;
  }

  .br-home-lexicon-visual{
    min-height:420px;
  }

  .br-home-lexicon-visual:after{
    background:linear-gradient(180deg,#171310 0%,rgba(23,19,16,0) 28%);
  }

  .br-home-team-grid-v3{
    grid-template-columns:1fr!important;
  }

  .br-home-team-grid-v3 .br-home-team-card{
    height:540px!important;
  }
}

@media(max-width:520px){
  .br-home-piercing-grid{
    grid-template-columns:1fr;
  }

  .br-home-piercing-card{
    min-height:420px;
  }

  .br-home-piercing-label-row{
    align-items:flex-start;
    flex-direction:column;
  }

  .br-home-beauty-card,
  .br-home-beauty-card-wide{
    grid-column:span 12;
  }

  .br-home-beauty-card{
    min-height:220px;
  }
}
