
    :root {
  --gold: #c9a96a;
  --gold-light: #e3c98c;
  --champagne: #efe2c9;
  --nude: #e6d8c4;
  --cream: #faf5ec;
  --ink: #1f1a14;
  --ink-70: rgba(31, 26, 20, 0.7);
  --soft-bg: linear-gradient(180deg, #faf6ee, #ece1cd);
  --gold-grad: linear-gradient(135deg, #e3c98c, #b08a4f);
  --shadow-luxe: 0 30px 80px -30px rgba(80, 60, 30, 0.35);
  --shadow-soft: 0 12px 40px -12px rgba(80, 60, 30, 0.25);
  --shadow-gold: 0 18px 50px -18px rgba(201, 169, 106, 0.55);
  --serif: "Cormorant Garamond", Georgia, serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Inter", system-ui, sans-serif;
  color: var(--ink);
  background: #fdfaf3;
  margin: 0;
  -webkit-font-smoothing: antialiased;
}
h1,
h2,
h3,
h4 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.01em;
}
img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}

/* utils */
.text-cream {
  color: var(--cream) !important;
}
.text-cream-65 {
  color: rgba(250, 245, 236, 0.65);
}
.text-ink-70 {
  color: var(--ink-70);
}
.text-gold {
  color: var(--gold) !important;
}
.font-serif {
  font-family: var(--serif);
}
.gold-grad {
  background: var(--ink);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: normal;
}

@media (min-width: 1400px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1340px;
    }
}
.gold-light {
  color: var(--gold-light) !important;
}
.shadow-luxe {
  box-shadow: var(--shadow-luxe);
}
.bg-soft {
  background: var(--soft-bg);
}
.bg-cream {
  background: var(--cream);
}
.glass {
  background: rgba(250, 245, 236, 0.65);
  backdrop-filter: blur(18px) saturate(140%);
  border: 1px solid rgba(201, 169, 106, 0.25);
}
.hairline {
  height: 1px;
  width: 48px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.hairline-x {
  display: inline-block;
  height: 1px;
  width: 40px;
  background: var(--gold-light);
  vertical-align: middle;
}
.hairline-x.dark {
  background: var(--gold);
}
.eyebrow {
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: var(--gold);
}
.eyebrow-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* buttons */
.btn {
  border-radius: 999px;
  padding: 0.85rem 1.6rem;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  border: none;
}
.btn-gold {
  background: var(--gold-grad);
  color: var(--ink);
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-luxe);
  color: var(--ink);
}
.btn-ghost {
  border: 1px solid rgba(250, 245, 236, 0.4);
  color: var(--cream);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover {
  border-color: var(--gold-light);
  color: var(--gold-light);
}
.btn-ink {
  background: var(--ink);
  color: var(--cream);
}
.btn-ink:hover {
  background: var(--gold);
  color: var(--ink);
}

/* header */
.site-header {
      /* background: rgb(11 11 11 / 28%); */
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1030;
  transition: all 0.4s ease;
  padding: 1rem 0;
}

.logo-wrap {
    position: relative !important;
    display: inline-block !important;
}

.logo-default,
.logo-sticky {
    height: 60px !important;
    width: auto !important;
    transition: all 0.3s ease !important;
}

.logo-sticky {
    display: none !important;
}



/* Sticky Header */
.header.sticky .logo-default {
    display: none !important;
}

.header .sticky .logo-sticky {
    display: block !important;
}
.site-header.scrolled {
  background: rgba(250, 245, 236, 0.85);
  backdrop-filter: blur(18px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
  padding: 0.4rem 0;
}
.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gold-grad);
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--ink);
  box-shadow: var(--shadow-gold);
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.brand-title {
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--cream);
  transition: color 0.3s;
}
.scrolled .brand-title {
  color: var(--ink);
}
.brand-sub {
  font-size: 0.55rem;
  letter-spacing: 0.4em;
  color: var(--gold);
  text-transform: uppercase;
}
.navbar-nav .nav-link {
  color: rgba(250, 245, 236, 0.9);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 0.5rem 0.8rem;
  transition: color 0.25s;
}
.navbar-nav .nav-link:hover {
  color: var(--gold-light);
}
.scrolled .navbar-nav .nav-link {
  color: rgba(31, 26, 20, 0.8);
}
.scrolled .navbar-nav .nav-link:hover {
  color: var(--gold);
}
.navbar-toggler {
  border: none;
  color: var(--cream);
  font-size: 1.4rem;
}
.scrolled .navbar-toggler {
  color: var(--ink);
}
.mobile-menu {
  background: #1f1a14;
  color: var(--cream);
}
.mobile-menu a {
  font-family: var(--serif);
  font-size: 1.8rem;
  color: var(--cream);
}
.mobile-menu a:hover {
  color: var(--gold-light);
}

/* hero */
.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  isolation: isolate;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(31, 26, 20, 0.55),
    rgba(31, 26, 20, 0.35) 50%,
    rgba(31, 26, 20, 0.8)
  );
  z-index: -1;
}
.hero-content {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8rem 1.5rem 6rem;
  color: var(--cream);
}
.display-serif {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  line-height: 1.05;
  color: var(--cream);
  margin-top: 1.5rem;
  max-width: 18ch;
}
.hero-lead {
  max-width: 560px;
  color: rgba(250, 245, 236, 0.85);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-top: 1.8rem;
}
.hero-chevron {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(250, 245, 236, 0.7);
  font-size: 1.3rem;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%,
  100% {
    transform: translate(-50%, 0);
  }
  50% {
    transform: translate(-50%, 8px);
  }
}

.logo-w{
  width: 100%;
  height: 83px;
}

/* trust */
.trust-wrap {
  position: relative;
  margin-top: -5rem;
  padding: 0 1rem 1rem;
  z-index: 5;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  border-radius: 20px;
  overflow: hidden;
  max-width: 1100px;
  margin: 0 auto;
  background: rgba(201, 169, 106, 0.2);
}
@media (min-width: 768px) {
  .trust-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}
.trust-grid > div {
  background: rgba(250, 245, 236, 0.55);
  padding: 1.5rem;
  text-align: center;
  backdrop-filter: blur(10px);
}
.trust-grid .num {
  font-family: var(--serif);
  font-size: 2rem;
}
.trust-grid .lbl {
  margin-top: 0.4rem;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-70);
}

/* sections */
.section {
  padding: 6.5rem 0;
}
@media (min-width: 768px) {
  .section {
    /* padding: 9rem 0; */
    padding: 5rem 0;
  }
}
.section-title {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  line-height: 1.1;
  margin-top: 1.2rem;
}
.section-sub {
  margin-top: 1.2rem;
  font-size: 1.05rem;
  color: #6b6256;
  line-height: 1.7;
  max-width: 640px;
}
.title-block {
  max-width: 560px;
}

/* about */
.about-img-wrap {
  position: relative;
}
.about-img {
  aspect-ratio: 4/5;
  width: 100%;
  object-fit: cover;
  border-radius: 24px;
}
.about-card {
  position: absolute;
  bottom: -2rem;
  right: -1rem;
  width: 260px;
  border-radius: 18px;
  padding: 1.5rem;
}
.mini-card {
  border: 1px solid rgba(201, 169, 106, 0.25);
  background: rgba(250, 245, 236, 0.65);
  border-radius: 18px;
  padding: 1.5rem;
  height: 100%;
}
.mini-card i {
  color: var(--gold);
  font-size: 1.4rem;
}
.mini-card h3 {
  font-size: 1.25rem;
  margin-top: 0.6rem;
}
.mini-card p {
  margin: 0.5rem 0 0;
  font-size: 0.9rem;
  color: #6b6256;
  line-height: 1.6;
}

/* services list */
.svc-row {
  display: grid;
  gap: 3rem;
  grid-template-columns: 1fr;
  align-items: center;
  margin-bottom: 6rem;
}
@media (min-width: 992px) {
  .svc-row {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
  .svc-row.rev .svc-img {
    order: 2;
  }
}
.svc-img {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-luxe);
}
.svc-img img {
  aspect-ratio: 6/5;
  width: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}
.svc-img:hover img {
  transform: scale(1.03);
}
.svc-img .svc-tag {
  position: absolute;
  top: 1.2rem;
  left: 1.2rem;
  background: rgba(250, 245, 236, 0.65);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(201, 169, 106, 0.3);
  padding: 0.4rem 1rem;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
}
.svc-name {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  margin-top: 0.6rem;
}
.svc-desc {
  color: #6b6256;
  line-height: 1.7;
  margin-top: 1.5rem;
}
.svc-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
}
.svc-list li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.95rem;
  color: rgba(31, 26, 20, 0.85);
  padding: 0.3rem 0;
}
.svc-list .dot {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--gold-grad);
  display: grid;
  place-items: center;
  color: var(--ink);
  font-size: 0.65rem;
}
.learn-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.5rem;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}
.learn-link:hover {
  color: var(--ink);
}

.tag-strip {
  margin-top: 4rem;
  border: 1px solid rgba(201, 169, 106, 0.25);
  background: rgba(239, 226, 201, 0.4);
  border-radius: 18px;
  padding: 1.6rem 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2rem;
  justify-content: center;
}
.tag-strip span {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-70);
}

/* gallery masonry */
.masonry {
  column-count: 2;
  column-gap: 1.25rem;
  margin-top: 3rem;
}
@media (min-width: 768px) {
  .masonry {
    column-count: 3;
  }
}
.m-item {
  break-inside: avoid;
  width: 100%;
  margin-bottom: 1.25rem;
  display: block;
  position: relative;
  border: none;
  background: none;
  padding: 0;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  cursor: pointer;
}
.m-item img {
  width: 100%;
  transition: transform 0.7s;
}
.m-item:hover img {
  transform: scale(1.08);
}
.m-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(31, 26, 20, 0.55), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.m-item:hover::after {
  opacity: 1;
}
.m-tag {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  background: var(--gold-grad);
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 2;
}
.m-item:hover .m-tag {
  opacity: 1;
}

/* lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(31, 26, 20, 0.95);
  backdrop-filter: blur(18px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  z-index: 1080;
}
.lightbox.show {
  display: flex;
}
.lightbox img {
  max-width: 92vw;
  max-height: 88vh;
  border-radius: 18px;
  box-shadow: var(--shadow-luxe);
}
.lb-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(250, 245, 236, 0.1);
  border: none;
  color: var(--cream);
  font-size: 1.2rem;
}

/* why grid */
.why-card {
  border: 1px solid rgba(201, 169, 106, 0.25);
  background: rgba(250, 245, 236, 0.6);
  border-radius: 24px;
  padding: 2rem;
  height: 100%;
  transition: all 0.35s;
}
.why-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: var(--shadow-luxe);
}
.why-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--gold-grad);
  display: grid;
  place-items: center;
  color: var(--ink);
  font-size: 1.3rem;
  box-shadow: var(--shadow-gold);
}
.why-card h3 {
  margin-top: 1.5rem;
  font-size: 1.45rem;
}
.why-card p {
  color: #6b6256;
  margin-top: 0.8rem;
  line-height: 1.7;
  font-size: 0.92rem;
}

/* locations */
.loc-card {
  border: 1px solid rgba(201, 169, 106, 0.25);
  background: rgba(250, 245, 236, 0.7);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.loc-card iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(30%);
}
.loc-body {
  padding: 2rem;
}
.loc-body h3 {
  font-size: 1.8rem;
  margin-top: 0.6rem;
}
.loc-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.loc-list li {
  display: flex;
  gap: 0.7rem;
  font-size: 0.92rem;
  color: rgba(31, 26, 20, 0.8);
}
.loc-list i {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 0.2rem;
}

/* featured */
.feat-card {
  position: relative;
  border: 1px solid rgba(201, 169, 106, 0.25);
  background: rgba(250, 245, 236, 0.7);
  border-radius: 24px;
  padding: 2rem;
  height: 100%;
  overflow: hidden;
  transition: all 0.35s;
}
.feat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-luxe);
}
.feat-card i.lead-icon {
  color: var(--gold);
  font-size: 1.8rem;
}
.feat-card h3 {
  margin-top: 1.2rem;
  font-size: 1.4rem;
}
.feat-card p {
  color: #6b6256;
  line-height: 1.6;
  font-size: 0.92rem;
  margin-top: 0.8rem;
}
.feat-foot {
  margin-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.feat-foot .price {
  font-family: var(--serif);
  font-size: 1.3rem;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  color: transparent;
}
.feat-foot a {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(31, 26, 20, 0.8);
}
.feat-foot a:hover {
  color: var(--gold);
}

/* testimonials */
.testimonials-section {
  background: var(--ink);
  color: var(--cream);
}
.testimonials-section .section-title {
  color: var(--cream);
}
.testi-box {
  border-radius: 24px;
  padding: 3rem 2rem;
  max-width: 880px;
  margin: 3rem auto 0;
  background: rgba(250, 245, 236, 0.05) !important;
}
.stars {
  color: var(--gold);
  font-size: 1rem;
  display: flex;
  gap: 0.2rem;
  justify-content: center;
}
.quote {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2.4vw, 1.9rem);
  line-height: 1.55;
  color: rgba(250, 245, 236, 0.95);
  margin: 2rem 0 0;
}
.t-name {
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--gold-light);
}
.t-city {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: rgba(250, 245, 236, 0.6);
  margin-top: 0.3rem;
}
.testi-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 2.5rem;
}
.t-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(250, 245, 236, 0.3);
  background: transparent;
  color: var(--cream);
  display: grid;
  place-items: center;
  transition: all 0.25s;
}
.t-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.testi-controls .carousel-indicators {
  display: flex;
  gap: 0.5rem;
  position: static;
}
.testi-controls .carousel-indicators button {
  width: 12px;
  height: 6px;
  border-radius: 999px;
  background: rgba(250, 245, 236, 0.3);
  border: none;
  transition: all 0.3s;
}
.testi-controls .carousel-indicators .active {
  width: 32px;
  background: var(--gold);
}

/* process */
.process-row {
  position: relative;
}
.process-row::before {
  content: "";
  position: absolute;
  top: 32px;
  left: 5%;
  right: 5%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  display: none;
}
@media (min-width: 768px) {
  .process-row::before {
    display: block;
  }
}
.step-num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--gold-grad);
  display: grid;
  place-items: center;
  margin: 0 auto;
  font-family: var(--serif);
  font-size: 1.25rem;
  color: var(--ink);
  box-shadow: var(--shadow-gold);
  position: relative;
  z-index: 1;
}
.process-row h3 {
  margin-top: 1.5rem;
  font-size: 1.4rem;
}
.process-row p {
  color: #6b6256;
  margin-top: 0.6rem;
  font-size: 0.92rem;
  line-height: 1.7;
}

/* cta banner */
.cta-banner {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: 6rem 0;
}
.cta-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}
.cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(31, 26, 20, 0.55);
  z-index: -1;
}

/* faq */
.faq-item {
  border: 1px solid rgba(201, 169, 106, 0.2) !important;
  border-radius: 18px !important;
  background: rgba(250, 245, 236, 0.7);
  margin-bottom: 0.8rem;
  overflow: hidden;
}
.faq-item .accordion-button {
  background: transparent;
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--ink);
  box-shadow: none;
  padding: 1.4rem 1.7rem;
}
.faq-item .accordion-button:not(.collapsed) {
  color: var(--ink);
  background: transparent;
}
.faq-item .accordion-button::after {
  filter: invert(70%) sepia(40%) saturate(400%) hue-rotate(7deg);
}
.faq-item .accordion-body {
  padding: 0 1.7rem 1.4rem;
  color: #6b6256;
  font-size: 0.92rem;
  line-height: 1.7;
}

/* contact */
.contact-img-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  min-height: 420px;
  height: 100%;
}
.contact-img-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.contact-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(31, 26, 20, 0.7), transparent);
}
.contact-img-body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 2.5rem;
  color: var(--cream);
}
.contact-img-body h3 {
  font-size: 2rem;
  margin-top: 0.6rem;
}
.contact-img-body p {
  margin-top: 0.7rem;
  font-size: 0.92rem;
  color: rgba(250, 245, 236, 0.85);
  max-width: 340px;
}
.contact-form {
  border: 1px solid rgba(201, 169, 106, 0.25);
  background: rgba(250, 245, 236, 0.7);
  border-radius: 24px;
  padding: 2.2rem;
  box-shadow: var(--shadow-soft);
}
.contact-form h3 {
  font-size: 1.9rem;
}
.contact-form label {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(31, 26, 20, 0.6);
  margin-bottom: 0.4rem;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(201, 169, 106, 0.3);
  background: rgba(250, 245, 236, 0.8);
  border-radius: 12px;
  padding: 0.75rem 1rem;
  font-size: 0.92rem;
  color: var(--ink);
  outline: none;
  transition: border-color 0.25s;
  font-family: inherit;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
}

/* instagram */
.ig-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem;
}
@media (min-width: 576px) {
  .ig-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 768px) {
  .ig-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}
.ig-grid a {
  position: relative;
  aspect-ratio: 1;
  display: block;
  border-radius: 16px;
  overflow: hidden;
}
.ig-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}
.ig-grid a:hover img {
  transform: scale(1.1);
}
.ig-grid i {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(31, 26, 20, 0);
  color: var(--cream);
  opacity: 0;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.ig-grid a:hover i {
  opacity: 1;
  background: rgba(31, 26, 20, 0.5);
}

/* footer */
.site-footer {
  background: var(--ink);
  color: rgba(250, 245, 236, 0.8);
  padding: 6rem 0 2.5rem;
}
.site-footer h4 {
  font-family: var(--serif);
  color: var(--cream);
  font-size: 1.15rem;
}
.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.site-footer ul a {
  font-size: 0.92rem;
  color: rgba(250, 245, 236, 0.65);
  transition: color 0.25s;
}
.site-footer ul a:hover {
  color: var(--gold);
}
.contact-list li {
  display: flex;
  gap: 0.7rem;
  font-size: 0.92rem;
  color: rgba(250, 245, 236, 0.7);
}
.contact-list i {
  color: var(--gold);
}
.social {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(250, 245, 236, 0.2);
  display: grid;
  place-items: center;
  color: rgba(250, 245, 236, 0.7);
  transition: all 0.25s;
}
.social:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.footer-bottom {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(250, 245, 236, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.78rem;
  color: rgba(250, 245, 236, 0.5);
}
.footer-bottom a:hover {
  color: var(--gold);
}

/* reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* responsive header tweaks */
@media (max-width: 991px) {
  .navbar-collapse {
    display: none !important;
  }
}

/* =========================================================
   REVENGE SIGNATURE FACIAL — page-specific classes (rsf-*)
   Built entirely from existing design tokens (--gold, --cream,
   --ink, --serif, shadows). No new colors, fonts, or tokens.
========================================================= */

/* ---------- Hero ---------- */
.rsf-hero {
  background: var(--cream);
  padding: 7rem 0 5rem;
  overflow: hidden;
}
.rsf-hero-label {
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold);
}
.rsf-hero-title {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  line-height: 1.05;
  color: var(--ink);
  margin: 0.75rem 0 1.25rem;
}
.rsf-hero-sub {
  font-size: 1.1rem;
  color: var(--ink-70);
  max-width: 480px;
}
.rsf-hero-media {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-luxe);
}
.rsf-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  aspect-ratio: 4/5;
}
.rsf-hero-float {
  position: absolute;
  left: -1.5rem;
  bottom: -1.5rem;
  background: #fff;
  border-radius: 18px;
  padding: 1.1rem 1.4rem;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.rsf-hero-float .rsf-stars {
  color: var(--gold);
  letter-spacing: 2px;
  font-size: 0.95rem;
}
.rsf-hero-float .rsf-float-label {
  font-family: var(--serif);
  font-weight: 600;
  color: var(--ink);
}

/* ---------- Experience bar ---------- */
.rsf-experience {
  background: var(--ink);
  padding: 2.25rem 0;
}
.rsf-experience-item {
  text-align: center;
  color: var(--cream);
  padding: 0.5rem 1rem;
  border-left: 1px solid rgba(250, 245, 236, 0.15);
}
.rsf-experience-item:first-child {
  border-left: none;
}
.rsf-experience-item i {
  color: var(--gold-light);
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  display: block;
}
.rsf-experience-item span {
  font-family: var(--serif);
  font-size: 1.05rem;
  letter-spacing: 0.02em;
}

/* ---------- Intro ---------- */
.rsf-intro {
  background: #fff;
  padding: 6rem 0;
}
.rsf-intro-media {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.rsf-intro-media img {
  width: 100%;
  display: block;
}

/* ---------- Facial Journey (horizontal step cards) ---------- */
.rsf-journey {
  background: var(--soft-bg);
  padding: 6rem 0;
}
.rsf-journey-card {
  background: #fff;
  border-radius: 20px;
  padding: 2rem 1.4rem;
  text-align: center;
  height: 100%;
  box-shadow: var(--shadow-soft);
  transition: transform 0.35s ease;
}
.rsf-journey-card:hover {
  transform: translateY(-6px);
}
.rsf-journey-num {
  font-family: var(--serif);
  font-size: 2.4rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.75rem;
}
.rsf-journey-card h3 {
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--ink);
  margin: 0;
}

/* ---------- Difference (image left / content right) ---------- */
.rsf-difference {
  background: #fff;
  padding: 6rem 0;
}
.rsf-difference-media {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.rsf-difference-media img {
  width: 100%;
  display: block;
}

/* ---------- Benefits grid ---------- */
.rsf-benefits {
  background: var(--soft-bg);
  padding: 6rem 0;
}
.rsf-benefit-card {
  background: #fff;
  border-radius: 18px;
  padding: 1.75rem 1.25rem;
  text-align: center;
  height: 100%;
  box-shadow: var(--shadow-soft);
}
.rsf-benefit-card i {
  font-size: 1.6rem;
  color: var(--gold);
  margin-bottom: 0.75rem;
  display: block;
}
.rsf-benefit-card span {
  font-family: var(--serif);
  font-size: 1.02rem;
  color: var(--ink);
}

/* ---------- Skin concerns ---------- */
.rsf-concerns {
  background: #fff;
  padding: 6rem 0;
}
.rsf-concern-pill {
  background: var(--champagne);
  border-radius: 999px;
  padding: 0.9rem 1.5rem;
  text-align: center;
  font-family: var(--serif);
  color: var(--ink);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---------- Gallery ---------- */
.rsf-gallery {
  background: var(--soft-bg);
  padding: 6rem 0;
}
.rsf-gallery-item {
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-soft);
  display: block;
  width: 100%;
  border: none;
  padding: 0;
  cursor: pointer;
}
.rsf-gallery-item img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}
.rsf-gallery-item:hover img {
  transform: scale(1.05);
}
.rsf-gallery-tag {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, transparent, rgba(31, 26, 20, 0.85));
  color: var(--cream);
  font-family: var(--serif);
  padding: 2rem 1rem 1rem;
  font-size: 0.95rem;
  text-align: left;
}

/* ---------- Luxury spa room (full-width) ---------- */
.rsf-room {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.rsf-room img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.rsf-room-overlay {
  position: absolute !important;
  inset: 0;
  background: linear-gradient(135deg, rgba(31, 26, 20, 0.78), rgba(31, 26, 20, 0.45));
}
.rsf-room-content {
  position: relative;
  z-index: 1;
  color: var(--cream);
  max-width: 600px;
  padding: 4rem 0;
}
.rsf-room-content h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}
.rsf-room-content p {
  color: rgba(250, 245, 236, 0.85);
  font-size: 1.05rem;
}

/* ---------- Candidate ---------- */
.rsf-candidate {
  background: #fff;
  padding: 6rem 0;
}
.rsf-candidate-media {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.rsf-candidate-media img {
  width: 100%;
  display: block;
}

/* ---------- Why ---------- */
.rsf-why {
  background: var(--soft-bg);
  padding: 6rem 0;
}
.rsf-why-card {
  background: #fff;
  border-radius: 18px;
  padding: 2rem 1.5rem;
  height: 100%;
  box-shadow: var(--shadow-soft);
}
.rsf-why-card i {
  font-size: 1.6rem;
  color: var(--gold);
  margin-bottom: 0.75rem;
  display: block;
}
.rsf-why-card h3 {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--ink);
  margin: 0;
}

/* ---------- FAQ ---------- */
.rsf-faq {
  background: #fff;
  padding: 6rem 0;
}

/* ---------- CTA ---------- */
.rsf-cta {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.rsf-cta img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.rsf-cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(31, 26, 20, 0.55), rgba(31, 26, 20, 0.85));
}
.rsf-cta-content {
  position: relative;
  z-index: 1;
  color: var(--cream);
  padding: 4rem 1rem;
}
.rsf-cta-content h2 {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  margin-bottom: 1rem;
}
.rsf-cta-content p {
  color: rgba(250, 245, 236, 0.85);
  font-size: 1.1rem;
  max-width: 560px;
  margin: 0 auto 1.5rem;
}

/* ---------- Responsive ---------- */
@media (max-width: 991px) {
  .rsf-hero {
    padding: 5rem 0 3rem;
    text-align: center;
  }
  .rsf-hero-sub {
    margin: 0 auto;
  }
  .rsf-hero-float {
    left: 1rem;
    bottom: 1rem;
  }
  .rsf-experience-item {
    border-left: none;
    border-top: 1px solid rgba(250, 245, 236, 0.15);
    margin-top: 1rem;
    padding-top: 1.25rem;
  }
  .rsf-experience-item:first-child {
    border-top: none;
    margin-top: 0;
    padding-top: 0.5rem;
  }
}

----------------------------------------------------
