:root {
  /* Reference-inspired: deep crimson red + white + soft rose */
  --brand: #C41E3A;
  --brand-dark: #9E1830;
  --brand-soft: #E85A6E;
  --rose: #F8EEF0;
  --ink: #222222;
  --muted: #6B6464;
  --line: #EDE4E6;
  --bg: #FFFFFF;
  --bg-soft: #F9F5F6;
  --shadow: 0 12px 40px rgba(196, 30, 58, 0.10);
  --radius: 12px;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Outfit", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}
img { max-width: 100%; height: auto; }
a { color: var(--brand); text-decoration: none; }
a:hover { color: var(--brand-dark); }

h1,h2,h3,h4,.display-font {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.01em;
}

.btn {
  border-radius: 6px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-size: .82rem;
  padding: 0.75rem 1.45rem;
  transition: all .25s ease;
}
.btn-primary {
  --bs-btn-bg: var(--brand);
  --bs-btn-border-color: var(--brand);
  --bs-btn-hover-bg: var(--brand-dark);
  --bs-btn-hover-border-color: var(--brand-dark);
  --bs-btn-active-bg: var(--brand-dark);
  --bs-btn-active-border-color: var(--brand-dark);
  box-shadow: 0 8px 20px rgba(196,30,58,.18);
}
.btn-outline-primary {
  --bs-btn-color: var(--brand);
  --bs-btn-border-color: var(--brand);
  --bs-btn-hover-bg: var(--brand);
  --bs-btn-hover-border-color: var(--brand);
  --bs-btn-hover-color: #fff;
}
.btn-sm { padding: .45rem 1rem; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1040;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .25s ease, border-color .25s ease;
}
.site-header.scrolled {
  box-shadow: 0 8px 30px rgba(0,0,0,.06);
  border-bottom-color: var(--line);
}
.site-header-nav {
  padding-top: .55rem !important;
  padding-bottom: .55rem !important;
  min-height: 68px;
  align-items: center;
}
.brand-logo {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  color: var(--ink) !important;
  line-height: 0;
  margin-right: .25rem;
}
.site-logo-img {
  display: block;
  width: auto;
  height: 82px;
  max-width: min(340px, 68vw);
  object-fit: contain;
}
.site-header .site-logo-img {
  height: 82px;
  max-width: min(340px, 68vw);
  margin: -12px 0;
}
.site-logo-img--drawer {
  height: 64px;
  max-width: min(300px, 78vw);
}
.site-logo-img--footer {
  height: 84px;
  max-width: 340px;
  margin-bottom: 1rem;
}
.footer-logo-link {
  display: inline-block;
  line-height: 0;
}
@media (max-width: 991.98px) {
  .site-header-nav {
    min-height: 62px;
    padding-top: .45rem !important;
    padding-bottom: .45rem !important;
  }
  .site-header .site-logo-img {
    height: 68px;
    max-width: min(280px, 72vw);
    margin: -8px 0;
  }
}
.brand-mark {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  display: inline-grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-text strong { font-family: var(--font-display); font-size: 1.35rem; }
.brand-text small { color: var(--muted); font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; }
.navbar-nav .nav-link {
  color: var(--ink);
  font-weight: 500;
  padding: .5rem .9rem !important;
  position: relative;
}
.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover { color: var(--brand); }
.navbar-nav .nav-link.active::after {
  content: "";
  position: absolute;
  left: .9rem; right: .9rem; bottom: .15rem;
  height: 2px; background: var(--brand);
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 20%, rgba(196,30,58,.08), transparent 40%),
    radial-gradient(circle at 10% 80%, rgba(232,90,110,.10), transparent 35%),
    linear-gradient(180deg, #fff 0%, #fffafb 55%, #fff2f5 100%);
  padding: 2.6rem 0 2rem;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../img/team-bg.png") center/cover no-repeat;
  pointer-events: none;
  opacity: .45;
}
.hero .container { position: relative; z-index: 1; }
.hero-eyebrow-wrap {
  display: flex;
  align-items: center;
  gap: .9rem;
  margin-bottom: .85rem;
}
.hero-eyebrow {
  letter-spacing: .22em;
  text-transform: uppercase;
  font-size: .78rem;
  color: var(--brand);
  font-weight: 600;
  position: relative;
  padding-bottom: .1rem;
}
.hero-eyebrow::after {
  content: "";
  display: inline-block;
  width: 72px;
  height: 1px;
  background: linear-gradient(90deg, rgba(196,30,58,.65), transparent);
  margin-left: .7rem;
  vertical-align: middle;
}
.hero-sparkles {
  display: inline-flex;
  gap: .25rem;
  color: #E6B34A;
  font-size: .75rem;
}
.hero h1 {
  font-size: clamp(2.8rem, 5.4vw, 4.8rem);
  line-height: 1.05;
  margin-bottom: .8rem;
  max-width: 10ch;
}
.hero-accent { color: var(--brand); }
.hero-quote {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--brand);
  font-style: italic;
  margin-bottom: 1rem;
}
.hero-copy {
  color: var(--muted);
  max-width: 32rem;
  margin-bottom: 1.55rem;
  font-size: 1rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .9rem;
  margin-bottom: 1.6rem;
}
.btn-hero-primary,
.btn-hero-secondary {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  min-width: 180px;
}
.btn-hero-primary i,
.btn-hero-secondary i { font-size: .92rem; }
.hero-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: .85rem;
}
.hero-feature-card {
  background: #fff;
  border: 1px solid #f2e6e8;
  border-radius: 16px;
  min-height: 92px;
  padding: .95rem .9rem .75rem;
  box-shadow: 0 10px 24px rgba(196,30,58,.05);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: .5rem;
}
.hero-feature-card i {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  font-size: 1rem;
}
.hero-feature-card span {
  font-size: .9rem;
  color: var(--ink);
  font-weight: 500;
  line-height: 1.35;
}
.feature-pink i { background: #fff0f3; color: var(--brand); }
.feature-lilac i { background: #f2edff; color: #6d5df3; }
.feature-gold i { background: #fff8e7; color: #d4a62b; }
.feature-mint i { background: #edfdf2; color: #31a85b; }
.hero-feature-card::after {
  content: "";
  width: 26px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  opacity: .25;
}
.feature-pink { color: var(--brand); }
.feature-lilac { color: #6d5df3; }
.feature-gold { color: #d4a62b; }
.feature-mint { color: #31a85b; }
.hero-visual {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 20px 48px rgba(196,30,58,.13);
  min-height: 460px;
  background: #ddd center/cover no-repeat;
}
.hero-corner-ribbon {
  position: absolute;
  top: 0;
  left: 0;
  width: 170px;
  height: 110px;
  background: linear-gradient(135deg, #b70f3a, #d52b55);
  clip-path: polygon(0 0, 100% 0, 0 100%);
  z-index: 2;
}
.hero-corner-ribbon::after {
  content: "✦ ✦ ✦";
  position: relative;
  color: rgba(255,255,255,.55);
  font-size: .85rem;
  left: 24px;
  top: 18px;
  letter-spacing: .12em;
}
.hero-visual img {
  width: 100%; height: 100%; object-fit: cover; min-height: 460px;
  display: block;
}
.floating-badge {
  position: absolute;
  left: 1.4rem; bottom: 1.2rem;
  background: linear-gradient(135deg, var(--brand-dark), var(--brand));
  color: #fff;
  padding: .82rem 1.25rem;
  border-radius: 999px;
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 600;
  box-shadow: 0 12px 28px rgba(196,30,58,.2);
  display: inline-flex;
  align-items: center;
  gap: .45rem;
}
.floating-badge i { color: #F0C86F; }
.hero-floral-right {
  position: absolute;
  right: .5rem;
  bottom: -.15rem;
  width: 148px;
  height: 148px;
  background: url("../img/menu-floral.png") center/contain no-repeat;
  opacity: .55;
}
.hero-stats-band {
  margin-top: 1.9rem;
  background: linear-gradient(135deg, #b70f3a, #d52b55);
  border-radius: 24px;
  padding: 1.35rem 1.5rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 1rem;
  box-shadow: 0 18px 40px rgba(196,30,58,.18);
}
.hero-stat {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .9rem;
  color: #fff;
  position: relative;
}
.hero-stat:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -.5rem;
  top: 15%;
  bottom: 15%;
  width: 1px;
  background: rgba(255,255,255,.22);
}
.hero-stat i {
  font-size: 1.9rem;
  color: #F0C86F;
}
.hero-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1;
}
.hero-stat span {
  display: block;
  font-size: .88rem;
  color: rgba(255,255,255,.82);
}

/* Sections */
.section { padding: 5rem 0; }
.section-soft { background: var(--bg-soft); }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 2.75rem; }
.section-head .eyebrow {
  color: var(--brand); letter-spacing: .18em; text-transform: uppercase;
  font-size: .78rem; font-weight: 600; margin-bottom: .5rem;
}
.section-head h2 { font-size: clamp(2rem, 3.5vw, 3rem); margin-bottom: .6rem; }
.section-head p { color: var(--muted); margin: 0; }

.service-card, .team-card, .offer-card, .membership-card, .feature-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(0,0,0,.03);
  height: 100%;
  transition: transform .25s ease, box-shadow .25s ease;
}
.service-card:hover, .team-card:hover, .offer-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.service-card .media, .team-card .media {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #eee;
}
.service-card .media img, .team-card .media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s ease;
}
.service-card:hover .media img, .team-card:hover .media img { transform: scale(1.05); }
.service-card .body, .team-card .body { padding: 1.25rem 1.3rem 1.4rem; }
.price-row {
  display: flex; justify-content: flex-end; align-items: center;
  margin: .85rem 0 1rem; color: var(--muted); font-size: .9rem;
}
.meta-chip {
  display: inline-flex; align-items: center; gap: .35rem;
  background: var(--rose); color: var(--brand);
  border-radius: 999px; padding: .25rem .7rem; font-size: .72rem; font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase;
}

/* Homepage services showcase */
.services-showcase {
  position: relative;
  overflow: hidden;
  background-color: #FDF6F7;
  background-image: url("../img/services-bg.png");
  background-size: cover;
  background-position: center center;
  padding: 5.5rem 0 4.75rem;
}
.services-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 2.75rem;
}
.sh-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  color: var(--brand-soft);
  letter-spacing: .2em;
  text-transform: uppercase;
  font-size: .78rem;
  font-weight: 600;
  margin-bottom: .75rem;
}
.sh-eyebrow i { font-size: .95rem; color: var(--brand); }
.services-head h2 {
  font-size: clamp(2rem, 3.8vw, 3.1rem);
  margin-bottom: .7rem;
  color: var(--ink);
  line-height: 1.15;
}
.services-head h2 em {
  font-style: italic;
  color: var(--brand);
  font-weight: 600;
}
.services-head p { color: var(--muted); margin: 0 0 1rem; }
.sh-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .65rem;
  color: #D4AF37;
  font-size: .42rem;
}
.sh-divider::before,
.sh-divider::after {
  content: "";
  width: 72px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,175,55,.7), transparent);
}

.service-card-premium {
  overflow: visible;
  border: 0;
  border-radius: 20px;
  box-shadow: 0 16px 40px rgba(31, 26, 26, .06);
  position: relative;
}
.service-card-premium .media-wrap {
  position: relative;
}
.service-card-premium .media {
  border-radius: 20px 20px 0 0;
  aspect-ratio: 16/11;
  overflow: hidden;
}
.svc-float-icon {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
  color: var(--brand);
  border: 1px solid #F3D4DA;
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  box-shadow: 0 8px 18px rgba(196,30,58,.12);
  z-index: 2;
}
.service-card-premium .body {
  padding: 1.85rem 1.2rem 1.35rem;
  text-align: center;
}
.service-card-premium .meta-chip { margin-top: .15rem; }
.service-card-premium .d-flex { justify-content: center; }
.svc-meta {
  display: flex;
  justify-content: center;
  margin: .85rem 0 1rem;
  color: var(--muted);
  font-size: .88rem;
}
.svc-meta i { margin-right: .3rem; color: var(--brand); }

.services-consult {
  margin-top: 2.5rem;
  background: #F8E9EC;
  border-radius: 16px;
  padding: 1rem 1.25rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: .85rem 1rem;
}
.sc-copy {
  display: flex;
  align-items: center;
  gap: .65rem;
  font-weight: 500;
  color: var(--ink);
}
.sc-copy i { color: var(--brand); font-size: 1.15rem; }

@media (max-width: 575.98px) {
  .services-consult { justify-content: center; text-align: center; }
  .sc-copy { flex-direction: column; }
}

/* Homepage team showcase */
.team-showcase {
  position: relative;
  overflow: hidden;
  background-color: #FDF6F7;
  background-image: url("../img/team-bg.png");
  background-size: cover;
  background-position: center center;
  padding: 5.5rem 0 4.75rem;
}
.team-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 2.75rem;
}
.team-head .th-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  color: var(--brand);
  letter-spacing: .2em;
  text-transform: uppercase;
  font-size: .78rem;
  font-weight: 600;
  margin-bottom: .75rem;
}
.team-head .th-eyebrow span {
  display: inline-block;
  width: 36px;
  height: 1px;
  background: var(--brand-soft);
}
.team-head .th-eyebrow i { font-size: .65rem; color: var(--brand); }
.team-head h2 {
  font-size: clamp(2rem, 3.8vw, 3.1rem);
  margin-bottom: .7rem;
  color: var(--ink);
  line-height: 1.15;
}
.team-head h2 em {
  font-style: italic;
  color: var(--brand);
  font-weight: 600;
}
.team-head p { color: var(--muted); margin: 0; }

.team-card-premium {
  overflow: visible;
  border: 0;
  border-radius: 20px;
  box-shadow: 0 16px 40px rgba(31, 26, 26, .06);
  background: #fff;
}
.team-card-premium .media-wrap { position: relative; }
.team-card-premium .media {
  border-radius: 20px 20px 0 0;
  aspect-ratio: 16/11;
  overflow: hidden;
}
.team-card-premium:hover .media img { transform: scale(1.05); }
.team-float-icon {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
  color: var(--brand);
  border: 1px solid #F3D4DA;
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  box-shadow: 0 8px 18px rgba(196,30,58,.12);
  z-index: 2;
}
.team-card-premium .body {
  padding: 1.85rem 1.15rem 1.35rem;
  text-align: center;
}
.team-card-premium .body h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
}
.team-role {
  color: var(--muted);
  font-size: .88rem;
  margin-bottom: .85rem;
}
.team-meta-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .65rem;
  flex-wrap: wrap;
  background: #F8E9EC;
  border-radius: 999px;
  padding: .45rem .75rem;
  margin-bottom: 1rem;
  font-size: .72rem;
  font-weight: 600;
  color: var(--brand);
}
.team-meta-bar i { font-size: .65rem; color: #D4AF37; }
.team-meta-divider {
  width: 1px;
  height: 14px;
  background: rgba(196,30,58,.25);
}
.team-book-btn {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-size: .72rem;
  font-weight: 700;
  border-radius: 8px !important;
  padding: .7rem .85rem !important;
}
.team-view-all {
  letter-spacing: .06em;
  text-transform: uppercase;
  font-size: .82rem;
  font-weight: 600;
  padding: .75rem 1.4rem;
  border-width: 2px;
}
.team-view-all i { font-size: .85rem; }


/* Why / features */
.feature-card { padding: 1.5rem; text-align: left; }
.feature-card > i {
  width: 48px; height: 48px; border-radius: 14px;
  background: var(--rose); color: var(--brand);
  display: inline-grid; place-items: center; font-size: 1.25rem; margin-bottom: 1rem;
}

/* Gallery */
.gallery-grid {
  columns: 1;
  column-gap: 1rem;
}
@media (min-width: 576px) { .gallery-grid { columns: 2; } }
@media (min-width: 992px) { .gallery-grid { columns: 3; } }
.gallery-item {
  break-inside: avoid;
  margin-bottom: 1rem;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-item img { width: 100%; display: block; transition: transform .35s ease; }
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item .overlay {
  position: absolute; inset: 0;
  background: linear-gradient(transparent, rgba(31,26,26,.65));
  color: #fff; display: flex; align-items: flex-end;
  padding: 1rem; opacity: 0; transition: opacity .25s ease;
}
.gallery-item:hover .overlay { opacity: 1; }

/* Homepage gallery showcase — compact asymmetric grid */
.gallery-showcase {
  position: relative;
  overflow: hidden;
  background-color: #FDF8F9;
  background-image: url("../img/gallery-bg.png");
  background-size: cover;
  background-position: center center;
  padding: 4rem 0 3.25rem;
}
.gallery-head {
  text-align: center;
  max-width: 520px;
  margin: 0 auto 1.75rem;
}
.gallery-head .gh-eyebrow {
  color: var(--brand);
  letter-spacing: .22em;
  text-transform: uppercase;
  font-size: .78rem;
  font-weight: 600;
  font-family: var(--font-display);
}
.gallery-head .gh-flourish {
  color: var(--brand);
  font-size: .72rem;
  margin: .35rem 0 .45rem;
  opacity: .85;
}
.gallery-head h2 {
  font-size: clamp(1.85rem, 3.2vw, 2.75rem);
  margin-bottom: .55rem;
  color: var(--ink);
  line-height: 1.15;
}
.gallery-head h2 em {
  font-style: italic;
  color: var(--brand);
  font-weight: 600;
}
.gallery-head .gh-divider {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  color: #D4AF37;
  font-size: .42rem;
}
.gallery-head .gh-divider::before,
.gallery-head .gh-divider::after {
  content: "";
  width: 64px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,175,55,.65), transparent);
}

.gallery-compact {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: .55rem;
  max-width: 860px;
  margin: 0 auto;
}
.gallery-compact .gc-item {
  display: block;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  min-height: 0;
  box-shadow: 0 8px 22px rgba(31, 26, 26, .05);
}
.gallery-compact .gc-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .35s ease;
}
.gallery-compact .gc-item:hover img { transform: scale(1.04); }
.gallery-compact .gc-item:nth-child(1) { grid-column: 1 / 6; aspect-ratio: 16 / 11; }
.gallery-compact .gc-item:nth-child(2) { grid-column: 6 / 9; aspect-ratio: 3 / 4; }
.gallery-compact .gc-item:nth-child(3) { grid-column: 9 / 13; aspect-ratio: 16 / 12; }
.gallery-compact .gc-item:nth-child(4) { grid-column: 1 / 6; aspect-ratio: 16 / 10; }
.gallery-compact .gc-item:nth-child(5) { grid-column: 6 / 13; aspect-ratio: 16 / 9; }
.gc-caption {
  position: absolute;
  top: .55rem;
  left: .55rem;
  background: rgba(255, 255, 255, .92);
  color: var(--ink);
  font-size: .66rem;
  font-weight: 600;
  padding: .22rem .5rem;
  border-radius: 6px;
  letter-spacing: .02em;
  line-height: 1.2;
}
.gallery-view-all {
  letter-spacing: .06em;
  text-transform: uppercase;
  font-size: .8rem;
  font-weight: 600;
  padding: .62rem 1.25rem;
  border-width: 2px;
}
.gallery-view-all i { font-size: .82rem; }

@media (max-width: 767.98px) {
  .gallery-showcase { padding: 3.25rem 0 2.75rem; }
  .gallery-compact {
    grid-template-columns: 1fr 1fr;
    gap: .45rem;
    max-width: 100%;
  }
  .gallery-compact .gc-item:nth-child(1) { grid-column: 1 / -1; aspect-ratio: 16 / 10; }
  .gallery-compact .gc-item:nth-child(2),
  .gallery-compact .gc-item:nth-child(3),
  .gallery-compact .gc-item:nth-child(4),
  .gallery-compact .gc-item:nth-child(5) { aspect-ratio: 1 / 1; }
  .gallery-compact .gc-item:nth-child(2) { grid-column: 1 / 2; }
  .gallery-compact .gc-item:nth-child(3) { grid-column: 2 / 3; }
  .gallery-compact .gc-item:nth-child(4) { grid-column: 1 / 2; }
  .gallery-compact .gc-item:nth-child(5) { grid-column: 2 / 3; }
}
.filter-pills { display: flex; flex-wrap: wrap; gap: .5rem; justify-content: center; margin-bottom: 2rem; }
.filter-pills button {
  border: 1px solid var(--line); background: #fff; border-radius: 999px;
  padding: .4rem 1rem; font-size: .88rem;
}
.filter-pills button.active { background: var(--brand); color: #fff; border-color: var(--brand); }

/* Testimonials — premium luxury cards */
.testimonials-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #FBF8F6 0%, #F7F1EF 100%);
  padding: 5rem 0 4.5rem;
}
.testimonials-ornament {
  position: absolute;
  width: 220px;
  height: 220px;
  bottom: -20px;
  pointer-events: none;
  opacity: .18;
  background:
    radial-gradient(circle at 50% 50%, transparent 36%, rgba(196,30,58,.35) 37%, transparent 38%),
    radial-gradient(circle at 35% 40%, transparent 10%, rgba(196,30,58,.25) 11%, transparent 12%);
  z-index: 0;
}
.testimonials-ornament-left { left: -40px; }
.testimonials-ornament-right { right: -40px; transform: scaleX(-1); }

.testimonials-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 2.75rem;
  position: relative;
  z-index: 1;
}
.th-diamond {
  color: #D4AF37;
  font-size: .65rem;
  margin-bottom: .65rem;
}
.th-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .85rem;
  color: var(--brand);
  letter-spacing: .22em;
  text-transform: uppercase;
  font-size: .78rem;
  font-weight: 600;
  margin-bottom: .85rem;
}
.th-eyebrow span {
  display: inline-block;
  width: 36px;
  height: 1px;
  background: #D4AF37;
}
.testimonials-head h2 {
  font-size: clamp(2rem, 3.8vw, 3.1rem);
  color: var(--ink);
  margin-bottom: .65rem;
  line-height: 1.15;
}
.testimonials-head h2 em {
  font-style: italic;
  color: var(--brand);
  font-weight: 600;
}
.th-flourish {
  color: #D4AF37;
  font-size: 1.1rem;
  line-height: 1;
  opacity: .9;
}

.testimonial-card {
  background: #fff;
  border: 1px solid rgba(234, 227, 228, .9);
  border-radius: 18px;
  padding: 1.6rem 1.6rem 1.45rem;
  height: 100%;
  box-shadow: 0 14px 36px rgba(31, 26, 26, .05);
  position: relative;
  z-index: 1;
  transition: transform .25s ease, box-shadow .25s ease;
}
.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 42px rgba(196, 30, 58, .08);
}
.tc-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: .85rem;
}
.stars {
  color: #D4AF37;
  letter-spacing: 2px;
  font-size: .85rem;
  display: flex;
  gap: .15rem;
}
.tc-quote-mark {
  font-family: var(--font-display);
  font-size: 3.4rem;
  line-height: .55;
  color: var(--brand);
  font-weight: 700;
  opacity: .9;
}
.quote {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: #3a3434;
  margin-bottom: 1.15rem;
  min-height: 4.8em;
}
.tc-divider {
  display: flex;
  align-items: center;
  gap: .65rem;
  margin-bottom: 1.1rem;
  color: #D4AF37;
  font-size: .45rem;
}
.tc-divider::before,
.tc-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,175,55,.55), transparent);
}
.tc-author {
  display: flex;
  align-items: center;
  gap: .85rem;
}
.tc-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  flex: 0 0 auto;
}
.tc-author strong {
  display: block;
  color: var(--ink);
  font-size: .98rem;
  line-height: 1.2;
}
.tc-author span {
  display: block;
  margin-top: .15rem;
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}

.testimonial-dots {
  position: static;
  margin: 1.75rem 0 0;
  display: flex;
  justify-content: center;
  gap: .45rem;
}
.testimonial-dots [data-bs-target] {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 0;
  background: #E7B8C0;
  opacity: 1;
  text-indent: -9999px;
  padding: 0;
  margin: 0 !important;
}
.testimonial-dots .active {
  background: var(--brand);
}
#testimonialCarousel .carousel-control-prev,
#testimonialCarousel .carousel-control-next {
  display: none;
}

/* Final CTA section */
.cta-section {
  background: linear-gradient(180deg, #FBF8F7 0%, #F6F0F1 100%);
  padding: 5.5rem 0;
}
.cta-ornament-top {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  color: var(--brand);
  font-size: .55rem;
  margin-bottom: 1.1rem;
}
.cta-ornament-top .cta-line {
  display: inline-block;
  width: 52px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--brand), transparent);
  position: relative;
}
.cta-ornament-top .cta-line::before,
.cta-ornament-top .cta-line::after {
  content: "✦";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: .45rem;
  color: var(--brand);
  opacity: .7;
}
.cta-ornament-top .cta-line:first-child::before { left: 0; }
.cta-ornament-top .cta-line:last-child::after { right: 0; }

.cta-title {
  font-size: clamp(2.2rem, 4.2vw, 3.4rem);
  color: var(--ink);
  margin-bottom: .85rem;
  line-height: 1.15;
}
.cta-title em {
  font-style: italic;
  color: var(--brand);
  font-weight: 600;
}
.cta-ornament-mid {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  color: #D4AF37;
  margin-bottom: 1.1rem;
  font-size: .95rem;
}
.cta-ornament-mid span {
  width: 28px;
  height: 1px;
  background: rgba(212, 175, 55, .7);
  display: inline-block;
}
.cta-copy {
  max-width: 520px;
  margin: 0 auto 1.75rem;
  color: #4a4444;
  font-size: 1.05rem;
  font-weight: 400;
}
.btn-cta-premium {
  display: inline-flex !important;
  align-items: center;
  gap: .65rem;
  background: linear-gradient(180deg, #D12642 0%, var(--brand) 55%, var(--brand-dark) 100%) !important;
  color: #fff !important;
  border: 1px solid rgba(255,255,255,.25) !important;
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.18),
    0 12px 28px rgba(196, 30, 58, .28) !important;
  border-radius: 8px !important;
  padding: .95rem 1.6rem !important;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .88rem;
}
.btn-cta-premium:hover {
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.22),
    0 16px 34px rgba(196, 30, 58, .34) !important;
  background: linear-gradient(180deg, #DA3550 0%, #C41E3A 55%, #8F1529 100%) !important;
}
.btn-cta-premium .bi-calendar2-check { font-size: 1.05rem; }
.btn-cta-premium .bi-arrow-right { font-size: .95rem; }

/* Contact page */
.contact-page {
  position: relative;
  overflow: hidden;
  background-color: #FDF6F7;
  background-image: url("../img/contact-bg.png");
  background-size: cover;
  background-position: center center;
  padding: 2.75rem 0 4.5rem;
}
.contact-page .container {
  position: relative;
  z-index: 1;
}
.contact-panel {
  position: relative;
  z-index: 2;
  background: #fff;
  border: 0;
  border-radius: 20px;
  padding: 1.75rem 1.65rem;
  box-shadow: 0 16px 42px rgba(31, 26, 26, .06);
}
.cp-head {
  display: flex;
  align-items: flex-start;
  gap: .85rem;
  margin-bottom: 1.35rem;
}
.cp-head-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  font-size: 1rem;
}
.cp-head h2 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  margin: 0 0 .35rem;
  color: var(--ink);
}
.cp-head p {
  margin: 0;
  color: var(--muted);
  font-size: .92rem;
  line-height: 1.5;
}
.cp-head-line {
  display: block;
  width: 42px;
  height: 2px;
  background: var(--brand);
  border-radius: 2px;
}
.cp-divider {
  height: 1px;
  background: var(--line);
  margin: 1.35rem 0 1.15rem;
}

.contact-info-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.15rem;
}
.contact-info-list li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  padding: .55rem 0;
}
.ci-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: transparent;
  color: var(--brand);
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  font-size: .95rem;
  padding: 0;
}
.contact-info-list small {
  display: block;
  font-size: .68rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: .1rem;
}
.contact-info-list a,
.contact-info-list span {
  color: var(--ink);
  font-weight: 500;
  font-size: .92rem;
  line-height: 1.45;
}
.contact-info-list .ci-accent {
  color: var(--brand);
  font-weight: 600;
}
.contact-info-list .ci-accent:hover { color: var(--brand-dark); }

.btn-whatsapp-full {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  background: var(--brand) !important;
  border-color: var(--brand) !important;
  color: #fff !important;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-size: .78rem;
  font-weight: 700;
  padding: .78rem 1rem !important;
  border-radius: 10px !important;
}
.btn-whatsapp-full i { font-size: 1.05rem; color: #fff !important; }
.btn-whatsapp-full:hover { background: var(--brand-dark) !important; border-color: var(--brand-dark) !important; color: #fff !important; }

.contact-branches { display: grid; gap: 1rem; }
.branch-loc {
  display: flex;
  align-items: flex-start;
  gap: .85rem;
}
.branch-thumb {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  flex: 0 0 auto;
  border: 2px solid #F3D4DA;
}
.branch-loc h3 {
  font-size: .98rem;
  margin: 0 0 .2rem;
  font-family: var(--font-display);
}
.branch-loc p {
  color: var(--muted);
  font-size: .82rem;
  margin: 0 0 .25rem;
  line-height: 1.45;
}
.branch-meta {
  color: var(--muted);
  font-size: .78rem;
  margin-bottom: .2rem;
}
.branch-dir {
  color: var(--brand);
  font-size: .82rem;
  font-weight: 600;
  text-decoration: none;
}
.branch-dir:hover { color: var(--brand-dark); }
.branch-dir i { font-size: .78rem; }

.cf-label {
  display: block;
  font-size: .78rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: .35rem;
}
.cf-input-wrap {
  position: relative;
}
.cf-input-wrap > i {
  position: absolute;
  left: .85rem;
  top: 50%;
  transform: translateY(-50%);
  color: #B8B0B0;
  font-size: .9rem;
  pointer-events: none;
  z-index: 2;
}
.cf-input-wrap-area > i {
  top: .85rem;
  transform: none;
}
.cf-input-wrap .form-control {
  border-radius: 10px;
  border-color: #E8E2E2;
  padding: .72rem .9rem .72rem 2.35rem;
  font-size: .92rem;
  background: #fff;
}
.cf-input-wrap .form-control:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(196, 30, 58, .1);
}
.cf-input-wrap textarea.form-control {
  min-height: 120px;
  resize: vertical;
}
.btn-send-msg {
  display: inline-flex !important;
  align-items: center;
  gap: .45rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-size: .78rem;
  font-weight: 700;
  padding: .75rem 1.35rem !important;
  border-radius: 10px !important;
}

.contact-map-embed {
  position: relative;
  margin-top: 1.35rem;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  min-height: 220px;
  background: #eee;
}
.contact-map-embed iframe {
  display: block;
  border: 0;
  width: 100%;
  height: 220px;
}
.map-open-btn {
  position: absolute;
  top: .65rem;
  left: .65rem;
  z-index: 2;
  background: #fff;
  color: #1a73e8;
  font-size: .72rem;
  font-weight: 600;
  padding: .35rem .65rem;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(31, 26, 26, .12);
  display: inline-flex;
  align-items: center;
  gap: .3rem;
}
.map-open-btn:hover { color: #1558b0; background: #fff; }

@media (max-width: 991.98px) {
  .contact-page { padding: 2.5rem 0 3.5rem; }
  .contact-panel { padding: 1.45rem 1.25rem; }
}


/* Membership */
.membership-card { padding: 2rem 1.5rem; text-align: center; position: relative; }
.membership-card.featured {
  border-color: var(--brand);
  box-shadow: var(--shadow);
  transform: translateY(-6px);
}
.membership-card h3 { font-size: 2rem; margin-bottom: .25rem; }
.membership-card .price { font-size: 1.6rem; color: var(--brand); font-weight: 600; margin: 1rem 0; }
.membership-card ul { list-style: none; padding: 0; margin: 0 0 1.5rem; text-align: left; }
.membership-card li { padding: .45rem 0; border-bottom: 1px solid var(--line); display: flex; gap: .5rem; }
.membership-card li i { color: var(--brand); }

/* Booking */
.booking-showcase {
  background:
    radial-gradient(circle at 0% 55%, rgba(196,30,58,.08), transparent 18%),
    radial-gradient(circle at 100% 50%, rgba(196,30,58,.08), transparent 18%),
    #fffdfd;
}
.booking-wrap { max-width: 980px; margin: 0 auto; }
.progress-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: .9rem;
  margin-bottom: 1.35rem;
}
.progress-steps .step {
  position: relative;
  border: 1px solid #efe3e5;
  border-radius: 14px;
  padding: .95rem 1rem;
  text-align: center;
  font-weight: 600;
  background: #fff;
  color: #655d5d;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  min-height: 60px;
  box-shadow: 0 6px 18px rgba(31,26,26,.03);
}
.progress-steps .step i { font-size: 1rem; color: var(--brand); }
.progress-steps .step.active {
  background: linear-gradient(135deg, var(--brand), #d32946);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 14px 26px rgba(196,30,58,.22);
}
.progress-steps .step.active i { color: #fff; }
.progress-steps .step.done {
  background: #fff4f6;
  color: var(--brand);
  border-color: #f2d6dc;
}
.progress-steps .step:not(:last-child)::after {
  content: "›";
  position: absolute;
  right: -.7rem;
  top: 50%;
  transform: translateY(-50%);
  color: #9b8f8f;
  font-size: 1.15rem;
}
.booking-panel {
  background: #fff;
  border: 1px solid #f4e7e9;
  border-radius: 28px;
  padding: 1.7rem 1.7rem 1.5rem;
  box-shadow: 0 18px 50px rgba(196,30,58,.08);
  position: relative;
  z-index: 10;
  overflow: visible;
}

/* Mobile native date picker overlay should appear above booking UI */
.booking-step[data-panel="4"] {
  position: relative;
  z-index: 20;
}

.booking-step[data-panel="4"] input[type="date"] {
  position: relative;
  z-index: 2000;
}
.booking-step-head {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.4rem;
}
.bsh-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(180deg, #fdf1f4, #f8e6ea);
  color: var(--brand);
  display: inline-grid;
  place-items: center;
  font-size: 1.35rem;
  flex: 0 0 auto;
}
.booking-step-head h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.45rem);
  margin: 0 0 .2rem;
}
.booking-step-head p { color: var(--muted); margin: 0; }
.choice-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1rem; }
.choice-card {
  position: relative;
  border: 1px solid #f0e3e5;
  border-radius: 18px;
  padding: 1rem 1.1rem;
  cursor: pointer;
  transition: .25s ease;
  background: #fff;
}
.choice-card:hover, .choice-card.selected {
  border-color: rgba(196,30,58,.45);
  box-shadow: 0 12px 28px rgba(196,30,58,.08);
  transform: translateY(-2px);
}
.choice-card-branch {
  display: grid;
  grid-template-columns: 108px 1fr;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem;
}
.cc-thumb {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 4px 16px rgba(31,26,26,.08);
}
.cc-copy strong,
.choice-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.65rem;
  line-height: 1.1;
  margin-bottom: .35rem;
}
.choice-card .small { font-size: .98rem; line-height: 1.45; }
.choice-card-branch .small i,
.choice-card-meta i { color: var(--brand); }
.cc-check {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  display: none;
  place-items: center;
  font-size: .95rem;
}
.choice-card-branch.selected .cc-check { display: grid; }
.choice-card-top {
  display: flex;
  align-items: center;
  gap: .85rem;
  margin-bottom: .95rem;
}
.choice-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(180deg, #fdf1f4, #f8e6ea);
  color: var(--brand);
  display: inline-grid;
  place-items: center;
  font-size: 1.3rem;
  flex: 0 0 auto;
}
.choice-card-meta {
  padding-top: .8rem;
  border-top: 1px solid #f3eaeb;
  color: var(--brand);
  font-weight: 600;
}
.service-compact-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .9rem;
  align-items: start;
}
.service-compact-row .service-choice {
  padding: .9rem 1rem;
  min-height: 118px;
}
.service-compact-row .choice-card-top {
  gap: .7rem;
  margin-bottom: .7rem;
}
.service-compact-row .choice-card-icon {
  width: 40px;
  height: 40px;
  font-size: 1.05rem;
}
.service-compact-row .choice-card strong {
  font-size: 1.05rem;
  margin-bottom: .2rem;
}
.service-compact-row .choice-card .small {
  font-size: .82rem;
  line-height: 1.35;
}
.service-compact-row .choice-card-meta {
  padding-top: .6rem;
  font-size: .88rem;
}
.booking-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.booking-actions-end { justify-content: flex-end; }
.btn-book-next,
.btn-book-prev {
  min-width: 150px;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-size: .8rem;
  font-weight: 700;
  border-radius: 10px !important;
  padding: .85rem 1.3rem !important;
}
.booking-date-wrap { position: relative; }
.booking-date-wrap > i {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--brand);
  z-index: 2;
  font-size: 1.1rem;
}
.booking-date-wrap .form-control {
  padding-left: 3rem;
  min-height: 54px;
  border-radius: 12px;
}
.slot-scroll {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  max-height: 340px;
  overflow: auto;
  padding-top: .25rem;
}
.slot-btn {
  border: 1px solid #eedde1;
  background: #fff;
  border-radius: 999px;
  padding: .8rem 1rem;
  min-width: 128px;
  font-weight: 600;
}
.slot-btn.selected { background: var(--brand); color: #fff; border-color: var(--brand); }
.slot-btn:disabled { opacity: .45; cursor: not-allowed; text-decoration: line-through; }
.booking-summary-box {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  padding: 1rem 1.15rem;
  border-radius: 18px;
}
.booking-summary-box h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
}
#summaryBox {
  display: grid;
  gap: .45rem;
  color: #534949;
}
#summaryBox strong { color: var(--ink); }

@media (max-width: 991.98px) {
  .progress-steps { grid-template-columns: repeat(2, 1fr); }
  .progress-steps .step:not(:last-child)::after { display: none; }
  .service-compact-row { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 767.98px) {
  .booking-panel { padding: 1.2rem 1rem; border-radius: 22px; }
  .booking-step-head { gap: .75rem; }
  .booking-step-head h2 { font-size: 1.8rem; }
  .choice-card-branch { grid-template-columns: 78px 1fr; }
  .cc-thumb { width: 72px; height: 72px; }
  .cc-copy strong, .choice-card strong { font-size: 1.35rem; }
  .booking-actions { flex-direction: column; }
  .btn-book-next, .btn-book-prev { width: 100%; }
  .service-compact-row { grid-template-columns: 1fr; }
}

.page-hero {
  padding: 3.5rem 0 2.5rem;
  background:
    radial-gradient(circle at 90% 10%, rgba(196,30,58,.10), transparent 30%),
    var(--bg-soft);
  border-bottom: 1px solid var(--line);
}
.page-hero h1 { font-size: clamp(2.2rem, 4vw, 3.2rem); margin-bottom: .4rem; }
.page-hero p { color: var(--muted); margin: 0; }

/* Why Choose Us — premium dark red banner */
.why-banner {
  position: relative;
  overflow: hidden;
  color: #fff;
  padding: 5rem 0;
  background-color: #2b0000;
  background-image: url("../img/why-bg.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.why-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 40%, rgba(94,0,0,.15), rgba(20,0,0,.35) 70%);
  pointer-events: none;
  z-index: 0;
}
.why-banner .container { position: relative; z-index: 1; }

.why-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  color: #E8C56A;
  font-family: var(--font-display);
  font-size: .95rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.why-eyebrow-line {
  width: 36px;
  height: 1px;
  background: #E8C56A;
  display: inline-block;
}
.why-eyebrow i { font-size: .75rem; }

.why-title {
  font-size: clamp(1.9rem, 3.6vw, 2.85rem);
  line-height: 1.2;
  color: #fff !important;
  margin-bottom: 1rem;
  max-width: 18ch;
}
.why-title em {
  font-style: italic;
  color: #E8C56A;
  font-weight: 600;
}
.why-copy {
  color: rgba(255,255,255,.88);
  max-width: 34rem;
  margin-bottom: 1.75rem;
  font-size: 1rem;
}

.why-features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .95rem 1.25rem;
  margin-bottom: 2rem;
}
.why-feature {
  display: flex;
  align-items: center;
  gap: .75rem;
  color: #fff;
  font-weight: 500;
  font-size: .95rem;
}
.why-feature-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(232, 197, 106, .75);
  color: #E8C56A;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  font-size: 1rem;
  box-shadow: 0 0 12px rgba(232, 197, 106, .12);
}

.btn-why-gold {
  display: inline-flex !important;
  align-items: center;
  gap: .55rem;
  background: linear-gradient(180deg, #F0D78C 0%, #D4AF37 45%, #B8922A 100%) !important;
  color: #3a2a08 !important;
  border: none !important;
  border-radius: 999px !important;
  padding: .8rem 1.45rem !important;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-size: .82rem;
  box-shadow: 0 10px 28px rgba(212, 175, 55, .35), 0 0 24px rgba(212, 175, 55, .22) !important;
}
.btn-why-gold:hover {
  color: #2a1d04 !important;
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(212, 175, 55, .42), 0 0 28px rgba(212, 175, 55, .28) !important;
}

.why-banner .why-visual {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  border: 2px solid rgba(232, 197, 106, .75);
  box-shadow:
    0 0 0 1px rgba(232, 197, 106, .2),
    0 0 40px rgba(212, 175, 55, .28),
    0 24px 50px rgba(0,0,0,.35);
}
.why-banner .why-visual::after {
  content: "";
  position: absolute;
  top: -10%;
  right: -8%;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(255,255,255,.35), transparent 70%);
  pointer-events: none;
}
.why-banner .why-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 380px;
  display: block;
  filter: grayscale(0.15) contrast(1.05);
}

@media (max-width: 991.98px) {
  .why-title { max-width: none; }
  .why-banner .why-visual img { min-height: 280px; }
}
@media (max-width: 575.98px) {
  .why-features { grid-template-columns: 1fr; }
}

.site-footer {
  position: relative;
  overflow: hidden;
  background-color: var(--brand-dark);
  background-image: url("../img/footer-bg.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  color: rgba(255,255,255,.9);
  margin-top: 0;
}
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(158,24,48,.18) 0%, rgba(110,18,35,.28) 100%);
  pointer-events: none;
  z-index: 0;
}
.footer-ornament { display: none; }
.footer-ornament-left,
.footer-ornament-right { display: none; }
.footer-main {
  position: relative;
  z-index: 1;
  padding-top: 4rem;
  padding-bottom: 1.5rem;
}

.footer-brand-block { max-width: 320px; }
.footer-logo-mark {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #fff;
  color: var(--brand);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: .85rem;
  box-shadow: 0 0 0 2px rgba(212,175,55,.85), 0 0 0 5px rgba(255,255,255,.12);
  position: relative;
}
.footer-logo-mark::after {
  content: "✦";
  position: absolute;
  top: -2px;
  right: -2px;
  color: #D4AF37;
  font-size: .7rem;
}
.footer-brand-name {
  font-family: var(--font-display);
  font-size: 2.4rem;
  line-height: 1;
  color: #fff;
  font-weight: 600;
}
.footer-brand-sub {
  display: flex;
  align-items: center;
  gap: .45rem;
  margin: .55rem 0 1rem;
  color: #E8C56A;
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 600;
}
.footer-brand-sub::before,
.footer-brand-sub::after {
  content: "";
  width: 28px;
  height: 1px;
  background: rgba(232,197,106,.55);
}
.footer-crown { color: #E8C56A; font-size: .75rem; }
.footer-text {
  max-width: 28rem;
  color: rgba(255,255,255,.82);
  font-size: .92rem;
  margin-bottom: 1.25rem;
}

.footer-heading {
  color: #fff;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: .78rem;
  margin-bottom: 1.1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: .45rem;
}
.footer-heading i {
  color: #E8C56A;
  font-size: .55rem;
}

.footer-links, .footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links a {
  color: rgba(255,255,255,.86);
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .28rem 0;
  transition: color .2s ease, transform .2s ease;
}
.footer-links a i { font-size: .7rem; opacity: .7; }
.footer-links a:hover {
  color: #fff;
  transform: translateX(3px);
}
.footer-links li, .footer-contact li { margin-bottom: .55rem; }

.footer-contact li {
  display: flex;
  gap: .75rem;
  align-items: flex-start;
  color: rgba(255,255,255,.88);
  font-size: .92rem;
}
.footer-contact a { color: rgba(255,255,255,.88); }
.footer-contact a:hover { color: #fff; }
.fc-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.28);
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  font-size: .85rem;
  color: #fff;
  margin-top: .1rem;
}

.social-links { display: flex; gap: .75rem; margin-top: .25rem; }
.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.4);
  display: grid;
  place-items: center;
  color: #fff;
  transition: .2s ease;
}
.social-links a:hover { background: #fff; color: var(--brand); }

/* Newsletter + trust bar */
.footer-feature-bar {
  margin-top: 2.5rem;
  margin-bottom: 1.5rem;
  background: rgba(110, 18, 35, .42);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 18px;
  padding: 1.15rem 1.25rem;
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 1.25rem;
  align-items: center;
  backdrop-filter: blur(8px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
}
.footer-newsletter {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .85rem 1rem;
}
.fn-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.3);
  display: grid;
  place-items: center;
  color: #fff;
  flex: 0 0 auto;
}
.fn-copy {
  display: flex;
  flex-direction: column;
  min-width: 180px;
  flex: 1 1 160px;
}
.fn-copy strong {
  color: #fff;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-size: .82rem;
}
.fn-copy span {
  color: rgba(255,255,255,.72);
  font-size: .78rem;
}
.fn-form {
  display: flex;
  gap: .5rem;
  flex: 1 1 240px;
  min-width: 220px;
}
.fn-form .form-control {
  background: rgba(70, 12, 24, .55);
  border: 1px solid rgba(255,255,255,.18);
  color: #fff;
  border-radius: 8px;
  padding: .65rem .9rem;
}
.fn-form .form-control::placeholder { color: rgba(255,255,255,.55); }
.fn-form .form-control:focus {
  background: rgba(70, 12, 24, .7);
  border-color: rgba(255,255,255,.4);
  box-shadow: none;
  color: #fff;
}
.btn-subscribe {
  background: #fff !important;
  color: var(--brand) !important;
  border: none !important;
  border-radius: 8px !important;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  white-space: nowrap;
  padding: .65rem 1.1rem !important;
  box-shadow: none !important;
}
.btn-subscribe:hover {
  background: #f4f4f4 !important;
  color: var(--brand-dark) !important;
}

.footer-trust {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: .5rem;
}
.ft-item {
  text-align: center;
  padding: .25rem .35rem;
  border-left: 1px solid rgba(255,255,255,.16);
  color: #fff;
}
.ft-item:first-child { border-left: none; }
.ft-item i {
  display: block;
  font-size: 1.15rem;
  margin-bottom: .35rem;
  color: rgba(255,255,255,.95);
}
.ft-item span {
  display: block;
  font-size: .62rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  line-height: 1.25;
  font-weight: 600;
  color: rgba(255,255,255,.86);
}

.footer-bottom-bar {
  position: relative;
  z-index: 1;
  background: rgba(70, 12, 24, .55);
  border-top: 1px solid rgba(255,255,255,.1);
  padding: .95rem 0;
  font-size: .88rem;
  color: rgba(255,255,255,.78);
}
.footer-bottom-bar a { color: rgba(255,255,255,.78); }
.footer-bottom-bar a:hover { color: #fff; }

@media (max-width: 991.98px) {
  .footer-feature-bar {
    grid-template-columns: 1fr;
  }
  .ft-item:nth-child(1),
  .ft-item:nth-child(2) { border-left: none; }
  .footer-trust {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: .85rem;
  }
  .ft-item:nth-child(odd) { border-left: none; }
  .ft-item:nth-child(even) { border-left: 1px solid rgba(255,255,255,.16); }

  /* Clear fixed bottom nav + elevated Book button */
  .site-footer {
    padding-bottom: calc(5.75rem + env(safe-area-inset-bottom, 0px));
  }
  .footer-bottom-bar .container {
    padding-bottom: .25rem;
  }
}
@media (max-width: 575.98px) {
  .fn-form { flex-direction: column; }
  .btn-subscribe { width: 100%; }
}

.whatsapp-fab {
  position: fixed;
  z-index: 1055;
  right: 1rem;
  bottom: 1rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  font-size: 1.4rem;
  display: inline-grid;
  place-items: center;
  box-shadow: 0 10px 25px rgba(0,0,0,.18);
}
@media (max-width: 991.98px) {
  .whatsapp-fab {
    bottom: calc(6.25rem + env(safe-area-inset-bottom, 0px));
  }
}

/* Mobile bottom navigation */
.mobile-bottom-nav {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1060;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: end;
  gap: .15rem;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(14px);
  border-top: 1px solid var(--line);
  box-shadow: 0 -8px 30px rgba(31, 26, 26, .08);
  padding: .45rem .35rem calc(.45rem + env(safe-area-inset-bottom, 0px));
}
.mbn-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .2rem;
  color: #8a8181 !important;
  text-decoration: none !important;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .02em;
  padding: .25rem .1rem;
  min-height: 48px;
  transition: color .2s ease;
}
.mbn-item i {
  font-size: 1.2rem;
  line-height: 1;
}
.mbn-item.active,
.mbn-item:hover {
  color: var(--brand) !important;
}
.mbn-book {
  position: relative;
  top: -.55rem;
}
.mbn-book-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(180deg, #D12642 0%, var(--brand) 55%, var(--brand-dark) 100%);
  color: #fff !important;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 22px rgba(196, 30, 58, .35);
  border: 3px solid #fff;
  margin-bottom: .1rem;
}
.mbn-book-btn i {
  font-size: 1.25rem;
  color: #fff;
}
.mbn-book.active,
.mbn-book:hover {
  color: var(--brand) !important;
}
.mbn-book.active .mbn-book-btn,
.mbn-book:hover .mbn-book-btn {
  transform: translateY(-2px);
}

.mobile-book-fab { display: none !important; }

/* Premium mobile menu drawer */
.mobile-nav-drawer {
  width: min(86vw, 360px) !important;
  border: 0;
  background: #fff;
  overflow: hidden;
}
.mobile-nav-drawer::after {
  content: "";
  position: absolute;
  right: -10px;
  bottom: -10px;
  width: 210px;
  height: 210px;
  background: url("../img/menu-floral.png") right bottom / contain no-repeat;
  opacity: .55;
  pointer-events: none;
  z-index: 0;
}
.mnd-header {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.15rem .75rem;
  border-bottom: 1px solid #f0e7e9;
}
.mnd-brand {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  color: var(--ink) !important;
  text-decoration: none !important;
}
.mnd-logo {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  box-shadow: 0 0 0 2px #D4AF37, 0 0 0 5px rgba(212,175,55,.18);
}
.mnd-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}
.mnd-brand-text strong {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 600;
}
.mnd-brand-text small {
  color: var(--muted);
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-top: .15rem;
}
.mnd-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #eadfe1;
  background: #fff;
  color: var(--ink);
  display: grid;
  place-items: center;
  padding: 0;
}
.mnd-close:hover {
  background: var(--rose);
  color: var(--brand);
}

.mnd-body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  padding: .85rem 1rem 1.35rem !important;
}
.mnd-menu {
  display: flex;
  flex-direction: column;
  gap: .2rem;
  margin-bottom: 1.25rem;
}
.mnd-link {
  display: grid;
  grid-template-columns: 40px 1fr 16px;
  align-items: center;
  gap: .65rem;
  padding: .72rem .7rem;
  border-radius: 12px;
  color: #2d2727 !important;
  text-decoration: none !important;
  border-bottom: 1px solid #f3ecee;
  transition: background .2s ease, color .2s ease;
}
.mnd-link:last-child { border-bottom: 0; }
.mnd-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--rose);
  color: var(--brand);
  display: grid;
  place-items: center;
  font-size: 1rem;
}
.mnd-label {
  font-weight: 600;
  font-size: .95rem;
}
.mnd-chevron {
  color: #c4b6b8;
  font-size: .8rem;
}
.mnd-link.active {
  background: #F8E9EC;
  border-bottom-color: transparent;
  color: var(--brand) !important;
}
.mnd-link.active .mnd-icon {
  background: #fff;
  color: var(--brand);
  box-shadow: 0 4px 12px rgba(196,30,58,.12);
}
.mnd-link.active .mnd-chevron { color: var(--brand); }
.mnd-link:hover {
  background: #FBF4F5;
  color: var(--brand) !important;
}

.mnd-book-btn {
  margin-top: auto;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  width: 100%;
  background: linear-gradient(180deg, #D12642 0%, var(--brand) 55%, var(--brand-dark) 100%) !important;
  color: #fff !important;
  border: none !important;
  border-radius: 10px !important;
  padding: .9rem 1rem !important;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-size: .82rem;
  box-shadow: 0 12px 26px rgba(196,30,58,.28) !important;
  position: relative;
  z-index: 2;
}
.mnd-book-btn:hover {
  color: #fff !important;
  transform: translateY(-1px);
}

.reveal { opacity: 0; transform: translateY(18px); transition: .6s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 991.98px) {
  .hero-feature-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .hero-stats-band { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .hero-stat:nth-child(2)::after { display: none; }
  .hero h1 { max-width: none; }
  .hero-visual { min-height: 380px; }
  .hero-visual img { min-height: 380px; }
}
@media (max-width: 767.98px) {
  .hero-actions { flex-direction: column; }
  .btn-hero-primary, .btn-hero-secondary { width: 100%; }
  .hero-feature-grid { grid-template-columns: 1fr 1fr; }
  .hero-stats-band { grid-template-columns: 1fr; gap: .85rem; }
  .hero-stat { justify-content: flex-start; }
  .hero-stat::after { display: none !important; }
  .hero-corner-ribbon { width: 120px; height: 84px; }
  .hero-floral-right { width: 112px; height: 112px; }
}
@media (max-width: 575.98px) {
  .hero { padding-top: 1.9rem; }
  .hero-feature-grid { grid-template-columns: 1fr; }
  .hero-eyebrow-wrap { flex-wrap: wrap; gap: .45rem; }
  .hero-visual { margin-top: 1.4rem; min-height: 320px; }
  .hero-visual img { min-height: 320px; }
  .floating-badge { left: 1rem; right: 1rem; justify-content: center; text-align: center; }
}

.confirmation-card {
  max-width: 720px; margin: 0 auto; background: #fff;
  border: 1px solid var(--line); border-radius: 24px; padding: 2rem;
  box-shadow: var(--shadow); text-align: center;
}
.confirmation-card .booking-id {
  display: inline-block; background: var(--rose); color: var(--brand);
  padding: .5rem 1rem; border-radius: 999px; font-weight: 600; margin: 1rem 0;
}
.detail-list { text-align: left; margin: 1.5rem 0; }
.detail-list .row-item {
  display: flex; justify-content: space-between; gap: 1rem;
  padding: .7rem 0; border-bottom: 1px solid var(--line);
}

@media (max-width: 991.98px) {
  .hero { padding-top: 2.5rem; }
  .hero-visual { margin-top: 2rem; min-height: 320px; }
  .hero-visual img { min-height: 320px; }
  .membership-card.featured { transform: none; }
}
@media print {
  .site-header, .site-footer, .whatsapp-fab, .mobile-bottom-nav, .no-print { display: none !important; }
  .confirmation-card { box-shadow: none; border: none; }
}
