/* =========================================================
   HARIOM PHOTOGRAPHY — STYLESHEET
   Palette: Ink Green #1B2420, Antique Gold #B8935A,
            Deep Maroon #7A2632, Ivory #F7F3EC, Sage #3F5A50
   Display: 'Cormorant Garamond' | Body: 'Jost' | Utility: 'Inter'
   ========================================================= */

:root{
  --ink:#1B2420;
  --ink-soft:#243128;
  --gold:#B8935A;
  --gold-light:#D9BC8C;
  --maroon:#7A2632;
  --ivory:#F7F3EC;
  --ivory-dark:#EFE7D8;
  --sage:#3F5A50;
  --text-dark:#20241f;
  --text-muted:#5b6259;
  --white:#ffffff;

  --font-display:'Cormorant Garamond', serif;
  --font-body:'Jost', sans-serif;
  --font-utility:'Inter', sans-serif;

  --radius:2px;
  --shadow-soft: 0 12px 40px rgba(27,36,32,0.12);
  --shadow-strong: 0 20px 60px rgba(27,36,32,0.25);
  --transition: 0.4s cubic-bezier(.22,.61,.36,1);
}

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

.container{
  width:100%;
  max-width:1200px;
  margin:0 auto;
  padding:0 24px;
}

.eyebrow{
  font-family:var(--font-utility);
  font-size:12px;
  letter-spacing:3.5px;
  text-transform:uppercase;
  color:var(--maroon);
  font-weight:600;
  display:inline-flex;
  align-items:center;
  gap:12px;
}
.eyebrow::before{
  content:'';
  width:28px; height:1px;
  background:var(--maroon);
  display:inline-block;
}

h1,h2,h3,h4{
  font-family:var(--font-display);
  color:var(--ink);
  font-weight:600;
  line-height:1.15;
}
.section-title{
  font-size:clamp(32px,4.5vw,52px);
  margin:14px 0 16px;
}
.section-sub{
  font-family:var(--font-body);
  color:var(--text-muted);
  max-width:640px;
  font-size:16.5px;
}
.section-head{ margin-bottom:56px; }
.section-head.center{ text-align:center; margin-left:auto; margin-right:auto; }
.section-head.center .section-sub{ margin-left:auto; margin-right:auto; }

section{ padding:85px 0; position:relative; }
@media(max-width:768px){ section{ padding:72px 0; } }

/* -------- Paisley motif (signature element) -------- */
.motif{
  width:46px; height:46px;
  opacity:0.9;
  flex-shrink:0;
}
.motif-divider{
  display:flex; align-items:center; justify-content:center;
  gap:18px; margin:0 0 18px;
}
.motif-divider .line{
  height:1px; width:60px;
  background:linear-gradient(90deg, transparent, var(--gold), transparent);
}
.motif-bg{
  position:absolute;
  opacity:0.05;
  pointer-events:none;
  z-index:0;
}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-family:var(--font-utility);
  font-size:13px;
  font-weight:600;
  letter-spacing:1.5px;
  text-transform:uppercase;
  padding:16px 34px;
  border-radius:var(--radius);
  transition:var(--transition);
  white-space:nowrap;
}
.btn-primary{
  background:var(--maroon);
  color:var(--white);
  border:1px solid var(--maroon);
}
.btn-primary:hover{ background:#611d27; transform:translateY(-2px); box-shadow:var(--shadow-soft); }
.btn-outline{
  background:transparent;
  color:var(--ink);
  border:1px solid var(--ink);
}
.btn-outline:hover{ background:var(--ink); color:var(--white); transform:translateY(-2px); }
.btn-gold{
  background:var(--gold);
  color:var(--ink);
  border:1px solid var(--gold);
}
.btn-gold:hover{ background:var(--gold-light); transform:translateY(-2px); }
.btn-light{
  background:transparent;
  color:var(--white);
  border:1px solid rgba(255,255,255,0.55);
}
.btn-light:hover{ background:rgba(255,255,255,0.12); border-color:var(--white); }

/* =========================================================
   HEADER / NAV
   ========================================================= */
.site-header{
  position:fixed;
  top:0; left:0; right:0;
  z-index:1000;
  padding:20px 0;
  transition:var(--transition);
  background:transparent;
}
.site-header.scrolled{
  background:rgba(247,243,236,0.94);
  backdrop-filter:blur(10px);
  padding:12px 0;
  box-shadow:0 2px 20px rgba(27,36,32,0.08);
}
.nav-wrap{
  display:flex;
  align-items:center;
  justify-content:space-between;
}
.logo{
  font-family:var(--font-display);
  font-size:26px;
  font-weight:700;
  color:var(--white);
  letter-spacing:0.5px;
  transition:var(--transition);
  display:flex;
  align-items:center;
  gap:8px;
}
.logo span{ color:var(--gold); }
.site-header.scrolled .logo{ color:var(--ink); }
.no-hero .logo{ color:var(--ink); }
.no-hero.site-header{ background:rgba(247,243,236,0.96); backdrop-filter:blur(10px); box-shadow:0 2px 20px rgba(27,36,32,0.08); padding:12px 0;}

.nav-links{
  display:flex;
  align-items:center;
  gap:38px;
}
.nav-links a{
  font-family:var(--font-utility);
  font-size:13px;
  letter-spacing:1px;
  text-transform:uppercase;
  font-weight:500;
  color:var(--white);
  position:relative;
  padding:6px 0;
  transition:var(--transition);
}
.no-hero .nav-links a{ color:var(--ink); }
.site-header.scrolled .nav-links a{ color:var(--ink); }
.nav-links a::after{
  content:'';
  position:absolute; left:0; bottom:0;
  width:0; height:1px;
  background:var(--gold);
  transition:var(--transition);
}
.nav-links a:hover::after, .nav-links a.active::after{ width:100%; }
.nav-links a.active{ color:var(--gold) !important; }

.nav-cta{ display:flex; align-items:center; gap:22px; }
.nav-cta .btn{ padding:12px 26px; }
.nav-phone{
  font-family:var(--font-utility); font-size:13.5px; font-weight:600;
  color:var(--white); transition:var(--transition); letter-spacing:0.3px;
}
.no-hero .nav-phone, .site-header.scrolled .nav-phone{ color:var(--ink); }
.nav-phone:hover{ color:var(--gold); }

.burger{
  display:none;
  flex-direction:column;
  gap:5px;
  width:30px;
  z-index:1100;
}
.burger span{
  height:2px; width:100%;
  background:var(--white);
  transition:var(--transition);
}
.no-hero .burger span, .site-header.scrolled .burger span{ background:var(--ink); }

@media(max-width:940px){
  .nav-links{
    position:fixed; top:0; right:0;
    height:100vh; width:min(320px,80vw);
    background:var(--ink);
    flex-direction:column;
    justify-content:center;
    gap:30px;
    transform:translateX(100%);
    transition:var(--transition);
  }
  .nav-links.open{ transform:translateX(0); }
  .nav-links a{ color:var(--ivory) !important; font-size:15px; }
  .nav-cta{ display:none; }
  .burger{ display:flex; }
  .burger.open span:nth-child(1){ transform:translateY(7px) rotate(45deg); }
  .burger.open span:nth-child(2){ opacity:0; }
  .burger.open span:nth-child(3){ transform:translateY(-7px) rotate(-45deg); }
}

/* =========================================================
   HERO / BANNER (animated)
   ========================================================= */
.hero{
  position:relative;
  min-height:100vh;
  display:flex;
  align-items:center;
  background:linear-gradient(160deg, var(--ink) 0%, var(--ink-soft) 55%, #2b3a30 100%);
  overflow:hidden;
  color:var(--white);
}
.hero-particles{
  position:absolute; inset:0;
  overflow:hidden;
  z-index:1;
}
.petal{
  position:absolute;
  top:-40px;
  opacity:0.55;
  animation:fall linear infinite;
}
.petal svg{ width:100%; height:100%; }
@keyframes fall{
  0%{ transform:translateY(0) translateX(0) rotate(0deg); }
  50%{ transform:translateY(50vh) translateX(30px) rotate(180deg); }
  100%{ transform:translateY(110vh) translateX(-20px) rotate(360deg); }
}
.hero-glow{
  position:absolute;
  width:600px; height:600px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(184,147,90,0.25), transparent 70%);
  top:-150px; right:-150px;
  z-index:1;
  animation:pulse 6s ease-in-out infinite;
}
@keyframes pulse{
  0%,100%{ opacity:0.6; transform:scale(1); }
  50%{ opacity:1; transform:scale(1.1); }
}
.hero-content{
  position:relative; z-index:2;
  max-width:760px;
  padding-top:90px;
}
.hero .eyebrow{ color:var(--gold-light); }
.hero .eyebrow::before{ background:var(--gold-light); }
.hero h1{
  color:var(--white);
  font-size:clamp(42px,7vw,68px);
  margin:10px 0 5px;
  animation:riseIn 1s var(--transition) both;
}
.hero h1 em{ font-style:italic; color:var(--gold-light); }
.hero p.lead{
  font-size:clamp(16px,1.6vw,19px);
  color:rgba(247,243,236,0.85);
  max-width:540px;
  margin-bottom:40px;
  animation:riseIn 1s var(--transition) 0.15s both;
}
.hero-actions{
  display:flex; gap:18px; flex-wrap:wrap;
  animation:riseIn 1s var(--transition) 0.3s both;
}
@keyframes riseIn{
  from{ opacity:0; transform:translateY(24px); }
  to{ opacity:1; transform:translateY(0); }
}
.hero-stats{
  position:absolute;
  bottom:40px; left:0; right:0;
  z-index:2;
}
.hero-stats .container{
  display:flex; gap:60px; flex-wrap:wrap;
  border-top:1px solid rgba(247,243,236,0.15);
  padding-top:26px;
}
.hero-stat b{
  display:block;
  font-family:var(--font-display);
  font-size:34px;
  color:var(--gold-light);
}
.hero-stat span{
  font-family:var(--font-utility);
  font-size:11px;
  letter-spacing:1.5px;
  text-transform:uppercase;
  color:rgba(247,243,236,0.7);
}
.scroll-cue{
  position:absolute; bottom:40px; right:40px;
  z-index:2;
  writing-mode:vertical-rl;
  font-family:var(--font-utility);
  font-size:11px;
  letter-spacing:2px;
  text-transform:uppercase;
  color:rgba(247,243,236,0.6);
  display:flex; align-items:center; gap:12px;
}
.scroll-cue::after{
  content:'';
  width:1px; height:50px;
  background:rgba(247,243,236,0.4);
  animation:scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine{ 0%,100%{ transform:scaleY(1); opacity:0.4; } 50%{ transform:scaleY(0.6); opacity:1; } }
@media(max-width:768px){ .hero-stats .container{ gap:34px; } .scroll-cue{ display:none; } }

/* Inner page hero (non-home) */
.page-hero{
  position:relative;
  min-height:12vh;
  display:flex;
  align-items:center;
  background:linear-gradient(160deg, var(--ink) 0%, var(--ink-soft) 60%, #2b3a30 100%);
  color:var(--white);
  overflow:hidden;
}
.page-hero .container{ position:relative; z-index:2; padding-top:70px; }
.page-hero h1{ color:var(--white); font-size:clamp(38px,6vw,64px); margin:16px 0 14px; }
.page-hero .eyebrow{ color:var(--gold-light); }
.page-hero .eyebrow::before{ background:var(--gold-light); }
.breadcrumb{
  font-family:var(--font-utility);
  font-size:12px;
  letter-spacing:1px;
  color:rgba(247,243,236,0.7);
  text-transform:uppercase;
}
.breadcrumb a{ color:var(--gold-light); }
.breadcrumb a:hover{ text-decoration:underline; }

/* =========================================================
   ABOUT SECTION
   ========================================================= */
.about-grid{
  display:grid;
  grid-template-columns:0.9fr 1.1fr;
  gap:70px;
  align-items:center;
}
.about-frame{
  position:relative;
}
.about-frame img{
  width:100%;
  border-radius:var(--radius);
  box-shadow:var(--shadow-strong);
}
.about-frame::before{
  content:'';
  position:absolute;
  top:-22px; left:-22px;
  width:60%; height:60%;
  border-top:2px solid var(--gold);
  border-left:2px solid var(--gold);
  z-index:-1;
}
.about-badge{
  position:absolute;
  bottom:-30px; right:-24px;
  background:var(--maroon);
  color:var(--white);
  padding:22px 26px;
  text-align:center;
  box-shadow:var(--shadow-strong);
}
.about-badge b{ display:block; font-family:var(--font-display); font-size:32px; }
.about-badge span{ font-family:var(--font-utility); font-size:10px; letter-spacing:1.5px; text-transform:uppercase; }
.about-copy p{ color:var(--text-muted); margin-bottom:18px; }
.about-list{ display:grid; grid-template-columns:1fr 1fr; gap:14px; margin:26px 0 32px; }
.about-list li{ display:flex; align-items:center; gap:10px; font-family:var(--font-utility); font-size:14px; }
.about-list li::before{ content:'✦'; color:var(--gold); font-size:12px; }
@media(max-width:900px){ .about-grid{ grid-template-columns:1fr; } .about-badge{ right:8px; } }

/* =========================================================
   OFFER / SERVICES CARDS
   ========================================================= */
.offer-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}
.offer-card{
  background:var(--white);
  padding:44px 34px;
  border:1px solid var(--ivory-dark);
  transition:var(--transition);
  position:relative;
}
.offer-card:hover{
  transform:translateY(-8px);
  box-shadow:var(--shadow-soft);
  border-color:var(--gold);
}
.offer-icon{
  width:56px; height:56px;
  margin-bottom:22px;
  color:var(--maroon);
}
.offer-card h3{ font-size:24px; margin-bottom:12px; }
.offer-card p{ color:var(--text-muted); font-size:15px; margin-bottom:18px; }
.offer-card a{
  font-family:var(--font-utility);
  font-size:12px; font-weight:600;
  letter-spacing:1px; text-transform:uppercase;
  color:var(--maroon);
  display:inline-flex; align-items:center; gap:8px;
}
.offer-card a::after{ content:'→'; transition:var(--transition); }
.offer-card a:hover::after{ transform:translateX(4px); }
@media(max-width:940px){ .offer-grid{ grid-template-columns:1fr 1fr; } }
@media(max-width:640px){ .offer-grid{ grid-template-columns:1fr; } }

/* =========================================================
   PRICING
   ========================================================= */
.pricing-toggle-wrap{ display:flex; justify-content:center; margin-bottom:50px; }
.pricing-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:26px;
  align-items:stretch;
}
.price-card{
  background:var(--white);
  border:1px solid var(--ivory-dark);
  padding:42px 32px;
  display:flex; flex-direction:column;
  position:relative;
  transition:var(--transition);
}
.price-card:hover{ box-shadow:var(--shadow-soft); transform:translateY(-6px); }
.price-card.featured{
  /*background:var(--ink);*/
  color:var(--ivory);
  transform:scale(1.04);
  box-shadow:var(--shadow-strong);
  z-index:2;
}
.price-card.featured:hover{ transform:scale(1.04) translateY(-6px); }
.price-card.featured h3, .price-card.featured .price-amt{ color:#2f2a2a; }
.price-card.featured .price-sub, .price-card.featured li{ color:rgba(59 56 50 / 75%); }
.price-tag{
  position:absolute; top:-14px; right:28px;
  background:var(--maroon);
  color:var(--white);
  font-family:var(--font-utility);
  font-size:11px; letter-spacing:1px; text-transform:uppercase;
  padding:6px 16px;
}
.price-card h3{ font-size:22px; letter-spacing:1px; text-transform:uppercase; font-family:var(--font-utility); font-weight:600; margin-bottom:6px;}
.price-amt{ font-family:var(--font-display); font-size:44px; color:var(--maroon); margin-bottom:2px; }
.price-card.featured .price-amt{ color:#2b2927; }
.price-sub{ font-family:var(--font-utility); font-size:12px; color:var(--text-muted); text-transform:uppercase; letter-spacing:1px; margin-bottom:26px; }
.price-card ul{ flex:1; margin-bottom:30px; }
.price-card li{
  padding:10px 0;
  border-bottom:1px dashed var(--ivory-dark);
  font-size:14.5px;
  display:flex; gap:10px;
  color:var(--text-muted);
}
.price-card.featured li{ border-bottom-color:rgba(247,243,236,0.15); }
.price-card li::before{ content:'✓'; color:var(--gold); font-weight:700; }
.price-card .btn{ justify-content:center; width:100%; }
@media(max-width:940px){ .pricing-grid{ grid-template-columns:1fr; } .price-card.featured{ transform:none; order:-1; } .price-card.featured:hover{ transform:translateY(-6px); } }

.prewedding-banner{
  margin-top:60px;
  background:linear-gradient(120deg, var(--maroon), #5c1c26);
  color:var(--white);
  padding:50px 48px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:30px;
  flex-wrap:wrap;
  box-shadow:var(--shadow-strong);
}
.prewedding-banner h3{ color:var(--white); font-size:30px; margin-bottom:10px; }
.prewedding-banner p{ color:rgba(247,243,236,0.85); max-width:520px; }
.prewedding-banner .price-amt{ color:var(--gold-light); font-size:32px; }

/* =========================================================
   TEAM
   ========================================================= */
.team-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:26px;
}
.team-card{ text-align:center; }
.team-photo{
  position:relative;
  overflow:hidden;
  margin-bottom:20px;
  aspect-ratio:3/3.6;
}
.team-photo img{ width:100%; height:100%; object-fit:cover; transition:var(--transition); }
.team-card:hover .team-photo img{ transform:scale(1.08); }
.team-social{
  position:absolute; bottom:0; left:0; right:0;
  background:rgba(27,36,32,0.85);
  display:flex; justify-content:center; gap:14px;
  padding:12px;
  transform:translateY(100%);
  transition:var(--transition);
}
.team-card:hover .team-social{ transform:translateY(0); }
.team-social a{ color:var(--gold-light); font-size:13px; }
.team-card h3{ font-size:20px; margin-bottom:2px; }
.team-card span{ font-family:var(--font-utility); font-size:12px; color:var(--maroon); text-transform:uppercase; letter-spacing:1px; }
@media(max-width:940px){ .team-grid{ grid-template-columns:1fr 1fr; } }
@media(max-width:520px){ .team-grid{ grid-template-columns:1fr 1fr; gap:16px;} }

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.testimonial-wrap{
  background:var(--ink);
  color:var(--ivory);
  position:relative;
  overflow:hidden;
}
.testimonial-slider{
  position:relative;
  max-width:760px;
  margin:0 auto;
  text-align:center;
  min-height:260px;
}
.t-slide{
  display:none;
  animation:fadeSlide 0.6s ease;
}
.t-slide.active{ display:block; }
@keyframes fadeSlide{ from{ opacity:0; transform:translateY(10px);} to{opacity:1; transform:translateY(0);} }
.t-quote{
  font-family:var(--font-display);
  font-size:clamp(20px,2.6vw,28px);
  font-style:italic;
  line-height:1.5;
  margin-bottom:30px;
  color:var(--ivory);
}
.t-person{ display:flex; align-items:center; justify-content:center; gap:14px; }
.t-person img{ width:52px; height:52px; border-radius:50%; object-fit:cover; border:2px solid var(--gold); }
.t-person-name{ text-align:left; }
.t-person-name b{ font-family:var(--font-body); font-size:15px; display:block; }
.t-person-name span{ font-family:var(--font-utility); font-size:12px; color:var(--gold-light); text-transform:uppercase; letter-spacing:1px; }
.t-stars{ color:var(--gold); margin-bottom:16px; letter-spacing:3px; }
.t-dots{ display:flex; justify-content:center; gap:10px; margin-top:44px; }
.t-dots button{ width:9px; height:9px; border-radius:50%; background:rgba(247,243,236,0.3); transition:var(--transition); }
.t-dots button.active{ background:var(--gold); width:26px; border-radius:5px; }

/* =========================================================
   GALLERY / WORKS
   ========================================================= */
.filter-bar{ display:flex; justify-content:center; gap:10px; flex-wrap:wrap; margin-bottom:44px; }
.filter-bar button{
  font-family:var(--font-utility); font-size:12px; font-weight:600;
  letter-spacing:1px; text-transform:uppercase;
  padding:11px 22px;
  border:1px solid var(--ivory-dark);
  transition:var(--transition);
}
.filter-bar button.active, .filter-bar button:hover{ background:var(--ink); color:var(--white); border-color:var(--ink); }

.gallery-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  grid-auto-rows:220px;
  gap:16px;
}
.gallery-item{
  position:relative;
  overflow:hidden;
  cursor:pointer;
}
.gallery-item.tall{ grid-row:span 2; }
.gallery-item.wide{ grid-column:span 2; }
.gallery-item img{ width:100%; height:100%; object-fit:cover; transition:0.6s var(--transition); }
.gallery-item:hover img{ transform:scale(1.1); }
.gallery-overlay{
  position:absolute; inset:0;
  background:linear-gradient(0deg, rgba(27,36,32,0.85), transparent 60%);
  display:flex; align-items:flex-end;
  padding:20px;
  opacity:0;
  transition:var(--transition);
}
.gallery-item:hover .gallery-overlay{ opacity:1; }
.gallery-overlay span{ color:var(--white); font-family:var(--font-utility); font-size:12px; letter-spacing:1px; text-transform:uppercase; }
.gallery-overlay b{ color:var(--gold-light); display:block; font-family:var(--font-display); font-size:20px; }
@media(max-width:940px){ .gallery-grid{ grid-template-columns:repeat(2,1fr); } .gallery-item.wide{ grid-column:span 2; } }
@media(max-width:560px){ .gallery-grid{ grid-template-columns:1fr; grid-auto-rows:260px;} .gallery-item.wide, .gallery-item.tall{ grid-column:span 1; grid-row:span 1;} }

/* lightbox */
.lightbox{
  position:fixed; inset:0; z-index:2000;
  background:rgba(15,18,15,0.94);
  display:none;
  align-items:center; justify-content:center;
  padding:30px;
}
.lightbox.open{ display:flex; }
.lightbox img{ max-width:90vw; max-height:85vh; box-shadow:var(--shadow-strong); }
.lightbox-close{ position:absolute; top:26px; right:34px; color:var(--white); font-size:32px; }
.lightbox-nav{ position:absolute; top:50%; transform:translateY(-50%); color:var(--white); font-size:30px; padding:10px 16px;}
.lightbox-prev{ left:20px; }
.lightbox-next{ right:20px; }

/* =========================================================
   CUSTOMERS / LOGO STRIP
   ========================================================= */
.customers-strip{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:40px;
  flex-wrap:wrap;
  opacity:0.75;
}
.customers-strip img{ height:34px; width:auto; filter:grayscale(1); }
.customer-stats{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:26px;
  text-align:center;
  margin-top:60px;
}
.customer-stats div b{ font-family:var(--font-display); font-size:44px; color:var(--maroon); display:block; }
.customer-stats div span{ font-family:var(--font-utility); font-size:12px; text-transform:uppercase; letter-spacing:1px; color:var(--text-muted); }
@media(max-width:768px){ .customer-stats{ grid-template-columns:1fr 1fr; } }

/* =========================================================
   CTA STRIP
   ========================================================= */
.cta-strip{
  background:linear-gradient(120deg, var(--maroon), #5c1c26);
  color:var(--white);
  padding:70px 0;
  text-align:center;
}
.cta-strip h2{ color:var(--white); margin-bottom:16px; }
.cta-strip p{ color:rgba(247,243,236,0.85); max-width:560px; margin:0 auto 34px; }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer{
  background:var(--ink);
  color:rgba(247,243,236,0.75);
  padding:80px 0 0;
}
.footer-grid{
  display:grid;
  grid-template-columns:1.4fr 1fr 1fr 1.2fr;
  gap:50px;
  padding-bottom:60px;
  border-bottom:1px solid rgba(247,243,236,0.1);
}
.footer-grid h4{ color:var(--white); font-family:var(--font-utility); font-size:13px; letter-spacing:1.5px; text-transform:uppercase; margin-bottom:22px; }
.footer-about .logo{ color:var(--white); margin-bottom:16px; }
.footer-about p{ font-size:14px; margin-bottom:20px; }
.footer-social{ display:flex; gap:14px; }
.footer-social a{
  width:38px; height:38px;
  border:1px solid rgba(247,243,236,0.2);
  display:flex; align-items:center; justify-content:center;
  border-radius:50%;
  transition:var(--transition);
}
.footer-social a:hover{ background:var(--gold); border-color:var(--gold); color:var(--ink); }
.footer-links li{ margin-bottom:12px; font-size:14.5px; }
.footer-links a:hover{ color:var(--gold-light); }
.footer-contact li{ margin-bottom:16px; font-size:14.5px; display:flex; gap:12px; }
.footer-contact li b{ color:var(--gold-light); font-weight:400; }
.footer-bottom{
  display:flex; justify-content:space-between; align-items:center;
  padding:26px 0; flex-wrap:wrap; gap:10px;
  font-size:13px;
}
.footer-bottom a:hover{ color:var(--gold-light); }
@media(max-width:900px){ .footer-grid{ grid-template-columns:1fr 1fr; } }
@media(max-width:560px){ .footer-grid{ grid-template-columns:1fr; } }

/* =========================================================
   WHATSAPP FLOAT
   ========================================================= */
.wa-float{
  position:fixed; bottom:26px; right:26px; z-index:900;
  width:58px; height:58px;
  background:#25D366;
  border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 8px 24px rgba(0,0,0,0.25);
  animation:waPulse 2.5s ease-in-out infinite;
}
@keyframes waPulse{ 0%,100%{ box-shadow:0 8px 24px rgba(37,211,102,0.35);} 50%{ box-shadow:0 8px 32px rgba(37,211,102,0.6);} }

/* =========================================================
   REVEAL ON SCROLL
   ========================================================= */
.reveal{ opacity:0; transform:translateY(28px); transition:opacity 0.8s ease, transform 0.8s ease; }
.reveal.in{ opacity:1; transform:translateY(0); }

/* =========================================================
   GENERIC PAGE PARTS (about/services/contact forms)
   ========================================================= */
.two-col{ display:grid; grid-template-columns:1fr 1fr; gap:70px; align-items:center; }
@media(max-width:900px){ .two-col{ grid-template-columns:1fr; gap:40px; } }

.timeline{ position:relative; padding-left:36px; }
.timeline::before{ content:''; position:absolute; left:6px; top:6px; bottom:6px; width:1px; background:var(--ivory-dark); }
.timeline-item{ position:relative; margin-bottom:38px; }
.timeline-item::before{ content:''; position:absolute; left:-36px; top:4px; width:13px; height:13px; border-radius:50%; background:var(--maroon); border:3px solid var(--ivory); }
.timeline-item b{ font-family:var(--font-utility); font-size:12px; color:var(--maroon); letter-spacing:1px; text-transform:uppercase; }
.timeline-item h4{ margin:6px 0 8px; font-size:22px; }
.timeline-item p{ color:var(--text-muted); font-size:14.5px; }

.value-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:24px; margin-top:60px; }
.value-card{ text-align:center; padding:20px; }
.value-card .motif{ margin:0 auto 16px; }
.value-card h4{ font-size:19px; margin-bottom:8px; }
.value-card p{ font-size:14px; color:var(--text-muted); }
@media(max-width:900px){ .value-grid{ grid-template-columns:1fr 1fr; } }

.service-detail{ display:grid; grid-template-columns:1fr 1fr; gap:70px; align-items:center; margin-bottom:120px; }
.service-detail:nth-child(even) .service-copy{ order:2; }
.service-detail img{ box-shadow:var(--shadow-strong); }
.service-copy .eyebrow{ margin-bottom:16px; }
.service-copy ul{ margin:22px 0; }
.service-copy li{ padding:8px 0; font-size:14.5px; display:flex; gap:10px; color:var(--text-muted); }
.service-copy li::before{ content:'✦'; color:var(--gold); }
@media(max-width:900px){ .service-detail{ grid-template-columns:1fr; gap:34px; margin-bottom:70px;} .service-detail:nth-child(even) .service-copy{ order:0; } }

/* Contact page */
.contact-grid{ display:grid; grid-template-columns:0.9fr 1.1fr; gap:60px; }
.contact-info-card{ background:var(--ink); color:var(--ivory); padding:46px 38px; }
.contact-info-card h3{ color:var(--white); margin-bottom:24px; }
.contact-info-row{ display:flex; gap:16px; margin-bottom:26px; }
.contact-info-row b{ display:block; color:var(--gold-light); font-family:var(--font-utility); font-size:12px; letter-spacing:1px; text-transform:uppercase; margin-bottom:4px; }
.contact-info-row span{ font-size:14.5px; color:rgba(247,243,236,0.85); }
.contact-form{ background:var(--white); padding:46px 38px; border:1px solid var(--ivory-dark); }
.form-row{ display:grid; grid-template-columns:1fr 1fr; gap:20px; }
.form-group{ margin-bottom:22px; }
.form-group label{ display:block; font-family:var(--font-utility); font-size:12px; letter-spacing:1px; text-transform:uppercase; margin-bottom:8px; color:var(--text-muted); }
.form-group input, .form-group select, .form-group textarea{
  width:100%; padding:14px 16px; border:1px solid var(--ivory-dark); background:var(--ivory);
  font-size:14.5px; transition:var(--transition);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus{ outline:none; border-color:var(--gold); background:var(--white); }
.form-note{ font-size:13px; color:var(--text-muted); margin-top:14px; }
.map-embed{ margin-top:60px; border:1px solid var(--ivory-dark); }
.map-embed iframe{ width:100%; height:400px; border:0; display:block; filter:grayscale(0.3) contrast(1.05); }

.faq-item{ border-bottom:1px solid var(--ivory-dark); padding:22px 0; }
.faq-q{ display:flex; justify-content:space-between; align-items:center; cursor:pointer; font-family:var(--font-display); font-size:19px; }
.faq-q .plus{ font-size:22px; color:var(--maroon); transition:var(--transition); }
.faq-item.open .faq-q .plus{ transform:rotate(45deg); }
.faq-a{ max-height:0; overflow:hidden; transition:var(--transition); color:var(--text-muted); font-size:14.5px; }
.faq-item.open .faq-a{ max-height:300px; margin-top:14px; }

/* skip link */
.skip-link{ position:absolute; left:-999px; top:0; background:var(--gold); color:var(--ink); padding:12px 20px; z-index:3000; }
.skip-link:focus{ left:10px; top:10px; }

:focus-visible{ outline:2px solid var(--gold); outline-offset:3px; }

@media (prefers-reduced-motion: reduce){
  *{ animation-duration:0.01ms !important; animation-iteration-count:1 !important; transition-duration:0.01ms !important; scroll-behavior:auto !important; }
}


/* ============ WEDDING FILMS ============ */
.wedding-films {
  padding: var(--space-xxl, 6rem) 0;
  position: relative;
}

.featured-film {
  max-width: 980px;
  margin: 0 auto 2.5rem;
}

.films-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}
@media (max-width: 900px) { .films-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .films-grid { grid-template-columns: 1fr; } }

/* Card */
.film-card {
  background: var(--ivory, #fff);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-soft, 0 8px 24px rgba(0,0,0,0.08));
  transition: transform .45s cubic-bezier(.2,.7,.3,1), box-shadow .45s;
  cursor: pointer;
}
.film-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-strong, 0 24px 50px rgba(0,0,0,0.18));
}

/* Media */
.film-card--lg .film-media { aspect-ratio: 16 / 9; }
.film-media {
  position: relative;
  aspect-ratio: 4 / 3;
  background: #141414;
  overflow: hidden;
}
.film-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .7s cubic-bezier(.2,.7,.3,1);
  pointer-events: none; /* hover par bhi drag/download na ho */
}
.film-card:hover .film-video { transform: scale(1.06); }

/* Badge */
.film-badge {
  position: absolute;
  top: 14px; left: 14px;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 100px;
  font-weight: 600;
}

/* Duration pill */
.film-duration {
  position: absolute;
  bottom: 12px; right: 12px;
  background: rgba(0,0,0,.72);
  color: #fff;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 6px;
  font-variant-numeric: tabular-nums;
  letter-spacing: .03em;
}

/* Expand button */
.film-expand {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(.85);
  width: 54px; height: 54px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,.92);
  color: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transition: opacity .3s, transform .3s;
  backdrop-filter: blur(6px);
}
.film-card:hover .film-expand {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.film-expand:hover { background: #fff; }

/* Info */
.film-info { padding: 1.1rem 1.25rem 1.3rem; }
.film-title {
  font-family: var(--serif, Georgia, serif);
  font-size: 1.12rem;
  font-weight: 600;
  margin: 0 0 .25rem;
  color: var(--ink, #1a1a1a);
}
.film-meta {
  font-size: .85rem;
  color: var(--muted, #6b6b6b);
  margin: 0;
  letter-spacing: .02em;
}

/* Hide download button in native controls */
.film-video::-webkit-media-controls-download-button,
.film-video::-internal-media-controls-download-button,
.film-modal__video::-webkit-media-controls-download-button,
.film-modal__video::-internal-media-controls-download-button {
  display: none !important;
}
.film-video::-webkit-media-controls-enclosure,
.film-modal__video::-webkit-media-controls-enclosure {
  overflow: hidden;
}
.film-video::-webkit-media-controls-panel,
.film-modal__video::-webkit-media-controls-panel {
  width: calc(100% + 30px);
}

/* ============ MODAL ============ */
.film-modal {
  position: fixed;
  inset: 0;
  background: rgba(10,10,10,.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s ease;
}
.film-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}
.film-modal__content {
  width: 100%;
  max-width: 1000px;
  aspect-ratio: 16 / 9;
  box-shadow: 0 30px 100px rgba(0,0,0,.55);
  border-radius: 14px;
  overflow: hidden;
  transform: scale(.94);
  transition: transform .35s cubic-bezier(.2,.7,.3,1);
  background: #000;
}
.film-modal.is-open .film-modal__content { transform: scale(1); }
.film-modal__video {
  width: 100%; height: 100%;
  display: block;
  background: #000;
}
.film-modal__close {
  position: absolute;
  top: 22px; right: 22px;
  width: 48px; height: 48px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,.12);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, transform .2s;
}
.film-modal__close:hover {
  background: rgba(255,255,255,.22);
  transform: rotate(90deg);
}

/* Reveal animation fallback (agar .reveal class hai site me) */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s ease, transform .8s cubic-bezier(.2,.7,.3,1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }




/* OFFER SECTION */

#offer{
    position:relative;
    overflow:hidden;
    padding:120px 0;
    background:#000;
}

/* Video */

.offer-video{

    position:absolute;
    top:0;
    left:0;

    width:100%;
    height:100%;

    object-fit:cover;

    z-index:0;

    pointer-events:none;
}

/* Overlay */

.offer-overlay{

    position:absolute;

    inset:0;

    background:rgba(0,0,0,.45);

    z-index:1;
}

/* Content */

#offer .container{

    position:relative;

    z-index:2;
}

/* Text */

#offer h2,
#offer p,
#offer h3,
#offer a,
#offer span{

    color:#fff;
}

/* Cards */

.offer-card{

    background:rgba(255,255,255,.08);

    backdrop-filter:blur(12px);

    border:1px solid rgba(255,255,255,.15);

    border-radius:18px;

    transition:.35s;
}

.offer-card:hover{

    transform:translateY(-10px);

    background:rgba(255,255,255,.14);
}

.offer-icon{

    width:60px;

    height:60px;

    color:#fff;
}

.offer-card a{

    color:#FFD27A;

    font-weight:600;
}

.offer-card a:hover{

    color:#fff;
}


.offer-cards{
    box-shadow: 0 0 10px #cfd6c4;
}