/* =============================================================================
   LUMINAE INTERIORS — Jazean Conceptual Aesthetic
   Light, warm, organic, fluid design with marble textures and curved paths.
   ============================================================================= */

/* ═══════════════════════════════════════════════════════════
   01. DESIGN TOKENS
   ═══════════════════════════════════════════════════════════ */
:root {
  /* Colors - Jazean Palette */
  --lum-bg: #FEFCF7;
  /* Warm cream base */
  --lum-surface: #F4EFE6;
  /* Slightly darker cream for cards */
  --lum-accent: #BC9B57;
  /* Gold/Copper */
  --lum-accent-light: #E8D5A3;
  --lum-text-primary: #2C2A26;
  /* Dark charcoal/brown */
  --lum-text-muted: #635E55;
  --lum-white: #FFFFFF;

  /* Typography */
  --lum-font-display: 'Cormorant Garamond', 'Didot', serif;
  --lum-font-body: 'Jost', 'Inter', sans-serif;
  --lum-text-hero: clamp(4rem, 9vw, 7.5rem);
  --lum-text-h2: clamp(2.5rem, 5vw, 4.5rem);
  --lum-text-eyebrow: 0.85rem;
  --lum-text-body: 1.1rem;

  /* Layout */
  --lum-sidebar-width: 100px;
  --lum-max-width: 1440px;
  --lum-gutter: clamp(1.5rem, 4vw, 4rem);
}

/* ═══════════════════════════════════════════════════════════
   02. GLOBAL RESETS
   ═══════════════════════════════════════════════════════════ */
body.luminae-page {
  background-color: var(--lum-bg);
  color: var(--lum-text-primary);
  font-family: var(--lum-font-body);
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.luminae-page main {
  background-color: transparent;
  position: relative;
}

section[id],
.story-journey,
.jny-step-full {
  scroll-margin-top: 120px;
}

/* ═══════════════════════════════════════════════════════════
   03. SIDEBAR NAVIGATION (Redesigned Left Timeline)
   ═══════════════════════════════════════════════════════════ */
.side_bar_set {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: var(--lum-sidebar-width);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 100;
  pointer-events: none;
  /* Let clicks pass through empty space */
}

.side_bar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
  pointer-events: auto;
  position: relative;
}

/* Vertical line connecting timeline nodes */
.side_bar::before {
  content: '';
  position: absolute;
  top: -20px;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  background: linear-gradient(to bottom, rgba(188, 155, 87, 0) 0%, rgba(188, 155, 87, 0.25) 20%, rgba(188, 155, 87, 0.25) 80%, rgba(188, 155, 87, 0) 100%);
  z-index: 0;
}

.side_item {
  width: 32px;
  height: 32px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  background: var(--lum-bg);
  border-radius: 50%;
  border: 1px solid rgba(188, 155, 87, 0.15);
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  text-decoration: none;
}

.side_item svg {
  width: 12px;
  height: 12px;
  fill: var(--lum-text-muted);
  opacity: 0.6;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.side_item:hover {
  transform: scale(1.1);
  border-color: var(--lum-accent);
  box-shadow: 0 4px 10px rgba(188, 155, 87, 0.15);
}

.side_item:hover svg,
.side_item.active svg {
  opacity: 1;
  fill: var(--lum-accent);
  transform: scale(1.1);
}

.side_item.active {
  border-color: var(--lum-accent);
  background: var(--lum-bg);
  box-shadow: 0 0 15px rgba(188, 155, 87, 0.2);
}

/* Floating labels next to timeline nodes on hover */
.side_item .side_label {
  position: absolute;
  left: 45px;
  background: rgba(44, 42, 38, 0.95);
  color: var(--lum-bg);
  padding: 6px 14px;
  border-radius: 4px;
  font-family: var(--lum-font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-10px);
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  pointer-events: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.side_item .side_label::before {
  content: '';
  position: absolute;
  top: 50%;
  left: -4px;
  transform: translateY(-50%) rotate(45deg);
  width: 8px;
  height: 8px;
  background: rgba(44, 42, 38, 0.95);
}

.side_item:hover .side_label {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

/* ═══════════════════════════════════════════════════════════
   04. HERO SECTION — Jazean Cinematic
   ═══════════════════════════════════════════════════════════ */

@keyframes jazeanBreath {
  0%   { transform: scale(1);    filter: brightness(0.9); }
  100% { transform: scale(1.12); filter: brightness(0.7); }
}

@keyframes jazeanSpin {
  0%   { transform: rotate(0deg)   scale(1.5); }
  100% { transform: rotate(360deg) scale(1.5); }
}

@keyframes floatLogo {
  0%   { transform: translateY(0px);   filter: drop-shadow(0 5px  15px rgba(255,255,255,0.1)); }
  50%  { transform: translateY(-12px); filter: drop-shadow(0 20px 30px rgba(188,155,87,0.4)); }
  100% { transform: translateY(0px);   filter: drop-shadow(0 5px  15px rgba(255,255,255,0.1)); }
}

/* Hero section */
.lum-hero {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background: #1a1412;
}

/* Background marble layer */
.jazean-bg-layer {
  position: absolute;
  top: -5%;
  left: -5%;
  width: 110%;
  height: 110%;
  z-index: 1;
  background-size: cover;
  background-position: center;
  animation: jazeanBreath 20s ease-in-out infinite alternate;
  opacity: 0.85;
  pointer-events: none;
}

/* Dark gradient overlay */
.jazean-gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: linear-gradient(to bottom, rgba(15,12,10,0.1) 0%, rgba(15,12,10,0.6) 100%);
  pointer-events: none;
}

/* Animated SVG fluid lines */
.jazean-fluid-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  opacity: 0.1;
  animation: jazeanSpin 120s linear infinite;
  pointer-events: none;
}

/* Hero inner content */
.lum-hero-inner {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 5rem;
}

/* Floating logo medal */
.lum-medal {
  margin-bottom: 2rem;
  animation: floatLogo 6s ease-in-out infinite;
}

.lum-medal-ring-outer {
  border-color: rgba(255, 255, 255, 0.3);
}

.lum-medal-core {
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(5px);
}

/* Subtitle text */
.jazean-subtitle {
  font-family: var(--lum-font-body);
  font-size: 0.95rem;
  letter-spacing: 0.3em;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  margin-bottom: 2rem;
  font-weight: 500;
}

/* Main hero title */
.jazean-title {
  font-family: var(--lum-font-body);
  font-size: clamp(4rem, 12vw, 10rem);
  font-weight: 300;
  letter-spacing: 0.08em;
  color: #fff;
  margin: 0 0 2rem;
  line-height: 1;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Description paragraph */
.jazean-desc {
  font-family: var(--lum-font-body);
  font-size: 1rem;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  max-width: 650px;
  margin: 0 auto 5rem;
  line-height: 1.8;
  font-weight: 400;
}

/* Vertical connecting line */
.jazean-line {
  width: 1px;
  height: 120px;
  background: linear-gradient(to bottom, rgba(188, 155, 87, 0.8), rgba(188, 155, 87, 0));
  margin: 0 auto;
}

/* ═══════════════════════════════════════════════════════════
   05. CUSTOM DRAG TIP CURSOR
   ═══════════════════════════════════════════════════════════ */
.drag_tip {
  position: fixed;
  top: 0;
  left: 0;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.5);
  transition: opacity 0.3s ease, transform 0.3s ease;
  mix-blend-mode: exclusion;
}

.drag_tip.visible {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.drag_tip svg.text-ring {
  position: absolute;
  width: 100%;
  height: 100%;
  animation: rotateText 10s linear infinite;
  fill: var(--lum-bg);
}

.drag_tip svg.arrow {
  width: 24px;
  height: 24px;
  fill: var(--lum-bg);
}

@keyframes rotateText {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* ═══════════════════════════════════════════════════════════
   06. CENTRAL SCROLLING SVG LINE
   ═══════════════════════════════════════════════════════════ */
.central-line-wrapper {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  /* Width of the SVG canvas */
  height: 100%;
  /* Spans the whole page */
  z-index: 10;
  pointer-events: none;
}

.central-line-wrapper svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.central-line-wrapper path {
  fill: none;
  stroke: var(--lum-accent);
  stroke-width: 1.5;
  /* GSAP will animate stroke-dasharray and stroke-dashoffset */
}

/* ═══════════════════════════════════════════════════════════
   07. MARBLE HERO BACKGROUND
   ═══════════════════════════════════════════════════════════ */
.hero-organic {
  position: relative;
  width: 100%;
  height: 100vh;
  padding-top: 110px;
  /* Offset for the fixed white header */
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--lum-bg);
}

.hero-gradient-bg {
  position: absolute;
  inset: 0;
  background-color: #FEFCF7;
  overflow: hidden;
  z-index: 0;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.5;
  mix-blend-mode: multiply;
  will-change: transform;
}

.blob-1 {
  width: min(80vw, 800px);
  aspect-ratio: 1;
  background: radial-gradient(circle, #E8D5A3 0%, rgba(232, 213, 163, 0) 70%);
  top: -10%;
  left: -10%;
  animation: floatBlob1 25s infinite alternate ease-in-out;
}

.blob-2 {
  width: min(70vw, 700px);
  aspect-ratio: 1;
  background: radial-gradient(circle, #BC9B57 0%, rgba(188, 155, 87, 0) 70%);
  bottom: -10%;
  right: -5%;
  animation: floatBlob2 30s infinite alternate ease-in-out;
}

.blob-3 {
  width: min(60vw, 600px);
  aspect-ratio: 1;
  background: radial-gradient(circle, #F4EFE6 0%, rgba(244, 239, 230, 0) 70%);
  top: 40%;
  left: 30%;
  animation: floatBlob3 20s infinite alternate ease-in-out;
}

.hero-svg-waves {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.85;
}

.hero-svg-waves svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wave-line {
  stroke-dasharray: 2000;
  stroke-dashoffset: 0;
  animation: waveBreathe 12s infinite alternate ease-in-out;
  transform-origin: center;
}

.wave-line-1 {
  animation-duration: 16s;
}

.wave-line-2 {
  animation-duration: 20s;
  animation-delay: -2s;
}

.wave-line-3 {
  animation-duration: 24s;
  animation-delay: -4s;
}

@keyframes floatBlob1 {
  0% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(100px, 80px) scale(1.1);
  }

  100% {
    transform: translate(-50px, 50px) scale(0.95);
  }
}

@keyframes floatBlob2 {
  0% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(-80px, -100px) scale(0.95);
  }

  100% {
    transform: translate(50px, 40px) scale(1.1);
  }
}

@keyframes floatBlob3 {
  0% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(60px, -50px) scale(1.05);
  }

  100% {
    transform: translate(-40px, 80px) scale(0.95);
  }
}

@keyframes waveBreathe {
  0% {
    transform: translateY(-15px) scaleY(0.97) rotate(-0.5deg);
  }

  100% {
    transform: translateY(15px) scaleY(1.03) rotate(0.5deg);
  }
}

.hero-content-organic {
  position: relative;
  z-index: 2;
  text-align: center;
  padding-left: var(--lum-sidebar-width);
  max-width: 900px;
}

.hero-pretitle {
  font-family: var(--lum-font-body);
  font-size: var(--lum-text-eyebrow);
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--lum-accent);
  font-weight: 500;
  display: block;
  margin-bottom: 1.5rem;
  opacity: 0.95;
}

.hero-content-organic h1 {
  font-family: var(--lum-font-display);
  font-size: var(--lum-text-hero);
  font-weight: 200;
  line-height: 1.1;
  color: var(--lum-text-primary);
  margin: 0;
  letter-spacing: -0.01em;
}

.serif-italic {
  font-family: var(--lum-font-display);
  font-style: italic;
  font-weight: 300;
  text-transform: lowercase;
}

.hero-separator {
  width: 60px;
  height: 1px;
  background: var(--lum-accent);
  margin: 2rem auto;
}

.hero-subtitle {
  font-family: var(--lum-font-body);
  font-size: 1.1rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--lum-text-muted);
  font-weight: 300;
  display: block;
}

/* Scroll indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 5vh;
  left: calc(50% + var(--lum-sidebar-width) / 2);
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 5;
  pointer-events: none;
}

.hero-scroll-indicator span {
  font-family: var(--lum-font-body);
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--lum-text-muted);
  font-weight: 500;
}

.scroll-indicator-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--lum-accent) 50%, rgba(188, 155, 87, 0) 50%);
  background-size: 100% 200%;
  animation: scrollLineAnimation 2s cubic-bezier(0.25, 1, 0.5, 1) infinite;
}

@keyframes scrollLineAnimation {
  0% {
    background-position: 0 100%;
  }

  50% {
    background-position: 0 0;
  }

  100% {
    background-position: 0 -100%;
  }
}

/* Hero Load-in Animations */
.hero-content-organic .hero-pretitle {
  opacity: 0;
  transform: translateY(10px);
}

.hero-content-organic.revealed .hero-pretitle {
  animation: heroFadeReveal 1.2s cubic-bezier(0.25, 1, 0.5, 1) forwards;
  animation-delay: 0.2s;
}

.hero-content-organic h1 {
  opacity: 0;
  transform: translateY(30px);
}

.hero-content-organic.revealed h1 {
  animation: heroFadeReveal 1.5s cubic-bezier(0.25, 1, 0.5, 1) forwards;
  animation-delay: 0.4s;
}

.hero-content-organic .hero-separator {
  width: 0;
  opacity: 0;
}

.hero-content-organic.revealed .hero-separator {
  animation: drawLineSeparator 1.2s cubic-bezier(0.25, 1, 0.5, 1) forwards;
  animation-delay: 0.8s;
}

.hero-content-organic .hero-subtitle {
  opacity: 0;
  transform: translateY(15px);
}

.hero-content-organic.revealed .hero-subtitle {
  animation: heroFadeReveal 1.5s cubic-bezier(0.25, 1, 0.5, 1) forwards;
  animation-delay: 1s;
}

.hero-scroll-indicator {
  opacity: 0;
}

.hero-content-organic.revealed~.hero-scroll-indicator {
  animation: heroFadeIndicator 1.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
  animation-delay: 1.4s;
}

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

@keyframes drawLineSeparator {
  to {
    width: 60px;
    opacity: 1;
  }
}

@keyframes heroFadeIndicator {
  to {
    opacity: 1;
  }
}

/* ═══════════════════════════════════════════════════════════
   08. ARCH / OVAL OVERLAP SECTION ("A GREEN GOLD COFFEA")
   ═══════════════════════════════════════════════════════════ */
.arch-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  margin-top: 0;
  /* Removed negative margin to prevent cutting off the previous section */
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* The massive image background that fills the arch */
.arch-background-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.arch-background {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform-origin: center;
  will-change: transform;
}

/* The actual arch container holding content, sitting on top of the image */
.arch-content-container {
  position: relative;
  z-index: 2;
  background: var(--lum-bg);
  /* The iconic Jazean Arch shape: huge border radius on top */
  border-radius: 50vw 50vw 0 0;
  margin-top: 10vh;
  width: 90%;
  max-width: 1000px;
  min-height: 80vh;
  padding: 15vh 4rem 8rem;
  text-align: center;
  box-shadow: 0 -20px 60px rgba(0, 0, 0, 0.05);
}

.arch-eyebrow {
  font-family: var(--lum-font-body);
  font-size: var(--lum-text-eyebrow);
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--lum-accent);
  display: block;
  margin-bottom: 1.5rem;
}

.arch-title {
  font-family: var(--lum-font-display);
  font-size: var(--lum-text-h2);
  font-weight: 300;
  line-height: 1.15;
  margin: 0 0 2rem;
  color: var(--lum-text-primary);
}

.arch-body {
  font-size: var(--lum-text-body);
  color: var(--lum-text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* ═══════════════════════════════════════════════════════════
   08.5 OVAL RAW MATERIALS SECTION ("ROASTED TO PERFECTION" EQUIVALENT)
   ═══════════════════════════════════════════════════════════ */
.oval-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  margin-top: -5vh;
  /* Slight overlap */
  z-index: 4;
}

.oval-bg-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.oval-bg-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7);
  /* Darken slightly so oval pops */
  transform-origin: center;
  will-change: transform;
}

.oval-content-container {
  position: relative;
  z-index: 2;
  background: rgba(254, 252, 247, 0.97);
  /* var(--lum-bg) with slight transparency */
  border-radius: 50vw;
  /* Perfect vertical oval clipping */
  border: 1px solid rgba(188, 155, 87, 0.2);
  width: clamp(340px, 38vw, 550px);
  aspect-ratio: 0.75;
  /* Makes it a vertical oval */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 4.5rem 3rem;
  box-shadow: 0 30px 60px rgba(44, 42, 38, 0.08);
}

.oval-icon {
  margin-top: 2rem;
  width: 30px;
  height: 30px;
  fill: var(--lum-text-primary);
}

/* ═══════════════════════════════════════════════════════════
   09. HORIZONTAL PORTFOLIO CAROUSEL
   ═══════════════════════════════════════════════════════════ */
.organic-carousel-section {
  padding: 8rem 0 8rem var(--lum-sidebar-width);
  background: var(--lum-bg);
  position: relative;
  z-index: 5;
}

.organic-carousel-header {
  padding: 0 var(--lum-gutter);
  margin-bottom: 4rem;
}

.organic-carousel-header h2 {
  font-size: var(--lum-text-h2);
  font-weight: 400;
}

.organic-carousel-track {
  display: flex;
  gap: 2rem;
  padding: 0 var(--lum-gutter);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  cursor: grab;
}

.organic-carousel-track:active {
  cursor: grabbing;
}

.organic-carousel-track::after {
  content: "";
  flex: 0 0 var(--lum-gutter);
  width: var(--lum-gutter);
}

.organic-carousel-track::-webkit-scrollbar {
  display: none;
}

.organic-card {
  flex: 0 0 clamp(280px, 85vw, 450px);
  scroll-snap-align: start;
  position: relative;
  text-decoration: none;
  display: block;
}

@media (min-width: 768px) {
  .organic-card {
    /* 2 cards perfectly fit */
    flex: 0 0 calc(50% - 1rem);
  }
}

@media (min-width: 1200px) {
  .organic-card {
    /* 4 cards perfectly fit */
    flex: 0 0 calc(25% - 1.5rem);
  }
}


.organic-card-img-wrap {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: 200px 200px 0 0;
  /* Arch top */
  overflow: hidden;
  margin-bottom: 1.5rem;
  background: var(--lum-surface);
}

.organic-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.organic-card:hover .organic-card-img-wrap img {
  transform: scale(1.05);
}

.organic-card-info {
  text-align: center;
}

.organic-card-info h3 {
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--lum-text-primary);
  margin: 0 0 0.5rem;
}

.organic-card-info p {
  font-size: 0.9rem;
  color: var(--lum-text-muted);
  margin: 0;
}

/* ═══════════════════════════════════════════════════════════
   10. BUTTONS & UTILITIES
   ═══════════════════════════════════════════════════════════ */
.btn-carousel-nav {
  background: transparent;
  border: 1px solid rgba(44, 42, 38, 0.2);
  color: var(--lum-text-primary);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.btn-carousel-nav:hover {
  background: var(--lum-text-primary);
  color: var(--lum-bg);
  border-color: var(--lum-text-primary);
  transform: translateY(-2px);
}

.btn-organic {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.5rem;
  background: transparent;
  border: 1px solid var(--lum-text-primary);
  color: var(--lum-text-primary);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-organic:hover {
  background: var(--lum-text-primary);
  color: var(--lum-bg);
}

/* Fade up animation utility */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.fade-up.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════════════════════
   11. ORGANIC FOOTER
   ═══════════════════════════════════════════════════════════ */
.footer-organic {
  background: var(--lum-surface);
  padding: 6rem 0 2rem var(--lum-sidebar-width);
  border-top: 1px solid rgba(44, 42, 38, 0.05);
  position: relative;
  z-index: 5;
}

.footer-organic-inner {
  max-width: var(--lum-max-width);
  margin: 0 auto;
  padding: 0 var(--lum-gutter);
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
}

.footer-organic .footer-brand h2 {
  font-size: 2rem;
  margin: 0 0 1rem;
}

.footer-organic .footer-col h4 {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.footer-organic .footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-organic .footer-col ul li {
  margin-bottom: 0.75rem;
}

.footer-organic .footer-col ul li a {
  color: var(--lum-text-muted);
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.95rem;
}

.footer-organic .footer-col ul li a:hover {
  color: var(--lum-accent);
}

/* ═══════════════════════════════════════════════════════════
   12. RESPONSIVE
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  :root {
    --lum-sidebar-width: 0px;
  }

  .side_bar_set {
    display: none;
  }

  .lum-header-organic {
    padding-left: var(--lum-gutter);
  }

  .lum-nav-center {
    display: none;
    /* Hide on mobile, need burger */
  }

  .arch-content-container {
    padding: 10vh 2rem 4rem;
    width: 95%;
  }

  .footer-organic-inner {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .central-line-wrapper {
    display: none;
    /* Hide SVG line on mobile for cleaner view */
  }
}

@media (max-width: 768px) {
  .arch-content-container {
    border-radius: 200px 200px 0 0;
  }

  .footer-organic-inner {
    grid-template-columns: 1fr;
  }

  .hero-organic {
    height: 80vh;
  }
}

/* =============================================================================
   13. STORY SECTIONS — Dark Hero / Fall Zone / Light Process
   Jazean-style cinematic storytelling for interior design
   ============================================================================= */

/* ── SECTION: DARK HERO (Architect + wood plank) ── */
.story-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  z-index: 5;
}

.story-dark {
  background: #1C1410;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px var(--lum-sidebar-width) 80px calc(var(--lum-sidebar-width) + 2rem);
}

/* Ambient glow orbs inside dark section */
.dark-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(160px);
  pointer-events: none;
}

.dark-glow-1 {
  width: 50vw;
  height: 50vw;
  max-width: 700px;
  max-height: 700px;
  background: radial-gradient(circle, rgba(140, 80, 30, 0.25) 0%, transparent 70%);
  top: -20%;
  right: 0;
  animation: glowPulse 8s infinite alternate ease-in-out;
}

.dark-glow-2 {
  width: 40vw;
  height: 40vw;
  max-width: 500px;
  max-height: 500px;
  background: radial-gradient(circle, rgba(188, 155, 87, 0.12) 0%, transparent 70%);
  bottom: 0;
  left: 15%;
  animation: glowPulse 12s infinite alternate-reverse ease-in-out;
}

@keyframes glowPulse {
  0% {
    transform: scale(0.95) translate(-2%, 2%);
    opacity: 0.8;
  }

  100% {
    transform: scale(1.05) translate(2%, -2%);
    opacity: 1;
  }
}

/* Sparkles in dark section */
.sparkle {
  position: absolute;
  pointer-events: none;
  animation: sparkleTwinkle 3s infinite ease-in-out;
}

.sparkle svg {
  display: block;
}

.sparkle-1 {
  top: 12%;
  left: 18%;
  width: 32px;
  animation-duration: 4s;
}

.sparkle-2 {
  top: 22%;
  right: 15%;
  width: 22px;
  animation-duration: 3.2s;
  animation-delay: -1s;
}

.sparkle-3 {
  bottom: 28%;
  left: 42%;
  width: 16px;
  animation-duration: 2.8s;
  animation-delay: -2s;
}

.sparkle-4 {
  top: 60%;
  right: 25%;
  width: 20px;
  animation-duration: 3.8s;
  animation-delay: -0.5s;
}

@keyframes sparkleTwinkle {

  0%,
  100% {
    opacity: 0.3;
    transform: scale(0.85) rotate(0deg);
  }

  50% {
    opacity: 1;
    transform: scale(1.1) rotate(15deg);
  }
}

/* Architect SVG illustration container */
.story-illustration {
  position: relative;
  z-index: 3;
  flex: 0 0 auto;
}

.architect-svg {
  width: clamp(280px, 38vw, 500px);
  height: auto;
  filter: drop-shadow(0 0 60px rgba(188, 155, 87, 0.15));
  animation: architectFloat 6s ease-in-out infinite;
}

@keyframes architectFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-14px);
  }
}

/* "falling-hint" items on architect SVG animate gently */
.falling-hint {
  animation: fallingHintBob 3.5s ease-in-out infinite;
  transform-origin: center;
}

.falling-hint:nth-child(1) {
  animation-delay: 0s;
}

.falling-hint:nth-child(2) {
  animation-delay: 0.8s;
}

.falling-hint:nth-child(3) {
  animation-delay: 1.6s;
}

@keyframes fallingHintBob {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
    opacity: 0.55;
  }

  50% {
    transform: translateY(6px) rotate(3deg);
    opacity: 0.85;
  }
}

/* Dark section text */
.story-text-dark {
  position: relative;
  z-index: 3;
  max-width: 480px;
  margin-left: clamp(2rem, 5vw, 6rem);
}

.story-eyebrow-light {
  display: block;
  font-family: var(--lum-font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--lum-accent);
  margin-bottom: 1.8rem;
}

.story-h1-light {
  font-family: var(--lum-font-display);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 200;
  line-height: 1.12;
  color: #FAF7F0;
  margin: 0 0 2rem;
  letter-spacing: -0.01em;
}

.story-serif-italic {
  font-style: italic;
  font-weight: 300;
  color: #D4AA6A;
}

.story-body-light {
  font-family: var(--lum-font-body);
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.75;
  margin-bottom: 2.5rem;
  font-weight: 300;
}

/* Scroll indicator inside dark section */
.story-text-dark .hero-scroll-indicator {
  position: relative;
  bottom: auto;
  left: auto;
  transform: none;
  align-items: flex-start;
  margin-top: 2.5rem;
}

.story-text-dark .hero-scroll-indicator span {
  color: rgba(255, 255, 255, 0.35);
}

/* ── FALL ZONE (Transition between dark & light) ── */
.story-fall-zone {
  position: relative;
  background: #F0E8DC;
  width: 100%;
  min-height: 220vh;
  overflow: hidden;
  z-index: 4;
}

/* Vertical connector gold thread */
.fall-connector {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.fall-connector svg {
  width: 100%;
  height: 100%;
}

.fall-line-path {
  stroke-dasharray: 900;
  stroke-dashoffset: 900;
  /* GSAP will animate this */
}

/* Each falling interior material item */
.fall-item {
  position: absolute;
  color: #4A3420;
  z-index: 3;
  pointer-events: none;
  will-change: transform;
  /* Each item has position defined inline via style="left:xx%; top:yy%" */
}

.fall-item svg {
  width: clamp(48px, 8vw, 120px);
  height: auto;
  display: block;
}

/* Rotation is set via GSAP in JS, but default initial slightly rotated */
#fi-1 {
  transform: rotate(12deg);
}

#fi-2 {
  transform: rotate(-8deg);
}

#fi-3 {
  transform: rotate(-15deg);
}

#fi-4 {
  transform: rotate(22deg);
}

#fi-5 {
  transform: rotate(-6deg);
}

#fi-6 {
  transform: rotate(18deg);
}

#fi-7 {
  transform: rotate(30deg);
}

#fi-8 {
  transform: rotate(-10deg);
}

#fi-9 {
  transform: rotate(-4deg);
}

#fi-10 {
  transform: rotate(28deg);
}

/* Side floating text labels */
.fall-label {
  position: absolute;
  max-width: 220px;
  z-index: 5;
}

.fall-label-left {
  left: clamp(6rem, 12%, 14rem);
  text-align: left;
}

.fall-label-right {
  right: clamp(6rem, 12%, 14rem);
  text-align: right;
}

.fall-label .story-eyebrow {
  display: block;
  font-family: var(--lum-font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--lum-accent);
  margin-bottom: 0.6rem;
}

.fall-label p {
  font-family: var(--lum-font-body);
  font-size: 0.95rem;
  color: #6B5040;
  line-height: 1.6;
  font-weight: 300;
  margin: 0;
}

/* ── STORY LIGHT SECTION (House Formation) ── */
.story-light {
  background: #F0E8DC;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(3rem, 6vw, 8rem);
  padding: 8rem calc(var(--lum-sidebar-width) + 2rem) 8rem;
  z-index: 6;
  position: relative;
}

/* House SVG illustration */
.story-house-wrap {
  flex: 0 0 auto;
  position: relative;
}

.house-svg {
  width: clamp(280px, 40vw, 500px);
  height: auto;
}

/* Each house part draws in sequentially using stroke-dashoffset */
.h-draw {
  fill: none;
  stroke-dasharray: 2000;
  stroke-dashoffset: 2000;
  transition: stroke-dashoffset 1.2s cubic-bezier(0.4, 0, 0.2, 1);
  transition-delay: var(--dd, 0s);
}

.house-svg.is-drawing .h-draw {
  stroke-dashoffset: 0;
}

/* Smoke rings on chimney animate infinitely when visible */
.smoke-ring {
  animation: smokeDrift 4s ease-in-out infinite;
}

.smoke-ring:nth-child(2) {
  animation-delay: 0.8s;
}

.smoke-ring:nth-child(3) {
  animation-delay: 1.6s;
}

@keyframes smokeDrift {
  0% {
    transform: translateY(0) scale(1);
    opacity: 0.7;
  }

  50% {
    transform: translateY(-8px) scale(1.05);
    opacity: 0.9;
  }

  100% {
    transform: translateY(-16px) scale(1.1);
    opacity: 0;
  }
}

/* Materials collecting at base - pulse */
.house-materials-collect {
  animation: collectPulse 3s ease-in-out infinite;
}

@keyframes collectPulse {

  0%,
  100% {
    opacity: 0.25;
  }

  50% {
    opacity: 0.45;
  }
}

/* Light section text */
.story-text-process {
  max-width: 440px;
}

.story-eyebrow {
  display: block;
  font-family: var(--lum-font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--lum-accent);
  margin-bottom: 1.5rem;
}

.story-h2-dark {
  font-family: var(--lum-font-display);
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  font-weight: 200;
  line-height: 1.12;
  color: #2C1F0E;
  margin: 0 0 1.8rem;
}

.story-serif-italic-dark {
  font-style: italic;
  font-weight: 300;
  color: #7B5A30;
}

.story-body-dark {
  font-family: var(--lum-font-body);
  font-size: 1.05rem;
  color: #6B5040;
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 0;
}

/* Dark version of btn-organic for use on light bg */
.btn-organic-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 2.2rem;
  background: transparent;
  border: 1px solid #4A3420;
  color: #4A3420;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-organic-dark:hover {
  background: #2C1F0E;
  color: #F0E8DC;
  border-color: #2C1F0E;
}

/* ── RESPONSIVE ADJUSTMENTS ── */
@media (max-width: 1024px) {
  .story-dark {
    flex-direction: column;
    text-align: center;
    padding: 140px 2rem 80px;
  }

  .story-text-dark {
    margin-left: 0;
    margin-top: 3rem;
  }

  .story-light {
    flex-direction: column;
    text-align: center;
    padding: 6rem 2rem;
  }

  .story-text-process {
    max-width: 600px;
  }

  .fall-label {
    display: none;
  }

  .story-fall-zone {
    min-height: 150vh;
  }
}

@media (max-width: 768px) {
  .story-h1-light {
    font-size: 3rem;
  }

  .story-h2-dark {
    font-size: 2.5rem;
  }

  .story-dark {
    padding: 120px 1.5rem 60px;
  }

  .story-fall-zone {
    min-height: 120vh;
  }
}


/* END OF FILE */

/* =============================================================================
   14. STORY JOURNEY — Full-Bleed Video Backgrounds & Translucent Oval Cards
   ============================================================================= */

.story-journey {
  position: relative;
  background: var(--lum-bg);
  overflow: hidden;
  z-index: 5;
}

/* Global Winding Scroll Line */
.jny-line-global {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 3;
}

.jny-svg-global {
  width: 100%;
  height: 100%;
  display: block;
}

/* Step 2 Solid Background & Floating Icons */
.jny-step-solid {
  background-color: #FAF6EE;
  position: relative;
}

.jny-falling-container {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
  overflow: hidden;
}

/* Background hand-drawn illustrations for steps with light backgrounds */
.jny-bg-illustration {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: clamp(200px, 18vw, 320px);
  height: auto;
  pointer-events: none;
  z-index: 1;
}

.jny-bg-left {
  left: 2%;
}

.jny-bg-right {
  right: 2%;
}

.jny-float-icon {
  position: absolute;
  width: 50px;
  height: 50px;
  color: rgba(188, 155, 87, 0.25);
  pointer-events: none;
}

.jny-float-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* Drifting icon positions across the journey */
.fi-1 {
  top: 12%;
  left: 8%;
}

.fi-2 {
  top: 25%;
  right: 10%;
}

.fi-3 {
  top: 40%;
  left: 14%;
}

.fi-4 {
  top: 52%;
  right: 12%;
}

.fi-5 {
  top: 68%;
  left: 10%;
}

.fi-6 {
  top: 78%;
  right: 15%;
}

.fi-7 {
  top: 86%;
  left: 15%;
}

.jny-intro {
  text-align: center;
  padding: 8rem calc(var(--lum-sidebar-width) + 2rem) 4rem;
  position: relative;
  z-index: 5;
  background: var(--lum-bg);
}

.jny-intro-title {
  font-family: var(--lum-font-display);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 200;
  color: var(--lum-text-primary);
  margin: 0.8rem 0 1rem;
  line-height: 1.1;
}

.jny-intro-sub {
  font-family: var(--lum-font-body);
  font-size: 1.05rem;
  color: var(--lum-text-muted);
  font-weight: 300;
  letter-spacing: 0.05em;
  margin: 0;
}

/* Full-bleed step sections */
.jny-step-full {
  position: relative;
  height: 100vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

/* Video Background */
.jny-step-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.jny-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Overlay to darken video slightly for text contrast */
.jny-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(18, 14, 11, 0.45);
  z-index: 2;
}

/* Oval Wrapper and outlines */
.jny-oval-wrapper {
  position: relative;
  width: min(440px, 90vw);
  aspect-ratio: 0.72;
  z-index: 5;
  display: flex;
  justify-content: center;
  align-items: center;
}

.jny-oval-outline {
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  border: 1.2px solid rgba(188, 155, 87, 0.55);
  pointer-events: none;
  z-index: 1;
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Translucent Cream Card */
.jny-oval-card {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(254, 252, 247, 0.92);
  backdrop-filter: blur(12px) saturate(120%);
  -webkit-backdrop-filter: blur(12px) saturate(120%);
  border: 1px solid rgba(188, 155, 87, 0.35);
  box-shadow: 0 30px 60px rgba(18, 14, 11, 0.25);
  padding: 4.5rem 3.2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  z-index: 2;
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

/* Inner content elements */
.jny-oval-icon-top {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
}

.jny-oval-icon-top svg {
  width: 100%;
  height: 100%;
}

.jny-oval-step {
  display: block;
  font-family: var(--lum-font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  color: var(--lum-accent);
  text-transform: uppercase;
  margin-top: 0.5rem;
}

.jny-oval-eyebrow {
  display: block;
  font-family: var(--lum-font-body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  color: var(--lum-text-muted);
  text-transform: uppercase;
  margin-top: 0.25rem;
  margin-bottom: 0.75rem;
}

.jny-oval-title {
  font-family: var(--lum-font-display);
  font-size: clamp(1.8rem, 2.5vw, 2.2rem);
  font-weight: 200;
  color: var(--lum-text-primary);
  line-height: 1.15;
  margin: 0.25rem 0 1rem;
}

.jny-oval-body {
  font-family: var(--lum-font-body);
  font-size: 0.92rem;
  color: var(--lum-text-muted);
  line-height: 1.65;
  font-weight: 300;
  margin-bottom: 1.2rem;
  max-width: 320px;
}

.jny-oval-tags {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.2rem;
}

.jny-oval-tags span {
  font-family: var(--lum-font-body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--lum-text-muted);
  text-transform: uppercase;
  border: 1px solid rgba(188, 155, 87, 0.25);
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  background: rgba(254, 252, 247, 0.5);
  transition: all 0.3s ease;
}

.jny-oval-tags span:hover {
  background: rgba(188, 155, 87, 0.15);
  border-color: var(--lum-accent);
  color: var(--lum-text-primary);
}

.jny-oval-cta-wrap {
  margin-top: 0.2rem;
  display: flex;
  justify-content: center;
  z-index: 10;
  position: relative;
}

.jny-oval-icon-bottom {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.5rem;
}

.jny-oval-icon-bottom svg {
  width: 100%;
  height: 100%;
}

/* Hover effects */
.jny-step-full:hover .jny-oval-outline {
  transform: scale(1.03) rotate(1deg);
  border-color: var(--lum-accent);
}

.jny-step-full:hover .jny-oval-card {
  border-color: var(--lum-accent);
  box-shadow: 0 40px 80px rgba(18, 14, 11, 0.35);
}

/* Journey Terminus - Solid Cream transition section below the full-bleed steps */
.jny-terminus {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  padding: 8rem 2rem 8rem;
  position: relative;
  z-index: 5;
  background: #F0E8DC;
  border-top: 1px solid rgba(188, 155, 87, 0.15);
}
/* Connection line from above connecting the oval to the house */
.jny-terminus-connector {
  position: absolute;
  top: -15vh;
  left: 50%;
  transform: translateX(-50%);
  width: 1.5px;
  height: calc(15vh + 8rem);
  background: rgba(188, 155, 87, 0.15);
  z-index: 10;
  overflow: hidden;
}

.jny-terminus-line-anim {
  width: 100%;
  height: 50%;
  background: linear-gradient(to bottom, rgba(188,155,87,0) 0%, rgba(188,155,87,0.8) 50%, rgba(188,155,87,0) 100%);
  animation: journeyLineDrop 3s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes journeyLineDrop {
  0% { transform: translateY(-100%); opacity: 0; }
  20% { opacity: 1; }
  80% { opacity: 1; }
  100% { transform: translateY(200%); opacity: 0; }
}

.jny-terminus-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(188, 155, 87, 0.12) 0%, transparent 70%);
  animation: glowPulse 4s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}

.jny-terminus-ring-outer {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 278px;
  height: 278px;
  border-radius: 50%;
  border: 1px solid rgba(188, 155, 87, 0.22);
  animation: circleBreath 6s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}

.jny-terminus-ring {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(188, 155, 87, 0.08);
  border: 1.5px solid rgba(188, 155, 87, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s ease;
  animation: circleBreath 5s ease-in-out infinite;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 60px rgba(188, 155, 87, 0.12), inset 0 0 40px rgba(188, 155, 87, 0.05);
}

.jny-terminus-ring:hover {
  background: rgba(188, 155, 87, 0.15);
  box-shadow: 0 0 80px rgba(188, 155, 87, 0.3), inset 0 0 40px rgba(188, 155, 87, 0.1);
  border-color: rgba(188, 155, 87, 0.85);
}

.jny-terminus-ring svg {
  width: 140px;
  height: 140px;
}

.jny-terminus-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 200;
  color: #2C1F0E;
  margin: 0.5rem 0 0;
  letter-spacing: 0.04em;
  text-align: center;
}

.jny-terminus-sub {
  font-family: 'Jost', sans-serif;
  font-size: 0.85rem;
  color: #7B5A38;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin: 0;
  font-weight: 500;
}

/* RESPONSIVE DESIGN FOR STEPS */
@media (max-width: 1024px) {
  .jny-intro {
    padding: 6rem 2rem 3rem;
  }
}

@media (max-width: 768px) {
  .jny-oval-wrapper {
    width: 90%;
    aspect-ratio: auto;
    min-height: 60vh;
    padding: 1rem 0;
  }

  .jny-oval-card {
    border-radius: 40px;
    padding: 3.5rem 1.5rem;
  }

  .jny-oval-outline {
    border-radius: 48px;
    inset: -8px;
  }

  .jny-oval-title {
    font-size: 1.8rem;
  }

  .jny-oval-body {
    font-size: 0.88rem;
    max-width: 280px;
  }

  .jny-terminus {
    padding: 5rem 2rem 5rem;
  }

  .jny-terminus-ring-outer {
    width: 238px;
    height: 238px;
  }

  .jny-terminus-ring {
    width: 180px;
    height: 180px;
  }

  .jny-terminus-ring svg {
    width: 110px;
    height: 110px;
  }
}

/* =============================================================================
   15. LUM-HERO — Jazean-style Editorial Hero Section (Light Editorial Mode)
   Light cream-to-gold gradient + gold contour blueprint waves + centered medallion
   ============================================================================= */

.lum-hero {
  position: relative;
  height: 85vh;
  min-height: 620px;
  background: linear-gradient(135deg,
      #FEFCF7 0%,
      #FAF6EE 50%,
      #F3ECE0 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 80px var(--lum-sidebar-width) 0;
  /* Clear fixed header */
}

/* Full-bleed blueprint SVG background */
.lum-hero-bp {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.lum-hero-bp path {
  stroke-dasharray: 1800;
  stroke-dashoffset: 1800;
  animation: drawBlueprintLines 15s ease-in-out infinite alternate;
}

@keyframes drawBlueprintLines {
  0% {
    stroke-dashoffset: 1800;
    opacity: 0.15;
  }

  100% {
    stroke-dashoffset: 0;
    opacity: 0.8;
  }
}

/* Ambient glow orbs in soft gold/cream */
.lum-hero-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

.lum-hero-glow-1 {
  width: clamp(400px, 55vw, 800px);
  height: clamp(400px, 55vw, 800px);
  background: radial-gradient(circle, rgba(188, 155, 87, 0.12) 0%, transparent 65%);
  top: -20%;
  right: -10%;
  animation: glowFloat1 18s infinite alternate ease-in-out;
}

.lum-hero-glow-2 {
  width: clamp(300px, 40vw, 600px);
  height: clamp(300px, 40vw, 600px);
  background: radial-gradient(circle, rgba(188, 155, 87, 0.06) 0%, transparent 70%);
  bottom: -10%;
  left: 5%;
  animation: glowFloat2 22s infinite alternate-reverse ease-in-out;
}

@keyframes glowFloat1 {
  0% {
    transform: translate(0, 0) scale(1);
  }

  100% {
    transform: translate(45px, 35px) scale(1.08);
  }
}

@keyframes glowFloat2 {
  0% {
    transform: translate(0, 0) scale(1);
  }

  100% {
    transform: translate(-35px, -45px) scale(1.12);
  }
}

/* Content wrapper — centered column layout */
.lum-hero-inner {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.1rem;
  max-width: 900px;
  padding: 4rem 2rem 4rem;
}

/* ── Medallion badge ── */
.lum-medal {
  position: relative;
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 15px;
  /* Clearance for outer pulsating ring */
  margin-bottom: 0.2rem;
}

.lum-medal-ring-outer {
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  border: 1px solid rgba(188, 155, 87, 0.45);
  animation: circleBreath 5s ease-in-out infinite;
}

.lum-medal-core {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 1.5px solid rgba(188, 155, 87, 0.75);
  background: rgba(188, 155, 87, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(188, 155, 87, 0.15), inset 0 0 20px rgba(188, 155, 87, 0.05);
  animation: circleBreath 5s ease-in-out infinite;
  transition: all 0.4s ease;
}

.lum-medal-core:hover {
  background: rgba(188, 155, 87, 0.22);
  box-shadow: 0 15px 40px rgba(188, 155, 87, 0.28);
}

.lum-medal-icon {
  width: 48px;
  height: 48px;
}

/* ── Brand label ── */
.lum-hero-brand {
  font-family: var(--lum-font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--lum-accent);
  margin: 0;
}

/* ── Hero Title ── */
.lum-hero-title {
  font-family: var(--lum-font-display);
  font-weight: 200;
  line-height: 1.15;
  color: var(--lum-text-primary);
  margin: 0.4rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  letter-spacing: 0.04em;
}

.lum-hero-line {
  display: block;
  font-size: clamp(2.2rem, 4.2vw, 4.2rem);
  font-weight: 300;
  letter-spacing: 0.12em;
}

.lum-hero-line-serif {
  font-size: clamp(2rem, 3.8vw, 3.8rem);
  letter-spacing: 0.05em;
}

.lum-hero-line-serif em {
  font-style: italic;
  font-weight: 300;
  color: #B08D46;
}

/* Decorative line between text rows */
.lum-hero-title::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: rgba(188, 155, 87, 0.5);
  margin: 1.2rem auto 0.6rem;
}

/* ── Body text ── */
.lum-hero-body {
  font-family: var(--lum-font-body);
  font-size: clamp(0.92rem, 1.1vw, 1.05rem);
  color: var(--lum-text-muted);
  line-height: 1.75;
  font-weight: 300;
  margin: 0.3rem 0;
  max-width: 500px;
}

/* ── CTA Button ── */
.lum-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 2.2rem;
  border: 1px solid var(--lum-text-primary);
  border-radius: 50px;
  color: var(--lum-text-primary);
  font-family: var(--lum-font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  margin-top: 0.6rem;
  transition: all 0.35s ease;
  background: transparent;
}

.lum-hero-cta:hover {
  background: var(--lum-text-primary);
  color: var(--lum-bg);
  box-shadow: 0 10px 30px rgba(44, 42, 38, 0.15);
}

/* ── Bottom scroll indicator ── */
.lum-hero-scroll {
  position: absolute;
  bottom: 2.2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 1.2rem;
  z-index: 5;
}

.lum-hero-scroll span {
  font-family: var(--lum-font-body);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--lum-text-muted);
  white-space: nowrap;
}

.lum-hero-scroll-line {
  width: 40px;
  height: 1px;
  background: rgba(188, 155, 87, 0.5);
  position: relative;
  overflow: hidden;
}

.lum-hero-scroll-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--lum-accent);
  animation: scrollLineSweep 2.5s ease-in-out infinite;
}

@keyframes scrollLineSweep {
  0% {
    left: -100%;
  }

  50% {
    left: 100%;
  }

  100% {
    left: 100%;
  }
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .lum-hero {
    padding: 0 2rem;
  }

  .lum-hero-inner {
    padding: 4rem 1.5rem 4rem;
  }
}

@media (max-width: 768px) {
  .lum-hero {
    height: auto;
    min-height: 70vh;
    padding: 6rem 1.5rem 4rem;
  }

  .lum-hero-line {
    font-size: 1.8rem;
  }

  .lum-hero-line-serif {
    font-size: 1.6rem;
  }

  .lum-hero-body {
    font-size: 0.9rem;
  }
}

/* ═══════════════════════════════════════════════════════════
   13. DUAL AUDIENCE SECTION
   ═══════════════════════════════════════════════════════════ */
.dual-audience-section {
  background: radial-gradient(circle at center, #1b1816 0%, #110e0c 100%);
  position: relative;
  padding: 4rem 0 3rem var(--lum-sidebar-width);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.dual-audience-container {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  gap: 6rem;
  position: relative;
}

.audience-circle {
  position: relative;
  width: 320px;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.audience-ring {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(188, 155, 87, 0.2);
  border-radius: 50%;
  pointer-events: none;
}

.audience-ring::before {
  content: '';
  position: absolute;
  top: -10px;
  right: -10px;
  bottom: -10px;
  left: -10px;
  border: 1px dashed rgba(188, 155, 87, 0.4);
  border-radius: 50%;
  animation: rotateRing 60s linear infinite;
}

@keyframes rotateRing {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.audience-content {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.audience-content i {
  font-size: 2.5rem;
  color: var(--lum-white);
  font-weight: 300;
}

.audience-content h3 {
  font-size: 1.5rem;
  color: var(--lum-white);
  font-family: var(--lum-font-display);
  letter-spacing: 0.2em;
  margin: 0;
}

.btn-audience {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--lum-white);
  padding: 0.8rem 2.5rem;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.4s ease;
  border-radius: 30px;
}

.btn-audience:hover {
  background: var(--lum-accent);
  color: var(--lum-white);
  border-color: var(--lum-accent);
  transform: translateY(-2px);
}

.audience-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 150px;
  position: relative;
}

.hanging-line {
  position: absolute;
  top: -200px;
  bottom: 60%;
  width: 1px;
  background: linear-gradient(to bottom, rgba(188, 155, 87, 0), rgba(188, 155, 87, 0.5));
}

.emblem-container {
  width: 90px;
  height: 90px;
  position: relative;
  z-index: 2;
}

.audience-bottom-pattern {
  width: 100%;
  height: 40px;
  margin-top: 5rem;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0 L60 30 L30 60 L0 30 Z' fill='none' stroke='%23BC9B57' stroke-opacity='0.8' stroke-width='1'/%3E%3Ccircle cx='30' cy='30' r='10' fill='none' stroke='%23BC9B57' stroke-opacity='0.8' stroke-width='1'/%3E%3C/svg%3E");
  background-repeat: repeat-x;
  background-size: 60px 60px;
  opacity: 1;
}

@media (max-width: 1024px) {
  .dual-audience-section {
    margin-left: 0;
    padding: 6rem 1rem 4rem;
  }

  .dual-audience-container {
    flex-direction: column;
    align-items: center;
    gap: 4rem;
  }

  .hanging-line {
    display: none;
  }
}

/* ═══════════════════════════════════════════════════════════
   11. LATEST JOURNAL / BLOG SECTION
   ═══════════════════════════════════════════════════════════ */
.journal-section {
  padding: 8rem 0 8rem var(--lum-sidebar-width);
  background: var(--lum-bg);
  position: relative;
  z-index: 5;
}

.journal-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 var(--lum-gutter);
}

.journal-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 4rem;
}

.journal-title {
  font-family: var(--lum-font-display);
  font-size: var(--lum-text-h2);
  font-weight: 300;
  margin: 0;
  color: var(--lum-text-primary);
}

.journal-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 3rem;
}

@media (min-width: 768px) {
  .journal-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1200px) {
  .journal-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.journal-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
}

.journal-img-wrap {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: 200px 200px 0 0;
  overflow: hidden;
  margin-bottom: 1.5rem;
  background: var(--lum-surface);
}

.journal-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.journal-card:hover .journal-img-wrap img {
  transform: scale(1.05);
}

.journal-content {
  text-align: center;
  padding: 0 1rem;
}

.journal-date {
  font-family: var(--lum-font-body);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--lum-accent);
  display: block;
  margin-bottom: 1rem;
}

.journal-content h3 {
  font-family: var(--lum-font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--lum-text-primary);
  margin: 0 0 1rem;
  line-height: 1.3;
}

.journal-content p {
  font-family: var(--lum-font-body);
  font-size: 0.95rem;
  color: var(--lum-text-muted);
  line-height: 1.6;
  margin: 0 0 1.5rem;
}

.journal-read-more {
  display: inline-flex;
  align-items: center;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--lum-text-primary);
  border-bottom: 1px solid var(--lum-accent);
  padding-bottom: 0.3rem;
  transition: all 0.3s ease;
}

.journal-card:hover .journal-read-more {
  color: var(--lum-accent);
  border-color: var(--lum-text-primary);
}

/* ═══════════════════════════════════════════════════════════
   14. MOBILE MENU FIX
   ═══════════════════════════════════════════════════════════ */
.site-header {
  z-index: 999999 !important;
}

.mobile-toggle {
  position: relative !important;
  z-index: 9999999 !important;
  pointer-events: auto !important;
  cursor: pointer !important;
}

.main-nav, #mainNav {
  z-index: 999998 !important;
}