/* ==========================================================================
   TURNING SCISSOR — LUXURY UNISEX SALON ATELIER
   Haute Couture Editorial Aesthetic — Pristine Luxury White & Velvet Palette
   ========================================================================== */

/* --- CSS Variables & Design Tokens --- */
:root {
  /* Pristine Luxury White & Alabaster Palette */
  --color-white: #FFFFFF;            /* Pure Crisp White */
  --color-bg-alt: #FAF8F5;           /* Delicate Alabaster Silk */
  --color-bg-card: #FFFFFF;          /* Atelier Card Surface */
  --color-bg-card-hover: #FFFFFF;
  --color-bg-subtle: #F3EFE9;        /* Warm Cashmere Mist */
  
  /* Rich Haute Typography */
  --color-text-primary: #111111;     /* Rich Obsidian Noir */
  --color-text-secondary: #4A4A4A;   /* Soft Charcoal */
  --color-text-muted: #7A7670;       /* Warm Slate Grey */
  --color-black: #111111;
  --color-ivory: #111111;            /* Re-mapped for heading consistency */
  --color-ivory-dim: #4A4A4A;
  --color-grey-muted: #7A7670;
  
  /* Signature Salon Velvet Crimson */
  --color-crimson: #C8232C;          /* Signature Velvet Ruby */
  --color-crimson-deep: #96161D;     /* Deep Bordeaux Wine */
  --color-crimson-glow: rgba(200, 35, 44, 0.18);
  --color-red: #C8232C;
  
  /* Vintage Champagne Gold & Warm Bronze */
  --color-gold: #A88245;             /* Rich Champagne Bronze */
  --color-champagne-light: #8C682A;  /* Deep Warm Gold */
  --color-gold-metallic: #C5A880;    /* Muted Luxury Gold */

  /* Refined Editorial Typography */
  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Layout & Spacing */
  --container-max: 1320px;
  --section-pad-y: clamp(65px, 8vw, 115px);
  --header-height: 80px;

  /* Refined Luxury Borders & Shadows on White */
  --border-subtle: 1px solid rgba(0, 0, 0, 0.08);
  --border-subtle-hover: 1px solid rgba(168, 130, 69, 0.45);
  --border-gold: 1px solid rgba(168, 130, 69, 0.3);
  --shadow-luxury: 0 15px 40px rgba(0, 0, 0, 0.06);
  --shadow-card: 0 8px 30px rgba(0, 0, 0, 0.04);
  --shadow-crimson-glow: 0 8px 25px rgba(200, 35, 44, 0.25);
  
  /* Transitions */
  --ease-editorial: cubic-bezier(0.16, 1, 0.3, 1);
  --duration-base: 0.35s;
}

/* --- Base & Reset --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--color-white);
  color: var(--color-text-primary);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-body);
  font-size: 0.98rem;
  line-height: 1.68;
  background-color: var(--color-white);
  color: var(--color-text-primary);
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--duration-base) var(--ease-editorial);
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  border: none;
  background: none;
  outline: none;
}

button {
  cursor: pointer;
}

ul {
  list-style: none;
}

/* --- Typography Helpers --- */
.text-crimson {
  color: var(--color-crimson);
}

.text-gold {
  color: var(--color-gold);
}

.text-ivory {
  color: var(--color-text-primary);
}

.italic-serif {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
}

/* --- Grain & Ambient Lighting --- */
.grain-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 999;
  opacity: 0.018;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

.ambient-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  pointer-events: none;
  z-index: 0;
}

.glow-top {
  top: -80px;
  right: -80px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(200, 35, 44, 0.04) 0%, rgba(255, 255, 255, 0) 70%);
}

.glow-mid {
  top: 45%;
  left: -120px;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(168, 130, 69, 0.04) 0%, rgba(255, 255, 255, 0) 70%);
}

/* --- Global Section Containers --- */
.section-container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 44px);
  position: relative;
  z-index: 1;
}

.section-subtitle {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 12px;
}

.section-title-large {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 3.4vw, 3rem);
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: -0.01em;
  color: var(--color-text-primary);
}

.section-subtitle-text {
  font-size: clamp(0.96rem, 1.2vw, 1.08rem);
  color: var(--color-text-muted);
  max-width: 600px;
  margin-top: 16px;
  line-height: 1.7;
}

.section-head-centered {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 55px auto;
}

.section-head-centered .section-subtitle-text {
  margin-left: auto;
  margin-right: auto;
}

/* ==========================================================================
   HEADER & STICKY NAVIGATION
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 100;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  height: 70px;
  border-bottom: 1px solid rgba(168, 130, 69, 0.2);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.05);
}

.nav-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 3.5vw, 44px);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(24px, 3vw, 48px);
}

/* Brand Logo */
.brand-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  line-height: 0;
  flex-shrink: 0;
  margin-right: clamp(16px, 2.5vw, 36px);
}

.brand-logo-img {
  height: 42px;
  width: auto;
  max-width: 205px;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(0, 0, 0, 0.1);
  transition: transform var(--duration-base) var(--ease-editorial), box-shadow var(--duration-base) ease;
  display: block;
}

.brand-logo:hover .brand-logo-img {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 6px 20px rgba(200, 35, 44, 0.2);
}

.drawer-logo-img {
  height: 40px;
  width: auto;
  max-width: 190px;
  object-fit: contain;
  border-radius: 6px;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.footer-logo-img {
  height: 52px;
  width: auto;
  max-width: 260px;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(0, 0, 0, 0.1);
  transition: transform var(--duration-base) var(--ease-editorial);
  display: block;
  margin-bottom: 6px;
}

.footer-logo:hover .footer-logo-img {
  transform: translateY(-2px) scale(1.02);
}

.modal-logo-wrap {
  margin-bottom: 12px;
  display: flex;
  justify-content: flex-start;
}

.modal-logo-img {
  height: 38px;
  width: auto;
  max-width: 190px;
  object-fit: contain;
  border-radius: 6px;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.logo-mark {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(168, 130, 69, 0.12), rgba(200, 35, 44, 0.08));
  border: 1px solid rgba(168, 130, 69, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--duration-base) var(--ease-editorial);
}

.brand-logo:hover .logo-mark {
  transform: rotate(15deg) scale(1.06);
  border-color: var(--color-gold);
}

.scissors-icon {
  font-size: 1.15rem;
  color: var(--color-gold);
}

.logo-text-group {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--color-text-primary);
  line-height: 1.1;
  text-transform: uppercase;
}

.brand-tagline {
  font-family: var(--font-body);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  color: var(--color-gold);
  text-transform: uppercase;
  margin-top: 2px;
}

/* Nav Links */
.desktop-nav {
  display: flex;
  align-items: center;
  flex: 1;
  justify-content: center;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.8vw, 28px);
  margin: 0;
  padding: 0;
}

.nav-link {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #333333;
  text-transform: uppercase;
  position: relative;
  padding: 6px 2px;
  white-space: nowrap;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: var(--color-crimson);
  transition: width var(--duration-base) var(--ease-editorial);
}

.nav-link:hover, .nav-link.active {
  color: var(--color-crimson);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

/* Nav Actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.phone-link-nav {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--color-text-primary);
  padding: 6px 14px;
  border-radius: 30px;
  background: #FAF8F5;
  border: 1px solid rgba(168, 130, 69, 0.25);
}

.nav-phone-icon {
  width: 14px;
  height: 14px;
  stroke: var(--color-gold);
}

.phone-link-nav:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
}

.btn-primary-nav {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #C8232C 0%, #96161D 100%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  padding: 9px 20px;
  border-radius: 26px;
  transition: all var(--duration-base) var(--ease-editorial);
  box-shadow: 0 4px 18px rgba(200, 35, 44, 0.3);
}

.btn-primary-nav:hover {
  background: linear-gradient(135deg, #D42630 0%, #A81820 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(200, 35, 44, 0.45);
}

.btn-arrow {
  transition: transform var(--duration-base) var(--ease-editorial);
}

.btn-primary-nav:hover .btn-arrow {
  transform: translateX(3px);
}

/* Mobile Hamburger Toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 17px;
  background: transparent;
  padding: 0;
  z-index: 101;
}

.hamburger-bar {
  display: block;
  height: 2px;
  width: 100%;
  background-color: var(--color-text-primary);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Mobile Drawer Menu */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(85vw, 360px);
  height: 100vh;
  background: #FFFFFF;
  z-index: 1050;
  padding: 30px;
  display: flex;
  flex-direction: column;
  transition: right 0.4s var(--ease-editorial);
  border-left: 1px solid rgba(168, 130, 69, 0.2);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
}

.mobile-drawer.open {
  right: 0;
}

.drawer-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  z-index: 1040;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
}

.drawer-backdrop.open {
  opacity: 1;
  visibility: visible;
}

.drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.drawer-close {
  font-size: 1.8rem;
  line-height: 1;
  color: var(--color-text-primary);
}

.drawer-body {
  margin-top: 26px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: space-between;
  overflow-y: auto;
}

.drawer-links li {
  margin-bottom: 18px;
}

.drawer-link {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #222222;
  display: block;
}

.drawer-link:hover {
  color: var(--color-crimson);
  transform: translateX(5px);
}

.drawer-footer {
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.drawer-location-tag {
  font-size: 0.78rem;
  color: var(--color-text-muted);
  margin-bottom: 14px;
}

.drawer-phone-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.btn-drawer-call {
  font-size: 0.82rem;
  font-weight: 600;
  padding: 10px;
  border-radius: 4px;
  background: #FAF8F5;
  text-align: center;
  border: 1px solid rgba(168, 130, 69, 0.2);
  color: #111111;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  min-height: 94vh;
  padding-top: calc(var(--header-height) + 30px);
  padding-bottom: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background-color: var(--color-white);
}

.hero-container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 44px);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: clamp(36px, 5vw, 68px);
}

/* Left Hero Content */
.hero-content {
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--color-gold);
  padding: 5px 14px;
  border-radius: 30px;
  background: #FAF8F5;
  border: 1px solid rgba(168, 130, 69, 0.25);
  margin-bottom: 20px;
}

.eyebrow-dot {
  width: 6px;
  height: 6px;
  background-color: var(--color-crimson);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--color-crimson);
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.2vw, 3.8rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--color-text-primary);
  text-transform: none;
  margin-bottom: 20px;
}

.hero-subtext {
  font-size: clamp(1rem, 1.25vw, 1.15rem);
  font-weight: 400;
  color: var(--color-text-secondary);
  max-width: 500px;
  line-height: 1.7;
  margin-bottom: 34px;
}

/* CTA Group */
.hero-cta-group {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 42px;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: linear-gradient(135deg, #C8232C 0%, #96161D 100%);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #FFFFFF;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 30px;
  overflow: hidden;
  transition: all var(--duration-base) var(--ease-editorial);
  box-shadow: 0 8px 25px rgba(200, 35, 44, 0.3);
}

.btn-hero-primary:hover {
  background: linear-gradient(135deg, #D42630 0%, #A81820 100%);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(200, 35, 44, 0.45);
}

.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-primary);
  padding: 13px 26px;
  border-radius: 30px;
  border: 1px solid rgba(168, 130, 69, 0.35);
  background: #FAF8F5;
  transition: all var(--duration-base) var(--ease-editorial);
}

.btn-hero-secondary:hover {
  color: var(--color-crimson);
  border-color: var(--color-crimson);
  background: #FFFFFF;
}

/* Stats Badge */
.hero-stats-badge {
  display: flex;
  align-items: center;
  gap: 26px;
  padding-top: 22px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  max-width: 480px;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-val {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-text-primary);
  letter-spacing: 0.03em;
}

.stat-lbl {
  font-size: 0.74rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 2px;
}

.stat-divider {
  width: 1px;
  height: 30px;
  background: rgba(0, 0, 0, 0.08);
}

/* Right Hero Visual */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Oversized Scissors Motif Graphic Behind Model */
.hero-scissors-graphic {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-10deg);
  width: 110%;
  height: 110%;
  pointer-events: none;
  z-index: 1;
  opacity: 0.45;
  animation: floatScissors 12s ease-in-out infinite alternate;
}

@keyframes floatScissors {
  0% { transform: translate(-50%, -50%) rotate(-12deg) scale(0.98); }
  100% { transform: translate(-50%, -48%) rotate(-8deg) scale(1.02); }
}

.hero-red-glow {
  position: absolute;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(200, 35, 44, 0.08) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  top: 20%;
  right: 10%;
}

.hero-image-wrapper {
  position: relative;
  z-index: 2;
  width: min(100%, 430px);
  aspect-ratio: 4 / 5.2;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12), 0 0 35px rgba(200, 35, 44, 0.06);
  border: 1px solid rgba(168, 130, 69, 0.25);
  background-color: #FAF8F5;
}

.hero-portrait {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: contrast(1.02) brightness(0.98);
  transition: transform 0.8s var(--ease-editorial);
}

.hero-image-wrapper:hover .hero-portrait {
  transform: scale(1.03);
}

.hero-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, transparent 50%, rgba(0, 0, 0, 0.25) 100%);
  pointer-events: none;
}

.hero-lighting-accent {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%, rgba(0, 0, 0, 0.3) 100%);
  pointer-events: none;
}

/* Floating Badges */
.floating-badge {
  position: absolute;
  z-index: 3;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(168, 130, 69, 0.25);
  border-radius: 6px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  animation: floatSubtle 6s ease-in-out infinite alternate;
  color: var(--color-text-primary);
}

.hero-float-card {
  bottom: 20px;
  left: -20px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero-float-logo {
  height: 38px;
  width: auto;
  max-width: 175px;
  object-fit: contain;
  border-radius: 4px;
}

.float-scissors {
  font-size: 1.3rem;
  color: var(--color-gold);
}

.float-details {
  display: flex;
  flex-direction: column;
}

.float-title {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--color-text-primary);
}

.float-sub {
  font-size: 0.68rem;
  color: var(--color-text-muted);
}

.live-status-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #16a34a;
  background: rgba(22, 163, 74, 0.08);
  padding: 3px 8px;
  border-radius: 20px;
  margin-left: 6px;
}

.pulse-dot {
  width: 5px;
  height: 5px;
  background-color: #16a34a;
  border-radius: 50%;
  animation: pulseGreen 2s infinite;
}

@keyframes pulseGreen {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 5px rgba(22, 163, 74, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(22, 163, 74, 0); }
}

.hero-location-badge {
  top: 26px;
  right: -10px;
  padding: 9px 15px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--color-text-primary);
  display: flex;
  align-items: center;
  gap: 7px;
  animation-delay: -3s;
}

@keyframes floatSubtle {
  0% { transform: translateY(0px); }
  100% { transform: translateY(-7px); }
}

/* Scroll Down Indicator */
.scroll-down-indicator {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  opacity: 0.6;
  transition: opacity 0.3s ease;
  z-index: 2;
}

.scroll-down-indicator:hover {
  opacity: 1;
}

.scroll-mouse {
  width: 18px;
  height: 28px;
  border: 1.5px solid var(--color-text-muted);
  border-radius: 12px;
  position: relative;
}

.scroll-wheel {
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 2.5px;
  height: 5px;
  background-color: var(--color-crimson);
  border-radius: 2px;
  animation: mouseWheel 2s infinite;
}

@keyframes mouseWheel {
  0% { transform: translate(-50%, 0); opacity: 1; }
  100% { transform: translate(-50%, 9px); opacity: 0; }
}

.scroll-text {
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

/* ==========================================================================
   MARQUEE SECTION (Runway Velvet Noir Ribbon Contrast)
   ========================================================================== */
.marquee-section {
  background: linear-gradient(90deg, #18080A 0%, #2D0E12 50%, #18080A 100%);
  color: #FAF8F5;
  padding: 16px 0;
  overflow: hidden;
  position: relative;
  border-top: 1px solid rgba(168, 130, 69, 0.3);
  border-bottom: 1px solid rgba(168, 130, 69, 0.3);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.marquee-wrapper {
  display: flex;
  overflow: hidden;
  user-select: none;
}

.marquee-track {
  display: flex;
  white-space: nowrap;
  animation: scrollMarquee 26s linear infinite;
}

.marquee-track:hover {
  animation-play-state: paused;
}

@keyframes scrollMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.marquee-content {
  display: flex;
  align-items: center;
  gap: 26px;
  padding-right: 26px;
}

.marquee-item {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #FAF8F5;
}

.marquee-star {
  font-size: 0.75rem;
  color: #DFBA84;
}

/* ==========================================================================
   INTRODUCTION SECTION
   ========================================================================== */
.intro-section {
  padding: var(--section-pad-y) 0;
  background-color: var(--color-bg-alt);
  position: relative;
  border-bottom: var(--border-subtle);
}

.intro-header-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 5vw, 80px);
  align-items: start;
  margin-bottom: 60px;
}

.intro-desc-col .lead-text {
  font-size: clamp(1.05rem, 1.35vw, 1.22rem);
  font-weight: 400;
  line-height: 1.68;
  color: var(--color-text-primary);
  margin-bottom: 16px;
}

.intro-desc-col .secondary-text {
  font-size: 0.94rem;
  line-height: 1.7;
  color: var(--color-text-secondary);
  margin-bottom: 24px;
}

.intro-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag-pill {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--color-champagne-light);
  background: #FFFFFF;
  border: 1px solid rgba(168, 130, 69, 0.25);
  padding: 5px 12px;
  border-radius: 4px;
}

/* Three Feature Cards */
.intro-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.feature-card {
  background: var(--color-white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 6px;
  padding: clamp(28px, 3.5vw, 38px) 28px;
  position: relative;
  transition: transform var(--duration-base) var(--ease-editorial), box-shadow var(--duration-base) var(--ease-editorial);
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.03);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  border-color: rgba(168, 130, 69, 0.4);
}

.feature-number {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 600;
  line-height: 1;
  color: rgba(168, 130, 69, 0.16);
  position: absolute;
  top: 22px;
  right: 26px;
  transition: color 0.3s ease;
}

.feature-card:hover .feature-number {
  color: rgba(200, 35, 44, 0.25);
}

.feature-icon-wrapper {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(168, 130, 69, 0.1);
  border: 1px solid rgba(168, 130, 69, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.feature-icon {
  font-size: 1.15rem;
  color: var(--color-gold);
}

.feature-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--color-text-primary);
  margin-bottom: 12px;
}

.feature-desc {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--color-text-secondary);
}

.feature-accent-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--color-crimson);
  transition: width var(--duration-base) var(--ease-editorial);
}

.feature-card:hover .feature-accent-line {
  width: 100%;
}

/* ==========================================================================
   SERVICES SECTION
   ========================================================================== */
.services-section {
  padding: var(--section-pad-y) 0;
  background: var(--color-white);
  position: relative;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.service-card {
  position: relative;
  height: 420px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  transition: all 0.4s var(--ease-editorial);
}

.service-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.75);
  transition: transform 0.8s var(--ease-editorial), filter 0.6s ease;
  z-index: 1;
}

.service-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.65) 45%, rgba(0, 0, 0, 0.95) 100%);
  z-index: 2;
  transition: background 0.4s ease;
}

.service-card:hover {
  border-color: rgba(200, 35, 44, 0.4);
  transform: translateY(-5px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15);
}

.service-card:hover .service-card-bg {
  transform: scale(1.06);
  filter: brightness(0.85);
}

.service-card-content {
  position: relative;
  z-index: 3;
}

.service-top-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.service-card-number {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 600;
  color: #DFBA84;
  line-height: 1;
}

.service-card-icon {
  font-size: 1.2rem;
  opacity: 0.85;
  color: #FAF8F5;
}

.service-card-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #FFFFFF;
  margin-bottom: 10px;
}

.service-card-desc {
  font-size: 0.86rem;
  color: #DCD6CD;
  line-height: 1.6;
  margin-bottom: 20px;
}

.service-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: #DFBA84;
  text-transform: uppercase;
  transition: gap 0.3s ease, color 0.3s ease;
}

.service-card:hover .service-cta-link {
  color: #FFFFFF;
  gap: 12px;
}

/* ==========================================================================
   VISUAL BREAK (Fashion Campaign Two-Panel)
   ========================================================================== */
.visual-break-section {
  width: 100%;
  overflow: hidden;
  background-color: #0E0E12;
}

.visual-break-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
}

.campaign-panel {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(36px, 7vw, 90px);
  min-height: 460px;
  overflow: hidden;
}

.panel-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: grayscale(30%) brightness(0.55);
  transition: transform 1.2s var(--ease-editorial), filter 0.8s ease;
}

.panel-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(11, 11, 13, 0.45) 0%, rgba(11, 11, 13, 0.9) 100%);
}

.panel-left .panel-overlay {
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.campaign-panel:hover .panel-bg {
  transform: scale(1.05);
  filter: grayscale(10%) brightness(0.68);
}

.panel-content {
  position: relative;
  z-index: 2;
  max-width: 420px;
}

.panel-eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  color: #DFBA84;
  text-transform: uppercase;
  display: block;
  margin-bottom: 12px;
}

.panel-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.4vw, 2.8rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: #FFFFFF;
  margin-bottom: 16px;
}

.panel-desc {
  font-size: 0.92rem;
  color: #DCD6CD;
  line-height: 1.6;
}

/* ==========================================================================
   RATE CARD SECTION
   ========================================================================== */
.rate-card-section {
  padding: var(--section-pad-y) 0;
  background: var(--color-bg-alt);
  position: relative;
}

.rate-card-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 48px auto;
}

.rate-badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--color-gold);
  background: #FFFFFF;
  border: 1px solid rgba(168, 130, 69, 0.25);
  padding: 5px 15px;
  border-radius: 30px;
  margin-bottom: 14px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

/* Gender Switcher Tabs */
.rate-tab-container {
  display: inline-flex;
  background: #FFFFFF;
  border: 1px solid rgba(168, 130, 69, 0.25);
  padding: 5px;
  border-radius: 40px;
  margin: 28px auto 22px auto;
  gap: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

.rate-tab-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  border-radius: 30px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--color-text-secondary);
  transition: all 0.3s var(--ease-editorial);
}

.tab-gender-icon {
  font-size: 1.05rem;
}

.rate-tab-btn:hover {
  color: var(--color-crimson);
}

.rate-tab-btn.active {
  background: linear-gradient(135deg, #C8232C 0%, #96161D 100%);
  color: #FFFFFF;
  box-shadow: 0 4px 16px rgba(200, 35, 44, 0.3);
}

/* Quick Category Filter Bar */
.category-quick-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.filter-chip {
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--color-text-secondary);
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 5px 14px;
  border-radius: 20px;
  transition: all 0.25s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
}

.filter-chip:hover {
  border-color: var(--color-gold);
  color: var(--color-text-primary);
}

.filter-chip.active {
  background: #111111;
  color: #FFFFFF;
  border-color: #111111;
  font-weight: 600;
}

/* Rate Tab Panels */
.rate-tab-panel {
  display: none;
  opacity: 0;
  transition: opacity 0.4s var(--ease-editorial);
}

.rate-tab-panel.active {
  display: block;
  opacity: 1;
}

/* Rate Card Grid */
.rate-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}

.rate-group-card {
  background: var(--color-white);
  border: 1px solid rgba(168, 130, 69, 0.2);
  border-radius: 8px;
  padding: clamp(22px, 2.5vw, 32px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.04);
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.rate-group-card:hover {
  border-color: rgba(200, 35, 44, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.rate-group-card.span-2 {
  grid-column: span 2;
}

.rate-group-header {
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  padding-bottom: 10px;
}

.rate-group-tag {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--color-gold);
  text-transform: uppercase;
  margin-bottom: 3px;
}

.rate-group-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--color-text-primary);
}

/* Editorial Dotted Leader Rate Items */
.rate-items-list {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.rate-item {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  width: 100%;
}

.item-name {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--color-text-primary);
  white-space: nowrap;
}

.item-dots {
  flex-grow: 1;
  border-bottom: 1px dotted rgba(0, 0, 0, 0.16);
  margin: 0 12px;
  position: relative;
  bottom: 4px;
}

.item-price {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--color-crimson);
  white-space: nowrap;
  letter-spacing: 0.02em;
}

.highlighted-item .item-name {
  color: var(--color-crimson);
  font-weight: 600;
}

.highlighted-item .item-dots {
  border-bottom: 1px dotted rgba(200, 35, 44, 0.35);
}

.two-col-rate-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.sub-col-title {
  font-family: var(--font-display);
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--color-gold);
  margin-bottom: 10px;
}

.rate-card-note {
  font-size: 0.76rem;
  color: var(--color-text-muted);
  font-style: italic;
}

.rate-footer-cta {
  text-align: center;
  margin-top: 45px;
  padding: 26px;
  border: 1px dashed rgba(168, 130, 69, 0.3);
  border-radius: 6px;
  background: #FFFFFF;
}

.rate-footer-text {
  font-size: 0.98rem;
  color: var(--color-text-secondary);
  margin-bottom: 16px;
}

.btn-gold-action {
  display: inline-block;
  background: linear-gradient(135deg, #FAF8F5 0%, #EFE7DA 100%);
  color: #111111;
  border: 1px solid rgba(168, 130, 69, 0.4);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 12px 28px;
  border-radius: 26px;
  transition: all 0.3s var(--ease-editorial);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.btn-gold-action:hover {
  transform: translateY(-2px);
  background: #FFFFFF;
  border-color: var(--color-crimson);
  color: var(--color-crimson);
  box-shadow: 0 6px 20px rgba(200, 35, 44, 0.15);
}

/* ==========================================================================
   COMBO OFFERS SECTION
   ========================================================================== */
.combo-offers-section {
  padding: var(--section-pad-y) 0;
  background: var(--color-white);
  position: relative;
  border-top: var(--border-subtle);
  border-bottom: var(--border-subtle);
}

.combo-header-wrap {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 55px auto;
}

.combo-pill {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--color-crimson);
  background: rgba(200, 35, 44, 0.06);
  border: 1px solid rgba(200, 35, 44, 0.25);
  padding: 5px 15px;
  border-radius: 30px;
  margin-bottom: 14px;
}

.combo-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.combo-package-card {
  background: var(--color-white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  padding: 32px 28px;
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  transition: all 0.35s var(--ease-editorial);
}

.combo-package-card:hover {
  transform: translateY(-6px);
  border-color: rgba(200, 35, 44, 0.35);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.09);
}

.combo-featured {
  background: #FAF8F5;
  border: 1px solid rgba(200, 35, 44, 0.3);
}

.combo-badge-floating {
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #C8232C 0%, #96161D 100%);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #FFFFFF;
  font-family: var(--font-body);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  padding: 3px 12px;
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(200, 35, 44, 0.3);
}

.combo-card-badge {
  font-family: var(--font-body);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--color-gold);
  margin-bottom: 5px;
}

.combo-gender-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--color-text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.combo-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--color-text-primary);
  letter-spacing: 0.01em;
  margin-bottom: 20px;
  line-height: 1.25;
}

.combo-items-list {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 26px;
  flex-grow: 1;
}

.combo-items-list li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.88rem;
  color: var(--color-text-secondary);
}

.combo-items-list .check {
  color: var(--color-crimson);
  font-weight: bold;
}

.combo-price-block {
  padding: 18px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  margin-bottom: 22px;
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.combo-price-currency {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--color-crimson);
}

.combo-price-amount {
  font-family: var(--font-serif);
  font-size: 2.3rem;
  font-weight: 600;
  color: var(--color-text-primary);
  line-height: 1;
}

.combo-price-note {
  font-size: 0.74rem;
  color: var(--color-text-muted);
  margin-left: 8px;
}

.btn-combo-book {
  width: 100%;
  padding: 12px;
  background: #FAF8F5;
  border: 1px solid rgba(168, 130, 69, 0.25);
  color: var(--color-text-primary);
  font-family: var(--font-body);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 26px;
  transition: all 0.3s ease;
}

.btn-combo-book:hover {
  background: linear-gradient(135deg, #C8232C 0%, #96161D 100%);
  color: #FFFFFF;
  border-color: var(--color-crimson);
  box-shadow: 0 5px 18px rgba(200, 35, 44, 0.3);
}

.btn-combo-red {
  background: linear-gradient(135deg, #C8232C 0%, #96161D 100%);
  color: #FFFFFF;
  border-color: var(--color-crimson);
}

.btn-combo-red:hover {
  background: linear-gradient(135deg, #D42630 0%, #A81820 100%);
}

/* ==========================================================================
   PREMIUM GALLERY SECTION
   ========================================================================== */
.gallery-section {
  padding: var(--section-pad-y) 0;
  background: var(--color-bg-alt);
}

.gallery-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 45px;
  gap: 28px;
  flex-wrap: wrap;
}

.gallery-lead-text {
  max-width: 460px;
  font-size: 0.94rem;
  color: var(--color-text-muted);
  line-height: 1.68;
}

/* Masonry Editorial Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 270px;
  gap: 18px;
}

.gallery-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #EAE6DE;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.04);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.95);
  transition: transform 0.8s var(--ease-editorial), filter 0.5s ease;
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(11, 11, 13, 0.85) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  opacity: 0.92;
  transition: all 0.3s ease;
}

.gallery-tag {
  font-family: var(--font-body);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #DFBA84;
  margin-bottom: 4px;
}

.gallery-item-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: #FFFFFF;
  line-height: 1.3;
}

.gallery-lens {
  position: absolute;
  top: 18px;
  right: 18px;
  font-size: 1rem;
  opacity: 0;
  transform: translateY(-6px);
  transition: all 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
  filter: brightness(1);
}

.gallery-item:hover .gallery-lens {
  opacity: 1;
  transform: translateY(0);
}

.gallery-item:hover {
  border-color: rgba(200, 35, 44, 0.3);
}

/* Masonry spans */
.gallery-item.item-large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item.item-wide {
  grid-column: span 2;
}

/* ==========================================================================
   SALON EXPERIENCE SECTION
   ========================================================================== */
.experience-section {
  position: relative;
  padding: clamp(80px, 10vw, 140px) 0;
  overflow: hidden;
}

.experience-backdrop-wrap {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.experience-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.65);
}

.experience-dark-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.8) 100%);
}

.experience-red-ambience {
  position: absolute;
  top: 30%;
  right: 15%;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(200, 35, 44, 0.15) 0%, transparent 70%);
  filter: blur(100px);
}

.experience-content-container {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
}

.experience-box {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(168, 130, 69, 0.3);
  border-radius: 8px;
  padding: clamp(32px, 5vw, 60px);
  max-width: 880px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
  position: relative;
}

.scissors-watermark-small {
  position: absolute;
  top: 28px;
  right: 32px;
  font-size: 2rem;
  color: rgba(168, 130, 69, 0.2);
}

.experience-eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  color: var(--color-gold);
  display: block;
  margin-bottom: 10px;
}

.experience-big-headline {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4vw, 3.2rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--color-text-primary);
  margin-bottom: 36px;
}

.experience-checklist-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 40px;
}

.checklist-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.check-icon-circle {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(168, 130, 69, 0.12);
  border: 1px solid var(--color-gold);
  color: var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: bold;
  flex-shrink: 0;
  margin-top: 2px;
}

.check-text-content strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: 3px;
}

.check-text-content p {
  font-size: 0.86rem;
  color: var(--color-text-secondary);
  line-height: 1.55;
}

.experience-cta-wrap {
  text-align: center;
  padding-top: 18px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

/* ==========================================================================
   BOOKING CTA SECTION
   ========================================================================== */
.booking-cta-section {
  padding: clamp(75px, 9vw, 120px) 0;
  background: linear-gradient(135deg, #C8232C 0%, #96161D 100%);
  position: relative;
  text-align: center;
  overflow: hidden;
  color: #FFFFFF;
}

.booking-cta-red-gradient {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 650px;
  height: 380px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
}

.booking-cta-inner {
  max-width: 740px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.booking-eyebrow {
  font-family: var(--font-body);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  color: #DFBA84;
  margin-bottom: 12px;
}

.booking-cta-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.2vw, 3.6rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.15;
  color: #FFFFFF;
  margin-bottom: 10px;
}

.booking-cta-punchline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.4rem, 2.5vw, 2.1rem);
  color: #EFE7DA;
  margin-bottom: 22px;
}

.booking-cta-location {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.92rem;
  color: #FFFFFF;
  background: rgba(0, 0, 0, 0.2);
  padding: 7px 18px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 36px;
}

/* Large Call Buttons */
.booking-phone-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.btn-call-large {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.05);
  color: #111111;
  padding: 14px 28px;
  border-radius: 30px;
  transition: all 0.3s var(--ease-editorial);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  text-align: left;
}

.btn-call-large:hover {
  background: #FAF8F5;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  color: var(--color-crimson);
}

.call-icon {
  font-size: 1.3rem;
}

.btn-call-text {
  display: flex;
  flex-direction: column;
}

.btn-call-sub {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  opacity: 0.7;
}

.btn-call-number {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.booking-or-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 18px 0 22px 0;
}

.booking-or-divider span {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: #EFE7DA;
}

/* ==========================================================================
   CONTACT & LOCATION SECTION
   ========================================================================== */
.contact-section {
  padding: var(--section-pad-y) 0;
  background: var(--color-white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 5vw, 65px);
}

.contact-card-box {
  margin-top: 32px;
  background: var(--color-bg-alt);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  padding: clamp(26px, 3.5vw, 40px);
  box-shadow: var(--shadow-luxury);
}

.brand-badge-contact {
  display: flex;
  align-items: center;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  margin-bottom: 22px;
}

.contact-logo-banner {
  max-width: 240px;
  width: 100%;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(0, 0, 0, 0.1);
  display: block;
}

.contact-brand-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--color-text-primary);
}

.contact-brand-tagline {
  font-size: 0.64rem;
  letter-spacing: 0.2em;
  color: var(--color-gold);
  text-transform: uppercase;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 28px;
}

.info-row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.info-icon {
  font-size: 1.15rem;
  margin-top: 2px;
}

.info-label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--color-gold);
  margin-bottom: 2px;
}

.info-val {
  font-size: 0.92rem;
  color: var(--color-text-primary);
  line-height: 1.5;
}

.phone-hover:hover {
  color: var(--color-crimson);
  text-decoration: underline;
}

.btn-maps-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--color-text-primary);
  padding: 11px 22px;
  border: 1px solid rgba(168, 130, 69, 0.35);
  border-radius: 26px;
  background: #FFFFFF;
  transition: all 0.3s ease;
}

.btn-maps-link:hover {
  border-color: var(--color-crimson);
  color: var(--color-crimson);
}

.maps-arrow {
  transition: transform 0.3s ease;
}

.btn-maps-link:hover .maps-arrow {
  transform: translateX(4px);
}

/* Embedded Map & Quick Enquiry Form */
.interactive-panel {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.map-embed-wrapper {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: var(--shadow-luxury);
  height: 250px;
  background: #F0EDE6;
}

.map-overlay-badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--color-text-primary);
  padding: 5px 12px;
  border-radius: 4px;
  font-size: 0.72rem;
  font-weight: 600;
  border: 1px solid rgba(168, 130, 69, 0.25);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.quick-enquiry-box {
  background: var(--color-bg-alt);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  padding: 28px;
  box-shadow: var(--shadow-card);
}

.enquiry-box-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: 5px;
}

.enquiry-box-sub {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  margin-bottom: 18px;
}

.enquiry-form {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.form-input {
  width: 100%;
  padding: 11px 13px;
  background: #FFFFFF;
  border: 1px solid #DCD6CD;
  border-radius: 4px;
  color: var(--color-text-primary);
  font-size: 0.86rem;
  transition: border-color 0.25s ease;
}

.form-input:focus {
  border-color: var(--color-crimson);
  box-shadow: 0 0 0 2px rgba(200, 35, 44, 0.1);
}

select.form-input option {
  background: #FFFFFF;
  color: #111111;
}

.form-checkbox-group {
  margin: 10px 0 16px 0;
  padding: 8px 12px;
  background: rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 6px;
  transition: border-color 0.2s ease;
}

.form-checkbox-group:hover {
  border-color: rgba(200, 35, 44, 0.3);
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  user-select: none;
}

.custom-checkbox {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  accent-color: var(--color-crimson);
  cursor: pointer;
  flex-shrink: 0;
}

.checkbox-text {
  font-family: var(--font-body);
  font-size: 0.74rem;
  line-height: 1.45;
  color: #555555;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.checkbox-label:hover .checkbox-text {
  color: #111111;
}

.btn-whatsapp-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #25D366;
  color: #FFFFFF;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 13px 20px;
  border-radius: 26px;
  transition: all 0.3s ease;
  margin-top: 4px;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.25);
}

.btn-whatsapp-submit:hover {
  background: #20BA5A;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: #F5F2EB;
  border-top: 1px solid rgba(168, 130, 69, 0.2);
  padding: 70px 0 28px 0;
  position: relative;
  color: var(--color-text-primary);
}

.footer-top-row {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr 1.3fr;
  gap: clamp(28px, 3.5vw, 46px);
  margin-bottom: 50px;
}

.footer-logo {
  margin-bottom: 16px;
}

.footer-brand-desc {
  font-size: 0.86rem;
  color: var(--color-text-secondary);
  line-height: 1.65;
  max-width: 310px;
  margin-bottom: 20px;
}

.footer-contact-pills {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-pill {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-text-primary);
}

.footer-pill:hover {
  color: var(--color-crimson);
}

.footer-col-heading {
  font-family: var(--font-body);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--color-gold);
  margin-bottom: 18px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer-links a {
  font-size: 0.86rem;
  color: var(--color-text-secondary);
  transition: color 0.25s ease, transform 0.25s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: var(--color-crimson);
  transform: translateX(3px);
}

.footer-address {
  font-style: normal;
  font-size: 0.88rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin-bottom: 14px;
}

.footer-maps-link {
  font-family: var(--font-body);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--color-crimson);
}

.footer-maps-link:hover {
  text-decoration: underline;
}

.footer-bottom-bar {
  padding-top: 26px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.copyright-text {
  font-size: 0.78rem;
  color: var(--color-text-muted);
}

.footer-credit {
  font-size: 0.74rem;
  color: var(--color-text-muted);
}

/* ==========================================================================
   BOOKING MODAL
   ========================================================================== */
.booking-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.booking-modal-backdrop.open {
  opacity: 1;
  visibility: visible;
}

.booking-modal-window {
  background: #FFFFFF;
  border: 1px solid rgba(168, 130, 69, 0.35);
  border-radius: 8px;
  width: 100%;
  max-width: 560px;
  padding: clamp(28px, 4.5vw, 40px);
  position: relative;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
  transform: translateY(20px) scale(0.96);
  transition: transform 0.35s var(--ease-editorial);
  max-height: 90vh;
  overflow-y: auto;
  color: var(--color-text-primary);
}

.booking-modal-backdrop.open .booking-modal-window {
  transform: translateY(0) scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 18px;
  right: 20px;
  font-size: 1.6rem;
  line-height: 1;
  color: var(--color-text-muted);
  transition: color 0.2s ease;
}

.modal-close-btn:hover {
  color: var(--color-crimson);
}

.modal-header {
  margin-bottom: 24px;
}

.modal-eyebrow {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--color-gold);
}

.modal-title {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--color-text-primary);
  margin-top: 4px;
  margin-bottom: 6px;
}

.modal-subtitle {
  font-size: 0.84rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.modal-form-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex: 1;
}

.form-label {
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--color-gold);
  text-transform: uppercase;
}

.modal-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.modal-buttons-row {
  display: flex;
  gap: 12px;
  margin-top: 8px;
  flex-wrap: wrap;
}

.btn-modal-submit-whatsapp {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #25D366;
  color: #FFFFFF;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 13px;
  border-radius: 26px;
  transition: all 0.3s ease;
}

.btn-modal-submit-whatsapp:hover {
  background: #1eb956;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
}

.btn-modal-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #FAF8F5;
  border: 1px solid rgba(168, 130, 69, 0.3);
  color: var(--color-text-primary);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  padding: 13px 18px;
  border-radius: 26px;
  transition: all 0.3s ease;
}

.btn-modal-call:hover {
  border-color: var(--color-crimson);
  color: var(--color-crimson);
}

/* ==========================================================================
   TERMS & CONDITIONS TRIGGER & MODAL STYLES
   ========================================================================== */
.tc-open-trigger {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  font-weight: 600;
  color: var(--color-crimson);
  text-decoration: underline;
  cursor: pointer;
  display: inline;
  transition: color 0.2s ease;
}

.tc-open-trigger:hover {
  color: #96161D;
}

.tc-open-link {
  font-family: inherit;
  font-size: inherit;
  font-weight: 600;
  color: var(--color-crimson);
  text-decoration: underline;
  cursor: pointer;
  display: inline;
  transition: color 0.2s ease;
}

.tc-open-link:hover {
  color: #96161D;
}

.footer-tc-btn {
  background: none;
  border: none;
  padding: 0;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--color-crimson);
  cursor: pointer;
  text-decoration: underline;
  transition: opacity 0.2s ease;
}

.footer-tc-btn:hover {
  opacity: 0.8;
}

.tc-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 2500;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  padding: 20px;
}

.tc-modal-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

.tc-modal-window {
  background: #FFFFFF;
  border: 1px solid rgba(168, 130, 69, 0.35);
  border-radius: 12px;
  max-width: 680px;
  width: 100%;
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
  position: relative;
  transform: scale(0.95) translateY(10px);
  transition: transform 0.35s var(--ease-editorial);
  overflow: hidden;
}

.tc-modal-backdrop.open .tc-modal-window {
  transform: scale(1) translateY(0);
}

.tc-modal-header {
  padding: 28px 30px 18px 30px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  background: #FAF8F5;
}

.tc-modal-subtitle {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--color-gold);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 4px;
}

.tc-modal-body {
  padding: 24px 30px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.tc-clause-card {
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 8px;
  padding: 18px 20px;
}

.tc-clause-card.highlight-clause {
  background: #FFF9F9;
  border: 1px solid rgba(200, 35, 44, 0.25);
  border-left: 4px solid var(--color-crimson);
}

.tc-clause-title {
  font-family: var(--font-heading);
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: 8px;
  letter-spacing: 0.01em;
}

.highlight-clause .tc-clause-title {
  color: var(--color-crimson);
}

.tc-clause-text {
  font-family: var(--font-body);
  font-size: 0.82rem;
  line-height: 1.65;
  color: #444444;
}

.tc-link {
  color: var(--color-crimson);
  font-weight: 600;
  text-decoration: underline;
}

.tc-modal-footer {
  padding: 16px 30px;
  border-top: 1px solid rgba(0, 0, 0, 0.07);
  background: #FAF8F5;
  display: flex;
  justify-content: flex-end;
}

.btn-tc-accept {
  background: var(--color-crimson);
  color: #FFFFFF;
  border: none;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 11px 24px;
  border-radius: 24px;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 4px 14px rgba(200, 35, 44, 0.25);
}

.btn-tc-accept:hover {
  background: #96161D;
  transform: translateY(-1px);
}

/* ==========================================================================
   FLOATING QUICK ACTIONS
   ========================================================================== */
.floating-quick-actions {
  position: fixed;
  bottom: 22px;
  right: 22px;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 6px;
  border-radius: 40px;
  border: 1px solid rgba(168, 130, 69, 0.3);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
  transition: transform 0.3s ease;
}

.floating-quick-actions:hover {
  transform: translateY(-2px);
  border-color: var(--color-crimson);
}

.float-quick-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 7px 13px;
  border-radius: 30px;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all 0.25s ease;
}

.float-call {
  background: #FAF8F5;
  color: var(--color-text-primary);
  border: 1px solid rgba(168, 130, 69, 0.25);
}

.float-call svg {
  width: 13px;
  height: 13px;
  stroke: var(--color-gold);
}

.float-call:hover {
  color: var(--color-crimson);
  border-color: var(--color-crimson);
}

.float-book {
  background: linear-gradient(135deg, #C8232C 0%, #96161D 100%);
  color: #FFFFFF;
  box-shadow: 0 2px 10px rgba(200, 35, 44, 0.3);
}

.float-book:hover {
  background: linear-gradient(135deg, #D42630 0%, #A81820 100%);
}

.float-wa {
  background: #25D366;
  color: #FFFFFF;
}

.float-wa:hover {
  background: #1eb956;
}

/* ==========================================================================
   ANIMATIONS & SCROLL REVEALS
   ========================================================================== */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.85s var(--ease-editorial), transform 0.85s var(--ease-editorial);
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.15s;
}

.delay-2 {
  transition-delay: 0.3s;
}

/* ==========================================================================
   CUSTOM LUXURY MOUSE CURSOR (HIGH CONTRAST ON WHITE)
   ========================================================================== */
@media (pointer: fine) {
  body {
    cursor: none;
  }
  a, button, input, select, textarea, .service-card, .gallery-item, .combo-package-card, .movable-banner, .rate-tab-btn, .filter-chip {
    cursor: none !important;
  }
}

.custom-cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 7px;
  height: 7px;
  background-color: var(--color-crimson);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: opacity 0.25s ease, transform 0.15s ease, background-color 0.25s ease;
  box-shadow: 0 0 10px rgba(200, 35, 44, 0.6);
}

.custom-cursor-follower {
  position: fixed;
  top: 0;
  left: 0;
  width: 36px;
  height: 36px;
  border: 1.5px solid rgba(168, 130, 69, 0.7);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  transition: width 0.3s var(--ease-editorial), height 0.3s var(--ease-editorial), background-color 0.3s ease, border-color 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.cursor-text {
  font-family: var(--font-body);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #FFFFFF;
  opacity: 0;
  transform: scale(0.6);
  transition: opacity 0.2s ease, transform 0.2s ease;
  white-space: nowrap;
  pointer-events: none;
}

/* Cursor State Variations */
body.cursor-hover .custom-cursor-follower {
  width: 54px;
  height: 54px;
  border-color: var(--color-crimson);
  background-color: rgba(200, 35, 44, 0.08);
  box-shadow: 0 0 20px rgba(200, 35, 44, 0.2);
}

body.cursor-hover .custom-cursor-dot {
  background-color: var(--color-crimson);
  transform: translate(-50%, -50%) scale(1.3);
}

body.cursor-view .custom-cursor-follower {
  width: 68px;
  height: 68px;
  border-color: var(--color-crimson);
  background-color: rgba(17, 17, 17, 0.9);
  backdrop-filter: blur(8px);
}

body.cursor-view .cursor-text {
  opacity: 1;
  transform: scale(1);
}

body.cursor-view .custom-cursor-dot {
  opacity: 0;
}

body.cursor-drag .custom-cursor-follower {
  width: 70px;
  height: 70px;
  border-color: var(--color-gold);
  background-color: rgba(17, 17, 17, 0.9);
  backdrop-filter: blur(6px);
}

body.cursor-drag .cursor-text {
  opacity: 1;
  transform: scale(1);
}

body.cursor-drag .custom-cursor-dot {
  opacity: 0;
}

body.cursor-book .custom-cursor-follower {
  width: 66px;
  height: 66px;
  border-color: var(--color-crimson);
  background-color: rgba(200, 35, 44, 0.9);
}

body.cursor-book .cursor-text {
  opacity: 1;
  transform: scale(1);
}

body.cursor-book .custom-cursor-dot {
  opacity: 0;
}

/* ==========================================================================
   MOVABLE INTERACTIVE ANNOUNCEMENT BANNER (ON WHITE THEME)
   ========================================================================== */
.movable-banner {
  position: fixed;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 950;
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 8px 18px 8px 12px;
  border-radius: 40px;
  border: 1px solid rgba(168, 130, 69, 0.35);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12), 0 0 25px rgba(200, 35, 44, 0.06);
  user-select: none;
  max-width: 92vw;
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
  color: var(--color-text-primary);
}

.movable-banner.is-dragging {
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2), 0 0 35px rgba(200, 35, 44, 0.15);
  border-color: var(--color-crimson);
  transform: scale(1.02);
  transition: none;
}

.banner-drag-handle {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  background: #FAF8F5;
  border: 1px solid rgba(168, 130, 69, 0.3);
  border-radius: 20px;
  cursor: grab;
  transition: background 0.2s ease;
}

.banner-drag-handle:active {
  cursor: grabbing;
  background: #EFE7DA;
}

.drag-dots {
  font-size: 0.85rem;
  color: var(--color-gold);
  line-height: 1;
  letter-spacing: -2px;
}

.drag-tag {
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: var(--color-champagne-light);
}

.banner-content {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  color: var(--color-text-primary);
}

.banner-sparkle {
  color: var(--color-gold);
  font-size: 0.75rem;
  animation: pulseGold 2s infinite;
}

@keyframes pulseGold {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.3); opacity: 1; }
}

.banner-text strong {
  color: var(--color-crimson);
  font-weight: 700;
  letter-spacing: 0.04em;
}

.banner-cta-link {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--color-crimson);
  background: #FAF8F5;
  padding: 4px 10px;
  border-radius: 20px;
  border: 1px solid rgba(200, 35, 44, 0.25);
  white-space: nowrap;
  transition: all 0.2s ease;
}

.banner-cta-link:hover {
  background: var(--color-crimson);
  color: #FFFFFF;
}

.banner-actions {
  display: flex;
  align-items: center;
  gap: 6px;
}

.banner-reset-btn, .banner-close-btn {
  background: transparent;
  color: var(--color-text-muted);
  font-size: 0.95rem;
  padding: 2px 6px;
  border-radius: 50%;
  line-height: 1;
  transition: color 0.2s ease;
}

.banner-reset-btn:hover, .banner-close-btn:hover {
  color: var(--color-crimson);
}

/* ==========================================================================
   STUNNING GRAPHICS: ROTATING CIRCULAR ATELIER SEAL
   ========================================================================== */
.rotating-atelier-seal {
  position: absolute;
  bottom: 24px;
  right: -24px;
  width: 124px;
  height: 124px;
  z-index: 4;
  pointer-events: auto;
  cursor: pointer;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
}

.seal-svg {
  width: 100%;
  height: 100%;
  animation: rotateSeal 20s linear infinite;
  transform-origin: center;
}

.rotating-atelier-seal:hover .seal-svg {
  animation-duration: 6s;
}

@keyframes rotateSeal {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.seal-text {
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 2.8px;
  fill: #111111;
  text-transform: uppercase;
}

.seal-center-scissors {
  font-size: 28px;
  fill: var(--color-gold);
}

/* 3D Tilt Graphics & Glare */
.hero-image-wrapper[data-tilt="true"] {
  perspective: 1000px;
  transform-style: preserve-3d;
  transition: transform 0.15s ease-out;
}

.hero-tilt-glare {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.3) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 3;
}

.hero-image-wrapper:hover .hero-tilt-glare {
  opacity: 1;
}

/* Luxury Corner Brackets Graphic on Cards */
.rate-group-card, .combo-package-card {
  position: relative;
}

.rate-group-card::before, .combo-package-card::before {
  content: '';
  position: absolute;
  top: 6px;
  left: 6px;
  width: 10px;
  height: 10px;
  border-top: 1px solid rgba(168, 130, 69, 0.4);
  border-left: 1px solid rgba(168, 130, 69, 0.4);
  pointer-events: none;
}

.rate-group-card::after, .combo-package-card::after {
  content: '';
  position: absolute;
  bottom: 6px;
  right: 6px;
  width: 10px;
  height: 10px;
  border-bottom: 1px solid rgba(168, 130, 69, 0.4);
  border-right: 1px solid rgba(168, 130, 69, 0.4);
  pointer-events: none;
}

/* ==========================================================================
   RESPONSIVE DESIGN (BREAKPOINTS)
   ========================================================================== */
@media (max-width: 1100px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 45px;
  }

  .nav-container {
    gap: 20px;
  }

  .brand-logo {
    margin-right: 14px;
  }

  .brand-logo-img {
    height: 38px;
    max-width: 180px;
  }

  .nav-links {
    gap: 12px;
  }

  .nav-link {
    font-size: 0.74rem;
    letter-spacing: 0.05em;
  }

  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-subtext {
    max-width: 580px;
  }

  .hero-cta-group {
    justify-content: center;
  }

  .hero-stats-badge {
    justify-content: center;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .intro-header-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .intro-features-grid {
    grid-template-columns: 1fr;
  }

  .footer-top-row {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 900px) {
  .desktop-nav, .phone-link-nav {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

  .visual-break-grid {
    grid-template-columns: 1fr;
  }

  .panel-left .panel-overlay {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .rate-card-grid {
    grid-template-columns: 1fr;
  }

  .rate-group-card.span-2 {
    grid-column: span 1;
  }

  .two-col-rate-list {
    grid-template-columns: 1fr;
    gap: 16px;
  }

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

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 230px;
  }

  .gallery-item.item-large {
    grid-column: span 2;
    grid-row: span 1;
  }

  .experience-checklist-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  :root {
    --header-height: 70px;
  }

  .btn-primary-nav span.btn-arrow {
    display: none;
  }

  .hero-float-card {
    left: 0;
    right: 0;
    bottom: -15px;
    justify-content: center;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .form-row, .modal-form-row {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item.item-large, .gallery-item.item-wide {
    grid-column: span 1;
  }

  .booking-phone-buttons {
    flex-direction: column;
  }

  .footer-top-row {
    grid-template-columns: 1fr;
  }

  .footer-bottom-bar {
    flex-direction: column;
    text-align: center;
  }

  .floating-quick-actions {
    bottom: 14px;
    right: 14px;
    left: 14px;
    justify-content: space-around;
  }
}

/* Accessibility: Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .marquee-track, .seal-svg {
    animation: none !important;
  }
}
