/* Blossom Beauty Studio by Dani — light pink + gold luxury palette */

:root {
  --pink-50:  #fdf6f3;
  --pink-100: #fbe9e4;
  --pink-200: #f5d0c8;
  --pink-300: #eab3a6;
  --gold-400: #d4af6a;
  --gold-500: #b8924a;
  --gold-600: #8c6d31;
  --ink-900:  #1a1410;
  --ink-700:  #4a3f37;
  --ink-500:  #7a6b60;
  --bg:       #fffaf7;
  --white:    #ffffff;

  --font-display: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --font-script:  "Allura", "Great Vibes", cursive;
  --font-body:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --shadow-sm: 0 2px 8px rgba(140, 109, 49, 0.08);
  --shadow-md: 0 8px 24px rgba(140, 109, 49, 0.12);
  --shadow-lg: 0 20px 48px rgba(26, 20, 16, 0.18);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink-700);
  background: var(--bg);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: var(--gold-600); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--gold-400); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink-900);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.01em;
}

h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 0.5em; }
h3 { font-size: 1.4rem; margin-bottom: 0.4em; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 96px 0;
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}

.section-header .eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: 16px;
}

.section-header p {
  color: var(--ink-500);
  font-size: 1.05rem;
  margin-top: 12px;
}

/* ================ NAV ================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255, 250, 247, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(212, 175, 106, 0.15);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.nav-brand {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.12em;
  color: var(--gold-600);
  text-transform: uppercase;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
  text-decoration: none;
}
.nav-brand span {
  font-family: var(--font-script);
  font-size: 1.05rem;
  text-transform: none;
  margin-left: 0;
  margin-top: 2px;
  color: var(--gold-500);
  letter-spacing: 0.02em;
  font-weight: 400;
}
.footer .nav-brand {
  display: inline-flex;
  margin-bottom: 12px;
  align-items: center;
}
.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  color: var(--ink-700);
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 500;
}
.nav-links a:hover { color: var(--gold-500); }
.nav-cta {
  background: var(--ink-900);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 999px;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--gold-600); color: var(--white); }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; font-size: 1.5rem; color: var(--ink-900); }

/* ================ HERO — CINEMATIC ================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 150px 0 80px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  perspective: 1400px;
}
/* Background layer — full-bleed, fills any viewport */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../images/hero.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: -3;
  transform-origin: center center;
  animation: kenburns 24s ease-in-out infinite alternate;
  will-change: transform;
}
/* Vignette + tint overlay */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 50%, transparent 0%, rgba(26, 20, 16, 0.35) 100%),
    linear-gradient(135deg, rgba(253, 246, 243, 0.55) 0%, rgba(251, 233, 228, 0.35) 50%, rgba(140, 109, 49, 0.10) 100%);
  z-index: -2;
  pointer-events: none;
}
@keyframes kenburns {
  0%   { transform: scale(1.00) translate3d(0,    0, 0); }
  100% { transform: scale(1.06) translate3d(-1%, -1%, 0); }
}

/* Floating gold particles */
.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}
.particle {
  position: absolute;
  width: 6px;
  height: 6px;
  background: radial-gradient(circle, var(--gold-400), transparent 70%);
  border-radius: 50%;
  opacity: 0.7;
  animation: float linear infinite;
}
.particle:nth-child(1) { left: 10%; animation-duration: 18s; animation-delay: 0s;  width: 5px; height: 5px; }
.particle:nth-child(2) { left: 25%; animation-duration: 22s; animation-delay: 3s;  width: 8px; height: 8px; }
.particle:nth-child(3) { left: 40%; animation-duration: 26s; animation-delay: 1s;  width: 4px; height: 4px; }
.particle:nth-child(4) { left: 55%; animation-duration: 20s; animation-delay: 5s;  width: 6px; height: 6px; }
.particle:nth-child(5) { left: 68%; animation-duration: 24s; animation-delay: 2s;  width: 7px; height: 7px; }
.particle:nth-child(6) { left: 80%; animation-duration: 19s; animation-delay: 4s;  width: 5px; height: 5px; }
.particle:nth-child(7) { left: 92%; animation-duration: 28s; animation-delay: 6s;  width: 9px; height: 9px; }
@keyframes float {
  from { transform: translateY(110vh) translateX(0)    rotate(0deg);   opacity: 0; }
  10%  { opacity: 0.7; }
  90%  { opacity: 0.7; }
  to   { transform: translateY(-10vh) translateX(40px) rotate(360deg); opacity: 0; }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
  transform-style: preserve-3d;
}
.hero-content {
  transform: translateZ(40px);
}

/* Centered hero variant — when no card on the right */
.hero-centered { text-align: center; }
.hero-centered .container { display: flex; justify-content: center; }
.hero-centered .hero-content {
  max-width: 760px;
  text-align: center;
  transform: translateZ(20px);
}
.hero-centered .hero-content p { margin-left: auto; margin-right: auto; }
.hero-centered .hero-actions { justify-content: center; }
.hero-centered::after {
  /* Stronger overlay since we're not anchoring with a card — keeps the studio image readable but content legible */
  background:
    radial-gradient(ellipse at center, rgba(253,246,243,0.55) 0%, rgba(26, 20, 16, 0.5) 100%),
    linear-gradient(180deg, rgba(253,246,243,0.30) 0%, rgba(251,233,228,0.45) 60%, rgba(140,109,49,0.18) 100%);
}
.hero-content .eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-600);
  margin-bottom: 24px;
  text-shadow: 0 1px 12px rgba(184, 146, 74, 0.3);
}
/* Pill version — readable on any background */
.eyebrow-pill {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 10px 20px !important;
  border-radius: 999px;
  border: 1px solid rgba(212, 175, 106, 0.45);
  box-shadow: 0 6px 20px -6px rgba(140, 109, 49, 0.3);
  color: var(--gold-600) !important;
  font-weight: 600;
  text-shadow: none !important;
  margin-bottom: 24px;
  display: inline-block;
}
.hero-content h1 {
  margin-bottom: 24px;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
}
.hero-content h1 em {
  font-style: italic;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-content h1 .script {
  font-family: var(--font-script);
  color: var(--gold-500);
  font-weight: 400;
  display: block;
  font-size: 0.7em;
  margin-top: -10px;
  -webkit-text-fill-color: var(--gold-500);
}
.hero-content p {
  font-size: 1.15rem;
  color: var(--ink-700);
  margin-bottom: 32px;
  max-width: 520px;
  text-shadow: 0 1px 8px rgba(255,255,255,0.4);
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* 3D tilting hero portrait card */
.hero-image {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 12px;
  overflow: hidden;
  box-shadow:
    0 30px 60px -20px rgba(26, 20, 16, 0.45),
    0 18px 36px -18px rgba(140, 109, 49, 0.35),
    0 0 0 1px rgba(212, 175, 106, 0.25);
  background: var(--pink-100) url("../images/hero-portrait.jpg") center/cover no-repeat;
  transform: rotateY(-6deg) rotateX(2deg) translateZ(0);
  transform-style: preserve-3d;
  transition: transform 0.4s cubic-bezier(.2,.7,.3,1);
  will-change: transform;
}
.hero-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(255,255,255,0.18) 50%, transparent 60%);
  pointer-events: none;
  mix-blend-mode: overlay;
  z-index: 2;
}
.hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255,255,255,0.35);
  margin: 14px;
  border-radius: 6px;
  pointer-events: none;
  z-index: 2;
  box-shadow: inset 0 0 40px rgba(212, 175, 106, 0.15);
}

/* ================ BUTTONS ================ */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.25s ease;
  border: 0;
  cursor: pointer;
  font-family: var(--font-body);
}
.btn-primary {
  background: var(--ink-900);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--gold-600);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-outline {
  background: transparent;
  color: var(--ink-900);
  border: 1.5px solid var(--ink-900);
}
.btn-outline:hover {
  background: var(--ink-900);
  color: var(--white);
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  color: var(--white);
}
.btn-gold:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ================ ABOUT THE ARTIST ================ */
.about {
  background: linear-gradient(180deg, var(--white) 0%, var(--pink-50) 100%);
  position: relative;
  overflow: hidden;
}
.about::before {
  content: "";
  position: absolute;
  top: -120px; right: -120px;
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(212,175,106,0.15), transparent 70%);
  pointer-events: none;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 72px;
  align-items: center;
  position: relative;
}
.about-image {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 16px;
  overflow: hidden;
  box-shadow:
    0 30px 60px -20px rgba(26, 20, 16, 0.45),
    0 18px 36px -18px rgba(140, 109, 49, 0.35),
    0 0 0 1px rgba(212, 175, 106, 0.25);
  transform: rotate(-2deg) translateZ(0);
  transition: transform 0.5s cubic-bezier(.2,.7,.3,1);
}
.about-image::after {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255,255,255,0.45);
  border-radius: 8px;
  pointer-events: none;
  box-shadow: inset 0 0 40px rgba(212, 175, 106, 0.15);
}
.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about-image:hover { transform: rotate(0deg) scale(1.02); }
.about-content .eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: 16px;
}
.about-content h2 { margin-bottom: 24px; }
.about-content h2 em {
  font-style: italic;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.about-content p { margin-bottom: 18px; color: var(--ink-700); font-size: 1.02rem; }
.about-content p em { font-style: italic; color: var(--gold-600); }
.about-lead { font-size: 1.18rem !important; color: var(--ink-900) !important; line-height: 1.5; }
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 32px;
  padding: 24px 0;
  border-top: 1px solid var(--pink-200);
  border-bottom: 1px solid var(--pink-200);
}
.about-stats > div { text-align: center; }
.about-stats strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--gold-600);
  line-height: 1;
  margin-bottom: 6px;
}
.about-stats span {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-500);
}

/* ================ SERVICES ================ */
.services {
  background: var(--white);
  position: relative;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  perspective: 1200px;
}
.service-card {
  background: var(--bg);
  border: 1px solid var(--pink-100);
  border-radius: 14px;
  padding: 36px 28px;
  text-align: center;
  transition: transform 0.4s cubic-bezier(.2,.7,.3,1), box-shadow 0.4s, border-color 0.3s;
  transform-style: preserve-3d;
  will-change: transform;
}
.service-card:hover {
  transform: translateY(-10px) rotateX(4deg) translateZ(20px);
  box-shadow:
    0 24px 48px -16px rgba(140, 109, 49, 0.25),
    0 0 0 1px var(--gold-400);
  border-color: var(--gold-400);
}
.service-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--pink-100), var(--pink-200));
  border-radius: 50%;
  font-size: 1.5rem;
  color: var(--gold-600);
}
.service-card p {
  color: var(--ink-500);
  font-size: 0.95rem;
}

/* ================ PRICING ================ */
.pricing {
  background: linear-gradient(180deg, var(--bg) 0%, var(--pink-50) 100%);
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.price-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 18px;
  padding: 40px 32px;
  text-align: center;
  position: relative;
  border: 1px solid rgba(245, 208, 200, 0.6);
  box-shadow:
    0 8px 24px -8px rgba(140, 109, 49, 0.15),
    inset 0 1px 0 rgba(255,255,255,0.7);
  transition: transform 0.4s cubic-bezier(.2,.7,.3,1), box-shadow 0.4s;
  transform-style: preserve-3d;
}
.price-card.featured {
  background: linear-gradient(180deg, var(--ink-900) 0%, #2a2018 100%);
  color: var(--white);
  transform: scale(1.04);
}
.price-card.featured h3,
.price-card.featured .price { color: var(--white); }
.price-card.featured .price-list li { color: rgba(255,255,255,0.85); border-color: rgba(255,255,255,0.1); }
.price-card.featured .badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  color: var(--white);
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.price-card:hover {
  transform: translateY(-10px) rotateX(3deg);
  box-shadow:
    0 28px 56px -16px rgba(140, 109, 49, 0.3),
    inset 0 1px 0 rgba(255,255,255,0.8);
}
.price-card.featured:hover {
  transform: scale(1.04) translateY(-10px) rotateX(3deg);
  box-shadow: 0 32px 64px -16px rgba(0, 0, 0, 0.5);
}
.price {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--gold-600);
  margin: 16px 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  line-height: 1.1;
}
.price small {
  font-size: 0.85rem;
  color: var(--ink-500);
  display: block;
  margin-top: -6px;
}
.price-prefix {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--ink-500);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  display: block;
}
.price-card.featured .price-prefix { color: rgba(255,255,255,0.7); }
.price-amount {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--gold-600);
  display: block;
  line-height: 1;
}
.price-card.featured .price-amount { color: var(--white); }
.price-amount.price-contact {
  font-size: 2rem;
  letter-spacing: 0.02em;
}
.pricing-footnote {
  text-align: center;
  margin-top: 48px;
  color: var(--ink-500);
  font-size: 0.95rem;
}
.pricing-footnote a {
  color: var(--gold-600);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.price-list {
  list-style: none;
  margin: 24px 0 32px;
  text-align: left;
}
.price-list li {
  padding: 10px 0;
  border-bottom: 1px solid var(--pink-100);
  font-size: 0.92rem;
}
.price-list li:last-child { border-bottom: 0; }
.price-list li::before {
  content: "✦ ";
  color: var(--gold-500);
  margin-right: 6px;
}

/* ================ PORTFOLIO — HORIZONTAL CAROUSEL ================ */
.portfolio {
  background: var(--white);
  position: relative;
}
.portfolio-carousel {
  position: relative;
  perspective: 1400px;
}
.portfolio-grid {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 12px 4px 32px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.portfolio-grid::-webkit-scrollbar { display: none; }
.portfolio-item {
  flex: 0 0 auto;
  width: clamp(260px, 32vw, 380px);
  scroll-snap-align: center;
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  background: var(--pink-100);
  transform-style: preserve-3d;
  transition: transform 0.5s cubic-bezier(.2,.7,.3,1), box-shadow 0.5s;
  box-shadow: 0 12px 32px -12px rgba(26, 20, 16, 0.3);
  will-change: transform;
}
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, 0.95);
  color: var(--ink-900);
  font-size: 1.4rem;
  cursor: pointer;
  box-shadow: 0 8px 24px -6px rgba(140, 109, 49, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
  backdrop-filter: blur(8px);
}
.carousel-arrow:hover {
  background: var(--ink-900);
  color: var(--white);
  transform: translateY(-50%) scale(1.08);
}
.carousel-arrow.prev { left: -8px; }
.carousel-arrow.next { right: -8px; }
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}
.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--pink-200);
  border: 0;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}
.carousel-dot.active {
  background: var(--gold-500);
  width: 28px;
  border-radius: 999px;
}
.portfolio-item:hover {
  box-shadow:
    0 32px 64px -16px rgba(26, 20, 16, 0.5),
    0 0 0 1px rgba(212, 175, 106, 0.4);
}
.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(.2,.7,.3,1);
  transform: translateZ(0);
}
.portfolio-item:hover img { transform: scale(1.08) translateZ(30px); }
.portfolio-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 40%, rgba(26, 20, 16, 0.7) 100%),
    radial-gradient(circle at 50% 100%, rgba(212, 175, 106, 0.15), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
}
.portfolio-item:hover::after { opacity: 1; }
.portfolio-item .label {
  position: absolute;
  bottom: 20px; left: 24px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.3rem;
  z-index: 2;
  opacity: 0;
  transform: translateY(12px) translateZ(40px);
  transition: all 0.4s cubic-bezier(.2,.7,.3,1);
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}
.portfolio-item:hover .label { opacity: 1; transform: translateY(0) translateZ(40px); }

/* ================ TESTIMONIALS — CAROUSEL ================ */
.testimonials {
  background: linear-gradient(135deg, var(--pink-50) 0%, var(--pink-100) 100%);
}
.testimonials-carousel {
  position: relative;
  perspective: 1400px;
}
.testimonials-grid {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 12px 4px 32px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.testimonials-grid::-webkit-scrollbar { display: none; }
.testimonials-grid > .testimonial {
  flex: 0 0 auto;
  width: clamp(280px, 60vw, 520px);
  scroll-snap-align: center;
}
.testimonial {
  background: var(--white);
  padding: 36px 32px;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.testimonial::before {
  content: "“";
  position: absolute;
  top: 8px; left: 20px;
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--gold-400);
  opacity: 0.4;
  line-height: 1;
}
.testimonial p {
  font-style: italic;
  color: var(--ink-700);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--pink-100);
  padding-top: 16px;
}
.author-initials {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.9rem;
}
.author-info strong {
  display: block;
  color: var(--ink-900);
  font-size: 0.95rem;
}
.author-info span {
  font-size: 0.82rem;
  color: var(--ink-500);
}
.stars {
  color: var(--gold-400);
  letter-spacing: 2px;
  margin-bottom: 12px;
}

/* ================ BOOKING ================ */
.booking {
  background: var(--bg);
}
.booking-wrapper {
  background: var(--white);
  border-radius: 16px;
  padding: 24px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--pink-100);
}
.calendly-inline-widget {
  min-height: 700px;
  width: 100%;
}
.booking-fallback {
  text-align: center;
  padding: 60px 20px;
}
.booking-fallback h3 { margin-bottom: 12px; }
.booking-fallback p { color: var(--ink-500); margin-bottom: 24px; }

/* ================ CONTACT ================ */
.contact {
  background: var(--ink-900);
  color: rgba(255,255,255,0.85);
}
.contact h2 { color: var(--white); }
.contact .section-header p { color: rgba(255,255,255,0.7); }
.contact .eyebrow { color: var(--gold-400); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.contact-info h3 { color: var(--white); }
.contact-info > div {
  margin-bottom: 28px;
}
.contact-info .label {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 6px;
  display: block;
}
.contact-info a {
  color: rgba(255,255,255,0.9);
  font-size: 1.05rem;
}
.socials {
  display: flex;
  gap: 12px;
  margin-top: 8px;
  flex-wrap: wrap;
}
.socials a {
  width: 44px; height: 44px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.85);
  transition: all 0.25s ease;
}
.socials a svg {
  width: 20px;
  height: 20px;
  display: block;
}
.socials a:hover {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  border-color: var(--gold-500);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 8px 18px -6px rgba(212, 175, 106, 0.6);
}
.contact-form {
  background: rgba(255,255,255,0.04);
  padding: 32px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.08);
}
.contact-form label {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 6px;
}
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  margin-bottom: 18px;
  transition: border-color 0.2s;
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--gold-400);
}
.contact-form textarea { resize: vertical; min-height: 120px; }
.contact-form .btn { width: 100%; }
.form-msg { margin-top: 12px; font-size: 0.9rem; min-height: 1.2em; }
.form-msg.success { color: #7fd49a; }
.form-msg.error { color: #f0a89e; }
.contact-form .req { color: var(--gold-400); margin-left: 2px; }
.form-fineprint {
  margin-top: 14px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  text-align: center;
  letter-spacing: 0.02em;
}

/* ================ URGENCY ANNOUNCEMENT BAR ================ */
.urgency-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 101;
  background: linear-gradient(90deg, var(--ink-900) 0%, #1f1812 100%);
  color: var(--white);
  border-bottom: 1px solid rgba(212, 175, 106, 0.35);
}
.urgency-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 9px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
}
.urgency-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold-400);
  box-shadow: 0 0 0 0 rgba(212, 175, 106, 0.7);
  animation: urgency-pulse 2s infinite;
  flex-shrink: 0;
}
.urgency-text { color: rgba(255,255,255,0.88); }
.urgency-text strong { color: var(--gold-400); font-weight: 600; }
.urgency-text .ub-short { display: none; }   /* show on mobile only */
.urgency-text .ub-long  { display: inline; } /* show on desktop */
.urgency-cta {
  color: var(--gold-400);
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 0.06em;
  white-space: nowrap;
  transition: color 0.2s;
}
.urgency-cta:hover { color: var(--white); }
@keyframes urgency-pulse {
  0% { box-shadow: 0 0 0 0 rgba(212, 175, 106, 0.6); }
  70% { box-shadow: 0 0 0 8px rgba(212, 175, 106, 0); }
  100% { box-shadow: 0 0 0 0 rgba(212, 175, 106, 0); }
}
/* Push nav and content down to make room for urgency bar */
.nav { top: 38px; }
body { padding-top: 0; }

/* ================ STICKY MOBILE CTA ================ */
.sticky-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 99;
  display: none;
  background: rgba(255, 250, 247, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid rgba(212, 175, 106, 0.25);
  padding: 12px 14px calc(12px + env(safe-area-inset-bottom));
  gap: 10px;
  box-shadow: 0 -4px 20px -8px rgba(140, 109, 49, 0.2);
}
.sticky-cta-btn {
  flex: 1;
  text-align: center;
  padding: 13px 16px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: transform 0.2s ease;
}
.sticky-cta-btn.primary {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  color: var(--white);
  box-shadow: 0 6px 16px -4px rgba(184, 146, 74, 0.4);
}
.sticky-cta-btn.secondary {
  background: rgba(255,255,255,0.9);
  color: var(--ink-900);
  border: 1px solid rgba(212, 175, 106, 0.5);
}
.sticky-cta-btn:active { transform: scale(0.97); }

/* ================ LUXURY URGENCY SECTION ================ */
.urgency-section {
  padding: 80px 24px;
  background: linear-gradient(135deg, var(--ink-900) 0%, #2a2018 100%);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.urgency-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(212, 175, 106, 0.08) 0%, transparent 70%);
  pointer-events: none;
}
.urgency-card {
  position: relative;
  max-width: 760px;
}
.urgency-section h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin: 14px 0 18px;
}
.urgency-section .eyebrow {
  color: var(--gold-400);
  letter-spacing: 0.22em;
}
.urgency-section p {
  color: rgba(255,255,255,0.78);
  max-width: 620px;
  margin: 0 auto 36px;
  line-height: 1.75;
  font-size: 1.02rem;
}
.urgency-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  margin-bottom: 36px;
  padding: 28px 0;
  border-top: 1px solid rgba(212, 175, 106, 0.18);
  border-bottom: 1px solid rgba(212, 175, 106, 0.18);
}
.urgency-stats div { text-align: center; }
.urgency-stats strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--gold-400);
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}
.urgency-stats span {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

/* ================ AREAS WE SERVE TEASER ================ */
.areas-teaser {
  background: linear-gradient(180deg, var(--pink-50) 0%, var(--bg) 100%);
}
.areas-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  max-width: 760px;
  margin: 0 auto;
}
.area-pill {
  display: inline-block;
  padding: 12px 24px;
  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(212, 175, 106, 0.4);
  border-radius: 999px;
  color: var(--ink-900);
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(.2,.7,.3,1);
  box-shadow: 0 4px 12px -4px rgba(140, 109, 49, 0.12);
}
.area-pill:hover {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  color: var(--white);
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 8px 18px -4px rgba(140, 109, 49, 0.32);
}

/* ================ AREAS PAGE ================ */
.areas-hero {
  padding: 180px 24px 90px;
  background: linear-gradient(135deg, var(--pink-50) 0%, var(--bg) 100%);
  text-align: center;
  position: relative;
}
.areas-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  margin-bottom: 20px;
}
.areas-hero h1 em {
  font-style: italic;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.areas-hero p {
  font-size: 1.15rem;
  color: var(--ink-700);
  max-width: 720px;
  margin: 0 auto 28px;
  line-height: 1.7;
}
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
  margin: 56px 0;
}
.area-card {
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(245, 208, 200, 0.6);
  border-radius: 18px;
  padding: 36px 32px;
  box-shadow: 0 8px 24px -8px rgba(140, 109, 49, 0.12);
  transition: transform 0.4s cubic-bezier(.2,.7,.3,1), box-shadow 0.4s;
}
.area-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 44px -16px rgba(140, 109, 49, 0.25);
}
.area-card .eyebrow {
  display: block;
  margin-bottom: 8px;
}
.area-card h2 {
  font-size: 1.5rem;
  margin: 0 0 14px;
  color: var(--ink-900);
}
.area-card h2 em {
  font-style: italic;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.area-card p {
  color: var(--ink-700);
  line-height: 1.7;
  margin-bottom: 18px;
  font-size: 0.97rem;
}
.area-card .area-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gold-600);
  font-weight: 500;
  text-decoration: none;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
}
.area-card .area-cta:hover { text-decoration: underline; }

.areas-why {
  background: var(--white);
  border-radius: 22px;
  padding: 56px 40px;
  margin: 72px 0;
  box-shadow: 0 8px 28px -10px rgba(140, 109, 49, 0.15);
}
.areas-why h2 {
  text-align: center;
  margin-bottom: 32px;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}
.why-grid div {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--ink-700);
}
.why-grid div::before {
  content: "✦";
  color: var(--gold-500);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.nearby-areas {
  background: var(--ink-900);
  color: var(--white);
  padding: 56px 40px;
  border-radius: 22px;
  text-align: center;
  margin: 56px 0;
}
.nearby-areas h2 { color: var(--white); margin-bottom: 14px; }
.nearby-areas p { color: rgba(255,255,255,0.75); max-width: 640px; margin: 0 auto 32px; }
.nearby-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.nearby-pills a {
  padding: 10px 20px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(212, 175, 106, 0.3);
  border-radius: 999px;
  color: var(--white);
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  transition: all 0.3s ease;
}
.nearby-pills a:hover {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  border-color: transparent;
}

.areas-cta-banner {
  text-align: center;
  padding: 72px 24px;
  background: linear-gradient(135deg, var(--pink-50), var(--bg));
  border-radius: 22px;
  margin-bottom: 56px;
}
.areas-cta-banner h2 { margin-bottom: 14px; }
.areas-cta-banner p { color: var(--ink-700); max-width: 640px; margin: 0 auto 28px; line-height: 1.7; }

/* ================ FOOTER ================ */
.footer {
  background: #0e0a08;
  color: rgba(255,255,255,0.6);
  text-align: center;
  padding: 32px 24px;
  font-size: 0.85rem;
  border-top: 1px solid rgba(212, 175, 106, 0.2);
}

/* ================ SCROLL REVEALS — CAROUSEL SLIDE ================ */
/* Sections slide in from alternating sides like carousel pages */
.reveal {
  opacity: 0;
  transform: translateX(-80px) scale(0.96);
  transition: opacity 1s cubic-bezier(.16,.84,.32,1), transform 1.1s cubic-bezier(.16,.84,.32,1);
  will-change: opacity, transform;
}
.reveal-right {
  transform: translateX(80px) scale(0.96);
}
.reveal.in {
  opacity: 1;
  transform: translateX(0) scale(1);
}
.reveal-stagger > * {
  opacity: 0;
  transform: translateX(-40px) scale(0.96);
  transition: opacity 0.8s cubic-bezier(.16,.84,.32,1), transform 0.9s cubic-bezier(.16,.84,.32,1);
}
.reveal-stagger.from-right > * {
  transform: translateX(40px) scale(0.96);
}
.reveal-stagger.in > * {
  opacity: 1;
  transform: translateX(0) scale(1);
}
.reveal-stagger.in > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger.in > *:nth-child(2) { transition-delay: 0.12s; }
.reveal-stagger.in > *:nth-child(3) { transition-delay: 0.19s; }
.reveal-stagger.in > *:nth-child(4) { transition-delay: 0.26s; }
.reveal-stagger.in > *:nth-child(5) { transition-delay: 0.33s; }
.reveal-stagger.in > *:nth-child(6) { transition-delay: 0.40s; }
.reveal-stagger.in > *:nth-child(7) { transition-delay: 0.47s; }
.reveal-stagger.in > *:nth-child(8) { transition-delay: 0.54s; }

/* ================ RESPONSIVE ================ */
@media (max-width: 880px) {
  .nav-toggle { display: block; }
  .sticky-cta { display: flex; }
  /* Add bottom padding to body so sticky CTA doesn't cover content */
  body { padding-bottom: 76px; }
  .whatsapp-float { bottom: calc(76px + 16px) !important; }

  /* === URGENCY BAR — fits on screen without truncation === */
  .urgency-inner {
    font-size: 0.72rem;
    gap: 10px;
    padding: 8px 14px;
    flex-wrap: nowrap;
    letter-spacing: 0.02em;
    line-height: 1.2;
  }
  .urgency-text {
    flex: 1;
    min-width: 0;
    white-space: normal;            /* allow wrapping inside the text if needed */
    overflow: visible;
    text-overflow: clip;
  }
  /* Hide the long version on small screens; show the short version */
  .urgency-text .ub-long { display: none; }
  .urgency-text .ub-short { display: inline; }
  .urgency-cta {
    font-size: 0.74rem;
    letter-spacing: 0.04em;
    flex-shrink: 0;
  }
  /* Push nav further down to clear the (slightly taller) urgency bar */
  .nav { top: 36px; }

  .nav-links {
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    box-shadow: var(--shadow-md);
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 8px 0; }

  /* === HERO — proper breathing room below fixed UI on mobile === */
  /* Mobile fixed UI = urgency bar (~36px) + nav (~78px stacked wordmark) ≈ 114px.
     Switch hero from center-aligned to top-aligned so padding-top is honored. */
  .hero {
    padding: 160px 0 64px;
    min-height: auto;
    align-items: flex-start;       /* CRITICAL: was 'center', overrode padding */
  }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-image {
    max-width: 360px;
    margin: 0 auto;
    transform: rotateY(0deg) rotateX(0deg); /* disable 3D tilt on mobile */
  }
  .hero-content h1 { font-size: clamp(2.2rem, 9vw, 3.2rem); }
  .hero-content .eyebrow-pill {
    margin-top: 0;
    margin-bottom: 24px;
  }
  .hero::before { background-position: 60% center; }

  /* Sub-page heroes (services, areas, deep pages) — same breathing room */
  .page-hero { padding: 160px 20px 60px; }
  .page-hero h1 { font-size: clamp(2rem, 8vw, 2.8rem); margin-bottom: 16px; }
  .page-hero .eyebrow-pill { margin-top: 0; margin-bottom: 24px; }
  .page-hero-lead { font-size: 1rem; line-height: 1.7; margin-bottom: 24px; }
  .areas-hero { padding: 160px 20px 60px; }
  .areas-hero h1 { font-size: clamp(2rem, 8vw, 2.8rem); margin-bottom: 16px; }
  .areas-hero .eyebrow-pill { margin-top: 0; margin-bottom: 24px; }

  /* About — stack vertically on mobile */
  .about-grid { grid-template-columns: 1fr; gap: 36px; }
  .about-image { transform: none; max-width: 420px; margin: 0 auto; }
  .about-stats strong { font-size: 1.7rem; }
  .section { padding: 64px 0; }
  .price-card.featured { transform: scale(1); }
  .price-card.featured:hover { transform: translateY(-6px); }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }

  /* Soften 3D effects on touch */
  .service-card:hover,
  .portfolio-item:hover img,
  .portfolio-item:hover { transform: none; }
  .portfolio-item .label { opacity: 1; transform: translateY(0); }
}

/* ================ LOADING SPLASH ================ */
.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.7s ease, visibility 0.7s ease;
}
.loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-bg {
  position: absolute;
  inset: 0;
  background: url("../images/loading.jpg") center/cover no-repeat, var(--bg);
  filter: blur(10px) brightness(1.05);
  transform: scale(1.06);
  z-index: -2;
}
.loader::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(253,246,243,0.85) 0%, rgba(251,233,228,0.7) 100%);
  z-index: -1;
}
.loader-content {
  text-align: center;
  animation: loader-rise 0.8s cubic-bezier(.2,.7,.3,1) both;
}
.loader-brand {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4rem);
  letter-spacing: 0.14em;
  color: var(--gold-600);
  text-transform: uppercase;
  margin-bottom: 8px;
  line-height: 1;
}
.loader-brand span {
  font-family: var(--font-script);
  font-size: 0.5em;
  text-transform: none;
  margin-left: 0;
  color: var(--gold-500);
  letter-spacing: 0.02em;
  display: block;
  margin-top: 8px;
}
.loader-tag {
  font-size: 0.78rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-top: 18px;
  opacity: 0.85;
}
.loader-bar {
  width: 220px;
  height: 2px;
  background: rgba(184, 146, 74, 0.2);
  margin: 24px auto 0;
  border-radius: 2px;
  overflow: hidden;
}
.loader-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--gold-400), var(--gold-600), var(--gold-400));
  background-size: 200% 100%;
  animation: loader-progress 1.6s ease-out forwards, loader-shimmer 1.4s linear infinite;
}
@keyframes loader-progress {
  0%   { width: 0; }
  60%  { width: 80%; }
  100% { width: 100%; }
}
@keyframes loader-shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
@keyframes loader-rise {
  0%   { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* ================ GLOBAL GOLD SPARKLES ================ */
.sparkle-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 50;
  overflow: hidden;
}
.sparkle {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: radial-gradient(circle, #f5e1b3 0%, #d4af6a 30%, transparent 70%);
  box-shadow: 0 0 8px rgba(212, 175, 106, 0.7);
  opacity: 0;
  animation: sparkle-twinkle 6s ease-in-out infinite;
}
.sparkle::before, .sparkle::after {
  content: "";
  position: absolute;
  background: linear-gradient(transparent, rgba(245, 225, 179, 0.9), transparent);
  top: 50%; left: 50%;
}
.sparkle::before {
  width: 1px;
  height: 16px;
  transform: translate(-50%, -50%);
}
.sparkle::after {
  width: 16px;
  height: 1px;
  transform: translate(-50%, -50%);
}
.sparkle:nth-child(1)  { top: 8%;  left: 5%;  animation-delay: 0s;   animation-duration: 5s; }
.sparkle:nth-child(2)  { top: 22%; left: 88%; animation-delay: 0.7s; animation-duration: 7s; }
.sparkle:nth-child(3)  { top: 35%; left: 12%; animation-delay: 1.5s; animation-duration: 6s; }
.sparkle:nth-child(4)  { top: 50%; left: 75%; animation-delay: 2.2s; animation-duration: 8s; }
.sparkle:nth-child(5)  { top: 65%; left: 30%; animation-delay: 0.3s; animation-duration: 5.5s; }
.sparkle:nth-child(6)  { top: 78%; left: 92%; animation-delay: 1.9s; animation-duration: 6.5s; }
.sparkle:nth-child(7)  { top: 92%; left: 18%; animation-delay: 3.1s; animation-duration: 7.5s; }
.sparkle:nth-child(8)  { top: 15%; left: 55%; animation-delay: 2.7s; animation-duration: 6s; }
.sparkle:nth-child(9)  { top: 45%; left: 45%; animation-delay: 4s;   animation-duration: 5s; }
.sparkle:nth-child(10) { top: 70%; left: 60%; animation-delay: 1.2s; animation-duration: 7s; }
.sparkle:nth-child(11) { top: 5%;  left: 70%; animation-delay: 3.6s; animation-duration: 6s; }
.sparkle:nth-child(12) { top: 28%; left: 38%; animation-delay: 0.9s; animation-duration: 8s; }
.sparkle:nth-child(13) { top: 58%; left: 8%;  animation-delay: 2.4s; animation-duration: 5.5s; }
.sparkle:nth-child(14) { top: 88%; left: 50%; animation-delay: 1.7s; animation-duration: 7s; }
.sparkle:nth-child(15) { top: 40%; left: 95%; animation-delay: 3.3s; animation-duration: 6s; }
.sparkle:nth-child(16) { top: 12%; left: 25%; animation-delay: 4.5s; animation-duration: 5s; }
.sparkle:nth-child(17) { top: 75%; left: 78%; animation-delay: 2.0s; animation-duration: 8s; }
.sparkle:nth-child(18) { top: 55%; left: 22%; animation-delay: 0.5s; animation-duration: 6.5s; }
@keyframes sparkle-twinkle {
  0%, 100% { opacity: 0; transform: scale(0.5) rotate(0deg); }
  20%      { opacity: 0; }
  35%      { opacity: 0.95; transform: scale(1) rotate(60deg); }
  45%      { opacity: 0.6; transform: scale(0.85) rotate(120deg); }
  55%      { opacity: 1; transform: scale(1.1) rotate(180deg); }
  70%      { opacity: 0; transform: scale(0.7) rotate(240deg); }
}

/* ================ WHATSAPP FLOATING BUTTON ================ */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 32px -8px rgba(37, 211, 102, 0.55), 0 4px 12px rgba(0,0,0,0.15);
  z-index: 999;
  text-decoration: none;
  transition: transform 0.3s cubic-bezier(.2,.7,.3,1), box-shadow 0.3s;
  animation: wa-pulse 2.4s ease-in-out infinite;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 18px 40px -8px rgba(37, 211, 102, 0.7);
  color: #fff;
}
.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}
.whatsapp-float .wa-tooltip {
  position: absolute;
  right: 72px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--ink-900);
  color: #fff;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.82rem;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.whatsapp-float .wa-tooltip::after {
  content: "";
  position: absolute;
  right: -5px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 10px; height: 10px;
  background: var(--ink-900);
}
.whatsapp-float:hover .wa-tooltip {
  opacity: 1;
}
@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 12px 32px -8px rgba(37,211,102,0.55), 0 0 0 0 rgba(37,211,102,0.5); }
  50%      { box-shadow: 0 12px 32px -8px rgba(37,211,102,0.55), 0 0 0 14px rgba(37,211,102,0); }
}

/* Honor reduced-motion preference */
@media (prefers-reduced-motion: reduce) {
  .hero::before { animation: none; }
  .particle, .whatsapp-float { animation: none; }
  .reveal, .reveal-stagger > * { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

@media (max-width: 600px) {
  .carousel-arrow { display: none; }
  .portfolio-item { width: 78vw; }
  .whatsapp-float { width: 54px; height: 54px; bottom: 18px; right: 18px; }
  .whatsapp-float svg { width: 28px; height: 28px; }
  .whatsapp-float .wa-tooltip { display: none; }
  /* Tighter urgency bar on small phones */
  .urgency-inner { font-size: 0.7rem; padding: 7px 12px; gap: 8px; }
  .urgency-cta { font-size: 0.7rem; }
}
@media (max-width: 400px) {
  /* Hide the dot at very narrow widths to free up horizontal space */
  .urgency-dot { display: none; }
  .urgency-inner { font-size: 0.66rem; padding: 7px 10px; gap: 6px; }
}

/* ================ PHASE 1 SHARED PAGE STYLES ================ */
.page-hero {
  padding: 180px 24px 90px;
  background: linear-gradient(135deg, var(--pink-50) 0%, var(--bg) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top, rgba(212,175,106,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  margin-bottom: 20px;
  position: relative;
}
.page-hero h1 em {
  font-style: italic;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.page-hero-lead {
  font-size: 1.1rem;
  color: var(--ink-700);
  max-width: 720px;
  margin: 0 auto 28px;
  line-height: 1.75;
  position: relative;
}
.page-hero-lead a { color: var(--gold-600); text-decoration: underline; text-underline-offset: 3px; }

.section-tinted {
  background: linear-gradient(180deg, var(--bg) 0%, var(--pink-50) 100%);
}
.container.narrow {
  max-width: 820px;
}
.prose-lead {
  font-size: 1.1rem;
  color: var(--ink-700);
  line-height: 1.8;
  margin-bottom: 24px;
}
.prose {
  font-size: 1rem;
  color: var(--ink-700);
  line-height: 1.85;
}
.prose em {
  font-style: italic;
  color: var(--gold-600);
  font-weight: 500;
}

/* Services deep grid */
.services-grid-deep {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.service-deep-card {
  background: rgba(255,255,255,0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(245,208,200,0.6);
  border-radius: 18px;
  padding: 36px 30px;
  box-shadow: 0 8px 24px -8px rgba(140,109,49,0.12);
  transition: transform 0.4s cubic-bezier(.2,.7,.3,1), box-shadow 0.4s;
  display: flex;
  flex-direction: column;
}
.service-deep-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 44px -16px rgba(140,109,49,0.25);
}
.service-deep-card .service-icon {
  font-size: 2rem;
  margin-bottom: 10px;
}
.service-deep-card h3 {
  font-size: 1.4rem;
  margin: 0 0 8px;
  color: var(--ink-900);
}
.svc-price {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--gold-600);
  margin: 0 0 14px;
  letter-spacing: 0.06em;
}
.svc-price strong { font-weight: 600; }
.service-deep-card > p {
  color: var(--ink-700);
  line-height: 1.7;
  font-size: 0.95rem;
  margin: 0 0 12px;
}
.svc-best-for {
  font-size: 0.85rem !important;
  color: var(--ink-500) !important;
  padding: 12px 0 16px !important;
  border-top: 1px solid var(--pink-100);
}
.svc-best-for strong { color: var(--ink-700); }
.service-deep-card .area-cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gold-600);
  font-weight: 500;
  text-decoration: none;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
}
.service-deep-card .area-cta:hover { text-decoration: underline; }

/* FAQ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 32px;
}
.faq-item {
  background: rgba(255,255,255,0.8);
  border: 1px solid rgba(245,208,200,0.6);
  border-radius: 14px;
  padding: 0;
  transition: box-shadow 0.3s ease;
  overflow: hidden;
}
.faq-item:hover { box-shadow: 0 10px 28px -10px rgba(140,109,49,0.18); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 28px;
  font-family: var(--font-display);
  font-size: 1.18rem;
  color: var(--ink-900);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-toggle {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--gold-500);
  font-size: 1.4rem;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.faq-item[open] .faq-toggle { transform: rotate(45deg); }
.faq-answer {
  padding: 0 28px 24px;
  color: var(--ink-700);
  line-height: 1.75;
  font-size: 0.97rem;
}

/* Book paths */
.book-paths {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 32px;
}
.book-path-card {
  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(245,208,200,0.6);
  border-radius: 18px;
  padding: 40px 32px;
  text-align: center;
  box-shadow: 0 8px 24px -8px rgba(140,109,49,0.12);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.book-path-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 44px -16px rgba(140,109,49,0.25);
}
.book-path-card.featured-path {
  background: linear-gradient(180deg, var(--ink-900) 0%, #2a2018 100%);
  color: var(--white);
  border-color: rgba(212,175,106,0.4);
}
.book-path-card.featured-path h3,
.book-path-card.featured-path p { color: var(--white); }
.book-path-card.featured-path p { color: rgba(255,255,255,0.78); }
.book-path-icon {
  font-size: 2.4rem;
  margin-bottom: 14px;
}
.book-path-card h3 {
  font-size: 1.4rem;
  margin: 0 0 12px;
}
.book-path-card p {
  color: var(--ink-700);
  line-height: 1.7;
  margin-bottom: 22px;
  font-size: 0.96rem;
}

/* Portfolio deep grid */
.portfolio-deep-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  margin-top: 32px;
}
.portfolio-deep-item {
  margin: 0;
  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(245,208,200,0.6);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 24px -8px rgba(140,109,49,0.15);
  transition: transform 0.4s cubic-bezier(.2,.7,.3,1), box-shadow 0.4s;
}
.portfolio-deep-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 44px -16px rgba(140,109,49,0.28);
}
.portfolio-deep-item img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
}
.portfolio-deep-item figcaption {
  padding: 22px 24px 26px;
}
.portfolio-deep-item h3 {
  font-size: 1.2rem;
  margin: 0 0 10px;
  color: var(--ink-900);
}
.portfolio-deep-item p {
  font-size: 0.92rem;
  color: var(--ink-700);
  line-height: 1.65;
  margin: 0;
}

/* Testimonials stack */
.testimonials-stack {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 32px;
}
.testimonial-quote {
  background: rgba(255,255,255,0.85);
  border-left: 3px solid var(--gold-500);
  border-radius: 10px;
  padding: 28px 32px;
  margin: 0;
  box-shadow: 0 4px 16px -8px rgba(140,109,49,0.15);
}
.testimonial-quote p {
  color: var(--ink-900);
  font-family: var(--font-display);
  font-size: 1.1rem;
  line-height: 1.7;
  font-style: italic;
  margin: 0 0 14px;
}
.testimonial-quote cite {
  font-style: normal;
  font-size: 0.85rem;
  color: var(--ink-500);
  letter-spacing: 0.04em;
}

/* Contact form on light background */
.contact-info-light div .label {
  color: var(--ink-500);
}
.contact-info-light div a {
  color: var(--ink-900);
}
.contact-info-light div a:hover { color: var(--gold-600); }
.socials-dark a {
  color: var(--ink-700);
  background: rgba(0,0,0,0.04);
}
.socials-dark a:hover {
  color: var(--white);
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
}
.contact-form-light {
  background: rgba(255,255,255,0.9);
}
.contact-form-light label { color: var(--ink-900); }
.contact-form-light input,
.contact-form-light textarea,
.contact-form-light select {
  background: var(--white);
  color: var(--ink-900);
  border-color: rgba(212,175,106,0.3);
}
.contact-form-light input::placeholder,
.contact-form-light textarea::placeholder { color: rgba(0,0,0,0.35); }

/* Footer extra links */
.footer-links {
  margin-top: 16px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.04em;
}
.footer-links a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  margin: 0 4px;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold-400); }

/* ================ DEEP SERVICE PAGES ================ */
.service-page-hero h1 em {
  font-style: italic;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.service-content h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin: 48px 0 18px;
  color: var(--ink-900);
}
.service-content h2:first-child { margin-top: 0; }
.service-content p {
  font-size: 1.02rem;
  color: var(--ink-700);
  line-height: 1.85;
  margin-bottom: 18px;
}
.service-content p strong {
  color: var(--ink-900);
  font-weight: 600;
}
.service-content p em {
  font-style: italic;
  color: var(--gold-600);
  font-weight: 500;
}
.service-content a {
  color: var(--gold-600);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 500;
}
.service-content a:hover { color: var(--ink-900); }

/* Process list (numbered ordered list) */
.process-list {
  list-style: none;
  counter-reset: process;
  padding: 0;
  margin: 32px 0 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.process-list li {
  counter-increment: process;
  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(245,208,200,0.6);
  border-radius: 14px;
  padding: 24px 28px 24px 78px;
  position: relative;
  color: var(--ink-700);
  line-height: 1.7;
  font-size: 0.97rem;
  box-shadow: 0 4px 14px -8px rgba(140,109,49,0.12);
}
.process-list li::before {
  content: counter(process);
  position: absolute;
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  box-shadow: 0 4px 12px -4px rgba(184, 146, 74, 0.4);
}
.process-list li strong { color: var(--ink-900); font-weight: 600; }
.process-list li a { color: var(--gold-600); text-decoration: underline; text-underline-offset: 3px; }

/* Best-for list */
.best-for-list {
  list-style: none;
  padding: 0;
  margin: 32px 0 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 14px;
}
.best-for-list li {
  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(245,208,200,0.6);
  border-radius: 12px;
  padding: 18px 22px 18px 50px;
  position: relative;
  color: var(--ink-700);
  font-size: 0.95rem;
  line-height: 1.6;
}
.best-for-list li::before {
  content: "✦";
  position: absolute;
  left: 22px;
  top: 18px;
  color: var(--gold-500);
  font-size: 1.05rem;
}

/* Related services grid */
.related-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  margin-top: 32px;
}
.related-service-card {
  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(245,208,200,0.6);
  border-radius: 14px;
  padding: 26px 24px;
  text-decoration: none;
  color: var(--ink-900);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
}
.related-service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px -16px rgba(140,109,49,0.25);
  border-color: rgba(212,175,106,0.5);
}
.related-service-card h3 {
  font-size: 1.15rem;
  margin: 0 0 8px;
  color: var(--ink-900);
}
.related-service-card p {
  font-size: 0.9rem;
  color: var(--ink-700);
  line-height: 1.6;
  margin: 0 0 14px;
  flex: 1;
}
.related-arrow {
  color: var(--gold-600);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.svc-link-row {
  margin-top: auto;
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

/* ================ NAV DROPDOWN ================ */
.nav-links .has-dropdown {
  position: relative;
}
.nav-links .has-dropdown > a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.nav-links .dd-arrow {
  font-size: 0.7em;
  color: var(--gold-500);
  transition: transform 0.2s ease;
}
.nav-links .has-dropdown:hover .dd-arrow,
.nav-links .has-dropdown:focus-within .dd-arrow { transform: rotate(180deg); }
.nav-links .dropdown {
  position: absolute;
  top: 100%;
  left: -16px;
  min-width: 240px;
  background: rgba(255, 250, 247, 0.98);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(212, 175, 106, 0.2);
  border-radius: 12px;
  padding: 12px 0;
  margin: 0;
  list-style: none;
  box-shadow: 0 14px 40px -12px rgba(140, 109, 49, 0.25);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
  z-index: 110;
}
.nav-links .has-dropdown:hover .dropdown,
.nav-links .has-dropdown:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-links .dropdown li {
  list-style: none;
  display: block;
}
.nav-links .dropdown a {
  display: block;
  padding: 10px 22px;
  font-size: 0.9rem;
  color: var(--ink-700);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: background 0.2s, color 0.2s;
}
.nav-links .dropdown a:hover {
  background: rgba(212, 175, 106, 0.08);
  color: var(--gold-600);
}

/* Mobile: dropdown becomes inline expanded list */
@media (max-width: 880px) {
  .nav-links .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: 0;
    border-left: 2px solid rgba(212, 175, 106, 0.25);
    border-radius: 0;
    margin-left: 12px;
    padding: 4px 0 4px 14px;
    background: transparent;
  }
  .nav-links .dropdown a { padding: 6px 0; font-size: 0.88rem; }
  .nav-links .dd-arrow { display: none; }
}

@media (max-width: 880px) {
  .nav-links.open .has-dropdown { width: 100%; }
  .nav-links.open .has-dropdown > a { width: 100%; }
}

/* ================ FAIL-SAFE: ensure .reveal content shows if JS doesn't run ================ */
/* If JS hasn't run within 3s, force-show all reveals so users never see permanently-blank sections */
@keyframes _reveal-fallback-show { to { opacity: 1; transform: none; } }
.reveal:not(.in) {
  animation: _reveal-fallback-show 0.6s ease-out 3s forwards;
}
.reveal-stagger:not(.in) > * {
  animation: _reveal-fallback-show 0.6s ease-out 3s forwards;
}
@media (prefers-reduced-motion: reduce) {
  .reveal:not(.in), .reveal-stagger:not(.in) > * {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }
}

/* ================ INSTAGRAM FEED SECTION ================ */
.instagram-section {
  background: linear-gradient(180deg, var(--bg) 0%, var(--pink-50) 100%);
}
.instagram-feed {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  min-height: 220px;
}
/* Behold widget styling — applies once Behold loads, otherwise fallback shows */
.instagram-feed behold-widget {
  display: block;
  border-radius: 18px;
  overflow: hidden;
}

/* Fallback grid that shows when Behold isn't configured or widget fails */
.instagram-fallback {
  /* Show by default; hidden when Behold widget successfully renders */
  display: block;
}
.instagram-feed behold-widget:not(:empty) ~ .instagram-fallback {
  display: none;
}
.ig-fallback-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}
.ig-fallback-tile {
  aspect-ratio: 1 / 1;
  background: linear-gradient(135deg, var(--pink-50), var(--white));
  border: 1px solid rgba(245, 208, 200, 0.6);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-decoration: none;
  color: var(--ink-900);
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.04em;
  transition: transform 0.4s cubic-bezier(.2,.7,.3,1), box-shadow 0.4s;
  box-shadow: 0 8px 22px -10px rgba(140, 109, 49, 0.15);
}
.ig-fallback-tile:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 44px -16px rgba(140, 109, 49, 0.28);
  border-color: rgba(212, 175, 106, 0.5);
}
.ig-fallback-icon {
  font-size: 2.2rem;
  filter: grayscale(0.1);
}

/* ================ WHY BRIDES CHOOSE BLOSSOM (homepage) ================ */
.why-blossom-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 16px;
}
.why-blossom-card {
  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(245,208,200,0.6);
  border-radius: 18px;
  padding: 32px 28px;
  box-shadow: 0 8px 24px -8px rgba(140,109,49,0.12);
  transition: transform 0.4s cubic-bezier(.2,.7,.3,1), box-shadow 0.4s;
}
.why-blossom-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 44px -16px rgba(140,109,49,0.25);
}
.why-blossom-card .why-icon {
  font-size: 1.8rem;
  margin-bottom: 12px;
}
.why-blossom-card h3 {
  font-size: 1.2rem;
  margin: 0 0 12px;
  color: var(--ink-900);
  line-height: 1.35;
}
.why-blossom-card p {
  color: var(--ink-700);
  line-height: 1.7;
  font-size: 0.96rem;
  margin: 0;
}
.why-blossom-card a {
  color: var(--gold-600);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 500;
}
.why-blossom-card a:hover { color: var(--ink-900); }
.why-blossom-footnote {
  text-align: center;
  margin-top: 48px;
  color: var(--ink-700);
  font-size: 1rem;
  line-height: 1.7;
}
.why-blossom-footnote a {
  color: var(--gold-600);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 500;
}

/* ================ BLOG ================ */
.blog-post-hero {
  padding-bottom: 40px;
}
.blog-meta {
  font-size: 0.85rem;
  color: var(--ink-500);
  letter-spacing: 0.06em;
  margin-top: 8px;
}
.blog-article {
  padding-top: 40px;
}
.blog-intro {
  font-size: 1.15rem;
  color: var(--ink-700);
  line-height: 1.85;
  font-style: italic;
  border-left: 3px solid var(--gold-500);
  padding-left: 24px;
  margin: 0 0 40px;
}
.blog-takeaways {
  background: linear-gradient(135deg, var(--pink-50), rgba(255,255,255,0.7));
  border: 1px solid rgba(212, 175, 106, 0.35);
  border-radius: 18px;
  padding: 32px 36px;
  margin: 56px 0;
  box-shadow: 0 8px 22px -10px rgba(140, 109, 49, 0.18);
}
.blog-takeaways h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin: 0 0 16px;
  color: var(--ink-900);
}
.blog-takeaways h3::before {
  content: "✦ ";
  color: var(--gold-500);
}
.blog-takeaways ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.blog-takeaways li {
  padding: 10px 0 10px 26px;
  position: relative;
  color: var(--ink-700);
  line-height: 1.6;
  font-size: 0.95rem;
  border-bottom: 1px dashed rgba(212, 175, 106, 0.25);
}
.blog-takeaways li:last-child { border-bottom: 0; }
.blog-takeaways li::before {
  content: "→";
  position: absolute;
  left: 0;
  top: 10px;
  color: var(--gold-500);
  font-weight: 600;
}
.blog-inline-cta {
  background: linear-gradient(135deg, var(--ink-900), #2a2018);
  color: var(--white);
  border-radius: 18px;
  padding: 40px 36px;
  margin: 56px 0;
  text-align: center;
  box-shadow: 0 16px 36px -12px rgba(0, 0, 0, 0.35);
}
.blog-inline-cta p {
  color: rgba(255,255,255,0.88) !important;
  font-size: 1.05rem !important;
  line-height: 1.7 !important;
  margin: 0 !important;
  max-width: 640px;
  margin: 0 auto !important;
}

/* Blog index grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}
.blog-card {
  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(245,208,200,0.6);
  border-radius: 18px;
  padding: 32px 30px;
  box-shadow: 0 8px 24px -8px rgba(140,109,49,0.12);
  display: flex;
  flex-direction: column;
  transition: transform 0.4s cubic-bezier(.2,.7,.3,1), box-shadow 0.4s;
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 44px -16px rgba(140,109,49,0.25);
}
.blog-card-category {
  display: inline-block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold-600);
  margin-bottom: 14px;
  font-weight: 600;
}
.blog-card h2 {
  font-size: 1.3rem;
  margin: 0 0 14px;
  line-height: 1.35;
}
.blog-card h2 a {
  color: var(--ink-900);
  text-decoration: none;
  transition: color 0.2s;
}
.blog-card h2 a:hover { color: var(--gold-600); }
.blog-card-excerpt {
  color: var(--ink-700);
  line-height: 1.65;
  font-size: 0.95rem;
  margin: 0 0 18px;
  flex: 1;
}
.blog-card-meta {
  font-size: 0.78rem;
  color: var(--ink-500);
  letter-spacing: 0.04em;
  margin: 0 0 14px;
}
.blog-card .area-cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gold-600);
  font-weight: 500;
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
}
.blog-card .area-cta:hover { text-decoration: underline; }

/* Dropdown divider for separating section in nav */
.nav-links .dropdown li.dropdown-divider {
  padding: 0;
  margin: 6px 0;
  border-top: 1px solid rgba(212, 175, 106, 0.18);
}
.nav-links .dropdown li.dropdown-divider::before { content: ""; }

/* ================ LUXURY ACCORDION (homepage minimalist) ================ */
.luxury-accordion {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 16px;
}
.lx-acc {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(212, 175, 106, 0.28);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s, background 0.3s;
}
.lx-acc:hover {
  border-color: rgba(212, 175, 106, 0.55);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 8px 22px -10px rgba(140, 109, 49, 0.18);
}
.lx-acc[open] {
  background: rgba(255, 255, 255, 1);
  border-color: rgba(212, 175, 106, 0.55);
  box-shadow: 0 12px 32px -14px rgba(140, 109, 49, 0.22);
}
.lx-acc summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 26px;
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--font-display);
  font-size: 1.08rem;
  color: var(--ink-900);
  transition: color 0.2s;
  user-select: none;
}
.lx-acc summary::-webkit-details-marker { display: none; }
.lx-acc summary::marker { display: none; }
.lx-acc-icon {
  font-size: 1.25rem;
  flex-shrink: 0;
  width: 32px;
  text-align: center;
}
.lx-acc-title {
  flex: 1;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.35;
}
.lx-acc-toggle {
  flex-shrink: 0;
  font-family: var(--font-body);
  font-size: 1.5rem;
  color: var(--gold-600);
  font-weight: 300;
  width: 28px;
  text-align: center;
  transition: transform 0.3s ease, color 0.2s;
}
.lx-acc[open] .lx-acc-toggle {
  transform: rotate(45deg);
  color: var(--ink-900);
}
.lx-acc-body {
  padding: 0 26px 24px 74px;
  animation: lx-acc-fade 0.4s ease-out;
}
.lx-acc-body p {
  color: var(--ink-700);
  line-height: 1.75;
  font-size: 0.96rem;
  margin: 0 0 14px;
}
.lx-acc-body p:last-child { margin-bottom: 0; }
.lx-acc-body a {
  color: var(--gold-600);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 500;
}
.lx-acc-body a:hover { color: var(--ink-900); }
@keyframes lx-acc-fade {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (max-width: 600px) {
  .lx-acc summary { padding: 18px 20px; font-size: 1rem; gap: 12px; }
  .lx-acc-icon { font-size: 1.1rem; width: 26px; }
  .lx-acc-body { padding: 0 20px 20px 58px; }
  .lx-acc-body p { font-size: 0.93rem; }
}
