:root{
  --bg: #0e0c0a;
  --gold: #c9a45c;
  --gold-soft: #e3cb98;
  --cream: #f3ece0;
  --muted: #9c9489;
  --wa: #25D366;
  --pad: clamp(20px, 5vw, 72px);
  --radius: 10px;
}
*{box-sizing:border-box; margin:0; padding:0;}
html{overflow-x:hidden; scroll-behavior:smooth;}
body{
  background:var(--bg);
  color:var(--cream);
  font-family: Georgia, 'Times New Roman', serif;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
img{display:block; max-width:100%; height:auto;}
figure{margin:0;}
.util{
  font-family: Helvetica, Arial, sans-serif;
  letter-spacing:.12em;
  text-transform:uppercase;
  font-size:11px;
  color:var(--muted);
}

/* NAV */
.nav{
  position:sticky; top:0; z-index:100;
  display:flex; justify-content:space-between; align-items:center;
  gap:12px;
  padding:14px var(--pad);
  background:rgba(14,12,10,.92);
  backdrop-filter:blur(8px);
  border-bottom:1px solid rgba(201,164,92,.18);
}
.nav .name{font-size:clamp(14px,3.5vw,18px); letter-spacing:.04em; white-space:nowrap;}
.nav-links{display:flex; gap:8px; flex-shrink:0;}
.nav-link{
  font-family:Helvetica,sans-serif;
  font-size:10px; letter-spacing:.08em; text-transform:uppercase;
  background:none; border:1px solid var(--gold); color:var(--gold-soft);
  padding:8px 14px; transition:.25s; text-decoration:none; white-space:nowrap;
}
.nav-link:hover{background:rgba(201,164,92,.08);}
.nav-link.active{background:var(--gold); color:#1a1510;}

/* HERO */
.hero{
  display:grid;
  grid-template-columns:1fr 1fr;
  align-items:center;
  gap:clamp(24px,4vw,64px);
  padding:clamp(40px,6vw,80px) var(--pad);
  position:relative;
  z-index:1;
  background:var(--bg);
}
.hero-photo{
  position:relative;
  width:100%;
  max-width:420px;
  margin:0 auto;
  aspect-ratio:3/4;
  max-height:72vh;
  border-radius:var(--radius);
  overflow:hidden;
  border:1px solid rgba(201,164,92,.15);
}
.hero-photo img{
  position:absolute;
  top:0; left:0;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center top;
}
.hero-text .eyebrow{margin-bottom:16px;}
.hero-text h1{
  font-size:clamp(28px,5vw,58px);
  line-height:1.1; font-weight:400; margin-bottom:18px;
}
.hero-text h1 em{font-style:italic; color:var(--gold-soft);}
.hero-text p.tag{
  font-size:clamp(15px,2.2vw,18px); color:var(--muted);
  max-width:480px; line-height:1.65;
}

.cta{
  display:inline-block; font-family:Helvetica,sans-serif;
  font-size:12px; letter-spacing:.14em; text-transform:uppercase;
  color:#1a1510; background:var(--gold); padding:16px 34px;
  border:1px solid transparent; transition:.25s; text-decoration:none;
}
.cta:hover{background:var(--gold-soft);}
.cta.outline{background:transparent; color:var(--gold-soft); border-color:var(--gold);}
.cta.outline:hover{background:rgba(201,164,92,.1);}

section{
  padding:clamp(56px,8vw,90px) var(--pad);
  border-top:1px solid rgba(201,164,92,.12);
  position:relative;
  z-index:2;
  background:var(--bg);
}
.section-first{border-top:none;}
.section-head{
  display:flex; justify-content:space-between; align-items:flex-end;
  margin-bottom:clamp(32px,5vw,50px); flex-wrap:wrap; gap:12px;
}
.section-head h2{font-size:clamp(26px,5vw,34px); font-weight:400;}
.section-head .util{max-width:320px; text-align:right;}

/* TITLES */
.titles{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  border-top:1px solid rgba(201,164,92,.25);
}
.title-item{
  padding:24px 16px;
  border-right:1px solid rgba(201,164,92,.25);
  border-bottom:1px solid rgba(201,164,92,.25);
}
.title-item:last-child{border-right:none;}
.title-item .y{font-family:Helvetica,sans-serif; font-size:11px; color:var(--gold); letter-spacing:.1em;}
.title-item h3{font-size:clamp(15px,2vw,18px); margin-top:10px; line-height:1.35;}

/* REVIEWS */
.reviews-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
  max-width:960px;
  margin:0 auto;
}
.review-card{
  border-radius:var(--radius);
  overflow:hidden;
  border:1px solid rgba(201,164,92,.15);
  background:#161310;
}
.review-card img{
  width:100%;
  height:auto;
  vertical-align:top;
}

/* LIFE GALLERY — 2 columns */
.life-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:8px;
}
.life-item{
  margin:0;
  padding:0;
  overflow:hidden;
  border-radius:var(--radius);
  border:1px solid rgba(201,164,92,.1);
  line-height:0;
  background:none;
  cursor:pointer;
  display:block;
  width:100%;
  transition:border-color .2s, transform .2s;
}
.life-item:hover{
  border-color:rgba(201,164,92,.35);
}
.life-item:active{transform:scale(.98);}
.life-item:focus-visible{
  outline:2px solid var(--gold);
  outline-offset:2px;
}
.life-item img{
  width:100%;
  aspect-ratio:4/5;
  object-fit:cover;
  object-position:center;
  display:block;
  transition:opacity .2s;
}
.life-item:hover img{opacity:.92;}

/* LIGHTBOX */
body.lightbox-open{overflow:hidden;}
.lightbox{
  position:fixed;
  inset:0;
  z-index:200;
  display:flex;
  align-items:center;
  justify-content:center;
}
.lightbox[hidden]{display:none;}
.lightbox-backdrop{
  position:absolute;
  inset:0;
  background:rgba(8,6,5,.92);
  backdrop-filter:blur(4px);
}
.lightbox-stage{
  position:relative;
  z-index:1;
  max-width:min(92vw,520px);
  max-height:88vh;
  margin:0 48px;
}
.lightbox-img{
  width:100%;
  max-height:88vh;
  height:auto;
  object-fit:contain;
  border-radius:var(--radius);
  border:1px solid rgba(201,164,92,.2);
  box-shadow:0 24px 80px rgba(0,0,0,.55);
}
.lightbox-close,
.lightbox-prev,
.lightbox-next{
  position:absolute;
  z-index:2;
  border:none;
  background:rgba(22,19,16,.85);
  color:var(--cream);
  border:1px solid rgba(201,164,92,.25);
  border-radius:50%;
  cursor:pointer;
  line-height:1;
  transition:background .2s, color .2s;
}
.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover{
  background:#221c16;
  color:var(--gold-soft);
}
.lightbox-close{
  top:16px;
  right:16px;
  width:44px;
  height:44px;
  font-size:28px;
}
.lightbox-prev,
.lightbox-next{
  top:50%;
  transform:translateY(-50%);
  width:44px;
  height:44px;
  font-size:32px;
}
.lightbox-prev{left:12px;}
.lightbox-next{right:12px;}

/* LOCATION */
.location-block{
  max-width:720px;
  margin:0 auto;
  display:flex;
  flex-direction:column;
  gap:14px;
}
.location-map,
.location-home{
  margin:0;
  overflow:hidden;
  border-radius:var(--radius);
  border:1px solid rgba(201,164,92,.15);
  background:#161310;
}
.location-map{
  width:100%;
  height:clamp(240px, 52vw, 380px);
  z-index:1;
}
.location-home{
  line-height:0;
}
.location-home img{
  width:100%;
  aspect-ratio:4/5;
  object-fit:cover;
  object-position:center;
  display:block;
}
.map-pin span{
  display:block;
  width:14px;
  height:14px;
  margin:7px;
  background:var(--gold);
  border:3px solid var(--cream);
  border-radius:50%;
  box-shadow:0 0 18px rgba(201,164,92,.55);
}
.location-map .leaflet-container{
  background:#161310;
  font-family:Helvetica,Arial,sans-serif;
}
.location-map .leaflet-control-zoom a{
  background:#161310;
  color:var(--cream);
  border-color:rgba(201,164,92,.25);
}
.location-map .leaflet-control-zoom a:hover{
  background:#221c16;
  color:var(--gold-soft);
}
.location-map .leaflet-control-attribution{
  background:rgba(14,12,10,.88);
  color:var(--muted);
  font-size:9px;
  padding:2px 6px;
}
.location-map .leaflet-control-attribution a{
  color:var(--gold);
}
.location-caption{
  margin-top:24px; text-align:center;
  font-size:clamp(16px,2.5vw,18px);
  color:var(--gold-soft); font-style:italic;
}

.final-cta{
  text-align:center;
  padding:clamp(64px,10vw,120px) var(--pad);
  border-top:1px solid rgba(201,164,92,.12);
  position:relative; z-index:2; background:var(--bg);
}
.final-cta p{color:var(--muted); margin:18px 0 32px; font-size:16px; line-height:1.7;}
.final-cta .tags{display:flex; justify-content:center; gap:20px; flex-wrap:wrap; margin-bottom:8px;}
.final-cta .tags span{
  font-family:Helvetica,sans-serif; font-size:11px;
  letter-spacing:.12em; text-transform:uppercase; color:var(--gold);
}
.final-cta h2{font-size:clamp(22px,4vw,30px); margin-top:14px;}

/* PAGE 2 */
.p2-hero{
  padding:clamp(64px,10vw,100px) var(--pad) clamp(40px,6vw,60px);
  text-align:center;
  border-bottom:1px solid rgba(201,164,92,.12);
  background:var(--bg);
  position:relative; z-index:2;
}
.p2-hero .util{margin-bottom:16px;}
.p2-hero h1{font-size:clamp(32px,6vw,58px); font-weight:400;}
.p2-hero h1 span{color:var(--gold-soft); font-style:italic;}

.services{display:grid; grid-template-columns:repeat(3,1fr); gap:20px;}
.service-card{
  border:1px solid rgba(201,164,92,.25);
  padding:28px;
  display:flex; flex-direction:column;
}
.service-card .tier{
  font-family:Helvetica,sans-serif; font-size:11px;
  letter-spacing:.12em; text-transform:uppercase; color:var(--gold); margin-bottom:14px;
}
.service-card h3{font-size:clamp(18px,2.5vw,22px); margin-bottom:16px; line-height:1.3;}
.service-card ul{list-style:none; flex:1;}
.service-card ul li{
  font-size:14px; color:var(--muted); padding:10px 0;
  border-top:1px solid rgba(201,164,92,.12); line-height:1.55;
}
.service-card ul li:first-child{border-top:none; padding-top:0;}

.packages{display:grid; grid-template-columns:repeat(3,1fr); gap:20px; align-items:stretch;}
.pkg{
  border:1px solid rgba(201,164,92,.25);
  padding:32px 24px; display:flex; flex-direction:column;
}
.pkg.mid{border-color:var(--gold); background:rgba(201,164,92,.05);}
.pkg .util{color:var(--gold);}
.pkg h3{font-size:26px; margin:14px 0 6px;}
.pkg .price{font-size:28px; color:var(--gold-soft); margin-bottom:18px; font-family:Helvetica,sans-serif;}
.pkg .price small{font-size:13px; color:var(--muted);}
.pkg .price-muted{font-size:16px; color:var(--muted); margin-bottom:18px;}
.pkg ul{list-style:none; flex:1;}
.pkg ul li{
  font-size:14px; color:var(--muted); padding:10px 0;
  border-top:1px solid rgba(201,164,92,.12); line-height:1.5;
}
.pkg ul li:first-child{border-top:none;}
.pkg .cta{margin-top:24px; text-align:center; width:100%;}

.notice{
  margin:0 0 32px;
  padding:20px 22px;
  border:1px solid rgba(227,203,152,.55);
  background:rgba(201,164,92,.14);
  border-radius:6px;
  display:flex;
  gap:14px;
  align-items:flex-start;
  box-shadow:0 0 24px rgba(201,164,92,.08);
}
.notice-between{
  margin-top:8px;
  margin-bottom:0;
}
.wa-block .notice{
  max-width:560px;
  margin:0 auto 28px;
  text-align:left;
}
.notice-mark{
  font-size:22px;
  color:var(--gold-soft);
  flex-shrink:0;
  line-height:1.3;
  text-shadow:0 0 12px rgba(227,203,152,.45);
}
.notice p{
  color:var(--cream);
  font-size:14px;
  line-height:1.65;
}
.notice strong{
  color:var(--gold-soft);
  font-weight:600;
  letter-spacing:.02em;
}

.wa-block{
  text-align:center;
  padding:clamp(56px,8vw,80px) var(--pad) clamp(72px,10vw,100px);
  border-top:1px solid rgba(201,164,92,.12);
  background:var(--bg); position:relative; z-index:2;
}
.wa-btn{
  display:inline-flex; align-items:center; justify-content:center; gap:14px;
  background:var(--wa); color:#fff;
  font-family:Helvetica,sans-serif; font-size:clamp(13px,2vw,15px);
  letter-spacing:.08em; text-transform:uppercase;
  padding:18px clamp(24px,6vw,48px); border-radius:6px;
  text-decoration:none; transition:.25s;
  box-shadow:0 8px 32px rgba(37,211,102,.25);
}
.wa-btn:hover{background:#1fb855;}
.wa-btn svg{width:26px; height:26px; fill:#fff; flex-shrink:0;}
.wa-note{margin-top:16px; font-size:13px; color:var(--muted);}

@media(min-width:961px){
  .pkg.mid{transform:translateY(-10px);}
}

@media(min-width:1024px){
  .life-grid{
    gap:10px;
    max-width:900px;
    margin:0 auto;
  }
}

@media(max-width:960px){
  .hero{grid-template-columns:1fr; padding-top:32px;}
  .hero-text{text-align:center;}
  .hero-text p.tag{margin-left:auto; margin-right:auto;}
  .titles{grid-template-columns:1fr 1fr;}
  .title-item:nth-child(2n){border-right:none;}
  .reviews-grid{
    display:flex;
    overflow-x:auto;
    gap:14px;
    max-width:none;
    scroll-snap-type:x mandatory;
    -webkit-overflow-scrolling:touch;
    padding-bottom:4px;
  }
  .reviews-grid::-webkit-scrollbar{display:none;}
  .review-card{flex:0 0 72vw; max-width:300px; scroll-snap-align:center;}
  .services{grid-template-columns:1fr;}
  .packages{grid-template-columns:1fr;}
  .section-head .util{text-align:left;}
}

@media(max-width:560px){
  .nav{padding:12px 16px;}
  .nav-link{padding:7px 11px; font-size:9px;}
  .titles{grid-template-columns:1fr;}
  .title-item{border-right:none !important;}
  .review-card{flex:0 0 84vw;}
  .wa-btn{width:100%; justify-content:center;}
}
