/* ==========================================================================
   AURA NAILS HUB — Burgundy & White Design System
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&family=Syne:wght@500;700;800&display=swap');

:root {
  /* ── Core Backgrounds ── */
  --bg-primary: #FFFFFF;
  --bg-secondary: #F5F5F5;
  --bg-card: #FFFFFF;
  --bg-card-hover: #F5F5F5;
  --bg-glass: rgba(107, 39, 55, 0.04);
  --bg-glass-strong: rgba(107, 39, 55, 0.08);

  /* ── Brand: Burgundy ── */
  --gold-primary: #6B2737;
  --gold-light: #8C3A4D;
  --gold-gradient: linear-gradient(135deg, #6B2737 0%, #8C3A4D 100%);
  --gold-glow: rgba(107, 39, 55, 0.18);

  --aura-purple: #8C3A4D;
  --aura-pink: #8C3A4D;
  --aura-cyan: #F5F5F5;
  --aura-gradient: linear-gradient(135deg, #6B2737 0%, #8C3A4D 100%);

  /* ── Text Colors ── */
  --text-main: #2E2A2B;
  --text-muted: #6B6B6B;
  --text-dim: #9B9B9B;

  /* ── Borders & Shadows ── */
  --border-subtle: rgba(0, 0, 0, 0.08);
  --border-gold: rgba(107, 39, 55, 0.35);
  --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.07);
  --shadow-gold: 0 6px 20px rgba(107, 39, 55, 0.15);
  --shadow-glow: 0 0 30px rgba(107, 39, 55, 0.12);

  /* ── Typography ── */
  --font-display: 'Syne', 'Playfair Display', serif;
  --font-serif: 'Playfair Display', serif;
  --font-body: 'Plus Jakarta Sans', 'Outfit', sans-serif;

  /* ── Transitions & Curves ── */
  --transition-fast: 0.2s cubic-bezier(0.25, 1, 0.5, 1);
  --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;

  /* ── Primary alias (used in premium.js components) ── */
  --primary: #6B2737;
  --primary-light: #8C3A4D;

  /* ── Dark mode defaults (site is permanently dark) ── */
  --bg-main: #111118;
  --bg-secondary: #1a1a24;
  --bg-card: #1e1e2a;
  --text-main: #f0eded;
  --text-muted: #9e9e9e;
  --text-dim: #6b6b6b;
  --border-subtle: rgba(255,255,255,0.08);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  color-scheme: dark;
  overflow-x: hidden;
  max-width: 100%;
  width: 100%;
}

body {
  background-color: var(--bg-main);
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  width: 100%;
  max-width: 100vw;
}

/* ==========================================================================
   CUSTOM MOUSE CURSOR
   ========================================================================== */
.aura-cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--gold-light);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, background-color 0.2s;
  box-shadow: 0 0 10px var(--gold-primary);
}

.aura-cursor-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 44px;
  height: 44px;
  border: 1.5px solid rgba(107, 39, 55, 0.4);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s, border-color 0.3s, background-color 0.3s;
  background: radial-gradient(circle, rgba(107, 39, 55, 0.08) 0%, transparent 70%);
}

.cursor-hover {
  width: 14px;
  height: 14px;
  background: #ffffff;
}

.aura-hover {
  width: 65px;
  height: 65px;
  border-color: var(--gold-light);
  background: radial-gradient(circle, rgba(107, 39, 55, 0.15) 0%, transparent 75%);
}

.cursor-click {
  transform: translate(-50%, -50%) scale(0.7);
}

.aura-click {
  transform: translate(-50%, -50%) scale(0.85);
  border-color: #ffffff;
}

/* ==========================================================================
   PARALLAX ATMOSPHERE ORBS
   ========================================================================== */
.parallax-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.aura-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.35;
  will-change: transform;
}

/* Orbs are very subtle on light backgrounds */
.orb-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(107, 39, 55, 0.06) 0%, transparent 70%);
  top: -100px;
  right: -100px;
}

.orb-2 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(140, 58, 77, 0.05) 0%, transparent 70%);
  top: 40%;
  left: -200px;
  opacity: 0.8;
}

.orb-3 {
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(107, 39, 55, 0.04) 0%, transparent 70%);
  bottom: 5%;
  right: -150px;
  opacity: 0.7;
}

.mesh-grid-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(107, 39, 55, 0.04) 1px, transparent 1px);
  background-size: 36px 36px;
  opacity: 0.6;
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 18px 30px;
  transition: all var(--transition-smooth);
  position: relative;
}

.site-header.header-scrolled {
  padding: 12px 30px;
  background: rgba(17, 17, 24, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.nav-container {
  max-width: 1350px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text-main);
}

.brand-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--gold-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #ffffff;
  font-weight: 800;
  box-shadow: 0 0 20px var(--gold-glow);
  flex-shrink: 0;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.brand-sub {
  font-size: 0.65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: color var(--transition-fast);
  position: relative;
}

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

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-gradient);
  transition: width var(--transition-fast);
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.btn-upload-nav {
  background: rgba(212, 163, 115, 0.15);
  color: var(--gold-light);
  border: 1px solid var(--border-gold);
  padding: 10px 20px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 1px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all var(--transition-smooth);
}

.btn-upload-nav:hover {
  background: var(--gold-gradient);
  color: #120e18;
  box-shadow: 0 0 20px var(--gold-glow);
  transform: translateY(-2px);
}

.btn-book-nav {
  background: var(--gold-gradient);
  color: #120e18;
  padding: 10px 24px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all var(--transition-smooth);
  box-shadow: 0 4px 15px rgba(212, 163, 115, 0.3);
}

.btn-book-nav:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 25px rgba(212, 163, 115, 0.45);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: 1.5px solid rgba(255,255,255,0.25);
  color: #ffffff;
  font-size: 1.4rem;
  cursor: pointer;
  padding: 6px 10px;
  border-radius: 8px;
  line-height: 1;
  transition: background 0.2s;
}
.mobile-menu-btn:hover {
  background: rgba(255,255,255,0.1);
}

/* ==========================================================================
   HERO SECTION WITH PARALLAX & TILT
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 140px 24px 80px;
  z-index: 1;
  background: 
    linear-gradient(to right, rgba(5, 5, 5, 0.98) 0%, rgba(5, 5, 5, 0.85) 50%, rgba(5, 5, 5, 0.4) 100%),
    url('./hero-bg.jpg') center/cover no-repeat;
}

.hero-container {
  max-width: 1300px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 50px;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(212, 163, 115, 0.3);
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-light);
  width: fit-content;
  backdrop-filter: blur(10px);
}

.status-dot {
  width: 8px;
  height: 8px;
  background: #10b981;
  border-radius: 50%;
  box-shadow: 0 0 10px #10b981;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 4.8rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.5px;
  text-transform: uppercase;
}

.hero-title span.glow-text {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
  font-style: italic;
  font-family: var(--font-serif);
}

.hero-description {
  font-size: 1.12rem;
  color: var(--text-muted);
  max-width: 580px;
  line-height: 1.7;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-top: 10px;
}

.btn-primary {
  background: var(--gold-gradient);
  color: #ffffff;
  padding: 16px 36px;
  border-radius: var(--radius-full);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all var(--transition-smooth);
  box-shadow: 0 6px 20px rgba(107, 39, 55, 0.3);
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 40px rgba(212, 163, 115, 0.5);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-main);
  border: 1px solid var(--border-subtle);
  padding: 16px 32px;
  border-radius: var(--radius-full);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all var(--transition-smooth);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--gold-primary);
  color: var(--gold-light);
  transform: translateY(-3px);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding-top: 25px;
  border-top: 1px solid var(--border-subtle);
  margin-top: 15px;
}

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

.stat-number {
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--gold-light);
}

.stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Hero Visual Card (3D Tilt) */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-visual-card {
  position: relative;
  width: 100%;
  max-width: 440px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
  transition: transform 0.5s ease;
}

.hero-visual-card img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
  transition: transform 0.8s ease;
}

.hero-visual-card:hover img {
  transform: scale(1.05);
}

.hero-visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11, 9, 14, 0.95) 0%, rgba(11, 9, 14, 0.2) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
}

.hero-visual-badge {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold-light);
  margin-bottom: 6px;
}

.hero-visual-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
}

.hero-floating-badge {
  position: absolute;
  background: rgba(18, 14, 24, 0.85);
  backdrop-filter: blur(15px);
  border: 1px solid var(--border-gold);
  padding: 10px 14px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.5);
  z-index: 2;
  animation: floatSlow 4s ease-in-out infinite alternate;
}

.badge-top-right {
  top: 15px;
  right: 10px;
}

.badge-bottom-left {
  bottom: 25px;
  left: 10px;
  animation-delay: -2s;
}

@keyframes floatSlow {
  0% { transform: translateY(0px); }
  100% { transform: translateY(-12px); }
}

/* ==========================================================================
   TILT CARD & SPECULAR LIGHTING ENGINE
   ========================================================================== */
.tilt-card {
  position: relative;
  transition: transform 0.15s ease-out, box-shadow 0.3s ease;
  transform-style: preserve-3d;
  will-change: transform;
}

.tilt-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
    rgba(212, 163, 115, 0.15),
    transparent 60%
  );
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 3;
}

.tilt-card:hover::before {
  opacity: 1;
}

/* ==========================================================================
   SECTION COMMON STYLES
   ========================================================================== */
section {
  position: relative;
  padding: 72px 24px;
  z-index: 1;
}

.section-container {
  max-width: 1300px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-light);
  background: rgba(212, 163, 115, 0.1);
  border: 1px solid var(--border-gold);
  padding: 6px 18px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ==========================================================================
   SERVICES & RATE MENU
   ========================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-bottom: 50px;
}

.service-card {
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 35px 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  border-color: var(--border-gold);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.5), var(--shadow-gold);
}

.service-icon {
  font-size: 2.2rem;
  margin-bottom: 5px;
}

.service-card-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-main);
}

.service-card-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  flex-grow: 1;
}

.service-price-tag {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding-top: 15px;
  border-top: 1px solid var(--border-subtle);
}

.service-price-tag .amount {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--gold-light);
}

.service-price-tag .duration {
  font-size: 0.8rem;
  color: var(--text-dim);
}

/* ==========================================================================
   INTERACTIVE SET BUILDER & PRICE ESTIMATOR
   ========================================================================== */
.calculator-card {
  background: linear-gradient(145deg, rgba(22, 17, 29, 0.9) 0%, rgba(14, 10, 19, 0.95) 100%);
  backdrop-filter: blur(25px);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 45px 40px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
  margin-top: 40px;
}

.calc-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
}

.calc-options {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.calc-group-title {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 12px;
}

.option-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip-btn {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  padding: 10px 18px;
  border-radius: var(--radius-md);
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 8px;
}

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

.chip-btn.active {
  background: rgba(107, 39, 55, 0.1);
  border-color: var(--gold-primary);
  color: var(--gold-primary);
  box-shadow: 0 0 15px rgba(107, 39, 55, 0.12);
}

.calc-summary-box {
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.summary-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 25px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.summary-row.total-row {
  border-top: 1px solid var(--border-subtle);
  padding-top: 15px;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold-light);
}

.total-amount {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--gold-light);
}

/* ==========================================================================
   DYNAMIC PORTFOLIO GALLERY
   ========================================================================== */
.gallery-controls {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.filter-btn {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  padding: 10px 22px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all var(--transition-smooth);
}

.filter-btn:hover {
  border-color: var(--border-gold);
  color: var(--text-main);
  transform: translateY(-2px);
}

.filter-btn.active {
  background: var(--gold-gradient);
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 4px 18px rgba(107, 39, 55, 0.25);
}

.gallery-search-wrap {
  max-width: 450px;
  margin: 0 auto;
  position: relative;
  width: 100%;
}

.gallery-search-input {
  width: 100%;
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  padding: 12px 24px 12px 48px;
  color: var(--text-main);
  font-size: 0.9rem;
  font-family: var(--font-body);
  outline: none;
  transition: all var(--transition-fast);
}

.gallery-search-input:focus {
  border-color: var(--gold-primary);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(107, 39, 55, 0.12);
}

.search-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 1rem;
}

/* Gallery Grid & Cards */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}

.gallery-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-smooth);
  box-shadow: var(--shadow-card);
}

.gallery-card:hover {
  border-color: var(--border-gold);
  box-shadow: 0 8px 30px rgba(107, 39, 55, 0.12);
  transform: translateY(-4px);
}

.card-image-wrap {
  position: relative;
  width: 100%;
  height: 185px;
  overflow: hidden;
  background: #1a1a24;
  cursor: pointer;
}

.card-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-card:hover .card-image-wrap img {
  transform: scale(1.06);
}

.card-badge-category {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-subtle);
  color: var(--gold-primary);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  z-index: 2;
}

.card-badge-price {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--gold-gradient);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  z-index: 2;
  box-shadow: 0 2px 8px rgba(107, 39, 55, 0.3);
}

.card-quick-actions {
  position: absolute;
  bottom: 16px;
  right: 16px;
  display: flex;
  gap: 8px;
  opacity: 0;
  transform: translateY(10px);
  transition: all var(--transition-fast);
  z-index: 2;
}

.gallery-card:hover .card-quick-actions {
  opacity: 1;
  transform: translateY(0);
}

.action-circle-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-subtle);
  color: var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.action-circle-btn:hover {
  background: var(--gold-gradient);
  color: #ffffff;
  transform: scale(1.1);
}

.card-content {
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex-grow: 1;
}

.card-title {
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-main);
}

.card-style-sub {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.card-tags-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}

.tag-pill {
  font-size: 0.72rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  color: var(--text-dim);
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

.card-footer-btns {
  display: flex;
  gap: 10px;
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid var(--border-subtle);
}

.btn-book-look {
  flex: 1;
  background: var(--gold-primary);
  border: none;
  color: #ffffff;
  padding: 10px 8px;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-align: center;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: all var(--transition-fast);
  box-shadow: 0 4px 12px rgba(107, 39, 55, 0.3);
}

.btn-book-look:hover {
  background: var(--gold-light);
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(107, 39, 55, 0.45);
}

/* ==========================================================================
   INSPIRATION VAULT (HORIZONTAL CAROUSEL & SWIPER)
   ========================================================================== */
.inspo-scroll-container {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding: 20px 10px 40px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.inspo-scroll-container::-webkit-scrollbar {
  display: none;
}

.inspo-card {
  min-width: 280px;
  max-width: 300px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 12px;
  scroll-snap-align: center;
  flex-shrink: 0;
  transition: all var(--transition-smooth);
}

.inspo-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-6px);
}

.inspo-img-wrap {
  width: 100%;
  height: 320px;
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.inspo-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.inspo-card:hover .inspo-img-wrap img {
  transform: scale(1.06);
}

.inspo-meta {
  padding: 12px 6px 4px;
}

.inspo-category {
  font-size: 0.72rem;
  color: var(--gold-primary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.inspo-style {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-main);
  margin-top: 2px;
}

/* ==========================================================================
   PRO STANDARDS & WHY CHOOSE US
   ========================================================================== */
.standards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.standard-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  transition: all var(--transition-smooth);
}

.standard-card:hover {
  border-color: var(--border-gold);
  background: var(--bg-card-hover);
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.5);
}

.standard-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(212, 163, 115, 0.12);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 10px;
  flex-shrink: 0;
}

.standard-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.standard-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ==========================================================================
   FOOTER & COVERAGE
   ========================================================================== */
.site-footer {
  background: #F5F5F5;
  border-top: 1px solid var(--border-subtle);
  padding: 80px 24px 40px;
  position: relative;
  z-index: 1;
}

.footer-container {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 50px;
}

.footer-brand-col {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-brand-col p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.7;
}

.hours-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hour-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  color: var(--text-muted);
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.hour-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.social-links-row {
  display: flex;
  gap: 14px;
  margin-top: 10px;
}

.social-icon-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  color: var(--text-main);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all var(--transition-fast);
}

.social-icon-btn:hover {
  background: var(--gold-gradient);
  color: #ffffff;
  transform: translateY(-3px);
}

.footer-bottom {
  max-width: 1300px;
  margin: 60px auto 0;
  padding-top: 25px;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-dim);
  font-size: 0.82rem;
}

/* ==========================================================================
   MODALS (UPLOAD, LIGHTBOX, FIREBASE CONFIG)
   ========================================================================== */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 24px 24px;
  z-index: 5000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  overflow-y: auto;
}

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

.modal-window {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  max-width: 580px;
  width: 100%;
  padding: 22px;
  position: relative;
  box-shadow: 0 12px 50px rgba(0, 0, 0, 0.15);
  transform: scale(0.92) translateY(20px);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  margin: auto;
}

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

.modal-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.modal-close-btn:hover {
  background: #ef4444;
  color: #ffffff;
  border-color: #ef4444;
}

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

.modal-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.modal-subtitle {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* Upload Form Styles */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 12px;
}

.form-label {
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
}

.form-input, .form-select, .form-textarea {
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 9px 12px;
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 0.88rem;
  outline: none;
  transition: all var(--transition-fast);
  width: 100%;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--gold-primary);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(107, 39, 55, 0.1);
}

.form-select option {
  background: #ffffff;
  color: var(--text-main);
}

/* Upload Dropzone */
.dropzone-area {
  border: 2px dashed var(--border-gold);
  border-radius: var(--radius-md);
  padding: 30px 20px;
  text-align: center;
  background: rgba(107, 39, 55, 0.03);
  cursor: pointer;
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.dropzone-area:hover, .dropzone-area.dragover {
  background: rgba(107, 39, 55, 0.07);
  border-color: var(--gold-light);
}

.dropzone-icon {
  font-size: 2.5rem;
  color: var(--gold-primary);
  margin-bottom: 10px;
}

.dropzone-text {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-main);
}

.dropzone-sub {
  font-size: 0.8rem;
  color: var(--text-dim);
  margin-top: 4px;
}

.image-preview-box {
  width: 100%;
  height: 220px;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-top: 15px;
  display: none;
  position: relative;
}

.image-preview-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.btn-remove-img {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  cursor: pointer;
}

/* Lightbox Modal Window */
.lightbox-window {
  max-width: 960px;
  max-height: 92vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 0;
  overflow: hidden;
  overflow-y: auto;
}

.lightbox-image-wrap {
  width: 100%;
  height: 100%;
  min-height: 360px;
  max-height: 92vh;
  background: #F5F5F5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  max-height: 92vh;
}

.lightbox-info {
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #ffffff;
  overflow-y: auto;
  max-height: 92vh;
}

/* Floating WhatsApp Quick Action Button */
.floating-wa-btn {
  position: fixed;
  bottom: 24px;
  right: 20px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #25d366;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
  text-decoration: none;
  z-index: 990;
  transition: all var(--transition-smooth);
  animation: pulseWa 3s infinite;
}

.floating-wa-btn:hover {
  transform: scale(1.1) translateY(-4px);
  box-shadow: 0 15px 35px rgba(37, 211, 102, 0.6);
}

@keyframes pulseWa {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { box-shadow: 0 0 0 16px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.scroll-to-top-btn {
  position: fixed;
  bottom: 90px;
  right: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold-gradient);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  z-index: 998;
  border: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--transition-smooth);
}

.scroll-to-top-btn.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-to-top-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 25px rgba(212, 163, 115, 0.4);
}

/* Toast Notifications */
.toast-container {
  position: fixed;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 99999;
  pointer-events: none;
}

.toast {
  background: #2E2A2B;
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
  padding: 12px 24px;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 600;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  gap: 10px;
  animation: toastIn 0.3s ease forwards;
}

@keyframes toastIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

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

  .hero-content {
    align-items: center;
  }

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

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

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

  .footer-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .lightbox-window {
    grid-template-columns: 1fr;
    max-height: 92vh;
    overflow-y: auto;
  }

  .lightbox-image-wrap {
    min-height: 280px;
    max-height: 45vh;
  }
}

@media (max-width: 1200px) {
  .site-header {
    padding: 12px 16px;
  }

  /* Hide all nav links — show hamburger instead */
  .nav-menu {
    display: none !important;
  }
  .nav-menu.mobile-open {
    display: flex !important;
    flex-direction: column;
    position: fixed;
    top: 62px;
    left: 0;
    width: 100%;
    background: #111118;
    padding: 8px 0;
    border-bottom: 2px solid var(--primary);
    box-shadow: 0 12px 40px rgba(0,0,0,0.6);
    z-index: 9999;
  }
  .nav-menu.mobile-open li { width: 100%; }
  .nav-menu.mobile-open a {
    display: block;
    width: 100%;
    text-align: center;
    padding: 14px 20px;
    color: #f0eded;
    font-size: 0.95rem;
    font-weight: 600;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }
  .nav-menu.mobile-open a:hover {
    background: rgba(107,39,55,0.2);
    color: #fff;
  }

  /* Show hamburger */
  .mobile-menu-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
  }

  /* Hide clutter on mobile header */
  .btn-upload-nav { display: none !important; }
  .avail-badge { display: none !important; }
  .dark-mode-toggle { display: none !important; }

  /* Shrink Book Now on small screens */
  .btn-book-nav {
    font-size: 0.78rem;
    padding: 8px 14px;
    white-space: nowrap;
  }

  .hero-title {
    font-size: 2.6rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .modal-window {
    padding: 24px 18px;
  }

  .floating-wa-btn {
    bottom: 20px;
    right: 20px;
    width: 52px;
    height: 52px;
    font-size: 1.5rem;
  }
  .scroll-to-top-btn {
    bottom: 85px;
    right: 20px;
    width: 44px;
    height: 44px;
    font-size: 1.1rem;
  }
}

/* ==========================================================================
   EQUITY MOBILE 50% DEPOSIT & PAYMENT STYLES
   ========================================================================== */
.equity-brand-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(163, 0, 0, 0.15);
  border: 1px solid rgba(220, 38, 38, 0.4);
  color: #ff6b6b;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.deposit-highlight-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8f6f7 100%);
  border: 1px solid rgba(107, 39, 55, 0.15);
  border-radius: var(--radius-md);
  padding: 14px;
  margin: 10px 0 16px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(107, 39, 55, 0.06);
}

.deposit-stat-box {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.deposit-stat-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.deposit-stat-val {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-main);
}

.deposit-stat-box.highlight .deposit-stat-val {
  color: var(--gold-primary);
  font-size: 1.45rem;
}

.pay-tab-nav {
  display: flex;
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 4px;
  margin-bottom: 20px;
  gap: 6px;
}

.pay-tab-btn {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--text-muted);
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.pay-tab-btn.active {
  background: var(--gold-gradient);
  color: #ffffff;
  font-weight: 700;
}

/* Paybill Details Box */
.paybill-details-box {
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 20px;
}

.copy-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 12px;
  background: #ffffff;
  border-radius: 8px;
  border: 1px solid var(--border-subtle);
}

.copy-label {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.copy-val-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.copy-val {
  font-family: monospace;
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold-light);
}

.btn-copy-mini {
  background: rgba(107, 39, 55, 0.08);
  border: 1px solid var(--border-gold);
  color: var(--gold-primary);
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.72rem;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.btn-copy-mini:hover {
  background: var(--gold-gradient);
  color: #ffffff;
}

/* STK Push Waiting Screen */
.stk-waiting-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 30px 10px;
}

.stk-phone-mockup {
  position: relative;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: rgba(212, 163, 115, 0.1);
  border: 2px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--gold-primary);
  margin-bottom: 20px;
  animation: pulseStkRing 2s infinite;
}

@keyframes pulseStkRing {
  0% { box-shadow: 0 0 0 0 rgba(212, 163, 115, 0.6); }
  70% { box-shadow: 0 0 0 20px rgba(212, 163, 115, 0); }
  100% { box-shadow: 0 0 0 0 rgba(212, 163, 115, 0); }
}

.stk-countdown-badge {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-gold);
  color: var(--gold-light);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.9rem;
  margin: 15px 0;
}

/* Digital Booking Pass / Receipt */
.booking-pass-card {
  background: linear-gradient(145deg, #ffffff 0%, #fafafa 100%);
  border: 1px solid var(--border-gold);
  border-left: 5px solid var(--gold-primary);
  border-radius: var(--radius-lg);
  padding: 30px 25px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(107, 39, 55, 0.12);
}

.booking-pass-card::before {
  content: 'PAID 30%';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-25deg);
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 900;
  color: rgba(107, 39, 55, 0.05);
  pointer-events: none;
  white-space: nowrap;
}

.pass-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 18px;
  border-bottom: 1px dashed var(--border-subtle);
  margin-bottom: 20px;
}

.pass-ref-tag {
  font-family: monospace;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--gold-light);
  letter-spacing: 1px;
}

.pass-details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 20px;
}

.pass-row {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.pass-row-label {
  font-size: 0.72rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pass-row-val {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-main);
}

.pass-financial-summary {
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}

/* ==========================================================================
   HERO TITLE SUB LINE
   ========================================================================== */
.hero-title-sub {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
  font-style: italic;
  font-family: var(--font-serif);
}

/* ==========================================================================
   SERVICES — CLEAN LIST LAYOUT
   ========================================================================== */
.services-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-list-item {
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 28px 32px;
  display: grid;
  grid-template-columns: 60px 1fr auto;
  align-items: center;
  gap: 24px;
  transition: all var(--transition-smooth);
}

.service-list-item:hover {
  border-color: var(--border-gold);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), var(--shadow-gold);
  transform: translateY(-3px);
}

.service-list-item.active {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 40px rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
}

.service-list-icon {
  width: 56px;
  height: 56px;
  background: rgba(212, 163, 115, 0.12);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--gold-primary);
  flex-shrink: 0;
}

.service-list-body { flex: 1; }

.service-features {
  list-style: none;
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.service-features li {
  font-size: 0.85rem;
  color: var(--text-muted);
  padding-left: 14px;
  position: relative;
}

.service-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  background: var(--gold-primary);
  border-radius: 50%;
  opacity: 0.7;
}

.service-list-price {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  min-width: 140px;
  text-align: right;
}

/* ==========================================================================
   CLIENT REVIEWS
   ========================================================================== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: all var(--transition-smooth);
}

.review-card:hover {
  border-color: var(--border-gold);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.5), var(--shadow-gold);
  transform: translateY(-4px);
}

.review-stars {
  display: flex;
  gap: 4px;
  color: var(--gold-primary);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.review-text {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.6;
  flex-grow: 1;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--border-subtle);
  margin-top: auto;
  flex-shrink: 0;
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gold-gradient);
  color: #fff;
  font-weight: 800;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.review-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-main);
}

.review-meta {
  font-size: 0.75rem;
  color: var(--text-dim);
  margin-top: 1px;
}

/* ==========================================================================
   MOBILE RESPONSIVE — FULL BREAKPOINTS
   ========================================================================== */
@media (max-width: 1024px) {
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .calc-grid { grid-template-columns: 1fr; }
  .hero-container { grid-template-columns: 1fr; text-align: center; gap: 40px; }
  .hero-visual { display: none; }
  .hero-cta-group { justify-content: center; }
  .hero-stats { grid-template-columns: repeat(3, 1fr); }
  .standard-card { padding: 28px 22px; }
  .service-list-item { padding: 22px 24px; }
}

@media (max-width: 768px) {
  section { padding: 52px 14px; }
  .section-header { margin-bottom: 30px; }
  .section-title { font-size: clamp(1.6rem, 6vw, 2.4rem); }
  .section-subtitle { font-size: 0.92rem; }

  /* Nav */
  .nav-menu { 
    display: none; 
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #111118;
    flex-direction: column;
    padding: 10px 0;
    border-bottom: 2px solid var(--primary);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    z-index: 999;
  }
  .nav-menu.mobile-open {
    display: flex !important;
  }
  .nav-menu a {
    width: 100%;
    text-align: center;
    padding: 14px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    font-size: 0.92rem;
    font-weight: 600;
    color: #f0eded;
    transition: background 0.2s, color 0.2s;
  }
  .nav-actions .btn-upload-nav { display: none; }
  .brand-name { font-size: 1.1rem; letter-spacing: 1.5px; }
  .brand-sub { font-size: 0.58rem; letter-spacing: 2px; }
  .brand-icon { width: 32px; height: 32px; font-size: 0.95rem; border-radius: 8px; }

  /* Hero */
  .hero-section { padding: 80px 14px 36px; }
  .hero-title { font-size: clamp(1.8rem, 7vw, 2.8rem); }
  .hero-description { font-size: 0.88rem; line-height: 1.6; }
  .hero-stats { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .stat-number { font-size: 1.2rem; }
  .stat-label { font-size: 0.65rem; }
  .hero-floating-badge { display: none; }

  /* Services list stacked */
  .service-list-item {
    grid-template-columns: 44px 1fr;
    grid-template-rows: auto auto;
    gap: 10px 14px;
    padding: 18px 16px;
  }
  .service-list-icon {
    width: 44px;
    height: 44px;
    font-size: 1.2rem;
    border-radius: 10px;
  }
  .service-list-price {
    grid-column: 2;
    align-items: flex-start;
    min-width: unset;
    text-align: left;
    flex-direction: row;
    gap: 12px;
    align-items: center;
  }

  /* Standards */
  .standards-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .standard-card { padding: 22px 18px; gap: 12px; }
  .standard-icon-wrap { width: 46px; height: 46px; font-size: 1.3rem; border-radius: 12px; margin-bottom: 4px; }
  .standard-card h3 { font-size: 1.05rem; }
  .standard-card p { font-size: 0.85rem; }

  /* Gallery */
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .card-quick-actions { opacity: 1; transform: translateY(0); }

  /* Reviews */
  .reviews-grid { grid-template-columns: 1fr; }

  /* Calculator */
  .calculator-card { padding: 20px 14px; }
  .calc-grid { grid-template-columns: 1fr; gap: 20px; }
  .chip-btn { font-size: 0.82rem; padding: 8px 14px; }

  /* Footer */
  .footer-container { grid-template-columns: 1fr !important; gap: 28px; }
  .site-footer { padding: 50px 14px 30px; }
  .social-icon-btn { width: 38px; height: 38px; font-size: 1rem; }

  /* Floating buttons — smaller on mobile */
  .floating-wa-btn { width: 48px; height: 48px; font-size: 1.4rem; bottom: 20px; right: 16px; }
  .scroll-to-top-btn { width: 40px; height: 40px; font-size: 1rem; bottom: 80px; right: 16px; }

  /* Payment/booking pass */
  .deposit-highlight-card { grid-template-columns: 1fr !important; gap: 15px; }
  .pass-details-grid { grid-template-columns: 1fr !important; gap: 15px; }
  .pass-header { flex-direction: column; align-items: flex-start; gap: 10px; }
  .pass-financial-summary { flex-direction: column; gap: 12px; text-align: center; }

  /* Payment modal form grids — stack on mobile */
  .payment-form-grid-2col {
    grid-template-columns: 1fr !important;
    display: grid !important;
  }
  .modal-window {
    max-width: 100% !important;
    margin: 10px;
    border-radius: var(--radius-md);
  }

  /* Social proof toast — tighter on mobile */
  #social-proof-container { bottom: 130px; left: 10px; }
  .social-proof-toast { max-width: 220px; padding: 10px 12px; }
}

@media (max-width: 480px) {
  .hero-stats { grid-template-columns: 1fr 1fr; }

  .hero-cta-group {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-cta-group .btn-primary,
  .hero-cta-group .btn-secondary {
    justify-content: center;
    width: 100%;
  }

  /* Tighten all section padding on very small screens */
  section { padding: 40px 12px !important; }
  .section-header { margin-bottom: 24px; }
  .section-title { font-size: clamp(1.35rem, 6vw, 1.8rem); }
  .section-subtitle { font-size: 0.85rem; }

  /* Header brand tighter */
  .brand-icon { width: 28px; height: 28px; font-size: 0.85rem; }
  .brand-name { font-size: 0.95rem; letter-spacing: 1px; }
  .brand-sub { display: none; }
  .btn-book-nav { font-size: 0.72rem; padding: 7px 12px; gap: 5px; }
  .nav-container { padding: 0 2px; }

  .gallery-search-wrap { max-width: 100%; }
  
  /* Review cards — compact on mobile */
  .reviews-grid { grid-template-columns: 1fr; gap: 12px; }
  .review-card { padding: 16px 14px; gap: 10px; }
  .review-text { font-size: 0.85rem; }
  .review-avatar { width: 34px; height: 34px; font-size: 0.95rem; }
  .review-stars { font-size: 0.95rem; }
  .btn-primary, .btn-secondary { padding: 12px 20px; font-size: 0.82rem; gap: 8px; }

  /* Gallery card content compact */
  .gallery-card .card-info { padding: 8px 10px; }
  .card-title { font-size: 0.82rem; }
  .card-style-sub { font-size: 0.7rem; }
  .card-footer-btns { flex-direction: column; gap: 7px; }
  .btn-book-look { width: 100%; justify-content: center; }
  .card-image-wrap { height: 150px; }

  /* Service list items compact */
  .service-list-item {
    grid-template-columns: 38px 1fr;
    padding: 14px 12px;
    gap: 8px 10px;
  }
  .service-list-icon {
    width: 38px;
    height: 38px;
    font-size: 0.95rem;
    border-radius: 8px;
  }
  .service-card-title { font-size: 0.88rem; }
  .service-features li { font-size: 0.73rem; }

  /* Standards — single column on very small screens */
  .standards-grid { grid-template-columns: 1fr; gap: 12px; }
  .standard-card { padding: 18px 14px; gap: 10px; }
  .standard-icon-wrap { width: 40px; height: 40px; font-size: 1.15rem; border-radius: 10px; }
  .standard-card h3 { font-size: 1rem; }
  .standard-card p { font-size: 0.82rem; }

  /* Calculator chips compact */
  .chip-btn { font-size: 0.78rem; padding: 7px 12px; }
  .calc-summary-box { padding: 20px 14px; }

  /* Footer compact */
  .site-footer { padding: 40px 12px 24px; }
  .social-icon-btn { width: 36px; height: 36px; font-size: 0.95rem; }
  .footer-bottom { flex-direction: column; gap: 6px; text-align: center; }

  /* Floating buttons — smallest size on tiny screens */
  .floating-wa-btn { width: 44px; height: 44px; font-size: 1.3rem; bottom: 16px; right: 14px; }
  .scroll-to-top-btn { width: 38px; height: 38px; font-size: 0.95rem; bottom: 72px; right: 14px; }
}

/* ==========================================================================
   PREMIUM UPGRADE STYLES
   ========================================================================== */

/* ── 1. SCROLL REVEAL ─────────────────────────────────────────────────── */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-on-scroll.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ── 2. SKELETON LOADING SHIMMER ─────────────────────────────────────── */
@keyframes shimmerMove {
  0% { background-position: -400px 0; }
  100% { background-position: 400px 0; }
}
.shimmer {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 400px 100%;
  animation: shimmerMove 1.4s ease-in-out infinite;
  border-radius: 6px;
}
.skeleton-card {
  background: #fafafa;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.skeleton-img {
  width: 100%;
  aspect-ratio: 4/3;
}
.skeleton-body {
  padding: 14px;
}
.skeleton-line {
  display: block;
  height: 12px;
  border-radius: 4px;
}

/* ── 3. STAT COUNTER ─────────────────────────────────────────────────── */
.stat-number.counting {
  color: var(--primary);
  transition: color 0.3s;
}
.stat-number.counted {
  color: inherit;
}

/* ── 4. NAIL OF THE WEEK STRIP ───────────────────────────────────────── */
.notw-strip {
  background: linear-gradient(90deg, var(--primary) 0%, #8C3A4D 100%);
  padding: 10px 24px;
  position: relative;
  overflow: hidden;
  z-index: 100;
}
.notw-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.06) 50%, transparent 100%);
  background-size: 200% 100%;
  animation: stripShimmer 2.5s ease-in-out infinite;
}
@keyframes stripShimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
.notw-inner {
  max-width: 1350px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.notw-badge {
  background: rgba(255,255,255,0.2);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.3);
  white-space: nowrap;
}
.notw-text {
  color: rgba(255,255,255,0.92);
  font-size: 0.85rem;
  flex: 1;
}
.notw-text strong {
  color: #fff;
}
.notw-cta {
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  background: rgba(255,255,255,0.15);
  padding: 4px 12px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.3);
  white-space: nowrap;
  transition: background 0.2s;
}
.notw-cta:hover {
  background: rgba(255,255,255,0.28);
}

/* ── 5. AVAILABILITY BADGE ───────────────────────────────────────────── */
.avail-badge {
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 5px;
}
.avail-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  display: inline-block;
}
.avail-open {
  background: rgba(16, 185, 129, 0.12);
  color: #10b981;
  border: 1px solid rgba(16, 185, 129, 0.3);
}
.avail-open::before {
  background: #10b981;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.25);
  animation: pulseAvail 1.5s ease-in-out infinite;
}
.avail-busy {
  background: rgba(251, 191, 36, 0.12);
  color: #f59e0b;
  border: 1px solid rgba(251, 191, 36, 0.3);
}
.avail-busy::before {
  background: #f59e0b;
}
@keyframes pulseAvail {
  0%, 100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4); }
  50% { box-shadow: 0 0 0 5px rgba(16, 185, 129, 0); }
}

/* ── 6. BUTTON RIPPLE ────────────────────────────────────────────────── */
.btn-primary, .btn-book-nav {
  position: relative;
  overflow: hidden;
}
.btn-ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  transform: scale(0);
  animation: rippleEffect 0.6s linear;
  pointer-events: none;
}
@keyframes rippleEffect {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/* ── 7. CAROUSEL DOTS ────────────────────────────────────────────────── */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}
.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: var(--border-subtle);
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}
.carousel-dot.active {
  background: var(--primary);
  width: 22px;
  border-radius: 4px;
}

/* ── 8. SOCIAL PROOF TOAST ───────────────────────────────────────────── */
#social-proof-container {
  position: fixed;
  bottom: 180px;
  left: 20px;
  z-index: 9000;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.social-proof-toast {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-left: 4px solid var(--primary);
  border-radius: var(--radius-md);
  padding: 12px 14px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  animation: slideInToast 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  transition: opacity 0.4s ease, transform 0.4s ease;
  max-width: 280px;
}
@keyframes slideInToast {
  from { opacity: 0; transform: translateX(-120%); }
  to { opacity: 1; transform: translateX(0); }
}
.sp-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), #8C3A4D);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.sp-body { flex: 1; min-width: 0; }
.sp-name { font-size: 0.78rem; font-weight: 700; color: var(--text-main); }
.sp-look { font-size: 0.72rem; color: var(--primary); font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sp-time { font-size: 0.68rem; color: var(--text-muted); margin-top: 1px; }
.sp-close {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 1rem;
  padding: 0;
  line-height: 1;
  flex-shrink: 0;
}

/* ── 9. DARK MODE ────────────────────────────────────────────────────── */
.dark-mode-toggle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border-subtle);
  background: var(--bg-secondary);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.9rem;
  transition: all var(--transition-fast);
}
.dark-mode-toggle:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

/* Dark Mode Variables */
html.dark-mode {
  --bg-main: #121212;
  --bg-secondary: #1e1e1e;
  --text-main: #f0eded;
  --text-muted: #9e9e9e;
  --text-dim: #6b6b6b;
  --border-subtle: rgba(255,255,255,0.08);
}
html.dark-mode body {
  background: #121212;
  color: #f0eded;
}
html.dark-mode .site-header.header-scrolled {
  background: rgba(18, 18, 18, 0.95);
}
html.dark-mode .modal-window,
html.dark-mode .gallery-card,
html.dark-mode .service-list-item,
html.dark-mode .calculator-card,
html.dark-mode .review-card,
html.dark-mode .booking-pass-card {
  background: #1e1e1e;
  border-color: rgba(255,255,255,0.08);
}
html.dark-mode .form-input,
html.dark-mode .form-select {
  background: #2a2a2a;
  color: #f0eded;
  border-color: rgba(255,255,255,0.1);
}
html.dark-mode .social-proof-toast {
  background: #1e1e1e;
  border-color: rgba(255,255,255,0.08);
}
html.dark-mode .site-footer {
  background: #0d0d0d;
}

/* Mobile responsive for premium elements */
@media (max-width: 768px) {
  .notw-strip { padding: 8px 16px; }
  .notw-text { font-size: 0.78rem; }
  #social-proof-container { bottom: 140px; left: 12px; }
  .social-proof-toast { max-width: 240px; }
  .dark-mode-toggle { width: 32px; height: 32px; font-size: 0.8rem; }
}

/* ── Inspo scroll hint ─────────────────────────────────────────────────── */
.inspo-scroll-hint {
  text-align: center;
  margin-top: 14px;
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  opacity: 0.75;
}
.inspo-scroll-hint i {
  animation: nudgeRight 1.5s ease-in-out infinite;
}
@keyframes nudgeRight {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(5px); }
}

/* ── Mobile gallery 2-column compact grid ─────────────────────────────── */
@media (max-width: 600px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  .card-image-wrap { height: 145px; }
  .card-content { padding: 8px 10px; gap: 4px; }
  .card-title { font-size: 0.78rem !important; }
  .card-style-sub { font-size: 0.68rem !important; }
  .card-tags-list { display: none; }
  .card-footer-btns { flex-direction: column; gap: 6px; }
  .btn-book-look { padding: 7px 6px; font-size: 0.74rem; }
  .review-card { padding: 14px 12px; }
  .review-text { font-size: 0.82rem; }
  .review-avatar { width: 32px; height: 32px; font-size: 0.85rem; }
  /* hide inspo scroll hint on tiny screens */
  .inspo-scroll-hint { font-size: 0.7rem; }
  /* standard cards 1 col on 600px */
  .standards-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
}
