/* ============================================================
   SUSHMA MEHNDI ARTIST — styles.css
   ============================================================ */

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

/* ─── CSS Variables ──────────────────────────────────────── */
:root {
  --primary:    #C2714F;
  --accent:     #D4AF37;
  --bg:         #FFF8F0;
  --dark:       #5C2A0A;
  --text:       #2C1A0E;
  --white:      #FFFFFF;
  --gray-light: #F5E6D8;
  --gray-mid:   #E8D5C0;
  --gray-text:  #7A5C47;
  --wa-green:   #25D366;

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

  --radius:     10px;
  --radius-lg:  18px;
  --radius-xl:  28px;
  --shadow-sm:  0 2px 8px rgba(92,42,10,.07);
  --shadow-md:  0 6px 20px rgba(92,42,10,.11);
  --shadow-lg:  0 12px 36px rgba(92,42,10,.15);
  --shadow-hover: 0 16px 40px rgba(194,113,79,.22);
  --transition: all .32s cubic-bezier(.4,0,.2,1);
  --container:  1200px;
}

/* ─── Reset ──────────────────────────────────────────────── */
*,*::before,*::after { box-sizing:border-box; margin:0; padding:0; }
html { scroll-behavior:smooth; overflow-x:hidden; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width:100%; display:block; }
a  { color:inherit; text-decoration:none; transition:var(--transition); }
ul { list-style:none; }
button,input,select,textarea { font-family:var(--font-body); }

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

/* ─── Utilities ──────────────────────────────────────────── */
.container { width:100%; max-width:var(--container); margin:0 auto; padding:0 24px; }
.section-pad { padding:90px 0; }
.section-pad-sm { padding:60px 0; }
.text-center { text-align:center; }

.tag {
  display:inline-block;
  font-size:.78rem; font-weight:700; letter-spacing:2px;
  text-transform:uppercase; color:var(--accent);
  margin-bottom:12px;
}
.section-title {
  font-size:2.6rem; font-weight:700;
  color:var(--dark); margin-bottom:14px;
  position:relative; display:inline-block;
}
.section-title::after {
  content:''; display:block;
  width:54px; height:3px;
  background:linear-gradient(90deg, var(--accent), var(--primary));
  border-radius:2px; margin-top:10px;
}
.text-center .section-title::after { margin:10px auto 0; }
.section-sub { color:var(--gray-text); font-size:1.05rem; max-width:620px; }
.text-center .section-sub { margin:0 auto; }

/* Buttons */
.btn {
  display:inline-flex; align-items:center; gap:8px;
  padding:13px 30px; border-radius:40px;
  font-weight:600; font-size:.95rem;
  cursor:pointer; border:none;
  transition:var(--transition);
}
.btn-primary {
  background:var(--primary); color:var(--white);
  box-shadow:0 4px 14px rgba(194,113,79,.35);
}
.btn-primary:hover { background:var(--dark); transform:translateY(-2px); box-shadow:0 8px 22px rgba(194,113,79,.4); }
.btn-outline {
  background:transparent; color:var(--primary);
  border:2px solid var(--primary);
}
.btn-outline:hover { background:var(--primary); color:var(--white); transform:translateY(-2px); }
.btn-accent {
  background:var(--accent); color:var(--dark);
  box-shadow:0 4px 14px rgba(212,175,55,.35);
}
.btn-accent:hover { background:#c9a32e; transform:translateY(-2px); }
.btn-gold-outline {
  background:transparent; color:var(--accent);
  border:2px solid var(--accent);
}
.btn-gold-outline:hover { background:var(--accent); color:var(--dark); transform:translateY(-2px); }

/* Scroll animation */
.reveal {
  opacity:0; transform:translateY(28px);
  transition:opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity:1; transform:translateY(0); }
.reveal-d1 { transition-delay:.1s; }
.reveal-d2 { transition-delay:.2s; }
.reveal-d3 { transition-delay:.3s; }
.reveal-d4 { transition-delay:.4s; }
.reveal-d5 { transition-delay:.5s; }

/* ─── Placeholder images ─────────────────────────────────── */
.img-ph {
  display:flex; flex-direction:column; align-items:center;
  justify-content:center; gap:10px;
  background:var(--gray-light); border:2px dashed var(--primary);
  border-radius:var(--radius); color:var(--primary);
  font-size:.88rem; font-weight:600; text-align:center;
  padding:20px; width:100%; height:100%;
}
.img-ph svg { opacity:.6; }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position:fixed; top:0; left:0; width:100%; z-index:1000;
  height:64px; background:var(--white);
  display:flex; align-items:center;
  transition:box-shadow .3s ease;
}
.navbar.scrolled { box-shadow:0 2px 20px rgba(92,42,10,.12); }
.navbar .container {
  display:flex; align-items:center;
  justify-content:space-between; height:64px;
}

/* Logo */
.logo { display:flex; align-items:center; gap:11px; }
.logo-img-wrap {
  width:46px; height:46px; border-radius:50%;
  overflow:hidden; border:2px solid var(--accent);
  display:flex; align-items:center; justify-content:center;
  flex-shrink:0;
}
.logo-img {
  width:100%; height:100%;
  object-fit:cover;
  transform:scale(1.05); /* Slightly scale to fit perfectly in circle border */
}
.logo-text {
  font-family:var(--font-heading);
  font-size:1.28rem; font-weight:700; color:var(--dark);
  white-space:nowrap; line-height:1.15;
}
.logo-text span { color:var(--accent); }

/* Nav links */
.nav-menu { display:flex; align-items:center; gap:6px; }
.nav-menu a {
  font-size:.92rem; font-weight:500; color:var(--text);
  padding:6px 14px; border-radius:30px; position:relative;
}
.nav-menu a:not(.btn-primary):hover,
.nav-menu a.active:not(.btn-primary) { color:var(--primary); }
.nav-menu a.btn-primary { padding:9px 22px; font-size:.9rem; margin-left:8px; }

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

/* Mobile drawer */
@media (max-width:767px) {
  .hamburger { display:flex; }
  .nav-menu {
    position:fixed; top:64px; left:0; width:100%;
    background:var(--white); flex-direction:column;
    align-items:stretch; gap:0; padding:0 0 20px;
    max-height:0; overflow:hidden;
    transition:max-height .4s cubic-bezier(.4,0,.2,1),
                box-shadow .3s ease;
    box-shadow:none;
  }
  .nav-menu.open {
    max-height:420px;
    box-shadow:0 10px 30px rgba(92,42,10,.12);
  }
  .nav-menu a {
    display:block; padding:14px 24px;
    border-bottom:1px solid var(--gray-mid);
    border-radius:0;
  }
  .nav-menu a.btn-primary {
    margin:16px 24px 0; border-radius:40px;
    text-align:center;
  }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background:var(--dark); color:rgba(255,248,240,.9);
  padding:70px 0 0;
}
.footer-grid {
  display:grid; grid-template-columns:1.8fr 1fr 1.6fr;
  gap:48px; padding-bottom:52px;
}
@media (max-width:900px) { .footer-grid { grid-template-columns:1fr 1fr; } }
@media (max-width:600px) { .footer-grid { grid-template-columns:1fr; } }

.footer-logo { display:flex; align-items:center; gap:11px; margin-bottom:16px; }
.footer-logo-img-wrap {
  width:48px; height:48px; border-radius:50%;
  overflow:hidden; border:2px solid var(--accent);
  display:flex; align-items:center; justify-content:center;
  flex-shrink:0;
}
.footer-logo-img {
  width:100%; height:100%;
  object-fit:cover;
  transform:scale(1.05);
}
.footer-logo-text { font-family:var(--font-heading); font-size:1.3rem; font-weight:700; color:var(--white); }
.footer-logo-text span { color:var(--accent); }
.footer-tagline { font-size:.93rem; opacity:.8; line-height:1.6; margin-bottom:0; }

.footer h4 { font-family:var(--font-heading); color:var(--accent); font-size:1.1rem; margin-bottom:20px; }
.footer-links li { margin-bottom:11px; }
.footer-links a { font-size:.92rem; opacity:.8; transition:var(--transition); }
.footer-links a:hover { opacity:1; color:var(--accent); padding-left:4px; }

.footer-contact li {
  display:flex; gap:12px; font-size:.9rem;
  opacity:.85; margin-bottom:14px; align-items:flex-start;
}
.footer-contact li span.icon { font-size:1.1rem; flex-shrink:0; margin-top:1px; }
.footer-contact a { opacity:1; }
.footer-contact a:hover { color:var(--accent); }

.footer-bottom {
  border-top:1px solid rgba(255,248,240,.12);
  padding:18px 0; text-align:center;
  font-size:.84rem; opacity:.65;
}

/* ============================================================
   WHATSAPP FLOAT
   ============================================================ */
.wa-float {
  position:fixed; bottom:28px; right:28px;
  width:60px; height:60px; border-radius:50%;
  background:var(--wa-green); color:var(--white);
  display:flex; align-items:center; justify-content:center;
  z-index:999; box-shadow:0 6px 20px rgba(37,211,102,.45);
  transition:transform .25s ease;
}
.wa-float:hover { transform:scale(1.1); }
.wa-float::before {
  content:''; position:absolute; inset:-6px;
  border-radius:50%; border:3px solid var(--wa-green);
  opacity:.6; animation:wa-pulse 3s ease-out infinite;
}
.wa-float svg { width:30px; height:30px; fill:var(--white); }
@media (max-width:767px) { .wa-float { width:52px; height:52px; bottom:20px; right:20px; } }
@keyframes wa-pulse {
  0%   { transform:scale(1);   opacity:.6; }
  60%  { transform:scale(1.6); opacity:0; }
  100% { transform:scale(1.6); opacity:0; }
}

/* ============================================================
   PAGE BANNER (inner pages)
   ============================================================ */
.page-banner {
  background:linear-gradient(135deg, var(--dark) 0%, #8B3A10 100%);
  margin-top:64px; padding:70px 0 50px; text-align:center;
  position:relative; overflow:hidden;
}
.page-banner::after {
  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='%23D4AF37' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='20'/%3E%3Ccircle cx='30' cy='30' r='10'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events:none;
}
.page-banner h1 { color:var(--white); font-size:2.8rem; margin-bottom:12px; position:relative; z-index:1; }
.breadcrumb { font-size:.9rem; opacity:.75; color:var(--white); position:relative; z-index:1; }
.breadcrumb a { color:var(--accent); }
.breadcrumb a:hover { color:var(--white); }

/* ============================================================
   HOME — HERO
   ============================================================ */
.hero {
  min-height:100vh; margin-top:64px;
  background:var(--bg); display:flex; align-items:center;
  position:relative; overflow:hidden; padding:60px 0;
}
/* mandala watermark */
.hero::before {
  content:''; position:absolute;
  top:50%; left:50%; transform:translate(-50%,-50%);
  width:min(800px, 90vw); aspect-ratio:1;
  background:url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23C2714F' stroke-width='0.4'%3E%3Ccircle cx='100' cy='100' r='95'/%3E%3Ccircle cx='100' cy='100' r='80'/%3E%3Ccircle cx='100' cy='100' r='60'/%3E%3Ccircle cx='100' cy='100' r='40'/%3E%3Ccircle cx='100' cy='100' r='20'/%3E%3Cline x1='100' y1='5' x2='100' y2='195'/%3E%3Cline x1='5' y1='100' x2='195' y2='100'/%3E%3Cline x1='33' y1='33' x2='167' y2='167'/%3E%3Cline x1='167' y1='33' x2='33' y2='167'/%3E%3Cline x1='10' y1='65' x2='190' y2='135'/%3E%3Cline x1='10' y1='135' x2='190' y2='65'/%3E%3Cline x1='65' y1='10' x2='135' y2='190'/%3E%3Cline x1='135' y1='10' x2='65' y2='190'/%3E%3C/svg%3E") center/contain no-repeat;
  opacity:.045; pointer-events:none; z-index:0;
}

.hero .container { position:relative; z-index:1; }
.hero-grid {
  display:grid; grid-template-columns:1fr 1fr;
  gap:60px; align-items:center;
}
.hero-text .label {
  font-size:.82rem; font-weight:700; letter-spacing:3px;
  text-transform:uppercase; color:var(--accent);
  display:block; margin-bottom:18px;
}
.hero-text h1 { font-size:clamp(2.4rem,4vw,3.6rem); line-height:1.15; margin-bottom:20px; }
.hero-text h1 em { font-style:italic; color:var(--primary); }
.hero-text p { color:var(--gray-text); font-size:1.08rem; margin-bottom:12px; }
.hero-text .services-row {
  display:flex; flex-wrap:wrap; gap:8px; margin-bottom:32px;
}
.hero-text .pill {
  background:var(--gray-light); color:var(--primary);
  padding:5px 14px; border-radius:20px; font-size:.82rem; font-weight:600;
}
.hero-btns { display:flex; gap:14px; flex-wrap:wrap; }

.hero-img-wrap {
  position:relative; border-radius:var(--radius-xl);
  overflow:hidden; aspect-ratio:.82;
  box-shadow:var(--shadow-lg);
}
.hero-img-wrap img {
  width:100%; height:100%; object-fit:cover;
}
.hero-img-ph { width:100%; height:100%; min-height:480px; }
/* decorative corner */
.hero-img-wrap::after {
  content:''; position:absolute;
  bottom:-2px; left:-2px; right:-2px;
  height:6px;
  background:linear-gradient(90deg, var(--accent), var(--primary));
  border-radius:0 0 var(--radius-xl) var(--radius-xl);
}

@media (max-width:900px) {
  .hero-grid { grid-template-columns:1fr; gap:40px; }
  .hero-img-wrap { max-width:460px; margin:0 auto; aspect-ratio:.9; }
}
@media (max-width:600px) {
  .hero { padding:40px 0; }
  .hero-text h1 { font-size:2rem; }
  .hero-btns { flex-direction:column; }
}

/* ============================================================
   HOME — SERVICES STRIP
   ============================================================ */
.strip { background:var(--white); padding:44px 0; border-top:1px solid var(--gray-mid); border-bottom:1px solid var(--gray-mid); }
.strip-scroll { overflow-x:auto; -webkit-overflow-scrolling:touch; scrollbar-width:none; }
.strip-scroll::-webkit-scrollbar { display:none; }
.strip-grid {
  display:flex; gap:20px;
  min-width:max-content; padding-bottom:4px;
}
@media (min-width:900px) {
  .strip-grid { display:grid; grid-template-columns:repeat(6,1fr); min-width:0; }
}
.strip-card {
  background:var(--white); border-radius:var(--radius-lg);
  padding:26px 18px 22px; text-align:center;
  border-top:4px solid var(--accent);
  box-shadow:var(--shadow-sm); width:160px;
  flex-shrink:0;
  transition:var(--transition);
  display:flex; flex-direction:column; gap:6px;
}
@media (min-width:900px) { .strip-card { width:auto; } }
.strip-card:hover { transform:translateY(-6px); box-shadow:var(--shadow-hover); }
.strip-icon { font-size:2.1rem; }
.strip-name { font-weight:700; font-size:.93rem; color:var(--dark); }
.strip-price { font-size:.84rem; font-weight:600; color:var(--primary); }
.strip-link { font-size:.78rem; font-weight:700; text-transform:uppercase; letter-spacing:1px; color:var(--accent); margin-top:4px; }
.strip-link:hover { color:var(--primary); }

/* ============================================================
   HOME — TRUST BADGES
   ============================================================ */
.trust { background:var(--bg); }
.trust-grid {
  display:grid; grid-template-columns:repeat(3,1fr); gap:30px;
}
@media (max-width:700px) { .trust-grid { grid-template-columns:1fr; gap:24px; } }
.trust-card {
  background:var(--white); padding:38px 28px; border-radius:var(--radius-lg);
  text-align:center; box-shadow:var(--shadow-sm);
  border-bottom:4px solid var(--accent);
  transition:var(--transition);
}
.trust-card:hover { transform:translateY(-4px); box-shadow:var(--shadow-md); }
.trust-icon { font-size:2.6rem; margin-bottom:14px; }
.trust-num { font-family:var(--font-heading); font-size:2.2rem; font-weight:700; color:var(--primary); margin-bottom:6px; }
.trust-label { font-weight:600; color:var(--dark); font-size:1.02rem; }
.trust-sub { font-size:.87rem; color:var(--gray-text); margin-top:4px; }

/* ============================================================
   HOME — REVIEWS CAROUSEL
   ============================================================ */
.reviews { background:var(--white); }
.reviews-track-wrap {
  overflow:hidden; position:relative; margin:44px 0;
  -webkit-mask:linear-gradient(90deg,transparent,#fff 8%,#fff 92%,transparent);
  mask:linear-gradient(90deg,transparent,#fff 8%,#fff 92%,transparent);
}
.reviews-track {
  display:flex; gap:26px;
  animation:scroll-left 32s linear infinite;
  width:max-content;
}
.reviews-track-wrap:hover .reviews-track { animation-play-state:paused; }
@keyframes scroll-left {
  0%   { transform:translateX(0); }
  100% { transform:translateX(-50%); }
}
.review-card {
  background:var(--bg); border-radius:var(--radius-lg);
  padding:30px 26px; width:360px; flex-shrink:0;
  border:1px solid var(--gray-mid); box-shadow:var(--shadow-sm);
}
.review-top { display:flex; justify-content:space-between; align-items:flex-start; margin-bottom:14px; }
.reviewer-name { font-weight:700; color:var(--dark); font-size:1rem; }
.stars { color:var(--accent); font-size:1.05rem; letter-spacing:2px; }
.review-text { font-style:italic; color:var(--gray-text); font-size:.9rem; line-height:1.55; margin-bottom:14px; display:-webkit-box; -webkit-line-clamp:3; -webkit-box-orient:vertical; overflow:hidden; }
.review-verified { display:flex; align-items:center; gap:6px; font-size:.76rem; color:var(--gray-text); font-weight:600; }
.review-verified::before { content:'✓'; color:var(--primary); font-weight:900; }
@media (max-width:600px) { .review-card { width:290px; padding:22px; } }

/* ============================================================
   HOME — INSTAGRAM GRID
   ============================================================ */
.insta { background:var(--bg); }
.insta-handle-link { color:var(--accent); font-weight:600; font-size:1.05rem; margin-bottom:36px; display:inline-block; }
.insta-handle-link:hover { color:var(--primary); }
.insta-grid {
  display:grid; grid-template-columns:repeat(3,1fr); gap:18px; margin-bottom:36px;
}
@media (max-width:600px) { .insta-grid { grid-template-columns:repeat(2,1fr); gap:12px; } }
.insta-slot {
  aspect-ratio:1; border-radius:var(--radius-lg); overflow:hidden;
  position:relative; display:block; cursor:pointer;
}
.insta-slot img { width:100%; height:100%; object-fit:cover; transition:transform .5s ease; }
.insta-slot:hover img { transform:scale(1.08); }
.insta-slot-ph { width:100%; height:100%; min-height:160px; border-radius:var(--radius-lg); }
.insta-overlay {
  position:absolute; inset:0; border-radius:var(--radius-lg);
  background:rgba(92,42,10,.55); display:flex; align-items:center; justify-content:center;
  opacity:0; transition:var(--transition);
}
.insta-overlay svg { width:36px; height:36px; fill:var(--white); }
.insta-slot:hover .insta-overlay { opacity:1; }

/* ============================================================
   HOME — CTA BANNER
   ============================================================ */
.cta-banner {
  background:linear-gradient(135deg, var(--primary) 0%, #a0562e 100%);
  padding:80px 0; text-align:center; position:relative; overflow:hidden;
}
.cta-banner::before {
  content:''; position:absolute; top:-80px; right:-80px;
  width:280px; height:280px; border-radius:50%;
  background:rgba(255,255,255,.06); pointer-events:none;
}
.cta-banner::after {
  content:''; position:absolute; bottom:-60px; left:-60px;
  width:220px; height:220px; border-radius:50%;
  background:rgba(255,255,255,.06); pointer-events:none;
}
.cta-banner h2 { color:var(--white); font-size:clamp(1.8rem,3.5vw,2.8rem); margin-bottom:28px; position:relative; z-index:1; }
.cta-banner .btn { position:relative; z-index:1; }

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.services-grid {
  display:grid; grid-template-columns:repeat(2,1fr); gap:30px; margin-top:50px;
}
@media (max-width:800px) { .services-grid { grid-template-columns:1fr; } }
.service-card {
  background:var(--white); border-radius:var(--radius-lg); overflow:hidden;
  box-shadow:var(--shadow-md); border:1px solid var(--gray-mid);
  display:flex; flex-direction:column; transition:var(--transition);
}
.service-card:hover { transform:translateY(-6px); box-shadow:var(--shadow-hover); }
.service-card-img { height:240px; position:relative; overflow:hidden; }
.service-card-img img { width:100%; height:100%; object-fit:cover; transition:transform .5s ease; }
.service-card:hover .service-card-img img { transform:scale(1.06); }
.service-card-img-ph { width:100%; height:100%; border-radius:0; border-width:0 0 2px 0; }
.service-card-body { padding:30px; flex:1; display:flex; flex-direction:column; }
.service-card-body h3 { font-size:1.55rem; margin-bottom:12px; }
.service-card-body p { color:var(--gray-text); font-size:.95rem; flex:1; margin-bottom:22px; }
.service-meta { display:flex; align-items:center; justify-content:space-between; border-top:1px solid var(--gray-mid); padding-top:20px; }
.service-price { font-weight:800; font-size:1.2rem; color:var(--primary); }

/* ============================================================
   GALLERY PAGE
   ============================================================ */
.filter-bar { display:flex; flex-wrap:wrap; justify-content:center; gap:10px; margin-bottom:44px; }
.filter-btn {
  padding:9px 24px; border:2px solid var(--gray-mid);
  border-radius:30px; font-size:.9rem; font-weight:600;
  background:var(--white); cursor:pointer; color:var(--gray-text);
  transition:var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  background:var(--primary); border-color:var(--primary); color:var(--white);
}
.gallery-grid {
  display:grid; grid-template-columns:repeat(3,1fr); gap:22px;
}
@media (max-width:900px) { .gallery-grid { grid-template-columns:repeat(2,1fr); } }
@media (max-width:560px) { .gallery-grid { grid-template-columns:1fr; } }
.gallery-item {
  aspect-ratio:1; border-radius:var(--radius-lg); overflow:hidden;
  position:relative; cursor:pointer;
  box-shadow:var(--shadow-sm); transition:var(--transition);
}
.gallery-item:hover { box-shadow:var(--shadow-hover); transform:scale(1.02); }
.gallery-item img { width:100%; height:100%; object-fit:cover; transition:transform .5s ease; }
.gallery-item:hover img { transform:scale(1.08); }
.gallery-item-ph { width:100%; height:100%; min-height:220px; border-radius:var(--radius-lg); }
.gallery-overlay {
  position:absolute; inset:0; border-radius:var(--radius-lg);
  background:linear-gradient(to top, rgba(92,42,10,.82) 0%, rgba(92,42,10,.15) 60%);
  opacity:0; transition:var(--transition);
  display:flex; flex-direction:column; justify-content:flex-end; padding:22px;
}
.gallery-item:hover .gallery-overlay { opacity:1; }
.gallery-cat-tag {
  display:inline-block; background:var(--accent); color:var(--dark);
  font-size:.72rem; font-weight:700; text-transform:uppercase; letter-spacing:1px;
  padding:3px 10px; border-radius:12px; margin-bottom:7px; align-self:flex-start;
}
.gallery-title { color:var(--white); font-family:var(--font-heading); font-size:1.15rem; }

/* Lightbox */
.lightbox {
  position:fixed; inset:0; z-index:2000;
  background:rgba(20,8,4,.93);
  display:none; align-items:center; justify-content:center;
  padding:20px;
}
.lightbox.open { display:flex; }
.lightbox-inner { position:relative; max-width:900px; width:100%; text-align:center; }
.lightbox-img {
  max-height:80vh; max-width:100%; border-radius:var(--radius);
  border:3px solid var(--accent); box-shadow:0 0 60px rgba(0,0,0,.6);
  object-fit:contain;
}
.lightbox-caption { color:var(--white); margin-top:16px; font-family:var(--font-heading); font-size:1.2rem; }
.lightbox-close {
  position:absolute; top:-46px; right:0; font-size:2.2rem;
  color:var(--white); cursor:pointer; line-height:1;
  transition:color .2s ease;
}
.lightbox-close:hover { color:var(--accent); }
.lightbox-prev, .lightbox-next {
  position:fixed; top:50%; transform:translateY(-50%);
  font-size:2.6rem; color:rgba(255,248,240,.7); cursor:pointer;
  padding:16px; user-select:none; transition:color .2s ease;
}
.lightbox-prev:hover, .lightbox-next:hover { color:var(--accent); }
.lightbox-prev { left:16px; }
.lightbox-next { right:16px; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-grid {
  display:grid; grid-template-columns:1fr 1.3fr;
  gap:60px; align-items:center;
}
@media (max-width:850px) { .about-grid { grid-template-columns:1fr; } }
.about-img-wrap {
  border-radius:var(--radius-xl); overflow:hidden;
  box-shadow:var(--shadow-lg); aspect-ratio:.85;
}
.about-img-wrap img { width:100%; height:100%; object-fit:cover; }
.about-img-ph { width:100%; height:100%; min-height:400px; border-radius:var(--radius-xl); }
.about-text h2 { font-size:2.4rem; margin-bottom:8px; }
.about-text p { color:var(--gray-text); margin-bottom:18px; line-height:1.7; }
.about-stats { display:flex; gap:30px; margin:28px 0; flex-wrap:wrap; }
.about-stat-item { text-align:center; }
.about-stat-num { font-family:var(--font-heading); font-size:2.2rem; font-weight:700; color:var(--primary); line-height:1; }
.about-stat-label { font-size:.82rem; color:var(--gray-text); margin-top:4px; }
.pledge-box {
  background:var(--gray-light); border-left:4px solid var(--accent);
  border-radius:0 var(--radius) var(--radius) 0;
  padding:24px; margin-top:28px;
}
.pledge-box h4 { font-family:var(--font-heading); color:var(--dark); margin-bottom:8px; }
.pledge-box p { color:var(--gray-text); font-size:.92rem; margin:0; }

/* ============================================================
   BOOKING PAGE
   ============================================================ */
.booking-layout {
  display:grid; grid-template-columns:1.6fr 1fr; gap:50px; align-items:start;
}
@media (max-width:900px) { .booking-layout { grid-template-columns:1fr; } }
.form-box {
  background:var(--white); border-radius:var(--radius-xl);
  padding:44px; box-shadow:var(--shadow-md);
}
@media (max-width:600px) { .form-box { padding:26px; } }
.form-section-title { font-size:1.45rem; color:var(--dark); margin-bottom:24px; padding-bottom:12px; border-bottom:2px solid var(--gray-mid); }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:20px; }
@media (max-width:600px) { .form-row { grid-template-columns:1fr; } }
.form-group { display:flex; flex-direction:column; gap:7px; margin-bottom:20px; }
.form-group label { font-size:.88rem; font-weight:700; color:var(--dark); }
.form-group input,
.form-group select,
.form-group textarea {
  padding:12px 16px; border:1.5px solid var(--gray-mid);
  border-radius:var(--radius); background:var(--bg);
  color:var(--text); font-size:.95rem;
  transition:border-color .2s ease, box-shadow .2s ease;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline:none; border-color:var(--primary);
  box-shadow:0 0 0 3px rgba(194,113,79,.15);
}
.form-group textarea { min-height:120px; resize:vertical; }
.form-group .error-msg { font-size:.78rem; color:#e53935; display:none; }
.form-group.has-error .error-msg { display:block; }
.form-group.has-error input,
.form-group.has-error select,
.form-group.has-error textarea { border-color:#e53935; }
.radio-group { display:flex; gap:20px; flex-wrap:wrap; }
.radio-label { display:flex; align-items:center; gap:8px; font-size:.93rem; cursor:pointer; }
.radio-label input[type=radio] { accent-color:var(--primary); width:16px; height:16px; }
.booking-sidebar .info-card {
  background:var(--white); border-radius:var(--radius-xl);
  padding:34px; box-shadow:var(--shadow-sm);
  border-top:5px solid var(--accent); margin-bottom:22px;
}
.booking-sidebar h4 { font-family:var(--font-heading); color:var(--dark); margin-bottom:16px; font-size:1.25rem; }
.info-list li { display:flex; gap:10px; font-size:.9rem; color:var(--gray-text); margin-bottom:12px; align-items:flex-start; }
.info-list li .i { font-size:1.05rem; flex-shrink:0; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-layout {
  display:grid; grid-template-columns:1fr 1.2fr; gap:50px; align-items:start;
}
@media (max-width:900px) { .contact-layout { grid-template-columns:1fr; } }
.contact-cards-grid { display:grid; grid-template-columns:1fr 1fr; gap:18px; margin-bottom:28px; }
@media (max-width:600px) { .contact-cards-grid { grid-template-columns:1fr; } }
.contact-card {
  background:var(--white); border-radius:var(--radius-lg);
  padding:24px; box-shadow:var(--shadow-sm);
  border:1px solid var(--gray-mid); transition:var(--transition);
}
.contact-card:hover { transform:translateY(-3px); box-shadow:var(--shadow-md); border-color:var(--accent); }
.contact-card-icon {
  width:44px; height:44px; border-radius:50%;
  background:rgba(194,113,79,.1); display:flex;
  align-items:center; justify-content:center; font-size:1.2rem;
  margin-bottom:14px;
}
.contact-card h4 { font-family:var(--font-body); font-weight:700; color:var(--dark); margin-bottom:6px; font-size:.95rem; }
.contact-card p, .contact-card a { font-size:.88rem; color:var(--gray-text); display:block; }
.contact-card a:hover { color:var(--primary); }
.map-wrap {
  border-radius:var(--radius-xl); overflow:hidden;
  box-shadow:var(--shadow-md); border:2px solid var(--gray-mid);
}
.map-wrap iframe { width:100%; height:340px; border:none; display:block; }

/* ============================================================
   MODAL (booking/contact success)
   ============================================================ */
.modal-overlay {
  position:fixed; inset:0; z-index:3000;
  background:rgba(44,26,14,.7); backdrop-filter:blur(4px);
  display:none; align-items:center; justify-content:center; padding:20px;
}
.modal-overlay.open { display:flex; }
.modal-box {
  background:var(--white); border-radius:var(--radius-xl);
  padding:50px 44px; max-width:460px; width:100%;
  text-align:center; box-shadow:var(--shadow-lg);
  border-top:7px solid var(--accent);
  animation:modal-pop .35s cubic-bezier(.34,1.56,.64,1);
}
@keyframes modal-pop { from { transform:scale(.85); opacity:0; } to { transform:scale(1); opacity:1; } }
.modal-icon { font-size:3.5rem; margin-bottom:18px; }
.modal-box h3 { font-size:1.9rem; margin-bottom:12px; }
.modal-box p { color:var(--gray-text); margin-bottom:28px; }

/* ─────────────────────────────────────────────────
   PERFORMANCE & RESPONSIVE POLISH
───────────────────────────────────────────────── */

/* Global Image Placeholder Sibling */
.img-placeholder {
  display: none;
  aspect-ratio: 1;
  background: #F5E6D8;
  border: 2px dashed #C2714F;
  border-radius: 10px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 16px;
  box-sizing: border-box;
}

.logo-img-wrap .img-placeholder {
  width: 38px;
  height: 38px;
  padding: 2px;
  border-radius: 50%;
  border-width: 1px;
}
.logo-img-wrap .img-placeholder span:first-child { font-size: 0.9rem !important; margin: 0 !important; }
.logo-img-wrap .img-placeholder span:last-child { display: none !important; }

/* Font size rules: h1 28px mobile / 46px desktop */
h1 {
  font-size: 46px !important;
  line-height: 1.25;
}

/* Nav links underline slide from left */
.nav-menu a {
  position: relative;
  text-decoration: none;
}
.nav-menu a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease-out;
}
.nav-menu a:hover::after,
.nav-menu a.active::after {
  transform: scaleX(1);
}

/* Hover effects */
.service-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(92, 42, 10, 0.15);
}

.photo-tile, .events-strip-tile {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.photo-tile:hover, .events-strip-tile:hover {
  transform: scale(1.04);
}

.btn:active {
  transform: scale(0.97);
}

/* WhatsApp pulse ring every 3 seconds */
@keyframes waPulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
  70% { box-shadow: 0 0 0 12px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}
.wa-float {
  animation: waPulse 3s infinite;
}

/* IntersectionObserver reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }

/* Sticky bottom pricesummary bar on mobile */
.mobile-price-summary {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #5C2A0A;
  color: #FFF8F0;
  padding: 14px 20px;
  z-index: 1000;
  box-shadow: 0 -4px 16px rgba(0,0,0,0.18);
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
}
.mps-left {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.mps-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.8;
}
.mps-price {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--accent);
}
.mps-btn {
  background: var(--primary);
  color: white;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
}

/* ─── MOBILE TESTING MEDIA QUERIES (max-width: 768px) ─── */
@media (max-width: 768px) {
  h1 {
    font-size: 28px !important;
  }
  
  .navbar .logo-img {
    max-height: 38px;
  }

  /* Hero: stacked layout */
  .hero-grid {
    display: flex;
    flex-direction: column;
    gap: 32px;
    text-align: center;
  }
  .hero-text {
    order: 1;
  }
  .hero-image-wrap {
    order: 2;
    margin: 0 auto;
    max-width: 320px;
  }
  
  /* Services card horizontal snap list */
  .services-grid {
    display: flex !important;
    grid-template-columns: none !important;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    padding: 0 10px 20px;
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
  }
  .services-grid::-webkit-scrollbar {
    height: 5px;
  }
  .services-grid::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
  }
  .services-grid::-webkit-scrollbar-track {
    background: var(--gray-mid);
  }
  .service-card {
    min-width: 290px;
    max-width: 320px;
    scroll-snap-align: center;
    flex-shrink: 0;
  }

  /* Form and inputs minimum tap size */
  .form-group input,
  .form-group select,
  .form-group textarea,
  .btn {
    min-height: 44px;
    box-sizing: border-box;
  }

  /* Footer stack */
  .footer-grid {
    grid-template-columns: 1fr !important;
    text-align: center;
    gap: 36px;
  }
  .footer-contact li {
    justify-content: center;
  }
}


/* Admin link in header — small secondary button */
.nav-admin-btn {
  display: inline-block;
  padding: 6px 12px;
  font-size: 0.8rem;
  font-weight: 500;
  color: #8a6a4a;
  background: transparent;
  border: 1px solid #d4c5b0;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.2s ease;
}
.nav-admin-btn:hover {
  background: #f5ede0;
  color: #5C2A0A;
  border-color: #8a6a4a;
}
