/* ===== ROOT ===== */
:root {
  --gold: #d4af37;
  --gold-light: #f5d061;
  --gold-dark: #a8861d;
  --gold-grad: linear-gradient(135deg, #a8861d 0%, #f5d061 40%, #fffbe6 60%, #d4af37 80%, #a8861d 100%);
  --gold-grad-simple: linear-gradient(135deg, #c6941a 0%, #f5d061 50%, #c6941a 100%);
  --black: #000;
  --dark:  #0a0a0a;
  --dark2: #111;
  --dark3: #1a1a1a;
  --white: #fff;
  --gray:  #888;
  --gray2: #555;
  --border: rgba(212,175,55,.15);
  --shadow-gold: 0 0 40px rgba(212,175,55,.15);
  --ff-display: 'Cormorant Garamond', Georgia, serif;
  --ff-script: 'Anton', sans-serif;
  --ff-bold: 'Bebas Neue', sans-serif;
  --ff-body: 'Inter', -apple-system, sans-serif;
  --ease: all .3s cubic-bezier(.4,0,.2,1);
}

/* ===== PRELOADER — MODA-style: zoomed-in glossy pole pulls back,
   logo fades in across it, site reveals automatically ===== */
.preloader {
  position: fixed; inset: 0; z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.preloader-curtain {
  position: absolute; left: 0; right: 0; height: 50%;
  background: var(--black); /* video blacks are crushed to pure #000 in the encode — seamless */
  transition: transform 1s cubic-bezier(0.76, 0, 0.24, 1);
}
.preloader-curtain.top    { top: 0; }
.preloader-curtain.bottom { bottom: 0; }
.preloader.hidden .preloader-curtain.top    { transform: translateY(-100%); }
.preloader.hidden .preloader-curtain.bottom { transform: translateY(100%); }

.preloader-inner {
  position: absolute; inset: 0; z-index: 1;
  display: flex; align-items: center; justify-content: center;
  transition: opacity .45s ease, transform .45s ease;
}
.preloader.hidden .preloader-inner { opacity: 0; transform: scale(1.06); }

/* AI-rendered pole still — element hugs the image's aspect so the
   side feather tracks the content, melting stripes into the black page.
   The pull-back is a CSS animation rather than video: iOS blocks <video>
   autoplay in Low Power Mode and inside in-app browsers (Instagram,
   Snapchat, Facebook), where CSS animation always runs. */
.preloader-vid {
  height: 100%; width: auto;
  aspect-ratio: 720 / 1280;
  max-width: 100%;
  object-fit: cover;
  background: var(--black);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 13%, #000 87%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 13%, #000 87%, transparent 100%);
  animation: poleReveal 2.6s cubic-bezier(0.22, 0.61, 0.36, 1) both;
  will-change: transform;
}
@keyframes poleReveal {
  0%   { transform: scale(1.55); opacity: 0; }
  18%  { opacity: 1; }
  100% { transform: scale(1); opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .preloader-vid { animation: fadeIn .6s ease both; }
}

/* ---- logo overlaid across the pole, MODA-style ---- */
.preloader-text {
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  display: flex; flex-direction: column; align-items: center;
  white-space: nowrap;
  opacity: 0;
  animation: fadeIn .9s ease 1.5s forwards;
  z-index: 3;
}
.preloader-logo {
  display: flex; align-items: baseline; gap: 16px;
  filter: drop-shadow(0 4px 18px rgba(0,0,0,.9)) drop-shadow(0 0 2px rgba(0,0,0,.9));
}
.preloader-logo .hero-title-yl   { font-size: 76px; }
.preloader-logo .hero-title-blendz { font-size: 76px; letter-spacing: 14px; text-shadow: 0 4px 18px rgba(0,0,0,.95); }
.preloader-tag {
  margin-top: 10px;
  font-family: var(--ff-display); font-style: italic; font-weight: 600;
  font-size: 21px; letter-spacing: 1px;
  color: var(--gold-light);
  text-shadow: 0 2px 12px rgba(0,0,0,.95);
}
body.splash-locked { overflow: hidden; }

@media (max-width: 640px) {
  .preloader-logo .hero-title-yl,
  .preloader-logo .hero-title-blendz { font-size: 44px; letter-spacing: 8px; }
  .preloader-tag { font-size: 16px; }
}

/* ===== RESET ===== */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; font-size:16px; }
body { font-family:var(--ff-body); background:var(--black); color:var(--white); line-height:1.6; overflow-x:hidden; }
h1,h2,h3,h4 { font-family:var(--ff-display); font-weight:700; line-height:1.15; }
a { color:inherit; text-decoration:none; }
img { max-width:100%; display:block; }
button { font-family:var(--ff-body); }

/* ===== LAYOUT ===== */
.container { max-width:1200px; margin:0 auto; padding:0 28px; }
.section { padding:108px 0; }

/* ===== GOLD TEXT ===== */
.gold-text,
.logo-yl,
.hero-title-yl,
.service-price,
.stat-number,
.team-name,
.footer-logo .logo-yl {
  background: var(--gold-grad);
  background-size: 300% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s linear infinite;
}
@keyframes shimmer { to { background-position: 300% center; } }

/* ===== SECTION HEADERS ===== */
.section-header { text-align:center; margin-bottom:64px; }
.section-header.left { text-align:left; }
.section-label {
  display:block;
  font-size:11px; font-weight:700;
  letter-spacing:3.5px; text-transform:uppercase;
  color:var(--gold); margin-bottom:12px;
}
.section-title { font-size:clamp(30px,5vw,48px); color:var(--white); margin-bottom:12px; }
.section-desc { font-size:15px; color:var(--gray); max-width:500px; margin:0 auto; }

/* ===== BUTTONS ===== */
.btn {
  display:inline-flex; align-items:center; justify-content:center;
  padding:15px 36px; border-radius:3px; border:none; cursor:pointer;
  font-size:13px; font-weight:700; letter-spacing:2px; text-transform:uppercase;
  transition:var(--ease);
}
.btn-primary {
  background:var(--gold-grad-simple); background-size:200% auto;
  color:var(--black);
  box-shadow:0 4px 20px rgba(212,175,55,.3);
}
.btn-primary:hover { background-position:right center; transform:translateY(-2px); box-shadow:0 8px 32px rgba(212,175,55,.5); }
.btn-outline { background:transparent; color:var(--white); border:1px solid rgba(255,255,255,.3); }
.btn-outline:hover { border-color:var(--gold); color:var(--gold); transform:translateY(-2px); }
.btn-large { padding:18px 52px; font-size:14px; }

/* ===== NAV ===== */
.nav {
  position:fixed; top:0; left:0; right:0; z-index:1000;
  padding:22px 0; transition:var(--ease);
}
.nav.scrolled {
  background:rgba(0,0,0,.94);
  backdrop-filter:blur(20px);
  padding:14px 0;
  border-bottom:1px solid var(--border);
}
.nav-container {
  max-width:1200px; margin:0 auto; padding:0 28px;
  display:flex; align-items:center; justify-content:space-between;
}
.nav-logo {
  display:flex; align-items:center; gap:4px;
  font-size:22px; letter-spacing:.5px;
}
.nav-logo .logo-yl {
  font-family:var(--ff-script); font-size:22px; font-weight:400;
  line-height:1; letter-spacing:1px;
}
.nav-logo .logo-blendz {
  font-family:var(--ff-bold); font-size:20px; letter-spacing:2px;
}
.logo-blendz { color:var(--white); }
.nav-links { display:flex; align-items:center; list-style:none; gap:36px; }
.nav-links a {
  font-size:12px; font-weight:600; letter-spacing:1.5px; text-transform:uppercase;
  color:rgba(255,255,255,.65); transition:var(--ease);
}
.nav-links a:hover { color:var(--gold); }
.nav-cta {
  background:var(--gold-grad-simple) !important;
  background-size:200% auto !important;
  color:var(--black) !important;
  padding:9px 22px; border-radius:2px;
}
.nav-cta:hover { background-position:right center !important; }
.nav-toggle {
  display:none; flex-direction:column; gap:5px;
  background:none; border:none; cursor:pointer; padding:4px; z-index:1001;
}
.nav-toggle span { display:block; width:24px; height:2px; background:var(--white); transition:var(--ease); border-radius:2px; }
.nav-toggle.open span:nth-child(1) { transform:translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity:0; }
.nav-toggle.open span:nth-child(3) { transform:translateY(-7px) rotate(-45deg); }

/* ===== HERO ===== */
.hero {
  position:relative; min-height:100vh;
  display:flex; align-items:center; justify-content:center;
  overflow:hidden; background:var(--black);
}
.hero::after {
  content: '';
  position: absolute; inset: 0; z-index: 2;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 300px 300px;
  opacity: .04;
}
.hero-media { position:absolute; inset:0; z-index:0; }
.hero-media video {
  width:100%; height:100%;
  object-fit:cover; object-position:center 35%;
  filter:brightness(.9) saturate(.92);
}
/* Animated-WebP stand-in, swapped in only when autoplay is refused */
.hero-still { display:none; }
.hero-media.no-autoplay video { display:none; }
.hero-media.no-autoplay .hero-still {
  display:block;
  width:100%; height:100%;
  object-fit:cover; object-position:center 35%;
  filter:brightness(.9) saturate(.92);
}
.hero-media::after {
  content:''; position:absolute; inset:0;
  background:linear-gradient(180deg, rgba(0,0,0,.68) 0%, rgba(0,0,0,.42) 45%, rgba(0,0,0,.88) 100%);
}
.hero-bg {
  position:absolute; inset:0;
  background:
    radial-gradient(ellipse at 15% 55%, rgba(212,175,55,.09) 0%, transparent 50%),
    radial-gradient(ellipse at 85% 20%, rgba(212,175,55,.06) 0%, transparent 40%),
    radial-gradient(ellipse at 55% 85%, rgba(212,175,55,.05) 0%, transparent 35%);
}
.hero-content {
  position:relative; z-index:1;
  text-align:center; padding:0 28px; max-width:960px;
}
.hero-tagline {
  font-size:11px; font-weight:700; letter-spacing:4px; text-transform:uppercase;
  color:var(--gold); margin-bottom:20px;
  opacity:0; animation:fadeUp .8s ease .2s forwards;
}
.hero-title {
  line-height:1; margin-bottom:20px;
  overflow:visible;
  opacity:0; animation:fadeUp .8s ease .4s forwards;
}
.hero-title-yl {
  display:block;
  font-family:var(--ff-script);
  font-size:clamp(56px,9vw,108px);
  font-weight:400;
  line-height:1;
  letter-spacing:4px;
}
.hero-title-blendz {
  display:block;
  font-family:var(--ff-bold);
  font-size:clamp(68px,14vw,150px);
  color:var(--white);
  letter-spacing:5px;
  line-height:.88;
  -webkit-text-fill-color: var(--white);
  background: none;
}
.hero-sub {
  font-size:18px; font-family:var(--ff-display); font-style:italic; color:var(--gray);
  margin-bottom:28px;
  opacity:0; animation:fadeUp .8s ease .55s forwards;
}
.hero-rating {
  display:inline-flex; align-items:center; gap:10px;
  background:rgba(212,175,55,.07);
  border:1px solid rgba(212,175,55,.22);
  border-radius:100px; padding:9px 24px; margin-bottom:40px;
  opacity:0; animation:fadeUp .8s ease .68s forwards;
}
.hero-rating .stars { color:var(--gold); font-size:15px; letter-spacing:2px; }
.hero-rating span:last-child { font-size:13px; color:rgba(255,255,255,.65); }
.hero-btns {
  display:flex; gap:14px; justify-content:center; flex-wrap:wrap;
  opacity:0; animation:fadeUp .8s ease .8s forwards;
}
.hero-scroll {
  position:absolute; bottom:36px; left:50%; transform:translateX(-50%);
  display:flex; flex-direction:column; align-items:center; gap:8px;
  opacity:0; animation:fadeIn 1s ease 1.2s forwards;
}
.hero-scroll span { font-size:9px; letter-spacing:3px; text-transform:uppercase; color:rgba(255,255,255,.35); }
.scroll-line {
  width:1px; height:44px;
  background:linear-gradient(to bottom, rgba(212,175,55,.7), transparent);
  animation:scrollPulse 2s ease infinite;
}
@keyframes scrollPulse { 0%,100%{opacity:1;transform:scaleY(1);transform-origin:top} 50%{opacity:.4} }
@keyframes fadeUp { from{opacity:0;transform:translateY(28px)} to{opacity:1;transform:translateY(0)} }
@keyframes fadeIn  { from{opacity:0} to{opacity:1} }

/* ===== SERVICES ===== */
.services {
  position: relative;
  background: url('../images/gallery/shop/2025-09-11.webp') center/cover no-repeat;
}
.services::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(0,0,0,.82);
  z-index: 0;
}
.services .container { position: relative; z-index: 1; }
.services-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:20px; }
.service-card {
  background:var(--dark2); border:1px solid var(--border); border-radius:4px;
  padding:44px 26px; text-align:center;
  position:relative; overflow:hidden;
  transition:var(--ease);
}
.service-card::after {
  content:''; position:absolute; bottom:0; left:0; right:0; height:2px;
  background:var(--gold-grad-simple); transform:scaleX(0); transition:var(--ease);
}
.service-card:hover { border-color:rgba(212,175,55,.4); transform:translateY(-5px); box-shadow:var(--shadow-gold); }
.service-card:hover::after { transform:scaleX(1); }
.service-card.featured {
  border-color:rgba(212,175,55,.38);
  background:linear-gradient(160deg,rgba(212,175,55,.07),#0a0a0a 60%);
}
.service-card.featured::after { transform:scaleX(1); }
.service-badge {
  position:absolute; top:18px; right:18px;
  font-size:9px; font-weight:800; letter-spacing:1.5px; text-transform:uppercase;
  color:var(--black); background:var(--gold-grad-simple);
  padding:4px 12px; border-radius:100px;
}
.service-icon { width:52px; height:52px; margin:0 auto 22px; color:var(--gold); }
.service-icon svg { width:100%; height:100%; }
.service-card h3 { font-size:24px; margin-bottom:10px; }
.service-card p { font-size:14px; color:var(--gray); line-height:1.75; margin-bottom:28px; }
.service-price { font-family:var(--ff-display); font-size:38px; font-weight:700; }
.service-price span { font-family:var(--ff-body); font-size:14px; font-weight:500; color:var(--gray); letter-spacing:.5px; }

/* ===== GALLERY ===== */
.gallery-section { background:var(--black); }
.gallery-tabs {
  display:flex; gap:4px; justify-content:center; margin-bottom:40px;
  background:var(--dark2); border:1px solid var(--border);
  border-radius:4px; padding:4px;
  width:fit-content; margin-left:auto; margin-right:auto;
}
.gallery-tab {
  padding:10px 36px; border:none; border-radius:3px;
  background:transparent; color:var(--gray);
  font-size:12px; font-weight:700; letter-spacing:2px; text-transform:uppercase;
  cursor:pointer; transition:var(--ease);
}
.gallery-tab.active { background:var(--gold-grad-simple); color:var(--black); }
.gallery-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(270px,1fr)); gap:10px; }
.gallery-item {
  aspect-ratio:1; overflow:hidden; border-radius:3px;
  cursor:pointer; position:relative;
  background:var(--dark3); border:1px solid var(--border);
}
.gallery-item img { width:100%; height:100%; object-fit:cover; transition:transform .5s ease; }
.gallery-item:hover img { transform:scale(1.06); }
.gallery-overlay {
  position:absolute; inset:0; background:rgba(0,0,0,.45);
  display:flex; align-items:center; justify-content:center;
  opacity:0; transition:var(--ease);
}
.gallery-item:hover .gallery-overlay { opacity:1; }
.gallery-overlay svg { width:30px; height:30px; color:var(--white); }
.gallery-item.is-video { grid-row:span 2; aspect-ratio:auto; cursor:default; }
.gallery-item.is-video video {
  width:100%; height:100%; object-fit:cover; display:block;
}
.gallery-video-badge {
  position:absolute; left:14px; bottom:14px;
  padding:6px 14px; border-radius:2px;
  background:var(--gold-grad-simple); color:var(--black);
  font-size:10px; font-weight:800; letter-spacing:2px; text-transform:uppercase;
  pointer-events:none;
}
.gallery-placeholder {
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  gap:10px; color:rgba(255,255,255,.18); text-align:center; padding:24px; height:100%;
}
.gallery-placeholder svg { width:38px; height:38px; }
.gallery-placeholder p { font-size:12px; line-height:1.5; }
.gallery-hint { text-align:center; color:rgba(255,255,255,.22); font-size:12px; margin-top:16px; }

/* ===== LIGHTBOX ===== */
.lightbox {
  position:fixed; inset:0; background:rgba(0,0,0,.96);
  z-index:2000; display:none;
  align-items:center; justify-content:center;
}
.lightbox.active { display:flex; }
.lightbox-img { max-width:90vw; max-height:85vh; object-fit:contain; border-radius:3px; }
.lightbox-close,.lightbox-prev,.lightbox-next {
  position:absolute; background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.18); color:var(--white);
  cursor:pointer; display:flex; align-items:center; justify-content:center;
  transition:var(--ease); border-radius:50%;
}
.lightbox-close { top:20px; right:20px; width:44px; height:44px; font-size:22px; }
.lightbox-prev,.lightbox-next { top:50%; transform:translateY(-50%); width:50px; height:50px; font-size:30px; }
.lightbox-prev { left:20px; }
.lightbox-next { right:20px; }
.lightbox-close:hover,.lightbox-prev:hover,.lightbox-next:hover { background:rgba(212,175,55,.2); border-color:var(--gold); }

/* ===== BEFORE & AFTER ===== */
.ba-section { background: var(--dark); }
.ba-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }

.ba-slider {
  position: relative; overflow: hidden;
  border-radius: 4px; border: 1px solid var(--border);
  aspect-ratio: 3/4; cursor: ew-resize;
  user-select: none; -webkit-user-select: none;
}

/* After image — full width base layer */
.ba-after { position: absolute; inset: 0; }
.ba-after img { width: 100%; height: 100%; object-fit: cover; }

/* Before image — clipped to left portion */
.ba-before {
  position: absolute; inset: 0;
  width: 50%;
  overflow: hidden;
  transition: width 0s;
}
.ba-before img { width: 100%; height: 100%; object-fit: cover; min-width: 200px; }

/* Labels */
.ba-label {
  position: absolute; bottom: 16px;
  font-size: 11px; font-weight: 800; letter-spacing: 2.5px;
  text-transform: uppercase; padding: 5px 12px;
  border-radius: 2px; z-index: 3;
}
.before-label { left: 12px; background: rgba(0,0,0,.7); color: #fff; border: 1px solid rgba(255,255,255,.3); }
.after-label  { right: 12px; background: var(--gold-grad-simple); color: var(--black); }

/* Handle */
.ba-handle {
  position: absolute; top: 0; bottom: 0; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center;
  z-index: 4; cursor: ew-resize;
}
.ba-line { width: 2px; flex: 1; background: var(--white); opacity: .9; }
.ba-circle {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--gold-grad-simple);
  border: 3px solid var(--white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,.5);
  flex-shrink: 0;
}
.ba-circle svg { width: 20px; height: 20px; color: var(--black); }

/* Drag hint */
.ba-hint {
  position: absolute; bottom: 52px; left: 50%; transform: translateX(-50%);
  background: rgba(0,0,0,.65); border: 1px solid rgba(255,255,255,.2);
  border-radius: 100px; padding: 5px 14px;
  font-size: 11px; font-weight: 600; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--white);
  white-space: nowrap; z-index: 5;
  transition: opacity .4s ease; pointer-events: none;
}

/* Placeholder */
.ba-placeholder {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 12px; background: var(--dark3);
  color: rgba(255,255,255,.2); text-align: center; padding: 24px;
}
.ba-placeholder svg { width: 40px; height: 40px; }
.ba-placeholder p { font-size: 12px; line-height: 1.6; }

@media (max-width: 768px) {
  .ba-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
}

/* ===== TEAM ===== */
.team-section { background:var(--dark); }
.team-card {
  display:grid; grid-template-columns:340px 1fr; gap:64px; align-items:center;
  max-width:880px; margin:0 auto;
}
.team-photo {
  aspect-ratio:3/4; border-radius:4px; overflow:hidden;
  position:relative; background:var(--dark3); border:1px solid var(--border);
}
.team-photo img { width:100%; height:100%; object-fit:cover; }
.team-photo-placeholder {
  position:absolute; inset:0; display:none;
  align-items:center; justify-content:center;
  font-family:var(--ff-display); font-size:128px; font-weight:900;
}
.team-name { font-size:52px; margin-bottom:6px; }
.team-role { font-size:12px; font-weight:700; letter-spacing:2.5px; text-transform:uppercase; color:var(--gold); margin-bottom:24px; }
.team-divider { width:44px; height:2px; background:var(--gold-grad-simple); margin-bottom:24px; }
.team-bio { font-size:16px; color:var(--gray); line-height:1.8; margin-bottom:36px; font-style:italic; }
.team-stats {
  display:flex; gap:36px; margin-bottom:32px;
  padding:20px 0; border-top:1px solid var(--border); border-bottom:1px solid var(--border);
}
.stat { text-align:center; }
.stat-number { display:block; font-family:var(--ff-display); font-size:30px; font-weight:700; }
.stat-label { font-size:10px; letter-spacing:1.5px; text-transform:uppercase; color:var(--gray); }
.team-instagram {
  display:inline-flex; align-items:center; gap:10px;
  color:var(--gold); font-size:13px; font-weight:600; transition:var(--ease);
}
.team-instagram:hover { opacity:.7; }

/* ===== REVIEWS ===== */
.reviews-section { background:var(--black); }
.reviews-badge { display:inline-flex; align-items:center; gap:10px; margin-top:14px; }
.badge-stars { color:var(--gold); font-size:20px; letter-spacing:2px; }
.badge-num { font-family:var(--ff-display); font-size:28px; font-weight:700; }
.badge-count { font-size:13px; color:var(--gray); }
.testimonials-wrapper { overflow:hidden; position:relative; }
.testimonials-track { display:flex; transition:transform .55s cubic-bezier(.4,0,.2,1); }
.testimonial-card {
  flex:0 0 100%; padding:56px 56px 48px;
  background:var(--dark2); border:1px solid var(--border); border-radius:4px;
  position:relative;
}
.t-quote {
  font-size:96px; line-height:1; color:var(--gold); opacity:.2;
  font-family:var(--ff-display); position:absolute; top:16px; left:44px;
}
.t-text {
  font-size:18px; font-family:var(--ff-display); font-style:italic;
  line-height:1.75; color:var(--white); margin-bottom:28px;
  position:relative; z-index:1;
}
.t-stars { color:var(--gold); font-size:15px; letter-spacing:2px; margin-bottom:10px; }
.t-author { font-size:12px; font-weight:700; letter-spacing:2px; text-transform:uppercase; color:var(--gold); }
.testimonials-controls { display:flex; align-items:center; justify-content:center; gap:20px; margin-top:32px; }
.t-btn {
  width:44px; height:44px; border-radius:50%; border:1px solid var(--border);
  background:transparent; color:var(--white); font-size:26px;
  cursor:pointer; display:flex; align-items:center; justify-content:center; transition:var(--ease);
}
.t-btn:hover { border-color:var(--gold); color:var(--gold); }
.t-dots { display:flex; gap:8px; }
.t-dot {
  width:7px; height:7px; border-radius:50%; border:none;
  background:rgba(255,255,255,.2); cursor:pointer; transition:var(--ease);
}
.t-dot.active { background:var(--gold); width:26px; border-radius:4px; }

/* ===== HOURS & LOCATION ===== */
.hours-section { background:var(--dark); }
.hl-grid { display:grid; grid-template-columns:1fr 1fr; gap:80px; }
.hours-list { margin-bottom:40px; }
.hours-row {
  display:flex; justify-content:space-between; align-items:center;
  padding:13px 0; border-bottom:1px solid rgba(255,255,255,.06);
  transition:var(--ease);
}
.hours-row:hover { padding-left:6px; }
.hours-row .day { font-size:15px; font-weight:500; }
.hours-row .time { font-size:14px; color:var(--gold); font-weight:500; }
.contact-links { display:flex; flex-direction:column; gap:16px; }
.contact-link {
  display:flex; align-items:center; gap:12px;
  color:var(--gray); font-size:14px; transition:var(--ease);
}
.contact-link:hover { color:var(--gold); }
.map-address {
  display:flex; align-items:flex-start; gap:12px;
  color:var(--gray); font-size:15px; line-height:1.7; margin-bottom:20px;
}
.map-address svg { flex-shrink:0; color:var(--gold); margin-top:3px; }
.map-address span { display:block; color:rgba(255,255,255,.35); font-size:13px; }
.map-container { border-radius:4px; overflow:hidden; border:1px solid var(--border); height:280px; }
.map-container iframe { width:100%; height:100%; border:none; filter:grayscale(80%) brightness(0.85) contrast(1.1); }

/* ===== BOOKING ===== */
.booking-section { background:var(--black); }
.booking-embed {
  border:1px solid var(--border);
  border-radius:4px;
  overflow:hidden;
  max-width:900px;
  margin:0 auto;
  box-shadow:var(--shadow-gold);
}
.booking-form {
  max-width:700px; margin:0 auto;
  background:var(--dark2); border:1px solid var(--border);
  border-radius:4px; padding:56px 52px;
}
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:20px; margin-bottom:20px; }
.form-group { display:flex; flex-direction:column; gap:8px; }
.form-group.full { margin-bottom:20px; }
.form-group label { font-size:11px; font-weight:700; letter-spacing:1.5px; text-transform:uppercase; color:rgba(255,255,255,.5); }
.form-group input,
.form-group select,
.form-group textarea {
  background:rgba(255,255,255,.04); border:1px solid rgba(255,255,255,.1);
  border-radius:3px; padding:13px 16px;
  color:var(--white); font-family:var(--ff-body); font-size:15px;
  outline:none; transition:var(--ease); width:100%;
}
.form-group select option { background:var(--dark2); color:var(--white); }
.form-group input::placeholder,
.form-group textarea::placeholder { color:rgba(255,255,255,.22); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color:var(--gold); background:rgba(212,175,55,.04); }
.form-group textarea { resize:vertical; min-height:90px; }
.form-submit { margin-top:32px; display:flex; flex-direction:column; align-items:center; gap:14px; }
.form-note { font-size:12px; color:var(--gray2); text-align:center; }
.form-success { text-align:center; padding:40px 20px; }
.success-icon {
  width:64px; height:64px; border-radius:50%;
  background:rgba(212,175,55,.12); border:2px solid var(--gold);
  display:flex; align-items:center; justify-content:center;
  font-size:26px; color:var(--gold); margin:0 auto 20px;
}
.form-success h3 { font-size:24px; margin-bottom:8px; }
.form-success p { color:var(--gray); }

/* ===== FOOTER ===== */
.footer { background:var(--dark); border-top:1px solid var(--border); padding:80px 0 0; }
.footer-content { display:grid; grid-template-columns:1.6fr 1fr 1fr; gap:56px; padding-bottom:56px; }
.footer-logo { display:flex; align-items:center; gap:5px; margin-bottom:14px; }
.footer-logo .logo-yl { font-family:var(--ff-script); font-size:36px; font-weight:400; line-height:1; }
.footer-logo .logo-blendz { font-family:var(--ff-bold); font-size:26px; letter-spacing:2px; }
.footer-brand p { font-size:14px; color:var(--gray); line-height:1.75; max-width:260px; margin-bottom:24px; }
.footer-social { display:flex; gap:10px; }
.footer-social a {
  width:40px; height:40px; border-radius:50%;
  border:1px solid var(--border);
  display:flex; align-items:center; justify-content:center;
  color:var(--gray); transition:var(--ease);
}
.footer-social a:hover { border-color:var(--gold); color:var(--gold); }
.footer-links h4,.footer-contact h4 {
  font-size:11px; font-weight:700; letter-spacing:2px; text-transform:uppercase;
  color:var(--white); margin-bottom:22px;
}
.footer-links ul { list-style:none; display:flex; flex-direction:column; gap:11px; }
.footer-links ul a { font-size:14px; color:var(--gray); transition:var(--ease); display:inline-block; }
.footer-links ul a:hover { color:var(--gold); transform:translateX(4px); }
.footer-contact p,
.footer-contact a { font-size:14px; color:var(--gray); line-height:1.8; display:block; transition:var(--ease); }
.footer-contact p span { font-size:12px; color:rgba(255,255,255,.3); }
.footer-contact a:hover { color:var(--gold); }
.footer-bottom { border-top:1px solid var(--border); padding:22px 0; text-align:center; }
.footer-bottom p { font-size:12px; color:rgba(255,255,255,.25); }

/* ===== FLOAT BUTTON ===== */
.float-book {
  position:fixed; bottom:28px; right:28px; z-index:900;
  background:var(--gold-grad-simple); background-size:200% auto;
  color:var(--black); font-size:12px; font-weight:800;
  letter-spacing:2px; text-transform:uppercase;
  padding:13px 26px; border-radius:100px;
  box-shadow:0 4px 24px rgba(212,175,55,.4);
  transition:var(--ease); opacity:0; pointer-events:none;
}
.float-book.visible { opacity:1; pointer-events:all; }
.float-book:hover { transform:translateY(-3px); box-shadow:0 8px 36px rgba(212,175,55,.6); background-position:right center; }

/* ===== OPEN/CLOSED STATUS ===== */
.hero-status {
  display:inline-flex; align-items:center; gap:6px;
  font-size:12px; font-weight:600; letter-spacing:.5px;
  padding:3px 10px; border-radius:100px;
  border-left:1px solid rgba(255,255,255,.15);
  margin-left:4px;
}
.hours-status {
  display:inline-flex; align-items:center; gap:8px;
  font-size:13px; font-weight:600;
  margin-top:8px;
}
.status-dot {
  width:8px; height:8px; border-radius:50%; flex-shrink:0;
  animation:pulse 2s ease infinite;
}
.is-open .status-dot  { background:#22c55e; box-shadow:0 0 0 0 rgba(34,197,94,.4); }
.is-closed .status-dot { background:#ef4444; box-shadow:0 0 0 0 rgba(239,68,68,.4); animation:none; }
.is-open  { color:#22c55e; }
.is-closed { color:#ef4444; }
@keyframes pulse {
  0%  { box-shadow:0 0 0 0 rgba(34,197,94,.5); }
  70% { box-shadow:0 0 0 6px rgba(34,197,94,0); }
  100%{ box-shadow:0 0 0 0 rgba(34,197,94,0); }
}

/* ===== SCROLL REVEAL ===== */
.reveal { opacity:0; transform:translateY(28px); transition:opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity:1; transform:translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width:1024px) {
  .hl-grid { gap:52px; }
  .team-card { grid-template-columns:280px 1fr; gap:44px; }
  .services-grid { grid-template-columns:repeat(2,1fr); max-width:660px; margin:0 auto; }
}

@media (max-width:900px) {
  .hl-grid { grid-template-columns:1fr; gap:56px; }
  .team-card { grid-template-columns:1fr; max-width:440px; }
  .team-photo { aspect-ratio:1; }
  .footer-content { grid-template-columns:1fr 1fr; }
  .footer-brand { grid-column:1/-1; }
}

@media (max-width:768px) {
  .section { padding:72px 0; }
  .nav-links {
    display:none; position:fixed; inset:0;
    background:rgba(0,0,0,.97);
    flex-direction:column; align-items:center; justify-content:center;
    gap:36px; z-index:1000;
  }
  .nav-links.open { display:flex; }
  .nav-links a { font-size:20px; }
  .nav-toggle { display:flex; }
  .hero-btns { flex-direction:column; align-items:center; }
  .hero-title-blendz { letter-spacing:-1px; }
  .booking-form { padding:32px 24px; }
  .form-row { grid-template-columns:1fr; }
  .testimonial-card { padding:36px 28px 32px; }
  .t-text { font-size:16px; }
  .t-quote { font-size:72px; top:10px; left:20px; }
  .footer-content { grid-template-columns:1fr; gap:36px; }
  .float-book { bottom:18px; right:18px; padding:11px 20px; font-size:11px; }
}

@media (max-width:560px) {
  .services-grid { grid-template-columns:1fr; max-width:400px; }
}

@media (max-width:480px) {
  .booking-form { padding:24px 16px; }
  .hero-rating { flex-direction:column; gap:4px; padding:12px 20px; }
}
