/* =========================================================
   BELLA VIE SALON & SPA — DESIGN SYSTEM
   Theme: "Modern Glamour" — strict 60-30-10 distribution
   Palette: Powder Pink #F7C5CC (60%), Alabaster White #FAFAFA (30%),
            Champagne Gold #D4AF37 (10%, CTAs/highlights/borders only),
            Deep Charcoal #2C2C2C (text & utility)
   Type: "Cormorant Garamond" (display) + "Jost" (body/UI)
   ========================================================= */

:root {
  /* ===== Modern Glamour palette — strict 60-30-10 ===== */
  --ivory: #FAFAFA;          /* 30% — Alabaster White: canvas, cards, whitespace */
  --ivory-deep: #FCEEF1;     /* alabaster warmed with a breath of pink, for section alternation */
  --blush: #F7C5CC;          /* 60% — Soft Powder Pink: dominant base */
  --blush-deep: #EFA8B2;     /* deeper powder pink, for shading/borders within the dominant family */
  --rose-gold: #E6AEB6;      /* muted pink-rose — secondary accents, hovers, icons (still pink family, not gold) */
  --rose-gold-light: #F3D2D7;
  --champagne: #D4AF37;      /* 10% — Polished Champagne Gold: CTAs, highlights, borders ONLY */
  --champagne-light: #E6C766;
  --plum: #2C2C2C;           /* Deep Charcoal — text, headers, dark structural sections */
  --plum-soft: #565656;      /* charcoal, softened for secondary text on dark */
  --lavender: #FBD9DE;       /* light pink tint, decorative only */
  --white: #FFFFFF;

  --font-display: "Cormorant Garamond", serif;
  --font-body: "Jost", sans-serif;

  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 10px;

  --shadow-soft: 0 20px 60px -20px rgba(44, 44, 44, 0.22);
  --shadow-card: 0 10px 40px -12px rgba(44, 44, 44, 0.14);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--ivory-deep);
  color: var(--plum);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--rose-gold);
  font-weight: 500;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 1.08;
  color: var(--plum);
  letter-spacing: 0.005em;
}

.section-title em {
  font-style: italic;
  color: var(--rose-gold);
}

.section-lede {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--plum-soft);
  max-width: 540px;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 6vw;
}

@media (max-width: 700px) {
  .container { padding: 0 6.5vw; }
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 17px 34px;
  border-radius: 999px;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), background 0.4s var(--ease);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--rose-gold) 0%, var(--champagne) 100%);
  color: var(--white);
  box-shadow: 0 14px 30px -10px rgba(212, 175, 55, 0.4);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px -10px rgba(212, 175, 55, 0.5);
}

.btn-ghost {
  border: 1px solid rgba(44, 44, 44, 0.25);
  color: var(--plum);
  background: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover {
  border-color: var(--rose-gold);
  color: var(--rose-gold);
  transform: translateY(-3px);
}

.btn-light {
  border: 1px solid rgba(255,255,255,0.55);
  color: var(--white);
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
}
.btn-light:hover {
  background: rgba(255,255,255,0.2);
  transform: translateY(-3px);
}

/* ---------- preloader ---------- */
#preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--ivory);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.8s var(--ease), visibility 0.8s var(--ease);
}
#preloader.hide { opacity: 0; visibility: hidden; }
.preloader-mark {
  font-family: var(--font-display);
  font-size: 2.4rem;
  letter-spacing: 0.08em;
  color: var(--rose-gold);
  position: relative;
  padding-bottom: 14px;
}
.preloader-mark::after {
  content: "";
  position: absolute; left: 50%; bottom: 0;
  width: 0; height: 1px;
  background: var(--rose-gold);
  transform: translateX(-50%);
  animation: loadline 1.6s var(--ease) forwards;
}
@keyframes loadline { to { width: 100%; } }

/* ---------- navbar ---------- */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  padding: 26px 0;
  transition: padding 0.45s var(--ease), background 0.45s var(--ease), box-shadow 0.45s var(--ease);
}
.navbar.scrolled {
  padding: 14px 0;
  background: rgba(251, 246, 241, 0.78);
  backdrop-filter: blur(18px);
  box-shadow: 0 8px 30px -16px rgba(44, 44, 44,0.25);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.03em;
  color: var(--plum);
}
.navbar.scrolled .nav-logo,
.navbar:not(.on-dark) .nav-logo { color: var(--plum); }
.nav-logo img {
  width: 46px; height: 46px; border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 6px 18px -6px rgba(212,175,55,0.45), 0 0 0 2px var(--champagne);
}
.nav-links {
  display: flex; align-items: center; gap: 38px;
}
.nav-links a {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 6px;
  color: var(--plum);
  opacity: 0.85;
}
.nav-links a::after {
  content: "";
  position: absolute; left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--rose-gold);
  transition: width 0.4s var(--ease);
}
.nav-links a:hover { opacity: 1; }
.nav-links a:hover::after { width: 100%; }
.nav-cta { display: flex; align-items: center; gap: 22px; }
.nav-burger {
  display: none;
  flex-direction: column; gap: 5px;
  width: 28px;
}
.nav-burger span {
  height: 1.5px; width: 100%; background: var(--plum);
  transition: 0.3s var(--ease);
}

/* ---------- mobile nav ---------- */
.mobile-nav {
  position: fixed; inset: 0; z-index: 600;
  background: var(--ivory);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 30px;
  transform: translateY(-100%);
  transition: transform 0.55s var(--ease);
}
.mobile-nav.open { transform: translateY(0); }
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--plum);
}
.mobile-nav .btn { margin-top: 10px; }
.mobile-close {
  position: absolute; top: 30px; right: 6vw;
  font-size: 1.6rem; color: var(--plum);
}

/* ================= HERO ================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--plum);
}
.hero-bg-image {
  position: absolute; inset: 0;
  background-image: url("assets/hero-bg.jpg");
  background-size: cover;
  background-position: 68% 42%;
  filter: saturate(1.06) contrast(1.04) brightness(1.02);
  transform: scale(1.03);
  animation: heroBreathe 18s ease-in-out infinite;
}
@keyframes heroBreathe {
  0%, 100% { transform: scale(1.03); }
  50% { transform: scale(1.08); }
}
.hero-bg-gradient {
  position: absolute; inset: 0;
  /* cinematic readability scrim: deep charcoal on the left for type, sheer over the room on the right */
  background:
    linear-gradient(95deg, rgba(20,18,18,0.92) 4%, rgba(38,28,30,0.78) 28%, rgba(60,40,42,0.38) 52%, rgba(60,40,42,0.06) 72%),
    linear-gradient(to top, rgba(20,16,16,0.55) 0%, rgba(20,16,16,0) 38%);
}
.hero-bg-vignette {
  position: absolute; inset: 0;
  box-shadow: inset 0 0 220px rgba(0,0,0,0.45);
  pointer-events: none;
}
.hero-glow {
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,175,55,0.18), transparent 70%);
  top: -12%; right: -8%;
  filter: blur(10px);
  animation: floaty 9s ease-in-out infinite;
  mix-blend-mode: screen;
}
.hero-glow.two {
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(247,197,204,0.22), transparent 70%);
  bottom: -10%; left: 22%;
  animation-delay: 2s;
  mix-blend-mode: screen;
}
@keyframes floaty {
  0%, 100% { transform: translate(0,0); }
  50% { transform: translate(-20px, 30px); }
}

@media (max-width: 980px) {
  .hero-bg-image { background-position: 60% 38%; }
}
@media (max-width: 600px) {
  .hero-bg-image { background-position: 50% 32%; }
  .hero-bg-gradient {
    background:
      linear-gradient(180deg, rgba(20,18,18,0.88) 0%, rgba(38,28,30,0.72) 40%, rgba(60,40,42,0.55) 70%, rgba(60,40,42,0.35) 100%);
  }
}

.hero-inner {
  position: relative; z-index: 5;
  width: 100%;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 40px;
  padding-top: 90px;
}
.hero-content { color: var(--white); max-width: 600px; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.74rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: 26px;
  opacity: 0;
  animation: riseIn 1s var(--ease) 0.2s forwards;
}
.hero-eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--champagne); }

.hero-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.7rem, 6vw, 4.6rem);
  line-height: 1.05;
  letter-spacing: 0.005em;
  margin-bottom: 24px;
}
.hero-title .line { display: block; overflow: hidden; }
.hero-title .line span {
  display: block;
  transform: translateY(110%);
  animation: riseUp 1s var(--ease) forwards;
}
.hero-title .line:nth-child(1) span { animation-delay: 0.35s; }
.hero-title .line:nth-child(2) span { animation-delay: 0.5s; color: var(--champagne); font-style: italic; }
.hero-title .line:nth-child(3) span { animation-delay: 0.65s; }

.hero-sub {
  font-size: 1.08rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.82);
  margin-bottom: 38px;
  max-width: 480px;
  opacity: 0;
  animation: riseIn 1s var(--ease) 0.85s forwards;
}
.hero-ctas {
  display: flex; gap: 18px; flex-wrap: wrap;
  opacity: 0;
  animation: riseIn 1s var(--ease) 1.05s forwards;
}
.hero-trust {
  display: flex; gap: 34px; margin-top: 52px;
  opacity: 0;
  animation: riseIn 1s var(--ease) 1.3s forwards;
}
.hero-trust div { display: flex; flex-direction: column; gap: 4px; }
.hero-trust .num { font-family: var(--font-display); font-size: 1.7rem; color: var(--champagne); }
.hero-trust .lbl { font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.65); }

@keyframes riseIn { to { opacity: 1; } }
@keyframes riseUp { to { transform: translateY(0); } }

/* floating glass card in hero */
.hero-visual { position: relative; height: 580px; display: none; }
.hero-card {
  position: absolute;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(16px);
  border-radius: var(--radius-md);
  padding: 22px 24px;
  color: var(--white);
  box-shadow: var(--shadow-soft);
  animation: floaty 7s ease-in-out infinite;
}
.hero-card.c1 { top: 6%; right: 4%; width: 230px; animation-delay: 0.5s; }
.hero-card.c2 { bottom: 10%; left: 0%; width: 250px; animation-delay: 1.5s; }
.hero-card .card-top { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.hero-card .ic { width: 34px; height: 34px; border-radius: 50%; background: linear-gradient(135deg, var(--rose-gold), var(--champagne)); display:flex; align-items:center; justify-content:center; font-size: 1rem; }
.hero-card .t { font-family: var(--font-display); font-size: 1.05rem; }
.hero-card .d { font-size: 0.78rem; color: rgba(255,255,255,0.75); line-height: 1.5; }
.hero-stars { color: var(--champagne); font-size: 0.85rem; letter-spacing: 2px; margin-top: 6px; }

.scroll-cue {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  z-index: 6;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  color: rgba(255,255,255,0.7);
  font-size: 0.66rem; letter-spacing: 0.2em; text-transform: uppercase;
}
.scroll-cue .line2 { width: 1px; height: 36px; background: linear-gradient(to bottom, rgba(255,255,255,0.7), transparent); position: relative; overflow: hidden; }
.scroll-cue .line2::after {
  content: ""; position: absolute; left: 0; top: -100%; width: 100%; height: 100%;
  background: var(--champagne);
  animation: scrolldrip 2.2s ease-in-out infinite;
}
@keyframes scrolldrip { 50% { top: 100%; } 100% { top: 100%; } }

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

/* ================= MARQUEE STRIP ================= */
.marquee-strip {
  background: var(--plum);
  color: var(--rose-gold-light);
  padding: 16px 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex;
  gap: 50px;
  animation: marquee 28s linear infinite;
}
.marquee-track span {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  letter-spacing: 0.04em;
  opacity: 0.9;
}
@keyframes marquee { to { transform: translateX(-50%); } }

/* ================= SECTION GENERIC ================= */
section { position: relative; }
.section-pad { padding: 120px 0; }
@media (max-width: 700px) { .section-pad { padding: 80px 0; } }

.section-head {
  display: flex; justify-content: space-between; align-items: flex-end; gap: 30px;
  margin-bottom: 64px;
  flex-wrap: wrap;
}

.reveal {
  opacity: 0; transform: translateY(36px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* ================= WHY CHOOSE ================= */
.why { background: var(--ivory-deep); }
.why-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px;
}
@media (max-width: 980px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .why-grid { grid-template-columns: 1fr; } }

.why-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 38px 30px;
  box-shadow: var(--shadow-card);
  transition: transform 0.55s var(--ease), box-shadow 0.55s var(--ease);
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: "";
  position: absolute; top: -40%; right: -40%;
  width: 140px; height: 140px; border-radius: 50%;
  background: radial-gradient(circle, var(--blush), transparent 70%);
  opacity: 0.7;
}
.why-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 28px 60px -18px rgba(44, 44, 44,0.28);
}
.why-icon {
  width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--blush), var(--rose-gold));
  font-size: 1.4rem;
  margin-bottom: 22px;
  position: relative; z-index: 2;
}
.why-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin-bottom: 10px;
  position: relative; z-index: 2;
}
.why-card p {
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--plum-soft);
  position: relative; z-index: 2;
}

/* ================= FEATURED SERVICES ================= */
.services { background: var(--ivory-deep); }
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 980px) { .service-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .service-grid { grid-template-columns: 1fr; } }

.service-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 360px;
  box-shadow: var(--shadow-card);
  group: var(--name);
}
.service-card img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.1s var(--ease), filter 1.1s var(--ease);
}
.service-card:hover img { transform: scale(1.09); filter: brightness(0.85); }
.service-card .overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(20, 18, 18,0.92) 0%, rgba(20, 18, 18,0.2) 55%, transparent 80%);
}
.service-card .info {
  position: absolute; left: 26px; right: 26px; bottom: 26px; color: var(--white);
  transform: translateY(6px);
  transition: transform 0.5s var(--ease);
}
.service-card:hover .info { transform: translateY(-4px); }
.service-card .tag {
  font-size: 0.65rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--rose-gold-light); margin-bottom: 8px; display: block;
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 8px;
}
.service-card .more {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase;
  opacity: 0; max-height: 0; overflow: hidden;
  transition: opacity 0.45s var(--ease), max-height 0.45s var(--ease);
}
.service-card:hover .more { opacity: 1; max-height: 30px; }

/* ================= BEAUTY CATEGORIES ================= */
.categories { background: var(--blush); }
.cat-scroller {
  display: flex; gap: 20px; overflow-x: auto; padding-bottom: 10px;
  scrollbar-width: none;
}
.cat-scroller::-webkit-scrollbar { display: none; }
.cat-pill {
  flex: 0 0 auto;
  display: flex; align-items: center; gap: 12px;
  padding: 16px 26px;
  border-radius: 999px;
  background: var(--white);
  box-shadow: var(--shadow-card);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  transition: transform 0.4s var(--ease), background 0.4s var(--ease), color 0.4s var(--ease);
  border: 1px solid transparent;
}
.cat-pill .ic { font-size: 1.2rem; }
.cat-pill:hover {
  transform: translateY(-4px);
  background: linear-gradient(135deg, var(--rose-gold), var(--blush-deep));
  color: var(--white);
}

/* ================= LUXURY SPA EXPERIENCE ================= */
.spa-exp {
  background: var(--plum);
  color: var(--white);
  overflow: hidden;
}
.spa-grid {
  display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 60px; align-items: center;
}
@media (max-width: 900px) { .spa-grid { grid-template-columns: 1fr; gap: 40px; } }

.spa-image-wrap { position: relative; padding: 18px; }
.spa-image-wrap::before {
  /* echoes the salon's oval gold-rimmed mirrors — the signature motif of this design */
  content: "";
  position: absolute; inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.35);
  transform: scale(1.06);
}
.spa-image {
  border-radius: 50%;
  aspect-ratio: 4 / 4.6;
  overflow: hidden;
  border: 10px solid var(--ivory);
  box-shadow:
    0 0 0 3px var(--champagne),
    0 40px 90px -30px rgba(0,0,0,0.55);
}
.spa-image img { width: 100%; height: 100%; object-fit: cover; }
.spa-badge {
  position: absolute; bottom: 4px; right: 0;
  background: var(--white);
  color: var(--plum);
  border-radius: 50%;
  width: 118px; height: 118px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  box-shadow: var(--shadow-soft), 0 0 0 2px var(--champagne);
  text-align: center;
}
.spa-badge .big { font-family: var(--font-display); font-size: 1.9rem; color: var(--champagne); line-height: 1; }
.spa-badge .small { font-size: 0.6rem; letter-spacing: 0.08em; text-transform: uppercase; margin-top: 4px; }

.spa-content .section-title { color: var(--white); }
.spa-content .section-lede { color: rgba(255,255,255,0.78); margin-bottom: 36px; }
.spa-list { display: flex; flex-direction: column; gap: 22px; }
.spa-list li { display: flex; gap: 16px; align-items: flex-start; }
.spa-list .num { font-family: var(--font-display); font-style: italic; color: var(--rose-gold-light); font-size: 1.3rem; width: 36px; flex-shrink: 0; }
.spa-list h4 { font-family: var(--font-display); font-size: 1.15rem; margin-bottom: 4px; }
.spa-list p { font-size: 0.88rem; color: rgba(255,255,255,0.65); line-height: 1.6; }

/* ================= GALLERY ================= */
.gallery { background: var(--ivory-deep); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 220px 220px;
  gap: 18px;
}
.gallery-grid .g1 { grid-column: span 2; grid-row: span 2; }
.gallery-grid .g4 { grid-column: span 2; }
@media (max-width: 800px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: 180px 180px 180px; }
  .gallery-grid .g1 { grid-column: span 2; grid-row: span 1; }
  .gallery-grid .g4 { grid-column: span 2; }
}
.gallery-item {
  position: relative; border-radius: var(--radius-md); overflow: hidden;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item .ba-tag {
  position: absolute; top: 14px; left: 14px;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(6px);
  padding: 6px 14px; border-radius: 999px;
  font-size: 0.62rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--plum);
}

/* ================= TESTIMONIALS ================= */
.testimonials { background: var(--ivory-deep); }
.testi-track-wrap { overflow: hidden; }
.testi-track { display: flex; gap: 26px; }
.testi-card {
  flex: 0 0 auto;
  width: min(420px, 84vw);
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-card);
}
.testi-stars { color: var(--champagne); letter-spacing: 3px; margin-bottom: 18px; font-size: 0.95rem; }
.testi-card p.quote {
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-style: italic;
  line-height: 1.55;
  color: var(--plum);
  margin-bottom: 26px;
}
.testi-person { display: flex; align-items: center; gap: 14px; }
.testi-person img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; box-shadow: 0 0 0 2px var(--champagne); }
.testi-person .name { font-size: 0.92rem; font-weight: 500; }
.testi-person .role { font-size: 0.76rem; color: var(--rose-gold); }
.testi-controls { display: flex; gap: 14px; margin-top: 44px; justify-content: center; }
.testi-controls button {
  width: 46px; height: 46px; border-radius: 50%;
  border: 1px solid rgba(44, 44, 44,0.2);
  display: flex; align-items: center; justify-content: center;
  transition: 0.4s var(--ease);
}
.testi-controls button:hover { background: var(--rose-gold); color: var(--white); border-color: var(--rose-gold); }

/* ================= PACKAGES ================= */
.packages { background: linear-gradient(180deg, var(--ivory-deep), var(--blush) 120%); }
.pkg-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
@media (max-width: 940px) { .pkg-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; } }
.pkg-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px 36px;
  box-shadow: var(--shadow-card);
  position: relative;
  transition: transform 0.55s var(--ease), box-shadow 0.55s var(--ease);
  border: 1px solid transparent;
}
.pkg-card:hover { transform: translateY(-12px); box-shadow: 0 30px 60px -20px rgba(44, 44, 44,0.3); }
.pkg-card.featured {
  background: linear-gradient(160deg, var(--plum), var(--plum-soft));
  color: var(--white);
  transform: scale(1.04);
}
.pkg-card.featured:hover { transform: scale(1.04) translateY(-12px); }
.pkg-ribbon {
  position: absolute; top: 24px; right: -10px;
  background: linear-gradient(135deg, var(--rose-gold), var(--champagne));
  color: var(--white);
  font-size: 0.65rem; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 6px 0 0 6px;
}
.pkg-card .pkg-name { font-family: var(--font-display); font-size: 1.7rem; margin-bottom: 8px; }
.pkg-card .pkg-price { font-family: var(--font-display); font-size: 2.6rem; margin-bottom: 4px; }
.pkg-card .pkg-price span { font-size: 1rem; font-family: var(--font-body); opacity: 0.6; }
.pkg-card .pkg-desc { font-size: 0.86rem; opacity: 0.75; margin-bottom: 28px; }
.pkg-card ul { display: flex; flex-direction: column; gap: 13px; margin-bottom: 32px; }
.pkg-card ul li { font-size: 0.88rem; display: flex; gap: 10px; align-items: baseline; }
.pkg-card ul li::before { content: "✦"; color: var(--rose-gold); font-size: 0.7rem; }
.pkg-card.featured ul li::before { color: var(--champagne); }
.pkg-card .btn { width: 100%; justify-content: center; }

/* ================= CTA BANNER ================= */
.cta-banner {
  position: relative;
  background: linear-gradient(120deg, #2C2C2C 0%, #5A3F42 38%, #EFA8B2 78%, #D4AF37 100%);
  overflow: hidden;
}
.cta-banner-inner {
  padding: 110px 0;
  text-align: center;
  position: relative; z-index: 3;
}
.cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  color: var(--white);
  margin-bottom: 22px;
  line-height: 1.1;
}
.cta-banner p {
  color: rgba(255,255,255,0.85);
  max-width: 540px;
  margin: 0 auto 38px;
  font-size: 1.02rem;
  line-height: 1.7;
}
.cta-banner-ctas { display: flex; justify-content: center; gap: 18px; flex-wrap: wrap; }
.cta-banner .hero-glow { background: radial-gradient(circle, rgba(255,255,255,0.25), transparent 70%); }

/* ================= CONTACT ================= */
.contact { background: var(--blush); }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; gap: 50px; } }

.contact-info-list { display: flex; flex-direction: column; gap: 26px; margin-top: 36px; }
.contact-info-item { display: flex; gap: 18px; align-items: flex-start; }
.contact-info-item .ic {
  width: 48px; height: 48px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--blush), var(--champagne));
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
}
.contact-info-item h4 { font-family: var(--font-display); font-size: 1.08rem; margin-bottom: 4px; }
.contact-info-item p { font-size: 0.88rem; color: var(--plum-soft); line-height: 1.6; }

.map-embed {
  margin-top: 36px; border-radius: var(--radius-md); overflow: hidden;
  box-shadow: var(--shadow-card); aspect-ratio: 16/10;
}
.map-embed iframe { width: 100%; height: 100%; border: 0; }

/* booking form */
.booking-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px;
  box-shadow: var(--shadow-soft);
  position: relative;
}
.booking-form h3 { font-family: var(--font-display); font-size: 1.6rem; margin-bottom: 8px; }
.booking-form .sub { font-size: 0.88rem; color: var(--plum-soft); margin-bottom: 30px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
@media (max-width: 480px) { .form-row { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.field label { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--plum-soft); }
.field input, .field select, .field textarea {
  font-family: var(--font-body);
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(44, 44, 44,0.16);
  background: var(--ivory);
  font-size: 0.92rem;
  color: var(--plum);
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--rose-gold);
  box-shadow: 0 0 0 4px rgba(212,175,55,0.18);
}
.field textarea { resize: none; min-height: 90px; }
.booking-form .btn { width: 100%; justify-content: center; margin-top: 6px; }

/* confirmation message */
.form-success {
  position: absolute; inset: 0;
  background: var(--white);
  border-radius: var(--radius-lg);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 44px;
  opacity: 0; visibility: hidden; transform: scale(0.96);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease), visibility 0.5s var(--ease);
}
.form-success.show { opacity: 1; visibility: visible; transform: scale(1); }
.form-success .check {
  width: 72px; height: 72px; border-radius: 50%;
  background: linear-gradient(135deg, var(--rose-gold), var(--champagne));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; color: var(--white); margin-bottom: 22px;
}
.form-success h3 { font-family: var(--font-display); font-size: 1.6rem; margin-bottom: 10px; }
.form-success p { font-size: 0.92rem; color: var(--plum-soft); max-width: 320px; line-height: 1.6; margin-bottom: 26px;}

/* ================= FOOTER ================= */
.footer {
  background: var(--plum);
  color: rgba(255,255,255,0.85);
  padding-top: 90px;
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 50px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.footer-brand img { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; box-shadow: 0 0 0 2px var(--champagne); }
.footer-brand span { font-family: var(--font-display); font-size: 1.5rem; color: var(--white); }
.footer-col p { font-size: 0.88rem; line-height: 1.7; color: rgba(255,255,255,0.65); max-width: 280px; }
.footer-col h5 { font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--rose-gold-light); margin-bottom: 20px; }
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col ul a { font-size: 0.9rem; color: rgba(255,255,255,0.75); transition: 0.3s; }
.footer-col ul a:hover { color: var(--champagne); padding-left: 4px; border-bottom: 1px solid var(--champagne); }
.footer-social { display: flex; gap: 12px; margin-top: 22px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.25);
  display: flex; align-items: center; justify-content: center;
  transition: 0.4s var(--ease);
}
.footer-social a:hover { background: var(--rose-gold); border-color: var(--rose-gold); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 26px 0 30px;
  font-size: 0.78rem; color: rgba(255,255,255,0.5);
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom a { text-decoration: underline; text-decoration-color: rgba(255,255,255,0.3); }

/* ================= MISC ================= */
.back-to-top {
  position: fixed; bottom: 28px; right: 28px; z-index: 400;
  width: 50px; height: 50px; border-radius: 50%;
  background: linear-gradient(135deg, var(--rose-gold), var(--champagne));
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 14px 28px -10px rgba(212,175,55,0.55);
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: 0.45s var(--ease);
}
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }

::selection { background: var(--rose-gold); color: var(--white); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 2px solid var(--rose-gold);
  outline-offset: 3px;
}
