/* ============================================================
   Gunjan Beauty World — Responsive Main Page
   Desktop • Laptop • Tablet • Mobile • Small Phones
   ============================================================ */

:root{
  --ivory:#F4EEE7;
  --paper:#F8F7F5;
  --gold:#CFA57A;
  --gold2:#D5AD84;
  --ink:#111;
  --muted:rgba(102,102,102,.8);
  --espresso:#2A2019;
  --ease:cubic-bezier(.16,1,.3,1);

  --font-display: "Urbanist", sans-serif;
  --font-body:"outfit",sans-serif;

  --container-max:1280px;
  --container-gutter:clamp(16px,3vw,32px);
}

*,
*::before,
*::after{
  box-sizing:border-box;
  margin:0;
  padding:0;
}

html{
  scroll-behavior:smooth;
  overflow-x:hidden;
}

body{
  width:100%;
  min-width:320px;
  font-family:"Urbanist", sans-serif;
  background:var(--ivory);
  color:var(--ink);
  overflow-x:hidden;
}

img,
video{
  max-width:100%;
  display:block;
}

img{
  height:auto;
}

a{
  color:inherit;
}

button,
input,
textarea,
select{
  font:inherit;
}

button{
  -webkit-tap-highlight-color:transparent;
}

.container{
  width:min(var(--container-max),calc(100% - 64px));
  margin-inline:auto;
}

.section{
  position:relative;
  width:100%;
}

.eyebrow{
  font-family:"Urbanist", sans-serif;
  font-size:13px;
  letter-spacing:.22em;
  text-transform:uppercase;
  color:var(--gold);
  font-weight:500;
}

.section-title{
  font-family:"Urbanist", sans-serif;
  font-size: 48px;
  line-height: 56px;
  font-weight:600;
  text-transform:uppercase;
  text-align:center;
  overflow-wrap:anywhere;
}

.section-copy{
  color:var(--muted);
  font-family:"outfit", sans-serif;
  font-weight:300;
  font-size:18px;
  line-height:26px;
  max-width:1280px;
  margin-top: 16px;
}


/* ============================================================
   HERO
   ============================================================ */

.hero{
  min-height:clamp(620px,70vw,972px);
  height:min(100svh,972px);
  position:relative;
  display:grid;
  place-items:center;
  overflow:hidden;
  background:#17110c;
  color:var(--ivory);
}

.hero-media{
  position:absolute;
  inset:0;
}

.hero-media img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center 38%;
}

.hero-scrim{
  position:absolute;
  inset:0;
  background:linear-gradient(
    180deg,
    rgba(15,10,6,.8),
    rgba(15,10,6,.18) 30%,
    rgba(15,10,6,.06) 52%,
    rgba(12,8,5,.72)
  );
  z-index:1;
}

.hero-nav{
  position:absolute;
  z-index:5;
  top:0;
  left:0;
  right:0;

  display:grid;
  grid-template-columns:minmax(0,1fr) auto minmax(0,1fr);
  align-items:center;

  column-gap:clamp(12px,2vw,24px);
  padding:16px clamp(20px,4vw,56px);

  background:linear-gradient(
    180deg,
    rgba(15,10,6,.55),
    rgba(15,10,6,0)
  );

  transition:
    background-color .25s ease,
    padding .25s ease;
}

.hero-logo{
  grid-column:1;
  justify-self:start;
  min-width:0;
}

.hero-nav.scrolled{
  background:rgba(30,22,16,.82);
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
  padding-block:14px;
  position:fixed;
  top:0;
  left:0;
  right:0;
}

.hero-logo img{
  width:auto;
  height:54px;
  max-width:150px;
  object-fit:contain;
}

.hero-links{
  list-style:none;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-wrap:nowrap;
  grid-column:2;
  justify-self:center;
  gap:clamp(10px,1.6vw,22px);
  min-width:0;
}

.hero-links a,
.hero-login{
  font-family: "Urbanist", sans-serif;
  font-size: clamp(14px, 1.1vw, 16px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ivory);
  position: relative
}

.hero-links a::after{
  content:'';
  position:absolute;
  left:0;
  bottom:-7px;
  width:0;
  height:1px;
  background:var(--gold);
  transition:.3s;
}

.hero-links a:hover::after,
.hero-links .active::after{
  width:100%;
}

.hero-right{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:clamp(12px,1.8vw,24px);
  grid-column:3;
  justify-self:end;
  min-width:0;
}

.hero-login{
  font-family: "outfit", sans-serif;
  font-size: 16px;
  font-weight: 400;
  text-transform: capitalize;
  letter-spacing: -2%;
  text-decoration: none;
  color: var(--ivory);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  position: relative;
  padding-bottom: 0px;
  white-space: nowrap;
}

.hero-login::after{
  content:'';
  position:absolute;
  left:0;
  bottom:0;
  width:0;
  height:1px;
  background:#E4C793;
  transition:width .3s var(--ease);
}

.hero-login:hover::after{
  width:100%;
}

.hero-login .login-icon{
  font-size:16px;
  line-height:1;
  display:inline-block;
  transition:transform .3s var(--ease),color .3s var(--ease);
}

.hero-login:hover .login-icon{
  transform:translate(2px,-2px);
  color:#E4C793;
}

.hero-login:hover{
  color:#E4C793;
}

.hero-cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 24px;
  border-radius:10px;
  background:var(--gold);
  color:#F8F7F5;
  text-decoration:none;
  font-family:"outfit", sans-serif;
  font-size:17px;
  font-weight:300;
  letter-spacing:-1%;
  text-transform:none;
  
  transition:
   background-color .25s var(--ease),
   transform .25s var(--ease),
   box-shadow .25s var(--ease);
}

.hero-main-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 24px;
  border-radius:10px;
  background:var(--gold);
  color:#F8F7F5;
  text-decoration:none;
  font-family:"outfit", sans-serif;
  font-size:17px;
  font-weight:300;
  letter-spacing:-1%;
  text-transform:none;

  transition:
    background-color .25s var(--ease),
    transform .25s var(--ease),
    box-shadow .25s var(--ease);
}

.hero-cta:hover,
.hero-main-btn:hover{
  background-color:var(--gold2);
  transform:translateY(-2px);
  box-shadow:0 8px 18px rgba(0,0,0,.25);
}

.hero-cta:active,
.hero-main-btn:active{
  transform:translateY(0);
  box-shadow:none;
}

.hero-toggle{
  display:none;
  border:0;
  background:rgba(0,0,0,.2);
  border-radius:8px;
  padding:9px;
  gap:5px;
  flex-direction:column;
  cursor:pointer;
}

.hero-toggle span{
  width:23px;
  height:1px;
  background:var(--ivory);
}

.hero-menu{
  display:none;
}

.hero-content{
  position:relative;
  z-index:3;
  text-align:center;
  width:min(850px,calc(100% - 48px));
  margin-top:90px;
  margin-inline:auto;
}

.hero-eyebrow{
  font-family:"Urbanist", sans-serif;
  font-size:clamp(13px,1.5vw,16px);
  letter-spacing:.32em;
  color:#E4C793;
  text-transform:uppercase;
  margin-bottom:20px;
}

.hero h1{
  font-family:"Urbanist", sans-serif;
  font-size: 72px;
  line-height: 80px;
  letter-spacing: -2%;
  font-weight: 600;
  text-transform:uppercase;
  text-shadow:0 3px 24px rgba(0,0,0,.3);
  overflow-wrap:anywhere;
}

.hero-actions{
  display:flex;
  justify-content:center;
  align-items:center;
  flex-wrap:wrap;
  gap:16px;
  margin-top:24px;
}

.hero-work-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  background:#fff;
  color:#111111;
  border-radius:10px;
  padding:12px 24px;
  text-decoration:none;
  letter-spacing:-1%;
  font-family:"outfit", sans-serif;
  font-size:17px;
  font-weight:300;

  transition:
    background-color .25s var(--ease),
    color .25s var(--ease),
    transform .25s var(--ease),
    box-shadow .25s var(--ease);
}

.hero-work-btn:hover{
  background-color:var(--paper);
  color:#CFA57A;
  transform:translateY(-2px);
  box-shadow:0 8px 18px rgba(0,0,0,.18);
}

.hero-work-btn:active{
  transform:translateY(0);
  box-shadow:none;
}

.hero-main-btn .btn-icon,
.hero-work-btn .btn-icon{
  display:inline-flex;
  align-items:center;
}

.icon-calendar,
.icon-arrow,
.icon-chevron{
  display:inline-block;
  background-color:currentColor;
  -webkit-mask-repeat:no-repeat;
  mask-repeat:no-repeat;
  -webkit-mask-position:center;
  mask-position:center;
  -webkit-mask-size:contain;
  mask-size:contain;
  flex:none;
}

.icon-calendar{
  width:15px;
  height:16px;
  -webkit-mask-image:url('../icons/calendar-icon.png');
  mask-image:url('../icons/calendar-icon.png');
}

.icon-arrow{
  width:16px;
  height:13px;
  -webkit-mask-image:url('../icons/arrow-icon.png');
  mask-image:url('../icons/arrow-icon.png');
}

.icon-chevron{
  width:9px;
  height:15px;
  -webkit-mask-image:url('../icons/chevron-icon.png');
  mask-image:url('../icons/chevron-icon.png');
}

.icon-chevron-prev{
  transform:scaleX(-1);
}

.carousel-nav .icon-chevron{
  width:8px;
  height:13px;
}


/* ============================================================
   BRIDAL
   ============================================================ */

.bridal{
  padding:clamp(80px,9vw,100px) 0;
  background:var(--ivory);
}

.bridal-heading{
  text-align:center;
  max-width:900px;
  margin:0 auto clamp(30px,4vw,48px);
}

.bridal-heading .section-copy{
  margin:16px auto 0;
}

.bridal-media{
  position:relative;
  border-radius:24px;
  overflow:hidden;
  aspect-ratio:1920/1080;
}

.bridal-media img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.play-ring{
  position:absolute;
  inset:50% auto auto 50%;
  transform:translate(-50%,-50%);

  width:92px;
  height:92px;

  border:1px solid var(--gold);
  border-radius:50%;

  display:grid;
  place-items:center;

  background:transparent;
  cursor:pointer;
  z-index:2;

  transition:transform .35s var(--ease);
}

.play-ring::before{
  content:'';
  position:absolute;

  width:76px;
  height:76px;

  border-radius:50%;

  background:var(--gold);

  transition:transform .35s ease,box-shadow .35s ease;
}

.play-ring::after{
  content:'';
  position:absolute;

  width:0;
  height:0;

  border-top:10px solid transparent;
  border-bottom:10px solid transparent;
  border-left:15px solid #111;

  margin-left:4px;

  transition:transform .35s ease;
}

.play-ring:hover{
  transform:translate(-50%,-50%) scale(1.06);
}

.play-ring:hover::before{
  box-shadow:0 0 0 10px rgba(207,165,122,.16);
}


/* ============================================================
   SERVICES
   ============================================================ */

.services{
  background:var(--paper);
  padding:clamp(80px,8vw,100px) 0;
}

.services-head{
  text-align:center;
  max-width:1280px;
  margin:0 auto 55px;
}

.services-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:20px;
}

.service-card{
  min-width:0;

  background:rgba(207,165,122,.20);
  border:1px solid rgba(207,165,122,.2);
  border-radius:18px;

  padding:11px;

  display:flex;
  flex-direction:column;

  transition:
    transform .6s var(--ease),
    box-shadow .6s var(--ease);
}

.service-card:hover{
  transform:translateY(-9px);
  box-shadow:0 24px 55px rgba(42,31,20,.14);
}

.service-media{
  position:relative;
  width:100%;
  aspect-ratio:369/246;
  border-radius:10px;
  overflow:hidden;
}

.service-media img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform 1s var(--ease);
}

.service-card:hover .service-media img{
  transform:scale(1.06);
}

.badges{
  position:absolute;
  inset:12px 12px auto;

  display:flex;
  justify-content:space-between;
  align-items:center;

  gap:8px;
}

.badge{
  font-family:"outfit", sans-serif;;
  font-weight:600;
  font-size:10px;
  letter-spacing:.08em;
  padding:5px 8px;
  border-radius:6px;
  text-transform:uppercase;
}

.badge.cat{
  background:var(--gold);
  color:var(--ivory);
}

.badge.pop{
  background:var(--ivory);
  color:#111;
}

.badge.dur{
  background:rgba(248,247,245,.78);
  backdrop-filter:blur(5px);
  -webkit-backdrop-filter:blur(5px);
  color:#111;
}

.service-meta{
  display:flex;
  justify-content:space-between;
  gap:15px;
  align-items:flex-start;
  padding:16px 0 10px;
}

.service-title{
  font-family:"Urbanist", sans-serif;
  font-size:clamp(17px,1.6vw,20px);
  font-weight:600;
  margin-bottom:4px;
  overflow-wrap:anywhere;
}

.price{
  font-family:"outfit", sans-serif;
  color:var(--gold);
  font-size:16px;
  font-weight:600;
  white-space:nowrap;
}

.old-price{
  font-family:"outfit", sans-serif;
  font-size:10px;
  color:var(--muted);
  text-decoration:line-through;
  margin-right:5px;
}

.service-desc{
  font-family:"outfit", sans-serif;
  font-weight:300;
  color:var(--muted);
  font-size:14px;
  line-height:1.4;
  margin-bottom:6px;
}

.service-book{
  width:100%;
  margin-top:auto;

  border:0;
  background:var(--gold);
  color:var(--ivory);

  padding:12px;
  border-radius:12px;

  cursor:pointer;

  transition:.3s;

  font-family:"outfit", sans-serif;
  font-weight:400;
  letter-spacing:-2%;
}

.service-book:hover{
  background:#b8895c;
  transform:translateY(-2px);
}

.services-viewall{
  text-align:center;
  margin-top:40px;
}


/* ============================================================
   OFFERS
   ============================================================ */

.offers-teaser{
  background:var(--ivory);
  padding:clamp(80px,8vw,100px) 0;
}

.offers-teaser-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:24px;
}

.offer-teaser-card{
  min-width:0;

  background:rgba(207,165,122,.10);
  border:1px solid rgba(207,165,122,.2);
  border-radius:18px;

  padding:11px;

  transition:
    transform .6s var(--ease),
    box-shadow .6s var(--ease);
}

.offer-teaser-card:hover{
  transform:translateY(-9px);
  box-shadow:0 24px 55px rgba(42,31,20,.14);
}

.offer-teaser-media{
  position:relative;
  aspect-ratio:599/319;
  border-radius:12px;
  overflow:hidden;
}

.offer-teaser-media img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform 1s var(--ease);
}

.offer-teaser-card:hover .offer-teaser-media img{
  transform:scale(1.06);
}

.offer-teaser-meta{
  padding:16px 6px 6px;
}

.offer-teaser-expiry{
  display:block;
  margin-top:12px;
  font-size:13px;
  color:var(--muted);
}


/* ============================================================
   EXPERIENCE
   ============================================================ */

.experience{
  padding:clamp(80px,8vw,100px) 0;
  background:var(--ivory);
}

.experience-head{
  max-width:1280px;
  margin:0 auto 48px;
  text-align:center;
}

.feature-grid{
  display:grid;
  grid-template-columns:minmax(0,1.3fr) minmax(0,.95fr);
  gap:20px;
}

.feature-card{
  min-height:330px;

  border-radius:24px;
  padding:clamp(24px,3vw,34px);

  display:flex;
  flex-direction:column;
  justify-content:flex-end;

  transition:transform .6s var(--ease);
}

.feature-card:hover{
  transform:translateY(-8px);
}

.feature-card.light{
  background:#F8F7F5;
}

.feature-card.dark{
  background:#cfa57a;
  color:var(--ivory);
}

.feature-card:nth-child(3){
  grid-column:2;
}

.feature-card:nth-child(4){
  grid-column:1;
  grid-row:2;
}

.feature-card h3{
  font-family:"Urbanist", sans-serif;
  font-size:clamp(25px,2.5vw,32px);
  font-weight:600;
  margin-bottom:8px;
  letter-spacing:-1%;
  overflow-wrap:anywhere;
}

.feature-card p{
  max-width:450px;
  color:#666666cc;
  font-size:clamp(14px,1.3vw,16px);
  line-height:1.45;
  font-family:"outfit", sans-serif;
  font-weight:300;
}

.feature-card.dark p{
  color:#F8F7F5cc;
}


/* ============================================================
   GALLERY
   ============================================================ */

.gallery{
  padding:clamp(80px,8vw,100px) 0;
  background:var(--ivory);
}

.carousel-viewport{
  position:relative;
  overflow:hidden;

  border-radius:clamp(18px,2.5vw,32px);

  background:#111;

  width:100%;
  aspect-ratio:1920/1080;
}

.carousel-slider{
  position:relative;
  width:100%;
  height:100%;
  overflow:hidden;
}

.carousel-main-img{
  position:absolute;
  top:0;
  left:0;

  width:100%;
  height:100%;

  object-fit:cover;
  display:block;

  will-change:transform,opacity;
}

.carousel-main-img.centered{
  transform:translateX(0);
  opacity:1;
  z-index:2;
}

.carousel-main-img.enter-left{
  transform:translateX(-100%);
  opacity:0;
  z-index:3;
  animation:slideInFromLeft .8s cubic-bezier(.25,.46,.45,.94) forwards;
}

.carousel-main-img.exit-right{
  transform:translateX(0);
  opacity:1;
  z-index:1;
  animation:slideOutToRight .8s cubic-bezier(.55,.085,.68,.53) forwards;
}

.carousel-main-img.enter-right{
  transform:translateX(100%);
  opacity:0;
  z-index:3;
  animation:slideInFromRight .8s cubic-bezier(.25,.46,.45,.94) forwards;
}

.carousel-main-img.exit-left{
  transform:translateX(0);
  opacity:1;
  z-index:1;
  animation:slideOutToLeft .8s cubic-bezier(.55,.085,.68,.53) forwards;
}

@keyframes slideInFromLeft{
  0%{transform:translateX(-100%);opacity:0}
  100%{transform:translateX(0);opacity:1}
}

@keyframes slideOutToRight{
  0%{transform:translateX(0);opacity:1}
  100%{transform:translateX(100%);opacity:0}
}

@keyframes slideInFromRight{
  0%{transform:translateX(100%);opacity:0}
  100%{transform:translateX(0);opacity:1}
}

@keyframes slideOutToLeft{
  0%{transform:translateX(0);opacity:1}
  100%{transform:translateX(-100%);opacity:0}
}

.carousel-nav{
  position:absolute;
  top:50%;
  transform:translateY(-50%);

  width:52px;
  height:52px;

  border-radius:9999px;
  border:none;

  background:rgba(248,247,245,.85);
  color:#111;

  font-size:18px;

  display:flex;
  align-items:center;
  justify-content:center;

  cursor:pointer;
  z-index:10;

  transition:
    all .4s cubic-bezier(.16,1,.3,1);

  opacity:0;
}

.carousel-viewport:hover .carousel-nav{
  opacity:1;
}

.carousel-nav:hover{
  background:var(--gold);
  color:var(--ivory);
  transform:translateY(-50%) scale(1.1);
  box-shadow:0 8px 30px rgba(207,165,122,.4);
}

.carousel-nav:active{
  transform:translateY(-50%) scale(.92);
}

.carousel-nav.prev{
  left:24px;
}

.carousel-nav.next{
  right:24px;
}

.carousel-thumbs{
  position:absolute;
  left:50%;
  bottom:clamp(14px,2.4vw,28px);

  transform:translateX(-50%);

  display:flex;
  justify-content:center;
  gap:clamp(5px,.7vw,10px);

  z-index:10;

  width:max-content;
  max-width:calc(100% - 48px);

  overflow-x:auto;
  scrollbar-width:none;
}

.carousel-thumbs::-webkit-scrollbar{
  display:none;
}

.carousel-thumb{
  flex:0 0 auto;

  width:clamp(70px,10vw,156px);
  height:clamp(48px,6.7vw,104px);

  cursor:pointer;
  object-fit:cover;

  outline:2.5px solid rgba(248,247,245,.55);
  outline-offset:-2.5px;

  border-radius:clamp(7px,.85vw,10px);

  transition:all .4s cubic-bezier(.16,1,.3,1);

  filter:brightness(.72);

  box-shadow:0 8px 22px rgba(0,0,0,.28);
}

.carousel-thumb:hover{
  transform:translateY(-1px);
  filter:brightness(1);
}

.carousel-thumb.active{
  outline-color:var(--gold);
  filter:brightness(1);
  box-shadow:0 10px 26px rgba(0,0,0,.35);
  transform:scale(1.01);
}

.carousel-progress{
  position:absolute;
  bottom:0;
  left:0;

  height:2px;

  background:var(--gold);

  z-index:10;

  width:0%;

  transition:none;
}

.carousel-progress.animating{
  animation:progressBar 5s linear forwards;
}

@keyframes progressBar{
  0%{width:0%}
  100%{width:100%}
}


/* ============================================================
   ABOUT
   ============================================================ */

.about{
  background:var(--paper);
  padding:clamp(80px,8vw,100px) 0;
}

.about-grid{
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(0,1fr);
  gap:clamp(35px,5.5vw,70px);
  align-items:center;
}

.about-copy{
  min-width:0;
}

.about-copy h2{
  margin:12px 0 22px;
  text-align:left;
  line-height:1.1;
}

.about-copy p{
  font-family:"outfit", sans-serif;
  font-weight:300;
  font-size:clamp(16px,1.5vw,18px);
  line-height:1.55;
  color:var(--muted);
  text-align:left;
}

.about-image{
  position:relative;
  border-radius:24px;
  overflow:hidden;
}

.about-image img{
  width:100%;
  aspect-ratio:615/410;
  object-fit:cover;
}

.about-image span{
  position:absolute;
  left:50%;
  bottom:22px;

  transform:translateX(-50%);

  color:#fff;

  font-size:12px;
  letter-spacing:.12em;

  text-transform:uppercase;

  white-space:nowrap;

  max-width:90%;
  overflow:hidden;
  text-overflow:ellipsis;
}


/* ============================================================
   REEL LIGHTBOX
   ============================================================ */

.reel-lightbox{
  position:fixed;
  inset:0;

  z-index:1000;

  display:none;

  align-items:center;
  justify-content:center;

  padding:16px;
}

.reel-lightbox.is-open{
  display:flex;
}

.reel-lightbox__backdrop{
  position:absolute;
  inset:0;
  background:rgba(20,18,15,.8);
}

.reel-lightbox__panel{
  position:relative;
  z-index:1;

  width:min(920px,100%);
  max-height:80vh;

  background:var(--ivory);

  border-radius:16px;

  overflow:hidden;

  box-shadow:0 30px 80px rgba(0,0,0,.45);

  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(0,1fr);
}

.reel-lightbox__media{
  min-width:0;
  background:#000;
  display:flex;
  align-items:center;
}

.reel-lightbox__media video{
  width:100%;
  height:100%;
  max-height:80vh;
  object-fit:cover;
  display:block;
  background:#000;
}

.reel-lightbox__info{
  min-width:0;

  display:flex;
  flex-direction:column;

  padding:clamp(18px,3vw,26px);

  overflow-y:auto;

  background:rgba(244,238,231,1);
}

.reel-lightbox__account{
  display:flex;
  align-items:center;
  gap:10px;

  padding-bottom:14px;

  border-bottom:1px solid var(--ig-border,rgba(0,0,0,.08));

  margin-bottom:14px;

  min-width:0;
}

.reel-lightbox__avatar{
  width:36px;
  height:36px;

  border-radius:50%;

  object-fit:cover;

  flex-shrink:0;

  background:var(--gold);
  display:block;
}

.reel-lightbox__username{
  margin:0;

  font-weight:600;
  font-size:14px;

  font-family:"outfit", sans-serif;
  color:var(--ink);

  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
}

.reel-lightbox__caption{
  font-family:"outfit", sans-serif;
  font-size:14px;
  line-height:1.6;
  color:var(--ink);

  white-space:pre-wrap;

  flex:1;

  overflow-wrap:anywhere;
}

.reel-lightbox__footer{
  display:flex;
  align-items:center;
  justify-content:space-between;

  gap:12px;

  padding-top:16px;
  margin-top:16px;

  border-top:1px solid rgba(0,0,0,.08);

  font-size:14px;
  color:var(--muted);
}

.reel-lightbox__ig-link{
  color:#fff;
  background:var(--gold);

  font-weight:400;
  font-family:"outfit", sans-serif;

  text-decoration:none;

  padding:8px 16px;

  border-radius:999px;

  white-space:nowrap;

  transition:
    background-color .2s var(--ease),
    transform .2s var(--ease);
}

.reel-lightbox__ig-link:hover{
  background:var(--gold2);
  transform:translateY(-1px);
}

.reel-lightbox__close,
.reel-lightbox__navbtn{
  position:absolute;
  z-index:2;

  border:0;

  background:rgba(255,255,255,.95);
  color:#111;

  border-radius:50%;

  width:40px;
  height:40px;

  font-size:20px;
  line-height:1;

  cursor:pointer;

  display:flex;
  align-items:center;
  justify-content:center;

  transition:
    background-color .2s ease,
    transform .2s ease;
}

.reel-lightbox__close:hover,
.reel-lightbox__navbtn:hover{
  background:#fff;
  transform:scale(1.06);
}

.reel-lightbox__close{
  top:10px;
  right:10px;
}

.reel-lightbox__navbtn--prev{
  left:10px;
  top:50%;
  transform:translateY(-50%);
}

.reel-lightbox__navbtn--next{
  right:10px;
  top:50%;
  transform:translateY(-50%);
}

.reel-lightbox__navbtn:disabled{
  opacity:.3;
  cursor:default;
}

.reel-lightbox__navbtn:hover:disabled{
  transform:translateY(-50%);
  background:rgba(255,255,255,.95);
}


/* ============================================================
   FOLLOW / REELS
   ============================================================ */

.follow{
  padding:clamp(80px,8vw,100px) 0;
  background:var(--ivory);
}

.follow h2{
  text-align:center;
  margin-bottom:50px;
}

.follow-carousel{
  position:relative;
}

.follow-grid{
  display:flex;

  gap:20px;

  overflow-x:auto;

  scroll-snap-type:x mandatory;
  scroll-behavior:smooth;

  -ms-overflow-style:none;
  scrollbar-width:none;

  padding:2px;
}

.follow-grid::-webkit-scrollbar{
  display:none;
}

.follow-nav{
  position:absolute;
  top:50%;

  transform:translateY(-50%);

  z-index:3;

  width:40px;
  height:40px;

  border-radius:50%;
  border:0;

  background:#fff;
  color:#111;

  box-shadow:0 8px 24px rgba(0,0,0,.18);

  font-size:24px;
  line-height:1;

  cursor:pointer;

  display:flex;
  align-items:center;
  justify-content:center;

  transition:
    background-color .2s ease,
    color .2s ease,
    transform .2s ease,
    opacity .2s ease;
}

.follow-nav:hover{
  background:var(--gold);
  color:#fff;
}

.follow-nav:disabled{
  opacity:.35;
  cursor:default;
  pointer-events:none;
}

.follow-nav--prev{
  left:-6px;
}

.follow-nav--next{
  right:-6px;
}

.follow-box{
  flex:0 0 calc((100% - 60px)/4);

  min-width:0;

  scroll-snap-align:start;

  aspect-ratio:295/400;

  border-radius:24px;

  transition:transform .6s var(--ease);

  position:relative;
  overflow:hidden;
}

.follow-box:hover{
  transform:translateY(-2px) scale(1.02);
}

.follow-box .reel-video{
  width:100%;
  height:100%;

  border:none;

  display:block;

  object-fit:cover;

  border-radius:24px;

  cursor:pointer;
}

.follow-box .play-icon-overlay{
  position:absolute;

  top:50%;
  left:50%;

  transform:translate(-50%,-50%);

  width:50px;
  height:50px;

  background:rgba(255,255,255,.9);

  border-radius:50%;

  display:flex;
  align-items:center;
  justify-content:center;

  opacity:.8;

  transition:all .4s ease;

  border:0;
  padding:0;

  cursor:pointer;

  z-index:2;
}

.follow-box:hover .play-icon-overlay,
.follow-box .play-icon-overlay:focus-visible{
  opacity:1;
  transform:translate(-50%,-50%) scale(1.1);
  background:#fff;
}

.follow-box .play-icon-overlay::after{
  content:'';

  width:0;
  height:0;

  border-top:10px solid transparent;
  border-bottom:10px solid transparent;
  border-left:16px solid #111;

  margin-left:4px;

  transition:opacity .2s ease;
}

.follow-box.is-playing .play-icon-overlay{
  opacity:0;
  background:rgba(255,255,255,.85);
}

.follow-box.is-playing:hover .play-icon-overlay{
  opacity:1;
}

.follow-box.is-playing .play-icon-overlay::after{
  border-top:0;
  border-bottom:0;
  border-left:0;

  width:14px;
  height:16px;

  margin-left:0;

  background-image:
    linear-gradient(#111,#111),
    linear-gradient(#111,#111);

  background-repeat:no-repeat;

  background-size:4px 16px;

  background-position:left center,right center;
}


/* ============================================================
   FOOTER
   ============================================================ */

.footer{
  background:#D1A77D;
  color:var(--ivory);
  padding:clamp(56px,6vw,72px) 0 30px;
}

.footer-top{
  display:flex;

  justify-content:space-between;
  align-items:flex-start;

  flex-wrap:wrap;

  gap:40px;

  padding-bottom:48px;
}

.footer-brand{
  flex:0 1 300px;
  min-width:0;
}

.footer-links{
  display:flex;
  justify-content:flex-end;
  flex:1;
  flex-wrap:wrap;

  gap:clamp(25px,4vw,55px);

  min-width:0;
}

.footer-col{
  min-width:130px;
}

.footer-contact{
  max-width:230px;
}

.footer-brand img{
  width:120px;
  height:auto;
  filter:none;
}

.footer-brand p{
  font-family:"Urbanist", sans-serif;
  font-weight:600;

  margin-top:12px;

  font-size:16px;
  line-height:22px;

  max-width:250px;

  color:rgba(244,238,231,.9);
}

.footer-socials{
  display:flex;
  gap:8px;
  margin-top:48px;
}

.footer-socials a{
  text-decoration:none;

  background-color:rgba(244,238,231,.2);

  padding:12px;

  border-radius:12px;
}

.footer-socials img{
  width:20px;
  height:auto;
}

.footer-col h4{
  font-family:"Urbanist", sans-serif;
  font-size:18px;
  font-weight:600;
  margin-bottom:12px;
}

.footer-col a{
  font-family:"outfit", sans-serif;
  font-weight:400;

  display:block;

  text-decoration:none;

  font-size:16px;
  line-height:28px;

  color:rgba(244,238,231,.9);

  transition:
    transform .3s,
    color .3s;
}

.footer-col a:hover{
  transform:translateX(5px);
  color:#fff;
}

.footer-contact p{
  font-family:"outfit", sans-serif;
  font-size:16px;
  line-height:28px;
  margin-bottom:6px;
}

.footer-divider{
  height:1px;
  background:rgba(244,238,231,.2);
}

.footer-bottom{
  display:flex;

  justify-content:space-between;
  align-items:center;

  gap:20px;

  padding-top:22px;

  font-family:"outfit", sans-serif;
  font-size:16px;
}

.back-top{
  border:0;
  background:none;

  color:var(--ivory);

  cursor:pointer;

  font:inherit;

  display:flex;

  gap:8px;

  align-items:center;

  transition:transform .25s ease;
}

.back-top:hover{
  transform:translateY(-2px);
}


/* ============================================================
   LARGE LAPTOP / DESKTOP
   1200px – 1400px
   ============================================================ */

@media (max-width:1200px){

  .hero-nav{
    padding-inline:30px;
  }

  .hero-links{
    gap:14px;
  }

  .hero-right{
    gap:14px;
  }

  .hero-cta{
    padding-inline: 18px;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0px;
}
  
  .hero h1{
  font-size: 64px;
  line-height: 72px;
  letter-spacing: -2%;
  }

  .section-title {
  font-size: 48px;
  }
  
  .section-copy {
  margin: 14px auto 0;
  }
  
  .about-grid{
    gap:45px;
  }

  .feature-card{
    min-height:310px;
  }
}


/* ============================================================
   TABLET LANDSCAPE
   1001px – 1199px
   ============================================================ */

@media (max-width:1000px){

  .hero-links,
  .hero-right{
    display:none;
  }

  .hero-nav{
    display:flex;
    justify-content:space-between;
    align-items:center;

    padding-inline:clamp(20px,4vw,40px);
  }

  .hero-logo{
    order:1;
  }

  .hero-toggle{
    order:2;
    display:flex;
  }

  body.menu-open{overflow:hidden}
  body.menu-open::before{content:'';position:fixed;inset:0;background:rgba(15,10,6,.55);z-index:7;animation:gbwFadeIn .3s ease}
  @keyframes gbwFadeIn{from{opacity:0}to{opacity:1}}

  .hero-menu{
    position:fixed;
    top:0;right:0;bottom:0;

    z-index:8;

    width:min(320px,82vw);

    background:#2A2019;

    display:flex;

    flex-direction:column;

    align-items:flex-start;
    justify-content:flex-start;

    gap:6px;

    padding:88px 32px 32px;

    overflow-y:auto;

    box-shadow:-16px 0 48px rgba(0,0,0,.35);

    transform:translateX(100%);

    transition:transform .4s var(--ease);
  }

  .hero-menu.open{
    transform:none;
  }

  .hero-menu a{
    color:var(--ivory);

    text-decoration:none;

    font-family:"Urbanist", sans-serif;

    font-size:22px;

    width:100%;

    padding:10px 0;

    border-bottom:1px solid rgba(244,238,231,.1);
  }

  .hero-menu a.hero-cta{
    border-bottom:0;
    margin-top:14px;
    text-align:center;
    width:100%;
  }

  .hero-menu .close{
    position:absolute;

    top:22px;
    right:24px;

    background:none;
    border:0;

    color:var(--ivory);

    font-size:34px;

    cursor:pointer;
  }
  
  .section-title {
  font-size: 40px;
  line-height: 48px;
  }
  
  .section-copy {
    font-size:17px;
    line-height: 24px;
    margin: 12px auto 0;
  }

  .services-grid{
    grid-template-columns:repeat(3,minmax(0,1fr));
  }

  .feature-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }

  .about-grid{
    gap:40px;
  }

  .follow-box{
    flex:0 0 calc((100% - 20px)/2);
  }

  .footer-links{
    display:flex;
    justify-content:flex-start;
    flex:1;
    flex-wrap:nowrap;
    gap:24px;
  }

  .footer-contact{
    flex-basis:100%;
    max-width:none;
  }
}


/* ============================================================
   TABLET PORTRAIT / LARGE MOBILE
   768px – 900px
   ============================================================ */

@media (max-width:900px){

  .hero-content{
    width:min(760px,calc(100% - 60px));
  }

  .hero h1{
    font-size:clamp(42px,7vw,60px);
    line-height:64px;
  }
  
  .services-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .about-grid{
    grid-template-columns:1fr;
    gap:35px;
  }

  .about-copy h2,
  .about-copy p{
    text-align:center;
  }

  .about-copy p{
    max-width:700px;
    margin-inline:auto;
  }

  .about-image{
    max-width:760px;
    width:100%;
    margin-inline:auto;
  }

  .reel-lightbox__panel{
    width:min(760px,100%);
  }
  .footer-col {
    min-width: 90px;
  }
}


/* ============================================================
   MOBILE
   481px – 767px
   ============================================================ */

@media (max-width:680px){

  .container{
    width:calc(100% - 48px);
  }

  .section-title{
    font-size: 32px;
    line-height: 40px;
  }

  .section-copy{
    font-size:15px;
    line-height:22px;
    margin: 08px auto 0;
  }

  /* HERO */
  .hero{
    min-height:620px;
    height:100svh;
    max-height:820px;
  }

  .hero-nav{
    padding:18px 16px;
  }

  .hero-nav.scrolled{
    padding-block:13px;
  }

  .hero-logo img{
    height:43px;
    max-width:120px;
  }

  .hero-toggle{
    padding:9px;
  }

  .hero-content{
    width:calc(100% - 32px);
    margin-top:55px;
  }

  .hero-eyebrow{
    font-size:12px;
    letter-spacing:.22em;
    margin-bottom:15px;
  }

  .hero h1{
    font-size:clamp(38px,11vw,54px);
    line-height:58px;
  }

  .hero-actions{
    display: flex;
    flex-wrap:nowrap;
    flex-direction:row;
    gap:12px;
    margin-top:28px;
  }

  .hero-main-btn{
    max-width:240px;
    padding:12px 16px;
    font-size:14px;
  }
  .hero-work-btn{
    max-width:150px;
    padding:12px 16px;
    font-size:14px;
}

  /* BRIDAL */
  .bridal{
    padding:60px 0;
  }

  .bridal-heading{
    margin-bottom:24px;
  }

  .bridal-media{
    border-radius:18px;
  }

  .play-ring{
    width:76px;
    height:76px;
  }

  .play-ring::before{
    width:62px;
    height:62px;
  }

  /* SERVICES */
  .services{
    padding:60px 0;
  }

  .services-head{
    margin-bottom:35px;
  }
  
  .services-grid{
    grid-template-columns:1fr;
    gap:14px;
  }

  .service-card{
    padding:10px;
  }

  .service-meta{
    gap:10px;
    padding:13px 0 9px;
  }

  .service-title{
    font-size:18px;
  }

  .service-desc{
    font-size:13px;
  }

  .service-book{
    min-height:44px;
  }

  /* OFFERS */
  .offers-teaser{
    padding:60px 0;
  }

  .offers-teaser-grid{
    grid-template-columns:1fr;
    gap:14px;
  }

  /* EXPERIENCE */
  .experience{
    padding:60px 0;
  }

  .experience-head{
    margin-bottom:35px;
  }

  .feature-grid{
    grid-template-columns:1fr;
    gap:14px;
  }

  .feature-card,
  .feature-card:nth-child(3),
  .feature-card:nth-child(4){
    grid-column:auto;
    grid-row:auto;
    min-height:270px;
  }

  .feature-card{
    padding:24px;
    border-radius:18px;
  }

  /* GALLERY */
  .gallery{
    padding:60px 0;
  }

  .carousel-viewport{
    aspect-ratio:4/3;
    border-radius:18px;
  }

  .carousel-nav{
    opacity:1;
    width:44px;
    height:44px;
  }

  .carousel-nav.prev{
    left:10px;
  }

  .carousel-nav.next{
    right:10px;
  }

  .carousel-thumbs{
    max-width:calc(100% - 80px);
    bottom:12px;
    gap:6px;
  }

  .carousel-thumb{
    width:72px;
    height:50px;
    border-radius:7px;
  }

  /* ABOUT */
  .about{
    padding:60px 0;
  }

  .about-grid{
    grid-template-columns:1fr;
    gap:30px;
  }

  .about-copy h2{
    text-align:left;
    font-size:32px;
    line-height:36px;
    margin:0 0 12px;
  }

  .about-copy p{
    text-align:left;
    font-size:15px;
    line-height:21px;
  }

  .about-image{
    border-radius:18px;
  }

  /* REEL LIGHTBOX */
  .reel-lightbox{
    padding:0;
  }

  .reel-lightbox__panel{
    width:100%;
    height:100%;
    max-height:100svh;

    grid-template-columns:1fr;
    border-radius:0;
    overflow-y:auto;
  }

  .reel-lightbox__media{
    min-height:0;
  }

  .reel-lightbox__media video{
    width:100%;
    height:100%;
    max-height:none;
    object-fit:cover;
  }

  .reel-lightbox__info{
    min-height:0;
    padding:18px;
  }

  .reel-lightbox__footer{
    flex-wrap:wrap;
  }

  .reel-lightbox__ig-link{
    margin-left:auto;
  }

  .reel-lightbox__navbtn--prev,
  .reel-lightbox__navbtn--next{
    top:44%;
  }

  /* FOLLOW */
  .follow{
    padding:60px 0;
  }

  .follow h2{
    margin-bottom:30px;
  }

  .follow-grid{
    gap:12px;
    padding:2px 0;
  }

  .follow-box{
    flex:0 0 calc((100% - 12px)/2);
    border-radius:18px;
  }

  .follow-box .reel-video{
    border-radius:18px;
  }

  .follow-nav{
    width:36px;
    height:36px;
    font-size:20px;
  }

  .follow-nav--prev{
    left:4px;
  }

  .follow-nav--next{
    right:4px;
  }

  /* FOOTER */
  .footer{
    padding-top:56px;
  }

  .footer-top{
    flex-direction:column;
    gap:35px;
    padding-bottom: 32px;
  }

  .footer-brand{
    flex-basis:auto;
  }

  .footer-links{
    width:100%;
    justify-content:flex-start;
    gap:28px;
  }

  .footer-contact{
    flex-basis:100%;
    max-width:none;
  }

  .footer-socials{
    margin-top:30px;
  }
  
  .footer-col {
    min-width: 120px;
    }
  
  .footer-bottom {
    align-items: flex-start;
    flex-direction:row;
    gap: 12px;
    font-size: 14px;
    padding-top: 24px;
  }
  
  .back-top{
    min-height:14px;
  }
}


/* ============================================================
   SMALL PHONE
   381px – 480px
   ============================================================ */

@media (max-width:480px){

  .hero{
    min-height:600px;
  }

  .hero h1{
    font-size: 44px;
    line-height:50px;
  }

  .hero-content{
    width:calc(100% - 28px);
  }

 .hero-main-btn{
    max-width:240px;
    padding:12px 16px;
    font-size:14px;
  }
  .hero-work-btn{
    max-width:190px;
    padding:12px 16px;
    font-size:14px;
  }

  .section-title{
    font-size:clamp(28px,8.8vw,24px);
    line-height: 36px;
  }

  .service-card{
    border-radius:14px;
  }

  .badges{
    inset:9px 9px auto;
  }

  .badge{
    font-size:9px;
    padding:4px 6px;
  }

  .service-title{
    font-size:16px;
  }

  .price{
    font-size:14px;
  }

  .feature-card{
    min-height:250px;
    padding:20px;
  }

  .feature-card h3{
    font-size:24px;
  }

  .carousel-viewport{
    aspect-ratio:1/1;
  }

  .carousel-nav{
    width:40px;
    height:40px;
  }

  .carousel-thumbs{
    max-width:calc(100% - 70px);
  }

  .carousel-thumb{
    width:62px;
    height:44px;
  }

  .about-image span{
    font-size:9px;
    bottom:14px;
  }
  
    .about-copy h2 {
    font-size: 28px;
    line-height: 36px
    }

  .follow-box{
    flex:0 0 50%;
  }

  .reel-lightbox__panel{
    grid-template-rows:minmax(0,70svh) minmax(0,1fr);
  }

  /*.reel-lightbox__footer{*/
  /*  align-items:flex-start;*/
  /*  flex-direction:column;*/
  /*}*/

  .reel-lightbox__ig-link{
    margin-left:0;
  }

  .footer-links{
    flex-direction:column;
    gap:24px;
  }

  .footer-col{
    min-width:0;
}
 .footer-brand p{
    font-size: 15px;
    line-height: 21px;
    max-width: 200px;
  }
  
  .footer-col a{
    font-size:16px;
    line-height:26px;
  }
  
  .footer-contact p{
    font-size:16px;
    line-height: 22px;
  }

  .footer-bottom {
    text-align: center;    
    align-items: center;
    flex-direction:column;
    gap: 8px;
    font-size: 15px;
  }
  
  .back-top{
    min-height:14px;
  }
}

/* ============================================================
   VERY SMALL PHONE
   ≤380px
   ============================================================ */

@media (max-width:380px){

  .container{
    width:calc(100% - 32px);
  }

  .hero-nav{
    padding-inline:12px;
  }

  .hero-logo img{
    height:39px;
    max-width:108px;
  }

  .hero-content{
    width:calc(100% - 24px);
    margin-top:45px;
  }

  .hero-eyebrow{
    font-size:10px;
    letter-spacing:.17em;
  }

  .hero h1{
    font-size:40px;
    line-height: 48px;
  }

  .hero-actions{
    margin-top:18px;
  }

  .hero-main-btn{
    max-width:200px;
    padding:12px 16px;
    font-size:14px;
  }
  .hero-work-btn{
    max-width:16px0px;
    padding:12px 16px;
    font-size:14px;
  }

  .section-title{
    font-size:28px;
  }

  .section-copy{
    font-size:14px;
    line-height: 21px;
    
  }

  .bridal,
  .services,
  .offers-teaser,
  .experience,
  .gallery,
  .about,
  .follow{
    padding-block:60px;
  }

  .play-ring{
    width:66px;
    height:66px;
  }

  .play-ring::before{
    width:54px;
    height:54px;
  }

  .play-ring::after{
    border-top-width:8px;
    border-bottom-width:8px;
    border-left-width:12px;
  }

  .service-card{
    padding:8px;
  }

  .service-meta{
    flex-direction:column;
    gap:5px;
  }

  .price{
    white-space:normal;
  }

  .carousel-nav{
    width:36px;
    height:36px;
  }

  .carousel-nav.prev{
    left:7px;
  }

  .carousel-nav.next{
    right:7px;
  }

  .carousel-thumbs{
    bottom:8px;
    max-width:calc(100% - 60px);
  }

  .carousel-thumb{
    width:56px;
    height:40px;
  }

  .follow-box{
    flex-basis:60%;
  }

  .follow-nav{
    width:32px;
    height:32px;
  }

  .follow-nav--prev{
    left:0;
  }

  .follow-nav--next{
    right:0;
  }

  .footer{
    padding-top:48px;
  }

  .footer-brand img{
    width:110px;
  }
  
  .footer-socials{
    margin-top: 24px;
  }
  
  .footer-socials img{
    width:20px;
  }

  .footer-brand p{
    font-size: 15px;
    line-height: 21px;
    max-width: 200px;
  }
  
  .footer-col a{
    font-size:16px;
    line-height:26px;
  }
  
  .footer-contact p{
    font-size:16px;
    line-height: 22px;
  }

  .footer-bottom{
    font-size:14px;
  }
}


/* ============================================================
   TOUCH DEVICES
   Avoid hover transforms on touch screens.
   ============================================================ */

@media (hover:none) and (pointer:coarse){

  .service-card:hover,
  .offer-teaser-card:hover,
  .feature-card:hover,
  .follow-box:hover{
    transform:none;
    box-shadow:none;
  }

  .service-card:hover .service-media img,
  .offer-teaser-card:hover .offer-teaser-media img{
    transform:none;
  }

  .carousel-nav{
    opacity:1;
  }

  .carousel-thumb:hover{
    transform:none;
  }

  .follow-box .play-icon-overlay{
    opacity:.9;
  }
}


/* ============================================================
   REDUCED MOTION
   Accessibility + smoother UX for users who request less motion.
   ============================================================ */

@media (prefers-reduced-motion:reduce){

  html{
    scroll-behavior:auto;
  }

  *,
  *::before,
  *::after{
    animation-duration:.01ms !important;
    animation-iteration-count:1 !important;
    transition-duration:.01ms !important;
  }
}

/* ===== Video lightbox (Bridal Look + Who We Are play buttons) ===== */
.video-lightbox{position:fixed;inset:0;z-index:200;display:none;align-items:center;justify-content:center;padding:24px}
.video-lightbox.is-open{display:flex}
.video-lightbox-backdrop{position:fixed;inset:0;background:rgba(15,10,6,.85)}
.video-lightbox-inner{position:relative;width:min(920px,100%);z-index:1}
.video-lightbox-inner video{width:100%;max-height:82vh;border-radius:14px;background:#000;display:block}
.video-lightbox-close{
  position:absolute;top:-46px;right:0;width:36px;height:36px;border-radius:50%;
  background:rgba(244,238,231,.12);border:1px solid rgba(244,238,231,.3);color:var(--ivory);
  font-size:22px;line-height:1;cursor:pointer;transition:background-color .2s ease;
}
.video-lightbox-close:hover{background:rgba(244,238,231,.22)}
@media(max-width:600px){
  .video-lightbox-close{top:-42px;right:0;width:32px;height:32px;font-size:19px}
}
