/* =============================================================================
   Chai Met Bagel — Static site styles
   Brand palette:
     • Coffee  #4A2C1D   • Gold      #C89B5A
     • Cream   #F5EFE6   • Chocolate #2B1A12
     • Noir    #14110F   • Ivory     #FAF6EE
   Typography:
     • Display: Playfair Display    • Body: Inter
     • Serif:   Cormorant Garamond  • Script: Great Vibes
   ============================================================================= */

:root {
  --color-coffee:     #4A2C1D;
  --color-coffee-700: #3a2417;
  --color-coffee-300: #87614a;
  --color-gold:       #C89B5A;
  --color-gold-300:   #d8b683;
  --color-gold-400:   #cfa86d;
  --color-gold-500:   #C89B5A;
  --color-gold-600:   #a87a2e;
  --color-cream:      #F5EFE6;
  --color-cream-50:   #faf6ed;
  --color-chocolate:  #2B1A12;
  --color-noir-900:   #1a1411;
  --color-noir-950:   #14110F;
  --color-ivory-50:   #FAF6EE;
  --color-rose-300:   #fda4af;

  --color-gold-soft:   rgba(200, 155, 90, 0.35);
  --color-coffee-soft: rgba(74, 44, 29, 0.18);

  --ease-luxe: cubic-bezier(0.16, 1, 0.3, 1);

  --tracking-brand: 0.32em;

  --shadow-luxe:        0 30px 80px -20px rgba(0,0,0,0.55), 0 8px 24px -8px rgba(0,0,0,0.35);
  --shadow-soft:        0 8px 28px -10px rgba(43,26,18,0.20);
  --shadow-gold-glow:   0 10px 40px -8px rgba(200,155,90,0.45);
  --shadow-coffee-glow: 0 10px 40px -8px rgba(74,44,29,0.45);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scrollbar-color: var(--color-gold) #ede3d2;
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-feature-settings: 'ss01', 'cv11', 'kern';
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: var(--color-noir-950);
  color: var(--color-ivory-50);
  overflow-x: hidden;
}

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

h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin: 0;
}

p { margin: 0; }

a { color: inherit; text-decoration: none; }

::selection { background: var(--color-gold-soft); color: var(--color-coffee); }

::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: #ede3d2; }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--color-coffee), var(--color-gold));
  border-radius: 10px;
}

:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 3px;
  border-radius: 4px;
}

@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;
  }
}

/* ------------- TYPOGRAPHY HELPERS ------------- */
.font-display { font-family: 'Playfair Display', Georgia, serif; }
.font-serif   { font-family: 'Cormorant Garamond', Georgia, serif; }
.font-script  { font-family: 'Great Vibes', cursive; }
.font-sans    { font-family: 'Inter', system-ui, sans-serif; }

.tracking-brand { letter-spacing: var(--tracking-brand); }
.tracking-wide  { letter-spacing: 0.18em; }

.text-display-lg { font-size: clamp(1.65rem, 5.5vw, 4.4rem); line-height: 1.04; }
.text-display-md { font-size: clamp(1.4rem,  4vw,   3.2rem); line-height: 1.08; }
.text-display-xl { font-size: clamp(1.75rem, 7vw,   6rem);   line-height: 0.98; }

.text-gradient-gold {
  background: linear-gradient(135deg, #d8b683 0%, #C89B5A 50%, #8a6324 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.text-gradient-coffee {
  background: linear-gradient(135deg, #4A2C1D 0%, #2B1A12 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

.italic { font-style: italic; }

/* ------------- BACKGROUND HELPERS ------------- */
.bg-noir-950   { background: var(--color-noir-950); }
.bg-noir-900   { background: var(--color-noir-900); }
.bg-coffee     { background: var(--color-coffee); }
.bg-cream      { background: var(--color-cream); }
.text-cream    { color: var(--color-cream); }
.text-ivory    { color: var(--color-ivory-50); }
.text-coffee   { color: var(--color-coffee); }
.text-gold     { color: var(--color-gold); }
.text-muted    { color: rgba(250, 246, 238, 0.65); }
.text-faint    { color: rgba(250, 246, 238, 0.45); }

.bg-gradient-radial-gold {
  background: radial-gradient(ellipse at center, rgba(200,155,90,0.22) 0%, transparent 70%);
}

/* ------------- LAYOUT HELPERS ------------- */
.section    { padding-top: clamp(4rem, 8vw, 8rem); padding-bottom: clamp(4rem, 8vw, 8rem); }
.section-sm { padding-top: 3.5rem; padding-bottom: 3.5rem; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: var(--tracking-brand);
  color: var(--color-gold-400);
}
.eyebrow::before {
  content: '';
  display: inline-block;
  width: 2.5rem;
  height: 1px;
  background: rgba(200,155,90,0.7);
}

.divider-gold {
  position: relative;
  width: 6rem;
  height: 1px;
  background: rgba(200,155,90,0.6);
  margin: 1.25rem auto;
}

/* ------------- BUTTONS ------------- */
.btn-luxe {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.95rem 2.4rem;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: var(--tracking-brand);
  font-weight: 500;
  border: none;
  cursor: pointer;
  background: linear-gradient(135deg, #d8b683 0%, #C89B5A 50%, #8a6324 100%);
  color: var(--color-ivory-50);
  transition: transform 0.5s var(--ease-luxe), box-shadow 0.5s var(--ease-luxe), background 0.5s;
}
.btn-luxe:hover { transform: translateY(-2px); box-shadow: var(--shadow-gold-glow); color: #fff; }
.btn-luxe:disabled { opacity: 0.5; pointer-events: none; }

.btn-ghost {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.85rem;
  padding: 0.95rem 2.4rem;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: var(--tracking-brand);
  font-weight: 500;
  border: 1px solid rgba(200,155,90,0.6);
  background: transparent;
  color: var(--color-gold-400);
  cursor: pointer;
  transition: background 0.5s, color 0.5s, border-color 0.5s;
}
.btn-ghost:hover { background: var(--color-gold); color: var(--color-ivory-50); border-color: var(--color-gold); }

.btn-back {
  background: none; border: none; cursor: pointer;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: var(--tracking-brand);
  color: rgba(250,246,238,0.6);
  transition: color 0.3s;
}
.btn-back:hover { color: var(--color-gold-400); }
.btn-back:disabled { opacity: 0.3; cursor: not-allowed; }

/* ------------- NAVBAR ------------- */
.cmb-nav {
  position: sticky;
  top: 0;
  z-index: 1050;
  background: rgba(245, 239, 230, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(74,44,29,0.1);
  transition: padding 0.5s var(--ease-luxe), box-shadow 0.5s;
  padding: 1.25rem 0;
}
.cmb-nav.scrolled { padding: 0.65rem 0; box-shadow: var(--shadow-soft); }

.cmb-nav .logo-img {
  height: 2.5rem; width: auto; transition: transform 0.5s var(--ease-luxe);
}
.cmb-nav .navbar-brand:hover .logo-img { transform: scale(1.03); }
.cmb-nav .brand-tagline {
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: var(--tracking-brand);
  color: rgba(74,44,29,0.65);
  transition: color 0.3s;
}
.cmb-nav .navbar-brand:hover .brand-tagline { color: var(--color-gold); }

.cmb-nav .nav-link {
  position: relative;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: var(--tracking-brand);
  color: var(--color-coffee) !important;
  padding: 0.5rem 0 !important;
  margin: 0 1.25rem;
  transition: color 0.3s;
}
.cmb-nav .nav-link::after {
  content: ''; position: absolute; left: 0; bottom: -4px;
  height: 1px; width: 0; background: var(--color-gold);
  transition: width 0.5s var(--ease-luxe);
}
.cmb-nav .nav-link:hover, .cmb-nav .nav-link.active {
  color: var(--color-gold) !important;
}
.cmb-nav .nav-link:hover::after, .cmb-nav .nav-link.active::after { width: 100%; }

.cmb-nav .navbar-toggler {
  border: none; padding: 0.4rem;
  background: transparent;
}
.cmb-nav .navbar-toggler:focus { box-shadow: none; }
.cmb-nav .navbar-toggler-icon {
  background-image: none;
  width: 1.5rem; height: 2px;
  background: var(--color-coffee);
  position: relative; display: block;
}
.cmb-nav .navbar-toggler-icon::before,
.cmb-nav .navbar-toggler-icon::after {
  content: ''; position: absolute; left: 0;
  width: 100%; height: 2px; background: var(--color-coffee);
  transition: transform 0.3s, opacity 0.3s;
}
.cmb-nav .navbar-toggler-icon::before { top: -7px; }
.cmb-nav .navbar-toggler-icon::after  { top:  7px; }

@media (max-width: 991.98px) {
  .cmb-nav .navbar-collapse {
    background: var(--color-cream);
    border-top: 1px solid rgba(74,44,29,0.1);
    margin-top: 0.75rem;
    padding: 1.25rem 0;
  }
  .cmb-nav .nav-link {
    font-family: 'Playfair Display', serif;
    text-transform: none;
    letter-spacing: 0;
    font-size: 1.1rem;
    padding: 0.6rem 1.25rem !important;
    margin: 0;
  }
  .cmb-nav .nav-link::after { display: none; }
}

/* ------------- HERO ------------- */
.cmb-hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  width: 100%;
  overflow: hidden;
  /* Angular: bg-coffee-900 = #1A0F0A */
  background: #1A0F0A;
}
.cmb-hero .hero-media {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  will-change: transform;
}
.cmb-hero .hero-media img,
.cmb-hero .hero-media iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.02);
  border: 0;
}
/* Angular: bg-gradient-to-b from-coffee-900/70 via-coffee-900/20 to-coffee-900/85
   coffee-900 = #1A0F0A = rgb(26,15,10).  Tailwind stops: 0% / 50% / 100%. */
.cmb-hero .hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom,
    rgba(26,15,10,0.70) 0%,
    rgba(26,15,10,0.20) 50%,
    rgba(26,15,10,0.85) 100%);
  pointer-events: none;
}
/* Angular: bg-gradient-radial-gold opacity-70
   = radial-gradient(circle at 50% 0%, rgba(200,155,90,0.22), transparent 60%) */
.cmb-hero .hero-glow {
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(200,155,90,0.22), transparent 60%);
  opacity: 0.7;
  pointer-events: none;
}
.cmb-hero .hero-content {
  position: absolute; inset: 0; z-index: 2;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; padding: 1.5rem;
  pointer-events: none;
}
.cmb-hero .hero-content > * { pointer-events: auto; }
.cmb-hero .hero-eyebrow {
  position: absolute; top: 3rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.6rem;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.45em;
  color: var(--color-gold-300);
  opacity: 0.85;
  pointer-events: none;
}
.cmb-hero .hero-eyebrow .bar { width: 2.5rem; height: 1px; background: rgba(200,155,90,0.7); }
.cmb-hero h1 {
  font-size: clamp(1.75rem, 7vw, 6rem);
  line-height: 0.98;
  color: var(--color-cream-50);
  text-shadow: 0 4px 40px rgba(43,26,18,0.55);
  max-width: 60rem; margin: 0;
  opacity: 0;
}
.cmb-hero p.tagline {
  margin-top: 1.5rem;
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  color: rgba(250, 246, 238, 0.78);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  letter-spacing: 0.04em;
  opacity: 0;
}
.cmb-hero .hero-cta {
  margin-top: 2.5rem;
  opacity: 0;
}
/* Angular: border-gold-400/70 bg-coffee-900/25 backdrop-blur-sm
   hover: bg-gold-500 border-gold-500 text-coffee-900 */
.cmb-hero .hero-cta a {
  display: inline-flex; align-items: center; gap: 1rem;
  padding: 1rem 2.5rem;
  border: 1px solid rgba(168,122,46,0.70); /* gold-400/70 = #A87A2E */
  color: var(--color-cream-50);
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.72rem;
  background: rgba(26,15,10,0.25); /* coffee-900/25 */
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: all 0.5s var(--ease-luxe);
}
.cmb-hero .hero-cta a:hover {
  background: var(--color-gold-500); /* gold-500 = #C89B5A */
  color: #1A0F0A;                    /* coffee-900 */
  border-color: var(--color-gold-500);
}
.cmb-hero .hero-cta .arrow {
  transition: transform 0.5s var(--ease-luxe);
}
.cmb-hero .hero-cta a:hover .arrow { transform: translateX(0.5rem); }

.cmb-hero .scroll-cue {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.75rem;
  color: rgba(250,246,238,0.7);
  z-index: 2;
}
.cmb-hero .scroll-cue span:first-child {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.4em;
}
.cmb-hero .scroll-cue .line {
  width: 1px; height: 3.5rem;
  background: linear-gradient(to bottom, rgba(207,168,109,0.9), transparent);
  animation: scroll-float 2.4s ease-in-out infinite;
}
@keyframes scroll-float {
  0%, 100% { transform: translateY(0); opacity: 0.9; }
  50%      { transform: translateY(0.5rem); opacity: 0.4; }
}

/* ------------- YOUTUBE FACADE ------------- */
.yt-facade {
  position: relative; width: 100%; height: 100%;
  cursor: pointer;
  background: #000;
}
.yt-facade .yt-thumb {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover;
}
.yt-facade .yt-play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 84px; height: 84px;
  border-radius: 50%;
  background: rgba(200,155,90,0.92);
  display: grid; place-items: center;
  border: 2px solid rgba(255,255,255,0.85);
  box-shadow: 0 12px 40px rgba(0,0,0,0.45), 0 0 0 0 rgba(200,155,90,0.6);
  transition: transform 0.4s var(--ease-luxe), box-shadow 0.4s;
  cursor: pointer;
  z-index: 2;
}
.yt-facade:hover .yt-play { transform: translate(-50%, -50%) scale(1.08); box-shadow: 0 12px 40px rgba(0,0,0,0.55), 0 0 0 14px rgba(200,155,90,0.18); }
.yt-facade .yt-play::after {
  content: '';
  width: 0; height: 0;
  border-left: 22px solid #fff;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  margin-left: 5px;
}
.yt-facade .yt-play.small { width: 56px; height: 56px; }
.yt-facade .yt-play.small::after { border-left: 14px solid #fff; border-top: 9px solid transparent; border-bottom: 9px solid transparent; margin-left: 3px; }
.yt-facade iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0;
}

/* ------------- SCROLL STORY PANELS -------------
   Angular: .cmb-story = bg-coffee-900 (#1A0F0A) with one of three overlays:
     align-left   → bg-gradient-to-r from-coffee-900/75 via-coffee-900/30 to-transparent
     align-right  → bg-gradient-to-l from-coffee-900/75 via-coffee-900/30 to-transparent
     align-center → bg-gradient-to-b from-coffee-900/30 via-coffee-900/20 to-coffee-900/60
*/
.cmb-story {
  position: relative;
  min-height: 100svh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: #1A0F0A; /* coffee-900 */
}
.cmb-story .story-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  filter: saturate(0.95) contrast(1.02);
  will-change: transform;
}
.cmb-story .story-overlay {
  position: absolute; inset: 0;
  pointer-events: none;
}
.cmb-story.align-left .story-overlay {
  background: linear-gradient(to right,
    rgba(26,15,10,0.75) 0%,
    rgba(26,15,10,0.30) 50%,
    transparent          100%);
}
.cmb-story.align-right .story-overlay {
  background: linear-gradient(to left,
    rgba(26,15,10,0.75) 0%,
    rgba(26,15,10,0.30) 50%,
    transparent          100%);
}
.cmb-story.align-center .story-overlay {
  background: linear-gradient(to bottom,
    rgba(26,15,10,0.30) 0%,
    rgba(26,15,10,0.20) 50%,
    rgba(26,15,10,0.60) 100%);
}
.cmb-story .story-content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: clamp(3rem, 6vw, 6rem) 0;
}
.cmb-story .story-inner {
  max-width: 38rem;
  color: var(--color-cream-50);
}
.cmb-story.align-left   .story-content > .container > .story-inner { margin-right: auto; }
.cmb-story.align-right  .story-content > .container > .story-inner { margin-left: auto; }
.cmb-story.align-center .story-content > .container > .story-inner { margin: 0 auto; text-align: center; }

.cmb-story .chapter {
  font-family: 'Great Vibes', cursive;
  font-size: 2.4rem;
  background: linear-gradient(135deg, #d8b683, #C89B5A 50%, #8a6324);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  margin-bottom: 0.5rem;
}
.cmb-story h2 {
  font-size: clamp(1.4rem, 4.5vw, 2.6rem);
  line-height: 1.05;
  margin-bottom: 1.4rem;
}
.cmb-story h2 em { color: var(--color-gold-400); font-style: italic; }
.cmb-story p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  line-height: 1.6;
  color: rgba(250,246,238,0.78);
}

/* ------------- CINEMA SHOWCASE -------------
   Angular: section is bg-coffee-900.  Per-film overlay:
     bg-gradient-to-t from-coffee-900/90 via-coffee-900/10 to-coffee-900/40
   On hover the gradient weakens to:
     from-coffee-900/70 via-coffee-900/20 (to-coffee-900/40 retained)
*/
.cmb-cinema {
  background: #1A0F0A; /* coffee-900 */
  padding: clamp(4rem, 8vw, 7rem) 0;
  position: relative;
  overflow: hidden;
}
.cmb-cinema .film {
  position: relative;
  aspect-ratio: 21 / 9;
  overflow: hidden;
  margin-bottom: 1.25rem;
  border: 1px solid rgba(200,155,90,0.2);
  background: #000;
}
@media (min-width: 992px) {
  .cmb-cinema .film { margin-left: auto; margin-right: auto; }
}
.cmb-cinema .film .yt-facade { width: 100%; height: 100%; }

/* The Angular per-film coffee-veil — pseudo-element so it sits under the meta strip
   but above the thumbnail.  Tailwind stops: 0% / 50% / 100%. */
.cmb-cinema .film::before {
  content: '';
  position: absolute; inset: 0; z-index: 1;
  pointer-events: none;
  background: linear-gradient(to top,
    rgba(26,15,10,0.90) 0%,
    rgba(26,15,10,0.10) 50%,
    rgba(26,15,10,0.40) 100%);
  transition: background 0.7s var(--ease-luxe), opacity 0.7s var(--ease-luxe);
}
.cmb-cinema .film:hover::before {
  background: linear-gradient(to top,
    rgba(26,15,10,0.70) 0%,
    rgba(26,15,10,0.20) 50%,
    rgba(26,15,10,0.40) 100%);
}

.cmb-cinema .film .meta {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 1.5rem 2rem;
  z-index: 2;
  pointer-events: none;
  color: var(--color-cream-50);
}
.cmb-cinema .film .meta h3 {
  font-size: 1.6rem; margin-bottom: 0.2rem;
}
.cmb-cinema .film .meta .couple { font-style: italic; opacity: 0.78; font-family: 'Cormorant Garamond', serif; font-size: 1.05rem; }
.cmb-cinema .film .meta .duration {
  position: absolute; top: -2.6rem; right: 0;
  font-size: 0.65rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--color-gold-300);
  background: rgba(26,15,10,0.7); /* coffee-900/70 */
  padding: 0.35rem 0.75rem;
}

/* ------------- HORIZONTAL GALLERY ------------- */
.cmb-reel {
  background: var(--color-noir-900);
  padding: clamp(4rem, 8vw, 7rem) 0;
}
.cmb-reel .reel-track {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 1rem 0 2rem;
  -webkit-overflow-scrolling: touch;
}
.cmb-reel .reel-track::-webkit-scrollbar { height: 6px; }
.cmb-reel .reel-track::-webkit-scrollbar-thumb { background: rgba(200,155,90,0.6); }
.cmb-reel .reel-frame {
  flex: 0 0 auto;
  width: 65vw; max-width: 540px; aspect-ratio: 4 / 5;
  position: relative;
  scroll-snap-align: start;
  overflow: hidden;
  background: #000;
}
@media (min-width: 768px) { .cmb-reel .reel-frame { width: 28vw; } }
.cmb-reel .reel-frame img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s var(--ease-luxe);
}
.cmb-reel .reel-frame:hover img { transform: scale(1.04); }
.cmb-reel .reel-frame .caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 0.85rem 1rem;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  color: var(--color-cream-50);
  font-size: 0.95rem;
}

/* ------------- ALBUM MASONRY ------------- */
.cmb-album {
  background: var(--color-noir-950);
  padding: clamp(4rem, 8vw, 7rem) 0;
}
.cmb-album .masonry {
  column-count: 2;
  column-gap: 1rem;
}
@media (min-width: 768px) { .cmb-album .masonry { column-count: 3; column-gap: 1.25rem; } }
@media (min-width: 1200px) { .cmb-album .masonry { column-count: 4; column-gap: 1.5rem; } }
.cmb-album .masonry .frame {
  break-inside: avoid;
  margin-bottom: 1rem;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: #000;
}
.cmb-album .masonry .frame img {
  width: 100%; height: auto; display: block;
  transition: transform 0.9s var(--ease-luxe), filter 0.5s;
}
.cmb-album .masonry .frame:hover img { transform: scale(1.04); filter: saturate(1.1); }
.cmb-album .masonry .frame .caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 1rem;
  background: linear-gradient(to top, rgba(0,0,0,0.75), transparent);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--color-cream-50);
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.5s var(--ease-luxe);
}
.cmb-album .masonry .frame:hover .caption { opacity: 1; transform: translateY(0); }

/* ------------- LIGHTBOX ------------- */
.cmb-lightbox {
  position: fixed; inset: 0;
  background: rgba(20,17,15,0.96);
  z-index: 1100;
  display: none;
  align-items: center; justify-content: center;
  padding: 2rem;
}
.cmb-lightbox.open { display: flex; }
.cmb-lightbox img {
  max-width: 96vw; max-height: 92vh; object-fit: contain;
  box-shadow: var(--shadow-luxe);
}
.cmb-lightbox .close {
  position: absolute; top: 1.5rem; right: 1.5rem;
  width: 3rem; height: 3rem;
  background: transparent; border: 1px solid rgba(255,255,255,0.4);
  color: #fff; cursor: pointer;
  font-size: 1.5rem;
}
.cmb-lightbox .close:hover { background: var(--color-gold); border-color: var(--color-gold); }

/* ------------- TESTIMONIAL OVERLAY -------------
   Angular: section bg-coffee-900.  Image: scale-110 blur-[14px] opacity-80.
   Two stacked layers above the image:
     veil  → bg-gradient-to-b from-coffee-900/70 via-coffee-900/50 to-coffee-900/80
     glow  → bg-gradient-radial-gold opacity-60
*/
.cmb-testimonial {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: center;
  background: #1A0F0A; /* coffee-900 */
  overflow: hidden;
}
.cmb-testimonial .bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: blur(14px) saturate(0.95);
  transform: scale(1.10);
  opacity: 0.80;
}
.cmb-testimonial .veil {
  position: absolute; inset: 0;
  pointer-events: none;
  background: linear-gradient(to bottom,
    rgba(26,15,10,0.70) 0%,
    rgba(26,15,10,0.50) 50%,
    rgba(26,15,10,0.80) 100%);
}
.cmb-testimonial .glow {
  position: absolute; inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 50% 0%, rgba(200,155,90,0.22), transparent 60%);
  opacity: 0.6;
}
.cmb-testimonial .content {
  position: relative; z-index: 1;
  text-align: center;
  max-width: 56rem; margin: 0 auto;
  padding: 5rem 1.5rem;
  color: var(--color-cream-50);
}
.cmb-testimonial h2 {
  font-size: clamp(2rem, 5vw, 3.8rem);
  line-height: 1.1;
  margin-bottom: 2.5rem;
}
.cmb-testimonial blockquote {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: clamp(1.15rem, 2.4vw, 1.6rem);
  line-height: 1.55;
  color: rgba(250,246,238,0.92);
  margin: 0 0 1.5rem;
}
.cmb-testimonial .credit {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: var(--tracking-brand);
  color: var(--color-gold-400);
}

/* ------------- FINAL CTA ------------- */
.cmb-final-cta {
  position: relative;
  min-height: 90svh;
  display: flex; align-items: center; justify-content: center;
  background: #1A0F0A;
  overflow: hidden;
}
.cmb-final-cta .bg-media {
  position: absolute; inset: 0;
  opacity: 0.70;
}
.cmb-final-cta .bg-media .yt-facade { width: 100%; height: 100%; }
.cmb-final-cta .veil {
  position: absolute; inset: 0;
  pointer-events: none;
  background: linear-gradient(to bottom,
    rgba(26,15,10,0.85) 0%,
    rgba(26,15,10,0.70) 50%,
    rgba(26,15,10,1.0) 100%);
}
.cmb-final-cta .vignette {
  position: absolute; inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse at center,
    transparent 40%,
    rgba(26,15,10,0.9) 100%);
}
.cmb-final-cta .gold-line {
  position: absolute;
  left: 50%; transform: translateX(-50%);
  width: 6rem; height: 1px;
  background: rgba(212,168,107,0.7);
  pointer-events: none;
  z-index: 2;
}
.cmb-final-cta .gold-line.top { top: 2.5rem; }
.cmb-final-cta .gold-line.bottom { bottom: 2.5rem; }
.cmb-final-cta .content {
  position: relative; z-index: 3;
  text-align: center;
  max-width: 56rem; margin: 0 auto;
  padding: 4rem 1.5rem;
  color: var(--color-cream-50);
}
.cmb-final-cta h2 {
  font-size: clamp(2.2rem, 6vw, 4.5rem);
  line-height: 1; margin-bottom: 2rem;
}

/* ------------- FOOTER ------------- */
.cmb-footer {
  position: relative;
  border-top: 1px solid rgba(74,44,29,0.15);
  background: var(--color-cream);
  padding: 6rem 0 2.5rem;
  overflow: hidden;
  color: var(--color-coffee);
}
.cmb-footer .halo {
  position: absolute; top: -10rem; left: 50%; transform: translateX(-50%);
  width: 680px; height: 420px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(200,155,90,0.18) 0%, transparent 70%);
  filter: blur(20px);
  pointer-events: none;
}
.cmb-footer .logo-img { height: 4rem; width: auto; display: block; margin: 0 auto; }
.cmb-footer .tagline {
  font-family: 'Great Vibes', cursive;
  font-size: 1.85rem;
  background: linear-gradient(135deg, #d8b683, #C89B5A 50%, #8a6324);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  margin: 1.25rem 0 1rem;
  text-align: center;
}
.cmb-footer p.about-blurb {
  display: none;
}
.cmb-footer ul { list-style: none; padding: 0; margin: 0; }
.cmb-footer ul li { margin-bottom: 0.75rem; font-size: 0.92rem; color: rgba(74,44,29,0.82); }
.cmb-footer ul li a { transition: color 0.3s; }
.cmb-footer ul li a:hover { color: var(--color-gold-600); }
.cmb-footer .footer-bar {
  margin-top: 4rem; padding-top: 2rem;
  border-top: 1px solid rgba(74,44,29,0.15);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: var(--tracking-brand);
  color: rgba(74,44,29,0.48);
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
}

/* ------------- FORMS ------------- */
.label-luxe {
  display: block;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: var(--tracking-brand);
  color: rgba(250,246,238,0.7);
  margin-bottom: 0.5rem;
}
.input-luxe {
  width: 100%;
  background: transparent;
  border: 0; border-bottom: 1px solid rgba(74,44,29,0.45);
  border-bottom-color: rgba(250,246,238,0.25);
  padding: 0.75rem 0;
  color: var(--color-cream-50);
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.3s;
}
.input-luxe::placeholder { color: rgba(250,246,238,0.35); }
.input-luxe:focus {
  outline: none;
  border-bottom-color: var(--color-gold);
  box-shadow: none;
}
.input-luxe[type='date'] { color-scheme: dark; }
textarea.input-luxe { resize: none; }

.form-error { font-size: 0.72rem; color: rgba(253,164,175,0.85); margin-top: 0.4rem; }

/* ------------- PAGE LOADER ------------- */
.page-loader {
  position: fixed; inset: 0; z-index: 1200;
  background: #F5EFE6;
  display: grid; place-items: center;
  transition: opacity 0.7s ease;
}
.page-loader.hidden { opacity: 0; pointer-events: none; }
.page-loader .core {
  display: flex; flex-direction: column; align-items: center; gap: 1.5rem;
}
.page-loader img { height: 4rem; opacity: 0.95; filter: drop-shadow(0 2px 12px rgba(74,44,29,0.4)); }
.page-loader .bar {
  position: relative;
  height: 1px; width: 12rem;
  background: rgba(74,44,29,0.18);
  overflow: hidden;
}
.page-loader .bar::after {
  content: '';
  position: absolute; top: 0; left: -33%;
  height: 100%; width: 33%;
  background: var(--color-gold);
  animation: shimmer 1.6s ease infinite;
}
@keyframes shimmer {
  0%   { left: -33%; }
  100% { left: 100%; }
}

/* ------------- ABOUT ------------- */
.about-figure {
  position: relative;
  overflow: hidden;
  outline: 1px solid rgba(200,155,90,0.2);
  box-shadow: var(--shadow-luxe);
}
.about-figure img { width: 100%; height: clamp(380px, 60vh, 640px); object-fit: cover; }
.about-figure::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(20,17,15,0.5), transparent);
  pointer-events: none;
}
.value-card {
  padding: 2.5rem;
  border: 1px solid rgba(74,44,29,0.18);
  background: var(--color-noir-950);
  transition: border-color 0.5s;
  height: 100%;
}
.value-card:hover { border-color: rgba(200,155,90,0.4); }
.value-card .symbol {
  font-family: 'Great Vibes', cursive;
  font-size: 2.5rem;
  background: linear-gradient(135deg, #d8b683, #C89B5A 50%, #8a6324);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  margin-bottom: 0.75rem; line-height: 1;
}
.value-card h3 { font-size: 1.5rem; color: var(--color-ivory-50); margin-bottom: 1rem; }
.value-card p  { font-size: 0.92rem; color: rgba(250,246,238,0.62); line-height: 1.65; }

.timeline {
  position: relative;
  padding-left: 2.5rem;
  border-left: 1px solid rgba(200,155,90,0.3);
  list-style: none;
  margin: 5rem 0 0;
}
.timeline li {
  position: relative; margin-bottom: 3rem;
}
.timeline li::before {
  content: ''; position: absolute;
  left: -2.86rem; top: 0.4rem;
  width: 0.75rem; height: 0.75rem;
  background: var(--color-gold);
  transform: rotate(45deg);
  box-shadow: var(--shadow-gold-glow);
}
.timeline .year {
  font-family: 'Playfair Display', serif;
  font-size: 1.85rem;
  background: linear-gradient(135deg, #d8b683, #C89B5A 50%, #8a6324);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.timeline .event {
  margin-top: 0.5rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  color: rgba(250,246,238,0.78);
}

/* ------------- QUOTE WIZARD ------------- */
/* Compact stepper container (replaces the per-step pill list).
   Legacy .quote-step rules below are kept as dead code in case other
   pages still emit pills, but renderStepper() no longer produces them. */
.quote-stepper {
  display: block;
  margin-bottom: 1.5rem;
}
.quote-step {
  flex: 1 1 0;
  min-width: 120px;
  padding: 1rem 1rem 0.85rem;
  border-top: 2px solid rgba(74,44,29,0.25);
  cursor: default;
  transition: border-color 0.4s, color 0.4s;
}
.quote-step.clickable { cursor: pointer; }
.quote-step.active { border-top-color: var(--color-gold); }
.quote-step.done   { border-top-color: rgba(200,155,90,0.55); }
.quote-step .step-num {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: var(--tracking-brand);
  color: rgba(250,246,238,0.45);
}
.quote-step.active .step-num,
.quote-step.done   .step-num { color: var(--color-gold-400); }
.quote-step .step-name {
  margin-top: 0.4rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: rgba(250,246,238,0.8);
}

.option-card {
  display: block;
  text-align: left;
  padding: 1.5rem;
  background: var(--color-noir-950);
  border: 1px solid rgba(74,44,29,0.25);
  cursor: pointer;
  width: 100%;
  color: inherit;
  text-decoration: none;
  transition: all 0.4s var(--ease-luxe);
}
.option-card:hover, .option-card:focus { color: inherit; text-decoration: none; }
.option-card:hover { border-color: rgba(200,155,90,0.6); transform: translateY(-2px); }
.option-card.selected {
  border-color: var(--color-gold);
  background: linear-gradient(135deg, rgba(200,155,90,0.12), transparent);
  box-shadow: var(--shadow-gold-glow);
}
.option-card .opt-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  color: var(--color-cream-50);
  margin-bottom: 0.4rem;
}
.option-card .opt-desc {
  font-size: 0.88rem;
  color: rgba(250,246,238,0.6);
  line-height: 1.55;
}

.package-card {
  position: relative;
  text-align: left;
  width: 100%;
  padding: 2rem;
  background: var(--color-noir-950);
  border: 1px solid rgba(74,44,29,0.25);
  cursor: pointer; color: inherit;
  transition: all 0.4s var(--ease-luxe);
}
.package-card:hover { border-color: rgba(200,155,90,0.6); transform: translateY(-3px); }
.package-card.selected {
  border-color: var(--color-gold);
  background: linear-gradient(135deg, rgba(200,155,90,0.12), transparent);
  box-shadow: var(--shadow-gold-glow);
}
.package-card .badge {
  position: absolute; top: -0.85rem; left: 1.5rem;
  background: var(--color-gold);
  color: var(--color-ivory-50);
  font-size: 0.62rem;
  text-transform: uppercase; letter-spacing: var(--tracking-brand);
  padding: 0.32rem 0.85rem;
}
.package-card .pkg-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.55rem;
  color: var(--color-cream-50);
}
.package-card .pkg-tagline {
  font-style: italic; font-size: 0.92rem;
  color: rgba(250,246,238,0.55);
  margin: 0.2rem 0 1rem;
}
.package-card ul { list-style: none; padding: 0; margin: 0; }
.package-card ul li {
  font-size: 0.9rem; color: rgba(250,246,238,0.72);
  display: flex; gap: 0.6rem; margin-bottom: 0.4rem;
}
.package-card ul li::before { content: '·'; color: var(--color-gold-400); font-weight: bold; }
.package-card .price-area { text-align: right; }
.package-card .price {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  background: linear-gradient(135deg, #d8b683, #C89B5A 50%, #8a6324);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.package-card .price-note {
  font-size: 0.65rem; text-transform: uppercase; letter-spacing: var(--tracking-brand);
  color: rgba(250,246,238,0.45); margin-top: 0.2rem;
}

.hour-pill {
  width: 2.75rem; height: 2.75rem;
  display: inline-grid; place-items: center;
  border: 1px solid rgba(74,44,29,0.3);
  background: transparent;
  color: rgba(250,246,238,0.7);
  cursor: pointer;
  font-size: 0.92rem;
  transition: all 0.3s;
}
.hour-pill:hover { border-color: rgba(200,155,90,0.6); }
.hour-pill.selected {
  border-color: var(--color-gold);
  background: var(--color-gold);
  color: var(--color-ivory-50);
}

.addon-card {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1.2rem;
  border: 1px solid rgba(74,44,29,0.25);
  background: var(--color-noir-950);
  cursor: pointer;
  text-align: left; color: inherit;
  width: 100%;
  transition: all 0.4s;
}
.addon-card:hover { border-color: rgba(200,155,90,0.6); transform: translateY(-2px); }
.addon-card.selected {
  border-color: var(--color-gold);
  background: linear-gradient(135deg, rgba(200,155,90,0.1), transparent);
}
.addon-card .check {
  width: 1.25rem; height: 1.25rem; flex-shrink: 0;
  border: 1px solid rgba(74,44,29,0.4);
  display: grid; place-items: center;
  font-size: 0.7rem; color: transparent;
  transition: all 0.3s;
  margin-top: 0.15rem;
}
.addon-card.selected .check {
  border-color: var(--color-gold);
  background: var(--color-gold);
  color: var(--color-ivory-50);
}
.addon-card .addon-name { color: var(--color-cream-50); font-weight: 500; }
.addon-card .addon-price {
  font-family: 'Playfair Display', serif;
  color: var(--color-gold-400);
}
.addon-card .addon-desc {
  font-size: 0.78rem;
  color: rgba(250,246,238,0.56);
  line-height: 1.55;
  margin-top: 0.35rem;
}

.summary-card {
  padding: 2rem;
  background: var(--color-noir-900);
  border: 1px solid rgba(200,155,90,0.2);
  position: sticky; top: 6rem;
}
.summary-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; color: var(--color-cream-50);
  margin-bottom: 0.4rem;
}
.summary-card .sub {
  font-size: 0.65rem; text-transform: uppercase; letter-spacing: var(--tracking-brand);
  color: var(--color-gold-400); margin-bottom: 1.5rem;
}
.summary-line {
  display: flex; justify-content: space-between; gap: 1rem;
  padding: 0.7rem 0;
  border-bottom: 1px dashed rgba(74,44,29,0.25);
  font-size: 0.92rem;
}
.summary-line .label { color: rgba(250,246,238,0.78); }
.summary-line .label small { display: block; color: rgba(250,246,238,0.45); font-size: 0.7rem; margin-top: 0.15rem; }
.summary-line .amount { color: var(--color-cream-50); font-family: 'Playfair Display', serif; }
.summary-total {
  margin-top: 1rem; padding-top: 1rem;
  border-top: 1px solid rgba(200,155,90,0.4);
  display: flex; justify-content: space-between; align-items: baseline;
}
.summary-total .label {
  font-size: 0.7rem; text-transform: uppercase; letter-spacing: var(--tracking-brand);
  color: rgba(250,246,238,0.55);
}
.summary-total .amount {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  background: linear-gradient(135deg, #d8b683, #C89B5A 50%, #8a6324);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

.success-card {
  padding: 3.5rem 2.5rem;
  text-align: center;
  background: var(--color-noir-900);
  border: 1px solid rgba(200,155,90,0.3);
}
.success-card .thanks {
  font-family: 'Great Vibes', cursive;
  font-size: 3rem;
  background: linear-gradient(135deg, #d8b683, #C89B5A 50%, #8a6324);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  margin-bottom: 0.75rem;
}

.contact-info { margin-top: 3rem; }
.contact-info > div { margin-bottom: 1.5rem; }
.contact-info a:hover { color: var(--color-gold-400); }

.contact-card {
  padding: 2.5rem;
  background: var(--color-noir-900);
  border: 1px solid rgba(200,155,90,0.18);
  box-shadow: var(--shadow-luxe);
}

/* ------------- UTILITIES ------------- */
.will-animate { will-change: transform, opacity; }
.opacity-0 { opacity: 0; }

@media (max-width: 767.98px) {
  .package-card .price-area { text-align: left; margin-top: 1rem; }
  .timeline { padding-left: 2rem; }
  .timeline li::before { left: -2.36rem; }
}

/* ------------- QUOTE WIZARD V2 — product + qty stepper ------------- */
.product-card {
  position: relative;
  text-align: center;
  padding: 1.4rem 1rem 1.25rem;
  /* background: var(--color-noir-950); */
  background: var(--color-noir-950);
  border: 1px solid rgba(200, 154, 90, 0.368);
  transition: all 0.4s var(--ease-luxe);
  height: 100%;
}
.product-card:hover { border-color: rgba(200,155,90,0.55); transform: translateY(-2px); }
.product-card.has-qty {
  border-color: var(--color-gold);
  background: linear-gradient(135deg, rgba(200,155,90,0.08), transparent);
  box-shadow: var(--shadow-gold-glow);
}
.product-card .icon {
  width: 88px; height: 88px; margin: 0 auto 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #d8b683;
  color: var(--color-cream);
  font-size: 1.4rem;
  flex-shrink: 0;
}
.product-card .icon img {
  width: 88px; height: 88px;
  object-fit: contain;
  object-position: center center;
  display: block;
}
.product-card .name {
  font-family: 'Playfair Display', serif;
  font-size: 0.82rem;
  white-space: nowrap;
  color: var(--color-cream-50);
  margin-bottom: 0.25rem;
}
.product-card .price {
  font-size: 0.78rem;
  color: var(--color-gold-400);
  letter-spacing: 0.06em;
  margin-bottom: 0.4rem;
}
.product-card .sheets-note {
  font-size: 0.72rem;
  color: rgba(250, 246, 238, 0.55);
  font-style: italic;
  letter-spacing: 0.04em;
  margin-bottom: 0.85rem;
}
.product-card .qty-row {
  display: inline-flex; align-items: center; gap: 0.85rem;
  background: rgba(74,44,29,0.18);
  border: 1px solid rgba(200,155,90,0.18);
  padding: 0.35rem 0.75rem; border-radius: 999px;
}
.product-card .qty-btn {
  width: 1.7rem; height: 1.7rem; border-radius: 50%;
  border: 1px solid rgba(200,155,90,0.55);
  background: transparent; color: var(--color-gold-400);
  font-size: 1rem; line-height: 1;
  cursor: pointer; display: grid; place-items: center;
  transition: all 0.3s;
}
.product-card .qty-btn:hover:not(:disabled) {
  background: var(--color-gold); color: var(--color-ivory-50);
  border-color: var(--color-gold);
}
.product-card .qty-btn:disabled { opacity: 0.35; cursor: not-allowed; }
.product-card .qty-num {
  min-width: 1.5rem; text-align: center;
  font-family: 'Playfair Display', serif;
  color: var(--color-cream-50);
  font-size: 1.05rem;
}
.product-card .qty-badge {
  position: absolute; top: -0.5rem; right: -0.5rem;
  width: 1.6rem; height: 1.6rem;
  background: var(--color-gold);
  color: var(--color-ivory-50);
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 0.7rem; font-weight: 600;
  box-shadow: var(--shadow-gold-glow);
}

.helper-warn {
  font-size: 0.85rem;
  color: var(--color-gold-400);
  letter-spacing: 0.04em;
  opacity: 0.85;
  margin: 0.5rem 0 0.25rem;
}

/* terms-scroll for final step */
.terms-scroll {
  max-height: 150px;
  overflow-y: auto;
  padding: 1rem 1.1rem;
  background: var(--color-noir-950);
  border: 1px solid rgba(74,44,29,0.25);
  font-size: 0.85rem; line-height: 1.55;
  color: rgba(250,246,238,0.70);
}
.terms-accept {
  display: inline-flex; align-items: center; gap: 0.7rem;
  margin-top: 1rem; cursor: pointer;
  font-size: 0.85rem; color: rgba(250,246,238,0.78);
}
.terms-accept .check {
  width: 1.15rem; height: 1.15rem; flex-shrink: 0;
  border: 1px solid rgba(200,155,90,0.55);
  display: grid; place-items: center;
  font-size: 0.7rem; color: transparent;
  transition: all 0.3s;
}
.terms-accept input { display: none; }
.terms-accept input:checked ~ .check {
  background: var(--color-gold); border-color: var(--color-gold);
  color: var(--color-ivory-50);
}

@media (max-width: 991.98px) {
  .summary-card { position: static; top: auto; }
  /* Hide the desktop stepper entirely; the mobile slot above #quote-wizard
     gives the user orientation without pushing options below the fold. */
  .quote-stepper { display: none; }
  #quote-stepper-mobile { display: block; margin-bottom: 1rem; }
  .stepper-compact--mobile .stepper-jump { display: none; }
}

/* ------------- QUOTE WIZARD V2 — compact stepper ------------- */
.stepper-compact {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding: 0.5rem 0;
}
.stepper-meta {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-wrap: wrap;
}
.stepper-back {
  width: 1.85rem; height: 1.85rem;
  display: grid; place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(200,155,90,0.45);
  background: transparent;
  color: var(--color-gold);
  font-size: 1rem; line-height: 1;
  cursor: pointer;
  transition: all 0.3s var(--ease-luxe);
}
.stepper-back:hover {
  background: var(--color-gold);
  color: var(--color-ivory-50);
  border-color: var(--color-gold);
}
.stepper-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  letter-spacing: var(--tracking-brand);
  text-transform: uppercase;
  color: var(--color-gold-400);
}
.stepper-sep   { color: rgba(250,246,238,0.35); }
.stepper-label {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: var(--color-cream-50);
}
.stepper-jump { position: relative; margin-left: auto; }
.stepper-jump-btn {
  background: transparent;
  border: 1px solid rgba(200,155,90,0.35);
  color: var(--color-gold-400);
  font-size: 0.72rem;
  letter-spacing: var(--tracking-brand);
  text-transform: uppercase;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.3s var(--ease-luxe);
}
.stepper-jump-btn:hover {
  border-color: var(--color-gold);
  color: var(--color-cream-50);
}
.stepper-jump-menu {
  position: absolute;
  right: 0; top: calc(100% + 0.4rem);
  min-width: 240px;
  margin: 0; padding: 0.4rem 0;
  list-style: none;
  background: var(--color-noir-900);
  border: 1px solid rgba(200,155,90,0.25);
  border-radius: 8px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.45);
  z-index: 50;
  max-height: 280px;
  overflow-y: auto;
}
.stepper-jump-menu[hidden] { display: none; }
.stepper-jump-menu li button {
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  color: var(--color-cream-50);
  padding: 0.55rem 0.95rem;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s var(--ease-luxe), color 0.2s var(--ease-luxe);
}
.stepper-jump-menu li button:hover {
  background: rgba(200,155,90,0.12);
  color: var(--color-gold);
}
.stepper-track {
  position: relative;
  height: 3px;
  background: rgba(74,44,29,0.25);
  border-radius: 999px;
  overflow: hidden;
}
.stepper-fill {
  height: 100%;
  background: var(--color-gold);
  border-radius: 999px;
  transition: width 0.5s var(--ease-luxe);
}
#quote-stepper-mobile { display: none; }

/* ------------- QUOTE WIZARD V2 — running-total sidebar variant ------------- */
.summary-card.summary-card--running {
  text-align: center;
  padding: 1.6rem 1.4rem;
}
.summary-card--running .summary-eyebrow {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  letter-spacing: var(--tracking-brand);
  text-transform: uppercase;
  color: var(--color-gold-400);
  margin-bottom: 0.85rem;
}
.summary-card--running .summary-total--running {
  display: block;
  margin: 0 0 1rem;
  padding: 0;
  border: 0;
}
.summary-card--running .summary-total--running .amount {
  font-family: 'Playfair Display', serif;
  font-size: 2.6rem;
  line-height: 1.1;
  background: linear-gradient(135deg, #d8b683, #C89B5A 50%, #8a6324);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  display: inline-block;
}
.summary-card--running .summary-fineprint {
  font-size: 0.85rem;
  line-height: 1.55;
  color: rgba(250,246,238,0.55);
  margin: 0;
}

/* ------------- Floating WhatsApp button (all pages) ------------------------ */
.wa-fab {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 1000;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #25D366;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.35), 0 2px 5px rgba(0, 0, 0, 0.25);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.wa-fab:hover,
.wa-fab:focus {
  transform: translateY(-2px) scale(1.05);
  background: #1ebe5d;
  color: #ffffff;
  box-shadow: 0 12px 26px rgba(37, 211, 102, 0.45), 0 3px 8px rgba(0, 0, 0, 0.3);
}
.wa-fab:focus-visible {
  outline: 2px solid var(--color-gold, #C89B5A);
  outline-offset: 3px;
}
.wa-fab svg {
  width: 24px;
  height: 24px;
  display: block;
}
.wa-fab::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.55);
  animation: wa-pulse 2.2s ease-out infinite;
  pointer-events: none;
}
@keyframes wa-pulse {
  0%   { transform: scale(0.9); opacity: 0.75; }
  70%  { transform: scale(1.25); opacity: 0; }
  100% { transform: scale(1.25); opacity: 0; }
}
@media (max-width: 575.98px) {
  .wa-fab {
    right: 1rem;
    bottom: 1rem;
    width: 40px;
    height: 40px;
  }
  .wa-fab svg { width: 22px; height: 22px; }
}

/* ------------- BELIEVE ROWS ------------- */
.believe-section {
  padding: 6rem 0;
  background: var(--color-noir-900);
}

.believe-header {
  margin-bottom: 4rem;
}
.believe-header .eyebrow {
  margin-bottom: 0.75rem;
}

.believe-list {
  border-top: 1px solid rgba(200,155,90,0.20);
}

.believe-row {
  display: flex;
  align-items: baseline;
  gap: 3rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid rgba(200,155,90,0.20);
  position: relative;
  transition: background 0.4s var(--ease-luxe);
}

/* Gold sweep on hover */
.believe-row::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 0; height: 2px;
  background: linear-gradient(90deg, var(--color-gold), transparent);
  transition: width 0.55s var(--ease-luxe);
}
.believe-row:hover::before { width: 100%; }

.believe-index {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--color-gold);
  opacity: 0.7;
  flex-shrink: 0;
  min-width: 2rem;
  transition: opacity 0.3s;
}
.believe-row:hover .believe-index { opacity: 1; }

.believe-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  font-weight: 500;
  color: var(--color-ivory-50);
  flex: 0 0 30%;
  line-height: 1.2;
  transition: color 0.3s;
}
.believe-row:hover .believe-title {
  background: linear-gradient(135deg, #d8b683 0%, #C89B5A 55%, #a07830 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

.believe-desc {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.1rem;
  line-height: 1.70;
  color: rgba(250,246,238,0.60);
  flex: 1;
  transition: color 0.3s;
}
.believe-row:hover .believe-desc { color: rgba(250,246,238,0.80); }

@media (max-width: 767.98px) {
  .believe-row {
    flex-direction: column;
    gap: 0.75rem;
    padding: 2rem 0;
  }
  .believe-title { flex: none; }
}

/* ------------- PROMISE STRIP ------------- */
.promise-section {
  position: relative;
  padding: 6rem 0;
  background: var(--color-chocolate);
  overflow: hidden;
}
.promise-glow {
  position: absolute;
  top: -6rem; left: 50%; transform: translateX(-50%);
  width: 700px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(200,155,90,0.14) 0%, transparent 70%);
  filter: blur(24px);
  pointer-events: none;
}

.promise-strip {
  display: flex;
  align-items: stretch;
  gap: 0;
}

/* Vertical gold divider */
.promise-divider {
  flex-shrink: 0;
  width: 1px;
  background: linear-gradient(to bottom,
    transparent 0%,
    rgba(200,155,90,0.55) 20%,
    rgba(200,155,90,0.55) 80%,
    transparent 100%);
  margin: 0 2.5rem;
}

/* Each promise column */
.promise-item {
  flex: 1;
  position: relative;
  padding: 0.5rem 0;
  display: flex;
  flex-direction: column;
}

/* Faint watermark numeral */
.promise-numeral {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 6rem;
  font-weight: 700;
  line-height: 1;
  color: rgba(200,155,90,0.08);
  position: absolute;
  top: -1rem;
  right: 0;
  user-select: none;
  pointer-events: none;
  letter-spacing: -0.02em;
}

/* Gold top rule */
.promise-line {
  width: 2.5rem;
  height: 2px;
  background: linear-gradient(90deg, var(--color-gold), transparent);
  margin-bottom: 1.5rem;
  flex-shrink: 0;
}

.promise-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  font-weight: 500;
  color: var(--color-ivory-50);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.promise-desc {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.08rem;
  line-height: 1.72;
  color: rgba(250,246,238,0.62);
}

/* Mobile — stack vertically */
@media (max-width: 767.98px) {
  .promise-strip {
    flex-direction: column;
    gap: 3rem;
  }
  .promise-divider {
    width: 100%;
    height: 1px;
    margin: 0;
    background: linear-gradient(to right,
      transparent 0%,
      rgba(200,155,90,0.45) 20%,
      rgba(200,155,90,0.45) 80%,
      transparent 100%);
  }
  .promise-numeral { font-size: 5rem; }
}

/* ------------- TEAM CARDS ------------- */
.team-card {
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgba(200,155,90,0.18);
  background: var(--color-noir-900);
  transition: border-color 0.5s var(--ease-luxe), box-shadow 0.5s var(--ease-luxe);
}
.team-card:hover {
  border-color: rgba(200,155,90,0.42);
  box-shadow: 0 20px 60px -16px rgba(200,155,90,0.18);
}

/* Text body */
.team-card__body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 3rem 3.5rem;
}

/* Image panel */
.team-card__img-wrap {
  position: relative;
  overflow: hidden;
  min-height: 260px;
}

/* Coloured image panel accents */
.team-card__img-wrap--gold { background: rgba(200,155,90,0.12); }
.team-card__img-wrap--coffee { background: rgba(74,44,29,0.55); }

.team-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.8s var(--ease-luxe);
}
.team-card:hover .team-card__img { transform: scale(1.04); }

/* Role badge */
.team-role {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: var(--tracking-brand);
  text-transform: uppercase;
  color: var(--color-gold);
  background: rgba(200,155,90,0.10);
  border: 1px solid rgba(200,155,90,0.30);
  padding: 0.3rem 0.85rem;
  border-radius: 2rem;
  margin-bottom: 1.25rem;
}

/* Name */
.team-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 500;
  background: linear-gradient(135deg, #d8b683 0%, #C89B5A 55%, #a07830 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  margin-bottom: 0.75rem;
  line-height: 1.15;
}

/* Stars */
.team-stars {
  font-size: 1.2rem;
  color: var(--color-gold);
  letter-spacing: 0.15em;
  margin-bottom: 1.25rem;
  line-height: 1;
}

/* Bio */
.team-bio {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.08rem;
  line-height: 1.72;
  color: rgba(250,246,238,0.72);
  margin-bottom: 2rem;
}

/* Credit — name + role pinned to bottom-right */
.team-credit {
  text-align: right;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(200,155,90,0.20);
}
.team-credit .team-name {
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  margin-bottom: 0.25rem;
}
.team-credit .team-role {
  display: block;
  width: 100%;
  font-size: 0.7rem;
  padding: 0.2rem 0.65rem;
  margin-bottom: 0;
  text-align: right;
}

/* Responsive — stack on mobile, image always first */
@media (max-width: 991.98px) {
  .team-card__body    { padding: 2rem 1.75rem; order: 2; }
  .team-card__img-wrap { min-height: 220px;    order: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .wa-fab::after { animation: none; }
  .wa-fab { transition: none; }
}


/* ------------- MOBILE TYPOGRAPHY — scale down absolute font sizes (≤767px) ------------- */
/* Desktop view is completely unaffected — these rules only fire on mobile widths.         */
@media (max-width: 767.98px) {
  /* Script / decorative headings (Great Vibes) */
  .cmb-story .chapter          { font-size: 1.6rem; }
  .value-card .symbol          { font-size: 1.75rem; }
  .cmb-footer .tagline         { font-size: 1.5rem; }
  .success-card .thanks        { font-size: 2rem; }

  /* Serif display numbers & headings */
  .timeline .year              { font-size: 1.4rem; }
  .package-card .pkg-name      { font-size: 1.25rem; }
  .package-card .price         { font-size: 1.55rem; }
  .summary-total .amount       { font-size: 1.6rem; }
  .summary-card--running .summary-total--running .amount { font-size: 1.75rem; }
}
