: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 !important;
  font-style: normal;
}

.navbar-nav .nav-link.active, .navbar-nav .nav-link.show

 {
    color: white;
}



@media (min-width: 1400px) {

  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1364px;
  }
}

.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(--ink-70);
}

.eyebrow-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.eyebrow-row-2 {
  justify-content: center !important;
}

/* 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;
}


.logo-wrap {
  position: relative;
}

.logo-default,
.logo-sticky {
  height: 60px;
  width: auto;
}

.logo-sticky {
  display: none;
}

.site-header.scrolled .logo-default {
  display: none !important;
}

.site-header.scrolled .logo-sticky {
  display: block !important;
}


/* dropdown */
.dropdown-submenu {
  position: relative;
}

.dropdown-submenu .dropdown-menu {
  top: 0;
  left: 100%;
  margin-top: -1px;
  display: none;
}

.dropdown-submenu:hover>.dropdown-menu {
  display: block;
}

.dropdown-submenu>.dropdown-toggle::after {
  float: right;
  margin-top: 8px;
  transform: rotate(-90deg);
}

/* 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;
}

.title-block-2 {
  max-width: 100%;
  display: grid;
  justify-content: center;
}

/* about */
.about-img-wrap {
  position: relative;
}

.about-img {
  aspect-ratio: auto;
  width: 100%;
  object-fit: contain;
  border-radius: 24px;
}
.about-img-2 {
  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-2 {
  border: 1px solid rgba(201, 169, 106, 0.25);
  background: rgba(250, 245, 236, 0.65);
  border-radius: 18px;
  padding: 1.5rem;
  height: 23%;
}

.mini-card-2 i {
  color: var(--gold);
  font-size: 1.4rem;
}

.mini-card-2 h3 {
  font-size: 1.25rem;
  margin-top: 0.6rem;
}

.mini-card-2 p {
  margin: 0.5rem 0 0;
  font-size: 0.9rem;
  color: #6b6256;
  line-height: 1.6;
}

.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: 4;
  }
}

.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: stretch;
  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: 23px;
  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;
}

.step-num-2 {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  /* margin: 0 auto; */
  font-family: var(--serif);
  font-size: 36px !important;

  color: rgba(201, 169, 106, 0.54);
  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;
  }
}


/* ============================================================
   GLP-1 Weight Loss Shots page (additive, prefix: glp-)
   ============================================================ */
.display-serif-gpl{
     color: #c9a96a !important;
}

.btn-ghost-2 {
    border: 1px solid #c9a96a;
    color: var(--ink);
    backdrop-filter: blur(6px);
}

.glp-hero {
  position: relative;
  padding: 9rem 0 5rem;
  background: var(--soft-bg);
  overflow: hidden
}

.glp-hero .glp-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 4rem;
  align-items: center
}

.glp-hero h1 {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  line-height: 1.05;
  margin: 1.2rem 0 1.4rem
}

.glp-hero p {
  color: var(--ink-70);
  font-size: 1.08rem;
  line-height: 1.75;
  max-width: 540px
}

.glp-hero-img {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-luxe);
  aspect-ratio: 4/5
}

.glp-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02)
}

.glp-hero-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(31, 26, 20, .25));
  pointer-events: none
}

.glp-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 2rem;
  color: var(--ink-70);
  font-size: .92rem
}

.glp-trust span {
  display: inline-flex;
  align-items: center;
  gap: .5rem
}

.glp-trust i {
  color: var(--gold)
}

@media(max-width:991px) {
  .glp-hero {
    padding-top: 7rem
  }

  .glp-hero .glp-hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem
  }
}

.glp-stats {
  padding: 4rem 0;
  background: #fff
}

.glp-stats .row>div {
  text-align: center
}

.glp-stat-card {
  padding: 2rem 1.25rem;
  border: 1px solid rgba(201, 169, 106, .25);
  border-radius: 20px;
  background: linear-gradient(180deg, #fff, #fbf6ec);
  transition: transform .35s ease, box-shadow .35s ease;
  height: 100%
}

.glp-stat-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft)
}

.glp-stat-card i {
  font-size: 1.8rem;
  color: var(--gold);
  margin-bottom: .75rem;
  display: block
}

.glp-stat-card h3 {
  font-family: var(--serif);
  font-size: 1.4rem;
  margin: .25rem 0 .5rem
}

.glp-stat-card p {
  font-size: .9rem;
  color: var(--ink-70);
  margin: 0
}

.glp-about {
  padding: 6.5rem 0;
  background: var(--cream)
}

.glp-about-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 4rem;
  align-items: center
}

.glp-about-img {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-luxe)
}

.glp-about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/5
}

.glp-about h2 {
  font-size: clamp(2rem, 3.6vw, 2.9rem);
  line-height: 1.1;
  margin: 1rem 0 1.25rem
}

.glp-about p {
  color: var(--ink-70);
  line-height: 1.75
}

.glp-about ul {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem 1.5rem
}

.glp-about li {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  color: var(--ink);
  font-size: .95rem
}

.glp-about li i {
  color: var(--gold);
  margin-top: .2rem
}

@media(max-width:991px) {
  .glp-about-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem
  }

  .glp-about ul {
    grid-template-columns: 1fr
  }
}

.glp-process {
  padding: 6.5rem 0;
  background: #fff;
  position: relative
}

.glp-process-track {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
  position: relative
}

.glp-process-track::before {
  content: "";
  position: absolute;
  top: 36px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent)
}

.glp-step {
  position: relative;
  text-align: center;
  padding-top: 0
}

.glp-step-num {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--gold-grad);
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.6rem;
  display: grid;
  place-items: center;
  margin: 0 auto 1.25rem;
  box-shadow: var(--shadow-gold);
  position: relative;
  z-index: 1
}

.glp-step h4 {
  font-family: var(--serif);
  font-size: 1.15rem;
  margin: 0 0 .4rem
}

.glp-step p {
  font-size: .85rem;
  color: var(--ink-70);
  margin: 0
}

@media(max-width:991px) {
  .glp-process-track {
    grid-template-columns: 1fr 1fr;
    gap: 2rem
  }

  .glp-process-track::before {
    display: none
  }
}

@media(max-width:540px) {
  .glp-process-track {
    grid-template-columns: 1fr
  }
}

.glp-benefits {
  padding: 6.5rem 0;
  background: var(--cream)
}

.glp-benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 3rem
}

.glp-benefit {
  padding: 1.75rem 1.5rem;
  background: #fff;
  border-radius: 18px;
  border: 1px solid rgba(201, 169, 106, .18);
  transition: transform .35s, box-shadow .35s, border-color .35s
}

.glp-benefit:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
  border-color: var(--gold-light)
}

.glp-benefit i {
  font-size: 1.6rem;
  color: var(--gold);
  margin-bottom: .85rem;
  display: block
}

.glp-benefit h5 {
  font-family: var(--serif);
  font-size: 1.2rem;
  margin: 0 0 .35rem
}

.glp-benefit p {
  font-size: .88rem;
  color: var(--ink-70);
  margin: 0;
  line-height: 1.6
}

@media(max-width:991px) {
  .glp-benefit-grid {
    grid-template-columns: 1fr 1fr
  }
}

@media(max-width:540px) {
  .glp-benefit-grid {
    grid-template-columns: 1fr
  }
}

.glp-candidate {
  padding: 6.5rem 0;
  background: #fff
}

.glp-candidate-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 4rem;
  align-items: center
}

.glp-candidate-img {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-luxe)
}

.glp-candidate-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 5/6
}

.glp-candidate h2 {
  font-size: clamp(2rem, 3.6vw, 2.9rem);
  line-height: 1.1;
  margin: 1rem 0 1.5rem
}

.glp-candidate-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: .85rem
}

.glp-candidate-list li {
  display: flex;
  align-items: center;
  gap: .85rem;
  padding: .85rem 1.1rem;
  background: linear-gradient(90deg, #faf6ee, #fff);
  border-left: 2px solid var(--gold);
  border-radius: 10px;
  font-size: .98rem
}

.glp-candidate-list i {
  color: var(--gold)
}

@media(max-width:991px) {
  .glp-candidate-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem
  }
}

.glp-why {
  padding: 6.5rem 0;
  background: var(--soft-bg)
}

.glp-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem
}

.glp-why-card {
  padding: 2.25rem 1.75rem;
  background: rgba(255, 255, 255, .6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, .7);
  border-radius: 22px;
  box-shadow: var(--shadow-soft);
  transition: transform .4s
}

.glp-why-card:hover {
  transform: translateY(-8px)
}

.glp-why-card .glp-why-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: var(--gold-grad);
  display: grid;
  place-items: center;
  color: var(--ink);
  font-size: 1.3rem;
  margin-bottom: 1.1rem;
  box-shadow: var(--shadow-gold)
}

.glp-why-card h5 {
  font-family: var(--serif);
  font-size: 1.3rem;
  margin: 0 0 .4rem
}

.glp-why-card p {
  font-size: .92rem;
  color: var(--ink-70);
  margin: 0;
  line-height: 1.65
}

@media(max-width:991px) {
  .glp-why-grid {
    grid-template-columns: 1fr 1fr
  }
}

@media(max-width:540px) {
  .glp-why-grid {
    grid-template-columns: 1fr
  }
}

.glp-features {
  padding: 6.5rem 0;
  background: #fff
}

.glp-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
  margin-bottom: 4rem
}

.glp-feature:last-child {
  margin-bottom: 0
}

.glp-feature.reverse {
  direction: rtl
}

.glp-feature.reverse>* {
  direction: ltr
}

.glp-feature-img {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow-luxe);
  aspect-ratio: 4/3
}

.glp-feature-img img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.glp-feature h3 {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  line-height: 1.15;
  margin: .75rem 0 1rem
}

.glp-feature p {
  color: var(--ink-70);
  line-height: 1.75
}

@media(max-width:991px) {

  .glp-feature,
  .glp-feature.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 2rem
  }
}

.glp-journey {
  padding: 6.5rem 0;
  background: var(--cream)
}

.glp-roadmap {
  position: relative;
  margin-top: 3.5rem;
  padding-left: 0
}

.glp-roadmap::before {
  content: "";
  position: absolute;
  left: 24px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, transparent, var(--gold), transparent)
}

.glp-road-step {
  position: relative;
  padding: 0 0 2.25rem 4.5rem
}

.glp-road-step:last-child {
  padding-bottom: 0
}

.glp-road-dot {
  position: absolute;
  left: 12px;
  top: 4px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--gold-grad);
  border: 4px solid var(--cream);
  box-shadow: var(--shadow-gold)
}

.glp-road-step h5 {
  font-family: var(--serif);
  font-size: 1.35rem;
  margin: 0 0 .35rem
}

.glp-road-step p {
  color: var(--ink-70);
  margin: 0
}

.glp-results {
  padding: 6.5rem 0;
  background: #fff
}

.glp-results-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: repeat(2, 200px);
  gap: 1rem;
  margin-top: 3rem
}

.glp-results-grid figure {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-soft)
}

.glp-results-grid figure:nth-child(1) {
  grid-row: span 2
}

.glp-results-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s
}

.glp-results-grid figure:hover img {
  transform: scale(1.06)
}

.glp-results-grid figcaption {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  color: #fff;
  font-family: var(--serif);
  font-size: 1.1rem;
  text-shadow: 0 2px 12px rgba(0, 0, 0, .4)
}

@media(max-width:991px) {
  .glp-results-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 180px
  }

  .glp-results-grid figure:nth-child(1) {
    grid-row: auto;
    grid-column: span 2
  }
}

.glp-faq {
  padding: 6.5rem 0;
  background: var(--cream)
}

.glp-faq .accordion-item {
  border: 1px solid rgba(201, 169, 106, .25);
  background: #fff;
  border-radius: 14px !important;
  margin-bottom: .85rem;
  overflow: hidden
}

.glp-faq .accordion-button {
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--ink);
  background: #fff;
  padding: 1.25rem 1.4rem;
  box-shadow: none
}

.glp-faq .accordion-button:not(.collapsed) {
  background: linear-gradient(90deg, #faf6ee, #fff);
  color: var(--ink)
}

.glp-faq .accordion-button:focus {
  box-shadow: none;
  border-color: var(--gold-light)
}

.glp-faq .accordion-body {
  color: var(--ink-70);
  line-height: 1.75;
  padding: 0 1.4rem 1.4rem
}

.glp-cta {
  position: relative;
  padding: 7rem 0;
  text-align: center;
  overflow: hidden;
  color: #fff
}

.glp-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("assets/cta.jpg") center/cover no-repeat;
  filter: brightness(.5)
}

.glp-cta>div {
  position: relative;
  z-index: 1
}

.glp-cta h2 {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  line-height: 1.1;
  margin: 0 0 1.25rem;
  color: #fff
}

.glp-cta p {
  max-width: 640px;
  margin: 0 auto 2rem;
  color: rgba(255, 255, 255, .85);
  font-size: 1.05rem;
  line-height: 1.75
}

.glp-location {
  padding: 6.5rem 0;
  background: #fff
}

.glp-location-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3rem;
  align-items: stretch
}

.glp-location-info {
  padding: 2.5rem;
  background: linear-gradient(180deg, #faf6ee, #fff);
  border: 1px solid rgba(201, 169, 106, .2);
  border-radius: 22px
}

.glp-location-info h3 {
  font-family: var(--serif);
  font-size: 1.8rem;
  margin: .5rem 0 1.5rem
}

.glp-location-info ul {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  display: grid;
  gap: .85rem
}

.glp-location-info li {
  display: flex;
  gap: .85rem;
  color: var(--ink);
  font-size: .96rem
}

.glp-location-info li i {
  color: var(--gold);
  font-size: 1.1rem;
  margin-top: .15rem
}

.glp-map {
  border-radius: 22px;
  overflow: hidden;
  min-height: 380px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(201, 169, 106, .2)
}

.glp-map iframe {
  width: 100%;
  height: 100%;
  min-height: 380px;
  border: 0;
  display: block
}

@media(max-width:991px) {
  .glp-location-grid {
    grid-template-columns: 1fr
  }
}



------------------------------------------------



