/* ==========================================================================
   AmyBrows Studio Toronto — Luxury Design System & Stylesheet
   ========================================================================== */

:root {
  /* Brand Palette */
  --primary: #75675B;
  --primary-dark: #584C42;
  --primary-light: #9B8E83;
  
  --gold: #C5A880;
  --gold-dark: #A8895E;
  --gold-light: #EADBCE;
  --gold-glow: rgba(197, 168, 128, 0.35);
  
  --dark: #1A1816;
  --dark-surface: #24211E;
  --dark-card: #2E2A26;
  
  --cream: #FAF7F2;
  --cream-card: #FFFFFF;
  --cream-alt: #F3EFE9;
  
  --text: #36322E;
  --text-muted: #756D65;
  --text-light: #A39B92;
  --text-white: #FFFFFF;
  
  /* Glassmorphism & Borders */
  --glass-bg: rgba(255, 255, 255, 0.85);
  --glass-border: rgba(197, 168, 128, 0.25);
  --glass-dark-bg: rgba(36, 33, 30, 0.88);
  --glass-dark-border: rgba(197, 168, 128, 0.2);
  
  /* Typography */
  --font-serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-cursive: "Great Vibes", "Brush Script MT", cursive;
  --font-sans: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
  
  /* Elevation Shadows */
  --shadow-sm: 0 4px 12px rgba(117, 103, 91, 0.08);
  --shadow-md: 0 10px 30px rgba(117, 103, 91, 0.12);
  --shadow-lg: 0 20px 45px -10px rgba(117, 103, 91, 0.2);
  --shadow-gold: 0 10px 25px rgba(197, 168, 128, 0.35);
  
  /* Motion system */
  --motion-instant: 120ms;
  --motion-fast: 180ms;
  --motion-base: 280ms;
  --motion-reveal: 840ms;
  --motion-slow: 800ms;
  --ease-luxury: cubic-bezier(0.16, 1, 0.3, 1);
  --safe-area-bottom: env(safe-area-inset-bottom, 0px);
  --transition-smooth: all var(--motion-base) var(--ease-luxury);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  color: var(--text);
  background-color: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-smooth);
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-padding {
  padding: 5.5rem 0;
}

.bg-cream {
  background-color: var(--cream-alt);
}

.bg-dark {
  background-color: var(--dark);
}

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

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

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

.mt-3 {
  margin-top: 2rem;
}

/* Typography Helpers */
.cursive-accent {
  font-family: var(--font-cursive);
  font-size: 1.4em;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
  display: inline-block;
  vertical-align: middle;
  padding: 0 0.15em;
}

.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary);
  background: var(--gold-light);
  padding: 0.35rem 1rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}

.section-tag.tag-gold {
  background: rgba(197, 168, 128, 0.2);
  color: var(--gold);
  border: 1px solid rgba(197, 168, 128, 0.3);
}

.section-title {
  font-family: var(--font-serif);
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--text);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto 3.5rem auto;
}

/* Glassmorphism Card */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.glass-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
  transform: translateY(-4px);
}

.glass-dark {
  background: var(--glass-dark-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-dark-border);
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Language Switcher Pill */
.lang-switcher {
  display: inline-flex;
  align-items: center;
  background: rgba(117, 103, 91, 0.08);
  border: 1px solid var(--glass-border);
  padding: 3px 6px;
  border-radius: 50px;
  gap: 4px;
}

.lang-btn {
  background: none;
  border: none;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-muted);
  padding: 3px 8px;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.lang-btn:hover {
  color: var(--text);
}

.lang-btn.active {
  background: var(--gold);
  color: #FFFFFF;
  box-shadow: 0 2px 8px rgba(197, 168, 128, 0.4);
}

.lang-divider {
  color: rgba(117, 103, 91, 0.3);
  font-size: 0.75rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.85rem 1.8rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.btn-gold {
  background: linear-gradient(135deg, #D4AF37 0%, #C5A880 50%, #B8860B 100%);
  color: #FFFFFF;
  box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
  background: linear-gradient(135deg, #E0C068 0%, #D4AF37 50%, #C5A880 100%);
  box-shadow: 0 12px 30px rgba(197, 168, 128, 0.5);
  transform: translateY(-2px);
  color: #FFFFFF;
}

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

.btn-outline:hover {
  background: var(--primary);
  color: #FFFFFF;
  transform: translateY(-2px);
}

.btn-sm { padding: 0.55rem 1.25rem; font-size: 0.85rem; }
.btn-md { padding: 0.75rem 1.6rem; font-size: 0.92rem; }
.btn-lg { padding: 1.05rem 2.2rem; font-size: 1.05rem; }
.btn-block { width: 100%; }

.btn-glow::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    60deg,
    rgba(255, 255, 255, 0) 20%,
    rgba(255, 255, 255, 0.3) 50%,
    rgba(255, 255, 255, 0) 80%
  );
  transform: rotate(30deg);
  animation: shine 4s infinite ease-in-out;
}

@keyframes shine {
  0% { transform: translate(-100%, -100%) rotate(30deg); }
  30%, 100% { transform: translate(100%, 100%) rotate(30deg); }
}

/* ==========================================================================
   Announcement Bar
   ========================================================================== */
.announcement-bar {
  background: var(--dark);
  color: var(--gold-light);
  font-size: 0.85rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(197, 168, 128, 0.2);
}

.announcement-content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  text-align: center;
  flex-wrap: wrap;
}

.announcement-link {
  color: var(--gold);
  font-weight: 700;
  text-decoration: underline;
}

/* ==========================================================================
   Header & Navbar
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(250, 247, 242, 0.94);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(197, 168, 128, 0.15);
  transition: var(--transition-smooth);
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.brand-img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(197, 168, 128, 0.3));
}

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

.brand-name {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  line-height: 1.1;
}

.brand-tagline {
  font-family: var(--font-serif);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--gold-dark);
  text-transform: uppercase;
}

.desktop-nav .nav-links {
  display: flex;
  align-items: center;
  gap: 1.35rem;
}

.nav-link {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text);
  position: relative;
  padding: 0.3rem 0;
}

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

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

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header-socials {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.header-socials a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gold-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  transition: var(--transition-smooth);
}

.header-socials a:hover {
  background: var(--primary);
  color: #FFFFFF;
  transform: translateY(-2px);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  flex-direction: column;
  gap: 5px;
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
}

/* ==========================================================================
   Mobile Drawer (Redesigned for Full Screen Fit without Scroll)
   ========================================================================== */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -330px;
  width: 310px;
  max-width: 88vw;
  height: 100vh;
  height: 100dvh;
  background: var(--cream);
  z-index: 2000;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  padding:
    max(1.2rem, env(safe-area-inset-top, 0px))
    1.4rem
    max(1rem, env(safe-area-inset-bottom, 0px));
  transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
  overscroll-behavior: contain;
}

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

.drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--gold-light);
  padding-bottom: 0.75rem;
  flex: 0 0 auto;
}

.drawer-header-right {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.lang-switcher-drawer {
  padding: 2px 4px;
}

.drawer-close {
  background: none;
  border: none;
  font-size: 1.8rem;
  color: var(--text);
  cursor: pointer;
  line-height: 1;
  padding: 0 4px;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin: 0.8rem 0;
  padding: 0.15rem 0.25rem 0.35rem 0;
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

.m-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  padding: 0.3rem 0;
  display: block;
}

.m-link:hover {
  color: var(--gold-dark);
  padding-left: 4px;
}

.drawer-footer {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  border-top: 1px solid var(--gold-light);
  padding-top: 0.9rem;
  padding-bottom: max(0.2rem, env(safe-area-inset-bottom, 0px));
  flex: 0 0 auto;
}

.drawer-socials {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
}

.drawer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gold-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
}

.drawer-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  z-index: 1999;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
}

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

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
  position: relative;
  padding: 4.5rem 0 5.5rem 0;
  overflow: hidden;
}

.hero-background-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle at 10% 20%, rgba(197, 168, 128, 0.12) 0%, transparent 40%),
                    radial-gradient(circle at 90% 80%, rgba(117, 103, 91, 0.08) 0%, transparent 40%);
  pointer-events: none;
}

.hero-container {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
}

.motion-enhanced .hero-section:not(.hero-motion-ready) .hero-motion-item {
  opacity: 0;
  transform: translateY(18px);
}

.motion-enhanced .hero-section:not(.hero-motion-ready) .hero-visual.hero-motion-item {
  transform: translateY(22px) scale(0.985);
}

.motion-enhanced .hero-motion-ready .hero-motion-item {
  opacity: 1;
  transform: none;
  transition:
    opacity var(--motion-reveal) var(--ease-luxury),
    transform var(--motion-reveal) var(--ease-luxury);
  transition-delay: var(--hero-delay, 0ms);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(197, 168, 128, 0.18);
  border: 1px solid rgba(197, 168, 128, 0.35);
  color: var(--primary-dark);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.4rem 1.1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.18;
  color: var(--text);
  margin-bottom: 1.4rem;
}

.hero-subtitle {
  font-size: 1.08rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 580px;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 2.8rem;
  flex-wrap: wrap;
}

.hero-metrics {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(117, 103, 91, 0.15);
}

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

.metric-number {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.1;
}

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

.metric-divider {
  width: 1px;
  height: 36px;
  background: rgba(117, 103, 91, 0.18);
}

/* Hero Visual */
.hero-visual { position: relative; }

.hero-image-card {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid #FFFFFF;
}

.hero-main-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.8s ease;
}

.hero-image-card:hover .hero-main-img {
  transform: scale(1.03);
}

.floating-badge {
  position: absolute;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0.75rem 1.2rem;
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(197, 168, 128, 0.3);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  animation: float 4s ease-in-out infinite;
}

.badge-top { top: 25px; left: -15px; }
.badge-bottom { bottom: 25px; right: -15px; animation-delay: 2s; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.f-badge-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--gold-light);
  color: var(--gold-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.f-badge-icon.check-icon {
  background: #E8F5E9;
  color: #2E7D32;
}

.f-badge-text {
  display: flex;
  flex-direction: column;
}

.f-badge-text strong {
  font-size: 0.9rem;
  color: var(--text);
}

.f-badge-text span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ==========================================================================
   About Amy Section
   ========================================================================== */
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4rem;
  align-items: center;
}

.about-image-stack {
  position: relative;
}

.about-img-main {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 32px;
  box-shadow: var(--shadow-lg);
  border: 4px solid #FFFFFF;
}

.about-floating-card {
  position: absolute;
  bottom: -20px;
  right: -20px;
  padding: 1.4rem 1.8rem;
  border-radius: 20px;
  max-width: 280px;
  background: #FFFFFF;
}

.about-badge-title {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.3rem;
}

.about-floating-card p {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.about-lead {
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 1rem;
}

.about-text {
  font-size: 0.98rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.8rem;
}

.about-features-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.af-item {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
}

.af-item i {
  font-size: 1.2rem;
  margin-top: 2px;
}

.af-item div {
  display: flex;
  flex-direction: column;
}

.af-item strong {
  font-size: 0.95rem;
  color: var(--text);
}

.af-item span {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* ==========================================================================
   Interactive Quiz / Finder
   ========================================================================== */
.quiz-section {
  margin-top: -2rem;
  position: relative;
  z-index: 10;
}

.quiz-card {
  padding: 2.5rem;
  border-radius: 28px;
}

.quiz-intro {
  text-align: center;
  margin-bottom: 1.8rem;
}

.quiz-title {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--text);
  margin-bottom: 0.4rem;
}

.quiz-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.quiz-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  margin-bottom: 1.8rem;
}

.quiz-btn {
  background: #FFFFFF;
  border: 1.5px solid var(--gold-light);
  padding: 1.1rem 1.2rem;
  border-radius: 18px;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-align: left;
  transition: var(--transition-smooth);
}

.quiz-btn i {
  font-size: 1.2rem;
  color: var(--gold-dark);
}

.quiz-btn:hover {
  border-color: var(--gold);
  background: var(--cream);
  transform: translateY(-2px);
}

.quiz-btn.active {
  background: var(--primary);
  color: #FFFFFF;
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}

.quiz-btn.active i {
  color: var(--gold-light);
}

.quiz-result {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 1.8rem 2rem;
  border: 1px solid var(--gold-light);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  animation: fadeIn 0.4s ease;
}

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

.result-badge {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold-dark);
  text-transform: uppercase;
}

.result-service-name {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  color: var(--text);
}

.result-desc {
  font-size: 0.94rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ==========================================================================
   Services Section
   ========================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2.2rem;
}

.service-card {
  border-radius: 28px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  scroll-margin-top: 100px;
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth), border-color var(--transition-smooth);
}

.service-card:target {
  border-color: var(--gold);
  box-shadow: 0 12px 35px rgba(197, 168, 128, 0.35);
  animation: targetPulse 1.5s ease-out;
}

@keyframes targetPulse {
  0% {
    transform: scale(1.02);
    box-shadow: 0 0 0 0 rgba(197, 168, 128, 0.5);
  }
  70% {
    transform: scale(1.01);
    box-shadow: 0 0 0 12px rgba(197, 168, 128, 0);
  }
  100% {
    transform: scale(1);
  }
}

.service-img-wrapper {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.service-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-card:hover .service-img-wrapper img {
  transform: scale(1.06);
}

.service-tag {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(26, 24, 22, 0.85);
  color: var(--gold-light);
  backdrop-filter: blur(8px);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 0.35rem 0.9rem;
  border-radius: 50px;
  border: 1px solid rgba(197, 168, 128, 0.3);
}

.service-body {
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: var(--gold-dark);
  font-weight: 600;
  margin-bottom: 0.8rem;
}

.service-title {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.7rem;
}

.service-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.service-features {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-bottom: 1.6rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(117, 103, 91, 0.12);
}

.service-features li {
  font-size: 0.86rem;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.service-features li i {
  color: #2E7D32;
  font-size: 0.8rem;
}

/* ==========================================================================
   Video & Transformations Section (With Split Photo Showcase)
   ========================================================================== */
.video-transformation-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: stretch;
}

.video-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 1.2rem;
  border-radius: 28px;
}

.video-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(135deg, #171512, #2c2824);
  height: 420px;
}

.reel-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.25;
  transform: scale(1.025);
  transition:
    opacity var(--motion-slow) var(--ease-luxury),
    transform var(--motion-slow) var(--ease-luxury);
}

.video-wrapper.media-loaded .reel-video {
  opacity: 1;
  transform: scale(1);
}

.video-overlay-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(26, 24, 22, 0.85);
  color: var(--gold);
  backdrop-filter: blur(8px);
  padding: 0.45rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  border: 1px solid rgba(197, 168, 128, 0.3);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.video-info {
  padding: 1.2rem 0.5rem 0.5rem 0.5rem;
}

.video-info h4 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--text);
  margin-bottom: 0.3rem;
}

.video-info p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.comparison-side-card {
  padding: 1.8rem;
  border-radius: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.comparison-header h4 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--text);
  margin-bottom: 0.2rem;
}

.comparison-header p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

/* Before/After Interactive Comparison Slider (Stationary 1:1 Reveal) */
.before-after-container {
  position: relative;
  width: 100%;
  height: 330px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-bottom: 1.2rem;
  border: 3px solid #FFFFFF;
  user-select: none;
  cursor: ew-resize;
  touch-action: none;
  --slider-pos: 50%;
}

.before-after-container:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.ba-before-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
  clip-path: inset(0 calc(100% - var(--slider-pos, 50%)) 0 0);
  -webkit-clip-path: inset(0 calc(100% - var(--slider-pos, 50%)) 0 0);
  pointer-events: none;
}

.ba-after-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  overflow: hidden;
  clip-path: inset(0 0 0 var(--slider-pos, 50%));
  -webkit-clip-path: inset(0 0 0 var(--slider-pos, 50%));
  pointer-events: none;
}

.ba-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  pointer-events: none;
  user-select: none;
}

.ba-handle {
  position: absolute;
  top: 0;
  left: var(--slider-pos, 50%);
  width: 44px;
  height: 100%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: ew-resize;
  pointer-events: none;
}

.ba-handle-line {
  position: absolute;
  width: 3px;
  height: 100%;
  background: #FFFFFF;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.4), 0 0 12px var(--gold);
}

.ba-handle-button {
  position: absolute;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 2.5px solid var(--gold);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.4);
  font-size: 0.72rem;
  transition: transform 0.15s ease;
}

.before-after-container:hover .ba-handle-button,
.before-after-container.is-dragging .ba-handle-button {
  transform: scale(1.15);
  border-color: var(--gold-dark);
}

.ba-guide {
  position: absolute;
  top: 12px;
  left: 50%;
  z-index: 12;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.42rem 0.78rem;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50px;
  background: rgba(26, 24, 22, 0.76);
  color: #FFFFFF;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -8px);
  transition:
    opacity var(--motion-base) ease,
    transform var(--motion-base) var(--ease-luxury);
}

.before-after-container.is-guiding .ba-guide {
  opacity: 1;
  transform: translate(-50%, 0);
}

.before-after-container.is-guiding .ba-handle-button {
  animation: guidePulse 900ms ease-in-out infinite alternate;
}

@keyframes guidePulse {
  from { transform: scale(1); box-shadow: 0 4px 18px rgba(0, 0, 0, 0.4); }
  to { transform: scale(1.12); box-shadow: 0 6px 24px rgba(197, 168, 128, 0.7); }
}

.ba-badge {
  position: absolute;
  bottom: 12px;
  padding: 0.22rem 0.65rem;
  border-radius: 30px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  pointer-events: none;
  z-index: 5;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.ba-badge-before {
  left: 12px;
  background: rgba(20, 18, 16, 0.85);
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.ba-badge-after {
  right: 12px;
  background: rgba(197, 168, 128, 0.95);
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.trans-quick-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0.8rem;
  text-align: center;
}

.t-metric {
  background: #FFFFFF;
  padding: 0.8rem;
  border-radius: 14px;
  border: 1px solid var(--gold-light);
  display: flex;
  flex-direction: column;
}

.t-metric strong {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--primary);
}

.t-metric span {
  font-size: 0.72rem;
  color: var(--text-muted);
}

/* ==========================================================================
   Instagram Grid Section
   ========================================================================== */
.instagram-grid {
  columns: 3 280px;
  column-gap: 1rem;
}

.insta-item {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  width: 100%;
  margin: 0 0 1rem;
  border-radius: 20px;
  overflow: hidden;
  break-inside: avoid;
  background: #FFFFFF;
  border: 1px solid rgba(197, 168, 128, 0.32);
  box-shadow: var(--shadow-sm);
  transform: translateY(0);
  transition:
    transform var(--motion-fast) var(--ease-luxury),
    box-shadow var(--motion-fast) var(--ease-luxury),
    border-color var(--motion-fast) var(--ease-luxury);
}

.insta-item img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  background: var(--cream);
  transition:
    opacity var(--motion-reveal) var(--ease-luxury);
}

.media-motion-ready .insta-item:not(.media-loaded) img {
  opacity: 0.2;
}

.insta-overlay {
  position: static;
  width: 100%;
  min-height: 46px;
  padding: 0.72rem 0.9rem;
  background: rgba(255, 252, 248, 0.98);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 600;
  border-top: 1px solid rgba(197, 168, 128, 0.22);
  transition:
    background-color var(--motion-fast) var(--ease-luxury),
    color var(--motion-fast) var(--ease-luxury);
}

.insta-item:hover,
.insta-item:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(197, 168, 128, 0.7);
  box-shadow: var(--shadow-md);
}

.insta-item:hover .insta-overlay,
.insta-item:focus-visible .insta-overlay {
  background: var(--primary);
  color: #FFFFFF;
}

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

/* ==========================================================================
   Testimonials
   ========================================================================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.testi-card {
  padding: 2.2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testi-stars {
  color: #D4AF37;
  font-size: 0.95rem;
  margin-bottom: 1.2rem;
  display: flex;
  gap: 3px;
}

.testi-quote {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.65;
  margin-bottom: 1.8rem;
}

.testi-user {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(117, 103, 91, 0.12);
}

.user-info {
  display: flex;
  flex-direction: column;
}

.user-info strong {
  font-size: 0.95rem;
  color: var(--text);
}

.user-info span {
  font-size: 0.78rem;
  color: var(--gold-dark);
  font-weight: 600;
}

/* ==========================================================================
   FAQ Accordion
   ========================================================================== */
.faq-container { max-width: 820px; }
.faq-accordion { display: flex; flex-direction: column; gap: 1rem; }
.faq-item { overflow: hidden; border-radius: 20px; }

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.4rem 1.8rem;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.faq-question:hover { color: var(--primary); }
.faq-question i { font-size: 0.9rem; color: var(--gold-dark); transition: transform 0.3s ease; }
.faq-item.faq-open .faq-question i,
.faq-item.active .faq-question i { transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 1.8rem;
}

.faq-item.faq-open .faq-answer,
.faq-item.active .faq-answer {
  max-height: 450px;
  padding: 0 1.8rem 1.5rem 1.8rem;
}

.faq-answer p {
  font-size: 0.94rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Service Pricing Badge & Consultation Pill */
.service-pricing-badge {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.6rem;
  background: rgba(197, 168, 128, 0.12);
  border: 1px solid rgba(197, 168, 128, 0.3);
  padding: 0.75rem 1.1rem;
  border-radius: 16px;
  margin-bottom: 1.1rem;
}

.main-price {
  display: flex;
  align-items: baseline;
  gap: 0.2rem;
  font-family: var(--font-serif);
  color: var(--primary);
  font-weight: 700;
}

.price-currency {
  font-size: 1.1rem;
  color: var(--gold-dark);
}

.price-amount {
  font-size: 1.55rem;
  line-height: 1;
}

.price-cad {
  font-size: 0.82rem;
  font-family: var(--font-sans);
  color: var(--text-muted);
  font-weight: 600;
  margin-left: 0.15rem;
}

.price-session {
  font-size: 0.75rem;
  font-family: var(--font-sans);
  color: var(--gold-dark);
  font-weight: 600;
  margin-left: 0.35rem;
}

.touchup-price {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text);
  background: #FFFFFF;
  padding: 0.3rem 0.65rem;
  border-radius: 20px;
  border: 1px solid rgba(197, 168, 128, 0.35);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.touchup-price i {
  color: var(--gold-dark);
  font-size: 0.75rem;
}

.mandatory-consultation-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: #B23B3B;
  background: rgba(178, 59, 59, 0.08);
  border: 1px solid rgba(178, 59, 59, 0.25);
  padding: 0.4rem 0.8rem;
  border-radius: 10px;
  margin-bottom: 1.1rem;
}

/* ==========================================================================
   Contact Section
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 3.5rem;
  align-items: center;
}

.contact-section .contact-info .section-title {
  color: #F8F4EE;
  text-wrap: balance;
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.22);
}

.contact-section .contact-info .section-title .cursive-accent {
  color: #D8B67F;
  text-shadow: 0 8px 24px rgba(197, 168, 128, 0.18);
}

.contact-text {
  color: var(--text-light);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
  margin-bottom: 2.2rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.c-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(197, 168, 128, 0.15);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
}

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

.c-text strong {
  font-size: 0.82rem;
  color: var(--gold-light);
}

.c-text span,
.c-text a {
  font-size: 0.95rem;
  color: #FFFFFF;
}

.social-connect h4 {
  font-size: 0.92rem;
  color: var(--gold-light);
  margin-bottom: 0.9rem;
}

.social-links-large {
  display: flex;
  gap: 0.85rem;
}

.s-link {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(197, 168, 128, 0.25);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  transition: var(--transition-smooth);
}

.s-link:hover {
  background: var(--gold);
  color: #1A1816;
  transform: translateY(-3px);
}

/* Booking Form Card */
.booking-card {
  padding: 2.2rem;
}

.booking-card-title {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: #FFFFFF;
  margin-bottom: 0.3rem;
}

.booking-card-desc {
  font-size: 0.88rem;
  color: var(--text-light);
  margin-bottom: 1.6rem;
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold-light);
}

.input-with-icon {
  position: relative;
  display: flex;
  align-items: center;
}

.input-with-icon i {
  position: absolute;
  left: 16px;
  color: var(--gold);
  font-size: 0.95rem;
}

.input-with-icon input,
.input-with-icon select,
.form-group select {
  width: 100%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(197, 168, 128, 0.3);
  border-radius: 14px;
  padding: 0.85rem 1rem 0.85rem 2.8rem;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  color: #FFFFFF;
  outline: none;
  transition: var(--transition-smooth);
}

.form-group select { padding-left: 1rem; }

.input-with-icon input:focus,
.input-with-icon select:focus,
.form-group select:focus {
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 15px rgba(197, 168, 128, 0.2);
}

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

/* Custom Luxury Select Component */
.custom-select-container {
  position: relative;
  width: 100%;
  user-select: none;
}

.custom-select-trigger {
  width: 100%;
  min-height: 48px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(197, 168, 128, 0.35);
  border-radius: 14px;
  padding: 0.75rem 1rem 0.75rem 1rem;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  cursor: pointer;
  outline: none;
  transition: var(--transition-smooth);
  text-align: left;
}

.input-with-icon .custom-select-trigger {
  padding-left: 2.8rem;
}

.custom-select-trigger:hover,
.custom-select-trigger:focus,
.custom-select-container.open .custom-select-trigger {
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 15px rgba(197, 168, 128, 0.25);
}

.custom-select-value {
  flex: 1;
  white-space: normal;
  line-height: 1.35;
  color: #FFFFFF;
  font-weight: 500;
  font-size: 0.92rem;
}

.custom-select-arrow {
  color: var(--gold);
  font-size: 0.85rem;
  transition: transform 0.25s ease;
  flex-shrink: 0;
}

.custom-select-container.open .custom-select-arrow {
  transform: rotate(180deg);
}

.custom-select-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  width: 100%;
  max-height: 260px;
  overflow-y: auto;
  background: #1C1A18;
  border: 1px solid rgba(197, 168, 128, 0.45);
  border-radius: 14px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.8), 0 0 20px rgba(197, 168, 128, 0.15);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 9999;
  padding: 0.4rem;
}

.custom-select-container.open .custom-select-dropdown {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  animation: selectDropdownFade 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes selectDropdownFade {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.custom-select-option {
  padding: 0.75rem 0.9rem;
  border-radius: 10px;
  color: #E2DFD8;
  font-size: 0.92rem;
  cursor: pointer;
  transition: all 0.15s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.custom-select-option:hover {
  background: rgba(197, 168, 128, 0.18);
  color: #FFFFFF;
  padding-left: 1.1rem;
}

.custom-select-option.selected {
  background: rgba(197, 168, 128, 0.25);
  color: var(--gold-light);
  font-weight: 600;
}

.custom-select-option.selected::after {
  content: "✓";
  color: var(--gold);
  font-weight: 700;
  font-size: 0.95rem;
}

/* ==========================================================================
   Sticky Mobile Booking Bar
   ========================================================================== */
.sticky-mobile-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(26, 24, 22, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(197, 168, 128, 0.3);
  padding: 0.8rem 1.2rem calc(0.8rem + var(--safe-area-bottom));
  z-index: 999;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(calc(100% + var(--safe-area-bottom)));
  transition:
    opacity var(--motion-fast) ease,
    visibility var(--motion-fast) ease,
    transform var(--motion-base) var(--ease-luxury);
}

.sticky-mobile-bar.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.sticky-mobile-bar.is-visible.is-hidden-by-scroll {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(calc(100% + var(--safe-area-bottom)));
}

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

.sticky-text strong { color: #FFFFFF; font-size: 0.85rem; }
.sticky-text span { color: var(--gold-light); font-size: 0.75rem; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: #141210;
  color: var(--text-light);
  padding-top: 4.5rem;
  border-top: 1px solid rgba(197, 168, 128, 0.15);
}

.footer-container {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
}

.footer-brand .brand-name { color: #FFFFFF; }

.footer-desc {
  font-size: 0.86rem;
  color: var(--text-light);
  margin-top: 1rem;
  max-width: 320px;
  line-height: 1.6;
}

.footer-links-col h4 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: #FFFFFF;
  margin-bottom: 1.2rem;
}

.footer-links-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-links-col a {
  font-size: 0.86rem;
  color: var(--text-light);
  transition: var(--transition-smooth);
}

.footer-links-col a:hover {
  color: var(--gold);
  padding-left: 4px;
}

.footer-social-icons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-social-icons a {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.5rem 0;
  font-size: 0.82rem;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.footer-made { color: var(--gold); }

/* ==========================================================================
   Scroll Reveal Animations
   ========================================================================== */
.reveal-fade-up {
  opacity: 0;
  transform: translateY(38px);
  transition:
    opacity var(--motion-reveal) var(--ease-luxury),
    transform var(--motion-reveal) var(--ease-luxury);
}

.reveal-fade-up.active {
  opacity: 1;
  transform: translateY(0);
}

.delay-100 { transition-delay: 0.12s; }
.delay-200 { transition-delay: 0.24s; }

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }
  .hero-subtitle { margin: 0 auto 2rem auto; }
  .hero-cta-group { justify-content: center; }
  .hero-metrics { justify-content: center; }
  .hero-visual { max-width: 480px; margin: 0 auto; }
  
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-image-stack { max-width: 480px; margin: 0 auto; }
  
  .video-transformation-grid { grid-template-columns: 1fr; }
  .instagram-grid { columns: 2 260px; }
  
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .footer-container { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .announcement-bar { display: none; }
  .section-title { font-size: 2.1rem; }
  .hero-title { font-size: 2.2rem; }
  .hero-badge { font-size: 0.8rem; padding: 0.45rem 1rem; }
  
  .desktop-nav, .header-socials, .btn-header { display: none; }
  .mobile-toggle { display: flex; }
  
  .services-grid { 
    grid-template-columns: 1fr;
    gap: 1.6rem;
  }
  .service-img-wrapper { height: 210px; }
  .service-body { padding: 1.4rem 1.1rem; }
  .service-title { font-size: 1.28rem; }
  .service-pricing-badge {
    padding: 0.75rem 0.9rem;
    gap: 0.5rem;
  }

  .quiz-card { padding: 1.6rem 1.1rem; border-radius: 22px; }
  .quiz-title { font-size: 1.45rem; }
  .quiz-options { grid-template-columns: 1fr; gap: 0.75rem; }
  .quiz-btn { padding: 0.95rem 1rem; font-size: 0.86rem; }
  .quiz-result { padding: 1.3rem 1.1rem; border-radius: 16px; }
  .result-service-name { font-size: 1.25rem; }
  
  .instagram-grid {
    columns: 2;
    column-gap: 0.65rem;
  }

  .insta-item {
    margin-bottom: 0.65rem;
    border-radius: 15px;
  }

  .insta-overlay {
    min-height: 38px;
    padding: 0.52rem 0.45rem;
    font-size: 0.7rem;
    line-height: 1.2;
  }
  
  .video-wrapper { height: 320px; }
  .split-photo-img { height: 260px; }
  
  /* Mobile Contact & Booking Form */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .booking-card {
    padding: 1.6rem 1.1rem;
    border-radius: 24px;
    border: 1px solid rgba(197, 168, 128, 0.35);
  }

  .booking-card-title {
    font-size: 1.55rem;
  }

  .booking-card-desc {
    font-size: 0.88rem;
    line-height: 1.5;
    margin-bottom: 1.3rem;
  }

  .booking-form {
    gap: 1rem;
  }

  .form-group label {
    font-size: 0.84rem;
  }

  .input-with-icon input,
  .input-with-icon select,
  .form-group select {
    font-size: 16px; /* Prevents auto-zoom on iOS */
    min-height: 48px;
    padding: 0.85rem 1rem 0.85rem 2.8rem;
    border-radius: 14px;
    background: rgba(38, 35, 32, 0.95);
    color: #FFFFFF;
    width: 100%;
    box-sizing: border-box;
  }

  .form-group select {
    padding-left: 1rem;
  }

  .form-group select option,
  .input-with-icon select option {
    background: #1A1816;
    color: #FFFFFF;
    font-size: 15px;
    padding: 10px;
  }
  
  .form-row { grid-template-columns: 1fr; gap: 1rem; }
  .sticky-mobile-bar { display: flex; }
  body { padding-bottom: calc(76px + var(--safe-area-bottom)); }
  
  .footer-container { grid-template-columns: 1fr; gap: 2rem; }
}

@media (hover: none), (pointer: coarse) {
  .glass-card:hover {
    box-shadow: var(--shadow-sm);
    border-color: var(--glass-border);
    transform: none;
  }

  .insta-item:hover {
    transform: none;
    box-shadow: var(--shadow-sm);
    border-color: rgba(197, 168, 128, 0.32);
  }

  .insta-item:hover .insta-overlay {
    background: rgba(255, 252, 248, 0.98);
    color: var(--primary);
  }

  .service-card:hover .service-img-wrapper img,
  .hero-image-card:hover .hero-main-img,
  .insta-item:hover img {
    transform: none;
  }

  .btn:active,
  .quiz-btn:active,
  .lang-btn:active,
  .custom-select-trigger:active {
    transform: scale(0.975);
    transition-duration: var(--motion-instant);
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal-fade-up,
  .motion-enhanced .hero-section .hero-motion-item,
  .motion-enhanced .insta-item img,
  .reel-video {
    opacity: 1 !important;
    transform: none !important;
  }

  .floating-badge {
    animation: none !important;
  }
}
