:root{
  --bg: #0b0f14;
  --panel: rgba(255,255,255,.06);
  --panel2: rgba(255,255,255,.10);
  --text: rgba(255,255,255,.92);
  --muted: rgba(255,255,255,.70);
  --line: rgba(255,255,255,.12);
  --brand: #e11b22;
  --brand2:#ffd400;
  --shadow: 0 16px 40px rgba(0,0,0,.25);
  --radius: 18px;
  --container: 1180px;
}

/* Base helpers */
.home-page{
  background: #f8fafc;
}
.container{
  width: min(var(--container), calc(100% - 32px));
  margin-inline:auto;
}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:.5rem;
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 700;
  text-decoration:none;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  will-change: transform;
}
.btn:hover{
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.btn--primary{
  background: var(--brand);
  color: #fff;
}
.btn--primary:hover{
  background: #c9151c;
}
.btn--ghost{
  background: rgba(255,255,255,.10);
  color:#fff;
  border:1px solid rgba(255,255,255,.18);
}
.btn--ghost:hover{
  background: rgba(255,255,255,.16);
}
.btn--mini{
  padding:10px 14px;
  border-radius: 12px;
  font-size: 14px;
}
.actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top: 18px;
}

/* Sections */
.home-section{
  padding: clamp(44px, 6vw, 90px) 0;
  position: relative;
}
.home-section + .home-section{
  box-shadow: inset 0 1px 0 rgba(17,24,39,.06);
}
.section-head{
  margin-bottom: 22px;
}
.section-title{
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.12;
  margin:0 0 10px;
  color:#111827;
  letter-spacing: -.02em;
}
.section-sub{
  margin:0;
  color:#4b5563;
  font-size: 16px;
  max-width: 62ch;
}

/* ================= HERO ================= */
.home-hero{
  position:relative;
  background: #0b0f14;
  overflow:hidden;
}
.home-hero__swiper{
  position:relative;
  overflow: hidden;
  width: 100%;
}
.home-hero__swiper .swiper-wrapper{
  width: 100%;
}
.home-hero__swiper .swiper-slide{
  width: 100% !important;
  flex: 0 0 100%;
}
.home-hero__slide{
  position:relative;
  min-height: clamp(520px, 78vh, 760px);
  display:flex;
  align-items: stretch;
  color: var(--text);
  overflow: hidden;
}
.home-hero__bg{
  position:absolute;
  inset:0;
  background-image: var(--hero-bg);
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  filter: saturate(1.05);
}
.home-hero__overlay{
  position: absolute;
  inset: 0;
  background: radial-gradient(1200px 600px at 20% 30%, rgb(255 255 255 / 10%), #00000000 50%), radial-gradient(900px 500px at 75% 40%, rgba(225, 27, 34, .12), transparent 55%), linear-gradient(90deg, rgb(0 0 0 / 13%) 0%, rgb(0 0 0 / 31%) 45%, rgb(0 0 0 / 22%) 100%);
}
.home-hero__mobileBrand{
  display: none;
  position: absolute;
  left: 50%;
  top: 100px;
  transform: translateX(-50%);
  z-index: 6;
  text-decoration: none;
  align-items: center;
  justify-content: center;
  opacity: 1;
  visibility: visible;
  transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
}

.home-hero__mobileBrand img{
  display: block;
  max-height: 42px;
  width: auto;
  filter: none;
}

.home-hero__mobileBrand span{
  color: #fff;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: .08em;
}

.home-hero__content{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: clamp(16px, 4vw, 40px);
  align-items:center;
  padding: clamp(24px, 6vw, 64px) 0;
}
.home-hero__kicker{
  display:inline-flex;
  gap:.5rem;
  align-items:center;
  padding: 8px 12px;
  border:1px solid rgba(255,255,255,.18);
  border-radius:999px;
  background: rgba(0,0,0,.22);
  font-weight:700;
  letter-spacing:.06em;
  text-transform: uppercase;
  font-size: 12px;
  margin-bottom: 14px;
}
.home-hero__title{
  margin:0 0 10px;
  font-size: clamp(44px, 6vw, 84px);
  line-height: .98;
  letter-spacing: -.03em;
}
.home-hero__titleAccent{
  color: var(--brand2);
  text-shadow: 0 18px 50px rgba(0,0,0,.35);
}
.home-hero__sub{
  margin: 14px 0 0;
  max-width: 52ch;
  color: rgba(255,255,255,.82);
  font-size: 16px;
}
.home-hero__actions{
  margin-top: 22px;
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}
.home-hero__location{
  display:flex;
  align-items:baseline;
  gap:10px;
  margin: 12px 0 4px;
}
.home-hero__locationLabel{
  font-size: 14px;
  color: rgba(255,255,255,.78);
}
.home-hero__locationValue{
  font-size: clamp(22px, 3vw, 40px);
  font-weight: 800;
  color: var(--brand2);
  letter-spacing: -.02em;
  position:relative;
}
.home-hero__locationValue.is-changing{
  animation: locPop .45s ease;
}
@keyframes locPop{
  0%{ opacity:.25; transform: translateY(10px); }
  60%{ opacity:1; transform: translateY(0); }
  100%{ opacity:1; }
}

.home-hero__glass{
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 30px 80px rgba(0,0,0,.35);
  backdrop-filter: blur(10px);
}
.home-hero__glassTitle{
  font-weight: 900;
  font-size: 18px;
  margin-bottom: 8px;
}
.home-hero__glassText{
  color: rgba(255,255,255,.82);
  font-size: 14px;
}
.home-hero__chips{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top: 12px;
}
.chip{
  display:inline-flex;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(0,0,0,.18);
  font-size: 12px;
  font-weight: 700;
}

/* Swiper UI */
.home-hero__ui{
  position:absolute;
  inset:auto 0 18px 0;
  z-index:5;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding: 0 16px;
}
.home-hero .swiper-pagination{
  position:static;
  width:auto;
  text-align: center;
}
.home-hero .swiper-pagination-bullet{
  width: 10px;
  height: 10px;
  background: rgba(255,255,255,.35);
  opacity:1;
  margin: 0 5px;
}
.home-hero .swiper-pagination-bullet-active{
  background: var(--brand2);
}
.home-hero__nav{
  display:flex;
  gap:10px;
}
.home-hero .swiper-button-next,
.home-hero .swiper-button-prev{
  position:static;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border:1px solid rgba(255,255,255,.18);
  background: rgba(0,0,0,.22);
  margin:0;
}
.home-hero .swiper-button-next:after,
.home-hero .swiper-button-prev:after{
  font-size: 16px;
  color:#fff;
}

/* ================= SERVICES ================= */
.home-services{
  background: linear-gradient(180deg, #fff7f7 0%, #fffdfd 100%);
}
.cards-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 18px;
}
.card{
  border-radius: var(--radius);
  border: 1px solid rgba(17,24,39,.10);
  background: rgba(255,255,255,.88);
  padding: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,.06);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.card:hover{
  transform: translateY(-4px);
  box-shadow: 0 18px 50px rgba(0,0,0,.12);
  border-color: rgba(225,27,34,.25);
}
.card__icon{
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display:grid;
  place-items:center;
  background: rgba(225,27,34,.10);
  color: var(--brand);
  margin-bottom: 12px;
  font-size: 18px;
}
.card__title{
  margin:0 0 8px;
  font-size: 18px;
  font-weight: 900;
  color:#111827;
}
.card__desc{
  margin:0 0 20px;
  color:#555;
  font-size: 14px;
  line-height: 1.6;
}
.card__link{
  color: #111827;
  font-weight: 800;
  text-decoration:none;
}
.card__link:hover{
  color: var(--brand);
}

/* ================= SEE WHAT WE OFFER ================= */
.home-offer{
  background: linear-gradient(180deg, #fffdf2 0%, #fff8eb 100%);
  padding-top: 50px;
}
.offer{
  display:grid;
  grid-template-columns: 1.35fr .65fr;
  gap: 18px;
  align-items: stretch;
}
.offer__media{
  position:relative;
  border-radius: var(--radius);
  overflow:hidden;
  min-height: clamp(320px, 40vw, 520px);
  background: #e5e7eb;
  box-shadow: 0 14px 40px rgba(0,0,0,.10);
}
.offer__mediaItem{
  position:absolute;
  inset:0;
  opacity:0;
  transform: scale(1.02);
  transition: opacity .35s ease, transform .35s ease;
}
.offer__mediaItem.is-active{
  opacity:1;
  transform: scale(1);
}
.offer__mediaItem img{
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
}
.offer__mediaPlaceholder{
  width:100%;
  height:100%;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  padding: 22px;
  color:#fff;
  background:
    radial-gradient(700px 360px at 20% 20%, rgba(225,27,34,.22), transparent 55%),
    radial-gradient(700px 360px at 70% 30%, rgba(255,212,0,.18), transparent 55%),
    linear-gradient(135deg, #0b0f14 0%, #111827 100%);
}
.offer__mediaBadge{
  display:inline-flex;
  align-self:flex-start;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  font-weight: 800;
  margin-bottom: 10px;
}
.offer__mediaTitle{
  font-size: clamp(26px, 3.2vw, 44px);
  font-weight: 900;
  letter-spacing: -.03em;
}
.offer__card{
  border-radius: var(--radius);
  border: 1px solid rgba(17,24,39,.10);
  background: rgba(255,255,255,.88);
  box-shadow: 0 14px 40px rgba(0,0,0,.08);
  padding: clamp(18px, 3vw, 30px);
  display:flex;
  flex-direction:column;
  justify-content:center;
}
.offer__heading{
  font-size: clamp(30px, 3.2vw, 52px);
  line-height: 1.05;
  letter-spacing: -.03em;
  margin: 0 0 18px;
  color:#111827;
}
.offer__steps{
  display:flex;
  gap: 10px;
  margin-bottom: 16px;
}
.offer__step{
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(17,24,39,.18);
  background: rgba(255,255,255,.65);
  color:#111827;
  font-weight: 900;
  display:grid;
  place-items:center;
  cursor:pointer;
  transition: transform .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
}
.offer__step:hover{
  transform: translateY(-1px);
}
.offer__step.is-active,
.offer__step[aria-selected="true"]{
  background: #111827;
  color:#fff;
  border-color:#111827;
}
.offer__panel{
  display:none;
}
.offer__panel.is-active{
  display:block;
}
.offer__title{
  margin: 0 0 10px;
  font-size: 22px;
  font-weight: 900;
  color:#111827;
}
.offer__text{
  margin: 0 0 18px;
  color:#4b5563;
  font-size: 14px;
  line-height: 1.7;
  max-width: 54ch;
}
.offer__btn{
  background: #fde68a;
  color: #111827;
}
.offer__btn:hover{
  background:#fcd34d;
}

/* ================= TAILOR ================= */
.home-tailor{
  background: linear-gradient(180deg, #f8fbff 0%, #eef4f8 100%);
}
.two-col{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(16px, 4vw, 44px);
  align-items:center;
}
.media-img{
  width:100%;
  height:auto;
  border-radius: var(--radius);
  box-shadow: 0 18px 60px rgba(0,0,0,.12);
}
.media-placeholder{
  width:100%;
  min-height: 360px;
  border-radius: var(--radius);
  background:
    radial-gradient(700px 350px at 20% 20%, rgba(225,27,34,.20), transparent 55%),
    radial-gradient(700px 350px at 70% 30%, rgba(255,212,0,.18), transparent 55%),
    linear-gradient(135deg, #0b0f14 0%, #111827 100%);
  color:#fff;
  padding: 22px;
  box-shadow: 0 18px 60px rgba(0,0,0,.22);
  position:relative;
  overflow:hidden;
}
.media-placeholder__badge{
  display:inline-flex;
  padding: 8px 12px;
  border-radius:999px;
  background: rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.16);
  font-weight: 800;
  margin-bottom: 12px;
}
.media-placeholder__title{
  font-size: 44px;
  font-weight: 900;
  letter-spacing:-.03em;
}
.media-placeholder__sub{
  color: rgba(255,255,255,.78);
  margin-top: 8px;
}
.richtext p{
  color:#374151;
  line-height:1.8;
}
.tick-list{
  list-style:none;
  padding:0;
  margin: 14px 0 0;
  display:grid;
  gap:10px;
}
.tick-list li{
  padding-left: 28px;
  position:relative;
  color:#111827;
}
.tick-list li:before{
  content:"✓";
  position:absolute;
  left:0;
  top:0;
  width: 20px;
  height: 20px;
  border-radius: 8px;
  display:grid;
  place-items:center;
  color: #059669;
  font-weight: 900;
}

/* ================= PARTNERS ================= */
.home-partners{
  background: linear-gradient(180deg, #f4f7fb 0%, #ffffff 100%);
  padding-bottom: 0;
}
.partners-marquee{
  --partners-speed: 60s;
  --partners-gap: 14px;
  width: 100%;
  overflow: hidden;
  padding: 18px 0 0;
}
.partners-marquee__inner{
  display: flex;
  width: max-content;
  animation: partners-scroll var(--partners-speed) linear infinite;
  will-change: transform;
}
.partners-marquee:hover .partners-marquee__inner{
  animation-play-state: paused;
}
.partners-marquee__track{
  display: flex;
  align-items: center;
  gap: var(--partners-gap);
  padding: 0 12px;
}
.partner-logo{
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: clamp(140px, 12vw, 180px);
  min-height: 88px;
  border-radius: 16px;
  border: 1px solid rgba(17,24,39,.10);
  background: rgba(255,255,255,.88);
  padding: 14px;
  box-shadow: 0 10px 26px rgba(0,0,0,.06);
  transition: transform .18s ease, box-shadow .18s ease;
  text-decoration:none;
}
.partner-logo:hover{
  transform: translateY(-3px);
  box-shadow: 0 16px 44px rgba(0,0,0,.10);
}
.partner-logo img{
  max-width: 100%;
  max-height: 56px;
  width:auto;
  height:auto;
  object-fit: contain;
  filter: grayscale(1);
  opacity:.9;
  transition: filter .18s ease, opacity .18s ease;
}
.partner-logo:hover img{
  filter: grayscale(0);
  opacity: 1;
}
.partner-logo__fallback{
  font-weight: 900;
  color:#111827;
}
@keyframes partners-scroll{
  from{ transform: translateX(0); }
  to{ transform: translateX(-50%); }
}

/* ================= MASTER CUTTER ================= */
.home-master-cutter{
  background: linear-gradient(180deg, #fffaf3 0%, #fff5ea 100%);
}

/* ================= TEAM ================= */
.home-team{
  background: linear-gradient(180deg, #f7f9fc 0%, #eef2f7 100%);
}
.team-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 18px;
}
.team-card{
  background: rgba(255,255,255,.88);
  border:1px solid rgba(17,24,39,.10);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 12px 34px rgba(0,0,0,.07);
}
.team-card__top{
  display:flex;
  gap:12px;
  align-items:center;
  margin-bottom: 10px;
}
.team-card__avatar{
  width: 54px;
  height: 54px;
  border-radius: 50%;
  overflow:hidden;
  background: rgba(225,27,34,.10);
  color: var(--brand);
  display:grid;
  place-items:center;
  font-weight: 900;
}
.team-card__avatar img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.team-card__name{
  margin:0;
  font-size: 18px;
  font-weight: 900;
  color:#111827;
}
.team-card__role{
  color:#6b7280;
  font-weight: 700;
  font-size: 13px;
}
.team-card__bio{
  margin: 0 0 12px;
  color:#4b5563;
  line-height:1.65;
  font-size: 14px;
}

/* ================= SHOPS ================= */
.home-shops{
  background: linear-gradient(180deg, #f7fbf8 0%, #edf7ef 100%);
  color:#111827;
}

.home-shops .section-title{
  color:#111827;
}

.home-shops .section-sub{
  color:#5b6776;
}

.home-shops__head{
  max-width: 640px;
  margin-bottom: 24px;
}

.home-shops__eyebrow{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(225,27,34,.08);
  color: var(--brand);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.shop-showcaseList{
  display:grid;
  gap: 22px;
}

.shop-showcase{
  display:grid;
  grid-template-columns: 1.08fr .92fr;
  align-items: stretch;
  overflow:hidden;
  border-radius: 28px;
  background: #edf7ef;
  border: 1px solid rgba(17,24,39,.08);
  box-shadow: 0 22px 60px rgba(15,23,42,.10);
}

.shop-showcase__map{
  min-height: 360px;
  background: #dbe8df;
  position: relative;
  order: 1;
}

.shop-showcase__map iframe{
  width:100%;
  height:100%;
  display:block;
}

.shop-showcase__content{
  padding: clamp(22px, 3vw, 34px);
  background:
    radial-gradient(700px 260px at 100% 0%, rgba(225,27,34,.05), transparent 55%),
    linear-gradient(180deg, #eff8f2 0%, #e8f4eb 100%);
  display:flex;
  flex-direction:column;
  justify-content:center;
  order: 2;
}

.shop-showcase.is-reverse .shop-showcase__map{
  order: 2;
}

.shop-showcase.is-reverse .shop-showcase__content{
  order: 1;
}

.shop-showcase__mapEmpty{
  width:100%;
  height:100%;
  display:grid;
  place-items:center;
  gap:10px;
  color:#334155;
  font-weight:700;
  text-align:center;
  padding:24px;
}

.shop-showcase__mapEmpty i{
  font-size:28px;
  color: var(--brand);
}

.shop-showcase__top{
  margin-bottom: 18px;
}

.shop-showcase__label{
  display:inline-block;
  margin-bottom:8px;
  color:#4b7b5f;
  font-size:12px;
  font-weight:900;
  letter-spacing:.12em;
  text-transform:uppercase;
}

.shop-showcase__title{
  margin:0 0 10px;
  color:#111827;
  font-size: clamp(24px, 2.3vw, 36px);
  line-height:1.08;
  letter-spacing:-.02em;
  font-weight:900;
}

.shop-showcase__intro{
  margin:0;
  color:#5b6776;
  line-height:1.75;
  font-size:15px;
  max-width:46ch;
}

.shop-showcase__meta{
  display:grid;
  gap:12px;
}

.shop-showcase__item{
  display:flex;
  gap:12px;
  align-items:flex-start;
}

.shop-showcase__icon{
  width:42px;
  height:42px;
  border-radius:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: rgba(255,255,255,.72);
  border:1px solid rgba(17,24,39,.08);
  color: var(--brand);
  flex:0 0 auto;
}

.shop-showcase__text{
  color:#475569;
  line-height:1.7;
}

.shop-showcase__text strong{
  display:block;
  color:#111827;
  font-size:13px;
  font-weight:900;
  letter-spacing:.02em;
  margin-bottom:2px;
}

.shop-showcase__text a{
  color:#334155;
  text-decoration:none;
}

.shop-showcase__text a:hover{
  text-decoration:underline;
}

.shop-showcase__actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:22px;
}

.shop-showcase__btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  min-height:48px;
  padding:12px 18px;
  border-radius:999px;
  font-weight:900;
  text-decoration:none;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
}

.shop-showcase__btn:hover{
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(15,23,42,.12);
}

.shop-showcase__btn--primary{
  background: var(--brand);
  color:#fff;
}

.shop-showcase__btn--primary:hover{
  background:#c9151c;
}

.shop-showcase__btn--ghost{
  background: rgba(255,255,255,.78);
  color:#111827;
  border:1px solid rgba(17,24,39,.10);
}

.shop-showcase__btn--ghost:hover{
  background:#ffffff;
}

@media (max-width: 980px){
  .shop-showcase{
    grid-template-columns: 1fr;
  }

  .shop-showcase__map{
    min-height: 300px;
    order: 1 !important;
  }

  .shop-showcase__content{
    order: 2 !important;
  }
}

@media (max-width: 640px){
  .shop-showcase{
    border-radius: 22px;
  }

  .shop-showcase__map{
    min-height: 260px;
  }

  .shop-showcase__content{
    padding: 20px;
  }

  .shop-showcase__actions{
    flex-direction: column;
  }

  .shop-showcase__btn{
    width: 100%;
  }


  .home-hero{
    --hero-next-section-peek: 96px;
    --hero-ui-space: 34px;         /* dots ke area ki reserved space */
    --hero-glass-bottom-gap: 14px; /* dots aur glass box ke darmiyan gap */
  }

  .home-hero__ui{
    gap: 0;
    flex-direction: row;
    align-items: center;
    bottom: 10px;
  }

  .home-hero__slide{
    min-height: calc(100svh - var(--hero-next-section-peek));
    height: calc(100svh - var(--hero-next-section-peek));
  }

  .home-hero__content{
    min-height: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: calc(var(--topbar-h, 0px) + 70px);
    padding-bottom: calc(var(--hero-ui-space) + var(--hero-glass-bottom-gap) + 16px);
    gap: 14px;
  }

  .home-hero__left{
    flex: 0 0 auto;
  }

  .home-hero__right{
    width: 100%;
    margin-top: auto;
    margin-bottom: 0;
  }

  .home-hero__glass{
    margin-top: 0;
  }

}

/* ================= Reveal Animations ================= */
[data-reveal]{
  opacity:0;
  transform: translateY(16px);
  transition: opacity .55s ease, transform .55s ease;
  will-change: opacity, transform;
}
.is-inview[data-reveal]{
  opacity:1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce){
  [data-reveal]{
    opacity:1;
    transform:none;
    transition:none;
  }
  .home-hero__locationValue.is-changing{
    animation:none;
  }
  .btn{
    transition:none;
  }
  .partners-marquee__inner{
    animation:none;
    transform:none;
  }
}

/* ================= Responsive ================= */
@media (max-width: 1024px){

  .home-hero__content{
    grid-template-columns: 1fr;
  }

  .home-hero__right{
    order: 2;
  }

  .home-hero__left{
    order: 1;
  }

  .logo-grid{
    grid-template-columns: repeat(3, 1fr);
  }

  .cards-grid{
    grid-template-columns: 1fr;
  }

  .team-grid{
    grid-template-columns: 1fr 1fr;
  }

  .shops-grid{
    grid-template-columns: 1fr;
  }

  .two-col{
    grid-template-columns: 1fr;
  }

  .offer{
    grid-template-columns: 1fr;
  }

  .home-offer{
    padding-top: 10px;
  }

  .offer__media{
    min-height: 320px;
  }

  .partners-marquee{
    --partners-speed: 60s;
  }

  .partner-logo{
    width: clamp(130px, 22vw, 170px);
  }

  .home-hero .swiper-button-prev,
  .home-hero .swiper-button-next{
    display: none;
  }

  .home-hero__ui{
    justify-content: center;
  }

  body.home{
    padding-top: calc(var(--topbar-h, 0px) + var(--adminbar-h));
  }


  /* ================= HERO MOBILE LOGO ================= */

  .home-hero{
    --hero-logo-gap: 90px;
  }

  .home-hero__mobileBrand{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    left: 50%;
    top: calc(var(--topbar-h, 0px) + 60px);
    transform: translateX(-50%);
    margin: 0;
    z-index: 6;

    padding: 10px 16px;

    border-radius: 999px;

    background: rgba(255,255,255,.10);

    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);

    box-shadow: 0 10px 30px rgba(0,0,0,.22);

    border: 1px solid rgba(255,255,255,.14);
  }

  .home-hero__mobileBrand img{
    display: block;
    max-height: 42px;
    width: auto;
  }

  /* spacing between logo and hero content */

  .home-hero__content{
    align-content: start;

    padding-top:
      calc(
        var(--topbar-h,0px)
        + 60px
        + 50px
        + var(--hero-logo-gap)
      );
  }

  /* hide banner logo when header appears */

  body.header-is-scrolled .home-hero__mobileBrand{
    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transform: translate(-50%, -10px);
  }

}
@media (max-width: 640px){
  .cards-grid{
    grid-template-columns: 1fr;
  }
  .team-grid{
    grid-template-columns: 1fr;
  }
  .logo-grid{
    grid-template-columns: repeat(2, 1fr);
  }
  .partners-marquee{
    --partners-speed: 60s;
    --partners-gap: 10px;
    padding-top: 14px;
  }
  .partner-logo{
    width: clamp(120px, 42vw, 160px);
    min-height: 78px;
    padding: 12px;
  }
  .partner-logo img{
    max-height: 50px;
  }
  .home-hero .btn{
    width: 100%;
    padding: 14px;
    text-align: center;
    max-width: 240px;
    margin: auto;
    font-size: 13px;
    padding: 12px;
  }
  .home-hero .btn--ghost{
    margin-top: 10px;
  }
  .home-hero__ui{
    gap: 0;
    flex-direction: row;
    align-items: center;
    bottom: 10px;
  }
  .home-hero__mobileBrand{
    padding: 8px 12px;
    top: calc(var(--topbar-h, 0px) + 50px);
  }

  .home-hero__mobileBrand img{
    max-height: 34px;
  }
  .home-hero__right {
    margin-top: 30px;
    margin-bottom: 10px;
  }

  .home-hero{
    --hero-next-section-peek: 96px;
  }

  .home-hero__slide {
    min-height: calc(100svh - var(--hero-next-section-peek));
    height: calc(100svh - var(--hero-next-section-peek));
  }

  .home-hero__content{
    padding-top:
      calc(
        var(--topbar-h,0px)
        + 0px
        + 0px
        + 70px
      );
  }
  .home-hero__chips {
    gap: 8px;
  }
  .chip {
    font-size: 11px;
  }

  .home-hero{
    --hero-next-section-peek: 96px;
    --hero-ui-space: 34px;
    --hero-glass-bottom-gap: 14px;
  }

  .home-hero__ui{
    gap: 0;
    flex-direction: row;
    align-items: center;
    bottom: 10px;
  }

  .home-hero__slide{
    min-height: calc(100svh - var(--hero-next-section-peek));
    height: calc(100svh - var(--hero-next-section-peek));
  }

  .home-hero__content{
    min-height: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: calc(var(--topbar-h, 0px) + 240px) !important;
    padding-bottom: calc(var(--hero-ui-space) + var(--hero-glass-bottom-gap) + 16px) !important;
    gap: 14px;
  }

  .home-hero__left{
    flex: 0 0 auto;
  }

  .home-hero__right{
    width: 100%;
    margin-top: auto;
    margin-bottom: 0;
  }

  .home-hero__glass{
    margin-top: 0;
  }
  
  .container {
    padding: 0;
  }

  .section-title {
    font-size: clamp(24px, 3.2vw, 44px);
  }

}

.home-section.home-services{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 20px 0;
}

@supports not (height: 100svh){
  @media (max-width: 640px){
    .home-hero__slide {
      min-height: calc(100vh - var(--hero-next-section-peek, 96px));
      height: calc(100vh - var(--hero-next-section-peek, 96px));
    }
  }
}