/* ============================================================
   BVM Agency Inc — Main Stylesheet
   Design: Elegant & Luxurious | Rose Gold Palette
   Mobile-First | WCAG Accessible
   ============================================================ */

/* ─── CSS Custom Properties ─────────────────────────────── */
:root {
  --rose-gold:        #B76E79;
  --rose-gold-light:  #C9A0A0;
  --rose-mist:        #E8D5D5;
  --blush:            #FFF5F5;
  --rose-dark:        #8A4F5A;
  --rose-deep:        #6B3440;

  --dark:             #0f0c0d;
  --dark-2:           #1a1618;
  --charcoal:         #2d2527;
  --text:             #3a3235;
  --text-light:       #7a6e70;
  --white:            #ffffff;
  --off-white:        #fdf9f9;

  --gradient-hero:    linear-gradient(135deg, #0f0c0d 0%, #2d1a1e 50%, #3d2025 100%);
  --gradient-rose:    linear-gradient(135deg, #B76E79 0%, #C9A0A0 50%, #E8D5D5 100%);
  --gradient-gold:    linear-gradient(135deg, #B76E79, #d4a0a8, #B76E79);
  --gradient-section: linear-gradient(180deg, #FFF5F5 0%, #ffffff 100%);

  --shadow-sm:        0 2px 8px rgba(183, 110, 121, 0.12);
  --shadow-md:        0 8px 30px rgba(183, 110, 121, 0.18);
  --shadow-lg:        0 20px 60px rgba(183, 110, 121, 0.25);
  --shadow-xl:        0 30px 80px rgba(0,0,0,0.3);

  --border-radius:    12px;
  --border-radius-lg: 24px;

  --font-serif:       'Playfair Display', Georgia, serif;
  --font-sans:        'Inter', system-ui, -apple-system, sans-serif;

  --transition:       all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast:  all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow:  all 0.7s cubic-bezier(0.4, 0, 0.2, 1);

  --section-padding:  80px 0;
  --container-max:    1280px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--rose-gold);
  text-decoration: none;
  transition: var(--transition-fast);
}

a:hover { color: var(--rose-dark); }

ul { list-style: none; }

button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* ─── Typography ─────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  line-height: 1.2;
  font-weight: 700;
  color: var(--dark);
}

h1 { font-size: clamp(2.2rem, 5vw, 4.5rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.4rem); }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ─── Layout ─────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 20px;
}

@media (min-width: 768px) {
  .container { padding: 0 40px; }
}
@media (min-width: 1200px) {
  .container { padding: 0 60px; }
}

.section { padding: var(--section-padding); }
.section--dark { background: var(--dark-2); color: var(--white); }
.section--blush { background: var(--blush); }
.section--mist { background: var(--rose-mist); }

/* ─── Section Headers ─────────────────────────────────────── */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.section-badge {
  display: inline-block;
  padding: 6px 20px;
  background: var(--gradient-rose);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 50px;
  margin-bottom: 16px;
}

.section-header h2 {
  margin-bottom: 16px;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-header h2.dark {
  background: none;
  -webkit-text-fill-color: var(--dark);
  color: var(--dark);
}

.section-header h2.white {
  background: none;
  -webkit-text-fill-color: var(--white);
  color: var(--white);
}

.section-header p {
  color: var(--text-light);
  font-size: 1.1rem;
  line-height: 1.8;
}

.section-header p.white { color: rgba(255,255,255,0.75); }

.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 20px auto 0;
  width: 120px;
}

.divider::before,
.divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--rose-gold);
  opacity: 0.5;
}

.divider-diamond {
  width: 8px;
  height: 8px;
  background: var(--rose-gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* ─── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.15);
  opacity: 0;
  transition: var(--transition-fast);
}

.btn:hover::after { opacity: 1; }

.btn-primary {
  background: var(--gradient-gold);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(183, 110, 121, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(183, 110, 121, 0.5);
  color: var(--white);
}

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

.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-rose {
  background: transparent;
  color: var(--rose-gold);
  border: 2px solid var(--rose-gold);
}

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

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

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

.btn svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.btn:hover svg { transform: translateX(4px); }

/* ─── Navigation ─────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}

#navbar.scrolled {
  background: rgba(15, 12, 13, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 14px 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo-mark {
  width: 44px;
  height: 44px;
  background: var(--gradient-rose);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav-logo-title {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--white);
  letter-spacing: 0.02em;
}

.nav-logo-sub {
  font-size: 0.65rem;
  color: var(--rose-gold-light);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-decoration: none;
  position: relative;
  transition: var(--transition-fast);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--rose-gold);
  transition: width 0.3s ease;
}

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

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

.nav-cta {
  display: none;
}

.nav-hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  z-index: 1001;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition-fast);
}

.nav-hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15, 12, 13, 0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 80px 40px 40px;
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--white);
  text-decoration: none;
  transition: var(--transition-fast);
  opacity: 0;
  transform: translateY(20px);
  animation: mobileMenuIn 0.4s ease forwards;
}

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

@keyframes mobileMenuIn {
  to { opacity: 1; transform: translateY(0); }
}

.mobile-menu a:nth-child(1) { animation-delay: 0.1s; }
.mobile-menu a:nth-child(2) { animation-delay: 0.15s; }
.mobile-menu a:nth-child(3) { animation-delay: 0.2s; }
.mobile-menu a:nth-child(4) { animation-delay: 0.25s; }
.mobile-menu a:nth-child(5) { animation-delay: 0.3s; }
.mobile-menu a:nth-child(6) { animation-delay: 0.35s; }
.mobile-menu a:nth-child(7) { animation-delay: 0.4s; }
.mobile-menu a:nth-child(8) { animation-delay: 0.45s; }

.mobile-menu .mobile-menu-cta {
  margin-top: 20px;
}

@media (min-width: 768px) {
  .nav-links { display: flex; }
  .nav-cta { display: flex; }
  .nav-hamburger { display: none; }
}

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

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  transform: scale(1.05);
  transition: transform 8s ease;
}

.hero-bg-image.loaded {
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15, 12, 13, 0.92) 0%,
    rgba(45, 21, 28, 0.85) 40%,
    rgba(183, 110, 121, 0.25) 100%
  );
}

.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.particle {
  position: absolute;
  border-radius: 50%;
  background: var(--rose-gold);
  opacity: 0;
  animation: floatParticle var(--duration, 6s) ease-in-out infinite;
  animation-delay: var(--delay, 0s);
}

@keyframes floatParticle {
  0%   { opacity: 0; transform: translateY(0) scale(0); }
  10%  { opacity: 0.6; }
  90%  { opacity: 0.3; }
  100% { opacity: 0; transform: translateY(-100px) scale(1); }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 120px 0 80px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border: 1px solid rgba(183, 110, 121, 0.5);
  border-radius: 50px;
  color: var(--rose-gold-light);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 28px;
  background: rgba(183, 110, 121, 0.1);
  backdrop-filter: blur(10px);
  animation: fadeInDown 0.8s ease forwards;
  opacity: 0;
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--rose-gold);
  animation: pulseDot 2s ease infinite;
}

@keyframes pulseDot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.5); opacity: 0.6; }
}

.hero-content h1 {
  color: var(--white);
  margin-bottom: 24px;
  animation: fadeInUp 0.8s 0.2s ease forwards;
  opacity: 0;
  line-height: 1.1;
}

.hero-content h1 .accent {
  background: var(--gradient-rose);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}

.hero-content p {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255,255,255,0.75);
  max-width: 560px;
  margin-bottom: 40px;
  line-height: 1.8;
  animation: fadeInUp 0.8s 0.4s ease forwards;
  opacity: 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  animation: fadeInUp 0.8s 0.6s ease forwards;
  opacity: 0;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
  animation: fadeInUp 0.8s 0.8s ease forwards;
  opacity: 0;
}

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

.hero-stat-number {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.hero-stat-number span {
  color: var(--rose-gold-light);
}

.hero-stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: fadeIn 1s 1.2s ease forwards;
  opacity: 0;
  cursor: pointer;
  z-index: 1;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0), rgba(183, 110, 121, 0.8));
  animation: scrollLine 1.5s ease infinite;
}

@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ─── About Section ──────────────────────────────────────── */
#about {
  padding: 100px 0;
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: center;
}

.about-image-stack {
  position: relative;
  aspect-ratio: 4/5;
  max-width: 500px;
  margin: 0 auto;
}

.about-image-main {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-xl);
}

.about-image-accent {
  position: absolute;
  bottom: -30px;
  right: -20px;
  width: 55%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--border-radius);
  border: 4px solid var(--white);
  box-shadow: var(--shadow-lg);
}

.about-badge-float {
  position: absolute;
  top: -20px;
  left: -20px;
  background: var(--white);
  border-radius: var(--border-radius);
  padding: 16px 20px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: floatCard 3s ease-in-out infinite;
}

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

.about-badge-icon {
  width: 40px;
  height: 40px;
  background: var(--gradient-rose);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.about-badge-text strong {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1;
  margin-bottom: 2px;
}

.about-badge-text span {
  font-size: 0.7rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.about-content {
  padding: 0;
}

.about-content .section-badge {
  margin-bottom: 16px;
}

.about-content h2 {
  margin-bottom: 20px;
}

.about-lead {
  font-size: 1.1rem;
  color: var(--text);
  line-height: 1.9;
  margin-bottom: 24px;
}

.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 28px 0;
}

.about-value-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.about-value-icon {
  width: 32px;
  height: 32px;
  background: var(--blush);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rose-gold);
  flex-shrink: 0;
}

.about-value-icon svg { width: 16px; height: 16px; }

.about-value-item strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 2px;
}

.about-value-item span {
  font-size: 0.8rem;
  color: var(--text-light);
}

@media (min-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
  }
  .about-image-stack {
    margin: 0;
  }
}

/* ─── Services Section ───────────────────────────────────── */
#services {
  padding: 100px 0;
  background: var(--dark-2);
  position: relative;
  overflow: hidden;
}

#services::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(183, 110, 121, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

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

.service-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(183, 110, 121, 0.15);
  border-radius: var(--border-radius-lg);
  padding: 40px 36px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  cursor: default;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-rose);
  transform: scaleX(0);
  transition: transform 0.4s ease;
  transform-origin: left;
}

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

.service-card:hover {
  background: rgba(183, 110, 121, 0.08);
  border-color: rgba(183, 110, 121, 0.35);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.service-number {
  font-family: var(--font-serif);
  font-size: 4rem;
  font-weight: 700;
  color: rgba(183, 110, 121, 0.1);
  line-height: 1;
  margin-bottom: 16px;
  transition: var(--transition-fast);
}

.service-card:hover .service-number {
  color: rgba(183, 110, 121, 0.2);
}

.service-icon-wrap {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(183, 110, 121, 0.2), rgba(201, 160, 160, 0.1));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  border: 1px solid rgba(183, 110, 121, 0.2);
  transition: var(--transition);
}

.service-card:hover .service-icon-wrap {
  background: var(--gradient-rose);
  border-color: transparent;
  box-shadow: 0 8px 25px rgba(183, 110, 121, 0.3);
}

.service-icon-wrap svg {
  width: 28px;
  height: 28px;
  color: var(--rose-gold-light);
  transition: var(--transition-fast);
}

.service-card:hover .service-icon-wrap svg {
  color: var(--white);
}

.service-card h3 {
  color: var(--white);
  margin-bottom: 14px;
  font-size: 1.4rem;
}

.service-card p {
  color: rgba(255,255,255,0.6);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

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

.service-tag {
  padding: 4px 12px;
  background: rgba(183, 110, 121, 0.12);
  border: 1px solid rgba(183, 110, 121, 0.2);
  border-radius: 50px;
  font-size: 0.75rem;
  color: var(--rose-gold-light);
  letter-spacing: 0.03em;
}

@media (min-width: 768px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1100px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ─── Why Join Us / Values ───────────────────────────────── */
#why-us {
  padding: 100px 0;
  background: var(--blush);
  position: relative;
  overflow: hidden;
}

#why-us::after {
  content: '';
  position: absolute;
  bottom: -200px;
  left: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(183, 110, 121, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.why-us-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: center;
}

.why-us-content { order: 2; }

.why-us-visual { order: 1; }

.traits-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 36px;
}

.trait-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px;
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  border-left: 4px solid transparent;
  transition: var(--transition);
}

.trait-item:hover {
  border-left-color: var(--rose-gold);
  transform: translateX(6px);
  box-shadow: var(--shadow-md);
}

.trait-icon {
  width: 50px;
  height: 50px;
  background: var(--blush);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition-fast);
}

.trait-item:hover .trait-icon {
  background: var(--gradient-rose);
}

.trait-icon svg {
  width: 22px;
  height: 22px;
  color: var(--rose-gold);
  transition: var(--transition-fast);
}

.trait-item:hover .trait-icon svg {
  color: var(--white);
}

.trait-text h4 {
  color: var(--dark);
  margin-bottom: 6px;
}

.trait-text p {
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.7;
  margin: 0;
}

.growth-card {
  background: var(--dark-2);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  position: relative;
}

.growth-card-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  opacity: 0.8;
}

.growth-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px;
  background: linear-gradient(to top, rgba(15,12,13,0.95) 0%, transparent 100%);
}

.growth-card-overlay h3 {
  color: var(--white);
  margin-bottom: 10px;
  font-size: 1.5rem;
}

.growth-card-overlay p {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.growth-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 24px;
}

.growth-stat {
  text-align: center;
  padding: 16px 12px;
  background: rgba(183, 110, 121, 0.15);
  border: 1px solid rgba(183, 110, 121, 0.25);
  border-radius: var(--border-radius);
}

.growth-stat-val {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--rose-gold-light);
  line-height: 1;
}

.growth-stat-lbl {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}

@media (min-width: 992px) {
  .why-us-grid {
    grid-template-columns: 1fr 1fr;
  }
  .why-us-content { order: 1; }
  .why-us-visual  { order: 2; }
}

/* ─── Process Section ────────────────────────────────────── */
#process {
  padding: 100px 0;
  background: var(--white);
}

.process-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-top: 20px;
  position: relative;
}

.process-steps::before {
  display: none;
}

.process-step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 32px;
  background: var(--blush);
  border-radius: var(--border-radius-lg);
  transition: var(--transition);
  position: relative;
}

.process-step:hover {
  background: var(--white);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.step-number {
  width: 56px;
  height: 56px;
  background: var(--gradient-rose);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--white);
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(183, 110, 121, 0.35);
}

.step-content h4 {
  margin-bottom: 8px;
  color: var(--dark);
}

.step-content p {
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.7;
  margin: 0;
}

@media (min-width: 768px) {
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1100px) {
  .process-steps {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ─── Gallery Section ────────────────────────────────────── */
#gallery {
  padding: 100px 0;
  background: var(--dark-2);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 20px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius);
  cursor: pointer;
}

.gallery-item:nth-child(1) {
  grid-column: span 2;
  aspect-ratio: 16/7;
}

.gallery-item:nth-child(n+2) {
  aspect-ratio: 1;
}

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

.gallery-item:hover .gallery-img {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(183, 110, 121, 0.7) 0%, transparent 60%);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

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

.gallery-caption {
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  transform: translateY(10px);
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-caption {
  transform: translateY(0);
}

.gallery-zoom-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 50px;
  height: 50px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  backdrop-filter: blur(4px);
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-zoom-icon {
  transform: translate(-50%, -50%) scale(1);
}

@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .gallery-item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
    aspect-ratio: unset;
  }

  .gallery-item:nth-child(n+2) {
    aspect-ratio: 4/3;
  }
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.lightbox.open { display: flex; }

.lightbox-inner {
  position: relative;
  max-width: 1000px;
  width: 100%;
  animation: lightboxIn 0.3s ease;
}

@keyframes lightboxIn {
  from { opacity: 0; transform: scale(0.9); }
  to   { opacity: 1; transform: scale(1); }
}

.lightbox-inner img {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-xl);
  max-height: 85vh;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: -48px;
  right: 0;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  cursor: pointer;
  transition: var(--transition-fast);
}

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

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  cursor: pointer;
  transition: var(--transition-fast);
}

.lightbox-nav:hover { background: rgba(183, 110, 121, 0.4); }

.lightbox-prev { left: -60px; }
.lightbox-next { right: -60px; }

/* ─── Testimonials Section ───────────────────────────────── */
#testimonials {
  padding: 100px 0;
  background: var(--blush);
}

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

.testimonial-card {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--rose-mist);
  transition: var(--transition);
  position: relative;
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: var(--rose-gold-light);
}

.testimonial-quote {
  font-family: var(--font-serif);
  font-size: 4rem;
  color: var(--rose-mist);
  line-height: 1;
  margin-bottom: 16px;
  display: block;
}

.testimonial-card p {
  color: var(--text);
  font-size: 0.97rem;
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 24px;
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
}

.star {
  color: var(--rose-gold);
  font-size: 1rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient-rose);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
  flex-shrink: 0;
}

.testimonial-author-info strong {
  display: block;
  font-size: 0.9rem;
  color: var(--dark);
  font-weight: 600;
}

.testimonial-author-info span {
  font-size: 0.8rem;
  color: var(--text-light);
}

.testimonials-placeholder {
  text-align: center;
  padding: 60px 40px;
  background: var(--white);
  border-radius: var(--border-radius-lg);
  border: 2px dashed var(--rose-mist);
}

.testimonials-placeholder p {
  color: var(--text-light);
  font-style: italic;
}

@media (min-width: 768px) {
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1100px) {
  .testimonials-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ─── Contact Section ────────────────────────────────────── */
#contact {
  padding: 100px 0;
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contact-info h2 {
  margin-bottom: 16px;
}

.contact-info-lead {
  color: var(--text-light);
  line-height: 1.8;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-item-icon {
  width: 46px;
  height: 46px;
  background: var(--blush);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rose-gold);
  flex-shrink: 0;
  transition: var(--transition-fast);
}

.contact-item:hover .contact-item-icon {
  background: var(--rose-gold);
  color: var(--white);
}

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

.contact-item-text strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--rose-gold);
  margin-bottom: 4px;
}

.contact-item-text a,
.contact-item-text span {
  color: var(--text);
  font-size: 0.95rem;
  text-decoration: none;
  transition: var(--transition-fast);
}

.contact-item-text a:hover { color: var(--rose-gold); }

/* Contact Form */
.contact-form-wrap {
  background: var(--blush);
  border-radius: var(--border-radius-lg);
  padding: 40px;
  border: 1px solid var(--rose-mist);
}

.contact-form-wrap h3 {
  margin-bottom: 28px;
  color: var(--dark);
}

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

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

@media (min-width: 480px) {
  .form-row { grid-template-columns: 1fr 1fr; }
}

label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

label .required {
  color: var(--rose-gold);
  margin-left: 3px;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  background: var(--white);
  border: 1.5px solid var(--rose-mist);
  border-radius: var(--border-radius);
  font-size: 0.95rem;
  color: var(--text);
  transition: var(--transition-fast);
  outline: none;
}

.form-control:focus {
  border-color: var(--rose-gold);
  box-shadow: 0 0 0 3px rgba(183, 110, 121, 0.1);
}

.form-control::placeholder { color: var(--rose-mist); }

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

.form-submit { margin-top: 8px; }

.form-success,
.form-error {
  display: none;
  padding: 16px 20px;
  border-radius: var(--border-radius);
  margin-top: 16px;
  font-size: 0.9rem;
}

.form-success {
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #15803d;
}

.form-error {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #dc2626;
}

@media (min-width: 992px) {
  .contact-grid { grid-template-columns: 5fr 7fr; }
}

/* ─── CTA Banner Section ─────────────────────────────────── */
#cta-banner {
  padding: 100px 0;
  background: var(--gradient-hero);
  text-align: center;
  position: relative;
  overflow: hidden;
}

#cta-banner::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(183, 110, 121, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

#cta-banner h2 {
  color: var(--white);
  margin-bottom: 20px;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
}

#cta-banner p {
  color: rgba(255,255,255,0.7);
  font-size: 1.1rem;
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.8;
}

.cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

/* ─── Footer ─────────────────────────────────────────────── */
#footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding: 80px 0 0;
}

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

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

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  width: fit-content;
}

.footer-logo-mark {
  width: 42px;
  height: 42px;
  background: var(--gradient-rose);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
}

.footer-logo-name {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--white);
  font-weight: 700;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
  max-width: 300px;
}

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

.social-link {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: var(--transition-fast);
}

.social-link:hover {
  background: var(--rose-gold);
  border-color: var(--rose-gold);
  color: var(--white);
  transform: translateY(-3px);
}

.social-link svg { width: 16px; height: 16px; }

.footer-links h4 {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

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

.footer-links a {
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
  text-decoration: none;
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-links a::before {
  content: '›';
  color: var(--rose-gold);
  font-size: 1.1rem;
  opacity: 0;
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: var(--rose-gold-light);
  padding-left: 6px;
}

.footer-links a:hover::before { opacity: 1; }

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
}

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  color: var(--rose-gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-item a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: var(--transition-fast);
}

.footer-contact-item a:hover { color: var(--rose-gold-light); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 24px 0;
}

.footer-bottom .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.footer-bottom-text {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}

.footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 20px;
}

.footer-bottom-links a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: var(--transition-fast);
}

.footer-bottom-links a:hover { color: var(--rose-gold-light); }

@media (min-width: 768px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom .container { flex-direction: row; justify-content: space-between; text-align: left; }
}

@media (min-width: 1100px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.5fr; }
}

/* ─── Inner Pages (Legal, Apply) ─────────────────────────── */
.page-hero {
  background: var(--gradient-hero);
  padding: 140px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(183, 110, 121, 0.15) 0%, transparent 70%);
}

.page-hero-content {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: 16px;
}

.page-hero p {
  color: rgba(255,255,255,0.7);
  font-size: 1.1rem;
  max-width: 500px;
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}

.breadcrumb a { color: var(--rose-gold-light); text-decoration: none; }

.breadcrumb-sep { color: rgba(255,255,255,0.3); }

/* Legal Content */
.legal-content {
  padding: 80px 0;
}

.legal-body {
  max-width: 860px;
  margin: 0 auto;
}

.legal-body h2 {
  font-size: 1.5rem;
  color: var(--dark);
  margin: 40px 0 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--rose-mist);
}

.legal-body h2:first-child { margin-top: 0; }

.legal-body h3 {
  font-size: 1.15rem;
  color: var(--charcoal);
  margin: 24px 0 12px;
}

.legal-body p {
  color: var(--text);
  line-height: 1.85;
  margin-bottom: 16px;
}

.legal-body ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
}

.legal-body ul li {
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 6px;
}

.legal-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--blush);
  border-left: 4px solid var(--rose-gold);
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
  margin-bottom: 40px;
}

.legal-meta p {
  font-size: 0.85rem;
  color: var(--text-light);
  margin: 0;
}

/* Application Form */
.apply-content {
  padding: 80px 0;
}

.apply-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
}

.apply-sidebar {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.apply-sidebar-card {
  background: var(--blush);
  border-radius: var(--border-radius);
  padding: 28px;
  border: 1px solid var(--rose-mist);
}

.apply-sidebar-card h4 {
  margin-bottom: 14px;
  color: var(--dark);
}

.apply-sidebar-card p {
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.7;
}

.apply-perks {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.perk-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text);
}

.perk-icon {
  width: 28px;
  height: 28px;
  background: var(--gradient-rose);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
}

.perk-icon svg { width: 14px; height: 14px; }

.apply-form-wrap {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--rose-mist);
}

.apply-form-wrap h2 {
  margin-bottom: 8px;
}

.apply-form-wrap .form-lead {
  color: var(--text-light);
  margin-bottom: 36px;
}

.form-section-title {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--rose-gold);
  margin: 28px 0 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--rose-mist);
}

.form-control-file {
  width: 100%;
  padding: 12px 16px;
  background: var(--blush);
  border: 2px dashed var(--rose-mist);
  border-radius: var(--border-radius);
  font-size: 0.9rem;
  color: var(--text);
  cursor: pointer;
  transition: var(--transition-fast);
}

.form-control-file:hover {
  border-color: var(--rose-gold);
  background: var(--white);
}

.form-checkbox-wrap {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: var(--blush);
  border-radius: var(--border-radius);
  border: 1px solid var(--rose-mist);
}

.form-checkbox-wrap input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--rose-gold);
  flex-shrink: 0;
  margin-top: 2px;
  cursor: pointer;
}

.form-checkbox-wrap label {
  font-size: 0.88rem;
  color: var(--text);
  font-weight: 400;
  cursor: pointer;
  margin: 0;
}

.honeypot-field {
  display: none !important;
  visibility: hidden;
  opacity: 0;
  height: 0;
  overflow: hidden;
}

.apply-form-message {
  display: none;
  padding: 20px 24px;
  border-radius: var(--border-radius);
  margin-top: 20px;
  font-size: 0.95rem;
  line-height: 1.6;
}

.apply-form-message.success {
  display: block;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #15803d;
}

.apply-form-message.error {
  display: block;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #dc2626;
}

.btn-loading {
  opacity: 0.7;
  pointer-events: none;
}

@media (min-width: 992px) {
  .apply-grid { grid-template-columns: 1fr 2fr; }
  .apply-form-wrap { padding: 56px; }
}

/* ─── Animations ─────────────────────────────────────────── */
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

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

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

@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(30px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.9); }
  to   { opacity: 1; transform: scale(1); }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

.animate-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-left.animated {
  opacity: 1;
  transform: translateX(0);
}

.animate-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-right.animated {
  opacity: 1;
  transform: translateX(0);
}

.animate-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-scale.animated {
  opacity: 1;
  transform: scale(1);
}

.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }
.delay-400 { transition-delay: 0.4s; }
.delay-500 { transition-delay: 0.5s; }
.delay-600 { transition-delay: 0.6s; }

/* Shimmer animation for loading images */
.img-placeholder {
  background: linear-gradient(90deg, var(--rose-mist) 25%, var(--blush) 50%, var(--rose-mist) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
  0%   { background-position: -200% 0; }
  100% { background-position:  200% 0; }
}

/* Number counter animation */
.counter { display: inline-block; }

/* ─── Utility Classes ────────────────────────────────────── */
.text-center { text-align: center; }
.text-gradient {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }

/* Back to Top */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 44px;
  height: 44px;
  background: var(--gradient-rose);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  cursor: pointer;
  border: none;
  box-shadow: 0 4px 20px rgba(183, 110, 121, 0.4);
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
  z-index: 500;
}

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

.back-to-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(183, 110, 121, 0.5);
}

.back-to-top svg { width: 18px; height: 18px; }

/* ─── Focus & Accessibility ──────────────────────────────── */
:focus-visible {
  outline: 3px solid var(--rose-gold);
  outline-offset: 3px;
  border-radius: 4px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* Skip nav */
.skip-link {
  position: absolute;
  top: -100px;
  left: 20px;
  background: var(--rose-gold);
  color: var(--white);
  padding: 10px 20px;
  border-radius: var(--border-radius);
  font-weight: 600;
  z-index: 9999;
  text-decoration: none;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 20px;
}

/* ─── Print styles ───────────────────────────────────────── */
@media print {
  #navbar, .back-to-top, #cta-banner { display: none; }
  body { font-size: 12pt; }
}

/* ─── High contrast media query ──────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}
