/* ===================== ROOT / RESET ===================== */
:root{
  --dark: #150709;
  --dark-2: #1c0c10;
  --maroon: #7a0f28;
  --maroon-2: #8c1230;
  --red: #c8134a;
  --red-light: #e0185a;
  --cream: #f7ece8;
  --cream-2: #f3e4de;
  --text-light: #f3e6e2;
  --text-muted: #cdb7b7;
  --gray-line: #4a2b32;
  --font-serif: 'Playfair Display', serif;
  --font-script: 'Rouge Script', cursive;
  --font-body: 'Poppins', sans-serif;
}

*{margin:0;padding:0;box-sizing:border-box;}

html{
  scroll-behavior:smooth;
  -webkit-overflow-scrolling: touch;
}

body{
  font-family: var(--font-body);
  background: var(--dark);
  color: var(--text-light);
  overflow-x:hidden;
  /* prevent any child from causing horizontal scroll */
  max-width: 100vw;
}

/* Global overflow safety for all sections */
section{
  overflow-x: hidden;
  max-width: 100%;
}

img{max-width:100%;display:block;}
a{text-decoration:none;color:inherit;}
ul{list-style:none;}
i{line-height:1;}

.script-text{
  font-family: var(--font-script);
  color: var(--red-light);
  font-weight:400;
}
.script-text.small{font-size:0.85em;}

.section-label{
  font-size:0.78rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--red-light);
  font-weight:600;
  margin-bottom: 14px;
  position:relative;
  display:inline-block;
}
.section-label.pink{color: var(--red-light);}

.btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding: 14px 28px;
  font-size:0.85rem;
  letter-spacing:0.5px;
  font-weight:500;
  border-radius: 4px;
  border: none;
  cursor:pointer;
  transition: all 0.3s ease;
  white-space:nowrap;
}
.btn-solid{
  background: linear-gradient(135deg, var(--red-light), var(--red));
  color:#fff;
}
.btn-solid:hover{ transform: translateY(-3px); box-shadow: 0 10px 25px rgba(200,19,74,0.4);}
.btn-outline{
  background:transparent;
  border:1px solid rgba(255,255,255,0.4);
  color:#fff;
}
.btn-outline:hover{background:rgba(255,255,255,0.1); transform: translateY(-3px);}
.btn-play{
  background:transparent;
  color:#fff;
  font-weight:500;
}
.play-circle{
  width:38px;height:38px;
  border-radius:50%;
  border:1px solid rgba(255,255,255,0.5);
  display:flex;align-items:center;justify-content:center;
  font-size:0.7rem;
}

/* ===================== HEADER ===================== */
.site-header{
  position:sticky;
  top:0;
  z-index:100;
  background: rgba(21,7,9,0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.header-inner{
  max-width:1400px;
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 14px 50px;
}
.logo{display:flex; align-items:center; line-height:1;}
.logo-img{
  height:44px;
  max-height:48px;
  width:auto;
  object-fit:contain;
  display:block;
  transition: transform 0.3s ease;
}
.logo:hover .logo-img{
  transform: scale(1.04);
}
.logo-script{
  font-family: var(--font-script);
  font-size:1.9rem;
  color: var(--red-light);
}
.logo-script i{font-size:0.55em; vertical-align: top; margin-left:2px;}
.btn-book{padding:10px 22px; font-size:0.78rem;}
.logo-sub{
  font-size:0.6rem;
  letter-spacing:3px;
  color: var(--text-muted);
  margin-top:2px;
}
.main-nav ul{display:flex; gap:34px;}
.main-nav a{
  font-size:0.82rem;
  letter-spacing:0.5px;
  color: var(--text-light);
  padding-bottom:6px;
  position:relative;
  transition:color 0.3s;
}
.main-nav a.active{color: var(--red-light);}
.main-nav a.active::after{
  content:'';
  position:absolute;
  left:0; bottom:0;
  width:100%; height:2px;
  background: var(--red-light);
}
.main-nav a:hover{color: var(--red-light);}
.header-actions{display:flex; align-items:center; gap:22px;}
.hamburger{
  background:none;border:none;cursor:pointer;
  display:flex; flex-direction:column; gap:5px;
  width:24px;
  padding:0;
}
.hamburger span{
  display:block; height:2px; background:#fff; width:100%;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}
/* Hamburger → X animation when menu is open */
.hamburger.is-active span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.hamburger.is-active span:nth-child(2){ opacity:0; transform: scaleX(0); }
.hamburger.is-active span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }


/* ===================== HERO ===================== */
.hero{
  position:relative;
  min-height:100vh;
  display:grid;
  grid-template-columns: 78px 1fr 1.05fr;
  align-items:center;
  padding: 40px 60px 60px 50px;
  background: var(--dark);
  overflow:hidden;
}
.hero-backdrop{
  position:absolute;
  inset:0;
  background-size: cover;
  background-position: center 22%;
  opacity: 0.7;
  z-index:0;
  pointer-events:none;
}
.hero::after{
  content:'';
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 82% 45%, rgba(216,25,74,0.42), transparent 45%),
    radial-gradient(circle at 68% 60%, rgba(140,15,45,0.3), transparent 50%),
    rgba(21,7,9,0.78);
  z-index:1;
  pointer-events:none;
}
.hero-social{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:20px;
  position:relative;
  z-index:2;
}
.hero-social a{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:7px;
  color: #f1dde0;
  transition: all 0.3s;
}
.hero-social a i{
  width:26px; height:26px;
  border:1px solid rgba(241,221,224,0.55);
  border-radius:6px;
  display:flex; align-items:center; justify-content:center;
  font-size:0.68rem;
}
.hero-social a:hover i{background: var(--red-light); border-color: var(--red-light); color:#fff;}
.hero-social a span{
  font-size:0.5rem;
  letter-spacing:1px;
  color: var(--text-muted);
  text-transform:uppercase;
}
.social-line{
  width:1px;
  height:60px;
  background: linear-gradient(to bottom, var(--text-muted), transparent);
  margin-top:8px;
}
.social-line-end{
  font-size:0.65rem;
  color: var(--text-muted);
  margin-top:-2px;
}
.hero-content{ position:relative; padding-right:30px; z-index:2;}
.hero-label{
  font-size:0.78rem;
  letter-spacing:3px;
  text-transform:uppercase;
  color: #e9d9d6;
  margin-bottom:22px;
  display:flex;
  align-items:center;
  gap:16px;
  font-weight:500;
}
.hero-label::after{
  content:'';
  height:1px;
  width:70px;
  background: rgba(233,217,214,0.6);
}
.hero-greeting{
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-greeting .script-greeting{
  font-family: var(--font-script);
  font-size: 1.7em;
  color: var(--red-light);
  font-weight: 400;
  text-shadow: 0 0 16px rgba(224,24,90,0.5);
}
.hero-greeting i{
  font-size: 0.7em;
  color: var(--red-light);
}
.hero-title{
  font-family: var(--font-serif);
  font-size:3.75rem;
  line-height:1.08;
  font-weight:800;
  letter-spacing:0.5px;
  margin-bottom:24px;
  color:#fff;
}
.hero-title .script-text{
  font-size:1.3em;
  font-weight:400;
  display:inline-flex;
  align-items:center;
  gap:14px;
}
.hero-title .script-text i{font-size:0.5em; color: var(--red-light);}
.hero-text{
  font-size:0.92rem;
  color: #cbb4b3;
  max-width:300px;
  line-height:1.75;
  margin-bottom:34px;
}
.hero-buttons{display:flex; align-items:center; gap:26px; flex-wrap:wrap;}
#profile-location-text{
  margin-top:50px;
  font-size:0.84rem;
  color: var(--text-muted);
  display:flex;
  align-items:center;
  gap:8px;
  letter-spacing:0.5px;
}
#profile-location-text i{
  color: var(--red-light);
  font-size:0.9rem;
}
.btn-play{display:flex; align-items:center; gap:12px; font-size:0.8rem; letter-spacing:0.5px; text-transform:uppercase;}
.btn-play .play-circle{
  width:36px;height:36px;
  border:1px solid rgba(255,255,255,0.55);
  font-size:0.65rem;
}

.hero-image-wrap{
  position:relative;
  grid-column: 3;
  display:flex;
  justify-content:center;
  align-items:center;
  height:100%;
  min-height:560px;
  z-index:2;
  transform: translateY(-60px);
}
.hero-image-inner{
  position:relative;
  width:440px;
  height:440px;
}

/* soft ambient glow behind everything */
.hero-glow{
  position:absolute;
  top:50%; left:50%;
  width:500px; height:500px;
  transform:translate(-50%,-50%);
  background: radial-gradient(circle, rgba(224,24,90,0.45), rgba(224,24,90,0.08) 55%, transparent 75%);
  filter: blur(30px);
  border-radius:50%;
  z-index:0;
  animation: heroPulse 5s ease-in-out infinite;
}

/* slow rotating dashed orbit ring */
.hero-ring{
  position:absolute;
  top:50%; left:50%;
  width:490px; height:490px;
  transform:translate(-50%,-50%);
  border:1.5px dashed rgba(224,24,90,0.45);
  border-radius:50%;
  z-index:1;
  animation: heroSpin 40s linear infinite;
}
.hero-ring::before,
.hero-ring::after{
  content:'';
  position:absolute;
  width:7px; height:7px;
  border-radius:50%;
  background: var(--red-light);
  box-shadow: 0 0 10px 2px rgba(224,24,90,0.8);
}
.hero-ring::before{ top:-4px; left:50%; margin-left:-3.5px; }
.hero-ring::after{ bottom:8%; right:6%; }

/* cream crescent peeking behind photo */
.hero-image-bg{
  position:absolute;
  width:370px; height:370px;
  border-radius:50%;
  background: linear-gradient(135deg, #f6e6e0, #fdf4ef);
  top:14px; right:-30px;
  opacity:0.95;
  z-index:1;
  box-shadow: 0 20px 50px rgba(0,0,0,0.25);
}

/* rotating gradient halo border, with the frame counter-rotated so the photo stays upright */
.hero-image-border{
  position:absolute;
  top:50%; left:50%;
  width:420px; height:420px;
  transform:translate(-50%,-50%);
  border-radius:50%;
  padding:5px;
  z-index:2;
  background: conic-gradient(from 0deg, var(--red-light), #f7c9d6, var(--red), #f7c9d6, var(--red-light));
  box-shadow: 0 35px 70px rgba(0,0,0,0.55), 0 0 40px rgba(224,24,90,0.25);
  animation: heroSpin 14s linear infinite;
}
.hero-image-frame{
  position:relative;
  width:100%;
  height:100%;
  border-radius: 50%;
  overflow:hidden;
  background: var(--dark);
  mask-image: radial-gradient(circle, #000 92%, transparent 100%);
  -webkit-mask-image: radial-gradient(circle, #000 92%, transparent 100%);
  animation: heroSpinReverse 14s linear infinite;
}
.hero-image-frame img{
  width:100%; height:100%; object-fit:cover;
  object-position: top center;
  filter: saturate(1.12) contrast(1.06);
}
.hero-image-frame::after{
  content:'';
  position:absolute; inset:0;
  background: linear-gradient(155deg, rgba(180,20,55,0.22), rgba(10,3,5,0.12) 55%, rgba(120,10,35,0.28));
  mix-blend-mode: multiply;
}

/* twinkling sparkle accents */
.hero-sparkle{
  position:absolute;
  color: var(--red-light);
  z-index:3;
  animation: heroTwinkle 2.6s ease-in-out infinite;
}
.sparkle-1{ top:2%; left:2%; font-size:1.1rem; animation-delay:0s; }
.sparkle-2{ bottom:6%; left:0%; font-size:0.65rem; animation-delay:0.8s; color:#fbc7d3; }
.sparkle-3{ top:14%; right:10%; font-size:0.8rem; animation-delay:1.6s; }
.hero-dot{
  position:absolute;
  border-radius:50%;
  background: var(--red-light);
  z-index:3;
  animation: heroTwinkle 3s ease-in-out infinite;
}
.dot-1{ width:8px; height:8px; top:20%; left:-2%; animation-delay:0.4s; }
.dot-2{ width:5px; height:5px; bottom:22%; right:2%; animation-delay:1.2s; background:#fbc7d3; }

/* floating glassmorphism stat badges */
.hero-badge{
  position:absolute;
  display:flex;
  align-items:center;
  gap:12px;
  background: rgba(30,12,16,0.55);
  border:1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius:16px;
  padding:12px 18px;
  z-index:4;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
  animation: heroFloat 4.5s ease-in-out infinite;
}
.hero-badge i{
  width:36px; height:36px;
  flex-shrink:0;
  border-radius:50%;
  background: linear-gradient(135deg, var(--red-light), var(--red));
  display:flex; align-items:center; justify-content:center;
  color:#fff;
  font-size:0.9rem;
}
.hero-badge strong{
  display:block;
  font-family: var(--font-serif);
  font-size:1.15rem;
  color:#fff;
  line-height:1.1;
}
.hero-badge span{
  display:block;
  font-size:0.62rem;
  letter-spacing:0.6px;
  text-transform:uppercase;
  color: var(--text-muted);
  margin-top:2px;
  white-space:nowrap;
}
.badge-top{ top:6%; left:-9%; animation-delay:0s; }
.badge-bottom{ bottom:8%; right:-7%; animation-delay:1.4s; }

@keyframes heroPulse{
  0%,100%{ transform:translate(-50%,-50%) scale(1); opacity:0.75; }
  50%{ transform:translate(-50%,-50%) scale(1.08); opacity:1; }
}
@keyframes heroSpin{ from{ transform:translate(-50%,-50%) rotate(0deg); } to{ transform:translate(-50%,-50%) rotate(360deg); } }
@keyframes heroSpinReverse{ from{ transform:rotate(0deg); } to{ transform:rotate(-360deg); } }
@keyframes heroTwinkle{
  0%,100%{ opacity:0.25; transform:scale(0.75); }
  50%{ opacity:1; transform:scale(1.15); }
}
@keyframes heroFloat{
  0%,100%{ transform:translateY(0); }
  50%{ transform:translateY(-10px); }
}
.hero-side-text{
  position:absolute;
  right:16px;
  top:50%;
  transform: translateY(-50%);
  writing-mode: vertical-rl;
  font-size:0.68rem;
  letter-spacing:3px;
  color: var(--text-muted);
  text-transform:uppercase;
  display:flex;
  align-items:center;
  gap:10px;
  z-index:3;
}
.side-arrow{font-size:0.8rem;}

/* ===================== ABOUT ===================== */
.about{
  position:relative;
  background: linear-gradient(150deg, var(--maroon-2) 0%, var(--maroon) 35%, var(--dark) 75%, var(--dark-2) 100%);
  color:#2b1418;
  display:grid;
  grid-template-columns: 36px 250px 1fr;
  align-items:stretch;
  gap:0;
  padding: 0 0 0 46px;
  min-height:640px;
  overflow:hidden;
}
.about::before{
  content:'';
  position:absolute;
  top:-60px; left:-70px;
  width:230px; height:230px;
  background: rgba(8,3,4,0.55);
  border-radius:44%;
  z-index:0;
}
.about-rail{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:flex-end;
  gap:10px;
  color:#fff;
  font-size:0.75rem;
  padding-bottom:60px;
  position:relative;
  z-index:1;
}
.about-rail a{
  width:30px;height:30px;
  border-radius:50%;
  border:1px solid rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.06);
  display:flex;align-items:center;justify-content:center;
  transition: all 0.3s;
}
.about-rail a:hover{background: var(--red-light); border-color: var(--red-light);}
.rail-dots{
  width:1px;
  height:20px;
  background-image: linear-gradient(to bottom, rgba(255,255,255,0.4) 50%, transparent 50%);
  background-size: 1px 6px;
}
.stats-box{
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap:42px;
  color:#fff;
  padding: 60px 20px 60px 34px;
  position:relative;
  z-index:1;
}
/* Grid / Stack variant used in about section */
.stats-box.stats-grid{
  display:grid;
  grid-template-columns: 1fr;
  gap:14px;
  padding: 30px 14px;
  align-self: center;
  flex-direction: unset;
  justify-content: unset;
}
.stats-box.stats-grid .stat-item{
  display:flex;
  flex-direction:row;
  align-items:center;
  gap:14px;
  background: rgba(255,255,255,0.05);
  border:1px solid rgba(255,255,255,0.12);
  border-radius:14px;
  padding: 12px 16px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.35s ease;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}
.stats-box.stats-grid .stat-item:hover{
  transform: translateX(6px);
  background: rgba(224,24,90,0.16);
  border-color: rgba(224,24,90,0.38);
  box-shadow: 0 10px 24px rgba(224,24,90,0.25);
}
.stats-box.stats-grid .stat-item i{
  width:40px; height:40px; font-size:0.95rem;
  background: linear-gradient(135deg, var(--red-light), var(--red));
  border:none;
  border-radius:12px;
  box-shadow: 0 4px 12px rgba(224,24,90,0.35);
  flex-shrink:0;
  display:flex; align-items:center; justify-content:center;
}
.stats-box.stats-grid .stat-item h3{
  font-family: var(--font-serif);
  font-size:1.3rem;
  font-weight:700;
  color:#fff;
  margin:0;
  line-height:1.1;
}
.stats-box.stats-grid .stat-item p{
  font-size:0.7rem;
  letter-spacing:0.8px;
  text-transform:uppercase;
  color:rgba(255,255,255,0.8);
  margin:2px 0 0 0;
  line-height:1.2;
  white-space:nowrap;
}
.stat-item{display:flex; align-items:center; gap:18px;}

.stat-item i{
  font-size:1.25rem;
  color:#fff;
  width:54px; height:54px;
  flex-shrink:0;
  border-radius:50%;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
  display:flex; align-items:center; justify-content:center;
}
.stat-item h3{font-family:var(--font-serif); font-size:1.9rem; font-weight:700; color:#fff;}
.stat-item p{font-size:0.68rem; letter-spacing:1px; text-transform:uppercase; color:rgba(255,255,255,0.75); line-height:1.4; margin-top:2px;}

.about-card{
  position:relative;
  z-index:1;
  background: var(--cream);
  border-radius: 70px 0 0 70px;
  display:flex;
  align-items:center;
  gap:50px;
  padding: 60px 60px 60px 70px;
  height:100%;
  box-shadow: -30px 0 70px rgba(0,0,0,0.3);
}
.about-content{flex:1; min-width:0;}
.about-heading{
  font-family: var(--font-serif);
  font-size:2.3rem;
  font-weight:700;
  color:#1f0d10;
  line-height:1.25;
  margin-bottom:20px;
}
.about-text{
  font-size:0.92rem;
  color:#6b4a4f;
  line-height:1.8;
  max-width:420px;
  margin-bottom:20px;
}
.signature{
  font-family: var(--font-script);
  font-size:1.6rem;
  color: var(--red);
  margin-bottom:26px;
}

.about-photo{
  position:relative;
  flex:0 0 340px;
  display:flex;
  justify-content:center;
  align-self:flex-start;
  margin-top:-10px;
  margin-left:-65px;
}
.dot-grid{
  position:absolute;
  top:-35px; right:-25px;
  width:140px; height:140px;
  background-image: radial-gradient(#d7a9a9 1.5px, transparent 1.5px);
  background-size: 14px 14px;
  opacity:0.6;
  z-index:0;
}
.clip{
  position:absolute;
  top:-14px; left:50%;
  transform:translateX(6px) rotate(38deg);
  font-size:2.2rem;
  color:#b8b8b8;
  z-index:3;
  text-shadow: 1px 2px 3px rgba(0,0,0,0.25);
}
.polaroid{
  background:#fff;
  padding:16px 16px 28px;
  border-radius:6px;
  box-shadow: 0 30px 55px rgba(0,0,0,0.3);
  transform: rotate(4deg);
  width:340px;
}
.polaroid img{border-radius:3px; width:100%; height:410px; object-fit:cover;}
.badge-stamp{
  position:absolute;
  bottom:-30px; right:-10px;
  width:130px; height:130px;
  z-index:4;
}
.badge-stamp svg{width:100%; height:100%;}
.badge-stamp text{
  font-size:11.5px;
  letter-spacing:1px;
  fill: var(--red);
  text-transform:uppercase;
}
.badge-stamp path{stroke: var(--red); stroke-width:1; fill: rgba(255,255,255,0.85);}
.badge-stamp i{
  position:absolute; top:50%; left:50%;
  transform:translate(-50%,-50%);
  color: var(--red);
  font-size:1.6rem;
}

/* ===================== MEASUREMENTS ===================== */
.measurements{
  position:relative;
  background:
    radial-gradient(circle at 47% 50%, rgba(216,25,74,0.3), transparent 55%),
    linear-gradient(120deg, var(--dark) 0%, var(--dark) 48%, #1c0810 100%);
  display:grid;
  grid-template-columns: 1.1fr 1fr 0.95fr 46px;
  align-items:stretch;
  gap:0;
  padding: 0 0 0 60px;
  min-height:640px;
  overflow:hidden;
}
.measurements::before{
  content:'';
  position:absolute;
  inset:0;
  width:45%;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 32px 32px;
  -webkit-mask-image: linear-gradient(to right, black 40%, transparent 100%);
  mask-image: linear-gradient(to right, black 40%, transparent 100%);
  z-index:0;
}
.measure-left{
  position:relative;
  z-index:1;
  display:flex;
  flex-direction:column;
  justify-content:center;
  padding: 70px 30px 70px 0;
}
.measure-left h2{
  font-family: var(--font-serif);
  font-size:2.5rem;
  font-weight:800;
  background: linear-gradient(120deg, #ffffff 55%, var(--red-light) 130%);
  -webkit-background-clip: text;
  background-clip: text;
  color: #fff;
  -webkit-text-fill-color: transparent;
  margin-bottom:30px;
  letter-spacing:1px;
}
.measure-body-row{
  display:flex;
  align-items:center;
  gap:36px;
}
.body-icon{
  position:relative;
  flex-shrink:0;
  display:flex;
  align-items:center;
  justify-content:center;
  width:160px;
  min-height:330px;
  animation: dollFloat 5s ease-in-out infinite;
}
.figure-img{
  position:relative;
  z-index:1;
  width:140px;
  height:310px;
  object-fit:contain;
  display:block;
  filter: invert(1) hue-rotate(145deg) saturate(2) drop-shadow(0 0 12px rgba(255, 42, 109, 0.9)) drop-shadow(0 0 30px rgba(224, 24, 90, 0.5));
  mix-blend-mode: screen;
}
.figure-hud-overlay{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  z-index:2;
  pointer-events:none;
}
.doll-glow{
  position:absolute;
  top:50%; left:50%;
  width:190px; height:340px;
  transform:translate(-50%,-50%);
  background: radial-gradient(ellipse at center, rgba(255, 42, 109, 0.4) 0%, rgba(224, 24, 90, 0.15) 50%, transparent 75%);
  filter: blur(24px);
  z-index:0;
  animation: dollGlowPulse 4s ease-in-out infinite;
}
@keyframes dollFloat{
  0%,100%{ transform:translateY(0); }
  50%{ transform:translateY(-10px); }
}
@keyframes dollGlowPulse{
  0%,100%{ opacity:0.7; transform:translate(-50%,-50%) scale(1); }
  50%{ opacity:1; transform:translate(-50%,-50%) scale(1.1); }
}

/* Figure SVG enhancement */
.figure-svg{
  overflow:visible;
}

/* Pulsing glow on measurement dots */
.meas-dot{
  animation: measDotPulse 2.5s ease-in-out infinite;
}
.meas-dot:nth-of-type(2){ animation-delay:0.4s; }
.meas-dot:nth-of-type(3){ animation-delay:0.8s; }
.meas-dot:nth-of-type(4){ animation-delay:1.2s; }
.meas-dot:nth-of-type(5){ animation-delay:1.6s; }
.meas-dot:nth-of-type(6){ animation-delay:2.0s; }
@keyframes measDotPulse{
  0%,100%{ opacity:0.7; r:2.5; }
  50%{ opacity:1; r:3.5; filter:drop-shadow(0 0 4px #e0185a); }
}

/* Shimmer sweep on figure */
.figure-sheen{
  animation: figureSheen 4s ease-in-out infinite;
  transform-origin: left;
}
@keyframes figureSheen{
  0%,100%{ opacity:0.15; }
  50%{ opacity:0.4; }
}

.measure-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:14px;
  padding-top:4px;
}
.m-item{
  display:flex;
  align-items:center;
  gap:12px;
  background: rgba(255,255,255,0.03);
  border:1px solid rgba(255,255,255,0.07);
  border-radius:12px;
  padding:12px 14px;
  transition: all 0.35s ease;
}
.m-item:hover{
  background: rgba(224,24,90,0.1);
  border-color: rgba(224,24,90,0.35);
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.3);
}
.m-item i{
  width:34px; height:34px;
  flex-shrink:0;
  border-radius:50%;
  background: rgba(224,24,90,0.12);
  color: var(--red-light);
  font-size:0.85rem;
  display:flex; align-items:center; justify-content:center;
}
.m-title{
  display:block;
  font-size:0.66rem;
  letter-spacing:1px;
  text-transform:uppercase;
  color: var(--text-muted);
  margin-bottom:3px;
}
.m-value{
  display:block;
  font-size:0.9rem;
  font-weight:600;
  color:#fff;
  white-space:nowrap;
}

.measure-image{
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
  z-index:1;
}
.measure-image::before{
  content:'';
  position:absolute;
  width:120%; height:88%;
  background: radial-gradient(circle, rgba(216,25,74,0.4), transparent 65%);
  filter: blur(30px);
  z-index:0;
  animation: heroPulse 5s ease-in-out infinite;
}
.measure-image img{
  position:relative;
  z-index:1;
  width:340px; height:480px; object-fit:cover;
  border-radius: 170px 170px 22px 22px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.55);
}
.corner-bracket{
  position:absolute;
  width:36px; height:36px;
  z-index:2;
  border: 2px solid var(--red-light);
  opacity:0.85;
}
.bracket-tl{ top:18px; left:calc(50% - 170px + 4px); border-width:2px 0 0 2px; border-radius:8px 0 0 0;}
.bracket-br{ bottom:18px; left:calc(50% + 170px - 40px); border-width:0 2px 2px 0; border-radius:0 0 8px 0;}


.measure-right{
  position:relative;
  z-index:1;
  background: linear-gradient(165deg, rgba(18,7,9,0.94), rgba(6,2,3,0.98));
  border-radius: 60px 0 0 60px;
  padding: 70px 40px 70px 60px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  box-shadow: -25px 0 60px rgba(0,0,0,0.35);
  overflow:hidden;
}
.right-accent{
  position:absolute;
  top:0; left:60px; right:40px;
  height:3px;
  background: linear-gradient(90deg, var(--red-light), transparent);
  border-radius:0 0 4px 4px;
}
.right-pattern{
  position:absolute;
  top:0; right:0;
  width:160px; height:160px;
  background-image: radial-gradient(rgba(224,24,90,0.18) 1.5px, transparent 1.5px);
  background-size: 16px 16px;
  -webkit-mask-image: radial-gradient(circle at top right, black, transparent 75%);
  mask-image: radial-gradient(circle at top right, black, transparent 75%);
  z-index:0;
}

.availability-status{
  display:inline-flex;
  align-items:center;
  gap:9px;
  font-size:0.7rem;
  letter-spacing:0.5px;
  color: var(--text-muted);
  margin-bottom:30px;
  position:relative;
  z-index:1;
}
.status-dot{
  width:8px; height:8px;
  border-radius:50%;
  background: var(--red-light);
  position:relative;
}
.status-dot::after{
  content:'';
  position:absolute;
  inset:-5px;
  border-radius:50%;
  border:1.5px solid var(--red-light);
  animation: statusPing 1.8s ease-out infinite;
}
@keyframes statusPing{
  0%{ transform:scale(0.6); opacity:0.9; }
  100%{ transform:scale(1.8); opacity:0; }
}

.available-list{position:relative; z-index:1;}
.available-list li{
  display:flex; align-items:center; gap:14px;
  padding:15px 10px;
  margin:0 -10px;
  border-radius:12px;
  border-bottom:1px solid rgba(255,255,255,0.07);
  color:#fff;
  transition: all 0.3s;
  position:relative;
}
.available-list li:last-child{border-bottom:none;}
.available-list li:hover{
  background: rgba(224,24,90,0.08);
  transform: translateX(4px);
}
.available-list li:hover i{
  background: var(--red-light);
  color:#fff;
  transform: scale(1.08) rotate(-6deg);
}
.available-list li:hover .av-arrow{
  opacity:1;
  transform: translateX(0);
}
.available-list li:hover .av-num{color: rgba(224,24,90,0.6);}
.av-num{
  font-family: var(--font-serif);
  font-size:0.78rem;
  color: rgba(255,255,255,0.22);
  flex-shrink:0;
  width:18px;
  transition: color 0.3s;
}
.available-list i{
  width:40px; height:40px;
  flex-shrink:0;
  border-radius:11px;
  border:1px solid rgba(224,24,90,0.45);
  background: rgba(224,24,90,0.1);
  display:flex; align-items:center; justify-content:center;
  color: var(--red-light);
  font-size:0.9rem;
  transition: all 0.3s;
}
.av-text{display:flex; flex-direction:column; gap:3px; flex:1; min-width:0;}
.av-text strong{font-size:0.9rem; font-weight:600; color:#fff;}
.av-text span{font-size:0.7rem; color: var(--text-muted); line-height:1.3;}
.av-arrow{
  width:auto !important; height:auto !important;
  background:none !important; border:none !important;
  font-size:0.8rem !important;
  color: var(--red-light);
  opacity:0;
  transform: translateX(-6px);
  transition: all 0.3s;
  flex-shrink:0;
}
.measure-side-text{
  position:relative;
  writing-mode: vertical-rl;
  font-family: var(--font-serif);
  font-size:2.5rem;
  font-weight:800;
  letter-spacing:8px;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.35);
  text-align:center;
  justify-self:center;
  align-self:center;
  z-index:1;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:14px;
}
.side-dot{
  width:7px; height:7px;
  border-radius:50%;
  background: var(--red-light);
  -webkit-text-stroke:0;
  box-shadow: 0 0 10px 2px rgba(224,24,90,0.7);
  animation: heroTwinkle 2.6s ease-in-out infinite;
}

/* ===================== GALLERY ===================== */
.gallery{
  position:relative;
  background:
    radial-gradient(ellipse at 15% 80%, rgba(224,24,90,0.18) 0%, transparent 40%),
    radial-gradient(ellipse at 85% 10%, rgba(140,15,40,0.22) 0%, transparent 40%),
    linear-gradient(160deg, #0d0407 0%, #150709 45%, #0e0507 100%);
  color: var(--text-light);
  padding: 110px 60px 120px;
  overflow:hidden;
}
.gallery::before{
  content:'';
  position:absolute;
  inset:0;
  background-image:
    linear-gradient(rgba(224,24,90,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(224,24,90,0.04) 1px, transparent 1px);
  background-size: 52px 52px;
  pointer-events:none;
  z-index:0;
}
.gallery::after{
  content:'';
  position:absolute;
  top:0; left:0; right:0;
  height:2px;
  background: linear-gradient(90deg, transparent, var(--red-light), transparent);
  z-index:1;
}
.gallery-header{
  position:relative;
  z-index:2;
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  margin-bottom:54px;
  gap:18px;
}
.gallery-badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  background: rgba(224,24,90,0.12);
  border:1px solid rgba(224,24,90,0.28);
  color: var(--red-light);
  font-size:0.68rem;
  letter-spacing:2.5px;
  text-transform:uppercase;
  font-weight:600;
  padding:9px 20px;
  border-radius:999px;
  box-shadow: 0 0 20px rgba(224,24,90,0.15);
}
.gallery-badge i{color: var(--red-light);}
.gallery-header h2{
  font-family: var(--font-serif);
  font-size:clamp(2.4rem, 4.5vw, 3.6rem);
  font-weight:800;
  line-height:1.05;
  letter-spacing:-0.01em;
  color:#fff;
}
.gallery-header h2 .script-text{
  font-family: var(--font-script);
  color: var(--red-light);
  font-weight:400;
  font-size:1.1em;
  letter-spacing:0;
  display:inline;
}
.gallery-subtitle{
  font-size:0.93rem;
  color: var(--text-muted);
  max-width:480px;
  line-height:1.8;
}
.gallery-content{
  position:relative;
  z-index:2;
}

.gallery-filters{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:0;
  flex-wrap:wrap;
  margin-bottom:48px;
  background: rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius:999px;
  padding:5px;
  max-width:fit-content;
  margin-left:auto;
  margin-right:auto;
}
.filter-btn{
  font-family: var(--font-body);
  border:none;
  background: transparent;
  padding: 10px 22px;
  border-radius: 999px;
  font-size:0.72rem;
  letter-spacing:0.12em;
  text-transform:uppercase;
  color: var(--text-muted);
  cursor:pointer;
  transition: all 0.32s ease;
  font-weight:500;
  position:relative;
  white-space:nowrap;
}
.filter-btn.active{
  background: linear-gradient(135deg, var(--red-light), var(--red));
  color:#fff;
  box-shadow: 0 8px 24px rgba(200,19,74,0.4), 0 0 0 1px rgba(224,24,90,0.3);
}
.filter-btn:not(.active):hover{
  color:#fff;
  background: rgba(255,255,255,0.06);
}

/* === Floating ambient orbs === */
.gallery-orb{
  position:absolute;
  border-radius:50%;
  pointer-events:none;
  z-index:0;
  filter:blur(60px);
  opacity:0.55;
  animation: orbDrift 10s ease-in-out infinite;
}
.gallery-orb-1{
  width:420px; height:420px;
  background: radial-gradient(circle, rgba(224,24,90,0.35), transparent 70%);
  top:-80px; left:-80px;
  animation-delay:0s;
}
.gallery-orb-2{
  width:320px; height:320px;
  background: radial-gradient(circle, rgba(140,15,40,0.3), transparent 70%);
  bottom:-60px; right:-40px;
  animation-delay:3s;
}
.gallery-orb-3{
  width:200px; height:200px;
  background: radial-gradient(circle, rgba(224,24,90,0.2), transparent 70%);
  top:40%; left:40%;
  animation-delay:6s;
}
@keyframes orbDrift{
  0%,100%{ transform:translate(0,0) scale(1); opacity:0.55;}
  33%{ transform:translate(20px,-15px) scale(1.07); opacity:0.7;}
  66%{ transform:translate(-12px,18px) scale(0.95); opacity:0.45;}
}

.gallery-swipe-hint{
  display:none;
  align-items:center;
  justify-content:center;
  gap:8px;
  font-size:0.72rem;
  color: var(--red-light);
  letter-spacing:0.5px;
  margin-bottom:12px;
  text-transform:uppercase;
  font-weight:600;
  animation: pulseSwipe 2s infinite ease-in-out;
}
@keyframes pulseSwipe{
  0%,100%{ opacity:0.7; transform:translateX(0); }
  50%{ opacity:1; transform:translateX(4px); }
}

/* === Masonry Grid === */
.gallery-grid{
  position:relative;
  z-index:2;
  columns: 4;
  column-gap: 18px;
}

.mobile-gallery-container{
  display:none;
}

.gal-item{
  position:relative;
  border-radius:18px;
  overflow:hidden;
  cursor:pointer;
  background: rgba(255,255,255,0.03);
  border:1px solid rgba(255,255,255,0.07);
  box-shadow:
    0 20px 40px rgba(0,0,0,0.5),
    0 0 0 0 rgba(224,24,90,0);
  opacity:0;
  transform: translateY(30px) scale(0.97);
  transition:
    box-shadow 0.45s ease,
    transform 0.45s ease,
    opacity 0.5s ease,
    border-color 0.35s ease;
  will-change: transform, opacity;
  break-inside: avoid;
  margin-bottom: 18px;
  display: inline-block;
  width: 100%;
}
.gal-item.revealed{
  opacity:1;
  transform: translateY(0) scale(1);
}
.gal-item.revealed:hover{
  transform: translateY(-6px) scale(1.01);
  border-color: rgba(224,24,90,0.35);
  box-shadow:
    0 30px 60px rgba(0,0,0,0.65),
    0 0 0 1.5px rgba(224,24,90,0.2),
    0 0 30px rgba(224,24,90,0.1);
}

/* gradient border on hover via pseudo */
.gal-item::before{
  content:'';
  position:absolute;
  inset:0;
  z-index:5;
  border-radius:inherit;
  padding:1.5px;
  background: linear-gradient(135deg, rgba(224,24,90,0.7), rgba(255,200,220,0.15) 50%, rgba(122,15,40,0.35));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity:0;
  transition: opacity 0.4s ease;
  pointer-events:none;
}
.gal-item:hover::before{opacity:1;}

/* varied aspect ratios for masonry feel */
.gal-item.g-big img{ aspect-ratio: 4/5; }
.gal-item.g-tall img{ aspect-ratio: 3/4; }
.gal-item.g-wide img{ aspect-ratio: 4/3; }
.gal-item.g-normal img{ aspect-ratio: 1/1; }

.gal-item img{
  position:relative;
  z-index:1;
  width:100%;
  height:auto;
  display:block;
  border-radius:14px;
  object-fit:cover;
  object-position:center top;
  transition: transform 0.65s cubic-bezier(0.25,0.46,0.45,0.94), filter 0.45s ease;
  filter: saturate(1.05) brightness(0.95);
}
.gal-item:hover img{
  transform: scale(1.07);
  filter: saturate(1.15) brightness(1.02);
}

/* sheen sweep */
.gal-shine{
  position:absolute;
  z-index:4;
  top:0; bottom:0;
  left:-80%;
  width:45%;
  background: linear-gradient(110deg, transparent 0%, rgba(255,255,255,0.13) 50%, transparent 100%);
  transform: skewX(-15deg);
  transition: left 0.95s ease;
  pointer-events:none;
}
.gal-item:hover .gal-shine{left:130%;}

/* number badge */
.gal-index{
  position:absolute;
  top:14px;
  left:14px;
  z-index:6;
  font-size:0.62rem;
  font-weight:600;
  letter-spacing:0.15em;
  color:rgba(255,255,255,0.9);
  background: rgba(0,0,0,0.4);
  border:1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding:5px 10px;
  border-radius:999px;
  opacity:0;
  transform: translateY(-6px);
  transition: all 0.35s ease;
}
.gal-item:hover .gal-index{opacity:1; transform: translateY(0);}

/* full overlay gradient */
.gal-overlay{
  position:absolute;
  inset:0;
  z-index:3;
  border-radius:inherit;
  background:
    linear-gradient(to top, rgba(10,3,6,0.92) 0%, rgba(10,3,6,0.45) 40%, rgba(10,3,6,0.05) 75%, transparent 100%);
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  padding:14px;
  pointer-events:none;
  opacity:0;
  transition: opacity 0.4s ease;
}
.gal-item:hover .gal-overlay{ opacity:1; }

/* always-visible bottom strip */
.gal-overlay-always{
  position:absolute;
  bottom:0; left:0; right:0;
  z-index:3;
  border-radius:0 0 14px 14px;
  background: linear-gradient(to top, rgba(10,3,6,0.88) 0%, transparent 100%);
  padding:28px 16px 16px;
  pointer-events:none;
}

.gal-top{
  display:flex;
  align-items:center;
  gap:8px;
  align-self:flex-end;
  transform: translateY(-4px);
  transition: transform 0.35s ease;
}
.gal-item:hover .gal-top{transform: translateY(0);}

.gal-cat-icon{
  width:30px;
  height:30px;
  border-radius:50%;
  background: rgba(224,24,90,0.25);
  border:1px solid rgba(224,24,90,0.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:0.68rem;
}
.gal-tag{
  background: rgba(224,24,90,0.2);
  border:1px solid rgba(224,24,90,0.35);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color:#fff;
  font-size:0.6rem;
  font-weight:600;
  letter-spacing:0.15em;
  text-transform:uppercase;
  padding:5px 11px;
  border-radius:999px;
}

.gal-bottom{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:10px;
}
.gal-title{
  font-family: var(--font-serif);
  font-size:0.95rem;
  font-weight:600;
  color:#fff;
  letter-spacing:0.01em;
  line-height:1.3;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}
.gal-zoom{
  width:36px;
  height:36px;
  flex-shrink:0;
  border-radius:50%;
  border:1.5px solid rgba(255,255,255,0.25);
  background: linear-gradient(135deg, var(--red-light), var(--red));
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:0.78rem;
  cursor:pointer;
  box-shadow: 0 8px 20px rgba(122,15,40,0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  pointer-events:auto;
}
.gal-zoom:hover{
  transform: scale(1.12);
  box-shadow: 0 12px 28px rgba(122,15,40,0.55);
}

/* === Gallery CTA === */
.gallery-cta{
  position:relative;
  z-index:2;
  display:flex;
  justify-content:center;
  margin-top:54px;
}
.gallery-cta .btn-outline{
  border-color: rgba(224,24,90,0.4);
  color: var(--red-light);
  padding: 14px 34px;
  font-size:0.8rem;
  letter-spacing:0.12em;
  text-transform:uppercase;
}
.gallery-cta .btn-outline:hover{
  background: rgba(224,24,90,0.1);
  border-color: var(--red-light);
  color:#fff;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(224,24,90,0.2);
}

/* === Lightbox === */
.gal-lightbox{
  position:fixed;
  inset:0;
  z-index:9999;
  background: rgba(5,2,3,0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  display:flex;
  align-items:center;
  justify-content:center;
  opacity:0;
  pointer-events:none;
  transition: opacity 0.38s ease;
}
.gal-lightbox.open{
  opacity:1;
  pointer-events:all;
}
.gal-lb-inner{
  position:relative;
  max-width:880px;
  width:90%;
  max-height:88vh;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:18px;
}
.gal-lb-img{
  width:100%;
  max-height:78vh;
  object-fit:contain;
  border-radius:16px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.7);
  transform: scale(0.94);
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
}
.gal-lightbox.open .gal-lb-img{
  transform: scale(1);
}
.gal-lb-caption{
  display:flex;
  align-items:center;
  gap:14px;
}
.gal-lb-title{
  font-family: var(--font-serif);
  font-size:1.1rem;
  color:#fff;
  font-weight:600;
}
.gal-lb-tag{
  background: rgba(224,24,90,0.18);
  border:1px solid rgba(224,24,90,0.35);
  color: var(--red-light);
  font-size:0.62rem;
  letter-spacing:0.15em;
  text-transform:uppercase;
  padding:4px 12px;
  border-radius:999px;
  font-weight:600;
}
.gal-lb-close{
  position:absolute;
  top:-16px; right:-16px;
  width:44px; height:44px;
  border-radius:50%;
  background: rgba(224,24,90,0.15);
  border:1.5px solid rgba(224,24,90,0.35);
  color:#fff;
  font-size:1rem;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  transition: all 0.3s ease;
  z-index:10;
}
.gal-lb-close:hover{
  background: var(--red-light);
  border-color: var(--red-light);
  transform: rotate(90deg) scale(1.08);
}
.gal-lb-nav{
  position:absolute;
  top:50%;
  transform: translateY(-50%);
  width:46px; height:46px;
  border-radius:50%;
  background: rgba(255,255,255,0.06);
  border:1.5px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color:#fff;
  font-size:1.1rem;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  transition: all 0.3s ease;
  z-index:10;
}
.gal-lb-nav:hover{
  background: rgba(224,24,90,0.25);
  border-color: rgba(224,24,90,0.45);
  transform: translateY(-50%) scale(1.08);
}
.gal-lb-prev{ left:-64px; }
.gal-lb-next{ right:-64px; }


/* ===================== REVIEWS / TESTIMONIALS ===================== */
.reviews-section{
  position:relative;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(224,24,90,0.16) 0%, transparent 45%),
    radial-gradient(ellipse at 20% 80%, rgba(140,15,40,0.2) 0%, transparent 45%),
    linear-gradient(160deg, #110508 0%, #17070a 50%, #0d0305 100%);
  color: var(--text-light);
  padding: 110px 60px 120px;
  overflow:hidden;
}
.reviews-section::before{
  content:'';
  position:absolute;
  inset:0;
  background-image:
    linear-gradient(rgba(224,24,90,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(224,24,90,0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events:none;
  z-index:0;
}
.reviews-section::after{
  content:'';
  position:absolute;
  top:0; left:0; right:0;
  height:1.5px;
  background: linear-gradient(90deg, transparent, var(--red-light), transparent);
  z-index:1;
}

/* Ambient Orbs */
.review-orb{
  position:absolute;
  border-radius:50%;
  pointer-events:none;
  z-index:0;
  filter:blur(60px);
  opacity:0.5;
}
.review-orb-1{
  width:380px; height:380px;
  background: radial-gradient(circle, rgba(224,24,90,0.3), transparent 70%);
  top:-60px; right:-60px;
}
.review-orb-2{
  width:320px; height:320px;
  background: radial-gradient(circle, rgba(140,15,40,0.25), transparent 70%);
  bottom:-50px; left:-50px;
}

/* Header */
.review-header{
  position:relative;
  z-index:2;
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  margin-bottom:45px;
  gap:16px;
}
.review-badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  background: rgba(224,24,90,0.12);
  border:1px solid rgba(224,24,90,0.28);
  color: var(--red-light);
  font-size:0.68rem;
  letter-spacing:2.5px;
  text-transform:uppercase;
  font-weight:600;
  padding:9px 20px;
  border-radius:999px;
  box-shadow: 0 0 20px rgba(224,24,90,0.15);
}
.review-header h2{
  font-family: var(--font-serif);
  font-size:clamp(2.4rem, 4.5vw, 3.6rem);
  font-weight:800;
  line-height:1.05;
  color:#fff;
}
.review-header h2 .script-text{
  font-family: var(--font-script);
  color: var(--red-light);
  font-weight:400;
  font-size:1.1em;
}
.review-subtitle{
  font-size:0.93rem;
  color: var(--text-muted);
  max-width:520px;
  line-height:1.8;
}

/* Stats Summary Bar */
.review-stats-bar{
  position:relative;
  z-index:2;
  max-width:780px;
  margin:0 auto 60px;
  background: rgba(255,255,255,0.03);
  border:1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius:24px;
  padding:24px 40px;
  display:flex;
  align-items:center;
  justify-content:space-around;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}
.rev-stat{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:6px;
}
.rev-rating-num, .rev-count-num{
  font-family: var(--font-serif);
  font-size:2rem;
  font-weight:800;
  color:#fff;
  line-height:1;
}
.rev-stars{
  display:flex;
  gap:4px;
  color: #ffb400;
  font-size:0.85rem;
}
.rev-stat-label{
  font-size:0.72rem;
  letter-spacing:1px;
  text-transform:uppercase;
  color: var(--text-muted);
  margin-top:2px;
}
.rev-stat-divider{
  width:1px;
  height:44px;
  background: rgba(255,255,255,0.1);
}

/* Reviews Grid - Desktop */
.reviews-grid,
.desktop-reviews-grid{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap:20px;
  max-width:1400px;
  margin:0 auto;
  padding:0 20px;
}
.desktop-reviews-grid.count-1{
  grid-template-columns: minmax(300px, 500px);
  justify-content: center;
}
.desktop-reviews-grid.count-2{
  grid-template-columns: repeat(2, minmax(300px, 480px));
  justify-content: center;
}

/* ===== Marquee Reviews ===== */
.reviews-marquee-wrapper{
  position:relative;
  z-index:2;
  width:100%;
}
.mobile-reviews-marquee{
  display:none; /* hidden on desktop, enabled on mobile */
  flex-direction:column;
  gap:18px;
  overflow:hidden;
  width:100%;
}
.marquee-row{
  overflow:hidden;
  width:100%;
}
.marquee-track{
  display:flex;
  gap:14px;
  width:max-content;
}
/* Row 1 → scrolls left (LTR motion = translateX 0 → -50%) */
.marquee-ltr{
  animation: marquee-left 28s linear infinite;
}
.marquee-ltr:hover, .marquee-ltr:active{ animation-play-state: paused; }
/* Row 2 → scrolls right (RTL motion = translateX -50% → 0) */
.marquee-rtl{
  animation: marquee-right 32s linear infinite;
}
.marquee-rtl:hover, .marquee-rtl:active{ animation-play-state: paused; }

@keyframes marquee-left{
  0%  { transform: translateX(0); }
  100%{ transform: translateX(-50%); }
}
@keyframes marquee-right{
  0%  { transform: translateX(-50%); }
  100%{ transform: translateX(0); }
}

/* Cards inside marquee track — mobile touch sizing */
.marquee-track .review-card{
  flex: 0 0 250px;
  max-width: 270px;
  min-width: 230px;
}

/* Review Card */
.review-card{
  position:relative;
  background: rgba(255,255,255,0.035);
  border:1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius:20px;
  padding:24px 20px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  gap:18px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}
.review-card:hover{
  transform: translateY(-8px);
  border-color: rgba(224,24,90,0.4);
  background: rgba(255,255,255,0.05);
  box-shadow:
    0 30px 60px rgba(0,0,0,0.6),
    0 0 30px rgba(224,24,90,0.18);
}
.review-card::before{
  content:'';
  position:absolute;
  inset:0;
  border-radius:inherit;
  padding:1.5px;
  background: linear-gradient(135deg, rgba(224,24,90,0.6), rgba(255,255,255,0.1), rgba(140,15,40,0.3));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity:0;
  transition: opacity 0.4s ease;
  pointer-events:none;
}
.review-card:hover::before{ opacity:1; }

.review-card-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
}
.quote-icon{
  font-size:1.6rem;
  color: rgba(224,24,90,0.35);
  transition: color 0.3s ease;
}
.review-card:hover .quote-icon{ color: var(--red-light); }

.review-quote{
  font-size:0.96rem;
  color: var(--text-light);
  line-height:1.75;
  font-style:italic;
  position:relative;
  z-index:1;
}

.review-author{
  display:flex;
  align-items:center;
  gap:16px;
  margin-top:auto;
}
.author-avatar{
  width:50px;
  height:50px;
  border-radius:50%;
  object-fit:cover;
  border:2px solid rgba(224,24,90,0.5);
  box-shadow: 0 6px 16px rgba(0,0,0,0.4);
}
.author-info{
  display:flex;
  flex-direction:column;
  gap:3px;
}
.author-name{
  font-family: var(--font-serif);
  font-size:1.02rem;
  font-weight:700;
  color:#fff;
  display:flex;
  align-items:center;
  gap:6px;
}
.verified-icon{
  color: var(--red-light);
  font-size:0.8rem;
}
.author-role{
  font-size:0.75rem;
  color: var(--text-muted);
}

.review-tag{
  align-self:flex-start;
  background: rgba(224,24,90,0.14);
  border:1px solid rgba(224,24,90,0.28);
  color: var(--red-light);
  font-size:0.6rem;
  letter-spacing:1.5px;
  text-transform:uppercase;
  font-weight:600;
  padding:5px 12px;
  border-radius:999px;
  margin-top:-8px;
}

/* Leave a Review CTA Button */
.review-cta-wrap{
  position:relative;
  z-index:2;
  display:flex;
  justify-content:center;
  margin-top:54px;
}
.btn-leave-review{
  padding:15px 36px;
  font-size:0.85rem;
  letter-spacing:1px;
  text-transform:uppercase;
  box-shadow: 0 10px 30px rgba(224,24,90,0.35);
}

/* ======= LEAVE A REVIEW MODAL ======= */
.review-modal{
  position:fixed;
  inset:0;
  z-index:9999;
  background: rgba(5,2,3,0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  display:flex;
  align-items:center;
  justify-content:center;
  opacity:0;
  pointer-events:none;
  transition: opacity 0.38s ease;
  padding:20px;
}
.review-modal.open{
  opacity:1;
  pointer-events:all;
}
.review-modal-inner{
  position:relative;
  max-width:620px;
  width:100%;
  background: rgba(23,9,12,0.94);
  border:1px solid rgba(224,24,90,0.3);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius:28px;
  padding:40px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.8), 0 0 40px rgba(224,24,90,0.2);
  transform: scale(0.94);
  transition: transform 0.38s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.review-modal.open .review-modal-inner{
  transform: scale(1);
}
.review-modal-close{
  position:absolute;
  top:20px; right:20px;
  width:40px; height:40px;
  border-radius:50%;
  background: rgba(224,24,90,0.15);
  border:1px solid rgba(224,24,90,0.35);
  color:#fff;
  font-size:0.95rem;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  transition: all 0.3s ease;
}
.review-modal-close:hover{
  background: var(--red-light);
  border-color: var(--red-light);
  transform: rotate(90deg);
}

.review-modal-header{
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  margin-bottom:28px;
  gap:10px;
}
.review-modal-header h3{
  font-family: var(--font-serif);
  font-size:1.8rem;
  font-weight:700;
  color:#fff;
}
.review-modal-header p{
  font-size:0.85rem;
  color: var(--text-muted);
}

/* Review Form Styling */
.review-form{
  display:flex;
  flex-direction:column;
  gap:18px;
}
.rev-form-row{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:16px;
}
.rev-form-group{
  display:flex;
  flex-direction:column;
  gap:8px;
}
.rev-form-group label{
  font-size:0.75rem;
  letter-spacing:1px;
  text-transform:uppercase;
  color: var(--text-muted);
  font-weight:500;
}
.rev-form-group input,
.rev-form-group select,
.rev-form-group textarea{
  width:100%;
  background: rgba(255,255,255,0.05);
  border:1px solid rgba(255,255,255,0.14);
  border-radius:12px;
  padding:12px 16px;
  color:#fff;
  font-family: var(--font-body);
  font-size:0.85rem;
  transition: border-color 0.3s, background 0.3s;
}
.rev-form-group select option{
  background: #17070a;
  color: #fff;
}
.rev-form-group input:focus,
.rev-form-group select:focus,
.rev-form-group textarea:focus{
  outline:none;
  border-color: var(--red-light);
  background: rgba(224,24,90,0.08);
}

/* Interactive Star Rating Picker */
.star-rating-picker{
  display:flex;
  align-items:center;
  gap:8px;
  font-size:1.3rem;
  color: rgba(255,255,255,0.25);
  cursor:pointer;
  padding:8px 0;
}
.star-rating-picker i{
  transition: color 0.25s ease, transform 0.2s ease;
}
.star-rating-picker i.active,
.star-rating-picker i:hover{
  color: #ffb400;
}
.star-rating-picker i:hover{
  transform: scale(1.2);
}

.btn-submit-rev{
  flex:1;
  justify-content:center;
  padding:14px;
  font-size:0.85rem;
  letter-spacing:1px;
  text-transform:uppercase;
}

/* Inline Review Form Expandable Wrap */
.inline-review-form-wrap{
  position:relative;
  z-index:2;
  max-width:680px;
  margin:0 auto;
  max-height:0;
  overflow:hidden;
  opacity:0;
  transition: max-height 0.5s ease, opacity 0.4s ease, margin-top 0.4s ease;
}
.inline-review-form-wrap.open{
  max-height:800px;
  opacity:1;
  margin-top:40px;
}
.inline-review-card{
  background: rgba(23,9,12,0.95);
  border:1px solid rgba(224,24,90,0.3);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius:28px;
  padding:36px;
  box-shadow: 0 30px 70px rgba(0,0,0,0.7), 0 0 40px rgba(224,24,90,0.18);
}
.rev-btn-row{
  display:flex;
  align-items:center;
  gap:14px;
  margin-top:8px;
}
.btn-cancel-rev{
  padding:14px 24px;
  border-color: rgba(255,255,255,0.2);
  color: var(--text-muted);
}
.btn-cancel-rev:hover{
  background: rgba(255,255,255,0.08);
  color: #fff;
}

/* ===================== CONTACT SECTION (REDESIGNED LUXURY CONSOLE) ===================== */
.contact-section{
  position:relative;
  background:
    radial-gradient(ellipse at 15% 85%, rgba(224,24,90,0.18) 0%, transparent 45%),
    radial-gradient(ellipse at 85% 15%, rgba(140,15,40,0.22) 0%, transparent 45%),
    linear-gradient(165deg, #0e0406 0%, #17070a 50%, #0c0305 100%);
  color: var(--text-light);
  padding: 110px 48px 120px;
  overflow:hidden;
}
.contact-section::before{
  content:'';
  position:absolute;
  inset:0;
  background-image:
    linear-gradient(rgba(224,24,90,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(224,24,90,0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events:none;
  z-index:0;
}
.contact-section::after{
  content:'';
  position:absolute;
  top:0; left:0; right:0;
  height:1.5px;
  background: linear-gradient(90deg, transparent, var(--red-light), transparent);
  z-index:1;
}

/* Ambient Orbs */
.contact-orb{
  position:absolute;
  border-radius:50%;
  pointer-events:none;
  z-index:0;
  filter:blur(70px);
  opacity:0.45;
}
.contact-orb-1{
  width:420px; height:420px;
  background: radial-gradient(circle, rgba(224,24,90,0.32), transparent 70%);
  bottom:-80px; left:-60px;
}
.contact-orb-2{
  width:360px; height:360px;
  background: radial-gradient(circle, rgba(140,15,40,0.28), transparent 70%);
  top:-50px; right:-50px;
}
.contact-orb-3{
  width:280px; height:280px;
  background: radial-gradient(circle, rgba(224,24,90,0.2), transparent 70%);
  top:40%; left:50%;
  transform: translate(-50%, -50%);
}

/* Header */
.contact-header{
  position:relative;
  z-index:2;
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  margin-bottom:52px;
  gap:16px;
}
.contact-badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  background: rgba(224,24,90,0.12);
  border:1px solid rgba(224,24,90,0.28);
  color: var(--red-light);
  font-size:0.68rem;
  letter-spacing:2.5px;
  text-transform:uppercase;
  font-weight:600;
  padding:9px 20px;
  border-radius:999px;
  box-shadow: 0 0 20px rgba(224,24,90,0.15);
}
.contact-header h2{
  font-family: var(--font-serif);
  font-size:clamp(2.4rem, 4.5vw, 3.6rem);
  font-weight:800;
  line-height:1.05;
  color:#fff;
}
.contact-header h2 .script-text{
  font-family: var(--font-script);
  color: var(--red-light);
  font-weight:400;
  font-size:1.1em;
}
.contact-subheading{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  justify-content:center;
  gap:8px 10px;
  margin-top:2px;
}
.c-tag{
  color: var(--red-light);
  font-size: 0.88rem;
  font-weight: 600;
  background: rgba(224,24,90,0.12);
  border: 1px solid rgba(224,24,90,0.3);
  padding: 5px 16px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 0 14px rgba(224,24,90,0.12);
  transition: all 0.3s ease;
}
.c-tag i{ font-size:0.8rem; }
.c-tag:hover{
  background: rgba(224,24,90,0.25);
  border-color: var(--red-light);
  transform: translateY(-2px);
}
.contact-subtitle{
  font-size:0.94rem;
  color: var(--text-muted);
  max-width:580px;
  line-height:1.75;
}
.contact-tagline-badge{
  display:inline-flex;
  align-items:center;
  gap:10px;
  background: rgba(255,255,255,0.04);
  border:1px solid rgba(224,24,90,0.35);
  padding:8px 22px;
  border-radius:999px;
  color: #fff;
  font-size:0.95rem;
  font-weight:700;
  box-shadow: 0 0 25px rgba(224,24,90,0.15);
  margin-top:6px;
}
.contact-tagline-badge i{
  color: var(--red-light);
  font-size:0.8rem;
}

/* ===== Top Quick Contact Info Banner Bar ===== */
.contact-quick-bar{
  position:relative;
  z-index:2;
  max-width:1280px;
  margin:0 auto 44px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:20px;
}
.quick-info-card{
  background: rgba(255,255,255,0.035);
  border:1px solid rgba(255,255,255,0.09);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius:20px;
  padding:18px 20px;
  display:flex;
  align-items:center;
  gap:14px;
  transition: all 0.35s ease;
  position:relative;
  overflow:hidden;
  min-width:0;
  box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}
.quick-info-card:hover{
  background: rgba(255,255,255,0.065);
  border-color: rgba(224,24,90,0.45);
  transform: translateY(-4px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.4), 0 0 25px rgba(224,24,90,0.18);
}
.quick-info-card.highlight-card{
  border-color: rgba(224,24,90,0.4);
  background: rgba(224,24,90,0.07);
  box-shadow: 0 15px 35px rgba(0,0,0,0.3), 0 0 20px rgba(224,24,90,0.15);
}
.q-icon-wrap{
  width:46px; height:46px;
  border-radius:14px;
  background: rgba(224,24,90,0.15);
  border:1px solid rgba(224,24,90,0.35);
  color: var(--red-light);
  font-size:1.1rem;
  display:flex; align-items:center; justify-content:center;
  flex-shrink:0;
  transition: all 0.35s ease;
}
.quick-info-card:hover .q-icon-wrap{
  background: var(--red-light);
  color:#fff;
  transform: scale(1.08);
}
.q-text{
  display:flex;
  flex-direction:column;
  gap:2px;
  flex:1;
  min-width:0;
}
.q-label{
  font-size:0.66rem;
  letter-spacing:1.5px;
  text-transform:uppercase;
  color: var(--text-muted);
}
.q-val{
  font-size:0.86rem;
  color:#fff;
  font-weight:600;
  word-break:break-all;
  overflow-wrap:anywhere;
  line-height:1.25;
}
.q-arrow{
  font-size:0.85rem;
  color: rgba(255,255,255,0.35);
  transition: all 0.3s ease;
  flex-shrink:0;
  margin-left:6px;
}
.quick-info-card:hover .q-arrow{
  color: var(--red-light);
  transform: translate(2px, -2px);
}
.q-status-tag{
  font-size:0.68rem;
  font-weight:600;
  color: #00e676;
  background: rgba(0,230,118,0.1);
  border:1px solid rgba(0,230,118,0.25);
  padding:4px 10px;
  border-radius:999px;
  display:flex; align-items:center; gap:6px;
  flex-shrink:0;
  margin-left:6px;
}

/* ===== Main Split Console Grid ===== */
.contact-main-grid{
  position:relative;
  z-index:2;
  max-width:1280px;
  margin:0 auto;
  display:grid;
  grid-template-columns: 420px 1fr;
  gap:36px;
  align-items:stretch;
}

/* Left Portrait Block */
.contact-portrait-block{
  display:flex;
  flex-direction:column;
  gap:20px;
}
.portrait-card-frame{
  position:relative;
  border-radius:24px;
  padding:12px;
  background: rgba(255,255,255,0.035);
  border:1px solid rgba(224,24,90,0.3);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.6), 0 0 30px rgba(224,24,90,0.2);
  transition: transform 0.4s ease;
  height:100%;
  display:flex;
  flex-direction:column;
}
.portrait-card-frame:hover{
  transform: translateY(-4px);
  border-color: rgba(224,24,90,0.5);
  box-shadow: 0 40px 80px rgba(0,0,0,0.7), 0 0 45px rgba(224,24,90,0.3);
}

.portrait-glow{
  position:absolute;
  inset:0;
  border-radius:24px;
  background: radial-gradient(circle at center, rgba(224,24,90,0.35), transparent 70%);
  filter: blur(25px);
  z-index:0;
  pointer-events:none;
}

.p-bracket{
  position:absolute;
  width:16px; height:16px;
  border:2px solid var(--red-light);
  z-index:4;
  pointer-events:none;
}
.p-tl{ top:-4px; left:-4px; border-right:none; border-bottom:none; border-radius:4px 0 0 0; }
.p-tr{ top:-4px; right:-4px; border-left:none; border-bottom:none; border-radius:0 4px 0 0; }
.p-bl{ bottom:-4px; left:-4px; border-right:none; border-top:none; border-radius:0 0 0 4px; }
.p-br{ bottom:-4px; right:-4px; border-left:none; border-top:none; border-radius:0 0 4px 0; }

.portrait-img-wrap{
  position:relative;
  width:100%;
  height:100%;
  min-height:420px;
  border-radius:16px;
  overflow:hidden;
  z-index:1;
}
.portrait-img-wrap img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition: transform 0.6s ease;
}
.portrait-card-frame:hover .portrait-img-wrap img{
  transform: scale(1.05);
}
.portrait-overlay{
  position:absolute;
  inset:0;
  background: linear-gradient(180deg, transparent 40%, rgba(13,3,5,0.88) 100%);
  z-index:2;
}

.portrait-status-badge{
  position:absolute;
  top:16px; left:16px;
  z-index:3;
  background: rgba(13,3,5,0.78);
  border:1px solid rgba(224,24,90,0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding:8px 14px;
  border-radius:999px;
  display:flex; align-items:center; gap:8px;
  font-size:0.75rem; color:#fff; font-weight:600;
  box-shadow: 0 8px 20px rgba(0,0,0,0.5);
}

.portrait-img-wrap .keep-shining{
  position:absolute;
  bottom:18px; left:20px;
  z-index:3;
  font-size:1.8rem;
  color:#fff;
  text-shadow: 0 4px 14px rgba(224,24,90,0.8);
}

/* Integrated Social Bar */
.portrait-social-bar{
  background: rgba(255,255,255,0.035);
  border:1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius:20px;
  padding:16px 20px;
  display:flex;
  flex-direction:column;
  gap:10px;
  text-align:center;
}
.social-bar-label{
  font-size:0.68rem;
  letter-spacing:1.5px;
  text-transform:uppercase;
  color: var(--text-muted);
  font-weight:600;
}
.social-link-group{
  display:flex;
  justify-content:center;
  gap:12px;
}
.soc-link{
  width:42px; height:42px;
  border-radius:12px;
  background: rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.12);
  color: var(--text-light);
  font-size:1rem;
  display:flex; align-items:center; justify-content:center;
  transition: all 0.35s ease;
}
.soc-link:hover{
  background: var(--red-light);
  border-color: var(--red-light);
  color:#fff;
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(224,24,90,0.4);
}

/* Right Form Block */
.contact-form-block{
  height:100%;
}
.contact-glass-card{
  background: rgba(255,255,255,0.035);
  border:1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius:28px;
  padding:42px 40px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.5);
  position:relative;
  height:100%;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}
.contact-glass-card::before{
  content:'';
  position:absolute;
  inset:0;
  border-radius:inherit;
  padding:1.5px;
  background: linear-gradient(135deg, rgba(224,24,90,0.5), rgba(255,255,255,0.08), rgba(140,15,40,0.2));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events:none;
}
.form-card-header{
  margin-bottom:28px;
  display:flex;
  flex-direction:column;
  gap:8px;
}
.form-title-badge{
  display:inline-flex;
  align-items:center;
  gap:6px;
  font-size:0.68rem;
  letter-spacing:1.5px;
  text-transform:uppercase;
  color: var(--red-light);
  font-weight:600;
  background: rgba(224,24,90,0.1);
  padding:4px 12px;
  border-radius:999px;
  width:fit-content;
}
.form-card-header h3{
  font-family: var(--font-serif);
  font-size:1.8rem;
  font-weight:700;
  color:#fff;
}
.form-card-header p{
  font-size:0.86rem;
  color: var(--text-muted);
}

/* Form Styling */
.contact-form{
  display:flex;
  flex-direction:column;
  gap:18px;
  flex:1;
}
.contact-form .form-row{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:18px;
  margin-bottom:0;
}
.contact-form .form-group{
  display:flex;
  flex-direction:column;
  gap:8px;
}
.contact-form label{
  font-size:0.74rem;
  letter-spacing:1px;
  text-transform:uppercase;
  color: var(--text-muted);
  font-weight:500;
}
.contact-form input,
.contact-form select,
.contact-form textarea{
  width:100%;
  background: rgba(255,255,255,0.05);
  border:1px solid rgba(255,255,255,0.14);
  border-radius:12px;
  padding:14px 18px;
  color:#fff;
  font-family: var(--font-body);
  font-size:0.88rem;
  margin-bottom:0;
  transition: border-color 0.3s, background 0.3s;
}
.contact-form select option{
  background: #17070a;
  color: #fff;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder{
  color: rgba(255,255,255,0.35);
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus{
  outline:none;
  border-color: var(--red-light);
  background: rgba(224,24,90,0.08);
}
.btn-submit-contact{
  padding:16px 32px;
  font-size:0.88rem;
  letter-spacing:1px;
  text-transform:uppercase;
  justify-content:center;
  margin-top:6px;
  box-shadow: 0 10px 30px rgba(224,24,90,0.35);
}

/* ===================== FOOTER ===================== */
.site-footer{
  background:#0e0507;
  padding: 22px 50px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  font-size:0.78rem;
  color: var(--text-muted);
  border-top:1px solid rgba(255,255,255,0.06);
}
.site-footer i{color: var(--red-light);}
.footer-links a{color: var(--text-muted); transition:color 0.3s;}
.footer-links a:hover{color: var(--red-light);}

/* ===================== RESPONSIVE ===================== */

/* ── 1200px: Tablet landscape ── */
@media (max-width: 1200px){
  .gallery-grid{ columns: 3; }
  .gallery{ padding: 80px 36px 90px; }

  /* Hero */
  .hero{ grid-template-columns: 70px 1fr; padding: 40px 36px 60px; }
  .hero-image-wrap{ grid-column:1/-1; margin-top:40px; height:480px; }
  .hero-image-inner{ width:380px; height:380px; }
  .hero-image-frame{ width:100%; height:100%; }
  .hero-image-bg{ width:340px; height:340px; }
  .hero-ring{ width:420px; height:420px; }
  .hero-image-border{ width:380px; height:380px; }

  /* About */
  .about{ grid-template-columns: 1fr; padding: 60px 30px; min-height:auto; }
  .about::before{ display:none; }
  .about-rail{ display:none; }
  .stats-box{ flex-direction:row; flex-wrap:wrap; justify-content:center; padding:20px 0; gap:16px; }
  .about-card{ border-radius:24px; flex-direction:column; padding:40px 30px; box-shadow:none; }
  .about-photo{ margin-top:20px; align-self:center; }

  /* Measurements */
  .measurements{ grid-template-columns:1fr; text-align:center; padding:60px 30px; min-height:auto; }
  .measurements::before{ display:none; }
  .measure-left{ padding:0 0 40px; }
  .measure-body-row{ flex-direction:column; align-items:center; gap:24px; }
  .measure-grid{ justify-content:center; text-align:left; }
  .measure-image{ margin-bottom:40px; }
  .measure-right{ border-radius:24px; padding:40px 30px; box-shadow:none; align-items:center; }
  .measure-side-text{ display:none; }

  /* Other */
  .triple{ grid-template-columns:1fr; gap:60px; }
  .contact{ grid-template-columns:1fr; }
  .contact-photo{ min-height:400px; }

  /* Reviews */
  .reviews-grid{ grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

/* ── 1024px: Tablet portrait ── */
@media (max-width: 1024px){
  .contact-container{ grid-template-columns: 1fr; gap:36px; }
  .contact-section{ padding: 80px 30px 90px; }
  .contact-info-col{ order:2; }
  .contact-form-col{ order:1; }
  .contact-portrait-card{ max-width:480px; margin:0 auto; }
  .contact-info-grid{ grid-template-columns: 1fr 1fr; }

  /* Stats grid */
  .stats-box.stats-grid{ grid-template-columns: repeat(2, 1fr); }
}

/* ── 860px: Mobile landscape / large phone ── */
@media (max-width: 860px){
  /* Header / Nav */
  .main-nav{
    position:absolute;
    top:100%; left:0; right:0;
    background: rgba(21,7,9,0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    max-height:0;
    overflow:hidden;
    transition: max-height 0.35s ease;
    z-index:999;
  }
  .main-nav.open{ max-height:500px; }
  .main-nav ul{ flex-direction:column; gap:0; padding: 10px 20px 20px; }
  .main-nav ul li{ border-bottom:1px solid rgba(255,255,255,0.06); }
  .main-nav a{ display:block; padding:14px 0; font-size:0.9rem; }
  .header-inner{ padding:12px 20px; position:relative; }
  .logo-img{ height:36px; max-height:40px; }
  .logo-script{ font-size:1.5rem; }
  .btn-book{ padding:8px 16px; font-size:0.75rem; }

  /* Hero */
  .hero{
    grid-template-columns: 1fr;
    padding: 100px 20px 50px;
    min-height: auto;
  }
  .hero-social{ display:none; }
  .hero-content{ padding-right:0; text-align:center; }
  .hero-label{ justify-content:center; font-size:0.72rem; }
  .hero-greeting{ justify-content:center; font-size:1.2rem; }
  .hero-title{ font-size:2.4rem; text-align:center; }
  .hero-text{ max-width:100%; text-align:center; margin:0 auto 30px; }
  .hero-buttons{ justify-content:center; }
  #profile-location-text{ justify-content:center; margin-top:30px; }
  .hero-image-wrap{
    grid-column: 1 / -1;
    margin-top:36px;
    height:360px;
    min-height:unset;
  }
  .hero-image-inner{ width:300px; height:300px; }
  .hero-image-border{ width:300px; height:300px; }
  .hero-image-bg{ width:270px; height:270px; }
  .hero-ring{ width:340px; height:340px; }
  .hero-side-text{ display:none; }
  .badge-top{ top:-10px; right:-5px; font-size:0.75rem; padding:8px 12px; }
  .badge-bottom{ bottom:-10px; left:-5px; font-size:0.75rem; padding:8px 12px; }

  /* About stats */
  .stats-box.stats-grid{ grid-template-columns: repeat(2, 1fr); gap:14px; }
  .stat-item{ padding:16px; }

  /* Services */
  .services-grid{ grid-template-columns: 1fr; }
  .service-item{ padding:18px 20px; }

  /* Mobile Gallery 3 Independent Swipable Rows */
  .gallery-header{ align-items:center; text-align:center; }
  .gallery-grid{ display:none !important; }
  .mobile-gallery-container{
    display:flex;
    flex-direction:column;
    gap:22px;
    width:100%;
    margin-top:14px;
  }
  .mobile-row-block{
    display:flex;
    flex-direction:column;
    gap:10px;
    width:100%;
  }
  .mobile-row-header{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:0 4px;
  }
  .mobile-row-title{
    display:flex;
    align-items:center;
    gap:8px;
    font-family: var(--font-serif);
    font-size:0.92rem;
    font-weight:700;
    color:#fff;
    letter-spacing:0.5px;
  }
  .mobile-row-title i{
    color: var(--red-light);
    font-size:0.85rem;
  }
  .swipe-corner-text{
    font-size: 0.64rem;
    color: var(--text-muted);
    font-weight: 500;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    opacity: 0.85;
  }
  .swipe-corner-text i{
    color: var(--red-light);
    font-size: 0.58rem;
  }
  .mobile-row-badge{ display:none !important; }
  .mobile-row-track{
    display:flex;
    gap:10px;
    overflow-x:auto;
    overflow-y:hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom:2px;
    scroll-behavior:smooth;
    width:100%;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .mobile-row-track::-webkit-scrollbar{
    display:none !important;
    width:0 !important;
    height:0 !important;
  }
  .mob-gal-card{
    flex: 0 0 calc((100% - 10px) / 2);
    width: calc((100% - 10px) / 2);
    scroll-snap-align: start;
    position:relative;
    border-radius:16px;
    overflow:hidden;
    background: rgba(255,255,255,0.035);
    border:1px solid rgba(255,255,255,0.14);
    box-shadow: 0 14px 30px rgba(0,0,0,0.5);
    cursor:pointer;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  }
  .mob-gal-card:active{
    transform: scale(0.96);
    border-color: var(--red-light);
    box-shadow: 0 0 24px rgba(224,24,90,0.4);
  }
  .mob-card-img-wrap{
    position:relative;
    width:100%;
    aspect-ratio: 4 / 5;
    overflow:hidden;
  }
  .mob-card-img-wrap img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    filter: saturate(1.08) brightness(0.95);
    transition: transform 0.4s ease;
  }
  .mob-card-badge{
    position:absolute;
    top:8px;
    right:8px;
    z-index:3;
    font-size:0.56rem;
    color:#fff;
    background: rgba(21,7,9,0.82);
    border:1px solid rgba(224,24,90,0.45);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding:3px 8px;
    border-radius:999px;
    font-weight:500;
    box-shadow: 0 4px 12px rgba(0,0,0,0.4);
  }
  .mob-card-overlay{
    position:absolute;
    bottom:0;
    left:0;
    right:0;
    z-index:3;
    padding:14px 10px 10px;
    background: linear-gradient(to top, rgba(12,4,7,0.96) 0%, rgba(12,4,7,0.72) 65%, transparent 100%);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    display:flex;
    flex-direction:column;
    gap:3px;
    border-top:1px solid rgba(255,255,255,0.06);
  }
  .mob-card-overlay h4{
    font-family: var(--font-serif);
    font-size:0.78rem;
    font-weight:600;
    color:#fff;
    line-height:1.2;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
    margin:0;
  }
  .mob-card-zoom{
    font-size:0.62rem;
    color: var(--red-light);
    font-weight:500;
    display:inline-flex;
    align-items:center;
    gap:4px;
  }
  .gallery-subtitle{ max-width:100%; }
  .gallery-filters{ flex-wrap:wrap; border-radius:20px; padding:6px; gap:4px; justify-content:center; }
  .filter-btn{ font-size:0.75rem; padding:8px 14px; }

  /* Reviews — switch to marquee on mobile */
  .reviews-grid,
  .desktop-reviews-grid{ display:none !important; }
  .reviews-marquee-wrapper{ display:flex; width:100%; }
  .mobile-reviews-marquee{ display:flex !important; flex-direction:column; gap:16px; width:100%; }
  .reviews-section{ padding: 44px 0 52px; }
  .review-header{ text-align:center; padding:0 16px; }
  .review-stats-bar{ flex-direction:column; gap:20px; text-align:center; padding:24px 20px; margin:0 16px 20px; }
  .rev-stat-divider{ display:none; }
  .marquee-track .review-card{
    flex: 0 0 240px;
    max-width: 260px;
    min-width: 220px;
  }
  /* Soft edge fade mask */
  .marquee-row{
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  }
  .review-cta-wrap{ padding: 0 16px; }

  /* Contact */
  .contact-section{ padding: 60px 20px 70px; }
  .contact-header{ margin-bottom:36px; }
  .contact-quick-bar{ grid-template-columns: 1fr; gap:12px; margin-bottom:32px; }
  .quick-info-card{ padding:16px 18px; }
  .contact-main-grid{ grid-template-columns: 1fr; gap:28px; }
  .contact-portrait-block{ max-width:380px; margin:0 auto; width:100%; }
  .portrait-img-wrap{ min-height:300px; height:320px; }
  .contact-glass-card{ padding:32px 24px; border-radius:24px; }
  .contact-form .form-row{ grid-template-columns: 1fr; gap:14px; }

  /* Footer */
  .site-footer{ flex-direction:column; gap:10px; text-align:center; padding:20px; }
}

/* ── 640px: Standard mobile ── */
@media (max-width: 640px){
  /* Sections general */
  section{ scroll-margin-top: 60px; }

  /* Hero */
  .hero{ padding: 90px 16px 44px; }
  .hero-title{ font-size:2rem; }
  .hero-greeting{ font-size:1.05rem; flex-wrap:wrap; }
  .hero-greeting .script-greeting{ font-size:1.4em; }
  .hero-label{ font-size:0.68rem; letter-spacing:2px; }
  .hero-text{ font-size:0.85rem; }
  .hero-image-inner{ width:260px; height:260px; }
  .hero-image-border{ width:260px; height:260px; }
  .hero-image-bg{ width:230px; height:230px; }
  .hero-ring{ width:295px; height:295px; }
  .hero-badge{ gap:8px; padding:8px 12px; border-radius:12px; }
  .hero-badge strong{ font-size:0.88rem; }
  .hero-badge span{ font-size:0.68rem; }

  /* About */
  .about{ padding: 50px 16px; }
  .stats-box.stats-grid{ grid-template-columns: repeat(2, 1fr); gap:10px; }
  .stat-item h3{ font-size:1.4rem; }
  .stat-item p{ font-size:0.75rem; }
  .about-card{ padding:28px 18px; }
  .about-heading{ font-size:1.9rem; }
  .about-text{ font-size:0.87rem; }
  .polaroid{ width:220px; }
  .polaroid img{ height:260px; }
  .badge-stamp{ width:90px; height:90px; }

  /* Measurements */
  .measurements{ padding: 50px 16px; }
  .measure-right{ padding:28px 18px; }
  .available-list.services-grid{ gap:12px; }
  .service-item{ padding:14px 16px; gap:10px; }
  .service-number{ font-size:1rem; min-width:28px; }
  .measure-image img{ border-radius:16px; }
  .body-icon{ max-width:140px; }

  /* Gallery */
  .gallery{ padding: 50px 16px 60px; }
  .gal-lb-nav{ display:none; }
  .gallery h2{ font-size:1.8rem; }
  .gallery-filters{ gap:6px; }
  .filter-btn{ font-size:0.72rem; padding:7px 12px; }

  /* Reviews */
  .reviews-section{ padding: 50px 16px 60px; }
  .reviews-grid{ grid-template-columns: 1fr; }
  .review-card{ padding:20px 18px; }
  .review-header h2{ font-size:1.8rem; }
  .rev-rating-num{ font-size:2.4rem; }
  .review-modal-inner{ padding:28px 18px; border-radius:20px; }
  .rev-form-row{ flex-direction:column; gap:16px; }
  .star-rating-picker i{ font-size:1.5rem; }

  /* Contact */
  .contact-section{ padding: 44px 14px 54px; }
  .contact-header h2{ font-size:1.9rem; }
  .c-tag{ font-size:0.76rem; padding:3px 10px; }
  .contact-tagline-badge{ font-size:0.84rem; padding:6px 16px; }
  .portrait-img-wrap{ min-height:260px; height:280px; }
  .contact-glass-card{ padding:22px 16px; border-radius:20px; }
  .form-card-header h3{ font-size:1.35rem; }
  .contact-form label{ font-size:0.75rem; }
  .contact-form input,
  .contact-form select,
  .contact-form textarea{ font-size:16px; padding:12px 14px; border-radius:12px; }
  .btn-submit-contact{ width:100%; min-height:46px; border-radius:12px; }

  /* Footer */
  .site-footer{ font-size:0.72rem; padding:16px; gap:8px; }
  .footer-links{ display:flex; gap:10px; flex-wrap:wrap; justify-content:center; }
}

/* ── 480px: Small mobile ── */
@media (max-width: 480px){
  /* Hero */
  .hero{ padding: 84px 14px 38px; }
  .hero-title{ font-size:1.75rem; line-height:1.12; }
  .hero-image-inner{ width:230px; height:230px; }
  .hero-image-border{ width:230px; height:230px; }
  .hero-image-bg{ width:200px; height:200px; }
  .hero-ring{ width:260px; height:260px; }
  .hero-glow{ width:280px; height:280px; }
  .badge-top{ top:-16px; right:0; transform:scale(0.88); transform-origin:top right; }
  .badge-bottom{ bottom:-16px; left:0; transform:scale(0.88); transform-origin:bottom left; }

  /* About */
  .stats-box.stats-grid{ grid-template-columns: 1fr 1fr; gap:8px; }
  .stat-item{ padding:14px 10px; border-radius:14px; }
  .stat-item h3{ font-size:1.25rem; }

  /* Measurements */
  .body-icon{ max-width:120px; }
  .m-item{ gap:8px; }
  .m-value{ font-size:0.82rem; }

  /* Gallery */
  .gallery-filters{ gap:4px; }
  .filter-btn{ font-size:0.68rem; padding:6px 10px; }

  /* Reviews */
  .reviews-grid{ gap:14px; }
  .review-card{ padding:16px 14px; border-radius:16px; }
  .review-quote{ font-size:0.83rem; }
  .author-avatar{ width:38px; height:38px; }
  .author-name{ font-size:0.85rem; }
  .author-role{ font-size:0.72rem; }
  .review-modal-inner{ padding:22px 14px; margin:16px; border-radius:18px; }
  .review-modal-inner h3{ font-size:1.3rem; }

  /* Contact */
  .contact-glass-card{ padding:20px 14px; border-radius:18px; }
  .btn-submit-contact{ padding:14px 18px; font-size:0.85rem; }
  .contact-header h2{ font-size:1.65rem; }
  .c-tag{ font-size:0.72rem; padding:3px 8px; }
  .contact-subtitle{ font-size:0.84rem; }


  /* Buttons */
  .btn{ padding:12px 20px; font-size:0.8rem; gap:8px; }
}

/* ── 375px: iPhone SE / Very small ── */
@media (max-width: 375px){
  /* Header */
  .logo-img{ height:30px; max-height:34px; }
  .logo-script{ font-size:1.3rem; }
  .btn-book{ display:none; }

  /* Hero */
  .hero{ padding:78px 12px 34px; }
  .hero-title{ font-size:1.55rem; }
  .hero-greeting{ font-size:0.95rem; }
  .hero-label{ font-size:0.62rem; letter-spacing:1.5px; }
  .hero-image-inner{ width:200px; height:200px; }
  .hero-image-border{ width:200px; height:200px; }
  .hero-image-bg{ width:175px; height:175px; }
  .hero-ring{ width:228px; height:228px; }
  .hero-glow{ width:240px; height:240px; }
  .hero-text{ font-size:0.8rem; }
  .hero-badge{ gap:6px; padding:6px 10px; }
  .hero-badge strong{ font-size:0.8rem; }
  .hero-badge span{ font-size:0.62rem; }
  #profile-location-text{ font-size:0.75rem; margin-top:22px; }

  /* About */
  .about{ padding:44px 12px; }
  .stats-box.stats-grid{ gap:6px; }
  .stat-item{ padding:12px 8px; }
  .stat-item h3{ font-size:1.1rem; }
  .about-heading{ font-size:1.65rem; }
  .about-text{ font-size:0.82rem; }
  .polaroid{ width:190px; }
  .polaroid img{ height:220px; }

  /* Measurements */
  .measurements{ padding:44px 12px; }
  .service-item{ padding:12px 14px; }
  .body-icon{ max-width:100px; }

  /* Gallery */
  .gallery{ padding: 44px 12px 50px; }
  .gallery h2{ font-size:1.6rem; }

  /* Reviews */
  .reviews-section{ padding:44px 12px 50px; }
  .review-card{ padding:14px 12px; }
  .review-modal-inner{ margin:12px; padding:18px 12px; }

  /* Contact */
  .contact-section{ padding:36px 10px 44px; }
  .contact-header h2{ font-size:1.5rem; }
  .c-tag{ font-size:0.68rem; padding:2px 8px; }
  .contact-tagline-badge{ font-size:0.78rem; padding:5px 12px; }
  .quick-info-card{ padding:12px 14px; gap:10px; }
  .q-icon-wrap{ width:36px; height:36px; font-size:0.9rem; border-radius:10px; }
  .q-val{ font-size:0.78rem; }
  .portrait-img-wrap{ min-height:240px; height:250px; }
  .contact-glass-card{ padding:18px 12px; }
  .form-card-header h3{ font-size:1.2rem; }



  /* Footer */
  .site-footer{ padding:14px 12px; font-size:0.68rem; }
}

