:root {
  --rose-gold: #C8102E;
  /* logo red — primary */
  --rose-gold-2: #E63946;
  /* lighter red */
  --mauve: #1A1A1A;
  /* logo black */
  --blush: #FAF4EE;
  /* warm cream bg */
  --charcoal: #1A1A1A;
  /* near-black */
  --gold: #C9A961;
  /* soft champagne accent */
  --white: #FFFFFF;
  --soft-pink: #FCE8EC;
  /* very pale red wash */
}

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Lato', sans-serif;
  color: var(--charcoal);
  background: var(--white);
  overflow-x: hidden;
}

.font-serif-d {
  font-family: 'Playfair Display', serif;
}

.font-sans-l {
  font-family: 'Lato', sans-serif;
}

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

.text-rose2 {
  color: var(--rose-gold-2);
}

.text-mauve {
  color: var(--mauve);
}

.text-charcoal {
  color: var(--charcoal);
}

.bg-rose {
  background: var(--rose-gold);
}

.bg-rose2 {
  background: var(--rose-gold-2);
}

.bg-mauve {
  background: var(--mauve);
}

.bg-blush {
  background: var(--blush);
}

.bg-charcoal {
  background: var(--charcoal);
}

.border-rose {
  border-color: var(--rose-gold);
}

.border-mauve {
  border-color: var(--mauve);
}

/* ---------- NAV (sticky, always-light) ---------- */
.nav-wrap {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(253, 246, 240, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 8px 32px -12px rgba(44, 44, 44, 0.12);
}

.nav-link {
  position: relative;
  color: var(--charcoal);
  font-weight: 400;
  letter-spacing: .02em;
  transition: color .25s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -6px;
  width: 0;
  height: 1.5px;
  background: var(--rose-gold);
  transition: width .35s ease, left .35s ease;
}

.nav-link:hover { color: var(--rose-gold); }
.nav-link:hover::after { width: 100%; left: 0; }

.nav-wrap .brand-name { color: var(--charcoal); }
.nav-wrap .brand-frame { color: var(--charcoal); }
.brand-sub { color: var(--charcoal); }
.nav-wrap .nav-phone { color: rgba(44, 44, 44, .8); }
.nav-wrap .burger-icon { color: var(--charcoal); }

.btn-rose {
  background: var(--rose-gold);
  color: #fff;
  transition: transform .3s ease, box-shadow .3s ease, background .3s ease;
  box-shadow: 0 8px 24px -10px rgba(200, 16, 46, .55);
}

.btn-rose:hover {
  background: #A00C24;
  transform: translateY(-2px);
  box-shadow: 0 14px 28px -10px rgba(200, 16, 46, .7);
}

.btn-mauve-out {
  border: 1.5px solid var(--mauve);
  color: var(--mauve);
  background: transparent;
  transition: all .3s ease;
}

.btn-mauve-out:hover {
  background: var(--mauve);
  color: #fff;
  transform: translateY(-2px);
}

.btn-rose-out {
  border: 1.5px solid var(--rose-gold);
  color: var(--rose-gold);
  background: transparent;
  transition: all .3s ease;
}

.btn-rose-out:hover {
  background: var(--rose-gold);
  color: #fff;
}

/* mobile menu */
#mobileMenu {
  position: fixed;
  inset: 0;
  background: rgba(253, 246, 240, 0.98);
  backdrop-filter: blur(14px);
  z-index: 90;
  display: none;
  opacity: 0;
}

#mobileMenu.open {
  display: flex;
}

/* ---------- HERO ---------- */
.hero-full {
  position: relative;
  min-height: calc(100vh - 72px);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  isolation: isolate;
  background: #0E0809;
}

.hero-bg {
  position: absolute !important;
  inset: 0 !important;
  z-index: -2 !important;
  background-size: cover !important;
  animation: slowZoom 16s ease-out forwards;
}

/* Desktop hero image — hidden on mobile */
.hero-bg-desktop {
  background-image: url('https://khina.clbld.com/wp-content/uploads/2025/08/close-up-young-woman-getting-eyebrow-treatment-2.jpg');
  background-position: center 30% !important;
  display: none !important;
}

@media(min-width:1024px) {
  .hero-bg-desktop { display: block; }
}

/* Mobile hero image — hidden on desktop */
.hero-bg-mobile {
  background-image: url('https://www.thelashlounge.com/wp-content/uploads/2020/01/adult-black-woman-brows-threading-tll.jpg');
/*   background-position: center center !important; */
  display: block !important;
}

@media(min-width:1024px) {
  .hero-bg-mobile { display: none; }
}

.hero-side {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 50%;
  z-index: -2;
  background-image: url('https://images.unsplash.com/photo-1583241800698-e8ab01830a07?w=1400&q=85');
  background-size: cover;
  background-position: center;
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
  display: none;
}

@media(min-width:1024px) {
  .hero-side {
    display: block;
  }
}

.hero-mask {
  position: absolute;
  inset: 0;
  z-index: -1;
  /* Warm-tinted gradient: darker behind text (left), fades to nearly clear on right */
  background:
    linear-gradient(90deg,
      rgba(26, 15, 18, .68) 0%,
      rgba(26, 15, 18, .48) 35%,
      rgba(26, 15, 18, .18) 60%,
      rgba(26, 15, 18, .06) 100%),
    /* Subtle bottom vignette for depth */
    linear-gradient(to top,
      rgba(14, 8, 9, .35) 0%,
      transparent 40%);
}

@media(max-width:1023px) {
  .hero-mask {
    /* Mobile: lighter top, readable bottom where text sits */
    background:
      linear-gradient(180deg,
        rgba(26, 15, 18, .15) 0%,
        rgba(26, 15, 18, .35) 45%,
        rgba(26, 15, 18, .62) 100%),
      /* Subtle radial vignette from edges */
      radial-gradient(ellipse at center,
        transparent 40%,
        rgba(14, 8, 9, .2) 100%);
  }
}

@keyframes floatY {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

.hero-tag-row {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  padding: .45rem 1rem;
  border: 1px solid rgba(255, 255, 255, .18);
  background: rgba(255, 255, 255, .06);
  backdrop-filter: blur(8px);
  border-radius: 999px;
}

.hero-tag-row .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--rose-gold);
}

.hero-overlay {
  display: none;
}

.hero-vignette {
  display: none;
}

.hero-headline {
  text-shadow: 0 2px 8px rgba(0, 0, 0, .5), 0 8px 30px rgba(0, 0, 0, .45);
}

.hero-sub {
  text-shadow: 0 2px 12px rgba(0, 0, 0, .5), 0 4px 20px rgba(0, 0, 0, .3);
}

.hero-eyebrow {
  text-shadow: 0 2px 8px rgba(0, 0, 0, .45);
}

@keyframes slowZoom {
  from {
    transform: scale(1.12);
  }

  to {
    transform: scale(1);
  }
}

.typer-cursor {
  display: inline-block;
  width: 3px;
  height: 1em;
  background: var(--rose-gold);
  margin-left: 6px;
  transform: translateY(6px);
  animation: blink 1s steps(2) infinite;
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}

.scroll-arrow {
  animation: bounceY 2s ease-in-out infinite;
}

@keyframes bounceY {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(10px);
  }
}

.float-badge {
  background: #fff;
  box-shadow: 0 24px 60px -22px rgba(44, 44, 44, 0.25), 0 6px 14px -6px rgba(44, 44, 44, .08);
}

/* ---------- SERVICE CARDS ---------- */
.svc-card {
  position: relative;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  transition: transform .45s ease, box-shadow .45s ease;
  box-shadow: 0 10px 30px -18px rgba(44, 44, 44, .18);
}

.svc-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--rose-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s ease;
}

.svc-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px -22px rgba(44, 44, 44, .22);
}

.svc-card:hover::before {
  transform: scaleX(1);
}

.svc-card .svc-img {
  height: 230px;
  overflow: hidden;
}

.svc-card .svc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s ease;
}

.svc-card:hover .svc-img img {
  transform: scale(1.08);
}

/* ---------- FEATURES STRIP ---------- */
.features-bg {
  background: linear-gradient(135deg, #1A1A1A 0%, #2a1517 100%);
  background-image:
    linear-gradient(135deg, #1A1A1A 0%, #2a1517 100%),
    radial-gradient(rgba(255, 255, 255, .05) 1.5px, transparent 1.5px),
    radial-gradient(rgba(200, 16, 46, .08) 1px, transparent 1px);
  background-size: 100% 100%, 40px 40px, 28px 28px;
  background-position: 0 0, 0 0, 14px 14px;
  background-blend-mode: normal, screen, screen;
}

.feat-col {
  position: relative;
  padding: 2rem 1.5rem;
}

.feat-col+.feat-col {
  border-left: 1px solid rgba(255, 255, 255, .12);
}

@media(max-width:1023px) {
  .feat-col+.feat-col {
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, .12);
  }
}

.feat-col::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 1rem;
  width: 0;
  height: 2px;
  background: var(--rose-gold-2);
  transition: width .5s ease, left .5s ease;
}

.feat-col:hover::after {
  width: 60px;
  left: calc(50% - 30px);
}

.feat-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(232, 201, 154, .4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 24px;
}

/* ---------- ABOUT IMAGES ---------- */
.about-img-1 {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 60px -25px rgba(44, 44, 44, .3);
}

.about-img-2 {
  position: absolute;
  bottom: -30px;
  right: -20px;
  width: 55%;
  aspect-ratio: 1/1;
  border-radius: 20px;
  overflow: hidden;
  border: 8px solid #fff;
  box-shadow: 0 20px 50px -20px rgba(44, 44, 44, .25);
}

.stat-num {
  font-family: 'Playfair Display', serif;
  color: var(--rose-gold);
}

/* ---------- LOCATION CARDS ---------- */
.loc-card {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  transition: transform .45s ease, box-shadow .45s ease;
  box-shadow: 0 18px 40px -22px rgba(44, 44, 44, .2);
  position: relative;
}

.loc-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--rose-gold), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .55s ease;
}

.loc-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px -25px rgba(44, 44, 44, .25);
}

.loc-card:hover::before {
  transform: scaleX(1);
}

.loc-map {
  height: 220px;
  width: 100%;
  background: #e9dfd6;
  position: relative;
  overflow: hidden;
}

.loc-map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.loc-map .pin {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -100%);
  color: var(--mauve);
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, .3));
}

/* ---------- GALLERY ---------- */
.gal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 170px;
  gap: 14px;
}

@media(max-width:1023px) {
  .gal-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 160px;
  }
}

@media(max-width:639px) {
  .gal-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 150px;
  }
}

.gal-item {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  cursor: zoom-in;
  transition: opacity .4s ease, transform .4s ease;
}

.gal-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s ease;
}

.gal-item .ov {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(44, 44, 44, .85), rgba(44, 44, 44, 0) 60%);
  opacity: 0;
  transition: opacity .4s ease;
  display: flex;
  align-items: flex-end;
  padding: 18px;
}

.gal-item .ov span {
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 12px;
  font-weight: 700;
  border-bottom: 1.5px solid var(--rose-gold-2);
  padding-bottom: 4px;
}

.gal-item:hover img {
  transform: scale(1.06);
}

.gal-item:hover .ov {
  opacity: 1;
}

.gal-item::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 0 solid var(--rose-gold);
  transition: border-width .25s ease;
  pointer-events: none;
  border-radius: 14px;
}

.gal-item:hover::after {
  border-width: 2px;
}

.gal-item.tall {
  grid-row: span 2;
}

.gal-item.fade-out {
  opacity: 0;
  transform: scale(.96);
  pointer-events: none;
}

.gal-item.hide {
  display: none;
}

.filter-tab {
  padding: .55rem 1.4rem;
  border-radius: 999px;
  background: transparent;
  color: var(--charcoal);
  font-size: .85rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  border: 1px solid rgba(44, 44, 44, .15);
  transition: all .3s ease;
}

.filter-tab.active,
.filter-tab:hover {
  background: var(--rose-gold);
  color: #fff;
  border-color: var(--rose-gold);
}

/* ---------- TEAM ---------- */
.team-card {
  text-align: center;
  transition: transform .4s ease;
}

.team-portrait {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 18px 40px -22px rgba(26, 26, 26, .25);
  transition: transform .5s ease, box-shadow .5s ease;
}

.team-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s ease;
}

.team-portrait::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--rose-gold), var(--gold), var(--charcoal));
  z-index: -1;
  opacity: 0;
  transition: opacity .45s ease;
  filter: blur(8px);
}

.team-card:hover .team-portrait {
  transform: translateY(-8px);
}

.team-card:hover .team-portrait::before {
  opacity: .85;
}

.team-card:hover .team-portrait img {
  transform: scale(1.06);
}

.team-card:hover .team-name {
  color: var(--rose-gold);
}

.team-name {
  transition: color .35s ease;
}

.tag-pill {
  display: inline-block;
  background: var(--blush);
  color: var(--rose-gold);
  border: 1px solid rgba(200, 16, 46, .18);
  padding: .2rem .65rem;
  border-radius: 999px;
  font-size: .7rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-weight: 700;
  margin: 0 .25rem .35rem 0;
}

/* ---------- TESTIMONIALS ---------- */
.testi-track {
  display: flex;
  transition: transform .7s cubic-bezier(.22, .9, .32, 1);
}

.testi-card {
  background: #fff;
  border-radius: 20px;
  padding: 2.2rem 2rem;
  box-shadow: 0 18px 40px -22px rgba(44, 44, 44, .18);
  position: relative;
  overflow: hidden;
  height: 100%;
}

.testi-card .big-q {
  position: absolute;
  top: -22px;
  left: 18px;
  font-family: 'Playfair Display', serif;
  font-size: 160px;
  line-height: 1;
  color: var(--rose-gold);
  opacity: .18;
  pointer-events: none;
}

.testi-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(44, 44, 44, .18);
  transition: all .35s ease;
  cursor: pointer;
}

.testi-dot.active {
  width: 30px;
  background: var(--rose-gold);
}

.testi-arrow {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1.5px solid rgba(44, 44, 44, .15);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--charcoal);
  transition: all .3s ease;
  background: #fff;
}

.testi-arrow:hover {
  background: var(--rose-gold);
  color: #fff;
  border-color: var(--rose-gold);
}

/* ---------- Services carousel ---------- */
.svc-track {
  display: flex;
  transition: transform .5s cubic-bezier(.4, 0, .2, 1);
}

.svc-slide {
  flex-shrink: 0;
}

/* ---------- BOOK CTA PARALLAX ---------- */
.cta-parallax {
  position: relative;
  background-image:
    linear-gradient(rgba(15, 5, 8, .82), rgba(60, 8, 16, .82)),
    url('https://images.unsplash.com/photo-1616394584738-fc6e612e71b9?w=1000&q=80');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

@media(max-width:768px) {
  .cta-parallax {
    background-attachment: scroll;
  }
}

/* ---------- FOOTER ---------- */
.ft-link {
  color: rgba(255, 255, 255, .7);
  transition: color .3s ease;
}

.ft-link:hover {
  color: var(--rose-gold-2);
}

.ft-social {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all .3s ease;
}

.ft-social:hover {
  background: var(--rose-gold);
  border-color: var(--rose-gold);
  color: #fff;
}

/* ---------- BACK TO TOP ---------- */
#toTop {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--rose-gold);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 28px -8px rgba(201, 149, 108, .6);
  opacity: 0;
  pointer-events: none;
  transition: all .35s ease;
  z-index: 60;
}

#toTop.show {
  opacity: 1;
  pointer-events: auto;
}

#toTop:hover {
  background: #A00C24;
  transform: translateY(-2px);
}

/* ---------- LIGHTBOX ---------- */
.lb-back {
  position: fixed;
  inset: 0;
  background: rgba(10, 6, 7, .94);
  backdrop-filter: blur(10px);
  z-index: 120;
  display: none;
  opacity: 0;
  transition: opacity .35s ease;
  align-items: center;
  justify-content: center;
}

.lb-back.show {
  display: flex;
  opacity: 1;
}

.lb-img-wrap {
  position: relative;
  max-width: min(92vw, 1200px);
  max-height: 88vh;
  transform: scale(.96);
  transition: transform .4s cubic-bezier(.22, .9, .32, 1);
}

.lb-back.show .lb-img-wrap {
  transform: scale(1);
}

.lb-img {
  max-width: 100%;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .6);
  display: block;
}

.lb-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, .15);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .3s ease;
  z-index: 2;
}

.lb-btn:hover {
  background: var(--rose-gold);
  border-color: var(--rose-gold);
}

.lb-prev {
  left: -70px;
}

.lb-next {
  right: -70px;
}

@media(max-width:1100px) {
  .lb-prev {
    left: 10px;
  }

  .lb-next {
    right: 10px;
  }

  .lb-btn {
    width: 44px;
    height: 44px;
  }
}

.lb-close {
  position: fixed;
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .1);
  backdrop-filter: blur(10px);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .3s ease;
  border: 1px solid rgba(255, 255, 255, .15);
  z-index: 2;
}

.lb-close:hover {
  background: var(--rose-gold);
  border-color: var(--rose-gold);
}

.lb-counter {
  position: fixed;
  top: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 13px;
  letter-spacing: .2em;
  text-transform: uppercase;
  opacity: .75;
  z-index: 2;
}

/* ---------- BOOKING MODAL ---------- */
.modal-back {
  position: fixed;
  inset: 0;
  background: rgba(30, 26, 26, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 100;
  display: none;
  opacity: 0;
  transition: opacity .35s ease;
}

.modal-back.show {
  display: flex;
  opacity: 1;
}

.modal-box {
  background: #fff;
  width: 92%;
  max-width: 560px;
  max-height: 90vh;
  overflow-y: auto;
  border-radius: 24px;
  transform: scale(.92);
  transition: transform .4s cubic-bezier(.22, .9, .32, 1);
  margin: auto;
  box-shadow: 0 40px 80px -30px rgba(0, 0, 0, .5);
}

.modal-back.show .modal-box {
  transform: scale(1);
}

.loc-link {
  display: block;
  border: 1.5px solid rgba(44, 44, 44, .1);
  border-radius: 18px;
  padding: 1.25rem 1.4rem;
  transition: all .35s ease;
  background: #fff;
  position: relative;
  overflow: hidden;
}

.loc-link::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--rose-gold);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform .4s ease;
}

.loc-link:hover {
  border-color: var(--rose-gold);
  background: var(--blush);
  transform: translateY(-3px);
  box-shadow: 0 16px 30px -18px rgba(201, 149, 108, .4);
}

.loc-link:hover::before {
  transform: scaleY(1);
}

.loc-link .arrow {
  transition: transform .4s ease;
  color: var(--rose-gold);
}

.loc-link:hover .arrow {
  transform: translateX(6px);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  border: 1.5px solid rgba(44, 44, 44, .12);
  border-radius: 12px;
  padding: .75rem 1rem;
  font-family: 'Lato', sans-serif;
  transition: all .25s ease;
  background: #fff;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--rose-gold);
  box-shadow: 0 0 0 4px rgba(201, 149, 108, .12);
}

/* ---------- SCROLL REVEAL ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 1s cubic-bezier(.22, .9, .32, 1), transform 1s cubic-bezier(.22, .9, .32, 1);
  will-change: opacity, transform;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  * {
    animation: none !important;
    transition: none !important;
  }
}

/* ---------- MOBILE SPACING ---------- */
@media (max-width:767px) {
  section {
    scroll-margin-top: 80px;
  }

  .py-mobile-tight {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

  h2.font-serif-d {
    font-size: 2rem !important;
    line-height: 1.15 !important;
  }

  h1.font-serif-d {
    font-size: 2.4rem !important;
    line-height: 1.1 !important;
  }

  .gal-grid {
    gap: 10px;
  }

  .float-badge {
    display: none !important;
  }
}

/* override section py on mobile */
@media (max-width:767px) {

  .py-24,
  .lg\:py-32 {
    padding-top: 3.5rem !important;
    padding-bottom: 3.5rem !important;
  }

  .pt-32 {
    padding-top: 5rem !important;
  }

  .py-32 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }

  .mt-16 {
    margin-top: 2.5rem !important;
  }

  .mt-14 {
    margin-top: 2.25rem !important;
  }

  .mt-12 {
    margin-top: 2rem !important;
  }
}

/* ============================================================
   SERVICES PAGE
   ============================================================ */

/* sub-page header banner */
.page-banner {
  position: relative;
  min-height: 55vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #0E0809;
  overflow: hidden;
  isolation: isolate;
}

.page-banner-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: url('https://images.unsplash.com/photo-1487412947147-5cebf100ffc2?w=2000&q=85');
  background-size: cover;
  background-position: center;
  animation: slowZoom 18s ease-out forwards;
}

.page-banner-mask {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg,
      rgba(26, 15, 18, .35) 0%,
      rgba(26, 15, 18, .55) 50%,
      rgba(26, 15, 18, .68) 100%),
    linear-gradient(to top,
      rgba(14, 8, 9, .35) 0%,
      transparent 40%);
}

.page-banner h1 {
  text-shadow: 0 4px 20px rgba(0, 0, 0, .5);
}

.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-size: .78rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .7);
}

.breadcrumb a {
  color: rgba(255, 255, 255, .85);
  transition: color .3s ease;
}

.breadcrumb a:hover {
  color: var(--rose-gold);
}

.breadcrumb .sep {
  opacity: .45;
}

/* service block */
.srv-block {
  padding: 6rem 0;
}

.srv-block:nth-child(even) {
  background: var(--blush);
}

@media(max-width:767px) {
  .srv-block {
    padding: 4rem 0;
  }
}

/* numbered marker */
.srv-num {
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  line-height: 1;
  font-style: italic;
  background: linear-gradient(135deg, var(--rose-gold) 0%, #6b1320 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: .18;
  position: absolute;
  top: -2.2rem;
  left: -1rem;
  pointer-events: none;
  z-index: 0;
  user-select: none;
}

@media(max-width:767px) {
  .srv-num {
    font-size: 3.5rem;
    top: -1.2rem;
    left: 0;
  }
}

/* service hero image with frame */
.srv-img-wrap {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 60px -28px rgba(26, 26, 26, .35);
  aspect-ratio: 4/5;
}

.srv-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.5s cubic-bezier(.22, .9, .32, 1);
}

.srv-block:hover .srv-img-wrap img {
  transform: scale(1.04);
}



.srv-img-deco {
  position: absolute;
  width: 120px;
  height: 120px;
  border: 1.5px solid var(--rose-gold);
  border-radius: 24px;
  z-index: -1;
  opacity: .4;
}

.srv-img-deco.tl {
  top: -18px;
  left: -18px;
}

.srv-img-deco.br {
  bottom: -18px;
  right: -18px;
}

/* price list grid */
.price-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .25rem 3rem;
  margin-top: 2rem;
}

@media(max-width:767px) {
  .price-list {
    grid-template-columns: 1fr;
    gap: .25rem 0;
  }
}

.price-row {
  display: flex;
  align-items: flex-end;
  padding: .85rem .25rem;
  border-bottom: 1px dashed rgba(26, 26, 26, .12);
  transition: background .3s ease, padding .3s ease;
  border-radius: 6px;
}

.price-row:hover {
  background: linear-gradient(90deg, rgba(200, 16, 46, .05) 0%, transparent 100%);
  padding-left: .8rem;
}

.price-row .price-name {
  font-family: 'Lato', sans-serif;
  color: var(--charcoal);
  font-size: .95rem;
  font-weight: 400;
  letter-spacing: .01em;
  white-space: nowrap;
}

@media(max-width:767px) {
  .price-row .price-name {
    white-space: normal;
  }
}

.price-row .leader {
  flex: 1;
  border-bottom: 1px dotted rgba(26, 26, 26, .25);
  margin: 0 .8rem .35rem;
  align-self: flex-end;
  height: 1px;
  min-width: 1rem;
}

.price-row .price-amt {
  font-family: 'Playfair Display', serif;
  color: var(--rose-gold);
  font-weight: 600;
  font-size: 1.05rem;
  white-space: nowrap;
}

.price-row .badge {
  display: inline-block;
  background: var(--rose-gold);
  color: #fff;
  font-size: .55rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: .15rem .45rem;
  border-radius: 999px;
  margin-left: .5rem;
  vertical-align: middle;
  font-weight: 700;
}



/* page CTA strip */
.cta-strip {
  background: linear-gradient(135deg, #1A1A1A 0%, #3a0d14 100%);
  color: #fff;
}

/* ---------- TIMELINE ---------- */
.timeline {
  position: relative;
  padding-left: 2.2rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 6px;
  top: .5rem;
  bottom: .5rem;
  width: 2px;
  background: linear-gradient(180deg, var(--rose-gold), rgba(200, 16, 46, .1));
}

.timeline-item {
  position: relative;
  padding: 0 0 2.4rem;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -2.2rem;
  top: .4rem;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--rose-gold);
  border: 3px solid #fff;
  box-shadow: 0 0 0 1px rgba(200, 16, 46, .3);
}

.timeline-year {
  font-family: 'Lato', sans-serif;
  font-size: .72rem;
  color: var(--rose-gold);
  letter-spacing: .22em;
  font-weight: 700;
  text-transform: uppercase;
}

.timeline-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  margin-top: .35rem;
  line-height: 1.25;
}

.timeline-text {
  color: var(--charcoal);
  opacity: .7;
  margin-top: .6rem;
  line-height: 1.7;
  font-size: .95rem;
}

/* ---------- VALUE CARDS ---------- */
.value-card {
  background: #fff;
  border-radius: 18px;
  padding: 2rem;
  box-shadow: 0 10px 30px -18px rgba(26, 26, 26, .18);
  transition: transform .4s ease, box-shadow .4s ease, border-color .4s ease;
  border-top: 3px solid transparent;
  height: 100%;
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 40px -22px rgba(26, 26, 26, .22);
  border-top-color: var(--rose-gold);
}

.value-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--blush);
  color: var(--rose-gold);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---------- CONTACT CARDS ---------- */
.contact-card {
  background: #fff;
  border-radius: 22px;
  padding: 2rem;
  box-shadow: 0 18px 40px -22px rgba(26, 26, 26, .16);
  transition: transform .45s ease, box-shadow .45s ease;
  position: relative;
  overflow: hidden;
}

.contact-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--rose-gold), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .55s ease;
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 50px -25px rgba(26, 26, 26, .2);
}

.contact-card:hover::before {
  transform: scaleX(1);
}

.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--blush);
  color: var(--rose-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ---------- 404 ---------- */
.error-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 20px 60px;
  background:
    radial-gradient(ellipse at top, rgba(200, 16, 46, .05) 0%, transparent 60%),
    var(--blush);
}

.error-num {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(7rem, 24vw, 16rem);
  line-height: .9;
  background: linear-gradient(135deg, var(--rose-gold) 0%, #6b1320 60%, #1A1A1A 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -.02em;
  display: inline-block;
  position: relative;
}

.error-num::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -1rem;
  width: 60%;
  height: 6px;
  background: radial-gradient(ellipse, rgba(200, 16, 46, .18), transparent 70%);
  transform: translateX(-50%);
  filter: blur(6px);
}

/* ---------- INSTAGRAM CTA ROW ---------- */
.ig-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
}

@media(max-width:1023px) {
  .ig-row {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media(max-width:639px) {
  .ig-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

.ig-tile {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
}

.ig-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s ease;
}

.ig-tile::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(200, 16, 46, .55), rgba(26, 26, 26, .55));
  opacity: 0;
  transition: opacity .35s ease;
}

.ig-tile:hover img {
  transform: scale(1.08);
}

.ig-tile:hover::after {
  opacity: 1;
}

.ig-tile .ig-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  opacity: 0;
  transition: opacity .35s ease;
  z-index: 1;
}

.ig-tile:hover .ig-icon {
  opacity: 1;
}

/* ---------- LABEL ---------- */
.eyebrow {
  text-transform: uppercase;
  letter-spacing: .28em;
  font-size: .78rem;
  font-weight: 700;
  color: var(--rose-gold);
}

/* ==============================================================
   SINGULAR — Privacy Policy, Terms, and other content pages
   ============================================================== */

.singular-banner {
  padding: 5rem 0 4rem;
  background: linear-gradient(160deg, var(--blush) 0%, #fff 60%);
  border-bottom: 1px solid rgba(26, 15, 18, .07);
  position: relative;
  overflow: hidden;
}

.singular-banner::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 16, 46, .06) 0%, transparent 70%);
  pointer-events: none;
}

.singular-banner .breadcrumb {
  color: rgba(26, 26, 26, .55);
}

.singular-banner .breadcrumb a {
  color: rgba(26, 26, 26, .75);
}

.singular-banner .breadcrumb a:hover {
  color: var(--rose-gold);
}

.singular-meta {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .8rem;
  color: rgba(26, 26, 26, .45);
  letter-spacing: .04em;
}

.singular-meta .sep-dot {
  opacity: .4;
}

.singular-body {
  padding: 5rem 0 7rem;
}

.singular-back {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(26, 26, 26, .08);
}

.singular-back a {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .9rem;
  font-weight: 600;
  color: rgba(26, 26, 26, .55);
  letter-spacing: .04em;
  transition: color .25s ease, gap .25s ease;
}

.singular-back a:hover {
  color: var(--rose-gold);
  gap: .75rem;
}

/* ---- Page content typography ---- */

.page-content {
  font-size: 1rem;
  line-height: 1.85;
  color: rgba(26, 26, 26, .75);
}

.page-content > * + * {
  margin-top: 1.25rem;
}

.page-content h1,
.page-content h2,
.page-content h3,
.page-content h4,
.page-content h5 {
  font-family: 'Playfair Display', serif;
  color: var(--charcoal);
  line-height: 1.3;
  margin-top: 3rem;
  margin-bottom: .75rem;
}

.page-content h1 { font-size: 2.25rem; }
.page-content h2 {
  font-size: 1.65rem;
  padding-bottom: .6rem;
  border-bottom: 1px solid rgba(26, 26, 26, .08);
}
.page-content h3 { font-size: 1.3rem; }
.page-content h4 { font-size: 1.1rem; }
.page-content h5 { font-size: 1rem; font-weight: 700; }

.page-content p {
  margin-top: 1.1rem;
}

.page-content a {
  color: var(--rose-gold);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity .2s ease;
}

.page-content a:hover {
  opacity: .75;
}

.page-content strong,
.page-content b {
  font-weight: 700;
  color: var(--charcoal);
}

.page-content em,
.page-content i {
  font-style: italic;
}

.page-content ul,
.page-content ol {
  padding-left: 1.5rem;
  margin-top: 1rem;
}

.page-content ul { list-style: disc; }
.page-content ol { list-style: decimal; }

.page-content li {
  margin-top: .5rem;
  padding-left: .25rem;
}

.page-content li::marker {
  color: var(--rose-gold);
}

.page-content blockquote {
  margin: 2rem 0;
  padding: 1.5rem 1.75rem;
  border-left: 3px solid var(--rose-gold);
  background: var(--blush);
  border-radius: 0 12px 12px 0;
  font-style: italic;
  color: rgba(26, 26, 26, .7);
}

.page-content blockquote p {
  margin-top: 0;
}

.page-content hr {
  border: none;
  border-top: 1px solid rgba(26, 26, 26, .1);
  margin: 3rem 0;
}

.page-content table {
  width: 100%;
  border-collapse: collapse;
  font-size: .9rem;
  margin: 1.5rem 0;
}

.page-content thead th {
  background: var(--blush);
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  text-align: left;
  padding: .75rem 1rem;
  border-bottom: 2px solid rgba(26, 26, 26, .1);
}

.page-content tbody td {
  padding: .65rem 1rem;
  border-bottom: 1px solid rgba(26, 26, 26, .07);
  vertical-align: top;
}

.page-content tbody tr:hover td {
  background: rgba(250, 244, 238, .5);
}

.page-content code {
  font-family: 'Courier New', monospace;
  font-size: .88em;
  background: var(--blush);
  padding: .15em .4em;
  border-radius: 4px;
  color: var(--charcoal);
}

.page-content pre {
  background: var(--charcoal);
  color: #f0f0f0;
  padding: 1.5rem;
  border-radius: 12px;
  overflow-x: auto;
  font-size: .88rem;
  margin: 1.5rem 0;
}

.page-content pre code {
  background: none;
  padding: 0;
  color: inherit;
  border-radius: 0;
}

.page-content img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin: 1.5rem auto;
  display: block;
}

/* wp-block alignment helpers */
.page-content .aligncenter { text-align: center; }
.page-content .alignleft   { float: left; margin-right: 1.5rem; margin-bottom: 1rem; }
.page-content .alignright  { float: right; margin-left: 1.5rem; margin-bottom: 1rem; }
.page-content .wp-caption  { max-width: 100%; }
.page-content .wp-caption-text {
  font-size: .8rem;
  color: rgba(26, 26, 26, .5);
  text-align: center;
  margin-top: .4rem;
}

/* ---- end singular ---- */

.divider-flourish {
  display: inline-block;
  width: 60px;
  height: 1px;
  background: var(--rose-gold);
  margin: 0 .8rem;
  vertical-align: middle;
}