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

:root{
  --orange:#F0792B;
  --orange-deep:#D9631A;
  --black:#111111;
  --white:#FFFFFF;
  --ink-dim:#4A4A4A;
  --line:rgba(0,0,0,0.08);
}
*{box-sizing:border-box; margin:0; padding:0;}
html{scroll-behavior:smooth;}
body{
  background:var(--white);
  color:var(--black);
  font-family:'Poppins', sans-serif;
  line-height:1.6;
  overflow-x:hidden;
}
a{color:inherit; text-decoration:none;}
img{max-width:100%; display:block;}
.wrap{max-width:900px; margin:0 auto; padding:0 24px;}

@media (prefers-reduced-motion: reduce){
  *{animation-duration:0.001ms !important; animation-iteration-count:1 !important;}
}

/* ---------- marquee call bar ---------- */
.marquee-bar{
  background:var(--orange);
  color:#fff;
  overflow:hidden;
  white-space:nowrap;
  padding:12px 0;
  font-weight:600;
  font-size:0.95rem;
}
.marquee-track{
  display:inline-block;
  animation:scrollLeft 16s linear infinite;
  padding-left:100%;
}
.marquee-track span{ margin-right:80px; }
@keyframes scrollLeft{
  from{ transform:translateX(0); }
  to{ transform:translateX(-50%); }
}

/* ---------- nav / logo ---------- */
nav{
  padding:12px 0 0;
  background:#fff;
  position:relative;
}
nav .wrap{
  display:flex; align-items:center; justify-content:space-between;
  padding-bottom:12px;
}
.logo-block{text-align:left; display:block;}
.logo-photo{
  height:170px; width:auto; display:block;
}
@media (max-width:480px){
  .logo-photo{height:120px;}
}
.menu-btn{
  background:none; border:none; font-size:1.5rem; cursor:pointer; color:var(--black);
}
.navlinks{
  position:absolute; top:100%; left:0; right:0;
  background:#fff;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
  display:none;
  flex-direction:column;
  padding:18px 24px;
  gap:16px;
  z-index:40;
}
.navlinks.open{display:flex;}
.navlinks a{font-size:0.95rem; color:var(--black); font-weight:500;}
.navlinks a.current{color:var(--orange-deep);}

@media (min-width:800px){
  .menu-btn{display:none;}
  .navlinks{
    position:static; display:flex; flex-direction:row; gap:36px;
    border:none; padding:0; background:none;
  }
}

/* ---------- hero ---------- */
.hero{padding-top:40px; padding-bottom:60px;}
.hero h1{
  font-family:'Poppins'; font-weight:700; font-size:clamp(1.9rem,5vw,2.6rem);
  line-height:1.15; margin-bottom:20px;
}
.hero p{color:var(--ink-dim); max-width:560px; margin-bottom:28px; font-size:1rem;}
.pill-btn{
  display:inline-block;
  background:var(--black); color:var(--orange);
  padding:14px 34px; border-radius:30px;
  font-weight:600; font-size:0.95rem;
  transition:background .18s ease;
}
.pill-btn:hover{background:var(--orange-deep); color:#fff;}
.pill-btn.outline{
  background:transparent; color:var(--black); border:2px solid var(--black);
}

/* ---------- photo gallery (hero images) ---------- */
.gallery{
  display:flex; flex-direction:column; align-items:center; gap:28px;
  padding-top:20px; padding-bottom:40px;
}
.gallery .ph{
  width:100%; max-width:420px;
  aspect-ratio:4/5;
  background:linear-gradient(135deg,#f2d9c4,#e8b48a);
  display:flex; align-items:center; justify-content:center;
  color:#8a5a30; font-size:0.85rem; text-align:center; padding:14px;
  border-radius:4px;
}
.gallery .ph.small{max-width:220px;}
.gallery .ph-img{
  width:100%; max-width:420px;
  aspect-ratio:4/5;
  object-fit:cover;
  border-radius:4px;
  box-shadow:0 6px 20px rgba(0,0,0,0.12);
}
.gallery .ph-img.small{max-width:220px;}

/* ---------- subtle thin section divider ---------- */
.thin-divider{
  height:1px; width:100%; max-width:1100px; margin:0 auto;
  background:linear-gradient(to right, transparent, var(--orange) 50%, transparent);
  opacity:0.55;
}
.gallery .ph-img.full{
  aspect-ratio:auto;
  object-fit:contain;
  background:linear-gradient(135deg,#f7ede2,#f0d9c2);
}
.gallery .ph-img.full.portrait{max-width:380px;}
.gallery .ph-img.full.landscape{max-width:560px;}

/* ---------- wave divider ---------- */
.wave-top{
  display:block; width:100%; line-height:0;
}
.wave-top svg{width:100%; height:60px; display:block;}

/* ---------- orange band section ---------- */
.band-orange{
  background:var(--orange);
  color:var(--black);
  padding:56px 0 70px;
}
.band-orange h2{
  font-family:'Poppins'; font-weight:700; font-size:clamp(1.7rem,4vw,2.3rem);
  margin-bottom:22px;
}
.band-orange p{max-width:640px; font-size:1rem; margin-bottom:16px;}

/* ---------- services ---------- */
.services{padding-top:56px; padding-bottom:56px;}
.services h2{
  font-family:'Poppins'; font-weight:700; font-size:clamp(1.7rem,4vw,2.3rem);
  margin-bottom:36px;
}
.service-block{margin-bottom:44px;}
.service-block .ph{
  width:100%; aspect-ratio:16/10;
  background:linear-gradient(135deg,#f2d9c4,#e8b48a);
  display:flex; align-items:center; justify-content:center;
  color:#8a5a30; font-size:0.85rem; text-align:center; padding:14px;
  border-radius:4px; margin-bottom:18px;
}
.service-block .ph-img{
  width:100%; aspect-ratio:16/10;
  object-fit:cover;
  border-radius:4px; margin-bottom:18px;
  box-shadow:0 6px 20px rgba(0,0,0,0.12);
}
.service-block h3{
  font-family:'Poppins'; font-weight:700; font-size:1.5rem; margin-bottom:10px;
}
.service-block p{color:var(--ink-dim); font-size:0.98rem;}

/* ---------- testimonials (orange band) ---------- */
.testi-card{
  background:var(--black); color:#fff;
  padding:26px; margin-bottom:18px; border-radius:2px;
}
.testi-card .who{
  display:flex; align-items:center; justify-content:space-between;
  font-weight:600; font-size:1.05rem; margin-bottom:14px;
}
.testi-card .mark{
  background:#fff; color:var(--black); border-radius:50%;
  width:30px; height:30px; display:flex; align-items:center; justify-content:center;
  font-size:0.9rem;
}
.testi-card p{color:#e8e8e8; font-size:0.95rem;}

/* ---------- floating buttons ---------- */
.float-btns{
  position:fixed; right:18px; bottom:18px; z-index:60;
  display:flex; flex-direction:column; gap:12px; align-items:center;
}
.float-btn{
  width:52px; height:52px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  font-size:1.4rem; color:#fff; cursor:pointer;
  box-shadow:0 4px 14px rgba(0,0,0,0.25);
  border:none;
}
.float-btn.whatsapp{background:#25D366;}
.float-btn.top{background:var(--black); font-size:1.2rem; display:none;}
.float-btns-left{
  position:fixed; left:18px; bottom:18px; z-index:60;
}
.float-btn.call{background:#fff;}

/* ---------- footer ---------- */
footer{
  background:var(--black); color:#fff; padding:56px 0 30px;
}
footer h4{
  font-family:'Playfair Display'; font-weight:600; letter-spacing:0.03em;
  font-size:1.25rem; margin-bottom:8px; text-align:center; color:var(--orange);
}
.footer-logo{
  display:block; margin:0 auto 24px; height:80px; width:auto;
}
footer .footer-tag{
  text-align:center; font-size:0.72rem; letter-spacing:0.18em; text-transform:uppercase;
  color:#8a8a8a; margin-bottom:24px;
}
.footer-info{text-align:center; margin-bottom:26px; color:#ddd; font-size:0.95rem;}
.footer-info a{color:#ddd;}
.footer-info p{margin-bottom:6px;}
.social-row{
  display:flex; justify-content:center; gap:14px; margin-bottom:26px;
}
.social-row a{
  width:38px; height:38px; border-radius:50%; background:#2b2b2b;
  display:flex; align-items:center; justify-content:center;
  transition:background .18s ease;
}
.social-row a:hover{background:var(--orange);}
.social-row svg{width:18px; height:18px; fill:#fff;}
.footer-links{text-align:center; margin-bottom:20px;}
.footer-links a{display:block; color:#ddd; font-size:0.9rem; margin-bottom:8px;}
.footer-bottom{text-align:center; color:#999; font-size:0.82rem; padding-top:16px; border-top:1px solid #2b2b2b;}

/* ---------- generic page hero (about/contact/legal) ---------- */
.page-hero{padding-top:44px; padding-bottom:30px;}
.page-hero h1{font-family:'Poppins'; font-weight:700; font-size:clamp(1.8rem,4vw,2.4rem);}
.page-hero p{color:var(--ink-dim); margin-top:12px; max-width:520px;}

.legal-body{padding-top:10px; padding-bottom:50px;}
.legal-body h2{font-family:'Poppins'; font-weight:700; font-size:1.25rem; margin:26px 0 10px;}
.legal-body p, .legal-body li{color:var(--ink-dim); margin-bottom:12px;}
.legal-body ul{padding-left:22px;}

.contact-line{display:flex; gap:14px; padding:14px 0; border-top:1px solid var(--line);}
.contact-line:last-child{border-bottom:1px solid var(--line);}
.contact-line .k{color:var(--orange-deep); font-size:0.78rem; text-transform:uppercase; letter-spacing:0.06em; min-width:90px; font-weight:700;}
.map-embed{border:1px solid var(--line); height:260px; width:100%; margin-top:24px;}

/* ---------- scroll reveal ---------- */
.reveal{
  opacity:0;
  transform:translateY(22px);
  transition:opacity .7s ease, transform .7s ease;
}
.reveal.in{
  opacity:1;
  transform:translateY(0);
}

.candle-deco{
  background:rgba(255,255,255,0.35);
  border-radius:6px;
  padding:14px 10px 6px;
}
