/* =============================================
   LENS HAIR GLOW — Shared Stylesheet
   ============================================= */

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Nunito:wght@300;400;500;600&display=swap');

/* --- CSS Variables --- */
:root {
  --blush:       #F9C5D1;
  --blush-light: #FDE8EE;
  --lavender:    #D4B8E0;
  --lav-light:   #EFE6F8;
  --cream:       #FFF8F0;
  --rose-gold:   #C9956C;
  --rose-dark:   #A8704E;
  --text-dark:   #3B2A35;
  --text-mid:    #6B5260;
  --text-light:  #9E8896;
  --white:       #FFFFFF;
  --shadow:      0 4px 24px rgba(59, 42, 53, 0.10);
  --shadow-lg:   0 8px 40px rgba(59, 42, 53, 0.15);
  --radius:      14px;
  --radius-sm:   8px;
  --transition:  all 0.3s ease;
}

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

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

body {
  font-family: 'Nunito', sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', serif;
  line-height: 1.25;
  color: var(--text-dark);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* --- Utility Classes --- */
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 90px 0; }
.section-sm { padding: 60px 0; }

.section-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--rose-gold);
  margin-bottom: 10px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 560px;
  margin-bottom: 48px;
}

.text-center { text-align: center; }
.text-center .section-subtitle { margin-left: auto; margin-right: auto; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: 'Nunito', sans-serif;
  font-size: .95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}

.btn-primary {
  background: var(--rose-gold);
  color: var(--white);
  box-shadow: 0 4px 18px rgba(201,149,108,.35);
}
.btn-primary:hover {
  background: var(--rose-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201,149,108,.45);
}

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

.btn-ghost {
  background: rgba(255,255,255,.18);
  color: var(--white);
  border: 2px solid rgba(255,255,255,.5);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,.3);
  transform: translateY(-2px);
}

/* --- Divider --- */
.divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--blush), var(--rose-gold));
  border-radius: 4px;
  margin: 0 auto 24px;
}
.divider-left { margin: 0 0 24px; }

/* =============================================
   NAVIGATION
   ============================================= */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 248, 240, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(249,197,209,.4);
  box-shadow: 0 2px 16px rgba(59,42,53,.06);
  transition: var(--transition);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: 1180px;
  margin: 0 auto;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo-mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blush), var(--rose-gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--white);
  font-style: italic;
  flex-shrink: 0;
}

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

.nav-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--text-dark);
  font-weight: 700;
}
.nav-logo-text span { color: var(--rose-gold); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  font-size: .9rem;
  font-weight: 600;
  color: var(--text-mid);
  padding: 8px 14px;
  border-radius: 50px;
  transition: var(--transition);
  position: relative;
}
.nav-links a:hover { color: var(--rose-gold); background: var(--blush-light); }
.nav-links a.active { color: var(--rose-gold); background: var(--blush-light); }

.nav-book {
  background: var(--rose-gold);
  color: var(--white) !important;
  padding: 9px 20px !important;
  box-shadow: 0 3px 12px rgba(201,149,108,.3);
}
.nav-book:hover { background: var(--rose-dark) !important; color: var(--white) !important; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--text-dark);
  border-radius: 4px;
  transition: var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Mobile nav */
.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 12px 24px 20px;
  background: rgba(255,248,240,.98);
  border-top: 1px solid var(--blush-light);
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-size: .95rem;
  font-weight: 600;
  color: var(--text-mid);
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.nav-mobile a:hover, .nav-mobile a.active { background: var(--blush-light); color: var(--rose-gold); }

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--text-dark);
  color: rgba(255,255,255,.75);
  padding: 64px 0 28px;
}

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

.footer-brand .nav-logo-text { color: var(--white); }
.footer-brand p {
  margin-top: 14px;
  font-size: .9rem;
  line-height: 1.7;
  max-width: 240px;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  transition: var(--transition);
  color: var(--white);
}
.footer-social a:hover { background: var(--rose-gold); transform: translateY(-2px); }

.footer-col h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 18px;
}
.footer-col ul li + li { margin-top: 8px; }
.footer-col ul a {
  font-size: .88rem;
  color: rgba(255,255,255,.65);
  transition: var(--transition);
}
.footer-col ul a:hover { color: var(--blush); padding-left: 4px; }

.footer-hours p {
  font-size: .88rem;
  color: rgba(255,255,255,.65);
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 6px;
}
.footer-hours span { color: rgba(255,255,255,.9); font-weight: 600; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .82rem;
  color: rgba(255,255,255,.45);
  flex-wrap: wrap;
  gap: 12px;
}

/* =============================================
   HERO (HOME)
   ============================================= */
.hero {
  min-height: 92vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--blush-light) 0%, var(--lav-light) 55%, var(--cream) 100%);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23F9C5D1' fill-opacity='0.18'%3E%3Ccircle cx='30' cy='30' r='3'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  padding: 80px 0;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--blush);
  border-radius: 50px;
  padding: 7px 18px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--rose-gold);
  margin-bottom: 24px;
  letter-spacing: .05em;
  box-shadow: 0 2px 12px rgba(249,197,209,.4);
}
.hero-tag::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--rose-gold);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: .6; }
}

.hero h1 {
  font-size: clamp(2.8rem, 5.5vw, 4.2rem);
  line-height: 1.12;
  margin-bottom: 22px;
  color: var(--text-dark);
}

.hero h1 em {
  font-style: italic;
  color: var(--rose-gold);
  display: block;
}

.hero p {
  font-size: 1.1rem;
  color: var(--text-mid);
  max-width: 440px;
  margin-bottom: 38px;
}

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

.hero-image-wrap {
  position: relative;
  border-radius: 40px 14px 40px 14px;
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-lg);
}

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

.hero-badge {
  position: absolute;
  bottom: 28px;
  left: -20px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 14px 20px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-badge-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blush), var(--lavender));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.hero-badge-text strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
}
.hero-badge-text span { font-size: .78rem; color: var(--text-light); }

.hero-stat {
  position: absolute;
  top: 28px;
  right: -16px;
  background: linear-gradient(135deg, var(--rose-gold), var(--rose-dark));
  color: var(--white);
  border-radius: var(--radius);
  padding: 14px 18px;
  box-shadow: var(--shadow);
  text-align: center;
}
.hero-stat strong { display: block; font-size: 1.5rem; font-family: 'Playfair Display', serif; }
.hero-stat span { font-size: .75rem; opacity: .85; }

/* =============================================
   FEATURED SERVICES (HOME)
   ============================================= */
.services-preview { background: var(--white); }

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

.service-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 34px 26px;
  text-align: center;
  border: 1.5px solid transparent;
  transition: var(--transition);
  cursor: default;
}
.service-card:hover {
  border-color: var(--blush);
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  background: var(--white);
}

.service-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blush-light), var(--lav-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 18px;
  transition: var(--transition);
}
.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--blush), var(--lavender));
}

.service-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.service-card p { font-size: .88rem; color: var(--text-mid); }

/* =============================================
   WHY CHOOSE US (HOME)
   ============================================= */
.why-section {
  background: linear-gradient(135deg, var(--blush-light) 0%, var(--lav-light) 100%);
}

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

.why-image {
  border-radius: 28px 8px 28px 8px;
  overflow: hidden;
  aspect-ratio: 1;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.why-image img { width: 100%; height: 100%; object-fit: cover; }
.why-image-accent {
  position: absolute;
  bottom: -14px;
  right: -14px;
  width: 120px;
  height: 120px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--blush), var(--rose-gold));
  z-index: -1;
}

.why-list { margin: 28px 0; display: flex; flex-direction: column; gap: 18px; }

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

.why-item-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  box-shadow: 0 2px 12px rgba(201,149,108,.15);
}

.why-item-text h4 { font-size: 1rem; margin-bottom: 4px; }
.why-item-text p { font-size: .875rem; color: var(--text-mid); }

/* =============================================
   TESTIMONIALS (HOME)
   ============================================= */
.testimonials { background: var(--white); }

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

.testimonial-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 32px 28px;
  border: 1.5px solid var(--blush-light);
  position: relative;
  transition: var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }

.testimonial-card::before {
  content: '\201C';
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  color: var(--blush);
  position: absolute;
  top: 8px;
  left: 22px;
  line-height: 1;
  opacity: .7;
}

.stars { color: #F7C97E; font-size: .9rem; margin-bottom: 16px; margin-top: 10px; }

.testimonial-card p {
  font-size: .92rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 22px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2.5px solid var(--blush);
}
.testimonial-author strong { display: block; font-size: .9rem; }
.testimonial-author span { font-size: .78rem; color: var(--text-light); }

/* =============================================
   ABOUT PAGE
   ============================================= */
.page-hero {
  background: linear-gradient(135deg, var(--blush-light), var(--lav-light));
  padding: 80px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0; right: 0;
  height: 40px;
  background: var(--cream);
  clip-path: ellipse(55% 100% at 50% 100%);
}

.page-hero h1 { font-size: clamp(2.2rem, 5vw, 3.2rem); margin-bottom: 14px; }
.page-hero p { font-size: 1.05rem; color: var(--text-mid); max-width: 540px; margin: 0 auto; }

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.story-image {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-lg);
}
.story-image img { width: 100%; height: 100%; object-fit: cover; }

.mission-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.mission-card {
  text-align: center;
  padding: 30px 22px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1.5px solid var(--blush-light);
  transition: var(--transition);
}
.mission-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--blush); }
.mission-card .icon { font-size: 2rem; margin-bottom: 14px; }
.mission-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.mission-card p { font-size: .86rem; color: var(--text-mid); }

.team-section { background: var(--white); }

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

.team-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--cream);
  border: 1.5px solid var(--blush-light);
  transition: var(--transition);
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.team-card-image {
  aspect-ratio: 3/4;
  overflow: hidden;
}
.team-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.team-card:hover .team-card-image img { transform: scale(1.05); }
.team-card-body { padding: 22px 22px 26px; }
.team-card-body h3 { font-size: 1.15rem; margin-bottom: 4px; }
.team-card-body .role {
  font-size: .82rem;
  font-weight: 600;
  color: var(--rose-gold);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.team-card-body p { font-size: .86rem; color: var(--text-mid); }
.team-card-body .specialties {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.specialty-tag {
  background: var(--blush-light);
  color: var(--rose-gold);
  font-size: .74rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 50px;
}

/* =============================================
   SERVICES PAGE
   ============================================= */
.services-section { background: var(--white); }

.services-full-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.service-full-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 28px 28px;
  border: 1.5px solid var(--blush-light);
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: var(--transition);
}
.service-full-card:hover {
  border-color: var(--blush);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
  background: var(--white);
}

.service-full-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--blush-light), var(--lav-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
  transition: var(--transition);
}
.service-full-card:hover .service-full-icon {
  background: linear-gradient(135deg, var(--blush), var(--lavender));
}

.service-full-body h3 { font-size: 1.05rem; margin-bottom: 6px; }
.service-full-body p { font-size: .86rem; color: var(--text-mid); margin-bottom: 10px; }
.service-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--rose-gold);
  font-weight: 700;
}
.service-price small {
  font-family: 'Nunito', sans-serif;
  font-size: .75rem;
  color: var(--text-light);
  font-weight: 400;
}

.services-category { margin-bottom: 60px; }
.category-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}
.category-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--blush), var(--rose-gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--white);
}
.category-header h2 { font-size: 1.7rem; }

.services-note {
  background: linear-gradient(135deg, var(--blush-light), var(--lav-light));
  border-radius: var(--radius);
  padding: 32px 36px;
  margin-top: 52px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.services-note-icon { font-size: 2rem; flex-shrink: 0; }
.services-note p { font-size: .92rem; color: var(--text-mid); }
.services-note strong { color: var(--text-dark); }

/* =============================================
   GALLERY PAGE
   ============================================= */
.gallery-section { background: var(--white); padding-bottom: 100px; }

.gallery-filter {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.filter-btn {
  padding: 9px 22px;
  border-radius: 50px;
  border: 2px solid var(--blush);
  background: transparent;
  font-family: 'Nunito', sans-serif;
  font-size: .875rem;
  font-weight: 600;
  color: var(--text-mid);
  cursor: pointer;
  transition: var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--rose-gold);
  border-color: var(--rose-gold);
  color: var(--white);
}

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

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  position: relative;
  box-shadow: 0 2px 12px rgba(59,42,53,.08);
}
.gallery-item.wide { grid-column: span 2; aspect-ratio: 7/5; }
.gallery-item.tall { grid-row: span 2; }

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.gallery-item:hover img { transform: scale(1.07); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(59,42,53,.7) 0%, transparent 50%);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 18px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  color: var(--white);
  font-size: .85rem;
  font-weight: 600;
}
.gallery-overlay .zoom-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,.2);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.5);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(20, 10, 18, .92);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
  padding: 20px;
}
.lightbox.active { opacity: 1; pointer-events: all; }

.lightbox-inner {
  position: relative;
  max-width: 900px;
  width: 100%;
  max-height: 90vh;
  border-radius: var(--radius);
  overflow: hidden;
}
.lightbox-inner img {
  width: 100%;
  height: auto;
  max-height: 90vh;
  object-fit: contain;
  display: block;
}

.lightbox-close {
  position: fixed;
  top: 24px;
  right: 28px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  border: 2px solid rgba(255,255,255,.3);
  color: var(--white);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  backdrop-filter: blur(8px);
}
.lightbox-close:hover { background: rgba(255,255,255,.3); transform: rotate(90deg); }

.lightbox-nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  border: 2px solid rgba(255,255,255,.3);
  color: var(--white);
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  backdrop-filter: blur(8px);
}
.lightbox-nav:hover { background: rgba(255,255,255,.3); }
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }

.lightbox-caption {
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  padding: 16px 22px;
  background: linear-gradient(to top, rgba(20,10,18,.8), transparent);
  color: var(--white);
  font-size: .9rem;
  font-weight: 600;
}

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-section { background: var(--white); }

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

.contact-info-cards { display: flex; flex-direction: column; gap: 18px; margin-bottom: 32px; }

.contact-card {
  display: flex;
  gap: 16px;
  align-items: center;
  background: var(--cream);
  border-radius: var(--radius-sm);
  padding: 18px 22px;
  border: 1.5px solid var(--blush-light);
  transition: var(--transition);
}
.contact-card:hover { border-color: var(--blush); box-shadow: 0 2px 16px rgba(249,197,209,.3); }

.contact-card-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--blush-light), var(--lav-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.contact-card-text strong { display: block; font-size: .85rem; color: var(--text-light); margin-bottom: 2px; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; }
.contact-card-text a, .contact-card-text p { font-size: .95rem; color: var(--text-dark); font-weight: 500; }
.contact-card-text a:hover { color: var(--rose-gold); }

.hours-table { width: 100%; border-collapse: collapse; }
.hours-table tr { border-bottom: 1px solid var(--blush-light); }
.hours-table tr:last-child { border-bottom: none; }
.hours-table td { padding: 11px 0; font-size: .9rem; }
.hours-table td:first-child { color: var(--text-mid); font-weight: 500; }
.hours-table td:last-child { text-align: right; font-weight: 600; color: var(--text-dark); }
.hours-table .closed { color: var(--text-light) !important; }
.hours-table .today td { color: var(--rose-gold) !important; font-weight: 700; }

.social-links { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 24px; }
.social-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 50px;
  background: var(--cream);
  border: 1.5px solid var(--blush-light);
  font-size: .875rem;
  font-weight: 600;
  color: var(--text-mid);
  transition: var(--transition);
}
.social-link:hover { background: var(--blush-light); color: var(--rose-gold); border-color: var(--blush); transform: translateY(-2px); }

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.map-placeholder {
  background: linear-gradient(135deg, var(--blush-light), var(--lav-light));
  aspect-ratio: 4/3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: var(--text-mid);
  font-size: .95rem;
}
.map-placeholder .map-icon { font-size: 3rem; }
.map-placeholder strong { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: var(--text-dark); }

.hours-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 28px;
  border: 1.5px solid var(--blush-light);
  margin-top: 24px;
}
.hours-card h3 { font-size: 1.1rem; margin-bottom: 20px; display: flex; align-items: center; gap: 8px; }

/* =============================================
   ANIMATIONS
   ============================================= */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .hero-inner     { gap: 40px; }
  .why-grid       { gap: 48px; }
  .footer-grid    { grid-template-columns: 1fr 1fr; }
  .services-grid  { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .nav-links  { display: none; }
  .nav-toggle { display: flex; }

  .hero-inner     { grid-template-columns: 1fr; gap: 48px; padding: 48px 0 64px; }
  .hero-image-wrap { max-width: 480px; margin: 0 auto; }
  .hero-badge { left: 0; }
  .hero-stat  { right: 0; }

  .why-grid           { grid-template-columns: 1fr; }
  .why-image          { max-width: 420px; }
  .testimonials-grid  { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .story-grid         { grid-template-columns: 1fr; }
  .story-image        { max-width: 420px; }
  .team-grid          { grid-template-columns: repeat(2, 1fr); }
  .mission-cards      { grid-template-columns: 1fr; max-width: 340px; margin: 48px auto 0; }
  .services-full-grid { grid-template-columns: 1fr; }
  .gallery-grid       { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.wide  { grid-column: span 2; }
  .gallery-item.tall  { grid-row: span 1; aspect-ratio: 3/4; }
  .contact-grid       { grid-template-columns: 1fr; }
  .footer-grid        { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  .section    { padding: 64px 0; }
  .services-grid  { grid-template-columns: 1fr; }
  .team-grid      { grid-template-columns: 1fr; max-width: 340px; margin: 0 auto; }
  .gallery-grid   { grid-template-columns: 1fr; }
  .gallery-item.wide { grid-column: span 1; aspect-ratio: 3/4; }
  .footer-grid    { grid-template-columns: 1fr; }
  .footer-bottom  { flex-direction: column; text-align: center; }
  .hero-badge, .hero-stat { display: none; }
  .lightbox-nav   { display: none; }
}
