/* ============================================================
   RIDACLE — Luxury Makeup Artist Website
   Main Stylesheet
   ============================================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
  --bg-primary: #F8F4F1;
  --bg-secondary: #EFE6DF;
  --accent: #C99A86;
  --accent-rose: #C99A86;
  --accent-light: #D8B395;
  --text-dark: #1B1B1B;
  --text-muted: #5A514C;
  --white: #FFFFFF;
  --border-light: rgba(27, 27, 27, 0.08);
  --border-medium: rgba(27, 27, 27, 0.12);
  --shadow-sm: 0 2px 8px rgba(27, 27, 27, 0.04);
  --shadow-md: 0 8px 32px rgba(27, 27, 27, 0.06);
  --shadow-lg: 0 16px 48px rgba(27, 27, 27, 0.08);
  --shadow-xl: 0 24px 64px rgba(27, 27, 27, 0.1);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  --font-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-body: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-button: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

html {
  scroll-behavior: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  -ms-overflow-style: none;
  scrollbar-width: none;
  overflow-x: hidden;
  max-width: 100%;
  width: 100%;
}

html::-webkit-scrollbar {
  display: none;
}

html.lenis {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--bg-primary);
  overflow-x: hidden;
  max-width: 100%;
  width: 100%;
  position: relative;
  cursor: none;
}

/* ---------- Custom Cursor ---------- */
.cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 12px;
  height: 12px;
  background: var(--accent-rose);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: difference;
  transition: transform 0.1s ease, width 0.2s ease, height 0.2s ease;
  transform: translate(-50%, -50%);
}

.cursor-follower {
  position: fixed;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  border: 1.5px solid var(--accent);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transition: transform 0.15s ease, width 0.2s ease, height 0.2s ease;
  transform: translate(-50%, -50%);
}

.cursor.active,
.cursor-follower.active {
  transform: translate(-50%, -50%) scale(1.5);
}

.cursor-follower.active {
  width: 56px;
  height: 56px;
  background: rgba(216, 179, 149, 0.1);
}

/* ---------- Selection ---------- */
::selection {
  background: var(--accent);
  color: var(--white);
}

::-moz-selection {
  background: var(--accent);
  color: var(--white);
}

/* ---------- Focus ---------- */
:focus-visible {
  outline: 2px solid var(--accent-rose);
  outline-offset: 4px;
  border-radius: 4px;
}

/* ---------- Scroll Progress ---------- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: var(--accent-rose);
  z-index: 10000;
  width: 0%;
  transition: width 0.1s linear;
}

/* ---------- Loading Screen ---------- */
.loader {
  position: fixed;
  inset: 0;
  background: var(--bg-primary);
  z-index: 10001;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.loader-logo {
  margin-bottom: 40px;
  opacity: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
}

.loader-logo-img {
  height: clamp(130px, 18vw, 240px);
  width: auto;
  max-width: 85vw;
  object-fit: contain;
  filter: drop-shadow(0 12px 32px rgba(201, 154, 134, 0.15));
}

.loader-line {
  width: clamp(220px, 30vw, 320px);
  height: 2px;
  background: var(--border-light);
  border-radius: 2px;
  overflow: hidden;
}

.loader-fill {
  width: 0%;
  height: 100%;
  background: var(--accent-rose);
  border-radius: 2px;
}

/* ---------- Navigation ---------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 64px;
  transition: background var(--transition-smooth), backdrop-filter var(--transition-smooth);
}

.nav.scrolled {
  background: rgba(248, 244, 241, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-light);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 88px;
  max-width: 1440px;
  margin: 0 auto;
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: opacity var(--transition-fast), transform var(--transition-fast);
}

.nav-logo-img {
  height: 70px;
  width: auto;
  max-height: 70px;
  object-fit: contain;
  display: block;
}

.nav-logo:hover {
  opacity: 0.85;
  transform: scale(1.03);
}

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

.nav-links a {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  position: relative;
  padding: 4px 0;
  transition: color var(--transition-fast);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--accent-light);
  transition: width var(--transition-smooth);
}

.nav-links a:hover {
  color: var(--accent-rose);
}

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

.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 12px 28px;
  background: #A87D6A;
  color: var(--white);
  font-family: var(--font-button);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: background var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
}

.nav-cta:hover {
  background: var(--accent);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(201, 154, 134, 0.3);
}

/* Mobile Menu Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: transform var(--transition-smooth), opacity var(--transition-smooth);
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--bg-primary);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-smooth);
}

.mobile-menu.active {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu a {
  font-family: var(--font-display);
  font-size: 36px;
  color: var(--text-dark);
  text-decoration: none;
  padding: 16px;
  letter-spacing: 0.04em;
  transition: color var(--transition-fast);
}

.mobile-menu a:hover {
  color: var(--accent-rose);
}

/* ---------- Section Base ---------- */
.section {
  padding: 120px 64px;
  position: relative;
}

.section-label {
  font-family: var(--font-button);
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
  display: block;
}

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
}

.section-subheading {
  font-family: var(--font-body);
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 560px;
}

img,
svg,
video,
canvas {
  max-width: 100%;
  height: auto;
}

/* ---------- Container ---------- */
.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  box-sizing: border-box;
}

.container-narrow {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  box-sizing: border-box;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 36px;
  font-family: var(--font-button);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all var(--transition-smooth);
}

.btn-primary {
  background: #A87D6A;
  color: var(--white);
}

.btn-primary:hover {
  background: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 154, 134, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--text-dark);
  border: 1.5px solid var(--text-dark);
}

.btn-outline:hover {
  background: var(--text-dark);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
}

.btn-outline-light:hover {
  background: var(--white);
  color: var(--text-dark);
  transform: translateY(-2px);
}

/* Ripple Effect */
.btn .ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: scale(0);
  animation: ripple 0.6s ease-out;
  pointer-events: none;
}

@keyframes ripple {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/* ---------- Hero Section ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--bg-primary);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  min-height: 100vh;
  align-items: center;
  padding: 88px 0;
}

.hero-text {
  padding: 0 64px 0 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-visual {
  position: relative;
  align-self: stretch;
  min-height: 600px;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero-image-accent {
  position: absolute;
  bottom: 60px;
  left: -30px;
  width: 180px;
  height: 180px;
  border: 2px solid var(--accent-light);
  z-index: 1;
  pointer-events: none;
}

.hero-eyebrow {
  font-family: var(--font-button);
  font-size: 13px;
  font-weight: 500;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 24px;
  display: block;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(52px, 7vw, 96px);
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}

.hero-title em {
  font-style: italic;
  color: var(--accent);
}

.hero-divider {
  width: 80px;
  height: 2px;
  background: var(--accent-light);
  margin-bottom: 28px;
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 460px;
  margin-bottom: 40px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-family: var(--font-button);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: var(--border-medium);
  position: relative;
  overflow: hidden;
}

.hero-scroll-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--text-dark);
  animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
  0% {
    transform: translateY(-100%);
  }

  100% {
    transform: translateY(100%);
  }
}

/* ---------- About Section ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
}

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

.about-image-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 200px;
  height: 200px;
  border: 2px solid var(--accent-light);
  border-radius: var(--radius-lg);
  z-index: -1;
}

.about-content {
  padding-right: 40px;
}

.about-content .section-heading {
  margin-bottom: 32px;
}

.about-text {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 40px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.about-stat {
  text-align: center;
}

.about-stat-number {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 600;
  color: var(--accent-rose);
  line-height: 1;
  margin-bottom: 8px;
}

.about-stat-label {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ---------- Services Section ---------- */
.services {
  background: var(--white);
}

.services-header {
  text-align: center;
  margin-bottom: 64px;
}

.services-header .section-subheading {
  margin: 0 auto;
}

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

.service-card {
  background: var(--bg-primary);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(to right, var(--accent-light), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-smooth);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border-radius: 50%;
  color: var(--accent);
  font-size: 24px;
  transition: background var(--transition-fast), transform var(--transition-fast);
}

.service-icon svg {
  width: 28px;
  height: 28px;
}

.service-card:hover .service-icon {
  background: var(--accent);
  color: var(--white);
  transform: rotateY(180deg);
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.service-card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 24px;
}

.service-link {
  font-family: var(--font-button);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-dark);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: color var(--transition-fast);
}

.service-link:hover {
  color: var(--accent);
}

/* ---------- Why Choose Section ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.why-card {
  text-align: center;
  padding: 40px 24px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--border-light);
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth), border-color var(--transition-smooth);
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}

.why-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-secondary);
  border-radius: var(--radius-md);
  color: var(--accent);
  font-size: 22px;
  transition: background var(--transition-fast), color var(--transition-fast), transform var(--transition-fast);
}

.why-icon svg {
  width: 24px;
  height: 24px;
}

.why-card:hover .why-icon {
  background: var(--accent);
  color: var(--white);
  transform: scale(1.1);
}

.why-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.why-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ---------- Before & After ---------- */
.before-after {
  background: var(--white);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.before-after::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 1px;
  background: var(--border-light);
}

.ba-header {
  text-align: center;
  margin-bottom: 64px;
  position: relative;
  z-index: 2;
}

.ba-subtitle {
  display: block;
  font-family: var(--font-button);
  font-size: 13px;
  font-weight: 500;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 12px;
}

.ba-title {
  font-family: var(--font-display);
  font-size: clamp(38px, 5.5vw, 64px);
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0;
}

.ba-title-divider {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 18px;
}

.ba-divider-glow {
  width: 140px;
  height: 2px;
  background: radial-gradient(ellipse at center, var(--accent) 0%, var(--accent-light) 60%, transparent 100%);
  box-shadow: 0 0 10px rgba(201, 154, 134, 0.3);
  border-radius: 50%;
}

.ba-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  position: relative;
  z-index: 2;
}

.ba-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth), border-color var(--transition-smooth);
  cursor: pointer;
  display: block;
  text-decoration: none;
  margin-bottom: 0;
}

.ba-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: var(--radius-lg);
  transition: transform var(--transition-slow);
}

.ba-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
  border-color: var(--accent);
}

.ba-card:hover img {
  transform: scale(1.015);
}

.ba-card:hover::after {
  animation: baShineSweep 0.85s ease forwards;
}

@keyframes baShineSweep {
  0% {
    left: -75%;
    opacity: 1;
  }

  100% {
    left: 125%;
    opacity: 0;
  }
}

/* ============================================================
   Beauty in Motion — Video Showcase
   ============================================================ */

/* ── Section ──────────────────────────────────────────────── */
.bim-section {
  background: var(--bg-secondary);
  padding: 110px 0 120px;
  overflow: hidden;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.72s ease 0.1s, transform 0.72s ease 0.1s;
}

.bim-section.bim-section--visible {
  opacity: 1;
  transform: translateY(0);
}

.bim-inner {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
  box-sizing: border-box;
}

/* ── Header ───────────────────────────────────────────────── */
.bim-header {
  text-align: center;
  margin-bottom: 64px;
  transform: translateY(16px);
  opacity: 0;
  transition: opacity 0.6s ease 0.25s, transform 0.6s ease 0.25s;
}

.bim-section--visible .bim-header {
  opacity: 1;
  transform: translateY(0);
}

.bim-label {
  color: var(--accent);
  letter-spacing: 0.14em;
}

.bim-heading {
  margin-bottom: 18px;
}

.bim-desc {
  font-family: var(--font-body);
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 560px;
  margin: 0 auto;
}

/* ── Carousel wrapper ─────────────────────────────────────── */
.bim-carousel-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 30px 0 60px;
  box-sizing: border-box;
}

/* ── Track — flexbox strip of 5-video cards ────────────────── */
.bim-track {
  display: flex;
  flex-direction: row;
  gap: 20px;
  will-change: transform;
}

/* ── Individual card base ─────────────────────────────────── */
.bim-card {
  flex: 0 0 220px;
  width: 220px;
  box-sizing: border-box;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transform-origin: center center;
  transition:
    opacity 0.5s ease,
    transform 0.5s cubic-bezier(0.25, 1, 0.5, 1),
    box-shadow 0.5s ease;
}

/* ── 5-Video Visual Hierarchy States ──────────────────────── */
/* Center Main Featured Card (Highlighted focal point) */
.bim-card--center {
  opacity: 1;
  transform: scale(1.08);
  z-index: 5;
  box-shadow: 0 24px 60px rgba(201, 154, 134, 0.35), 0 0 0 2px var(--accent);
}

/* Featured Badge on Center Card */
.bim-featured-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 4;
  background: var(--accent);
  color: var(--white);
  font-family: var(--font-button);
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 12px rgba(201, 154, 134, 0.4);
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  pointer-events: none;
}

.bim-card--center .bim-featured-badge {
  opacity: 1;
  transform: translateY(0);
}

/* Inner Left & Inner Right Cards */
.bim-card--inner-left,
.bim-card--inner-right {
  opacity: 0.78;
  transform: scale(0.91);
  z-index: 3;
  box-shadow: var(--shadow-md);
}

/* Outer Left & Outer Right Cards */
.bim-card--outer-left,
.bim-card--outer-right {
  opacity: 0.48;
  transform: scale(0.80);
  z-index: 1;
  box-shadow: var(--shadow-sm);
}

/* Offscreen / Hidden Cards */
.bim-card--hidden {
  opacity: 0.20;
  transform: scale(0.72);
  z-index: 0;
}

/* Hover effects */
.bim-card--center:hover {
  transform: scale(1.11);
  box-shadow: 0 28px 64px rgba(201, 154, 134, 0.42), 0 0 0 2.5px var(--accent);
}

.bim-card--inner-left:hover,
.bim-card--inner-right:hover,
.bim-card--outer-left:hover,
.bim-card--outer-right:hover {
  opacity: 0.95;
}

/* ── Thumbnail (maintains 9:16 ratio) ─────────────────────── */
.bim-card-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  background: #1a1a1c;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.bim-thumb-img,
.bim-thumb-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

.bim-card:hover .bim-thumb-img,
.bim-card:hover .bim-thumb-video {
  transform: scale(1.03);
}

/* ── Overlay gradient ─────────────────────────────────────── */
.bim-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(15, 12, 10, 0.72) 0%,
      rgba(15, 12, 10, 0.25) 45%,
      transparent 70%);
  border-radius: var(--radius-lg);
  transition: background 0.35s ease;
}

.bim-card:hover .bim-card-overlay {
  background: linear-gradient(to top,
      rgba(15, 12, 10, 0.82) 0%,
      rgba(15, 12, 10, 0.35) 55%,
      rgba(15, 12, 10, 0.05) 75%);
}

/* ── Play button ──────────────────────────────────────────── */
.bim-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.88);
  width: 60px;
  height: 60px;
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
  color: var(--white);
  opacity: 0.85;
  transition:
    transform 0.32s cubic-bezier(0.34, 1.56, 0.64, 1),
    opacity 0.25s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}

.bim-play-btn:hover,
.bim-card:hover .bim-play-btn {
  transform: translate(-50%, -50%) scale(1.02);
  opacity: 1;
}

.bim-play-icon {
  width: 60px;
  height: 60px;
  pointer-events: none;
  filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.35));
}

/* ── Card text meta (bottom) ──────────────────────────────── */
.bim-card-meta {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 18px 20px;
  z-index: 2;
}

.bim-card-category {
  display: block;
  font-family: var(--font-button);
  font-size: 10px;
  font-weight: 600;
  color: var(--accent-light);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 5px;
}

.bim-card-title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 500;
  color: var(--white);
  line-height: 1.25;
  letter-spacing: 0.01em;
  margin: 0;
}

/* ── Nav buttons ──────────────────────────────────────────── */
.bim-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-70%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid var(--border-medium);
  background: var(--white);
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 20;
  transition:
    background var(--transition-fast),
    border-color var(--transition-fast),
    transform 0.32s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow var(--transition-fast);
  box-shadow: var(--shadow-md);
}

.bim-nav:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(201, 154, 134, 0.35);
}

.bim-prev {
  left: 12px;
}

.bim-next {
  right: 12px;
}

.bim-nav:hover.bim-prev {
  transform: translateY(-70%) translateX(-2px);
}

.bim-nav:hover.bim-next {
  transform: translateY(-70%) translateX(2px);
}

/* ── Pagination dots ──────────────────────────────────────── */
.bim-dots {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  align-items: center;
}

.bim-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  border: none;
  background: var(--border-medium);
  cursor: pointer;
  padding: 0;
  transition: background 0.3s ease, transform 0.3s ease, width 0.3s ease;
}

.bim-dot--active {
  background: var(--accent);
  width: 22px;
  border-radius: var(--radius-full);
  transform: none;
}

/* ── Video Lightbox ───────────────────────────────────────── */
.bim-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.bim-lightbox--open {
  opacity: 1;
  pointer-events: all;
}

.bim-lb-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 12, 10, 0.94);
  cursor: pointer;
}

.bim-lb-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
  max-width: 380px;
  padding: 20px;
  box-sizing: border-box;
  transform: scale(0.94);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.bim-lightbox--open .bim-lb-content {
  transform: scale(1);
}

.bim-lb-close {
  position: absolute;
  top: -8px;
  right: 4px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition-fast), border-color var(--transition-fast);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2;
}

.bim-lb-close:hover {
  background: rgba(201, 154, 134, 0.35);
  border-color: var(--accent);
}

/* Player maintains 9:16 */
.bim-lb-player {
  width: 100%;
  aspect-ratio: 9 / 16;
  background: #000;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.bim-lb-video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.bim-lb-meta {
  text-align: center;
}

.bim-lb-category {
  display: block;
  font-family: var(--font-button);
  font-size: 10px;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 4px;
}

.bim-lb-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--white);
  margin: 0;
}

/* ---------- Portfolio Gallery ---------- */
.portfolio {
  background: var(--bg-primary);
}


.portfolio-header {
  text-align: center;
  margin-bottom: 64px;
}

.portfolio-header .section-subheading {
  margin: 0 auto;
}

.portfolio-grid {
  columns: 3;
  column-gap: 24px;
}

.portfolio-item {
  display: block;
  text-decoration: none;
  color: inherit;
  break-inside: avoid;
  margin-bottom: 24px;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.portfolio-item img {
  width: 100%;
  display: block;
  transition: transform var(--transition-slow);
}

.portfolio-item:hover img {
  transform: scale(1.015);
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: rgba(27, 27, 27, 0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-smooth);
}

.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-category {
  font-family: var(--font-button);
  font-size: 11px;
  font-weight: 500;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.portfolio-view {
  font-family: var(--font-button);
  font-size: 13px;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 10px 24px;
  border: 1px solid var(--white);
  border-radius: var(--radius-full);
  background: transparent;
  cursor: pointer;
  display: inline-block;
  transition: background var(--transition-fast), color var(--transition-fast);
}

.portfolio-item:hover .portfolio-view {
  background: var(--white);
  color: var(--text-dark);
}

/* ---------- Bridal Journey ---------- */
.journey {
  background: var(--white);
}

.journey-header {
  text-align: center;
  margin-bottom: 64px;
}

.journey-header .section-subheading {
  margin: 0 auto;
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: var(--border-medium);
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  padding: 32px 0;
  display: flex;
  align-items: center;
}

.timeline-item:nth-child(odd) {
  flex-direction: row;
}

.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}

.timeline-dot {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 16px;
  background: var(--accent-rose);
  border-radius: 50%;
  border: 3px solid var(--white);
  box-shadow: 0 0 0 3px var(--accent-rose);
  z-index: 2;
}

.timeline-content {
  width: 42%;
  padding: 32px;
  background: var(--bg-primary);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
}

.timeline-step {
  font-family: var(--font-button);
  font-size: 11px;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.timeline-content h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.timeline-content p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ---------- Packages ---------- */
.packages {
  background: var(--bg-primary);
}

.packages-header {
  text-align: center;
  margin-bottom: 64px;
}

.packages-header .section-subheading {
  margin: 0 auto;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  align-items: start;
}

.package-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  border: 1px solid var(--border-light);
  position: relative;
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

.package-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.package-card.popular {
  border-color: var(--accent-rose);
  box-shadow: var(--shadow-lg);
}

.package-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #957060;
  color: var(--white);
  font-family: var(--font-button);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 6px 20px;
  border-radius: var(--radius-full);
}

.package-name {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.package-duration {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.package-features {
  list-style: none;
  text-align: left;
  margin-bottom: 32px;
}

.package-features li {
  font-size: 14px;
  color: var(--text-muted);
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
}

.package-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 12px;
  height: 1px;
  background: var(--accent-rose);
}

.package-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 14px;
  font-family: var(--font-button);
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--text-dark);
  background: transparent;
  color: var(--text-dark);
  cursor: pointer;
  text-decoration: none;
  transition: all var(--transition-fast);
}

.package-btn:hover {
  background: var(--text-dark);
  color: var(--white);
}

.package-card.popular .package-btn {
  background: #A87D6A;
  color: var(--white);
  border-color: #A87D6A;
}

.package-card.popular .package-btn:hover {
  background: var(--text-dark);
  border-color: var(--text-dark);
}

/* ---------- Testimonials ---------- */
.testimonials {
  background: var(--white);
}

.testimonials-header {
  text-align: center;
  margin-bottom: 64px;
}

.testimonials-header .section-subheading {
  margin: 0 auto;
}

.testimonials-slider {
  max-width: 1200px;
  margin: 0 auto;
  overflow: visible;
}

.testimonial-card {
  background: var(--bg-primary);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  border: 1px solid var(--border-light);
}

.testimonial-stars {
  color: var(--accent-rose);
  font-size: 16px;
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.testimonial-text {
  font-family: var(--font-display);
  font-size: 22px;
  font-style: italic;
  color: var(--text-dark);
  line-height: 1.5;
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-info {
  text-align: left;
}

.testimonial-name {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
}

.testimonial-location {
  font-size: 13px;
  color: var(--text-muted);
}

/* ---------- Instagram ---------- */
.instagram {
  background: var(--bg-primary);
}

.instagram-header {
  text-align: center;
  margin-bottom: 48px;
}

.instagram-header .section-subheading {
  margin: 0 auto;
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  margin-bottom: 40px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.instagram-item {
  aspect-ratio: 1;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.instagram-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.instagram-item:hover img {
  transform: scale(1.1);
}

.instagram-overlay {
  position: absolute;
  inset: 0;
  background: rgba(27, 27, 27, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-smooth);
}

.instagram-item:hover .instagram-overlay {
  opacity: 1;
}

.instagram-overlay svg {
  color: var(--white);
  width: 32px;
  height: 32px;
}

.instagram-cta {
  text-align: center;
}

/* ---------- FAQ ---------- */
.faq {
  background: var(--white);
}

.faq-header {
  text-align: center;
  margin-bottom: 64px;
}

.faq-header .section-subheading {
  margin: 0 auto;
}

.accordion {
  max-width: 800px;
  margin: 0 auto;
}

.accordion-item {
  border-bottom: 1px solid var(--border-light);
}

.accordion-header {
  width: 100%;
  padding: 24px 0;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--text-dark);
  text-align: left;
  transition: color var(--transition-fast);
}

.accordion-header:hover {
  color: var(--accent-rose);
}

.accordion-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform var(--transition-smooth);
  color: var(--accent-rose);
}

.accordion-item.active .accordion-icon {
  transform: rotate(45deg);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-body-inner {
  padding-bottom: 24px;
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ---------- Contact ---------- */
.contact {
  background: var(--bg-primary);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-form {
  background: var(--white);
  padding: 48px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-dark);
  background: var(--bg-primary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(216, 179, 149, 0.15);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

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

.contact-info {
  padding-top: 24px;
}

.contact-info-item {
  display: flex;
  gap: 20px;
  margin-bottom: 32px;
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  background: var(--white);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 18px;
  flex-shrink: 0;
  border: 1px solid var(--border-light);
}

.contact-info-icon svg {
  width: 20px;
  height: 20px;
}

.contact-info-content h4 {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.contact-info-content p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.5;
}

.contact-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 32px;
  height: 200px;
  background: var(--bg-secondary);
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: #25D366;
  color: var(--white);
  font-family: var(--font-button);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  border-radius: var(--radius-full);
  transition: background var(--transition-fast), transform var(--transition-fast);
}

.whatsapp-btn:hover {
  background: #1fa855;
  transform: translateY(-2px);
}

/* ---------- Footer ---------- */
.footer {
  background: var(--text-dark);
  color: var(--white);
  padding: 80px 64px 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 64px;
  margin-bottom: 64px;
}

.footer-brand {
  max-width: 320px;
}

.footer-logo {
  display: inline-block;
  margin-bottom: 16px;
  text-decoration: none;
  transition: opacity var(--transition-fast), transform var(--transition-fast);
}

.footer-logo-img {
  height: 85px;
  width: auto;
  max-height: 85px;
  object-fit: contain;
  display: block;
}

.footer-logo:hover {
  opacity: 0.85;
  transform: scale(1.03);
}

.footer-desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 16px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-decoration: none;
  transition: background var(--transition-fast), transform var(--transition-fast);
  font-size: 16px;
}

.footer-social a:hover {
  background: var(--accent-rose);
  transform: translateY(-2px);
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 24px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer-col ul li a:hover {
  color: var(--accent);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-copyright {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
}

.back-to-top {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.08);
  border: none;
  border-radius: 50%;
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: background var(--transition-fast), transform var(--transition-fast);
}

.back-to-top:hover {
  background: var(--accent-rose);
  transform: translateY(-3px);
}

/* ---------- Utility ---------- */
.text-center {
  text-align: center;
}

/* ---------- Custom Lightbox ---------- */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 10002;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  overflow: hidden;
}

.lightbox-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.lightbox-image {
  max-width: 90vw;
  max-height: 90vh;
  width: auto;
  height: auto;
  object-fit: contain;
  display: none;
  border-radius: 4px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
  position: fixed;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  z-index: 10003;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.2);
}

.lightbox-nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
  z-index: 10003;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.25);
}

.lightbox-prev {
  left: 24px;
}

.lightbox-next {
  right: 24px;
}

@media (max-width: 768px) {
  .lightbox-image {
    max-width: 95vw;
    max-height: 80vh;
  }

  .lightbox-close {
    top: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
    font-size: 24px;
  }

  .lightbox-nav {
    width: 40px;
    height: 40px;
    font-size: 24px;
  }

  .lightbox-prev {
    left: 8px;
  }

  .lightbox-next {
    right: 8px;
  }
}

/* ============================================================
   Floating Contact Menu (FCM)
   ============================================================ */

/* ── Keyframes ───────────────────────────────────────────── */
@keyframes fcm-entrance {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.88);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes fcm-pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.6;
  }

  50% {
    transform: scale(1.9);
    opacity: 0;
  }
}

@keyframes fcm-option-in {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.82);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes fcm-spin-in {
  from {
    transform: rotate(-90deg) scale(0.6);
    opacity: 0;
  }

  to {
    transform: rotate(0deg) scale(1);
    opacity: 1;
  }
}

/* ── Root container ──────────────────────────────────────── */
.fcm {
  position: fixed;
  bottom: 30px;
  right: 26px;
  z-index: 9990;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  animation: fcm-entrance 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 1s both;
}

/* ── Main trigger button ─────────────────────────────────── */
.fcm-trigger {
  position: relative;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: none;
  box-shadow:
    0 8px 28px rgba(201, 154, 134, 0.50),
    0 2px 8px rgba(201, 154, 134, 0.30);
  transition:
    transform 0.30s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.30s ease;
  flex-shrink: 0;
}

.fcm-trigger:hover {
  transform: scale(1.08) translateY(-2px);
  box-shadow:
    0 14px 36px rgba(201, 154, 134, 0.60),
    0 4px 12px rgba(201, 154, 134, 0.35);
}

.fcm-trigger:active {
  transform: scale(0.95);
}

/* ── Pulse ring on trigger ───────────────────────────────── */
.fcm-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid var(--accent);
  pointer-events: none;
  animation: fcm-pulse 2.6s ease-out infinite;
}

/* Hide pulse ring when open */
.fcm.is-open .fcm-pulse {
  animation: none;
  opacity: 0;
}

/* ── Trigger icon swap ───────────────────────────────────── */
.fcm-trigger-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  transition: opacity 0.22s ease, transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Open icon visible by default */
.fcm-icon-open {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

.fcm-icon-close {
  opacity: 0;
  transform: scale(0.5) rotate(90deg);
}

/* Swap on open */
.fcm.is-open .fcm-icon-open {
  opacity: 0;
  transform: scale(0.5) rotate(-90deg);
}

.fcm.is-open .fcm-icon-close {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

/* ── Options list ────────────────────────────────────────── */
.fcm-options {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  pointer-events: none;
}

/* Collapsed by default */
.fcm-options[aria-hidden="true"] .fcm-option {
  opacity: 0;
  transform: translateY(12px) scale(0.82);
  pointer-events: none;
}

/* Expanded */
.fcm-options[aria-hidden="false"] .fcm-option {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
  animation: fcm-option-in 0.38s cubic-bezier(0.34, 1.56, 0.64, 1) both;
  /* Stagger via CSS custom property */
  animation-delay: calc(var(--fcm-i) * 65ms);
}

.fcm-options[aria-hidden="false"] {
  pointer-events: auto;
}

/* ── Individual option row ───────────────────────────────── */
.fcm-option {
  display: flex;
  align-items: center;
  gap: 10px;
  transition:
    opacity 0.25s ease,
    transform 0.32s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ── Label chip ──────────────────────────────────────────── */
.fcm-option-label {
  background: var(--white);
  color: var(--text-dark);
  font-family: var(--font-button);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 14px rgba(27, 27, 27, 0.10);
  white-space: nowrap;
  border: 1px solid var(--border-light);
  /* Label fades in slightly after button */
  opacity: 0;
  transform: translateX(8px);
  transition:
    opacity 0.28s ease 0.08s,
    transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1) 0.08s;
}

.fcm-options[aria-hidden="false"] .fcm-option-label {
  opacity: 1;
  transform: translateX(0);
}

/* ── Option circle buttons ───────────────────────────────── */
.fcm-option-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  cursor: none;
  box-shadow: 0 6px 20px rgba(27, 27, 27, 0.12);
  transition:
    transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.28s ease;
  flex-shrink: 0;
}

.fcm-option-btn:hover {
  transform: scale(1.12) translateY(-2px);
}

.fcm-option-btn:active {
  transform: scale(0.94);
}

/* WhatsApp — soft green tint consistent with brand palette */
.fcm-whatsapp {
  background: #EDF7F0;
  color: #25A258;
  box-shadow: 0 6px 20px rgba(37, 162, 88, 0.18);
}

.fcm-whatsapp:hover {
  background: #D6F0E0;
  box-shadow: 0 10px 28px rgba(37, 162, 88, 0.28);
}

/* Call — warm ivory matching brand bg */
.fcm-call {
  background: var(--bg-secondary);
  color: var(--accent);
  box-shadow: 0 6px 20px rgba(201, 154, 134, 0.20);
}

.fcm-call:hover {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 10px 28px rgba(201, 154, 134, 0.40);
}

/* Contact — brand accent fill */
.fcm-contact {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
  color: #fff;
  box-shadow: 0 6px 20px rgba(201, 154, 134, 0.35);
}

.fcm-contact:hover {
  box-shadow: 0 10px 28px rgba(201, 154, 134, 0.50);
}

/* ── Reduced motion ──────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {

  .fcm,
  .fcm-option,
  .fcm-option-label,
  .fcm-option-btn,
  .fcm-trigger {
    animation: none;
    transition: none;
  }

  .fcm-pulse {
    animation: none;
  }
}

/* ── Mobile ──────────────────────────────────────────────── */
@media (max-width: 480px) {
  .fcm {
    bottom: 18px;
    right: 14px;
  }

  .fcm-trigger {
    width: 50px;
    height: 50px;
  }

  .fcm-option-btn {
    width: 44px;
    height: 44px;
  }

  .fcm-option-label {
    font-size: 0.67rem;
    padding: 4px 10px;
  }
}