  :root{
  --bg:#f6f0e8;
  --bg-soft:#fbf7f2;
  --bg-cream:#f3ece3;
  --panel:#f9f4ee;
  --panel-glass:rgba(255,255,255,.48);
  --panel-glass-strong:rgba(255,255,255,.62);
  --line:rgba(42,35,30,.10);
  --line-soft:rgba(42,35,30,.06);

  --text:#181614;
  --text-soft:#655d56;
  --text-fade:#978d83;

  --black:#111111;
  --charcoal:#24211e;
  --grey:#d7d1ca;
  --grey-deep:#bdb5ac;
  --beige:#d8c5b0;
  --beige-deep:#b79d83;
  --cream:#f5eee6;
  --white:#ffffff;

  --shadow-soft:0 20px 50px rgba(31,24,18,.08);
  --shadow-card:0 18px 36px rgba(31,24,18,.07);
  --shadow-glass:0 12px 30px rgba(31,24,18,.06);

  --radius-xl:38px;
  --radius-lg:30px;
  --radius-md:24px;
  --radius-sm:18px;
  --radius-pill:999px;

  --wrap:1380px;
  --ease:cubic-bezier(.22,.61,.36,1);
}

/* =========================
   RESET
   ========================= */
*,
*::before,
*::after{
  box-sizing:border-box;
}

html{
  -webkit-text-size-adjust:100%;
  scroll-behavior:smooth;
}

body{
  background:none;
}

body.modal-open{
  overflow: hidden;
}

img{
  display:block;
  width:100%;
  height:auto;
}

a{
  color:inherit;
  text-decoration:none;
}

button,
input,
textarea{
  font:inherit;
  color:inherit;
}

button{
  border:none;
  background:none;
  padding:0;
  cursor:pointer;
}

/* =========================
   BASE
   ========================= */
.wrap{
  width:min(var(--wrap), calc(100% - 48px));
  margin:0 auto;
}

.section{
  padding:52px 0;
}

.section--top{
  padding-top:34px;
}

.rule{
  width:100%;
  height:1px;
  background:linear-gradient(90deg, transparent, rgba(42,35,30,.10), transparent);
}

.section__head{
  display:flex;
  align-items:center;
  gap:18px;
  margin-bottom:24px;
}

.section__label{
  font-size:11px;
  letter-spacing:.24em;
  text-transform:uppercase;
  color:var(--text-fade);
  font-weight:600;
  white-space:nowrap;
}

.section__line{
  flex:1;
  height:1px;
  background:rgba(42,35,30,.08);
}

/* =========================
   TYPOGRAPHY
   ========================= */
h1,h2,h3,h4{
  margin:0;
  font-family:'Cormorant Garamond',serif;
  line-height:.96;
  letter-spacing:.01em;
  font-weight:500;
}

h1{
  font-size:clamp(60px, 8vw, 108px);
}

h2{
  font-size:clamp(42px, 5vw, 72px);
}

h3{
  font-size:32px;
}

p{
  margin:0;
}


/* =========================
   BUTTONS
   ========================= */
.btn{
  min-height:58px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:0 26px;
  border-radius:999px;
  font-size:12px;
  letter-spacing:.22em;
  text-transform:uppercase;
  font-weight:600;
  transition:
    transform .22s var(--ease),
    background-color .22s var(--ease),
    border-color .22s var(--ease),
    color .22s var(--ease),
    box-shadow .22s var(--ease);
}

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

.btn--dark{
  background:var(--black);
  color:var(--cream);
  box-shadow:0 12px 24px rgba(17,17,17,.12);
}

.btn--dark:hover{
  background:#000;
}

.btn--line{
  border:1px solid rgba(42,35,30,.10);
  background:rgba(255,255,255,.52);
  color:var(--charcoal);
  box-shadow:var(--shadow-glass);
}

/* =========================
   HERO
   ========================= */
.home-editorial{
  position:relative;
}

.hero-editorial{
  padding:34px 0 18px;
}

.hero-editorial__grid{
  display:grid;
  grid-template-columns:1.02fr .98fr;
  gap:26px;
  align-items:center;
}

.hero-editorial__text{
  padding:24px 0;
}

.hero-editorial__kicker{
  margin-bottom:18px;
  font-size:11px;
  letter-spacing:.28em;
  text-transform:uppercase;
  color:var(--text-fade);
  font-weight:600;
}

.hero-editorial__title{
  max-width:760px;
  color:var(--black);
  margin-bottom:20px;
}

.hero-editorial__desc{
  max-width:620px;
  font-size:17px;
  line-height:1.78;
  color:var(--text-soft);
}

.hero-editorial__actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-top:28px;
}

.hero-editorial__visual{
  position:relative;
  min-height:100%;
}

.hero-editorial__main-image{
  display:block;
  overflow:hidden;

  width:100%;
  aspect-ratio:9 / 14;

  border-radius:36px;
  border:1px solid rgba(42,35,30,.08);
  background:rgba(255,255,255,.54);
  box-shadow:var(--shadow-soft);
}

.hero-editorial__main-image img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.hero-editorial__floating-card{
  position:absolute;
  right:-18px;
  bottom:24px;
  width:min(280px, 100%);
  border-radius:26px;
  border:1px solid rgba(42,35,30,.08);
  background:rgba(255,255,255,.50);
  backdrop-filter:blur(18px);
  -webkit-backdrop-filter:blur(18px);
  box-shadow:var(--shadow-card);
  padding:18px 18px 20px;
}

.hero-editorial__floating-label{
  margin-bottom:8px;
  font-size:10px;
  letter-spacing:.20em;
  text-transform:uppercase;
  color:var(--text-fade);
  font-weight:600;
}

.hero-editorial__floating-text{
  font-size:14px;
  line-height:1.65;
  color:var(--text-soft);
}

/* =========================
   EDITORIAL INVITE
   ========================= */
.editorial-invite__box{
  display:grid;
  grid-template-columns:1fr auto;
  gap:18px;
  align-items:center;
  border:1px solid rgba(42,35,30,.08);
  border-radius:30px;
  background:rgba(255,255,255,.50);
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
  box-shadow:var(--shadow-card);
  padding:26px 24px;
}

.editorial-invite__kicker{
  margin-bottom:10px;
  font-size:10px;
  letter-spacing:.22em;
  text-transform:uppercase;
  color:var(--text-fade);
  font-weight:600;
}

.editorial-invite__title{
  max-width:700px;
  margin-bottom:10px;
}

.editorial-invite__desc{
  max-width:620px;
  font-size:15px;
  line-height:1.7;
  color:var(--text-soft);
}

/* =========================
   NEWS
   ========================= */
.news{
  max-width:760px;
}

.news__kicker{
  margin-bottom:10px;
  font-size:10px;
  letter-spacing:.22em;
  text-transform:uppercase;
  color:var(--text-fade);
  font-weight:600;
}

.news__title{
  margin-bottom:10px;
}

.news__desc{
  margin-bottom:18px;
  font-size:15px;
  line-height:1.7;
  color:var(--text-soft);
}

.news__card{
  display:block;
  border:1px solid rgba(42,35,30,.08);
  border-radius:28px;
  background:rgba(255,255,255,.50);
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
  box-shadow:var(--shadow-card);
  padding:22px;
  transition:
    transform .24s var(--ease),
    box-shadow .24s var(--ease),
    background-color .24s var(--ease);
}

.news__card:hover{
  transform:translateY(-2px);
}

.news__meta{
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom:10px;
}

.news__tag,
.news__date{
  font-size:10px;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:var(--text-fade);
  font-weight:600;
}

.news__headline{
  font-family:'Cormorant Garamond',serif;
  font-size:34px;
  line-height:1;
  margin-bottom:8px;
}

.news__more{
  font-size:13px;
  color:var(--text-soft);
}

/* =========================
   CARDS / COVER
   ========================= */
.cover__grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:18px;
}

.cover__card,
.card,
.media,
.banner,
.man__img,
.recent__main,
.recent__side{
  overflow:hidden;
  border-radius:30px;
  border:1px solid rgba(42,35,30,.08);
  background:rgba(255,255,255,.46);
  box-shadow:var(--shadow-card);
}

.cover__card img,
.card img,
.media img,
.banner img,
.man__img img,
.recent__main img,
.recent__side img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.cover__card{
  display:flex;
  flex-direction:column;
  transition:
    transform .26s var(--ease),
    box-shadow .26s var(--ease);
}

.cover__card:hover,
.card:hover,
.media:hover,
.banner:hover,
.man__img:hover,
.recent__main:hover,
.recent__side:hover{
  transform:translateY(-3px);
}

.cover__card img{
  aspect-ratio:4 / 5.1;
}

.cover__meta{
  display:flex;
  flex-direction:column;
  gap:8px;
  padding:18px 18px 20px;
}

.cover__name{
  font-family:'Cormorant Garamond',serif;
  font-size:32px;
  line-height:1;
}

.cover__desc{
  font-size:14px;
  line-height:1.68;
  color:var(--text-soft);
}

/* =========================
   TWO COL / TEXT BLOCK
   ========================= */
.two-col{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:24px;
  align-items:center;
}

.two-col--serene .media img{
  aspect-ratio:4 / 5.1;
}

.text-block{
  max-width:560px;
}

.text-block__body{
  font-family:'Cormorant Garamond',serif;
  font-size:46px;
  line-height:1.02;
  color:var(--black);
  margin-bottom:16px;
}

.text-block__sub{
  font-size:16px;
  line-height:1.75;
  color:var(--text-soft);
}

/* =========================
   BANNER / COLS
   ========================= */
.banner{
  display:block;
  margin-bottom:22px;
}

.banner img{
  aspect-ratio:16 / 7.5;
}

.cols{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:22px;
}

.col{
  border:1px solid rgba(42,35,30,.08);
  border-radius:26px;
  background:rgba(255,255,255,.42);
  backdrop-filter:blur(12px);
  -webkit-backdrop-filter:blur(12px);
  box-shadow:var(--shadow-card);
  padding:22px;
}

.col__title{
  margin-bottom:14px;
  font-size:14px;
  letter-spacing:.18em;
  text-transform:uppercase;
  font-family:'IBM Plex Sans',sans-serif;
  color:var(--text-fade);
}

.list{
  list-style:none;
  margin:0;
  padding:0;
  display:grid;
  gap:10px;
}

.list li{
  position:relative;
  padding-left:16px;
  color:var(--text-soft);
  line-height:1.68;
}

.list li::before{
  content:'';
  position:absolute;
  left:0;
  top:.8em;
  width:6px;
  height:6px;
  border-radius:50%;
  background:var(--beige-deep);
  transform:translateY(-50%);
}

/* =========================
   PROJECTS
   ========================= */
.cards{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:18px;
}

.card{
  display:flex;
  flex-direction:column;
  transition:
    transform .24s var(--ease),
    box-shadow .24s var(--ease);
}

.card img{
  aspect-ratio:4 / 5.1;
}

.card__cap{
  padding:16px 16px 18px;
  font-size:13px;
  line-height:1.6;
  color:var(--text-soft);
}

/* =========================
   MANIFESTO
   ========================= */
.manifesto{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:24px;
  align-items:center;
}

.man__big{
  max-width:640px;
  font-family:'Cormorant Garamond',serif;
  font-size:56px;
  line-height:.98;
  color:var(--black);
}

.man__img img{
  aspect-ratio:4 / 5;
}

/* =========================
   RECENT
   ========================= */
.recent{
  display:grid;
  grid-template-columns:1.12fr .88fr;
  grid-template-areas:
    "main side"
    "title title";
  gap:18px;
}

.recent__main{
  grid-area:main;
}

.recent__side{
  grid-area:side;
}

.recent__title{
  grid-area:title;
  padding-top:6px;
}

.recent__main img{
  aspect-ratio:5 / 4.3;
}

.recent__side img{
  aspect-ratio:4 / 5;
}

.recent__name{
  margin-bottom:8px;
  font-family:'Cormorant Garamond',serif;
  font-size:42px;
  line-height:1;
}

.recent__desc{
  font-size:15px;
  line-height:1.7;
  color:var(--text-soft);
}

/* =========================
   WORKSHOP CALL
   ========================= */
.workshop-call__grid{
  display:grid;
  grid-template-columns:1fr auto;
  gap:18px;
  align-items:end;
  border:1px solid rgba(42,35,30,.08);
  border-radius:32px;
  background:rgba(255,255,255,.50);
  backdrop-filter:blur(16px);
  -webkit-backdrop-filter:blur(16px);
  box-shadow:var(--shadow-card);
  padding:28px 24px;
}

.workshop-call__kicker{
  margin-bottom:10px;
  font-size:10px;
  letter-spacing:.20em;
  text-transform:uppercase;
  color:var(--text-fade);
  font-weight:600;
}

.workshop-call__title{
  max-width:720px;
  margin-bottom:10px;
}

.workshop-call__desc{
  max-width:640px;
  font-size:15px;
  line-height:1.72;
  color:var(--text-soft);
}

.workshop-call__actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}

/* =========================
   MINIMAL SIGNUP
   ========================= */
.minimal-signup__box{
  border:1px solid rgba(42,35,30,.08);
  border-radius:34px;
  background:rgba(255,255,255,.54);
  backdrop-filter:blur(16px);
  -webkit-backdrop-filter:blur(16px);
  box-shadow:var(--shadow-card);
  padding:28px 24px;
}

.minimal-signup__intro{
  max-width:760px;
  margin-bottom:22px;
}

.minimal-signup__title{
  margin-bottom:10px;
}

.minimal-signup__desc{
  font-size:15px;
  line-height:1.72;
  color:var(--text-soft);
}

.minimal-signup__form{
  max-width:860px;
}

.minimal-signup__fields{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
}

.minimal-signup__field{
  display:flex;
  flex-direction:column;
  gap:10px;
}

.minimal-signup__field label{
  font-size:11px;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:var(--text-fade);
  font-weight:600;
}

.minimal-signup__field input{
  width:100%;
  min-height:62px;
  border-radius:22px;
  border:1px solid rgba(42,35,30,.08);
  background:rgba(255,255,255,.74);
  padding:0 18px;
  color:var(--text);
  transition:
    border-color .22s var(--ease),
    box-shadow .22s var(--ease),
    background-color .22s var(--ease);
}

.minimal-signup__field input:focus{
  outline:none;
  border-color:rgba(42,35,30,.16);
  box-shadow:0 0 0 4px rgba(183,157,131,.10);
  background:#fffdfa;
}

.minimal-signup__actions{
  margin-top:18px;
}

.minimal-signup__status{
  min-height:20px;
  margin-top:12px;
  font-size:13px;
  color:var(--text-soft);
}

/* =========================
   CONTACT
   ========================= */
.contact__grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:24px;
  align-items:start;
  border-top:1px solid rgba(42,35,30,.08);
  padding-top:28px;
}

.contact__big{
  font-family:'Cormorant Garamond',serif;
  font-size:62px;
  line-height:.96;
}

.contact__info{
  max-width:420px;
}

.contact__row{
  display:flex;
  justify-content:space-between;
  gap:16px;
  padding:0 0 14px;
  margin-bottom:14px;
  border-bottom:1px solid rgba(42,35,30,.06);
}

.contact__k{
  font-size:11px;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:var(--text-fade);
  font-weight:600;
}

.contact__v{
  text-align:right;
  font-size:15px;
  line-height:1.6;
  color:var(--text-soft);
}

/* =========================
   MODAL
   ========================= */
.modal{
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 9999;
}

.modal.is-open{
  display: flex;
}

.modal__backdrop{
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,.34);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.modal__panel{
  position: relative;
  z-index: 2;
  width: min(560px, calc(100% - 24px));
  border-radius: 32px;
  border: 1px solid rgba(42,35,30,.08);
  background: #f7f2eb;
  box-shadow: 0 30px 80px rgba(31,24,18,.16);
  padding: 28px 24px;
}

.modal__close{
  position:absolute;
  top:14px;
  right:14px;
  width:42px;
  height:42px;
  border-radius:50%;
  border:1px solid rgba(42,35,30,.08);
  background:rgba(255,255,255,.56);
  display:grid;
  place-items:center;
}

.modal__kicker{
  margin-bottom:10px;
  font-size:10px;
  letter-spacing:.22em;
  text-transform:uppercase;
  color:var(--text-fade);
  font-weight:600;
}

.modal__title{
  margin-bottom:10px;
  font-family:'Cormorant Garamond',serif;
  font-size:48px;
  line-height:.96;
}

.modal__text{
  font-size:15px;
  line-height:1.72;
  color:var(--text-soft);
}

.modal__actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:22px;
}

.modal__dont{
  display:flex;
  align-items:center;
  gap:10px;
  margin-top:16px;
  font-size:13px;
  color:var(--text-soft);
}

/* =========================
   REVEAL
   ========================= */
.reveal{
  opacity:1;
  transform:none;
  transition:
    opacity .55s var(--ease),
    transform .55s var(--ease);
}

/* =========================
   OVERLAY
   ========================= */
.overlay[hidden]{
  display:none !important;
}

/* =========================
   MOBILE
   ========================= */
@media (max-width: 1080px){
  .hero-editorial__grid,
  .two-col,
  .manifesto,
  .recent,
  .contact__grid,
  .editorial-invite__box,
  .workshop-call__grid{
    grid-template-columns:1fr;
  }

  .recent{
    grid-template-areas:
      "main"
      "side"
      "title";
  }

  .cover__grid,
  .cards{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }

  .minimal-signup__fields,
  .cols{
    grid-template-columns:1fr;
  }
}

@media (max-width: 860px){
  

  h1{
    font-size:46px;
    line-height:.98;
  }

  h2{
    font-size:38px;
    line-height:1;
  }

  .hero-editorial__desc,
  .editorial-invite__desc,
  .news__desc,
  .text-block__sub,
  .workshop-call__desc,
  .minimal-signup__desc{
    font-size:15px;
  }

  .hero-editorial__floating-card{
    position:relative;
    right:auto;
    bottom:auto;
    width:100%;
    margin-top:14px;
  }

  .cover__grid,
  .cards{
    grid-template-columns:1fr;
  }

  .cover__card img,
  .card img,
  .media img,
  .man__img img{
    aspect-ratio:4 / 5.2;
  }

  .banner img{
    aspect-ratio:4 / 3;
  }

  .text-block__body{
    font-size:38px;
  }

  .man__big{
    font-size:42px;
  }

  .recent__name{
    font-size:34px;
  }

  .contact__big{
    font-size:48px;
  }
}

@media (max-width: 520px){
  .section{
    padding:38px 0;
  }

  .hero-editorial{
    padding:18px 0 6px;
  }

  h1{
    font-size:40px;
  }

  h2{
    font-size:34px;
  }

  .text-block__body{
    font-size:34px;
  }

  .man__big{
    font-size:36px;
  }

  .modal__title{
    font-size:38px;
  }

  .hero-editorial__actions,
  .workshop-call__actions,
  .modal__actions{
    flex-direction:column;
    align-items:stretch;
  }

  .btn{
    width:100%;
  }

  .minimal-signup__box,
  .editorial-invite__box,
  .workshop-call__grid,
  .modal__panel{
    border-radius:26px;
  }

  .cover__meta,
  .card__cap{
    padding-left:14px;
    padding-right:14px;
  }

  .contact__row{
    flex-direction:column;
    align-items:flex-start;
  }

  .contact__v{
    text-align:left;
  }
}

/* =========================
   HOME SHOP
   ========================= */
.home-shop__intro{
  max-width:760px;
  margin-bottom:24px;
}

.home-shop__title{
  margin-bottom:10px;
}

.home-shop__desc{
  font-size:15px;
  line-height:1.72;
  color:var(--text-soft);
}

.home-shop__track{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:18px;
}

.home-shop__card{
  display:flex;
  flex-direction:column;
  overflow:hidden;
  border-radius:30px;
  border:1px solid rgba(42,35,30,.08);
  background:rgba(255,255,255,.50);
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
  box-shadow:var(--shadow-card);
  transition:
    transform .24s var(--ease),
    box-shadow .24s var(--ease),
    border-color .24s var(--ease);
}

.home-shop__card:hover{
  transform:translateY(-3px);
  border-color:rgba(42,35,30,.12);
}

.home-shop__media{
  overflow:hidden;
}

.home-shop__media img{
  width:100%;
  aspect-ratio:4 / 5.15;
  object-fit:cover;
}

.home-shop__body{
  display:flex;
  flex-direction:column;
  gap:10px;
  padding:18px 18px 20px;
}

.home-shop__eyebrow{
  font-size:10px;
  letter-spacing:.20em;
  text-transform:uppercase;
  color:var(--text-fade);
  font-weight:600;
}

.home-shop__name{
  font-size:34px;
  line-height:.98;
}

.home-shop__text{
  font-size:14px;
  line-height:1.68;
  color:var(--text-soft);
}

.home-shop__cta{
  margin-top:auto;
  padding-top:6px;
  font-size:11px;
  letter-spacing:.18em;
  text-transform:uppercase;
  font-weight:600;
  color:var(--charcoal);
}

@media (max-width: 860px){
  .home-shop__track{
    display:flex;
    gap:14px;
    overflow-x:auto;
    overflow-y:hidden;
    padding:2px 2px 8px 0;
    scroll-snap-type:x mandatory;
    -webkit-overflow-scrolling:touch;
    scrollbar-width:none;
  }

  .home-shop__track::-webkit-scrollbar{
    display:none;
  }

  .home-shop__card{
    flex:0 0 84%;
    scroll-snap-align:start;
  }

  .home-shop__name{
    font-size:30px;
  }
}

@media (max-width: 520px){
  .home-shop__track{
    gap:12px;
  }

  .home-shop__card{
    flex:0 0 87%;
    border-radius:26px;
  }

  .home-shop__body{
    padding:16px 16px 18px;
  }

  .home-shop__name{
    font-size:28px;
  }

  .home-shop__text{
    font-size:13px;
    line-height:1.62;
  }
}

.btn-soft {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 14px 28px;
    border-radius: 999px;

    background: #EAE4DC; /* nude claro */
    color: #1A1A1A;

    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;

    transition: all 0.3s ease;
}

.btn-soft:hover {
    background: #DED6CC;
    transform: translateY(-1px);
}

/* =========================
   BANNER + CAPSULA FINAL
   ========================= */

/* =========================
   BANNER + CÁPSULA FINAL
   ========================= */

.banner-block{
  max-width: 1380px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 460px minmax(620px, 760px);
  gap: 72px;

  align-items: center;
  justify-content: space-between;
}

.banner-copy{
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.banner-media{
  position: relative;
  width: 100%;
}

.banner{
  position: relative;
  display: block;

  width: 100%;
  min-height: 860px;
  aspect-ratio: 5 / 6;

  overflow: hidden;
  border-radius: 38px;
  border: 1px solid rgba(42,35,30,.08);
  box-shadow: 0 24px 60px rgba(31,24,18,.08);
}

.banner img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.banner-tags{
  position: absolute;
  left: 32px;
  bottom: -22px;
  z-index: 5;
}

.banner-tags span{
  font-family: "Inter", sans-serif;
  font-size: .75rem;
  letter-spacing: .08em;

  padding: 9px 18px;
  border-radius: 999px;

  background: rgba(255,255,255,.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  color: #141414;
  display: inline-flex;
  flex-direction: column;
  gap: 3px;

  box-shadow: 0 18px 40px rgba(0,0,0,.08);
}

.banner-tags em{
  font-style: normal;
  font-size: .65rem;
  letter-spacing: .14em;
  opacity: .58;
}

/* MOBILE */
@media (max-width: 900px){
  .banner-block{
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .banner{
    min-height: auto;
    aspect-ratio: 4 / 5;
  }

  .banner-tags{
    left: 18px;
    bottom: -12px;
  }

  .banner-tags span{
    font-size: .68rem;
    padding: 8px 16px;
    max-width: 380px;

    background: rgba(255,255,255,.42);
    border: 1px solid rgba(255,255,255,.4);
  }
}

/* =========================================================
   XCANDLES — BACKGROUND EDITORIAL
========================================================= */

body{
  background-image: url("/img/home/xcandles-editorial-background-home.jpg") !important;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-attachment: fixed !important;
}

body::after{
  content: "";
  position: fixed;
  inset: 0;

  background: transparent !important;

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  pointer-events: none;
  z-index: -1;
}

.index-bg-layer{
  display: none !important;
}