:root{
  --cream:#F4EFE4;
  --offwhite:#FBF7EF;
  --taupe:#C9B9A3;
  --olive:#60633F;
  --brown:#3A2E22;
  --burgundy:#6E2434;
  --burgundy-light:#9C4C5C;
  --burgundy-deep:#4B1B25;
  --white:#FFFFFF;
  --sage-dark:#58641D;
  --sage-mid:#7B904B;
  --sage-light:#BBCF8D;
  --sage-deepest:#3C4415;
  --charcoal-green: #3D4234;
  --deep-olive: #46543F;
}

*{box-sizing:border-box; margin:0; padding:0;}
html{scroll-behavior:smooth;}
body{
  background:var(--cream);
  color:var(--brown);
  font-family:'Jost', sans-serif;
  font-weight:300;
  line-height:1.6;
  overflow-x:hidden;
  position:relative;
}
/* subtle grain, shared across every section, to unify the surfaces */
body::after{
  content:"";
  position:fixed; inset:0; z-index:999; pointer-events:none;
  opacity:0.05; mix-blend-mode:multiply;
  background-image:
    repeating-linear-gradient(0deg, rgba(58,46,34,0.5) 0px, rgba(58,46,34,0.5) 1px, transparent 1px, transparent 3px),
    repeating-linear-gradient(90deg, rgba(58,46,34,0.4) 0px, rgba(58,46,34,0.4) 1px, transparent 1px, transparent 3px);
}
h1,h2,h3,h4,.serif{
  font-family:'Cormorant Garamond', serif;
  font-weight:500;
  letter-spacing:0.01em;
}
a{ text-decoration:none; color:inherit; }
.wrap{ max-width:1180px; margin:0 auto; padding:0 6vw; }


/* ============================================================
   SEAM BLENDING SYSTEM
   Two effects layered together at every section boundary:
   1) .seam-top — a dark dissolve overlay at the TOP of a section,
      so the previous section's color melts into this one instead
      of cutting hard.
   2) .self-vignette — each colored section darkens slightly at its
      own top/bottom edges, so it reads as a soft-edged panel
      rather than a flat block with a hard boundary.
   ============================================================ */
section{ overflow:hidden; } /* keep seam pseudo-elements contained */

.seam-top{ position:relative; }
.seam-top::before{
  content:"";
  position:absolute; top:0; left:0; right:0; z-index:2;
  pointer-events:none;
}
.seam-soft::before{ height:90px; background:linear-gradient(to bottom, rgba(10,10,6,0.22) 0%, transparent 100%); }
.seam-medium::before{ height:120px; background:linear-gradient(to bottom, rgba(10,10,6,0.32) 0%, transparent 100%); }
.seam-strong::before{ height:150px; background:linear-gradient(to bottom, rgba(8,9,4,0.48) 0%, transparent 100%); }

.self-vignette{
  box-shadow:
    inset 0 40px 50px -40px rgba(0,0,0,0.35),
    inset 0 -40px 50px -40px rgba(0,0,0,0.35);
}
.self-vignette-soft{
  box-shadow:
    inset 0 30px 40px -32px rgba(0,0,0,0.16),
    inset 0 -30px 40px -32px rgba(0,0,0,0.16);
}
.self-vignette-top{
  box-shadow: inset 0 40px 50px -40px rgba(0,0,0,0.35);
}
.self-vignette-bottom{
  box-shadow: inset 0 -40px 50px -40px rgba(0,0,0,0.35);
}

/* ============================================================
   TAP GATE + LOADING SCREEN + BACKGROUND MUSIC
   ============================================================ */
.tap-gate{
  position:fixed; inset:0; z-index:10000;
  background: #0000;
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  cursor:pointer;
  transition:opacity .6s ease;
}
.tap-gate.tap-gate-hide{ opacity:0; pointer-events:none; }

.tap-circle-wrap{
  position:relative;
  width:110px; height:110px;
  display:flex; align-items:center; justify-content:center;
}
.tap-ripple{
  position:absolute; inset:0;
  border:1px solid rgba(255, 255, 255, 0.4);
  border-radius:50%;
  animation:tap-ripple 2.4s ease-out infinite;
}
.tap-ripple-delay-1{ animation-delay:0.8s; }
.tap-ripple-delay-2{ animation-delay:1.6s; }
@keyframes tap-ripple{
  0%{ transform:scale(0.55); opacity:0.9; }
  100%{ transform:scale(1.9); opacity:0; }
}
.tap-label{
  position:relative; z-index:2;
  font-family:'Jost', sans-serif;
  font-weight:400;
  font-size:0.85rem; letter-spacing:0.16em; text-transform:uppercase;
  color:var(--white);
}

/* Small centered clip on a black field, rather than full-bleed */
.loading-screen{
  position:fixed; inset:0; z-index:9999;
  background:#000;
  display:flex; align-items:center; justify-content:center;
  transition:opacity .8s ease;
}
.loading-screen video{
  width:290px; height:auto;
  max-height:65vh;
  border-radius:6px;
  box-shadow:0 20px 50px rgba(0,0,0,0.55);
}
.loading-screen.loading-screen-hide{ opacity:0; pointer-events:none; }

/* NAV */
nav{
  position:fixed; top:0; left:0; right:0; z-index:50;
  display:flex; align-items:center; justify-content:space-between;
  padding:1.6rem 6vw;
  color:var(--cream);
  transition:background .4s ease, color .4s ease, opacity .4s ease;
}
#mainNav{ opacity:0; pointer-events:none; }
#mainNav.scrolled{ opacity:1; pointer-events:auto; }
nav.scrolled{
  background:rgba(244,239,228,0.92);
  color:var(--burgundy-deep);
  backdrop-filter:blur(6px);
  padding:1rem 6vw;
  border-bottom:1px solid rgba(58,46,34,0.08);
}
.logo{ font-family:'Cormorant Garamond', serif; font-size:1.5rem; letter-spacing:0.05em; font-weight:600; }
.navlinks{ display:flex; gap:2.4rem; font-size:0.8rem; letter-spacing:0.06em; }
.navlinks a{ position:relative; }
.navlinks a::after{
  content:""; position:absolute; left:0; bottom:-4px; width:0; height:1px;
  background:currentColor; transition:width .3s ease;
}
.navlinks a:hover::after{ width:100%; }

/* HERO — Artemis-style focused frame floating over its own blurred backdrop,
   nav lives inside the sharp frame, content is centered and compact */
.hero{
  position:relative; height:100vh; height:100dvh; min-height:520px;
  display:flex; align-items:center; justify-content:center;
  color:var(--cream);
  overflow:hidden;
  background: var(--olive);
}

/* Full-bleed blurred backdrop — same footage as the frame, scaled + blurred */
.hero-bg-blur{
  position:absolute; inset:-8%;
  overflow:hidden;
}
.hero-bg-blur video{
  width:100%; height:100%; object-fit:cover;
  filter:blur(30px) saturate(1.1) brightness(0.95);
  transform:scale(1.2);
}
.hero-bg-blur::after{
  content:"";
  position:absolute; inset:0;
  background:
    linear-gradient(to bottom, transparent 55%, var(--sage-deepest) 100%),
    rgba(109, 156, 54, 0.1);
}

/* Sharp focused frame — kept compact so more blurred backdrop shows around it */
.hero-frame{
  position:relative; z-index:2;
  width:min(90vw);
  height:min(75vh);
  border-radius:18px;
  overflow:hidden;
  border:1px solid rgba(244,239,228,0.16);
  box-shadow:0 40px 90px rgba(0,0,0,0.5);
}
.hero-frame-media{
  position:absolute; inset:0;
}
.hero-frame-media video{
  width:100%; height:100%; object-fit:cover;
  filter:brightness(0.75);
}

/* Nav lives inside the focused frame, not the blurred surround */
.hero-nav{
  position:absolute; top:0; left:0; right:0; z-index:4;
  display:flex; align-items:center; justify-content:space-between;
  padding:1.3rem 1.6rem;
  background:linear-gradient(to bottom, rgba(10,8,5,0.55), transparent);
}
.hero-nav .logo{ font-size:1.2rem; }
.hero-nav .navlinks{ font-size:0.74rem; gap:1.8rem; }

/* Centered, compact text stack directly on the video */
.hero-frame-content{
  position:absolute; inset:0; z-index:3;
  display:flex; flex-direction:column; align-items:center; justify-content:end;
  text-align:center;
  padding:2rem;
  gap:0.45rem;
  background:rgba(10,8,5,0.3);
}
.hero-eyebrow{
  font-family:'Cormorant Garamond', serif;
  font-style:italic;
  font-size:clamp(0.95rem, 1.4vw, 1.1rem);
  font-weight:500;
  letter-spacing:0.02em;
  opacity:0.85;
}
.hero-wordmark{
  font-family:'Cormorant Garamond', serif;
  font-weight:600;
  font-size:clamp(2.1rem, 4.6vw, 3.4rem);
  letter-spacing:0.02em;
  line-height:1;
  margin-bottom:0.6rem;
  text-shadow:0 2px 16px rgba(0,0,0,0.35);
}
.hero-frame-content .btn{ margin-top:0.3rem; }

.scroll-cue{
  position:absolute; bottom:1.6rem; left:50%; transform:translateX(-50%); z-index:2;
  font-size:0.7rem; letter-spacing:0.12em; color:var(--cream); opacity:0.6;
  display:flex; flex-direction:column; align-items:center; gap:0.5rem;
}
.scroll-arrow-wrap{
  display:block;
  animation:scroll-bounce 1.8s ease-in-out infinite;
}
.scroll-arrow{
  display:block;
  width:7px; height:7px;
  border-right:1px solid currentColor;
  border-bottom:1px solid currentColor;
  transform:rotate(45deg);
}
@keyframes scroll-bounce{
  0%, 100%{ transform:translateY(0); }
  50%{ transform:translateY(6px); }
}

@media (max-width:860px){
  .hero-frame{ width:88vw; height:70vh; }
}
@media (max-width:640px){
  .hero-frame{ width:92vw; height:65vh; border-radius:14px; }
  .hero-nav .navlinks{ display:none; }
  .hero-frame-content{ padding:1.6rem; }
}

/* CINEMATIC REVEAL SECTION */
.cinematic{
  min-height:80vh;
  display:flex; align-items:center; justify-content:center;
  position:relative;
  background:
    radial-gradient(ellipse 50% 45% at 50% 45%, rgba(187,207,141,0.16), transparent 65%),
    radial-gradient(ellipse 70% 60% at 20% 15%, rgba(123,144,75,0.34), transparent 60%),
    radial-gradient(ellipse 60% 55% at 85% 90%, rgba(59,68,20,0.45), transparent 55%),
    linear-gradient(145deg, var(--sage-deepest) 0%, var(--sage-dark) 100%);
  color:var(--cream);
  text-align:center;
  padding:6rem 0;
  box-shadow:inset 0 1px 0 rgba(244,239,228,0.08);
}
.reveal-title{
  font-size:clamp(1.5rem, 4.6vw, 3.4rem);
  font-weight:500;
  display:flex; justify-content:center; gap:0.5rem; flex-wrap:nowrap;
  white-space:nowrap;
  text-shadow:0 2px 14px rgba(0,0,0,0.3);
}
.reveal-title .word{
  opacity:0; transform:translateY(24px);
  transition:opacity 0.9s ease, transform 0.9s ease;
}
.reveal-title.in-view .word:nth-child(1){ transition-delay:0.1s; }
.reveal-title.in-view .word:nth-child(2){ transition-delay:0.25s; }
.reveal-title.in-view .word:nth-child(3){ transition-delay:0.4s; }
.reveal-title.in-view .word:nth-child(4){ transition-delay:0.55s; }
.reveal-title.in-view .word:nth-child(5){ transition-delay:0.7s; }
.reveal-title.in-view .word{ opacity:1; transform:translateY(0); }

@media (max-width:640px){
.cinematic{
  min-height:55vh;
  display:flex; align-items:start; justify-content:center;
}

  .reveal-title{ flex-wrap:wrap; white-space:normal; gap:0.35rem 0.5rem; font-size: 42px; line-height: 40px;}
}

.reveal-tagline{
  margin-top:1.4rem;
  font-family:'Cormorant Garamond', serif;
  font-style:italic; font-weight:500;
  font-size:clamp(1.1rem, 2vw, 1.5rem);
  color:var(--taupe);
  opacity:0; transform:translateY(16px);
  transition:opacity .9s ease .9s, transform .9s ease .9s;
}
.reveal-tagline.in-view{ opacity:1; transform:translateY(0); }

.reveal-para{
  margin-top:1rem; font-size:1.05rem; max-width:480px; margin-left:auto; margin-right:auto;
  opacity:0; transform:translateY(16px);
  transition:opacity 1s ease 1.4s, transform 1s ease 1.4s;
  color:rgba(244,239,228,0.8);
}
.reveal-para.in-view{ opacity:1; transform:translateY(0); }

/* SECTION SPACING */
section{ padding:7.5rem 0; position:relative; }
.section-narrow{ max-width:640px; margin:0 auto; text-align:center; }

/* THE RIELLA EXPERIENCE INTRO */
.intro-tag1{
  display: none;
}
.intro-tag{
  display:inline-block;
  font-size:0.7rem; letter-spacing:0.13em; text-transform:uppercase;
  padding:0.4rem 0.9rem;
  border-radius:4px;
  border:1px solid rgba(110,36,52,0.35);
  background:rgba(110,36,52,0.06);
  color:var(--burgundy);
  margin-bottom:1.2rem;
}
.up-body .intro-tag{
  color:var(--sage-light);
  background:rgba(187,207,141,0.12);
  border-color:rgba(187,207,141,0.4);
}
.way .intro-tag{
  color:var(--cream);
  background:rgba(244,239,228,0.1);
  border-color:rgba(244,239,228,0.35);
}
.exp-intro .intro-tag, .journal .intro-tag{
  color:var(--sage-dark);
  background:rgba(88,100,29,0.08);
  border-color:rgba(88,100,29,0.3);
}

/* Small decorative rule above key section headings, for a bit of
   editorial structure ("neatly styled" ask) */
.exp-head::before{
  content:"";
  display:block;
  width:52px; height:2px;
  background:var(--sage-mid);
  margin:0 auto 1.4rem;
}
.intro h2{ font-size:clamp(1.9rem,3.4vw,2.7rem); }
.intro p{ margin-top:1.3rem; font-size:1.02rem; color:#5a4c3c; }
.btn{
  display:inline-block;
  padding:0.85rem 2rem;
  border:1px solid var(--burgundy);
  color:var(--burgundy);
  font-size:0.82rem; letter-spacing:0.08em;
  transition:background .3s ease, color .3s ease;
}
.btn:hover{ background:var(--burgundy); color:var(--cream); }
.btn-light{ border-color:var(--cream); color:var(--cream); }
.btn-light:hover{ background:var(--cream); color:var(--burgundy-deep); }

/* Reserve Your Seat only — a recurring silver shine sweep, on a loop,
   not dependent on hover */
.btn-shine{ position:relative; overflow:hidden; }
.btn-shine::before{
  content:"";
  position:absolute; top:0; left:-60%; width:35%; height:100%;
  background:linear-gradient(115deg,
    transparent 0%,
    rgba(255,255,255,0.55) 45%,
    rgba(255,255,255,0.85) 50%,
    rgba(255,255,255,0.55) 55%,
    transparent 100%);
  transform:skewX(-20deg);
  pointer-events:none;
  animation:shine-sweep 3.8s ease-in-out infinite;
}
@keyframes shine-sweep{
  0%{ left:-60%; }
  16%{ left:130%; }
  100%{ left:130%; }
}

/* EXPERIENCES — now a tall section with the copy sitting inside a
   classily framed "tab" card, rather than plain text on the background */
.exp-intro{
  min-height:78vh;
  display:flex; align-items:center;
  background:
    radial-gradient(ellipse 60% 60% at 80% 10%, rgba(187,207,141,0.22), transparent 60%),
    linear-gradient(180deg, #EEF1E2 0%, #E4EACF 100%);
  padding:6rem 0;
  box-shadow:inset 0 1px 0 rgba(58,46,34,0.06);
}
.exp-intro .wrap{ width:100%; }
.exp-head h2{ text-shadow:0 1px 0 rgba(255,255,255,0.6); }
.exp-category-label-center{ text-align:center; margin-top:2.2rem; margin-bottom:0; }
.exp-head{ text-align:center; margin-bottom:4.5rem; }
.exp-head .intro-tag{ margin-bottom:0.8rem; }
.exp-head h2{ font-size:clamp(1.8rem,3vw,2.4rem); }

.exp-intro .exp-head{
  margin-bottom:0;
  max-width:760px; margin-left:auto; margin-right:auto;
  background:rgba(255,255,255,0.6);
  border:1px solid rgba(88,100,29,0.18);
  border-top:3px solid var(--sage-mid);
  border-radius:4px 4px 14px 14px;
  padding:3.4rem 3rem;
  box-shadow:0 26px 55px rgba(58,46,34,0.1);
}
@media (max-width:640px){

.intro-tag1{
  display:inline-block;
  font-size:0.7rem; letter-spacing:0.13em; text-transform:uppercase;
  padding:0.4rem 0.9rem;
  border-radius:4px;
  background:rgba(187,207,141,0.12);
  border: 1px solid rgba(187,207,141,0.4);
  color:var(--sage-light);
  margin-bottom:1.2rem;
  text-align: center;
}

.intro-tag{
  display: none;
}

.exp-intro{
  min-height: 65vh;
  padding: 3rem 0;
}
  .exp-intro .exp-head{ padding:2.4rem 1.6rem; }
}

.exp-list{ display:flex; flex-direction:column; }
.exp-row{
  display:grid; grid-template-columns:1fr 1.15fr;
  gap:4rem; align-items:center;
  padding:3.6rem 0;
  border-top:1px solid rgba(58,46,34,0.12);
}
.exp-row:last-child{ border-bottom:1px solid rgba(58,46,34,0.12); }
.exp-visual{
  aspect-ratio:4/3; border-radius:8px;
  position:relative; overflow:hidden;
  box-shadow:0 18px 36px rgba(0,0,0,0.16);
}
.v-mood{ background:linear-gradient(135deg,#5c4632,#2e2318 70%); }
.v-mood::before{ content:""; position:absolute; inset:0; background:radial-gradient(circle at 65% 30%, rgba(230,180,120,0.4), transparent 45%), radial-gradient(circle at 30% 75%, rgba(110,36,52,0.35), transparent 40%); }
.v-scent{ background:linear-gradient(135deg,#6d7350,#3d4128 75%); }
.v-scent::before{ content:""; position:absolute; inset:0; background:radial-gradient(circle at 40% 40%, rgba(200,210,160,0.35), transparent 50%); }
.v-gallery{ background:linear-gradient(135deg,#4a3c50,#26202e 75%); }
.v-gallery::before{ content:""; position:absolute; inset:0; background:radial-gradient(circle at 55% 55%, rgba(180,150,200,0.3), transparent 50%); }
.v-private{ background:linear-gradient(135deg,#836a4e,#453728 75%); }
.v-private::before{ content:""; position:absolute; inset:0; background:radial-gradient(circle at 35% 35%, rgba(250,220,180,0.35), transparent 50%); }

.exp-body .flag{
  display:inline-block; font-size:0.7rem; letter-spacing:0.1em;
  color:var(--burgundy); border:1px solid var(--burgundy);
  padding:0.25rem 0.7rem; margin-bottom:1.1rem;
}
.exp-body .soon{
  display:inline-block; font-size:0.7rem; letter-spacing:0.1em;
  color:var(--olive); border:1px solid var(--olive);
  padding:0.25rem 0.7rem; margin-bottom:1.1rem;
}
.exp-body h3{ font-size:clamp(1.6rem,2.4vw,2rem); }
.exp-body .kicker{ font-family:'Cormorant Garamond', serif; font-style:italic; font-weight:500; font-size:1.1rem; color:var(--burgundy); margin-top:0.4rem; }
.exp-body p{ margin-top:1rem; color:#5a4c3c; max-width:420px; }
.exp-body .link{
  display:inline-block; position:relative; margin-top:1.4rem; font-size:0.85rem; letter-spacing:0.04em;
  color:var(--burgundy);
  padding-bottom:4px;
  transition:color .3s ease;
}
.exp-body .link::after{
  content:""; position:absolute; left:0; bottom:0; width:100%; height:1px;
  background:currentColor;
  transition:width .35s ease;
}
.exp-body .link:hover{ color:var(--burgundy-light); }
.exp-body .link:hover::after{ width:35%; }

.exp-head-copy{
  margin-top:1.2rem; font-size:1rem; color:#5a4c3c;
  max-width:520px; margin-left:auto; margin-right:auto;
}
.exp-head-question{
  margin-top:1rem;
  font-family:'Cormorant Garamond', serif; font-style:italic; font-weight:500;
  font-size:1.3rem; color:var(--burgundy);
}
.exp-category-label{
  font-size:0.75rem; letter-spacing:0.14em; text-transform:uppercase;
  color:var(--burgundy); margin-bottom:1.5rem;
}
.exp-category-label-alt{ margin-top:5rem; }

.exp-visual img{
  position:absolute; inset:0; width:100%; height:100%; object-fit:cover;
}
.exp-visual-split{ display:grid; grid-template-columns:1fr 1fr; gap:2px; }
.exp-visual-split img{ position:static; }

.v-future{ background:linear-gradient(135deg,#5e6247,#2c2e1f 75%); }
.v-future::before{ content:""; position:absolute; inset:0; background:radial-gradient(circle at 45% 45%, rgba(190,200,150,0.3), transparent 50%); }

.exp-simple-grid{
  display:grid; grid-template-columns:repeat(3, 1fr); gap:2.4rem 2.8rem;
}
.exp-simple-card{ padding-top:1.6rem; border-top:1px solid rgba(58,46,34,0.12); }
.exp-simple-card h4{
  font-family:'Cormorant Garamond', serif; font-weight:500; font-size:1.3rem; color:var(--brown);
}
.exp-simple-card p{ margin-top:0.6rem; font-size:0.9rem; color:#5a4c3c; }

/* ============================================================
   THE RIELLA WAY — founder bio
   ============================================================ */
.way{
  background:
    radial-gradient(ellipse 55% 55% at 50% 20%, rgba(244,239,228,0.10), transparent 65%),
    linear-gradient(165deg, var(--sage-mid) 0%, #6c8340 100%);
  color:var(--cream);
  box-shadow:inset 0 1px 0 rgba(244,239,228,0.1);
}
.way .intro-tag{ color:rgba(244,239,228,0.8); }

.bio-card{
  display:grid;
  grid-template-columns:auto 1fr;
  align-items:start;
  gap:clamp(1.8rem, 4vw, 3.4rem);
  padding:clamp(1.8rem, 3.6vw, 3rem);
  background:rgba(244,239,228,0.07);
  border:1px solid rgba(244,239,228,0.2);
  border-radius:16px;
  box-shadow:0 30px 70px rgba(0,0,0,0.16), inset 0 1px 0 rgba(255,255,255,0.12);
}

/* Round portrait, top-left: burgundy ring with a white gap between
   the ring and the image itself */
.bio-avatar{
  width:clamp(180px, 20vw, 240px);
  height:clamp(180px, 20vw, 240px);
  justify-self:start;
  padding:2.2px;                       /* the white gap */
  border:4px solid var(--burgundy);
  border-radius:50%;
  background:var(--white);
  box-shadow:0 18px 38px rgba(128, 34, 34, 0.5);
}
.bio-avatar img{
  display:block;
  width:100%; height:100%;
  object-fit:cover;
  border-radius:50%;
}

.bio-body{ min-width:0; text-align:left; }

.bio-name{
  font-size:clamp(1.8rem, 3vw, 2.5rem);
  line-height:1.1;
  margin-top:0.5rem;
  text-shadow:0 2px 14px rgba(0,0,0,0.22);
}
.bio-role{
  margin-top:0.35rem;
  font-family:'Cormorant Garamond', serif;
  font-style:italic;
  font-weight:500;
  font-size:1.02rem;
  color:rgba(244,239,228,0.75);
}
.bio-rule{
  width:52px; height:1px;
  background:rgba(244,239,228,0.45);
  margin:1.3rem 0 1.2rem;
}

/* Bio copy — scrolls inside its own column rather than pushing the
   section tall */
.bio-scroll{
  max-height:min(46vh, 380px);
  overflow-y:auto;
  overscroll-behavior:contain;
  padding-right:1.2rem;
  scrollbar-width:thin;
  scrollbar-color:rgba(244,239,228,0.35) transparent;
  -webkit-mask-image:linear-gradient(to bottom, #000 0, #000 calc(100% - 28px), transparent 100%);
  mask-image:linear-gradient(to bottom, #000 0, #000 calc(100% - 28px), transparent 100%);
}
.bio-scroll::-webkit-scrollbar{ width:4px; }
.bio-scroll::-webkit-scrollbar-track{ background:rgba(244,239,228,0.1); border-radius:99px; }
.bio-scroll::-webkit-scrollbar-thumb{ background:rgba(244,239,228,0.32); border-radius:99px; }
.bio-scroll::-webkit-scrollbar-thumb:hover{ background:rgba(244,239,228,0.5); }

.bio-scroll p{
  font-size:0.95rem;
  line-height:1.8;
  color:rgba(244,239,228,0.85);
  margin-bottom:1rem;
}
.bio-scroll p:last-child{ margin-bottom:0; }

/* Drop cap on the opening paragraph */
.bio-scroll p.bio-lead::first-letter{
  float:left;
  font-family:'Cormorant Garamond', serif;
  font-weight:600;
  font-size:3.2rem;
  line-height:0.8;
  padding:0.15rem 0.55rem 0 0;
  color:var(--cream);
}

/* The turn line and the closing line get the serif voice */
.bio-scroll p.bio-turn{
  font-family:'Cormorant Garamond', serif;
  font-size:1.15rem;
  line-height:1.5;
  font-style:italic;
  color:var(--cream);
}

.bio-scroll p.bio-quote{
  font-family:'Cormorant Garamond', serif;
  font-style:italic;
  font-weight:500;
  font-size:clamp(1.1rem, 1.8vw, 1.4rem);
  line-height:1.35;
  text-align:center;
  color:var(--cream);
  padding:1.1rem 0.5rem;
  margin:1.4rem 0;
  border-top:1px solid rgba(244,239,228,0.28);
  border-bottom:1px solid rgba(244,239,228,0.28);
}

.bio-scroll p.bio-close{
  font-family:'Cormorant Garamond', serif;
  font-size:1.1rem;
  font-style:italic;
  color:var(--cream);
  letter-spacing:0.01em;
}

@media (max-width:760px){
  .bio-card{
    grid-template-columns:1fr;
    gap:1.7rem;
    padding:1.9rem 1.5rem;
    border-radius:14px;
  }
  .bio-scroll{
    max-height:44vh;
    padding-right:0.9rem;
  }
}

/* UPCOMING */
.upcoming{
  position:relative;
  background:
    radial-gradient(ellipse 55% 45% at 15% 85%, rgba(187,207,141,0.14), transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 15%, rgba(123,144,75,0.3), transparent 58%),
    linear-gradient(180deg, var(--sage-dark) 0%, var(--sage-dark) 12%, var(--burgundy-deep) 100%);
  color:var(--cream);
  box-shadow:inset 0 1px 0 rgba(244,239,228,0.08);
}
.up-grid{
  display:grid; grid-template-columns:1fr 1fr; gap:4rem; align-items:center;
}
.up-visual{
  aspect-ratio:4/5; position:relative; overflow:hidden;
  background:#241c14;
  border-radius:10px;
  box-shadow:
    0 2px 0 rgba(255,255,255,0.05) inset,
    0 10px 22px rgba(0,0,0,0.28),
    0 34px 64px rgba(0,0,0,0.38);
}
.up-visual img{
  position:absolute; inset:0; width:100%; height:100%; object-fit:cover;
}
.upcoming-featured{ padding:9rem 0; }
.upcoming-featured .up-grid{ gap:5rem; }
.upcoming-featured .up-body h2{ font-size:clamp(2.4rem, 4vw, 3.4rem); }
.up-quote{
  font-family:'Cormorant Garamond', serif; font-style:italic; font-weight:500;
  font-size:1.2rem; color:var(--taupe); margin-top:1.6rem;
}
.up-courses{
  font-family:'Cormorant Garamond', serif; font-weight:500; font-style:italic;
  color:var(--cream); margin-top:1rem; font-size:1.05rem;
}
.up-note{
  font-size:0.82rem; color:rgba(244,239,228,0.6); margin-top:0.8rem; max-width:400px;
}
.up-body .intro-tag{ color:var(--taupe); }
.up-body h2{ font-size:clamp(2rem,3.2vw,2.8rem); text-shadow:0 2px 14px rgba(0,0,0,0.3); }
.up-body .event-name{ font-family:'Cormorant Garamond', serif; font-style:italic; font-weight:500; font-size:1.35rem; color:var(--taupe); margin-top:0.6rem; }
.up-body p{ margin-top:1.1rem; color:rgba(244,239,228,0.78); max-width:430px; }
.details-list{ margin-top:1.8rem; display:flex; flex-direction:column; gap:0.55rem; font-size:0.9rem; }
.details-list div{ display:flex; gap:0.8rem; }
.details-list .label{ width:90px; color:var(--taupe); letter-spacing:0.04em; font-size:0.75rem; text-transform:uppercase; }
.up-body a{
  margin-top: 0.8rem;
}

@media (max-width:640px){
  .upcoming{
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
  .up-body a{
  margin-top: 1.8rem;
}
}

/* JOURNAL — tab-card layout, smaller thumbnails */
.journal{
  background:
    radial-gradient(ellipse 55% 55% at 15% 15%, rgba(187,207,141,0.2), transparent 60%),
    linear-gradient(180deg, #EEF1E2 0%, #E7EBD6 100%);
}
.j-grid{
  display:grid; grid-template-columns:repeat(2,1fr); gap:1.4rem; margin-top:3.6rem;
}
.j-card{
  display:flex; align-items:flex-start; gap:1.3rem;
  background:rgba(255,255,255,0.55);
  border:1px solid rgba(58,46,34,0.08);
  border-radius:10px;
  padding:1.3rem;
  box-shadow:0 12px 26px rgba(0,0,0,0.07);
}
.j-visual{
  width:92px; height:92px; flex:0 0 92px;
  position:relative; overflow:hidden;
  border-radius:8px;
  box-shadow:0 10px 20px rgba(0,0,0,0.18);
}
.j-visual img{
  position:absolute; inset:0; width:100%; height:100%; object-fit:cover;
}
.j3 img{ object-position:center 20%; }
.j-body{ flex:1; min-width:0; }
.j1{ background:linear-gradient(150deg,#7b6a4e,#3a2e22); }
.j1::before{ content:""; position:absolute; inset:0; background:radial-gradient(circle at 60% 30%, rgba(230,180,120,0.35), transparent 45%); }
.j2{ background:linear-gradient(150deg,#6b3040,#2e1a20); }
.j2::before{ content:""; position:absolute; inset:0; background:radial-gradient(circle at 40% 60%, rgba(200,120,140,0.3), transparent 45%); }
.j3{ background:linear-gradient(150deg,#5c6249,#2a2e1f); }
.j3::before{ content:""; position:absolute; inset:0; background:radial-gradient(circle at 55% 45%, rgba(200,210,160,0.3), transparent 45%); }
.j-tag{ font-size:0.68rem; letter-spacing:0.1em; }
.j-card h4{ font-family:'Cormorant Garamond', serif; font-weight:500; font-size:1.15rem; margin-top:0.4rem; }
.j-card p{ font-size:0.86rem; color:#7a6c5c; margin-top:0.35rem; }

@media (max-width:500px){
  .journal{
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  .j-card{ flex-direction:column; }
  .j-visual{ width:100%; height:140px; flex:0 0 auto; }
}

/* JOIN */
.join{
  background:var(--taupe); color:var(--brown); text-align:center;
}
.join h2{ font-size:clamp(1.9rem,3.2vw,2.5rem); }
.join p{ margin-top:1rem; max-width:460px; margin-left:auto; margin-right:auto; }
.join-form{
  margin-top:2.2rem; display:flex; justify-content:center; gap:0; max-width:440px; margin-left:auto; margin-right:auto;
}
.join-form input{
  flex:1; padding:0.9rem 1.1rem; border:1px solid var(--burgundy); border-right:none;
  border-radius:3px 0 0 3px;
  background:transparent; font-family:'Jost',sans-serif; font-size:0.9rem; color:var(--brown);
}
.join-form input::placeholder{ color:rgba(58,46,34,0.55); }
.join-form button{
  padding:0.9rem 1.6rem; background:var(--burgundy); color:var(--cream); border:1px solid var(--burgundy);
  border-radius:0 3px 3px 0;
  font-size:0.8rem; letter-spacing:0.06em; cursor:pointer;
}

footer{
  position:relative; overflow:hidden;
  background:var(--burgundy-deep); color:rgba(244,239,228,0.65);
  padding:2.4rem 6vw; display:flex; justify-content:space-between; align-items:center;
  font-size:0.78rem; letter-spacing:0.03em;
}
footer .logo{ color:var(--cream); font-size:1.1rem; }

.footer-socials{ display:flex; gap:1.2rem; }
.social-icon{
  display:inline-flex; align-items:center; justify-content:center;
  width:34px; height:34px; border-radius:50%;
  border:1px solid rgba(244,239,228,0.3);
  color:rgba(244,239,228,0.75);
  transition:color .3s ease, border-color .3s ease;
}
.social-icon svg{ width:16px; height:16px; }
.social-icon:hover{ color:var(--sage-light); border-color:var(--sage-light); }

/* Short, subtle slide-in used sparingly at the section level */
.reveal-on-scroll{
  opacity:0; transform:translateY(18px);
  transition:opacity .65s ease, transform .65s ease;
}
.reveal-on-scroll.in-view{ opacity:1; transform:translateY(0); }

@media (max-width:860px){
  .navlinks{ display:none; }
  .exp-row, .up-grid{ grid-template-columns:1fr; }
  .j-grid{ grid-template-columns:1fr; gap:1rem; }
  .exp-simple-grid{ grid-template-columns:1fr 1fr; }
  footer{ flex-direction:column; gap:0.8rem; text-align:center; }
}
@media (max-width:640px){
  .exp-simple-grid{ grid-template-columns:1fr; }
}
