

:root{
  --midnight:#0a0c1b;
  --midnight-soft:#12152c;
  --midnight-elev:#191d3a;
  --ivory:#faf7f0;
  --ivory-dim:#f1ece0;
  --ink:#1d1e2d;
  --ink-soft:#5c5f77;
  --ink-faint:#8a8da3;
  --gold:#d9a441;
  --gold-light:#f2c877;
  --teal:#3fe0c5;
  --violet:#8d7cf6;
  --white-soft:#fdfcf9;

  --radius-sm:10px;
  --radius-md:18px;
  --radius-lg:26px;
  --radius-xl:36px;
  --radius-full:999px;

  --space-xs:.5rem;
  --space-sm:1rem;
  --space-md:1.75rem;
  --space-lg:3rem;
  --space-xl:5rem;
  --space-2xl:8rem;

  --shadow-sm:0 2px 8px rgba(10,12,27,.06);
  --shadow-md:0 8px 30px rgba(10,12,27,.10);
  --shadow-lg:0 20px 60px rgba(10,12,27,.16);
  --glow-gold:0 0 40px -8px rgba(217,164,65,.45);
  --glow-teal:0 0 40px -8px rgba(63,224,197,.4);
  --glow-violet:0 0 40px -8px rgba(141,124,246,.4);

  --font-heading:'Epilogue',sans-serif;
  --font-body:'Epilogue',sans-serif;
}

*,*::before,*::after{box-sizing:border-box;}
html{scroll-behavior:smooth;overflow-x:hidden;}
body{margin:0;overflow-x:hidden;}
img{max-width:100%;display:block;}
a{text-decoration:none;color:inherit;}
ul{list-style:none;margin:0;padding:0;}
button{font-family:inherit;cursor:pointer;border:none;background:none;}

.canvas{
  font-family:var(--font-body);
  background:var(--ivory);
  color:var(--ink);
  line-height:1.65;
  -webkit-font-smoothing:antialiased;
}

.canvas-push{
  transition:transform .5s cubic-bezier(.4,0,.2,1);
  min-height:100vh;
  display:flex;
  flex-direction:column;
  background:var(--ivory);
  position:relative;
  z-index:2;
}

h1,h2,h3,h4{
  font-family:var(--font-heading);
  font-weight:700;
  line-height:1.15;
  margin:0 0 .6em;
  color:var(--ink);
  letter-spacing:-0.02em;
}

h1{font-size:clamp(2.4rem,5vw + 1rem,4.6rem);font-weight:800;}
h2{font-size:clamp(1.8rem,3vw + 1rem,2.9rem);}
h3{font-size:clamp(1.2rem,1.4vw + .8rem,1.5rem);}

p{margin:0 0 1em;color:var(--ink-soft);}

.eyebrow{
  display:inline-block;
  font-weight:600;
  font-size:.8rem;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--gold);
  margin-bottom:var(--space-sm);
}
.eyebrow-light{color:var(--gold-light);}


.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:.5rem;
  padding:.95rem 1.9rem;
  border-radius:var(--radius-full);
  font-weight:600;
  font-size:.98rem;
  transition:all .35s cubic-bezier(.4,0,.2,1);
  min-height:48px;
  white-space:nowrap;
}
.btn-primary{
  background:linear-gradient(135deg,var(--gold),var(--gold-light));
  color:var(--midnight);
  box-shadow:0 10px 30px -8px rgba(217,164,65,.55), var(--shadow-sm);
}
.btn-primary:hover{
  transform:translateY(-3px);
  box-shadow:0 16px 40px -6px rgba(217,164,65,.65), var(--shadow-md);
}
.btn-ghost{
  background:transparent;
  color:var(--ink);
  border:1.5px solid rgba(29,30,45,.16);
}
.btn-ghost:hover{
  border-color:var(--gold);
  color:var(--gold);
  transform:translateY(-2px);
}
.btn-outline-light{
  background:transparent;
  color:var(--ivory);
  border:1.5px solid rgba(250,247,240,.35);
}
.btn-outline-light:hover{
  border-color:var(--teal);
  color:var(--teal);
  box-shadow:var(--glow-teal);
}
.btn-submit{width:100%;margin-top:var(--space-sm);}


.canvas-nav{
  position:fixed;
  top:0;left:0;right:0;
  z-index:200;
  display:flex;
  justify-content:center;
  padding-top:1.1rem;
  transition:transform .4s cubic-bezier(.4,0,.2,1);
}
.canvas-nav.nav-hidden{transform:translateY(-140%);}
.nav-float{
  width:min(1180px,92%);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:1rem;
  padding:.7rem 1rem .7rem 1.4rem;
  border-radius:var(--radius-full);
  background:rgba(250,247,240,.55);
  backdrop-filter:blur(16px);
  border:1px solid rgba(255,255,255,.4);
  box-shadow:0 8px 30px rgba(10,12,27,.08);
  transition:background .4s ease, box-shadow .4s ease;
}
.canvas-nav.nav-solid .nav-float{
  background:rgba(250,247,240,.92);
  box-shadow:0 12px 40px rgba(10,12,27,.14);
}
.nav-brand{display:flex;align-items:center;gap:.6rem;font-weight:700;font-size:1.05rem;color:var(--ink);}
.nav-logo{width:34px;height:34px;}
.nav-links{display:flex;gap:1.9rem;}
.nav-links a{font-size:.94rem;font-weight:500;color:var(--ink-soft);transition:color .3s ease;position:relative;}
.nav-links a:hover,.nav-links a.active{color:var(--ink);}
.nav-links a.active::after{
  content:'';position:absolute;left:0;right:0;bottom:-8px;height:2px;
  background:linear-gradient(90deg,var(--gold),var(--teal));border-radius:2px;
}
.nav-cta{
  padding:.65rem 1.4rem;
  border-radius:var(--radius-full);
  background:var(--midnight);
  color:var(--ivory);
  font-weight:600;
  font-size:.9rem;
  transition:all .35s ease;
}
.nav-cta:hover{background:var(--gold);color:var(--midnight);box-shadow:var(--glow-gold);}
.nav-burger{display:none;flex-direction:column;gap:5px;padding:8px;width:44px;height:44px;align-items:center;justify-content:center;}
.nav-burger span{width:22px;height:2px;background:var(--ink);border-radius:2px;transition:all .3s ease;}


.stage-curtain{
  position:fixed;inset:0;z-index:250;
  background:rgba(10,12,27,.35);
  opacity:0;pointer-events:none;
  transition:opacity .4s ease;
}
body.drawer-open .stage-curtain{opacity:1;pointer-events:auto;}
body.drawer-open .canvas-push{transform:translateX(-280px) scale(.95);}

.drawer{
  position:fixed;
  top:0;right:0;bottom:0;
  width:280px;
  background:var(--midnight);
  z-index:300;
  transform:translateX(100%);
  transition:transform .5s cubic-bezier(.4,0,.2,1);
  padding:2rem 1.6rem;
  box-shadow:-10px 0 40px rgba(0,0,0,.3);
}
body.drawer-open .drawer{transform:translateX(0);}
.drawer-head{display:flex;justify-content:space-between;align-items:center;color:var(--ivory);margin-bottom:2rem;font-weight:600;}
.drawer-head button{color:var(--ivory);font-size:1.2rem;width:44px;height:44px;display:flex;align-items:center;justify-content:center;}
.drawer-links li{border-bottom:1px solid rgba(250,247,240,.1);}
.drawer-links a{display:block;padding:1.1rem 0;color:var(--ivory);font-weight:500;font-size:1.05rem;transition:color .3s ease,padding-left .3s ease;}
.drawer-links a:hover{color:var(--gold-light);padding-left:.4rem;}


.stage{padding:calc(var(--space-2xl) + 3rem) 0 var(--space-xl);}
.stage-grid{
  max-width:1280px;margin:0 auto;padding:0 6vw;
  display:grid;grid-template-columns:1fr 1.15fr;gap:var(--space-lg);align-items:center;
}
.stage-copy{max-width:560px;}
.spotlight-tag{
  display:inline-flex;align-items:center;gap:.5rem;
  padding:.5rem 1rem;border-radius:var(--radius-full);
  background:rgba(217,164,65,.12);color:var(--gold);
  font-size:.82rem;font-weight:600;margin-bottom:var(--space-md);
}
.stage-lead{font-size:1.12rem;color:var(--ink-soft);margin-bottom:var(--space-md);}
.stage-actions{display:flex;gap:1rem;flex-wrap:wrap;margin-bottom:var(--space-md);}
.stage-note{font-size:.85rem;color:var(--ink-faint);}
.stage-media{
  position:relative;border-radius:var(--radius-xl);overflow:hidden;
  box-shadow:var(--shadow-lg), 0 0 60px -20px rgba(217,164,65,.35);
  aspect-ratio:4/5;
}
.stage-media img{width:100%;height:100%;object-fit:cover;}


.page-hero{padding:calc(var(--space-2xl) + 2rem) 6vw var(--space-lg);max-width:920px;margin:0 auto;text-align:left;}
.page-hero-copy p{font-size:1.1rem;}


.gallery{padding:var(--space-xl) 6vw;max-width:1280px;margin:0 auto;}
.gallery-dark{
  background:linear-gradient(180deg,var(--midnight),var(--midnight-soft));
  max-width:none;margin:0;padding:var(--space-xl) 6vw;
  color:var(--ivory);
}
.gallery-dark h2,.gallery-dark h3{color:var(--ivory);}
.gallery-dark p{color:rgba(250,247,240,.72);}
.gallery-dark .gallery-split-copy,.gallery-dark .gallery-split-media{max-width:1280px;margin:0 auto;}
.gallery-head{max-width:720px;margin:0 auto var(--space-lg);text-align:center;}
.gallery-head p{font-size:1.05rem;}


.bento{display:grid;grid-template-columns:repeat(4,1fr);gap:1.4rem;}
.bento-lg{grid-column:span 2;}
.bento-md{grid-column:span 2;}
@media(min-width:900px){
  .bento{grid-template-columns:repeat(4,1fr);}
  .bento .bento-lg{grid-column:span 2;}
  .bento .bento-md{grid-column:span 1;}
  .bento article:nth-child(1){grid-column:span 2;}
  .bento article:nth-child(2){grid-column:span 1;}
  .bento article:nth-child(3){grid-column:span 1;}
  .bento article:nth-child(4){grid-column:span 2;}
}


.spotlight{
  position:relative;
  border-radius:var(--radius-lg);
  padding:2.1rem 1.9rem;
  border:1px solid transparent;
  background-image:linear-gradient(var(--midnight-soft),var(--midnight-soft)),
                    linear-gradient(135deg,var(--gold),var(--teal));
  background-origin:border-box;
  background-clip:padding-box,border-box;
  box-shadow:0 0 40px -14px rgba(217,164,65,.4), var(--shadow-md);
  transition:box-shadow .45s ease, transform .45s ease;
  color:var(--ivory);
}
.spotlight h3{color:var(--ivory);}
.spotlight p{color:rgba(250,247,240,.72);margin-bottom:0;}
.spotlight:hover{transform:translateY(-6px);box-shadow:0 0 60px -8px rgba(217,164,65,.6), var(--shadow-lg);}
.spotlight-icon{font-size:1.7rem;margin-bottom:1rem;display:block;color:var(--tint,var(--gold));filter:drop-shadow(0 0 12px var(--tint,var(--gold)));}


.gallery-split{display:grid;grid-template-columns:1fr 1fr;gap:var(--space-lg);align-items:center;}
.gallery-split.reverse{direction:rtl;}
.gallery-split.reverse > *{direction:ltr;}
.gallery-split-media{border-radius:var(--radius-lg);overflow:hidden;box-shadow:var(--shadow-lg);aspect-ratio:4/3;}
.gallery-split-media img{width:100%;height:100%;object-fit:cover;}
.gallery-split-copy p{font-size:1.02rem;}

.check-list{display:flex;flex-direction:column;gap:.85rem;margin:1.4rem 0;}
.check-list li{display:flex;align-items:flex-start;gap:.7rem;font-size:.98rem;color:var(--ink-soft);}
.gallery-dark .check-list li{color:rgba(250,247,240,.78);}
.check-list i{color:var(--teal);margin-top:.2rem;}


.gallery-cards{padding-top:var(--space-xl);}
.shelf{display:grid;grid-template-columns:repeat(4,1fr);gap:1.4rem;}
.feature-box{
  padding:2rem 1.7rem;
  border-radius:var(--radius-md);
  background:var(--white-soft);
  border:1px solid rgba(29,30,45,.08);
  box-shadow:var(--shadow-sm);
  transition:box-shadow .4s ease, transform .4s ease, border-color .4s ease;
}
.feature-box:hover{
  transform:translateY(-5px);
  border-color:rgba(217,164,65,.4);
  box-shadow:0 20px 45px -18px rgba(217,164,65,.35), var(--shadow-md);
}
.feature-icon{
  width:56px;height:56px;border-radius:var(--radius-md);
  display:flex;align-items:center;justify-content:center;
  background:color-mix(in srgb, var(--tint) 14%, white);
  color:var(--tint);font-size:1.3rem;margin-bottom:1.1rem;
}


.gallery-badges{background:var(--ivory-dim);max-width:none;padding:var(--space-xl) 6vw;}
.shelf-badges{grid-template-columns:repeat(4,1fr);}
.badge-card{
  text-align:center;padding:2.2rem 1.4rem;
  border-radius:var(--radius-md);
  background:var(--white-soft);
  box-shadow:var(--shadow-sm);
  transition:transform .4s ease, box-shadow .4s ease;
}
.badge-card:hover{transform:translateY(-4px);box-shadow:var(--shadow-md);}
.badge-card i{font-size:1.8rem;color:var(--gold);margin-bottom:1rem;}
.badge-card h4{font-size:1.05rem;margin-bottom:.5rem;}
.badge-card p{font-size:.92rem;}


.module-list{display:flex;flex-direction:column;gap:1.2rem;}
.module-item{
  display:flex;gap:1.6rem;align-items:flex-start;
  padding:1.8rem 2rem;border-radius:var(--radius-md);
  background:var(--white-soft);border:1px solid rgba(29,30,45,.08);
  box-shadow:var(--shadow-sm);transition:box-shadow .4s ease, transform .4s ease;
}
.module-item:hover{transform:translateX(4px);box-shadow:var(--shadow-md);}
.module-num{
  font-family:var(--font-heading);font-weight:800;font-size:1.6rem;
  color:transparent;-webkit-text-stroke:1.5px var(--gold);flex-shrink:0;min-width:50px;
}
.module-body h3{margin-bottom:.4rem;}
.module-body p{margin:0;}


.newsletter-strip{
  background:linear-gradient(120deg,var(--midnight),var(--midnight-elev));
  padding:var(--space-lg) 6vw;
}
.newsletter-inner{
  max-width:1180px;margin:0 auto;
  display:flex;align-items:center;justify-content:space-between;gap:2rem;flex-wrap:wrap;
}
.newsletter-inner h3{color:var(--ivory);margin-bottom:.4rem;font-size:1.5rem;}
.newsletter-inner p{color:rgba(250,247,240,.7);margin:0;max-width:420px;}
.newsletter-form{display:flex;gap:.8rem;flex-wrap:wrap;}
.newsletter-form input{
  padding:.9rem 1.2rem;border-radius:var(--radius-full);border:1px solid rgba(250,247,240,.25);
  background:rgba(250,247,240,.08);color:var(--ivory);min-width:240px;font-size:.95rem;
  transition:border-color .3s ease, background .3s ease;
}
.newsletter-form input::placeholder{color:rgba(250,247,240,.5);}
.newsletter-form input:focus{outline:none;border-color:var(--gold);background:rgba(250,247,240,.14);}


.canvas-footer{
  position:relative;overflow:hidden;
  background:var(--midnight);color:rgba(250,247,240,.8);
  padding:var(--space-xl) 6vw var(--space-md);
  margin-top:auto;
}
.footer-illustration{
  position:absolute;inset:0;pointer-events:none;opacity:.5;
  background-image:
    radial-gradient(circle at 12% 20%, rgba(217,164,65,.16), transparent 40%),
    radial-gradient(circle at 85% 15%, rgba(63,224,197,.14), transparent 45%),
    radial-gradient(circle at 60% 90%, rgba(141,124,246,.14), transparent 40%);
}
.footer-grid{
  position:relative;z-index:1;
  display:grid;grid-template-columns:1.4fr 1fr 1fr 1.2fr;gap:2.5rem;
  max-width:1280px;margin:0 auto;padding-bottom:var(--space-lg);
  border-bottom:1px solid rgba(250,247,240,.1);
}
.footer-brand p{color:rgba(250,247,240,.6);font-size:.92rem;margin-top:1rem;}
.footer-brand .nav-brand{color:var(--ivory);}
.footer-col h4{color:var(--ivory);font-size:1rem;margin-bottom:1.1rem;}
.footer-col ul li{margin-bottom:.7rem;}
.footer-col a{color:rgba(250,247,240,.65);font-size:.92rem;transition:color .3s ease;}
.footer-col a:hover{color:var(--gold-light);}
.footer-contact li{display:flex;align-items:flex-start;gap:.6rem;font-size:.9rem;color:rgba(250,247,240,.7);}
.footer-contact i{color:var(--teal);margin-top:.2rem;}
.footer-bottom{
  position:relative;z-index:1;max-width:1280px;margin:0 auto;padding-top:1.6rem;
  font-size:.85rem;color:rgba(250,247,240,.5);
}


.gallery-contact{padding-bottom:var(--space-2xl);}
.contact-grid{display:grid;grid-template-columns:1.2fr 1fr;gap:2.5rem;align-items:start;}
.contact-form-wrap{
  background:var(--white-soft);border-radius:var(--radius-lg);
  padding:2rem;box-shadow:var(--shadow-md);border:1px solid rgba(29,30,45,.06);
}
.acc-section{border-bottom:1px solid rgba(29,30,45,.08);}
.acc-section:last-child{border-bottom:none;}
.acc-header{
  width:100%;display:flex;justify-content:space-between;align-items:center;
  padding:1.2rem 0;font-weight:600;font-size:1rem;color:var(--ink);
}
.acc-header i:first-child{color:var(--gold);margin-right:.6rem;}
.acc-chevron{transition:transform .35s ease;color:var(--ink-faint);}
.acc-section.is-open .acc-chevron{transform:rotate(180deg);}
.acc-body{max-height:0;overflow:hidden;transition:max-height .5s cubic-bezier(.4,0,.2,1), padding .4s ease;padding:0;}
.acc-section.is-open .acc-body{max-height:520px;padding-bottom:1.4rem;}
.acc-body label{display:block;font-size:.88rem;font-weight:600;margin-bottom:.4rem;color:var(--ink-soft);}
.acc-body input[type="text"],.acc-body input[type="email"],.acc-body textarea{
  width:100%;padding:.85rem 1rem;border-radius:var(--radius-sm);
  border:1.5px solid rgba(29,30,45,.14);margin-bottom:1.1rem;font-family:inherit;font-size:.96rem;
  transition:border-color .3s ease, box-shadow .3s ease;background:var(--ivory);
}
.acc-body input:focus,.acc-body textarea:focus{outline:none;border-color:var(--gold);box-shadow:0 0 0 4px rgba(217,164,65,.12);}
.checkbox-row{display:flex;align-items:flex-start;gap:.7rem;font-size:.92rem;color:var(--ink-soft);margin-bottom:.6rem;}
.checkbox-row input{width:20px;height:20px;flex-shrink:0;margin-top:.15rem;}
.checkbox-row a{color:var(--gold);font-weight:600;}

.contact-info{display:flex;flex-direction:column;gap:1.6rem;}
.contact-card h3{font-size:1.15rem;margin-bottom:1rem;}
.contact-card{padding:1.8rem;}
.accessibility-card h3{display:flex;align-items:center;gap:.6rem;}
.accessibility-card p{font-size:.94rem;}
.map-wrap{border-radius:var(--radius-lg);overflow:hidden;box-shadow:var(--shadow-md);}


.thanks-stage{
  max-width:720px;margin:0 auto;padding:calc(var(--space-2xl) + 2rem) 6vw var(--space-2xl);
  text-align:center;
}
.quote-card{
  position:relative;padding:3rem 2.2rem;border-radius:var(--radius-xl);
  background:linear-gradient(160deg,var(--midnight),var(--midnight-elev));
  color:var(--ivory);margin-bottom:2.6rem;
  box-shadow:0 0 60px -14px rgba(217,164,65,.4), var(--shadow-lg);
  border:1px solid rgba(250,247,240,.08);
}
.quote-icon{font-size:1.8rem;color:var(--gold);margin-bottom:1rem;}
.quote-text{font-size:1.35rem;font-weight:600;line-height:1.5;margin-bottom:1.2rem;color:var(--ivory);}
.quote-author{font-size:.86rem;color:rgba(250,247,240,.6);}
.thanks-stage h1{margin-bottom:.7rem;}


.legal-hero{max-width:820px;margin:0 auto;padding:calc(var(--space-2xl) + 2rem) 6vw var(--space-md);text-align:left;}
.legal-updated{font-size:.9rem;color:var(--ink-faint);font-weight:600;}
.legal-body{max-width:820px;margin:0 auto;padding:0 6vw var(--space-2xl);}
.legal-section{margin-bottom:2.6rem;padding-bottom:2.6rem;border-bottom:1px solid rgba(29,30,45,.08);}
.legal-section:last-child{border-bottom:none;}
.legal-summary{
  display:inline-block;font-weight:600;font-size:.92rem;color:var(--midnight);
  background:linear-gradient(120deg,rgba(217,164,65,.16),rgba(63,224,197,.14));
  border-radius:var(--radius-md);padding:.9rem 1.2rem;margin-bottom:1.2rem;
}
.legal-section h2{font-size:1.35rem;margin-bottom:.7rem;}
.legal-section p{font-size:.98rem;}
.cookie-table{width:100%;border-collapse:collapse;margin-top:1rem;font-size:.9rem;}
.cookie-table th,.cookie-table td{padding:.9rem 1rem;text-align:left;border-bottom:1px solid rgba(29,30,45,.1);}
.cookie-table th{color:var(--ink);font-weight:700;background:var(--ivory-dim);}
.cookie-table td{color:var(--ink-soft);}


.uc-consent{
  position:fixed;bottom:1.4rem;right:1.4rem;z-index:400;
  width:min(360px,90vw);
  background:var(--midnight);color:var(--ivory);
  border-radius:var(--radius-lg);
  padding:1.8rem 1.7rem;
  box-shadow:0 0 60px -14px rgba(217,164,65,.4), var(--shadow-lg);
  border:1px solid rgba(250,247,240,.08);
  transform:translateY(140%);opacity:0;
  transition:transform .5s cubic-bezier(.4,0,.2,1), opacity .5s ease;
}
.uc-consent.uc-show{transform:translateY(0);opacity:1;}
.uc-icon{
  width:52px;height:52px;border-radius:50%;
  background:linear-gradient(135deg,var(--gold),var(--teal));
  display:flex;align-items:center;justify-content:center;
  font-size:1.4rem;color:var(--midnight);margin-bottom:1rem;
}
.uc-consent h4{color:var(--ivory);font-size:1.05rem;margin-bottom:.5rem;}
.uc-consent p{font-size:.87rem;color:rgba(250,247,240,.68);margin-bottom:1.1rem;}
.uc-consent a{color:var(--gold-light);font-weight:600;}
.uc-actions{display:flex;flex-direction:column;gap:.7rem;}
.uc-btn{
  width:100%;padding:.8rem 1rem;border-radius:var(--radius-full);font-weight:600;font-size:.9rem;
  transition:all .3s ease;
}
.uc-btn-accept{background:linear-gradient(135deg,var(--gold),var(--gold-light));color:var(--midnight);}
.uc-btn-accept:hover{box-shadow:var(--glow-gold);transform:translateY(-2px);}
.uc-btn-reject{background:transparent;border:1.5px solid rgba(250,247,240,.25);color:var(--ivory);}
.uc-btn-reject:hover{border-color:var(--teal);color:var(--teal);}
.uc-btn-customize{background:transparent;color:rgba(250,247,240,.6);font-size:.82rem;text-decoration:underline;padding:.3rem;}

.uc-panel{max-height:0;overflow:hidden;transition:max-height .5s ease, margin .4s ease;}
.uc-consent.uc-expanded .uc-panel{max-height:400px;margin-top:1rem;}
.uc-cat{display:flex;justify-content:space-between;align-items:center;padding:.6rem 0;border-bottom:1px solid rgba(250,247,240,.08);}
.uc-cat:last-child{border-bottom:none;}
.uc-cat span{font-size:.87rem;}
.uc-switch{position:relative;width:42px;height:24px;flex-shrink:0;}
.uc-switch input{opacity:0;width:0;height:0;}
.uc-switch label{
  position:absolute;inset:0;background:rgba(250,247,240,.2);border-radius:var(--radius-full);
  cursor:pointer;transition:background .3s ease;
}
.uc-switch label::after{
  content:'';position:absolute;top:3px;left:3px;width:18px;height:18px;border-radius:50%;
  background:var(--ivory);transition:transform .3s ease;
}
.uc-switch input:checked + label{background:var(--gold);}
.uc-switch input:checked + label::after{transform:translateX(18px);}
.uc-switch input:disabled + label{opacity:.5;cursor:not-allowed;}


.gallery-split-media img,.stage-media img{transition:transform .6s ease;}


@media(max-width:1024px){
  .stage-grid{grid-template-columns:1fr;gap:2.4rem;}
  .stage-media{order:-1;aspect-ratio:16/10;}
  .bento{grid-template-columns:repeat(2,1fr);}
  .bento article{grid-column:span 1 !important;}
  .shelf{grid-template-columns:repeat(2,1fr);}
  .shelf-badges{grid-template-columns:repeat(2,1fr);}
  .gallery-split{grid-template-columns:1fr;}
  .gallery-split.reverse{direction:ltr;}
  .footer-grid{grid-template-columns:1fr 1fr;}
  .contact-grid{grid-template-columns:1fr;}
}
@media(max-width:768px){
  .nav-links{display:none;}
  .nav-cta{display:none;}
  .nav-burger{display:flex;}
  .shelf{grid-template-columns:1fr;}
  .shelf-badges{grid-template-columns:1fr;}
  .footer-grid{grid-template-columns:1fr;gap:2rem;}
  .newsletter-inner{flex-direction:column;align-items:flex-start;}
  .newsletter-form{width:100%;}
  .newsletter-form input{flex:1;min-width:0;}
  .module-item{flex-direction:column;gap:.6rem;}
  .uc-consent{right:.8rem;bottom:.8rem;left:.8rem;width:auto;}
}
@media(max-width:480px){
  .stage{padding-top:calc(var(--space-2xl) + 1.5rem);}
  .gallery,.gallery-dark,.gallery-badges{padding-left:5vw;padding-right:5vw;}
  .stage-actions{flex-direction:column;align-items:stretch;}
  .stage-actions .btn{width:100%;}
}