.brand-text{
font-size:26px;
letter-spacing:3px;
color:white;
position:absolute;
left:30px;
top:20px;
}

.brand-logo{
  display:inline-flex;
  align-items:center;
  line-height:0;
  flex-shrink:0;
  margin-top:6px;
}

.brand-logo img{
  height:51px;
  width:auto;
  display:block;
}

:root{
  --bg1:#4e2b6f;
  --bg2:#7a4aa0;
  --bg3:#e9def6;
  --text:#ffffff;
  --ink:#2c1c3d;
  --pill:#6d4a8b;
  --pill2:#5a3a78;
  --shadow:0 12px 40px rgba(0,0,0,.18);
  --radius:28px;
  --section-bg:#ece4f2;
}

*{box-sizing:border-box;-webkit-tap-highlight-color:transparent;}

html,body{height:100%}

body{
  margin:0;
  font-family:ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  color:var(--ink);
  background:var(--section-bg);
}

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

a:hover{opacity:.9}

.container{
  width:min(1180px, 92vw);
  margin:0 auto;
}

.nav{
  position:absolute;
  top:0;
  left:0;
  right:0;
  z-index:20;
  padding:22px 0;
  color:rgba(255,255,255,.95);
}

.nav .container{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
}

.nav-solid{
  position:absolute;
}

.nav-left-only{
  justify-content:flex-start !important;
}

.nav-left-only .menu-left{
  justify-content:flex-start;
}

.brand{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:600;
  letter-spacing:.2px;
  opacity:.98;
  white-space:nowrap;
  color:var(--text);
  text-decoration:none;
}

.brand svg{
  width:18px;
  height:18px;
  display:block;
  opacity:.95;
}

.brand span.handle{
  font-weight:600;
}

.brand .dot{
  width:10px;
  height:10px;
  border-radius:999px;
  background:rgba(255,255,255,.85);
  box-shadow:0 0 0 6px rgba(255,255,255,.10);
}

.menu{
  display:flex;
  gap:38px;
  align-items:center;
  font-size:18px;
}

.menu-left{
  gap:30px;
  flex-wrap:wrap;
}

.menu a{
  position:relative;
  padding:8px 0;
  color:rgba(255,255,255,.9);
}

.menu a.active::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:2px;
  height:3px;
  border-radius:2px;
  background:rgba(255,255,255,.85);
}

.brand-logo.active::after{
  bottom:8px;
}

/* Instagram nav icon — desktop */
.nav-insta{
  display:inline-flex;
  align-items:center;
  color:rgba(255,255,255,.85);
  line-height:0;
  padding:8px 0;
}

.nav-insta:hover{
  color:#fff;
  opacity:1;
}

/* Instagram fixed icon — mobile only */
.mob-insta{
  display:none;
}

.nav-toggle{
  display:none;
  margin-left:auto;
  background:transparent;
  border:0;
  color:#fff;
  cursor:pointer;
  padding:10px;
  border-radius:10px;
  position:relative;
  z-index:22;
}

.nav-toggle .bars,
.nav-toggle .bars::before,
.nav-toggle .bars::after{
  display:block;
  width:24px;
  height:2px;
  background:currentColor;
  border-radius:2px;
  position:relative;
}

.nav-toggle .bars::before,
.nav-toggle .bars::after{
  content:"";
  position:absolute;
  left:0;
}

.nav-toggle .bars::before{ top:-7px; }
.nav-toggle .bars::after{ top:7px; }

.hero{
  position:relative;
  min-height:72vh;
  display:flex;
  align-items:stretch;
  overflow:visible;
  background:#000;
  z-index:10;
}

.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(1200px 500px at 14% 40%, rgba(255,255,255,.06) 0%, rgba(255,255,255,0) 58%),
    linear-gradient(90deg, rgba(78,43,111,.45) 0%, rgba(110,64,150,.24) 48%, rgba(110,64,150,.06) 100%);
  z-index:2;
  pointer-events:none;
}

.hero-rotating{
  isolation:isolate;
}

.hero-slider{
  position:absolute;
  inset:0;
  z-index:1;
  display:flex;
  width:100%;
  height:100%;
  transform:translateX(0%);
  transition:transform 420ms ease;
}

.hero-slider-fade{
  position:absolute;
  inset:0;
  z-index:1;
  overflow:hidden;
}

.hero-slider-fade::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  height:30%;
  background:linear-gradient(
    to top,
    #ece4f2 0%,
    #ece4f2 15%,
    rgba(236,228,242,.85) 35%,
    rgba(236,228,242,.40) 60%,
    transparent 100%
  );
  z-index:3;
  pointer-events:none;
}

.hero-slide{
  position:relative;
  min-width:100%;
  height:100%;
  background-image:var(--slide-img);
  background-size:cover;
  background-position:right center;
  background-repeat:no-repeat;
}

.hero-slide::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(
    90deg,
    rgba(78,43,111,.62) 0%,
    rgba(110,64,150,.38) 42%,
    rgba(110,64,150,.18) 68%,
    rgba(110,64,150,.08) 100%
  );
  pointer-events:none;
}

.hero-slide::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(
    90deg,
    rgba(78,43,111,.62) 0%,
    rgba(110,64,150,.38) 42%,
    rgba(110,64,150,.18) 68%,
    rgba(110,64,150,.08) 100%
  );
  pointer-events:none;
}

.hero-slide-layer{
  position:absolute;
  inset:0;
  opacity:0;
  transition:opacity 1.2s ease-in-out;
  background:
    linear-gradient(180deg, rgba(81,46,118,.14) 0%, rgba(81,46,118,.12) 48%, rgba(81,46,118,.10) 62%, rgba(236,228,242,.22) 80%, rgba(236,228,242,.54) 100%),
    linear-gradient(90deg, rgba(47,23,70,.50) 0%, rgba(58,30,86,.22) 36%, rgba(58,30,86,.05) 100%),
    var(--hero-img) center 42% / cover no-repeat;
}

.hero-slide-layer.active{
  opacity:1;
}

.hero-slide-layer:nth-child(3){
  background-position:57% 98%;
  transform:translateX(-4px);
}

.hero-single{
  min-height:58vh;
  background:
    linear-gradient(180deg, rgba(81,46,118,.14) 0%, rgba(81,46,118,.12) 48%, rgba(81,46,118,.10) 62%, rgba(236,228,242,.22) 80%, rgba(236,228,242,.54) 100%),
    linear-gradient(90deg, rgba(47,23,70,.50) 0%, rgba(58,30,86,.22) 36%, rgba(58,30,86,.05) 100%),
    var(--hero-img) center 42% / cover no-repeat;
}

.hero-single::before{
  background:
    radial-gradient(900px 420px at 15% 35%, rgba(255,255,255,.05) 0%, rgba(255,255,255,0) 58%),
    linear-gradient(90deg, rgba(32,13,50,.30) 0%, rgba(68,39,100,.12) 45%, rgba(68,39,100,.02) 100%);
}

.hero-single::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  height:220px;
  z-index:3;
  pointer-events:none;
  background:
    linear-gradient(
      180deg,
      rgba(164,126,196,0) 0%,
      rgba(176,143,206,.10) 18%,
      rgba(195,170,220,.22) 34%,
      rgba(216,200,233,.46) 52%,
      rgba(228,218,240,.74) 72%,
      rgba(236,228,242,.94) 88%,
      rgba(236,228,242,1) 100%
    );
}

.hero-content{
  position:relative;
  z-index:8;
  padding:42px 0 62px;
  color:var(--text);
}

.hero-content-home{
  min-height:58vh;
  display:flex;
  align-items:center;
}

.hero-copy{
  max-width:min(720px, 92vw);
  padding-top:42px;
  transition:opacity 500ms ease, transform 500ms ease;
}

.hero-copy--fade{
  opacity:0;
  transform:translateY(8px);
}

.hero h1{
  font-family:ui-serif, "Georgia", "Times New Roman", serif;
  font-weight:500;
  font-size:clamp(40px, 4.7vw, 70px);
  line-height:1.06;
  margin:0 0 26px 0;
  letter-spacing:.2px;
}

.hero-subcopy{
  margin:0;
  max-width:34ch;
  font-size:clamp(18px, 1.55vw, 24px);
  line-height:1.45;
  color:rgba(255,255,255,.84);
  text-shadow:0 8px 28px rgba(35,16,53,.16);
}

.hero-learn-more{
  display:inline-block;
  margin-top:18px;
  color:rgba(255,255,255,.90);
  font-size:15px;
  font-weight:600;
  letter-spacing:.3px;
  text-decoration:none;
  border-bottom:1px solid rgba(255,255,255,.45);
  padding-bottom:2px;
  transition:color 200ms, border-color 200ms;
}

.hero-learn-more:hover{
  color:#fff;
  border-color:#fff;
}

.hero .cta-row{
  display:flex;
  flex-wrap:wrap;
  gap:18px;
  align-items:center;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border:0;
  cursor:pointer;
  padding:14px 26px;
  border-radius:999px;
  font-weight:650;
  letter-spacing:.2px;
  box-shadow:0 14px 40px rgba(0,0,0,.20);
  transition:transform .08s ease, opacity .08s ease, box-shadow .12s ease;
  user-select:none;
}

.btn:active{
  transform:translateY(1px);
}

.btn.primary{
  background:rgba(122,74,160,.92);
  color:white;
}

.btn.primary:hover{
  background:rgba(122,74,160,.98);
}

.btn.secondary{
  background:rgba(109,74,139,.65);
  color:white;
  box-shadow:0 10px 28px rgba(0,0,0,.16);
}

.btn.secondary:hover{
  background:rgba(109,74,139,.78);
}

.hero-controls{
  position:absolute;
  left:0;
  right:0;
  top:50%;
  transform:translateY(-50%);
  z-index:5;
  pointer-events:none;
}

.hero-controls .container{
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.hero-btn{
  pointer-events:auto;
  width:44px;
  height:51px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.30);
  background:rgba(0,0,0,.18);
  backdrop-filter:blur(10px);
  color:white;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  box-shadow:0 12px 30px rgba(0,0,0,.25);
  transition:transform .08s ease, opacity .08s ease;
}

.hero-btn:active{
  transform:translateY(1px);
}

.hero-btn svg{
  width:18px;
  height:18px;
  opacity:.92;
}

.hero-dots{
  position:absolute;
  left:0;
  right:0;
  bottom:54px;
  z-index:5;
  display:flex;
  justify-content:center;
  gap:10px;
}

.hero-dot{
  width:10px;
  height:10px;
  border-radius:999px;
  background:rgba(255,255,255,.35);
  border:1px solid rgba(255,255,255,.35);
}

.hero-dot.active{
  background:rgba(255,255,255,.85);
}

.hero-bottom-pills{
  position:absolute;
  left:0;
  right:0;
  bottom:22px;
  z-index:4;
}

.hero-bottom-pills .container{
  display:flex;
  justify-content:center;
  gap:20px;
}

.hero-arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  z-index:20;
  background:none;
  border:none;
  color:rgba(255,255,255,.75);
  font-size:64px;
  font-weight:200;
  line-height:1;
  cursor:pointer;
  padding:0 12px;
  transition:color 200ms, transform 200ms;
  font-family:ui-sans-serif, system-ui, sans-serif;
}

.hero-arrow:hover{
  color:#fff;
  transform:translateY(-50%) scale(1.15);
}

.hero-arrow-prev{ left:16px; }
.hero-arrow-next{ right:16px; }

@media (max-width:760px){
  .hero-arrow{
    display:block;
    font-size:40px;
    top:170px;
    padding:0 10px;
    color:rgba(255,255,255,.80);
    text-shadow:0 2px 8px rgba(0,0,0,.35);
  }
}

.hero-cta-bridge{
  position:absolute;
  left:0;
  right:0;
  bottom:-40px;
  z-index:100;
  pointer-events:none;
}

.hero-cta-bridge-inner{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:22px;
  flex-wrap:wrap;
  pointer-events:auto;
  position:relative;
  z-index:101;
}

.pill{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:rgba(109,74,139,.96);
  color:white;
  padding:22px 46px;
  border-radius:999px;
  box-shadow:0 16px 40px rgba(44,28,61,.22);
  font-weight:650;
  backdrop-filter:blur(10px);
  font-size:20px;
  min-width:250px;
  text-align:center;
  position:relative;
  z-index:102;
  white-space:nowrap;
}

.wave{
  position:absolute;
  left:0;
  right:0;
  bottom:-1px;
  z-index:4;
}

.section{
  padding:78px 0 90px;
}


.section-title{
  text-align:center;
  font-family:ui-serif, "Georgia", "Times New Roman", serif;
  font-size:clamp(44px, 4.2vw, 66px);
  font-weight:500;
  margin:0 0 14px 0;
  color:#3b2557;
}

.section-subtitle{
  text-align:center;
  font-size:clamp(18px, 2vw, 28px);
  margin:0 0 44px 0;
  color:rgba(59,37,87,.58);
  font-weight:600;
}

.card{
  background:rgba(255,255,255,.78);
  border:1px solid rgba(75,41,110,.10);
  border-radius:22px;
  box-shadow:0 14px 46px rgba(44,28,61,.10);
  padding:22px;
}

.grid{
  display:grid;
  gap:18px;
}

.grid.two{
  grid-template-columns:1.2fr .8fr;
}

.page-hero{
  position:relative;
  padding:110px 0 48px;
  background:linear-gradient(135deg, rgba(78,43,111,.94) 0%, rgba(122,74,160,.86) 55%, rgba(122,74,160,.50) 100%);
  color:white;
  overflow:hidden;
}

.page-hero h1{
  margin:0;
  font-family:ui-serif, "Georgia", "Times New Roman", serif;
  font-weight:500;
  font-size:clamp(36px, 4.2vw, 58px);
}

.page-hero p{
  margin:12px 0 0;
  max-width:70ch;
  color:rgba(255,255,255,.86);
  font-size:18px;
}

.page-hero .hero-subtitle{
  margin:10px 0 0 0;
  max-width:60ch;
  font-size:18px;
  line-height:1.5;
  opacity:.9;
}

.badge{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 14px;
  border-radius:999px;
  background:rgba(255,255,255,.12);
  color:rgba(255,255,255,.92);
  font-weight:650;
  margin-top:18px;
}

.events{
  display:grid;
  gap:18px;
  margin-top:22px;
}

.event-card{
  display:grid;
  grid-template-columns:190px 1fr;
  gap:18px;
  padding:18px;
  border-radius:20px;
  background:rgba(255,255,255,.82);
  border:1px solid rgba(59,37,87,.12);
  box-shadow:0 14px 46px rgba(44,28,61,.09);
  scroll-snap-align:start;
}

.event-img{
  width:100%;
  height:120px;
  border-radius:16px;
  background:linear-gradient(135deg, rgba(122,74,160,.55), rgba(78,43,111,.55));
  overflow:hidden;
}

.event-img img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.event-meta h3{
  margin:0 0 6px 0;
  font-size:22px;
  color:#2c1c3d;
}

.event-meta .line{
  color:rgba(44,28,61,.70);
  font-weight:600;
  margin:0 0 8px 0;
}

.event-meta .desc{
  margin:0 0 14px 0;
  color:rgba(44,28,61,.72);
}

.event-actions{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.scroll-index{
  max-height:68vh;
  overflow:auto;
  scroll-snap-type:y mandatory;
  padding-right:6px;
}

.form{
  display:grid;
  gap:12px;
}

label{
  font-weight:650;
  color:#2c1c3d;
}

input, select, textarea{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid rgba(59,37,87,.18);
  background:rgba(255,255,255,.92);
  font-size:15px;
}

textarea{
  min-height:120px;
  resize:vertical;
}

.row2{
  display:grid;
  gap:12px;
  grid-template-columns:1fr 1fr;
}

.note{
  font-size:14px;
  color:rgba(44,28,61,.70);
  line-height:1.45;
}

.hr{
  height:1px;
  background:rgba(59,37,87,.16);
  border:0;
  margin:16px 0;
}

.price-table{
  display:grid;
  gap:10px;
}

.event-type-toggle{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin:0 0 14px 0;
}

.toggle-btn{
  appearance:none;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.08);
  color:var(--ink);
  padding:10px 14px;
  border-radius:999px;
  font-weight:600;
  cursor:pointer;
  box-shadow:0 10px 28px rgba(0,0,0,.08);
}

.toggle-btn.active{
  background:rgba(109,74,139,.20);
  border-color:rgba(109,74,139,.45);
}

.price-row{
  display:flex;
  justify-content:space-between;
  gap:16px;
  align-items:center;
  padding:14px 16px;
  border-radius:16px;
  background:rgba(255,255,255,.72);
  border:1px solid rgba(59,37,87,.10);
}

.price-row .left{
  font-weight:700;
}

.price-row .right{
  font-weight:800;
  color:#3b2557;
}

.small{
  font-size:13px;
  color:rgba(44,28,61,.62);
}

.about-grid{
  align-items:start;
}

.about-grid-profile{
  grid-template-columns:minmax(0, 1.35fr) minmax(320px, .65fr) !important;
  align-items:start;
}

.about-copy-card{
  padding:28px;
}

.about-photo-card{
  padding:0;
  overflow:hidden;
  position:sticky;
  top:28px;
}

.about-photo{
  width:100%;
  display:block;
  aspect-ratio:3 / 4;
  object-fit:cover;
  object-position:center top;
}

.about-copy{
  color:rgba(44,28,61,.76);
  line-height:1.75;
  margin:0 0 16px 0;
  font-size:17px;
}

.testimonials-stack{
  display:grid;
  grid-template-columns:1fr;
  gap:18px;
  max-width:920px;
  margin:0 auto;
}

.testimonial-card{
  min-height:0;
  padding:28px;
}

.testimonial-text{
  font-family:ui-serif, Georgia, serif;
  font-size:22px;
  line-height:1.4;
  color:#3b2557;
  margin:0 0 16px 0;
}

.testimonial-author{
  margin-top:18px;
  font-size:17px;
  color:#3b2557;
  font-weight:600;
}

.testimonial-image-card{
  padding:20px;
}

.testimonial-image-label{
  font-weight:700;
  color:#3b2557;
  margin:0 0 14px 0;
  font-size:18px;
}

.testimonial-image{
  width:100%;
  display:block;
  border-radius:16px;
  box-shadow:0 10px 28px rgba(44,28,61,.08);
}

.home-mailing-section{
  position:relative;
  z-index:1;
  background:var(--section-bg);
  padding:85px 0 90px;
}

.home-mailing-section .container{
  position:relative;
}

.footer{
  padding:34px 0 50px;
  color:rgba(59,37,87,.65);
  text-align:center;
  font-size:14px;
}

.footer-links-wrap{
  display:flex;
  justify-content:space-between;
  gap:20px;
  align-items:center;
  flex-wrap:wrap;
}

.footer-links{
  display:flex;
  gap:18px;
  flex-wrap:wrap;
  justify-content:center;
}

.footer-links a{
  color:rgba(59,37,87,.82);
}

/* ==========================================================
   IMAGE & MEDIA POLISH
   ========================================================== */

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

.brand-logo img{
  height:51px;
  width:auto;
  object-fit:contain;
}

/* ==========================================================
   FOCUS + HOVER (accessibility & polish)
   ========================================================== */

:focus-visible{
  outline:3px solid rgba(122,74,160,.55);
  outline-offset:3px;
  border-radius:6px;
}

a, button{
  transition:opacity .15s ease, transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}

.menu a{
  transition:color .2s ease, opacity .2s ease;
}

.menu a:hover{
  color:#fff;
  opacity:1;
}

.card{
  transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.pill:hover{
  background:rgba(122,74,160,1);
  transform:translateY(-2px);
  box-shadow:0 20px 48px rgba(44,28,61,.28);
}

.btn.primary:hover{
  transform:translateY(-1px);
  box-shadow:0 18px 44px rgba(0,0,0,.24);
}

.toggle-btn:hover{
  background:rgba(109,74,139,.14);
  border-color:rgba(109,74,139,.30);
}

.footer-links a:hover{
  color:#3b2557;
}

/* ==========================================================
   HOMEPAGE — services preview
   ========================================================== */

.services-preview{
  padding:20px 0 40px;
}

.services-grid{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:10px 32px;
  margin-top:0;
}

.service-card{
  background:none;
  border:none;
  border-radius:0;
  padding:0;
  box-shadow:none;
  display:inline-flex;
  align-items:center;
  gap:8px;
  color:inherit;
  text-decoration:none;
}

.service-card:hover{
  transform:none;
  box-shadow:none;
  opacity:1;
}

.service-card h3{
  margin:0;
  font-family:ui-serif, Georgia, serif;
  font-weight:500;
  font-size:17px;
  color:#4a2f6e;
}

.service-card:hover h3{
  color:#6d4a8b;
  text-decoration:underline;
  text-underline-offset:3px;
}

.service-card .service-cta{
  font-weight:500;
  color:#9370b8;
  font-size:14px;
  letter-spacing:0;
  text-transform:none;
  white-space:nowrap;
}

@media (max-width: 980px){
  .services-grid{ grid-template-columns:repeat(2, 1fr); }
}
@media (max-width: 560px){
  .services-grid{ grid-template-columns:1fr; }
}

/* ==========================================================
   PAST EVENTS
   ========================================================== */

.past-events-grid{
  display:grid;
  grid-template-columns:repeat(auto-fill, minmax(260px, 1fr));
  gap:16px;
}

.past-event-card{
  background:rgba(255,255,255,.82);
  border:1px solid rgba(75,41,110,.10);
  border-radius:16px;
  overflow:hidden;
  box-shadow:0 4px 16px rgba(44,28,61,.06);
  display:flex;
  flex-direction:column;
  text-decoration:none;
  color:inherit;
  transition:box-shadow 200ms, border-color 200ms, transform 200ms;
}

a.past-event-card:hover{
  box-shadow:0 10px 32px rgba(44,28,61,.13);
  border-color:rgba(75,41,110,.25);
  transform:translateY(-2px);
}

.past-event-img{
  width:100%;
  aspect-ratio:16/9;
  object-fit:cover;
  display:block;
}

.past-event-body{
  padding:14px 16px 16px;
  display:flex;
  flex-direction:column;
  gap:5px;
  flex:1;
}

.past-event-name{
  font-family:ui-serif, Georgia, serif;
  font-size:15px;
  font-weight:500;
  color:#2c1c3d;
  line-height:1.3;
}

.past-event-meta{
  font-size:12px;
  color:rgba(44,28,61,.55);
}

.past-event-link{
  font-size:12px;
  font-weight:650;
  color:#6d4a8b;
  margin-top:auto;
  padding-top:8px;
  letter-spacing:.2px;
}

/* ==========================================================
   FAQ PAGE
   ========================================================== */

.faq-stack{
  display:grid;
  gap:28px;
  max-width:1040px;
  margin:0 auto;
}

.faq-item{
  display:grid;
  grid-template-columns:minmax(0, 360px) 1fr;
  gap:28px;
  align-items:start;
  background:rgba(255,255,255,.80);
  border:1px solid rgba(75,41,110,.10);
  border-radius:22px;
  box-shadow:0 14px 46px rgba(44,28,61,.10);
  padding:24px;
}

.faq-item:nth-child(even){
  grid-template-columns:1fr minmax(0, 360px);
}

.faq-item:nth-child(even) .faq-image{
  order:2;
}

.faq-image{
  position:relative;
  aspect-ratio:4 / 3;
  border-radius:16px;
  overflow:hidden;
  background:linear-gradient(135deg, rgba(122,74,160,.18), rgba(78,43,111,.22));
  border:1px solid rgba(75,41,110,.10);
}

.faq-image img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.faq-image-placeholder{
  display:none;
  position:absolute;
  inset:0;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:18px;
  color:rgba(44,28,61,.70);
  font-size:14px;
  gap:6px;
}

.faq-image-placeholder strong{
  font-size:15px;
  color:#3b2557;
}

.faq-image-placeholder .hint{
  font-size:12.5px;
  color:rgba(44,28,61,.62);
}

.faq-image-placeholder code{
  background:rgba(255,255,255,.6);
  padding:2px 6px;
  border-radius:6px;
  font-size:12px;
}

.faq-image.is-placeholder{
  border-style:dashed;
  border-color:rgba(75,41,110,.30);
}

.faq-image.is-placeholder .faq-image-placeholder{
  display:flex;
}

.faq-body h2{
  margin:0 0 12px 0;
  font-family:ui-serif, Georgia, serif;
  font-weight:500;
  font-size:28px;
  color:#2c1c3d;
}

.faq-body p{
  margin:0 0 12px 0;
  color:rgba(44,28,61,.78);
  line-height:1.65;
  font-size:16px;
}

.faq-body p:last-child{ margin-bottom:0; }

@media (max-width: 820px){
  .faq-item,
  .faq-item:nth-child(even){
    grid-template-columns:1fr;
  }
  .faq-item:nth-child(even) .faq-image{
    order:0;
  }
  .faq-image{
    aspect-ratio:16 / 10;
  }
}

/* ==========================================================
   GALLERY (masonry via CSS columns) + LIGHTBOX
   ========================================================== */

.gallery-masonry{
  column-count:3;
  column-gap:18px;
  margin-top:8px;
}

@media (max-width: 980px){ .gallery-masonry{ column-count:2; } }
@media (max-width: 560px){ .gallery-masonry{ column-count:1; } }

.gallery-item{
  break-inside:avoid;
  margin:0 0 18px 0;
  border-radius:18px;
  overflow:hidden;
  background:rgba(255,255,255,.6);
  box-shadow:0 12px 36px rgba(44,28,61,.10);
  border:1px solid rgba(75,41,110,.10);
  cursor:zoom-in;
  position:relative;
  transition:transform .25s ease, box-shadow .25s ease;
}

.gallery-item:hover{
  transform:translateY(-3px);
  box-shadow:0 20px 48px rgba(44,28,61,.16);
}

.gallery-item img{
  width:100%;
  height:auto;
  display:block;
}

.gallery-item figcaption{
  padding:10px 14px;
  font-size:14px;
  color:rgba(44,28,61,.78);
  background:rgba(255,255,255,.84);
}

.gallery-empty{
  max-width:720px;
  margin:0 auto;
}

.gallery-empty pre,
.gallery-empty code{
  font-family:ui-monospace, SFMono-Regular, Menlo, monospace;
  background:rgba(44,28,61,.06);
  border-radius:8px;
  padding:2px 6px;
  font-size:13px;
}

.gallery-empty pre{
  padding:14px 16px;
  overflow-x:auto;
  margin:10px 0 0;
  white-space:pre;
}

.lightbox{
  position:fixed;
  inset:0;
  z-index:1000;
  background:rgba(20,8,35,.92);
  display:none;
  align-items:center;
  justify-content:center;
  padding:24px;
}

.lightbox.is-open{ display:flex; }

.lightbox-figure{
  margin:0;
  max-width:min(1100px, 100%);
  max-height:100%;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:12px;
}

.lightbox-img{
  max-width:100%;
  max-height:78vh;
  width:auto;
  height:auto;
  border-radius:14px;
  box-shadow:0 20px 60px rgba(0,0,0,.45);
}

.lightbox-caption{
  color:rgba(255,255,255,.88);
  font-size:15px;
  text-align:center;
  max-width:60ch;
}

.lightbox button{
  position:absolute;
  background:rgba(255,255,255,.10);
  color:#fff;
  border:1px solid rgba(255,255,255,.20);
  width:48px;
  height:48px;
  border-radius:999px;
  font-size:22px;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
}

.lightbox button:hover{ background:rgba(255,255,255,.22); }

.lightbox-close{ top:18px; right:18px; }
.lightbox-prev{ left:18px; top:50%; transform:translateY(-50%); }
.lightbox-next{ right:18px; top:50%; transform:translateY(-50%); }

@media (max-width: 640px){
  .lightbox-prev{ left:8px; }
  .lightbox-next{ right:8px; }
  .lightbox-close{ top:10px; right:10px; }
}

.no-scroll{ overflow:hidden; }

/* ==========================================================
   HERO IMAGE POSITIONER (add ?adjust to URL to enable)
   ========================================================== */

.hero-pos-panel{
  position:fixed;
  bottom:16px;
  right:16px;
  z-index:9999;
  background:rgba(20,8,35,.96);
  color:#fff;
  padding:16px 18px;
  border-radius:14px;
  width:300px;
  max-width:calc(100vw - 32px);
  font-family:ui-sans-serif, system-ui, sans-serif;
  box-shadow:0 18px 50px rgba(0,0,0,.45);
  font-size:13px;
  line-height:1.4;
}

.hero-pos-panel h3{
  margin:0 0 8px;
  font-size:14px;
  font-weight:650;
}

.hero-pos-panel .hero-pos-sub{
  margin:0 0 12px;
  font-size:11.5px;
  opacity:.7;
}

.hero-pos-panel label{
  display:flex;
  align-items:center;
  gap:10px;
  margin:8px 0;
  font-size:12px;
  font-weight:600;
}

.hero-pos-panel label .lbl{ width:34px; }

.hero-pos-panel input[type=range]{
  flex:1;
  accent-color:#a07ec4;
}

.hero-pos-panel label .v{
  width:36px;
  text-align:right;
  font-variant-numeric:tabular-nums;
}

.hero-pos-actions{
  display:flex;
  gap:6px;
  margin-top:12px;
}

.hero-pos-panel button{
  flex:1;
  padding:8px 6px;
  background:rgba(255,255,255,.12);
  color:#fff;
  border:1px solid rgba(255,255,255,.20);
  border-radius:8px;
  cursor:pointer;
  font-size:12px;
  font-weight:600;
}

.hero-pos-panel button:hover{ background:rgba(255,255,255,.24); }

.hero-pos-panel button.primary{
  background:rgba(160,126,196,.85);
  border-color:rgba(160,126,196,.95);
}

.hero-pos-panel button.primary:hover{ background:rgba(160,126,196,1); }

.hero-pos-current{
  margin:10px 0 4px;
  font-size:12px;
}

.hero-pos-current code{
  background:rgba(255,255,255,.10);
  padding:2px 6px;
  border-radius:5px;
  font-size:12px;
}

.hero-pos-hint{
  margin:8px 0 0;
  font-size:11px;
  opacity:.65;
}

/* ==========================================================
   PRIVATE EVENTS — modality description heading
   ========================================================== */

.modality-heading{
  margin:0 0 12px 0;
  font-family:ui-serif, Georgia, serif;
  font-weight:500;
  font-size:26px;
  color:#2c1c3d;
}

.modality-description p{
  color:rgba(44,28,61,.78);
  line-height:1.65;
  margin:0 0 12px 0;
}

/* ==========================================================
   PREVIEW VIEWER (preview.html)
   ========================================================== */

.preview-shell{
  min-height:100vh;
  background:#1d0f33;
  color:#fff;
  padding:24px;
  font-family:ui-sans-serif, system-ui, sans-serif;
}

.preview-bar{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:14px;
  margin-bottom:22px;
}

.preview-bar h1{
  font-family:ui-serif, Georgia, serif;
  font-weight:500;
  font-size:22px;
  margin:0;
  margin-right:auto;
}

.preview-bar select,
.preview-bar input{
  background:rgba(255,255,255,.08);
  color:#fff;
  border:1px solid rgba(255,255,255,.18);
  padding:10px 14px;
  border-radius:10px;
  font-size:14px;
}

.preview-bar label{
  color:rgba(255,255,255,.78);
  font-weight:600;
  font-size:13px;
}

.preview-stage{
  display:grid;
  gap:24px;
  grid-template-columns:375px 1fr;
  align-items:start;
}

@media (max-width: 1100px){
  .preview-stage{ grid-template-columns:1fr; }
}

.preview-frame{
  background:#000;
  border-radius:20px;
  overflow:hidden;
  box-shadow:0 24px 60px rgba(0,0,0,.4);
  border:1px solid rgba(255,255,255,.10);
}

.preview-frame-label{
  padding:10px 16px;
  font-size:13px;
  letter-spacing:.4px;
  text-transform:uppercase;
  color:rgba(255,255,255,.7);
  background:rgba(255,255,255,.04);
  border-bottom:1px solid rgba(255,255,255,.08);
}

.preview-frame iframe{
  display:block;
  border:0;
  background:#fff;
  width:100%;
}

.preview-frame.mobile iframe{ height:780px; }
.preview-frame.desktop iframe{ height:780px; }

/* Desktop frame: emulate a wider viewport by scaling a 1280px iframe down to fit */
.preview-frame.desktop{
  position:relative;
}
.preview-frame.desktop .scaler{
  position:relative;
  width:100%;
  overflow:hidden;
}
.preview-frame.desktop iframe{
  width:1280px;
  height:820px;
  transform-origin:top left;
}

/* ==========================================================
   RESPONSIVE GRID
   ========================================================== */

@media (max-width: 980px){
  .grid.two{
    grid-template-columns:1fr;
  }
}

@media (max-width: 900px){
  .nav{
    padding:18px 0;
  }

  .menu{
    gap:18px;
    font-size:16px;
  }

  .hero-content{
    padding-top:104px;
    padding-bottom:52px;
  }

  .hero-content-home{
    min-height:54vh;
    align-items:flex-start;
  }

  .hero-copy{
    padding-top:86px;
    margin-top:0;
  }

  .hero-subcopy{
    max-width:30ch;
    font-size:18px;
  }

  .hero-single{
    min-height:52vh;
    background-position:center 38%;
  }

  .hero-single::after{
    height:185px;
  }

  .hero-cta-bridge{
    bottom:-60px;
  }

  .pill{
    min-width:220px;
    padding:18px 34px;
    font-size:18px;
  }

  .about-grid-profile{
    grid-template-columns:1fr !important;
  }

  .about-photo-card{
    position:relative;
    top:auto;
    max-width:520px;
    margin:0 auto;
    order:-1;
  }

  .home-mailing-section{
    padding-top:120px;
  }
}

#mlb2-40394212 .ml-form-embedContent h4{
  font-size:clamp(20px, 2vw, 26px);
  line-height:1.2;
  font-weight:700;
  color:#2c1c3d;
  margin-top:0;
}

#mlb2-40394212 button.pill{
  border:0;
  cursor:pointer;
  padding:12px 22px;
  font-size:14px;
  min-width:0;
  background:rgba(109,74,139,.96);
  color:white;
  box-shadow:0 8px 22px rgba(44,28,61,.18);
}

#mlb2-40394212 button.pill:hover{
  background:rgba(122,74,160,.98);
}

@media (max-width: 760px){
  .nav-toggle{
    display:block;
  }

  .brand-logo img{
    height:34px;
  }

  .nav{
    padding:14px 0;
  }

  .nav-shell{
    position:relative;
    min-height:0;
    align-items:center;
  }

  .menu{
    display:none;
    position:absolute;
    top:calc(100% + 12px);
    right:0;
    flex-direction:column;
    align-items:flex-start;
    gap:6px;
    padding:14px 18px;
    border-radius:16px;
    background:rgba(40,18,64,.94);
    backdrop-filter:blur(14px);
    box-shadow:0 18px 44px rgba(0,0,0,.32);
    min-width:200px;
    font-size:16px;
  }

  .nav.nav-open .menu{
    display:flex;
  }

  .menu a{
    width:100%;
    padding:8px 0;
  }

  .menu a.active::after{
    display:none;
  }

  .menu a.active{
    color:#fff;
    font-weight:700;
  }
}

@media (max-width: 720px){
  .event-card{
    grid-template-columns:1fr;
  }

  .row2{
    grid-template-columns:1fr;
  }
}

@media (max-width: 640px){
  .hero-copy{
    max-width:100%;
    padding-top:96px;
    margin-top:0;
  }

  .hero-cta-bridge{
    bottom:-50px;
  }

  .hero-cta-bridge-inner{
    gap:12px;
  }

  .pill{
    min-width:0;
    width:100%;
    max-width:320px;
    padding:16px 24px;
    font-size:16px;
  }

  .hero-single::after{
    height:170px;
  }

  .home-mailing-section{
    padding-top:112px;
  }
}

/* MailerLite form styling (applies on all screen sizes) */
#mlb2-40394212 .ml-form-embedContent p{
  font-size:18px !important;
  margin-top:12px !important;
  color:rgba(44,28,61,.82) !important;
}

#mlb2-40394212 .ml-form-horizontalRow{
  gap:14px !important;
  align-items:center !important;
}

#mlb2-40394212 input[type="email"]{
  border-radius:14px !important;
  padding:12px 12px !important;
  border:1px solid rgba(59,37,87,.18) !important;
  background:rgba(255,255,255,.92) !important;
  font-size:15px !important;
}

.home-mailing-section .ml-form-formContent{
  padding:0 !important;
}

/* Mobile-only: stacked home hero (image on top, text + pills below) */
@media (max-width: 760px){
  .hero{
    display:block;
    background:transparent;
    min-height:0;
    overflow:visible;
  }

  .hero::before{
    display:none;
  }

  .hero-single{
    min-height:0;
    background:none;
  }

  .hero-single::before,
  .hero-single::after{
    display:none;
  }

  .hero-slider-fade{
    position:relative;
    inset:auto;
    height:340px;
    z-index:auto;
    overflow:hidden;
  }

  .hero-slider-fade::after{
    display:none;
  }

  .hero-slide-layer{
    background-image:var(--hero-img);
    background-repeat:no-repeat;
    background-size:cover;
    background-position:var(--hero-pos-mobile, 78% 47%);
    transform:scaleX(-1);
    -webkit-mask-image:linear-gradient(
      180deg,
      #000 0%,
      #000 50%,
      rgba(0,0,0,.88) 65%,
      rgba(0,0,0,.60) 78%,
      rgba(0,0,0,.28) 90%,
      rgba(0,0,0,.08) 97%,
      transparent     100%
    );
    mask-image:linear-gradient(
      180deg,
      #000 0%,
      #000 50%,
      rgba(0,0,0,.88) 65%,
      rgba(0,0,0,.60) 78%,
      rgba(0,0,0,.28) 90%,
      rgba(0,0,0,.08) 97%,
      transparent     100%
    );
  }

  .hero-slide-layer:nth-child(2){
    background-position:var(--hero-pos-mobile-2, 70% 50%);
  }

  .hero-slide-layer:nth-child(3){
    background-position:var(--hero-pos-mobile-3, 78% 50%);
    transform:scaleX(-1) scale(1.35);
    top:-58px;
    -webkit-mask-image:linear-gradient(
      180deg,
      #000 0%,
      #000 35%,
      rgba(0,0,0,.85) 50%,
      rgba(0,0,0,.55) 63%,
      rgba(0,0,0,.22) 75%,
      rgba(0,0,0,.06) 85%,
      transparent     93%
    );
    mask-image:linear-gradient(
      180deg,
      #000 0%,
      #000 35%,
      rgba(0,0,0,.85) 50%,
      rgba(0,0,0,.55) 63%,
      rgba(0,0,0,.22) 75%,
      rgba(0,0,0,.06) 85%,
      transparent     93%
    );
  }

  .hero-content{
    position:static;
    padding:28px 0 0;
    color:var(--ink);
    margin-top:-60px;
    position:relative;
    z-index:2;
  }

  .hero-content-home{
    min-height:0;
    display:block;
    align-items:initial;
  }

  .hero-copy{
    max-width:100%;
    padding-top:0;
    margin-top:0;
    text-align:center;
  }

  .hero h1{
    color:#2c1c3d;
    text-shadow:none;
  }

  .hero-subcopy{
    color:rgba(44,28,61,.78);
    text-shadow:none;
    margin:0 auto;
    max-width:42ch;
  }

  .hero-cta-bridge{
    position:static;
    bottom:auto;
    pointer-events:auto;
    margin:28px 0 0;
  }

  .mob-insta{
    display:flex;
    align-items:center;
    justify-content:center;
    position:fixed;
    top:14px;
    left:16px;
    z-index:200;
    width:36px;
    height:36px;
    color:rgba(255,255,255,.92);
    filter:drop-shadow(0 1px 4px rgba(0,0,0,.35));
  }

  .nav-insta{
    display:none;
  }

  .hero-learn-more{
    color:rgba(44,28,61,.85);
    border-bottom-color:rgba(44,28,61,.35);
  }

  .hero-learn-more:hover{
    color:#2c1c3d;
    border-bottom-color:#2c1c3d;
  }

  .home-mailing-section{
    padding:48px 0 60px;
  }
}
