/* ══════════════════════════════════════════════════════
   BYANCA BEAUTY CENTER — Premium Design System v2.0
   ══════════════════════════════════════════════════════ */

/* ── 0. Self-Hosted Fonts ── */
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/assets/fonts/playfair-display-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/assets/fonts/playfair-display-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/assets/fonts/playfair-display-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Playfair Display';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('/assets/fonts/playfair-display-400-italic.woff2') format('woff2');
}
@font-face {
  font-family: 'Playfair Display';
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url('/assets/fonts/playfair-display-500-italic.woff2') format('woff2');
}
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('/assets/fonts/dm-sans-300.woff2') format('woff2');
}
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/assets/fonts/dm-sans-400.woff2') format('woff2');
}
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/assets/fonts/dm-sans-500.woff2') format('woff2');
}
@font-face {
  font-family: 'DM Sans';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('/assets/fonts/dm-sans-400-italic.woff2') format('woff2');
}

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

:root {
  /* Colors — Sage */
  --sage: #8B9E7C;
  --sage-light: #A8B89C;
  --sage-pale: #E8EDE4;
  --sage-dark: #6B7E5E;
  --sage-deeper: #5A6B4F;

  /* Colors — Sand */
  --sand: #C4AA7B;
  --sand-light: #D4C4A0;
  --sand-pale: #F5EFE4;

  /* Colors — Blush */
  --blush: #D4A5A0;
  --blush-light: #E8C8C4;
  --blush-pale: #FBF0EE;

  /* Colors — Neutrals */
  --linen: #FAF8F5;
  --linen-dark: #F0EBE3;
  --ivory: #FFFEFB;
  --charcoal: #2C2926;
  --charcoal-soft: #4A4541;
  --white: #FFFFFF;

  /* Text */
  --text-primary: #2C2926;
  --text-secondary: #7A746C;
  --text-light: #A9A49C;

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --letter-tight: -0.02em;
  --letter-wide: 0.15em;

  /* Easing */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Radius */
  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 16px;
  --r-xl: 24px;
  --r-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0,0,0,.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,.05);
  --shadow-lg: 0 12px 40px rgba(0,0,0,.07);
  --shadow-xl: 0 20px 60px rgba(0,0,0,.08);
  --shadow-sage: 0 8px 30px rgba(139,158,124,.18);
  --shadow-wa: 0 4px 20px rgba(37,211,102,.3);

  /* Transitions */
  --transition-fast: 0.2s var(--ease);
  --transition-base: 0.35s var(--ease);
  --transition-slow: 0.5s var(--ease);
}


/* ── 2. Base & Typography ── */
html { scroll-behavior: smooth; font-size: 16px; }

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

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
button { font-family: var(--font-body); cursor: pointer; }

h1, h2, h3, h4, h5, h6 {
  letter-spacing: var(--letter-tight);
}


/* ── Scroll Reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }
.reveal-delay-3 { transition-delay: 0.36s; }
.reveal-delay-4 { transition-delay: 0.48s; }


/* ── 3. Preloader ── */
.preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--ivory);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.6s var(--ease), visibility 0.6s;
}
.preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-logo {
  font-family: var(--font-display); font-size: 2rem; font-weight: 500;
  color: var(--charcoal); opacity: 0; animation: preloaderIn 1s var(--ease) forwards;
}
.preloader-logo span { color: var(--sage); font-style: italic; }

@keyframes preloaderIn { to { opacity: 1; } }


/* ── 4. Custom Cursor (desktop only) ── */
.cursor {
  width: 8px; height: 8px; background: var(--charcoal);
  border-radius: 50%; position: fixed; pointer-events: none; z-index: 9998;
  transition: transform 0.15s var(--ease), opacity 0.15s;
  mix-blend-mode: difference;
}
.cursor-follower {
  width: 36px; height: 36px; border: 1px solid var(--charcoal);
  border-radius: 50%; position: fixed; pointer-events: none; z-index: 9997;
  transition: transform 0.3s var(--ease-out), width 0.3s, height 0.3s, opacity 0.3s;
  opacity: 0.4;
}
.cursor-follower.active { width: 56px; height: 56px; opacity: 0.2; }

@media (pointer: coarse) { .cursor, .cursor-follower { display: none !important; } }


/* ── 5. Page Transition (Barba.js) ── */
.page-transition {
  position: fixed; inset: 0; z-index: 9990;
  background: var(--sage-pale);
  transform: translateY(100%);
  pointer-events: none;
}


/* ── 6. Navigation ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1.25rem 3rem;
  display: flex; align-items: center; justify-content: space-between;
  transition: all var(--transition-slow);
}
.nav.scrolled {
  background: rgba(255,254,251,0.92);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  padding: 0.75rem 3rem;
  box-shadow: 0 1px 0 rgba(0,0,0,0.04);
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.4rem; font-weight: 500;
  color: var(--charcoal); letter-spacing: 0.02em;
  transition: opacity var(--transition-fast);
}
.nav-logo:hover { opacity: 0.8; }
.nav-logo span { color: var(--sage); }
.nav-links { display: flex; gap: 2rem; align-items: center; }
.nav-links a {
  font-size: 0.78rem; font-weight: 400;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
  position: relative; padding: 0.25rem 0;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 1.5px; background: var(--sage);
  transition: width var(--transition-base);
}
.nav-links a:hover { color: var(--sage-dark); }
.nav-links a:hover::after { width: 100%; }

/* Nav Item & Dropdown */
.nav-item { position: relative; }
.nav-dropdown {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(8px);
  background: var(--white);
  border: 1px solid var(--linen-dark);
  border-radius: var(--r-lg);
  padding: 1rem 0;
  min-width: 220px;
  box-shadow: var(--shadow-lg);
  opacity: 0; visibility: hidden;
  transition: opacity var(--transition-fast), transform var(--transition-fast), visibility var(--transition-fast);
  pointer-events: none;
  z-index: 110;
}
.nav-item:hover .nav-dropdown {
  opacity: 1; visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}
.nav-dropdown a {
  display: block; padding: 0.5rem 1.5rem;
  font-size: 0.82rem; text-transform: none; letter-spacing: 0;
  color: var(--text-secondary);
  transition: all var(--transition-fast);
}
.nav-dropdown a::after { display: none; }
.nav-dropdown a:hover {
  color: var(--sage-dark); background: var(--sage-pale);
  padding-left: 1.75rem;
}

.nav-cta {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: var(--sage); color: var(--white);
  padding: 0.6rem 1.5rem;
  font-size: 0.75rem; font-weight: 500;
  letter-spacing: 0.06em; text-transform: uppercase;
  border-radius: var(--r-sm);
  transition: all var(--transition-base);
  border: none;
}
.nav-cta:hover {
  background: var(--sage-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-sage);
}

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 6px; border: none; background: none;
}
.hamburger span {
  display: block; width: 22px; height: 1.5px;
  background: var(--charcoal); transition: all 0.3s var(--ease);
  transform-origin: center;
}
.hamburger.active span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0; transform: scaleX(0);
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}


/* ── Mobile Menu ── */
.mobile-menu {
  display: none; position: fixed; inset: 0;
  background: rgba(255,254,251,0.98);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  z-index: 200;
  flex-direction: column; align-items: center; justify-content: center;
  gap: 1.75rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 1.5rem; color: var(--charcoal);
  transition: color var(--transition-fast);
  padding: 0.25rem 0;
}
.mobile-menu a:hover { color: var(--sage); }
.mm-cta {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--sage); color: var(--white) !important;
  padding: 0.75rem 2.5rem;
  border-radius: var(--r-sm);
  font-size: 0.9rem !important;
  font-family: var(--font-body) !important;
  letter-spacing: 0.04em;
  margin-top: 0.5rem;
}
.mobile-close {
  position: absolute; top: 1.25rem; right: 1.5rem;
  cursor: pointer; color: var(--charcoal);
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; border-radius: 50%;
  transition: background var(--transition-fast);
  border: none; background: none;
}
.mobile-close:hover { background: var(--linen); }
.mm-service { font-size: 0.82rem; }
.nav-dropdown-all {
  display: block; padding: 0.5rem 1rem; font-size: 0.78rem;
  color: var(--sage); font-weight: 500; border-top: 1px solid var(--linen);
  margin-top: 0.25rem;
}


/* ── 7. Buttons ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--sage); color: var(--white);
  padding: 0.9rem 2.2rem;
  font-family: var(--font-body);
  font-size: 0.82rem; font-weight: 500;
  letter-spacing: 0.06em; text-transform: uppercase;
  border: 2px solid var(--sage);
  border-radius: var(--r-sm);
  transition: all var(--transition-base);
  cursor: pointer; position: relative; overflow: hidden;
}
.btn-primary::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(255,255,255,0.1) 50%, transparent 100%);
  transform: translateX(-100%);
  transition: transform 0.5s var(--ease);
}
.btn-primary:hover::before { transform: translateX(100%); }
.btn-primary:hover {
  background: var(--sage-dark); border-color: var(--sage-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sage);
}
.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: transparent; color: var(--text-secondary);
  padding: 0.9rem 2rem;
  font-family: var(--font-body);
  font-size: 0.82rem; font-weight: 400;
  letter-spacing: 0.04em;
  border: 1.5px solid var(--linen-dark);
  border-radius: var(--r-sm);
  transition: all var(--transition-base);
  cursor: pointer;
}
.btn-ghost:hover {
  border-color: var(--sage-light); color: var(--sage-dark);
  background: rgba(139,158,124,0.04);
  transform: translateY(-1px);
}


/* ── Section Helpers ── */
section { padding: 6rem 2.5rem; }
.container { max-width: 1200px; margin: 0 auto; width: 100%; }

.section-label {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.68rem; letter-spacing: var(--letter-wide); text-transform: uppercase;
  color: var(--sage-dark); margin-bottom: 1rem; font-weight: 500;
}
.section-label::before {
  content: ''; width: 24px; height: 1.5px; background: var(--sage);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.6rem);
  font-weight: 400; line-height: 1.2; margin-bottom: 0.75rem;
  letter-spacing: var(--letter-tight);
}
.section-title em { font-style: italic; color: var(--sage-dark); }
.section-desc {
  font-size: 0.92rem; color: var(--text-secondary);
  max-width: 500px; line-height: 1.75;
}


/* ── 8. Hero ── */
.hero {
  position: relative; min-height: 100vh; min-height: 100dvh;
  display: flex; align-items: center;
  background: linear-gradient(160deg, var(--linen) 0%, var(--ivory) 50%, var(--sand-pale) 100%);
  overflow: hidden;
}
.hero-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
  max-width: 1320px; margin: 0 auto;
  padding: 8rem 3rem 6rem;
  width: 100%;
}
.hero-text { max-width: 580px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.68rem; letter-spacing: var(--letter-wide); text-transform: uppercase;
  color: var(--sage-dark); background: var(--sage-pale);
  padding: 0.5rem 1.25rem; border-radius: var(--r-full);
  margin-bottom: 2rem;
  opacity: 0; animation: slideUp 0.7s var(--ease-out) 0.2s forwards;
}
.hero-badge::before {
  content: ''; width: 6px; height: 6px;
  background: var(--sage); border-radius: 50%;
}
.hero h1,
.hero-text h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 400; line-height: 1.12;
  margin-bottom: 1.5rem;
  letter-spacing: var(--letter-tight);
  opacity: 0; animation: slideUp 0.7s var(--ease-out) 0.4s forwards;
}
.hero h1 em,
.hero-text h1 em { font-style: italic; color: var(--sage-dark); }
.hero-sub {
  font-size: 1.05rem; font-weight: 300;
  color: var(--text-secondary); max-width: 460px;
  line-height: 1.8; margin-bottom: 2.5rem;
  opacity: 0; animation: slideUp 0.7s var(--ease-out) 0.6s forwards;
}
.hero-actions {
  display: flex; gap: 1rem; align-items: center; flex-wrap: wrap;
  opacity: 0; animation: slideUp 0.7s var(--ease-out) 0.8s forwards;
}

/* Hero Visual */
.hero-visual {
  position: relative;
  opacity: 0; animation: slideUp 0.8s var(--ease-out) 0.5s forwards;
}
.hero-img-main {
  aspect-ratio: 3/4;
  background: linear-gradient(155deg, var(--sand-pale) 0%, var(--blush-pale) 40%, var(--sage-pale) 100%);
  border-radius: var(--r-xl);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; position: relative;
  box-shadow: var(--shadow-lg);
}
.hero-photo, .about-photo {
  width: 100%; height: 100%; object-fit: cover;
}
.hero-img-placeholder {
  font-family: var(--font-display); font-size: 1rem;
  color: var(--text-light); font-style: italic;
  text-align: center; padding: 2rem; line-height: 1.6;
}


/* SplitText support */
.word { display: inline-block; overflow: hidden; }
.word-inner { display: inline-block; }


/* ── 9. Marquee ── */
.marquee {
  overflow: hidden; background: var(--sage);
  padding: 0.75rem 0; white-space: nowrap;
}
.marquee-inner {
  display: inline-flex;
  animation: scroll 30s linear infinite;
}
.marquee-item {
  font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(255,255,255,0.85); padding: 0 2.5rem;
  display: inline-flex; align-items: center; gap: 0.75rem;
}
.marquee-dot {
  width: 4px; height: 4px;
  background: rgba(255,255,255,0.35); border-radius: 50%;
}


/* ── 10. Services Grid ── */
.services { background: var(--ivory); padding-bottom: 5rem; }
.services-header { text-align: center; margin-bottom: 3.5rem; }
.services-header .section-label::before { display: none; }
.services-header .section-desc { margin: 0 auto; }
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem;
}
.service-card {
  display: block; position: relative;
  background: var(--linen); padding: 2.25rem 1.75rem;
  border-radius: var(--r-lg);
  border: 1.5px solid transparent;
  overflow: hidden;
  transition: all 0.4s var(--ease);
}
.service-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: linear-gradient(90deg, var(--sage), var(--sage-light));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.service-card:hover {
  background: var(--white);
  border-color: rgba(139,158,124,0.12);
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}
.service-card:hover::after { transform: scaleX(1); }
.service-icon {
  width: 46px; height: 46px; border-radius: var(--r-md);
  background: var(--sage-pale);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--sage-dark);
  transition: all var(--transition-base);
}
.service-card:hover .service-icon {
  background: var(--sage); color: var(--white);
  transform: scale(1.06);
  box-shadow: var(--shadow-sage);
}
.service-icon svg { width: 22px; height: 22px; }
.service-img {
  width: 100%; aspect-ratio: 16/10;
  border-radius: var(--r-md); overflow: hidden;
  margin-bottom: 1.25rem;
}
.service-img img { width: 100%; height: 100%; object-fit: cover; }
.service-name {
  font-family: var(--font-display);
  font-size: 1.2rem; font-weight: 500;
  margin-bottom: 0.5rem; color: var(--charcoal);
}
.service-desc {
  font-size: 0.82rem; color: var(--text-secondary);
  line-height: 1.65; margin-bottom: 1.25rem;
}
.service-link {
  font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--sage); font-weight: 500;
  display: inline-flex; align-items: center; gap: 0.35rem;
  transition: all var(--transition-base);
  position: relative;
}
.service-link::after {
  content: ''; position: absolute; bottom: -2px; left: 0;
  width: 0; height: 1px; background: var(--sage);
  transition: width var(--transition-base);
}
.service-card:hover .service-link {
  gap: 0.65rem; color: var(--sage-dark);
}
.service-card:hover .service-link::after { width: 100%; }
.service-starting-price {
  display: inline-block; padding: 4px 12px;
  background: var(--sage-pale); color: var(--sage-dark);
  font-size: 0.75rem; font-weight: 500;
  border-radius: var(--r-full); margin-bottom: 1rem;
}


/* ── 11. About ── */
.about { background: var(--linen); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1.15fr;
  gap: 5rem; align-items: center;
}
.about-visual { position: relative; }
.about-img-main {
  aspect-ratio: 4/5;
  background: linear-gradient(155deg, var(--sage-pale), var(--sand-pale));
  border-radius: var(--r-xl); overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.about-img-main::before {
  content: ''; position: absolute; inset: -2px;
  border-radius: var(--r-xl);
  border: 2px solid var(--sage-light); opacity: 0.25;
  pointer-events: none;
}
.about-img-accent {
  position: absolute; bottom: -1.5rem; right: -1.5rem;
  width: 160px; height: 200px;
  background: var(--white); border-radius: var(--r-lg);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-lg); overflow: hidden;
}
.about-exp {
  position: absolute; top: -1rem; left: -1rem;
  background: var(--sage); color: var(--white);
  padding: 1rem 1.25rem; border-radius: var(--r-lg);
  text-align: center;
  box-shadow: var(--shadow-sage);
}
.about-exp-num {
  font-family: var(--font-display);
  font-size: 1.7rem; font-weight: 600; line-height: 1;
}
.about-exp-label {
  font-size: 0.62rem; letter-spacing: 0.08em;
  text-transform: uppercase; opacity: 0.8; margin-top: 0.2rem;
}
.about-text .section-desc { margin-bottom: 2rem; }
.about-features {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0.85rem; margin-bottom: 2.25rem;
}
.feature {
  background: var(--white); padding: 1.15rem 1rem;
  border-radius: var(--r-md);
  border: 1px solid var(--linen-dark);
  transition: all var(--transition-base);
}
.feature:hover {
  border-color: var(--sage-pale);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}
.feature-title {
  font-size: 0.8rem; font-weight: 500; color: var(--charcoal);
  margin-bottom: 0.2rem;
  display: flex; align-items: center; gap: 0.5rem;
}
.feature-dot {
  width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0;
}
.feature-desc {
  font-size: 0.72rem; color: var(--text-secondary);
  line-height: 1.5; padding-left: 1.1rem;
}


/* ── 12. Numbers ── */
.numbers { background: var(--ivory); padding: 4.5rem 2.5rem; }
.numbers-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2rem; max-width: 900px; margin: 0 auto; text-align: center;
}
.number-item {
  padding: 1.5rem 1rem;
  transition: transform var(--transition-base);
}
.number-item:hover { transform: translateY(-4px); }
.number-val {
  font-family: var(--font-display);
  font-size: 2.4rem; font-weight: 500;
  color: var(--sage-dark); line-height: 1;
}
.number-label {
  font-size: 0.78rem; color: var(--text-secondary);
  margin-top: 0.4rem; letter-spacing: 0.02em;
}
.number-divider {
  width: 28px; height: 2px; background: var(--sage-pale);
  margin: 0.65rem auto 0; border-radius: 1px;
}


/* ── 13. Packages ── */
.packages { background: var(--ivory); padding-top: 2rem; }
.packages-header { text-align: center; margin-bottom: 3rem; }
.packages-header .section-label::before { display: none; }
.packages-header .section-desc { margin: 0 auto; }
.pkg-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1.5rem; max-width: 900px; margin: 0 auto;
}
.pkg-card {
  background: var(--linen); border-radius: var(--r-xl);
  padding: 2.75rem 2.25rem; position: relative;
  border: 1.5px solid transparent;
  transition: all 0.4s var(--ease);
}
.pkg-card:hover {
  border-color: var(--sage-pale); background: var(--white);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.pkg-card.featured {
  background: var(--white);
  border-color: var(--sage);
  border-left: 4px solid var(--sage);
  box-shadow: var(--shadow-xl);
  background-image: linear-gradient(135deg, rgba(139,158,124,0.03) 0%, rgba(196,170,123,0.03) 100%);
}
.pkg-badge {
  position: absolute; top: 1.25rem; right: 1.25rem;
  background: var(--sage); color: var(--white);
  font-size: 0.6rem; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.35rem 0.9rem; border-radius: var(--r-full); font-weight: 500;
}
.pkg-name {
  font-family: var(--font-display);
  font-size: 1.4rem; font-weight: 500;
  margin-bottom: 0.5rem; color: var(--charcoal);
}
.pkg-desc {
  font-size: 0.82rem; color: var(--text-secondary);
  margin-bottom: 1.75rem; line-height: 1.65;
}
.pkg-list { list-style: none; margin-bottom: 2rem; }
.pkg-list li {
  font-size: 0.82rem; color: var(--text-primary);
  padding: 0.5rem 0; display: flex; align-items: center; gap: 0.65rem;
}
.pkg-check {
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--sage-pale); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.pkg-check svg { width: 11px; height: 11px; color: var(--sage-dark); }
.pkg-cta {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--sage); color: var(--white);
  padding: 0.75rem 1.75rem;
  font-size: 0.78rem; font-weight: 500;
  letter-spacing: 0.06em; text-transform: uppercase;
  border-radius: var(--r-sm); border: 2px solid var(--sage);
  transition: all var(--transition-base);
}
.pkg-cta:hover {
  background: var(--sage-dark); border-color: var(--sage-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sage);
}
.pkg-referral {
  padding: 0.75rem 1rem; margin-bottom: 1.25rem;
  background: var(--sage-pale); color: var(--sage-dark);
  font-size: 0.8rem; font-weight: 500;
  border-radius: var(--r-sm); text-align: center;
  border-left: 3px solid var(--sage);
}


/* ── 14. Testimonials ── */
.testimonials { background: var(--linen); }
.testimonials-header { text-align: center; margin-bottom: 3rem; }
.testimonials-header .section-label::before { display: none; }
.testimonials-header .section-desc { margin: 0 auto; }
.testi-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem;
}
.testi-card {
  background: var(--white); padding: 2rem 1.75rem;
  border-radius: var(--r-lg);
  border: 1px solid var(--linen-dark);
  transition: all var(--transition-base);
  transform-style: preserve-3d;
  perspective: 800px;
}
.testi-card:hover {
  border-color: var(--sage-pale);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px) rotateX(2deg);
}
.testi-stars { display: flex; gap: 2px; margin-bottom: 1rem; }
.testi-star { color: var(--sand); font-size: 0.9rem; line-height: 1; }
.testi-text {
  font-size: 0.88rem; color: var(--text-secondary);
  line-height: 1.75; font-style: italic; margin-bottom: 1.5rem;
}
.testi-author { display: flex; align-items: center; gap: 0.75rem; }
.testi-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--sage-pale);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 0.82rem; color: var(--sage-dark); font-weight: 500;
}
.testi-name { font-size: 0.82rem; font-weight: 500; color: var(--charcoal); }
.testi-service { font-size: 0.7rem; color: var(--text-light); margin-top: 0.1rem; }


/* ── 15. FAQ ── */
.faq { background: var(--ivory); }
.faq-header { text-align: center; margin-bottom: 3rem; }
.faq-header .section-label::before { display: none; }
.faq-header .section-desc { margin: 0 auto; }
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--linen-dark); }
.faq-q {
  padding: 1.35rem 0; cursor: pointer;
  display: flex; justify-content: space-between;
  align-items: center; gap: 1rem;
  transition: color var(--transition-fast);
  -webkit-user-select: none; user-select: none;
}
.faq-q:hover { color: var(--sage-dark); }
.faq-q h3 {
  font-family: var(--font-display);
  font-size: 1.08rem; font-weight: 500;
}
.faq-arrow {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--linen);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition-base);
}
.faq-item.open .faq-arrow {
  background: var(--sage-pale);
  transform: rotate(180deg);
}
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s var(--ease), padding 0.4s var(--ease);
}
.faq-item.open .faq-a {
  max-height: 600px; padding-bottom: 1.35rem;
}
.faq-a p {
  font-size: 0.88rem; color: var(--text-secondary); line-height: 1.75;
}


/* ── 16. CTA Band ── */
.cta-band {
  background: linear-gradient(135deg, var(--sage-pale) 0%, var(--blush-pale) 50%, var(--sand-pale) 100%);
  text-align: center; padding: 5.5rem 2.5rem;
  position: relative; overflow: hidden;
}
.cta-band .section-title { margin-bottom: 0.5rem; }
.cta-band-shape {
  position: absolute; border-radius: 50%;
  opacity: 0.12; background: var(--sage); pointer-events: none;
}
.cta-band-shape:nth-child(1) { width: 220px; height: 220px; top: -70px; right: -50px; }
.cta-band-shape:nth-child(2) { width: 160px; height: 160px; bottom: -50px; left: -40px; }


/* ── 17. Contact ── */
.contact { background: var(--linen); }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 4rem; align-items: start; margin-top: 2.5rem;
}
.contact-info { display: flex; flex-direction: column; gap: 1rem; }
.contact-card {
  background: var(--white); padding: 1.25rem 1.5rem;
  border-radius: var(--r-lg);
  border: 1px solid var(--linen-dark);
  transition: all var(--transition-base);
}
.contact-card:hover {
  border-color: var(--sage-pale);
  box-shadow: var(--shadow-sm);
  transform: translateX(4px);
}
.contact-card h4 {
  font-size: 0.65rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--sage);
  margin-bottom: 0.35rem; font-weight: 500;
}
.contact-card p {
  font-size: 0.9rem; color: var(--text-secondary); line-height: 1.6;
}
.contact-card a { color: var(--charcoal); transition: color var(--transition-fast); }
.contact-card a:hover { color: var(--sage); }
.contact-map {
  aspect-ratio: 16/10; background: var(--white);
  border-radius: var(--r-xl);
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--linen-dark); overflow: hidden;
}
.contact-map iframe { width: 100%; height: 100%; border: 0; border-radius: var(--r-xl); }
.map-placeholder {
  font-family: var(--font-display); font-size: 0.9rem;
  color: var(--text-light); font-style: italic;
}
.contact-map-link { margin-top: 0.75rem; }


/* ══════════════════════════════════════
   NEW COMPONENTS
   ══════════════════════════════════════ */


/* ── 18. Before/After Slider ── */
.before-after {
  position: relative; overflow: hidden;
  border-radius: var(--r-lg); aspect-ratio: 4/3; cursor: ew-resize;
}
.before-after img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
}
.before-after .after-img { clip-path: inset(0 0 0 50%); }
.before-after-handle {
  position: absolute; top: 0; bottom: 0; left: 50%;
  width: 3px; background: white; z-index: 2;
  transform: translateX(-50%);
}
.before-after-handle::after {
  content: ''; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 36px; height: 36px; background: white;
  border-radius: 50%; box-shadow: var(--shadow-md);
}
.before-after-label {
  position: absolute; bottom: 12px;
  padding: 4px 12px; background: rgba(0,0,0,.5);
  color: white; font-size: 0.7rem; border-radius: var(--r-full);
  text-transform: uppercase; letter-spacing: 0.1em; z-index: 3;
}
.before-after-label.before { left: 12px; }
.before-after-label.after { right: 12px; }

/* ── 18b. Before/After Preview Section (Homepage) ── */
.before-after-preview { background: var(--linen); }
.before-after-preview-header { text-align: center; margin-bottom: 3rem; }
.before-after-preview-header .section-label::before { display: none; }
.before-after-preview-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
}
.before-after-preview-item { }
.before-after-preview-desc {
  font-size: 0.82rem; color: var(--text-secondary);
  text-align: center; margin-top: 0.75rem;
}


/* ── 19. Services List Page ── */
.services-list-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
}
.services-list-card {
  background: var(--white); border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}
.services-list-card:hover {
  transform: translateY(-6px); box-shadow: var(--shadow-lg);
}
.services-list-card-img {
  aspect-ratio: 16/10; overflow: hidden; background: var(--sage-pale);
}
.services-list-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform var(--transition-slow);
}
.services-list-card:hover .services-list-card-img img { transform: scale(1.05); }
.services-list-card-body { padding: 1.5rem; }
.services-list-card-price {
  display: inline-block; padding: 4px 12px;
  background: var(--sage-pale); color: var(--sage-dark);
  font-size: 0.78rem; border-radius: var(--r-full);
  margin-bottom: 0.75rem; font-weight: 500;
}
.filter-bar {
  display: flex; gap: 0.5rem; flex-wrap: wrap;
  margin-bottom: 2.5rem; justify-content: center;
}
.filter-btn {
  padding: 8px 20px; border: 1px solid var(--linen-dark);
  border-radius: var(--r-full); background: none;
  font-family: var(--font-body); font-size: 0.82rem;
  color: var(--text-secondary); cursor: pointer;
  transition: all var(--transition-fast);
}
.filter-btn.active, .filter-btn:hover {
  background: var(--sage); color: white; border-color: var(--sage);
}
.services-list-section { }
.services-list-card-name { font-family: var(--font-display); font-size: 1.1rem; margin-bottom: 0.25rem; }
.services-list-card-desc { font-size: 0.85rem; color: var(--text-secondary); margin-bottom: 0.75rem; line-height: 1.6; }
.services-list-card-link {
  display: inline-flex; align-items: center; gap: 0.35rem;
  font-size: 0.82rem; color: var(--sage); font-weight: 500;
  margin-top: 0.5rem; transition: gap var(--transition-fast);
}
.services-list-card:hover .services-list-card-link { gap: 0.6rem; }
.services-list-card-icon {
  aspect-ratio: 16/10; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--sage-pale), var(--sand-pale));
  color: var(--sage-dark);
}
.services-list-cta { text-align: center; margin-top: 3rem; padding-top: 2.5rem; border-top: 1px solid var(--linen-dark); }


/* ── 20. Pricing Page ── */
.pricing-section { margin-bottom: 2rem; }
.pricing-section-title {
  font-family: var(--font-display); font-size: 1.3rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--linen-dark);
  margin-bottom: 1rem; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
}
.pricing-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0.75rem 0; border-bottom: 1px solid var(--linen);
}
.pricing-name { font-weight: 500; }
.pricing-desc {
  font-size: 0.82rem; color: var(--text-secondary); margin-top: 0.25rem;
}
.pricing-price {
  font-family: var(--font-display); font-size: 1.1rem;
  color: var(--sage-dark); white-space: nowrap;
}
.pricing-packages {
  background: var(--sage-pale); border-radius: var(--r-lg);
  padding: 2rem; margin-top: 2rem;
}
.pricing-savings {
  display: inline-block; background: var(--sage); color: white;
  padding: 2px 10px; border-radius: var(--r-full);
  font-size: 0.72rem; font-weight: 500;
}
.pricing-category { margin-bottom: 2.5rem; }
.pricing-category-title {
  font-family: var(--font-display); font-size: 1.3rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--linen-dark);
  margin-bottom: 1rem;
}
.pricing-list { display: flex; flex-direction: column; }
.pricing-item {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1rem 0; border-bottom: 1px solid var(--linen);
  gap: 1.5rem;
}
.pricing-item-info { display: flex; align-items: center; gap: 1rem; flex: 1; min-width: 0; }
.pricing-item-icon {
  width: 36px; height: 36px; border-radius: var(--r-md);
  background: var(--sage-pale); color: var(--sage-dark);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.pricing-item-name { font-weight: 500; font-size: 0.95rem; }
.pricing-item-name a { color: var(--text-primary); transition: color var(--transition-fast); }
.pricing-item-name a:hover { color: var(--sage); }
.pricing-item-desc { font-size: 0.82rem; color: var(--text-secondary); margin-top: 0.15rem; }
.pricing-item-price { text-align: right; white-space: nowrap; flex-shrink: 0; }
.pricing-price-value {
  font-family: var(--font-display); font-size: 1.1rem;
  color: var(--sage-dark); font-weight: 500;
}
.pricing-price-ask { font-size: 0.85rem; color: var(--text-secondary); font-family: var(--font-body); }
.pricing-packages-header { text-align: center; margin-bottom: 2.5rem; }
.pricing-footer { text-align: center; margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--linen-dark); }
.pricing-disclaimer { font-size: 0.85rem; color: var(--text-secondary); margin-bottom: 1.5rem; }


/* ── 21. Gallery Page ── */
.gallery-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem;
}
.gallery-item {
  border-radius: var(--r-lg); overflow: hidden; cursor: pointer;
}
.gallery-item-label {
  padding: 0.75rem 1rem; background: var(--white);
  font-size: 0.82rem; color: var(--text-secondary);
}
.lightbox {
  position: fixed; inset: 0; z-index: 9995;
  background: rgba(0,0,0,.9);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: all 0.3s;
}
.lightbox.active { opacity: 1; visibility: visible; }
.lightbox-close {
  position: absolute; top: 1.5rem; right: 1.5rem;
  width: 44px; height: 44px;
  background: rgba(255,255,255,.1); border: none; border-radius: 50%;
  color: white; font-size: 1.5rem; cursor: pointer;
}
.lightbox-content { max-width: 90vw; max-height: 85vh; }
.lightbox-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px;
  background: rgba(255,255,255,.1); border: none; border-radius: 50%;
  color: white; font-size: 1.2rem; cursor: pointer;
}
.lightbox-prev { left: 1rem; }
.lightbox-next { right: 1rem; }
.gallery-section { }
.gallery-item-desc { font-size: 0.82rem; color: var(--text-secondary); text-align: center; margin-top: 0.75rem; }
.gallery-empty { padding: 6rem 2rem; text-align: center; }
.gallery-empty-content { max-width: 500px; margin: 0 auto; }
.gallery-empty-icon { color: var(--text-light); margin-bottom: 1.5rem; }


/* ── 22. Bridal Page ── */
.bridal-hero {
  background: linear-gradient(135deg, var(--blush-pale), var(--sand-pale), var(--ivory));
  padding: 10rem 0 5rem; text-align: center;
}
.bridal-features { }
.bridal-feature {
  display: flex; align-items: center; gap: 0.75rem; padding: 0.6rem 0;
}
.bridal-feature-check {
  width: 22px; height: 22px; background: var(--sage-pale);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--sage-dark); flex-shrink: 0;
}
.bridal-timeline {
  display: flex; gap: 2rem; justify-content: center;
  margin: 3rem 0; flex-wrap: wrap;
}
.bridal-timeline-item {
  text-align: center; flex: 1; min-width: 180px; position: relative;
}
.bridal-timeline-period {
  font-family: var(--font-display); font-size: 1.1rem;
  color: var(--sage-dark); margin-bottom: 0.5rem;
}
.bridal-timeline-title {
  font-size: 0.88rem; color: var(--text-secondary);
}
.bridal-timeline-item::after {
  content: '\2192'; position: absolute; right: -1.25rem; top: 0.5rem;
  color: var(--sand); font-size: 1.2rem;
}
.bridal-timeline-item:last-child::after { display: none; }
.bridal-discount { background: var(--blush-pale); }
.bridal-discount-card {
  display: flex; align-items: center; gap: 1.5rem; padding: 2rem;
  background: var(--white); border-radius: var(--r-lg);
}
.bridal-discount-icon { color: var(--blush); flex-shrink: 0; }
.bridal-discount-content { flex: 1; }
.bridal-discount-title { font-family: var(--font-display); font-size: 1.1rem; margin-bottom: 0.25rem; }
.bridal-discount-desc { font-size: 0.85rem; color: var(--text-secondary); }
.bridal-hero-shapes { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.bridal-shape {
  position: absolute; border-radius: 50%;
  background: rgba(139,158,124,.08);
  animation: breathe 6s ease-in-out infinite;
}
.bridal-shape-1 { width: 300px; height: 300px; top: -80px; right: -60px; }
.bridal-shape-2 { width: 200px; height: 200px; bottom: -40px; left: -40px; animation-delay: 2s; }
.bridal-shape-3 { width: 150px; height: 150px; top: 40%; left: 20%; animation-delay: 4s; }
.bridal-hero { position: relative; overflow: hidden; }
.bridal-hero-content { max-width: 650px; margin: 0 auto; }
.bridal-hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: 1.5rem; }
.bridal-features-header { text-align: center; margin-bottom: 2.5rem; }
.bridal-features-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem;
  max-width: 700px; margin: 0 auto;
}
.bridal-feature-item {
  display: flex; align-items: center; gap: 0.75rem; padding: 0.75rem 1rem;
  background: var(--sage-pale); border-radius: var(--r-md);
}
.bridal-check {
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--sage); color: white;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.bridal-check svg { width: 14px; height: 14px; }
.bridal-feature-text { font-size: 0.88rem; color: var(--text-primary); }
.bridal-timeline-section { background: var(--linen); }
.bridal-timeline-header { text-align: center; margin-bottom: 2.5rem; }
.bridal-timeline-marker {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--sage); color: white;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 0.75rem; font-family: var(--font-display);
  font-size: 1.1rem; font-weight: 600;
}
.bridal-timeline-number { }
.bridal-timeline-content { }
.bridal-gallery { background: var(--ivory); }
.bridal-gallery-header { text-align: center; margin-bottom: 2.5rem; }
.bridal-gallery-cta { }


/* ── 23. Blog ── */
.blog-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem;
}
.blog-card {
  background: var(--white); border-radius: var(--r-lg); overflow: hidden;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}
.blog-card:hover {
  transform: translateY(-4px); box-shadow: var(--shadow-lg);
}
.blog-card-img { aspect-ratio: 16/9; overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-card-body { padding: 1.5rem; }
.blog-card-meta {
  display: flex; gap: 1rem; font-size: 0.78rem;
  color: var(--text-light); margin-bottom: 0.5rem;
}
.blog-card-category {
  display: inline-block; padding: 2px 10px;
  background: var(--sage-pale); color: var(--sage-dark);
  border-radius: var(--r-full); font-size: 0.72rem; font-weight: 500;
}
.blog-card-title {
  font-family: var(--font-display); font-size: 1.2rem; margin: 0.5rem 0;
}
.blog-card-excerpt {
  font-size: 0.88rem; color: var(--text-secondary); line-height: 1.6;
}
.blog-detail-hero {
  aspect-ratio: 21/9; overflow: hidden; position: relative;
}
.blog-detail-hero img { width: 100%; height: 100%; object-fit: cover; }
.blog-detail-hero::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,.4));
}
.blog-detail-meta {
  display: flex; gap: 1rem; align-items: center;
  font-size: 0.82rem; color: var(--text-secondary);
  margin-bottom: 2rem; padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--linen-dark);
}
.blog-detail-content { max-width: 1200px; margin: 0 auto; }
.blog-detail-content p { margin-bottom: 1.5rem; line-height: 1.8; }
.blog-share { display: flex; gap: 0.75rem; margin: 2rem 0; }
.blog-share a {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%; background: var(--linen); color: var(--text-secondary);
  transition: all var(--transition-fast);
}
.blog-share a:hover { background: var(--sage); color: white; }
.blog-search {
  width: 100%; padding: 12px 20px;
  border: 1px solid var(--linen-dark); border-radius: var(--r-full);
  font-family: var(--font-body); font-size: 0.88rem;
  margin-bottom: 2rem; background: var(--white);
  outline: none; transition: border-color var(--transition-fast);
}
.blog-search:focus { border-color: var(--sage); }
.blog-sidebar { position: sticky; top: 100px; }
.blog-sidebar-section { margin-bottom: 2rem; }
.blog-sidebar-title {
  font-family: var(--font-display); font-size: 1.1rem;
  margin-bottom: 1rem; padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--linen-dark);
}

/* Blog Detail Page */
.blog-detail-hero { position: relative; min-height: 360px; display: flex; align-items: flex-end; }
.blog-detail-hero-img { position: absolute; inset: 0; }
.blog-detail-hero-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-detail-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, transparent 30%, rgba(0,0,0,.6)); }
.blog-detail-hero-placeholder { background: linear-gradient(135deg, var(--sage-pale), var(--sand-pale)); }
.blog-detail-hero-content { position: relative; z-index: 1; padding: 2rem 0; }
.blog-detail-hero .breadcrumb a, .blog-detail-hero .breadcrumb, .blog-detail-hero .bc-sep { color: rgba(255,255,255,.7); }
.blog-detail-hero .breadcrumb a:hover { color: white; }
.blog-detail-category {
  display: inline-block; padding: 4px 14px;
  background: rgba(255,255,255,.15); color: white;
  border-radius: var(--r-full); font-size: 0.75rem; font-weight: 500;
  backdrop-filter: blur(4px); margin-bottom: 0.75rem;
}
.blog-detail-title {
  font-family: var(--font-display); font-size: clamp(1.5rem, 3vw, 2.4rem);
  color: white; font-weight: 500; margin-bottom: 0.5rem;
}
.blog-detail-author { font-weight: 500; }
.blog-detail-sep { opacity: 0.4; }
.blog-detail-read { }
.blog-detail-hero .blog-detail-meta { color: rgba(255,255,255,.8); border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.blog-detail-grid {
  display: grid; grid-template-columns: 1fr 320px; gap: 3rem; align-items: start;
}
.blog-detail-article { }
.blog-paragraph { margin-bottom: 1.5rem; line-height: 1.8; color: var(--text-secondary); }
.blog-share { align-items: center; }
.blog-share-label { font-size: 0.85rem; color: var(--text-secondary); font-weight: 500; white-space: nowrap; }
.blog-share-buttons { display: flex; gap: 0.5rem; }
.blog-share-btn {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%; background: var(--linen); color: var(--text-secondary);
  transition: all var(--transition-fast);
}
.blog-share-btn:hover { color: white; }
.blog-share-whatsapp:hover { background: #25D366; }
.blog-share-facebook:hover { background: #1877F2; }
.blog-share-twitter:hover { background: #000; }
.blog-detail-sidebar { position: sticky; top: 6rem; }
.blog-author-card {
  background: var(--linen); border-radius: var(--r-lg); padding: 2rem;
  text-align: center; margin-bottom: 1.5rem;
}
.blog-author-avatar {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--sage); color: white;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 1.1rem; font-weight: 500;
  margin: 0 auto 1rem;
}
.blog-author-name { font-family: var(--font-display); font-size: 1.1rem; margin-bottom: 0.25rem; }
.blog-author-title { font-size: 0.82rem; color: var(--text-secondary); margin-bottom: 0.75rem; }
.blog-author-bio { font-size: 0.82rem; color: var(--text-secondary); line-height: 1.6; }
.blog-related-service { margin-bottom: 1.5rem; }
.blog-related-service-title {
  font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-light); margin-bottom: 0.75rem;
}
.blog-related-service-card {
  display: flex; align-items: center; gap: 1rem; padding: 1.25rem;
  background: var(--white); border: 1px solid var(--linen-dark);
  border-radius: var(--r-lg); transition: all var(--transition-fast);
}
.blog-related-service-card:hover { border-color: var(--sage); background: var(--sage-pale); }
.blog-related-service-icon {
  width: 44px; height: 44px; border-radius: var(--r-md);
  background: var(--sage-pale); color: var(--sage-dark);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.blog-related-service-card strong { display: block; font-size: 0.9rem; margin-bottom: 0.15rem; }
.blog-related-service-card p { font-size: 0.78rem; color: var(--text-secondary); margin: 0; }
.blog-related-service-arrow { margin-left: auto; color: var(--text-light); flex-shrink: 0; }
.blog-related { background: var(--linen); }
.blog-related-header { text-align: center; margin-bottom: 2.5rem; }
.blog-back { }
.blog-card-read { font-size: 0.78rem; }
.blog-card-link {
  display: inline-flex; align-items: center; gap: 0.35rem;
  font-size: 0.82rem; color: var(--sage); font-weight: 500;
  margin-top: 0.75rem; transition: gap var(--transition-fast);
}
.blog-card:hover .blog-card-link { gap: 0.6rem; }
.blog-card-img-placeholder {
  background: var(--linen); display: flex; align-items: center; justify-content: center;
  color: var(--text-light); aspect-ratio: 16/9;
}

/* Blog List Page */
.blog-section { }
.blog-search-bar { position: relative; margin-bottom: 2.5rem; }
.blog-search-icon {
  position: absolute; right: 16px; top: 50%; transform: translateY(-50%);
  color: var(--text-light); pointer-events: none;
}
.blog-no-results { padding: 2rem 0; }
.blog-empty { padding: 6rem 2rem; text-align: center; }
.blog-empty-content { max-width: 500px; margin: 0 auto; }
.blog-empty-icon { color: var(--text-light); margin-bottom: 1.5rem; }


/* ── 24. Booking Modal ── */
.booking-modal {
  position: fixed; inset: 0; z-index: 9996;
  background: rgba(0,0,0,.5);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: all 0.3s;
  backdrop-filter: blur(4px);
}
.booking-modal.active { opacity: 1; visibility: visible; }
.booking-modal-content {
  background: var(--white); border-radius: var(--r-xl);
  padding: 2.5rem; max-width: 400px; width: 90%;
  text-align: center; position: relative;
}
.booking-modal-title {
  font-family: var(--font-display); font-size: 1.4rem;
  margin-bottom: 0.5rem;
}
.booking-modal-options {
  display: flex; flex-direction: column; gap: 0.75rem; margin-top: 1.5rem;
}
.booking-option {
  display: flex; align-items: center; gap: 1rem;
  padding: 1rem 1.25rem;
  border: 1px solid var(--linen-dark); border-radius: var(--r-lg);
  text-decoration: none; color: var(--text-primary);
  transition: all var(--transition-fast);
}
.booking-option:hover {
  border-color: var(--sage); background: var(--sage-pale);
}
.booking-option-icon {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.booking-option-icon.whatsapp { background: #25D366; color: white; }
.booking-option-icon.online { background: var(--sage); color: white; }
.booking-option-icon.phone { background: var(--sand); color: white; }
.booking-modal-close {
  position: absolute; top: 1rem; right: 1rem;
  background: none; border: none;
  font-size: 1.5rem; color: var(--text-light); cursor: pointer;
}
.booking-modal-subtitle { font-size: 0.88rem; color: var(--text-secondary); margin-bottom: 0.5rem; }


/* ── 25. Instagram Feed ── */
.instagram-section { padding: 4rem 0; }
.instagram-header { text-align: center; margin-bottom: 2rem; }
.instagram-header .section-label::before { display: none; }
.instagram-feed {
  display: flex; gap: 1rem; overflow-x: auto;
  padding-bottom: 1rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.instagram-item {
  flex: 0 0 200px; aspect-ratio: 1;
  border-radius: var(--r-lg); overflow: hidden;
  position: relative; scroll-snap-align: start;
}
.instagram-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform var(--transition-slow);
}
.instagram-item:hover img { transform: scale(1.08); }
.instagram-item-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,.3); opacity: 0;
  transition: opacity var(--transition-fast);
  display: flex; align-items: center; justify-content: center;
  color: white;
}
.instagram-item:hover .instagram-item-overlay { opacity: 1; }


/* ── 26. Google Reviews Badge ── */
.google-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 8px 16px; background: var(--white);
  border-radius: var(--r-full); box-shadow: var(--shadow-sm);
  font-size: 0.82rem;
}
.google-badge-stars { color: #FBBC04; }
.google-badge-score { font-weight: 600; }
.google-badge-count { color: var(--text-light); }


/* ── 27. Page Hero (reusable for inner pages) ── */
.page-hero { padding: 10rem 0 3rem; background: var(--linen); }
.page-hero .breadcrumb { margin-bottom: 1.5rem; }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 500; letter-spacing: var(--letter-tight);
}
.page-hero h1 em { color: var(--sage-dark); font-style: italic; }
.page-hero p {
  color: var(--text-secondary); margin-top: 0.75rem; max-width: 600px;
}
.page-hero-404 { text-align: center; min-height: 60vh; display: flex; align-items: center; }
.error-code {
  font-family: var(--font-display); font-size: clamp(5rem, 15vw, 10rem);
  font-weight: 700; color: var(--sage-pale);
  line-height: 1; margin-bottom: 1rem;
}
.error-suggestions { }


/* ── 28. Campaign / Student Section ── */
.campaign-banner {
  background: linear-gradient(135deg, var(--sage-pale), var(--sand-pale));
  border-radius: var(--r-lg); padding: 2rem;
  text-align: center; margin: 2rem 0;
}
.campaign-badge {
  display: inline-block; padding: 4px 14px;
  background: var(--sage); color: white;
  border-radius: var(--r-full);
  font-size: 0.72rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}


/* ══════════════════════════════════════
   SERVICE DETAIL PAGE
   ══════════════════════════════════════ */

.service-hero { background: var(--linen); padding: 7.5rem 2.5rem 4rem; }
.breadcrumb {
  font-size: 0.78rem; color: var(--text-light);
  margin-bottom: 2.5rem;
  display: flex; align-items: center; gap: 0.45rem;
}
.breadcrumb a { color: var(--text-secondary); transition: color var(--transition-fast); }
.breadcrumb a:hover { color: var(--sage); }
.bc-sep { opacity: 0.35; }
.service-hero-grid {
  display: grid; grid-template-columns: 1.2fr 1fr;
  gap: 4rem; align-items: center;
}
.service-hero-img {
  aspect-ratio: 4/3; border-radius: var(--r-xl);
  overflow: hidden;
  background: linear-gradient(135deg, var(--sage-pale), var(--sand-pale));
}
.service-hero-img img { width: 100%; height: 100%; object-fit: cover; }
.service-hero-placeholder {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 1rem; height: 100%;
  color: var(--text-light);
  font-family: var(--font-display); font-style: italic;
}
.service-hero-icon { color: var(--sage); }
.service-content { background: var(--ivory); padding: 4rem 2.5rem; }
.service-content-grid {
  display: grid; grid-template-columns: 1fr 360px;
  gap: 3.5rem; align-items: start;
}
.service-main { }
.service-paragraph {
  font-size: 0.95rem; color: var(--text-secondary);
  line-height: 1.85; margin-bottom: 1.35rem;
}
.service-highlights {
  display: flex; flex-direction: column; gap: 1rem; margin-top: 2.5rem;
}
.service-hl {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1.35rem; background: var(--linen);
  border-radius: var(--r-lg);
  transition: all var(--transition-base);
}
.service-hl:hover {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transform: translateX(4px);
}
.service-hl-icon {
  width: 40px; height: 40px; border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.service-hl-icon.sage { background: var(--sage-pale); color: var(--sage-dark); }
.service-hl-icon.blush { background: var(--blush-pale); color: var(--blush); }
.service-hl-icon.sand { background: var(--sand-pale); color: var(--sand); }
.service-hl div strong {
  display: block; font-size: 0.85rem; font-weight: 500;
  color: var(--charcoal); margin-bottom: 0.15rem;
}
.service-hl div span { font-size: 0.78rem; color: var(--text-secondary); }

/* Service Price Badge */
.service-price-badge {
  display: inline-block;
  background: var(--sage-pale);
  color: var(--sage-dark);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  padding: 0.5rem 1.25rem;
  border-radius: var(--r-full);
  margin-top: 1rem;
}

/* Service Before/After (in-page) */
.service-before-after {
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--linen-dark);
}

/* WhatsApp button */
.btn-wa {
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  width: 100%;
  padding: 0.75rem 1.5rem;
  background: #25d366;
  color: #fff;
  border-radius: var(--r-full);
  font-size: 0.85rem; font-weight: 500;
  transition: all var(--transition-base);
  text-decoration: none;
}
.btn-wa:hover { background: #1ebe5d; color: #fff; transform: translateY(-1px); }

/* Sidebar Booking Options */
.sidebar-booking-options {
  display: flex; flex-direction: column; gap: 0.65rem;
}

/* Service Sidebar */
.service-sidebar { }
.sidebar-sticky {
  position: sticky;
  top: 6rem;
}
.sidebar-card {
  background: var(--white);
  border: 1px solid var(--linen-dark);
  border-radius: var(--r-xl);
  padding: 2rem; margin-bottom: 1.25rem;
}
.sidebar-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem; font-weight: 500;
  margin-bottom: 0.5rem;
}
.sidebar-card p {
  font-size: 0.85rem; color: var(--text-secondary);
  margin-bottom: 1.25rem; line-height: 1.65;
}
.sidebar-contact {
  margin-top: 1.25rem;
  display: flex; flex-direction: column; gap: 0.85rem;
  border-top: 1px solid var(--linen-dark); padding-top: 1.25rem;
}
.sidebar-contact div { font-size: 0.82rem; }
.sidebar-contact strong {
  display: block; font-size: 0.65rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--sage);
  margin-bottom: 0.15rem;
}
.sidebar-contact a { color: var(--charcoal); transition: color var(--transition-fast); }
.sidebar-contact a:hover { color: var(--sage); }
.sidebar-contact span { color: var(--text-secondary); }
.sidebar-service {
  display: flex; align-items: center; gap: 0.65rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--linen-dark);
  font-size: 0.85rem; color: var(--text-primary);
  transition: all var(--transition-base);
}
.sidebar-service:last-child { border-bottom: none; }
.sidebar-service:hover {
  color: var(--sage-dark); transform: translateX(4px);
}
.sidebar-service-icon {
  width: 30px; height: 30px; border-radius: var(--r-sm);
  background: var(--sage-pale);
  display: flex; align-items: center; justify-content: center;
  color: var(--sage-dark); flex-shrink: 0;
}


/* ══════════════════════════════════════
   FOOTER
   ══════════════════════════════════════ */

footer {
  background: var(--charcoal); color: rgba(255,255,255,0.45);
  padding: 4rem 3rem 2rem;
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-top {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 2.5rem; padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-brand { max-width: 300px; }
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.35rem; font-weight: 500;
  color: var(--white); margin-bottom: 0.65rem;
}
.footer-tagline { font-size: 0.8rem; line-height: 1.65; }
.footer-nav h5 {
  font-size: 0.65rem; letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25); margin-bottom: 0.85rem;
}
.footer-nav a {
  display: block; font-size: 0.82rem;
  color: rgba(255,255,255,0.45); padding: 0.25rem 0;
  transition: all var(--transition-fast);
}
.footer-nav a:hover {
  color: var(--sage-light); transform: translateX(4px);
}

/* Footer accordion toggle for mobile */
.footer-accordion-toggle {
  display: none;
  width: 100%; background: none; border: none;
  padding: 0; cursor: pointer;
  color: rgba(255,255,255,0.25);
  font-size: 0.65rem; letter-spacing: 0.14em; text-transform: uppercase;
  justify-content: space-between; align-items: center;
  margin-bottom: 0.85rem;
}

/* Footer legal links */
.footer-legal {
  display: flex; gap: 1.5rem; padding-top: 1rem;
}
.footer-legal a {
  font-size: 0.7rem; color: rgba(255,255,255,0.35);
  transition: color var(--transition-fast);
}
.footer-legal a:hover { color: var(--sage-light); }

.footer-bottom {
  display: flex; justify-content: space-between;
  align-items: center; padding-top: 1.5rem;
  flex-wrap: wrap; gap: 0.5rem;
}
.footer-copy { font-size: 0.72rem; }
.footer-feyz { font-size: 0.72rem; }
.footer-feyz a { color: var(--sage-light); transition: opacity var(--transition-fast); }
.footer-feyz a:hover { opacity: 0.7; }
.footer-address { font-style: normal; font-size: 0.82rem; line-height: 1.65; }
.footer-contact-address { font-style: normal; }
.footer-hours { font-size: 0.82rem; margin-top: 0.5rem; }


/* ══════════════════════════════════════
   FLOATING ELEMENTS
   ══════════════════════════════════════ */

/* ── WhatsApp Float ── */
.whatsapp-float {
  position: fixed; bottom: 1.5rem; right: 1.5rem;
  width: 56px; height: 56px;
  background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  z-index: 99;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-wa);
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,0.4);
}
.whatsapp-float svg { width: 28px; height: 28px; fill: white; }
.whatsapp-pulse {
  position: fixed; bottom: 1.5rem; right: 1.5rem;
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(37,211,102,0.15); z-index: 98;
  animation: wa-pulse 2s ease-in-out infinite;
  pointer-events: none;
}

/* ── Back to Top ── */
.back-top {
  position: fixed; bottom: 1.5rem; left: 1.5rem;
  width: 42px; height: 42px;
  background: var(--white);
  border: 1px solid var(--linen-dark); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  z-index: 99; cursor: pointer;
  transition: all var(--transition-base);
  opacity: 0; transform: translateY(10px); pointer-events: none;
}
.back-top.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.back-top:hover {
  border-color: var(--sage); background: var(--sage-pale);
  transform: translateY(-2px);
}
.back-top svg { width: 18px; height: 18px; color: var(--charcoal); }

/* ── Cookie Bar ── */
.cookie-bar {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--charcoal); color: rgba(255,255,255,0.7);
  padding: 1rem 2rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; z-index: 101; font-size: 0.8rem;
}
.cookie-bar p { margin: 0; line-height: 1.5; }
.cookie-bar a { color: var(--sage-light); text-decoration: underline; }
.cookie-bar button {
  background: var(--sage); color: var(--white);
  border: none; padding: 0.5rem 1.5rem;
  border-radius: var(--r-sm);
  font-size: 0.75rem; font-weight: 500;
  white-space: nowrap;
  transition: background var(--transition-fast);
}
.cookie-bar button:hover { background: var(--sage-dark); }


/* ══════════════════════════════════════
   KEYFRAMES
   ══════════════════════════════════════ */

@keyframes slideUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes floatGentle {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}
@keyframes breathe {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.03); opacity: 0.6; }
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.15); opacity: 0.4; }
}
@keyframes wa-pulse {
  0% { transform: scale(1); opacity: 0.4; }
  50% { transform: scale(1.5); opacity: 0; }
  100% { transform: scale(1); opacity: 0; }
}
@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}


/* ══════════════════════════════════════
   RESPONSIVE — Tablet (1024px)
   ══════════════════════════════════════ */

@media (max-width: 1024px) {
  .nav { padding: 1rem 2rem; }
  .nav.scrolled { padding: 0.7rem 2rem; }
  .hero-inner { padding: 7rem 2rem 5rem; gap: 3rem; }
  .about-grid { gap: 3.5rem; }
  section { padding: 5rem 2rem; }
  .services-grid { gap: 1rem; }

  /* New components */
  .bridal-hero { padding: 8rem 2rem 4rem; }
  .page-hero { padding: 8rem 2rem 2.5rem; }
  .gallery-grid { gap: 1rem; }
  .blog-grid { gap: 1.5rem; }
}


/* ══════════════════════════════════════
   RESPONSIVE — Tablet Small (900px)
   ══════════════════════════════════════ */

@media (max-width: 900px) {
  .nav { padding: 1rem 1.5rem; }
  .nav.scrolled { padding: 0.7rem 1.5rem; }
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .hero-inner {
    grid-template-columns: 1fr;
    padding: 7rem 1.5rem 4rem;
    text-align: center;
  }
  .hero-text { max-width: 100%; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-visual { max-width: 320px; margin: 2rem auto 0; }

  .services-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-visual { max-width: 380px; margin: 0 auto; }
  .pkg-grid { grid-template-columns: 1fr; max-width: 480px; }
  .testi-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .numbers-grid { grid-template-columns: repeat(2, 1fr); }

  .service-hero-grid { grid-template-columns: 1fr; }
  .service-content-grid { grid-template-columns: 1fr; }
  .service-hero { padding: 6rem 1.25rem 3rem; }

  section { padding: 4rem 1.25rem; }
  footer { padding: 3rem 1.5rem 1.5rem; }

  /* New components at 900px */
  .services-list-grid { grid-template-columns: repeat(2, 1fr); }
  .before-after-preview-grid { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .bridal-timeline { flex-direction: column; align-items: center; gap: 1.5rem; }
  .bridal-timeline-item::after { display: none; }
  .bridal-hero { padding: 7rem 1.5rem 3rem; }
  .page-hero { padding: 7rem 1.5rem 2rem; }
  .blog-detail-grid { grid-template-columns: 1fr; }
  .blog-detail-sidebar { position: static; }
}


/* ══════════════════════════════════════
   RESPONSIVE — Mobile (600px)
   ══════════════════════════════════════ */

@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .about-features { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .numbers-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
  .number-val { font-size: 2rem; }
  .hero h1,
  .hero-text h1 { font-size: 2.2rem; }
  .hero-sub { font-size: 0.95rem; }
  .btn-primary, .btn-ghost { width: 100%; justify-content: center; }
  .hero-actions { flex-direction: column; width: 100%; }
  .cookie-bar {
    flex-direction: column; text-align: center;
    gap: 0.75rem; padding: 1rem 1.25rem;
  }
  .pkg-card { padding: 2rem 1.5rem; }
  .testi-card { padding: 1.5rem 1.25rem; }
  .contact-card { padding: 1rem 1.25rem; }
  .sidebar-card { padding: 1.5rem; }
  .service-card { padding: 1.75rem 1.5rem; }

  /* New components at 600px */
  .services-list-grid { grid-template-columns: 1fr; }
  .before-after-preview-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .pricing-row { flex-direction: column; align-items: flex-start; gap: 0.25rem; }
  .pricing-price { align-self: flex-end; }
  .pricing-item { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
  .pricing-item-price { align-self: flex-end; }
  .bridal-features-grid { grid-template-columns: 1fr; }
  .bridal-discount-card { flex-direction: column; text-align: center; }
  .bridal-hero { padding: 6rem 1rem 2.5rem; }
  .page-hero { padding: 6rem 1rem 2rem; }
  .blog-card-body { padding: 1.25rem; }
  .booking-modal-content { padding: 2rem 1.5rem; }
  .instagram-item { flex: 0 0 160px; }

  /* Footer accordion */
  .footer-accordion-toggle { display: flex; }
  .footer-nav h5 { display: none; }
  .footer-nav ul,
  .footer-nav .footer-nav-links {
    max-height: 0; overflow: hidden;
    transition: max-height 0.3s var(--ease);
  }
  .footer-nav.open ul,
  .footer-nav.open .footer-nav-links { max-height: 300px; }

  .filter-bar { gap: 0.35rem; }
  .filter-btn { padding: 6px 14px; font-size: 0.78rem; }
}


/* ══════════════════════════════════════
   RESPONSIVE — Small Mobile (380px)
   ══════════════════════════════════════ */

@media (max-width: 380px) {
  .hero-inner { padding: 6.5rem 1rem 3rem; }
  section { padding: 3.5rem 1rem; }
  .nav { padding: 0.85rem 1rem; }
  .nav-logo { font-size: 1.2rem; }

  /* New components at 380px */
  .bridal-hero { padding: 5.5rem 0.75rem 2rem; }
  .page-hero { padding: 5.5rem 0.75rem 1.5rem; }
  .pricing-packages { padding: 1.25rem; }
  .booking-modal-content { padding: 1.5rem 1rem; }
  .blog-detail-content p { font-size: 0.92rem; }
  .instagram-item { flex: 0 0 140px; }
}


/* ══════════════════════════════════════
   ACCESSIBILITY — Reduced Motion
   ══════════════════════════════════════ */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .marquee-inner { animation: none; }
  html { scroll-behavior: auto; }
}
