/* ============================================================
   LUXURY BEAUTY SALON — Soft Luxury / Editorial Beauty
   Design tokens + shared components
   ============================================================ */

:root{
  /* --- Palette --- */
  --ivory:        #F8F3EE;
  --cream:        #FFFDFC;
  --gold:         #C6A15B;
  --gold-deep:    #A9843F;
  --gold-hairline:#DCC79A;
  --rose:         #C99A9A;
  --rose-soft:    #E7D3D1;
  --espresso:     #4A3430;
  --taupe:        #806F69;
  --white:        #FFFFFF;

  /* --- Type --- */
  --font-display: 'Cormorant Garamond', 'Times New Roman', serif;
  --font-body:    'Montserrat', -apple-system, sans-serif;

  /* --- Rhythm --- */
  --container-max: 1280px;
  --radius-sm: 2px;
  --radius-md: 4px;
  --radius-lg: 120px 4px 120px 4px; /* signature asymmetric corner */
  --shadow-soft: 0 20px 50px -25px rgba(74,52,48,0.25);
  --shadow-card: 0 12px 30px -18px rgba(74,52,48,0.28);
  --ease: cubic-bezier(.22,.61,.36,1);
}

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

.container{
  width:100%;
  max-width:var(--container-max);
  margin:0 auto;
  padding-left:32px;
  padding-right:32px;
}
@media (max-width:576px){
  .container{ padding-left:20px; padding-right:20px; }
}

section{ position:relative; }
.section-pad{ padding:110px 0; }
.section-pad-sm{ padding:70px 0; }
@media (max-width:768px){
  .section-pad{ padding:70px 0; }
  .section-pad-sm{ padding:48px 0; }
}

/* --- Typography --- */
h1,h2,h3,h4,h5{
  font-family:var(--font-display);
  color:var(--espresso);
  font-weight:600;
  line-height:1.15;
  margin:0;
  letter-spacing:.2px;
}
.display-hero{ font-size:clamp(3rem,6vw,5.6rem); font-weight:500; letter-spacing:-.5px; }
.display-1{ font-size:clamp(2.4rem,4.4vw,3.8rem); font-weight:500; }
.display-2{ font-size:clamp(2rem,3.4vw,2.9rem); font-weight:500; }
.display-3{ font-size:clamp(1.5rem,2.4vw,2rem); font-weight:600; }
p{ margin:0; }
.lead{ font-size:1.15rem; color:var(--taupe); font-weight:400; }
.body-text{ color:var(--taupe); font-size:1rem; }

.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:12px;
  font-family:var(--font-body);
  font-size:.72rem;
  font-weight:600;
  letter-spacing:3.5px;
  text-transform:uppercase;
  color:var(--gold-deep);
  margin-bottom:18px;
}
.eyebrow::before{
  content:"";
  width:34px;
  height:1px;
  background:var(--gold);
  display:inline-block;
}
.eyebrow.center{ justify-content:center; }

.text-rose{ color:var(--rose); }
.text-gold{ color:var(--gold-deep); }
.text-taupe{ color:var(--taupe); }

/* --- Buttons --- */
.btn-luxury{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:16px 34px;
  border-radius:2px;
  font-size:.78rem;
  font-weight:600;
  letter-spacing:2px;
  text-transform:uppercase;
  border:1px solid var(--gold);
  transition:all .4s var(--ease);
  white-space:nowrap;
}
.btn-gold{
  background:var(--gold);
  color:var(--white);
}
.btn-gold:hover{
  background:var(--gold-deep);
  border-color:var(--gold-deep);
  transform:translateY(-2px);
  box-shadow:0 14px 26px -14px rgba(169,132,63,.6);
  color:var(--white);
}
.btn-outline{
  background:transparent;
  color:var(--espresso);
  border-color:var(--espresso);
}
.btn-outline:hover{
  background:var(--espresso);
  color:var(--cream);
  border-color:var(--espresso);
  transform:translateY(-2px);
}
.btn-outline-light{
  background:transparent;
  color:var(--cream);
  border-color:rgba(255,253,252,.6);
}
.btn-outline-light:hover{
  background:var(--cream);
  color:var(--espresso);
  border-color:var(--cream);
}
.btn-sm{ padding:11px 22px; font-size:.68rem; }

/* --- Signature sprig divider --- */
.sprig-divider{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:18px;
  margin:0 auto;
}
.sprig-divider .line{
  height:1px;
  width:64px;
  background:linear-gradient(90deg,transparent,var(--gold));
}
.sprig-divider .line.right{ background:linear-gradient(90deg,var(--gold),transparent); }
.sprig-divider svg{ width:26px; height:26px; color:var(--gold); }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar-luxury{
  position:sticky; top:0; z-index:1000;
  background:rgba(255,253,252,.92);
  backdrop-filter:blur(10px);
  border-bottom:1px solid rgba(198,161,91,.25);
  padding:16px 0;
  transition:padding .3s var(--ease), box-shadow .3s var(--ease);
}
.navbar-luxury.scrolled{
  padding:10px 0;
  box-shadow:0 8px 24px -18px rgba(74,52,48,.35);
}
.navbar-luxury .nav-inner{
  display:flex; align-items:center; justify-content:space-between;
}
.brand-mark{ display:flex; align-items:center; gap:12px; }
.brand-mark svg{ width:46px; height:46px; flex-shrink:0; }
.brand-word{ font-family:var(--font-display); font-size:1.28rem; letter-spacing:1px; color:var(--espresso); line-height:1.1; }
.brand-word span{ display:block; font-family:var(--font-body); font-size:.56rem; letter-spacing:3px; color:var(--gold-deep); font-weight:600; margin-top:2px; }

.nav-links{ display:flex; align-items:center; gap:38px; }
.nav-links a{
  font-size:.76rem; font-weight:600; letter-spacing:1.4px; text-transform:uppercase;
  color:var(--espresso); position:relative; padding:6px 0;
}
.nav-links a::after{
  content:""; position:absolute; left:0; bottom:0; width:0; height:1px; background:var(--gold);
  transition:width .35s var(--ease);
}
.nav-links a:hover::after, .nav-links a.active::after{ width:100%; }
.nav-links a.active{ color:var(--gold-deep); }

.nav-cta{ display:flex; align-items:center; gap:18px; }
.nav-icon-link{
  width:40px; height:40px; border-radius:50%; border:1px solid var(--gold-hairline);
  display:flex; align-items:center; justify-content:center; color:var(--gold-deep);
  transition:all .3s var(--ease);
}
.nav-icon-link:hover{ background:var(--gold); color:var(--white); border-color:var(--gold); }

.navbar-toggler-luxury{
  display:none; width:44px; height:44px; border:1px solid var(--gold-hairline); border-radius:50%;
  background:transparent; align-items:center; justify-content:center; position:relative;
}
.navbar-toggler-luxury span, .navbar-toggler-luxury span::before, .navbar-toggler-luxury span::after{
  content:""; display:block; width:18px; height:1px; background:var(--espresso); position:relative; transition:.3s;
}
.navbar-toggler-luxury span::before{ position:absolute; top:-6px; width:18px; }
.navbar-toggler-luxury span::after{ position:absolute; top:6px; width:12px; margin-left:0; }

.mobile-panel{
  display:none; position:fixed; inset:0 0 0 auto; width:min(340px,86vw); height:100vh;
  background:var(--cream); z-index:1100; padding:32px 30px; transform:translateX(100%);
  transition:transform .45s var(--ease); box-shadow:-20px 0 60px -30px rgba(0,0,0,.4);
}
.mobile-panel.open{ transform:translateX(0); }
.mobile-panel .close-panel{ background:none; border:none; font-size:1.6rem; color:var(--espresso); position:absolute; top:26px; right:26px; }
.mobile-panel ul{ margin-top:70px; display:flex; flex-direction:column; gap:26px; }
.mobile-panel a{ font-family:var(--font-display); font-size:1.5rem; color:var(--espresso); }
.mobile-panel .mp-contact{ margin-top:40px; padding-top:26px; border-top:1px solid var(--gold-hairline); color:var(--taupe); font-size:.85rem; }
.scrim{ display:none; position:fixed; inset:0; background:rgba(74,52,48,.35); z-index:1050; }
.scrim.open{ display:block; }

@media (max-width:991px){
  .nav-links{ display:none; }
  .nav-cta .nav-icon-link.desktop-only{ display:none; }
  .navbar-toggler-luxury{ display:flex; }
  .mobile-panel{ display:block; }
}

/* ============================================================
   HERO (home split screen)
   ============================================================ */
.hero-split{
  display:grid; grid-template-columns:1fr 1fr; align-items:center;
  min-height:88vh; gap:0;
}
.hero-left{ padding:60px 60px 60px 0; }
.hero-right{ position:relative; height:88vh; overflow:hidden; }
.hero-right img{ width:100%; height:100%; object-fit:cover; }
.hero-right::before{
  content:""; position:absolute; inset:0;
  background:linear-gradient(120deg,rgba(248,243,238,.15),rgba(74,52,48,.08));
}
.hero-badge{
  position:absolute; left:-34px; bottom:54px; background:var(--cream);
  padding:20px 26px; box-shadow:var(--shadow-soft); max-width:230px;
  border-left:2px solid var(--gold);
}
.hero-badge .eyebrow{ margin-bottom:6px; }
.hero-badge p{ font-size:.82rem; color:var(--taupe); }

.hero-actions{ display:flex; gap:18px; margin-top:38px; flex-wrap:wrap; }

.fade-up{ opacity:0; transform:translateY(26px); transition:opacity .9s var(--ease), transform .9s var(--ease); }
.fade-up.in{ opacity:1; transform:translateY(0); }
.fade-up.d1{ transition-delay:.12s; }
.fade-up.d2{ transition-delay:.24s; }
.fade-up.d3{ transition-delay:.36s; }

@media (max-width:991px){
  .hero-split{ grid-template-columns:1fr; min-height:auto; }
  .hero-left{ padding:70px 8px 46px; order:2; }
  .hero-right{ height:60vh; order:1; }
  .hero-badge{ left:20px; bottom:-30px; }
}

/* ============================================================
   GENERIC PAGE HERO (interior pages)
   ============================================================ */
.page-hero{
  padding:170px 0 90px;
  background:linear-gradient(180deg,var(--cream),var(--ivory));
  text-align:center;
  position:relative;
}
.page-hero .breadcrumb-lux{
  margin-top:22px; font-size:.75rem; letter-spacing:1.5px; text-transform:uppercase; color:var(--taupe);
}
.page-hero .breadcrumb-lux a{ color:var(--gold-deep); }
.page-hero .breadcrumb-lux .sep{ margin:0 8px; color:var(--gold); }

.service-hero{
  padding:0; margin-top:0; position:relative; height:56vh; min-height:420px;
  display:flex; align-items:flex-end;
}
.service-hero img{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; }
.service-hero::after{ content:""; position:absolute; inset:0; background:linear-gradient(0deg,rgba(74,52,48,.72),rgba(74,52,48,.08) 60%); }
.service-hero .inner{ position:relative; z-index:2; padding:60px 0; color:var(--cream); }
.service-hero .breadcrumb-lux{ color:rgba(255,253,252,.75); }
.service-hero .breadcrumb-lux a{ color:var(--cream); }

/* ============================================================
   TWO-COLUMN EDITORIAL (About preview / philosophy)
   ============================================================ */
.editorial-row{ display:grid; grid-template-columns:1fr 1fr; gap:70px; align-items:center; }
.editorial-row.reverse .img-col{ order:2; }
.editorial-row .img-col{ position:relative; }
.editorial-row .img-col img{ width:100%; height:560px; object-fit:cover; border-radius:var(--radius-lg); }
.editorial-row .img-col .frame-accent{
  position:absolute; top:26px; left:-26px; width:100%; height:100%; border:1px solid var(--gold);
  border-radius:var(--radius-lg); z-index:-1;
}
@media (max-width:991px){
  .editorial-row{ grid-template-columns:1fr; gap:36px; }
  .editorial-row.reverse .img-col{ order:1; }
  .editorial-row .img-col img{ height:340px; }
  .editorial-row .img-col .frame-accent{ display:none; }
}

/* ============================================================
   SERVICES — editorial rows
   ============================================================ */
.service-feature{
  display:grid; grid-template-columns:.9fr 1.1fr; gap:0; align-items:stretch;
  border-bottom:1px solid var(--gold-hairline);
}
.service-feature:last-child{ border-bottom:none; }
.service-feature .sf-img{ overflow:hidden; height:100%; min-height:340px; }
.service-feature .sf-img img{ width:100%; height:100%; object-fit:cover; transition:transform .8s var(--ease); }
.service-feature:hover .sf-img img{ transform:scale(1.06); }
.service-feature .sf-body{ padding:56px 60px; display:flex; flex-direction:column; justify-content:center; }
.service-feature.reverse{ direction:rtl; }
.service-feature.reverse .sf-body{ direction:ltr; }
.service-feature.reverse .sf-img{ direction:ltr; }
.sf-num{ font-family:var(--font-display); font-size:.95rem; color:var(--gold); letter-spacing:2px; margin-bottom:10px; }
.sf-price{ font-family:var(--font-display); font-size:1.3rem; color:var(--rose); margin:16px 0 22px; }
.sf-price span{ font-size:.7rem; color:var(--taupe); font-family:var(--font-body); letter-spacing:1px; text-transform:uppercase; }

@media (max-width:767px){
  .service-feature{ grid-template-columns:1fr; }
  .service-feature .sf-body{ padding:34px 4px; }
  .service-feature.reverse{ direction:ltr; }
}

/* --- Simple service card (used in directory grids) --- */
.card-service{
  background:var(--cream); border:1px solid var(--gold-hairline);
  border-radius:var(--radius-md); overflow:hidden; height:100%;
  transition:transform .4s var(--ease), box-shadow .4s var(--ease);
}
.card-service:hover{ transform:translateY(-8px); box-shadow:var(--shadow-card); }
.card-service .cs-img{ height:230px; overflow:hidden; }
.card-service .cs-img img{ width:100%; height:100%; object-fit:cover; transition:transform .6s var(--ease); }
.card-service:hover .cs-img img{ transform:scale(1.08); }
.card-service .cs-body{ padding:26px 26px 30px; }
.card-service .cs-body h4{ font-size:1.3rem; margin-bottom:8px; }
.card-service .cs-body p{ color:var(--taupe); font-size:.9rem; margin-bottom:16px; }
.card-service .cs-foot{ display:flex; align-items:center; justify-content:space-between; }
.cs-link{ font-size:.72rem; font-weight:600; letter-spacing:1.5px; text-transform:uppercase; color:var(--gold-deep); border-bottom:1px solid var(--gold); padding-bottom:2px; }

/* --- Directory blocks (services.html categories) --- */
.category-block{ margin-bottom:0; }
.category-head{ display:flex; align-items:baseline; gap:20px; margin-bottom:34px; }
.category-head .cat-index{ font-family:var(--font-display); font-size:2.6rem; color:var(--rose-soft); }
.directory-list{ border-top:1px solid var(--gold-hairline); }
.directory-item{
  display:flex; align-items:center; justify-content:space-between; gap:20px;
  padding:24px 4px; border-bottom:1px solid var(--gold-hairline);
  transition:background .3s var(--ease), padding-left .3s var(--ease);
}
.directory-item:hover{ background:rgba(198,161,91,.06); padding-left:14px; }
.directory-item .di-name{ font-family:var(--font-display); font-size:1.45rem; }
.directory-item .di-desc{ color:var(--taupe); font-size:.86rem; margin-top:4px; max-width:440px; }
.directory-item .di-right{ display:flex; align-items:center; gap:22px; flex-shrink:0; }
.directory-item .di-price{ font-family:var(--font-display); color:var(--gold-deep); font-size:1.05rem; white-space:nowrap; }
.directory-item .di-arrow{ width:38px; height:38px; border-radius:50%; border:1px solid var(--gold); display:flex; align-items:center; justify-content:center; color:var(--gold-deep); transition:all .3s var(--ease); }
.directory-item:hover .di-arrow{ background:var(--gold); color:var(--white); }
@media (max-width:576px){
  .directory-item{ flex-direction:column; align-items:flex-start; gap:10px; }
  .directory-item .di-right{ width:100%; justify-content:space-between; }
}

/* ============================================================
   FEATURE / WHY CHOOSE US
   ============================================================ */
.feature-block{ text-align:center; padding:16px; }
.feature-icon{
  width:74px; height:74px; margin:0 auto 22px; border-radius:50%;
  border:1px solid var(--gold-hairline); display:flex; align-items:center; justify-content:center;
  color:var(--gold-deep); transition:all .4s var(--ease);
}
.feature-block:hover .feature-icon{ background:var(--gold); color:var(--white); transform:rotate(8deg); }
.feature-icon svg{ width:30px; height:30px; }
.feature-block h4{ font-size:1.25rem; margin-bottom:10px; }
.feature-block p{ color:var(--taupe); font-size:.9rem; }

/* ============================================================
   SIGNATURE / DESIGNED AROUND YOU (asymmetric)
   ============================================================ */
.signature-block{ position:relative; }
.signature-block .main-img{ width:100%; height:640px; object-fit:cover; border-radius:var(--radius-lg); }
.signature-block .small-img{
  position:absolute; width:46%; bottom:-50px; right:-6%; border:8px solid var(--cream);
  box-shadow:var(--shadow-soft); border-radius:var(--radius-sm);
}
.signature-block .small-img img{ width:100%; height:280px; object-fit:cover; display:block; }
@media (max-width:991px){
  .signature-block .main-img{ height:380px; }
  .signature-block .small-img{ position:static; width:70%; margin:-40px auto 0; }
}

/* ============================================================
   BEFORE / AFTER SLIDER
   ============================================================ */
.ba-card{ border-radius:var(--radius-sm); overflow:hidden; box-shadow:var(--shadow-card); }
.ba-slider{ position:relative; width:100%; aspect-ratio:4/5; overflow:hidden; user-select:none; }
.ba-slider img{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; pointer-events:none; }
.ba-slider .ba-after{ clip-path:inset(0 0 0 50%); }
.ba-slider .ba-handle{
  position:absolute; top:0; bottom:0; left:50%; width:2px; background:var(--cream);
  transform:translateX(-1px); cursor:ew-resize;
}
.ba-slider .ba-handle::after{
  content:"⇔"; position:absolute; top:50%; left:50%; transform:translate(-50%,-50%);
  width:44px; height:44px; border-radius:50%; background:var(--cream); color:var(--gold-deep);
  display:flex; align-items:center; justify-content:center; font-size:1.1rem; box-shadow:var(--shadow-card);
}
.ba-tag{ position:absolute; top:16px; font-size:.65rem; letter-spacing:1.5px; text-transform:uppercase; font-weight:700; padding:6px 12px; background:rgba(74,52,48,.55); color:var(--cream); }
.ba-tag.before{ left:16px; } .ba-tag.after{ right:16px; }
.ba-caption{ padding:18px 4px 0; text-align:center; }
.ba-caption h5{ font-size:1.05rem; }
.ba-caption p{ color:var(--taupe); font-size:.82rem; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testi-card{
  background:var(--cream); border:1px solid var(--gold-hairline); padding:40px 34px;
  border-radius:var(--radius-md); height:100%;
}
.testi-quote-mark{ font-family:var(--font-display); font-size:3.4rem; color:var(--rose); line-height:.4; display:block; margin-bottom:18px; }
.testi-card p.quote{ font-size:1.02rem; color:var(--espresso); font-style:italic; margin-bottom:26px; }
.testi-person{ display:flex; align-items:center; gap:14px; }
.testi-avatar{ width:50px; height:50px; border-radius:50%; object-fit:cover; }
.testi-person h6{ font-family:var(--font-display); font-size:1.05rem; margin:0; }
.testi-person span{ font-size:.75rem; color:var(--taupe); }
.testi-stars{ color:var(--gold); font-size:.8rem; letter-spacing:2px; margin-top:6px; }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-filters{ display:flex; flex-wrap:wrap; gap:10px; justify-content:center; margin-bottom:46px; }
.gfilter{
  padding:10px 22px; border:1px solid var(--gold-hairline); border-radius:30px; font-size:.72rem;
  letter-spacing:1.5px; text-transform:uppercase; font-weight:600; color:var(--taupe); background:transparent;
  transition:all .3s var(--ease);
}
.gfilter.active,.gfilter:hover{ background:var(--gold); color:var(--white); border-color:var(--gold); }

.masonry{ column-count:3; column-gap:20px; }
.masonry .g-item{ break-inside:avoid; margin-bottom:20px; position:relative; overflow:hidden; border-radius:var(--radius-sm); cursor:pointer; }
.masonry .g-item img{ width:100%; display:block; transition:transform .6s var(--ease); }
.masonry .g-item:hover img{ transform:scale(1.08); }
.masonry .g-item .g-overlay{
  position:absolute; inset:0; background:linear-gradient(0deg,rgba(74,52,48,.75),transparent 55%);
  opacity:0; transition:opacity .4s var(--ease); display:flex; align-items:flex-end; padding:18px;
}
.masonry .g-item:hover .g-overlay{ opacity:1; }
.masonry .g-item .g-overlay span{ color:var(--cream); font-size:.75rem; letter-spacing:1.5px; text-transform:uppercase; }
@media (max-width:991px){ .masonry{ column-count:2; } }
@media (max-width:576px){ .masonry{ column-count:1; } }

.lightbox{
  position:fixed; inset:0; background:rgba(30,20,18,.92); z-index:1200; display:none;
  align-items:center; justify-content:center; padding:30px;
}
.lightbox.open{ display:flex; }
.lightbox img{ max-width:90vw; max-height:86vh; border-radius:2px; }
.lightbox .lb-close{ position:absolute; top:26px; right:32px; color:var(--cream); font-size:2rem; background:none; border:none; }
.lightbox .lb-nav{ position:absolute; top:50%; transform:translateY(-50%); background:none; border:none; color:var(--cream); font-size:2rem; padding:10px; }
.lightbox .lb-prev{ left:16px; } .lightbox .lb-next{ right:16px; }

/* ============================================================
   TEAM
   ============================================================ */
.team-card{ text-align:center; }
.team-photo{ position:relative; overflow:hidden; border-radius:var(--radius-lg); margin-bottom:22px; }
.team-photo img{ width:100%; height:400px; object-fit:cover; transition:transform .6s var(--ease); }
.team-card:hover .team-photo img{ transform:scale(1.06); }
.team-social{
  position:absolute; bottom:0; left:0; right:0; display:flex; justify-content:center; gap:10px;
  padding:16px; background:linear-gradient(0deg,rgba(74,52,48,.8),transparent);
  opacity:0; transform:translateY(12px); transition:all .4s var(--ease);
}
.team-card:hover .team-social{ opacity:1; transform:translateY(0); }
.team-social a{ width:34px; height:34px; border-radius:50%; background:var(--cream); color:var(--espresso); display:flex; align-items:center; justify-content:center; font-size:.85rem; }
.team-card h4{ font-size:1.3rem; margin-bottom:4px; }
.team-card .role{ color:var(--gold-deep); font-size:.75rem; letter-spacing:1.5px; text-transform:uppercase; font-weight:600; margin-bottom:10px; }
.team-card .bio{ color:var(--taupe); font-size:.86rem; max-width:280px; margin:0 auto; }

/* ============================================================
   PRICING CARDS
   ============================================================ */
.price-card{ background:var(--cream); border:1px solid var(--gold-hairline); border-radius:var(--radius-md); padding:38px 30px; text-align:center; height:100%; position:relative; }
.price-card.popular{ border-color:var(--gold); box-shadow:var(--shadow-card); transform:translateY(-10px); }
.price-card .pop-tag{ position:absolute; top:-14px; left:50%; transform:translateX(-50%); background:var(--gold); color:var(--white); font-size:.62rem; letter-spacing:1.5px; text-transform:uppercase; padding:6px 16px; font-weight:700; }
.price-card h4{ font-size:1.1rem; letter-spacing:1px; text-transform:uppercase; margin-bottom:14px; }
.price-card .amount{ font-family:var(--font-display); font-size:2.6rem; color:var(--gold-deep); margin-bottom:6px; }
.price-card .amount sup{ font-size:1rem; top:-1em; }
.price-card ul{ margin:26px 0; text-align:left; }
.price-card li{ padding:9px 0; border-bottom:1px solid var(--gold-hairline); font-size:.88rem; color:var(--taupe); display:flex; gap:10px; align-items:flex-start; }
.price-card li:last-child{ border-bottom:none; }
.price-card li svg{ width:16px; height:16px; color:var(--gold); flex-shrink:0; margin-top:3px; }

/* ============================================================
   INCLUDED / BENEFITS ICON GRID (service pages)
   ============================================================ */
.incl-item{ display:flex; gap:18px; align-items:flex-start; padding:20px 0; border-bottom:1px solid var(--gold-hairline); }
.incl-item:last-child{ border-bottom:none; }
.incl-icon{ width:46px; height:46px; border-radius:50%; background:var(--rose-soft); color:var(--gold-deep); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.incl-icon svg{ width:20px; height:20px; }
.incl-item h6{ font-family:var(--font-display); font-size:1.1rem; margin-bottom:4px; }
.incl-item p{ color:var(--taupe); font-size:.86rem; }

/* ============================================================
   CTA BANDS
   ============================================================ */
.cta-band{
  background:linear-gradient(120deg,var(--rose-soft),var(--ivory));
  padding:100px 0; text-align:center; position:relative; overflow:hidden;
}
.cta-band::before,.cta-band::after{
  content:""; position:absolute; width:340px; height:340px; border:1px solid var(--gold-hairline); border-radius:50%;
}
.cta-band::before{ top:-160px; left:-120px; } .cta-band::after{ bottom:-180px; right:-120px; }
.cta-band .actions{ display:flex; gap:18px; justify-content:center; margin-top:32px; flex-wrap:wrap; }

.cta-mini{ background:var(--espresso); color:var(--cream); border-radius:var(--radius-md); padding:64px 40px; text-align:center; }
.cta-mini h3{ color:var(--cream); }
.cta-mini p{ color:rgba(255,253,252,.7); margin-top:10px; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-info-card{ background:var(--cream); border:1px solid var(--gold-hairline); padding:36px 30px; border-radius:var(--radius-md); height:100%; }
.contact-info-card .ci-icon{ width:52px; height:52px; border-radius:50%; background:var(--rose-soft); color:var(--gold-deep); display:flex; align-items:center; justify-content:center; margin-bottom:18px; }
.contact-info-card .ci-icon svg{ width:22px; height:22px; }
.contact-info-card h5{ font-size:1.1rem; margin-bottom:8px; }
.contact-info-card p{ color:var(--taupe); font-size:.88rem; }

.form-luxury label{ font-size:.72rem; font-weight:600; letter-spacing:1.5px; text-transform:uppercase; color:var(--espresso); margin-bottom:8px; display:block; }
.form-luxury .form-control, .form-luxury .form-select{
  background:var(--cream); border:1px solid var(--gold-hairline); border-radius:2px; padding:13px 16px;
  font-size:.92rem; color:var(--espresso); box-shadow:none;
}
.form-luxury .form-control:focus, .form-luxury .form-select:focus{
  border-color:var(--gold); box-shadow:0 0 0 3px rgba(198,161,91,.15); background:var(--white);
}
.form-luxury .form-control::placeholder{ color:#b6a89e; }
.form-luxury .mb-field{ margin-bottom:22px; }

.hours-list{ border-top:1px solid var(--gold-hairline); }
.hours-list li{ display:flex; justify-content:space-between; padding:14px 0; border-bottom:1px solid var(--gold-hairline); font-size:.9rem; }
.hours-list li span:first-child{ color:var(--espresso); font-weight:600; }
.hours-list li span:last-child{ color:var(--taupe); }

.map-wrap{ border-radius:var(--radius-md); overflow:hidden; border:1px solid var(--gold-hairline); filter:sepia(8%) saturate(85%); }
.map-wrap iframe{ width:100%; height:380px; border:0; display:block; }

/* Floating WhatsApp */
.float-whatsapp{
  position:fixed; bottom:26px; right:26px; z-index:900; width:58px; height:58px; border-radius:50%;
  background:#3f7a5c; color:#fff; display:flex; align-items:center; justify-content:center;
  box-shadow:0 14px 30px -10px rgba(0,0,0,.4); font-size:1.5rem; transition:transform .3s var(--ease);
}
.float-whatsapp:hover{ transform:scale(1.08); color:#fff; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer-luxury{ background:var(--espresso); color:rgba(255,253,252,.75); padding:80px 0 0; }
.footer-luxury a{ color:rgba(255,253,252,.75); transition:color .3s; }
.footer-luxury a:hover{ color:var(--gold); }
.footer-luxury h6{ color:var(--cream); font-family:var(--font-body); font-size:.76rem; letter-spacing:2px; text-transform:uppercase; font-weight:600; margin-bottom:22px; }
.footer-brand{ display:flex; align-items:center; gap:12px; margin-bottom:20px; }
.footer-brand svg{ width:44px; height:44px; }
.footer-brand .fb-word{ font-family:var(--font-display); font-size:1.3rem; color:var(--cream); }
.footer-luxury p{ font-size:.9rem; line-height:1.8; }
.footer-links li{ margin-bottom:12px; font-size:.9rem; }
.footer-social{ display:flex; gap:12px; margin-top:22px; }
.footer-social a{ width:38px; height:38px; border-radius:50%; border:1px solid rgba(198,161,91,.4); display:flex; align-items:center; justify-content:center; }
.footer-social a:hover{ background:var(--gold); border-color:var(--gold); color:var(--espresso); }
.footer-bottom{ border-top:1px solid rgba(198,161,91,.2); margin-top:60px; padding:26px 0; display:flex; justify-content:space-between; flex-wrap:wrap; gap:12px; font-size:.8rem; }

@media (max-width:767px){
  .footer-bottom{ flex-direction:column; text-align:center; }
}

/* ============================================================
   MISC UTIL
   ============================================================ */
.hr-gold{ border:none; border-top:1px solid var(--gold-hairline); margin:0; }
.badge-soft{ background:var(--rose-soft); color:var(--gold-deep); font-size:.68rem; letter-spacing:1px; text-transform:uppercase; font-weight:700; padding:6px 14px; border-radius:20px; }
::selection{ background:var(--gold); color:var(--white); }
