/* =========================================
   THEME
========================================= */
:root{
  --navy: #043565;
  --berry: #950952;
  --rose:  #c45980;
  --lavender: #f3ecf6;
  --ink: #1f2a44;
  --footer-navy: #043565;

  --events-bg: #FAEAF9;
  --work-bg:   #D7D8EC;

  --shadow: 0 10px 24px rgba(0,0,0,.10);
  --radius-xl: 18px;

  --avatar-ring-color: var(--berry);
  --avatar-ring-gap: clamp(8px, 1.2vw, 14px);
  --avatar-ring-width: clamp(2px, .4vw, 4px);
}

/* =========================================
   BASE / LAYOUT
========================================= */
*{ box-sizing:border-box; }
html,body{ height:100%; overflow-x:hidden; }

body{
  margin:0;
  color:var(--ink);
  background:var(--lavender);
  font-family:"Lora", Georgia, serif;
  line-height:1.7;
  min-height:100dvh;
  display:flex;
  flex-direction:column;
}

.container{ width:min(1100px, 92vw); margin-inline:auto; }

.ribbon{
  background:var(--footer-navy);
  color:var(--lavender);
  text-align:center;
  font-family:"Parisienne", cursive;
  letter-spacing:.5px;
  padding:.5rem 0;
  font-size:clamp(16px, 1.1vw + 12px, 22px);
}

.site-header .header-row{
  display:flex; align-items:center; justify-content:space-between;
  gap:clamp(8px, 2vw, 24px);
  flex-wrap:nowrap; white-space:nowrap;
}
.brand{
  font-family:"Parisienne", cursive;
  white-space:nowrap;
  font-size:clamp(18px, 5.5vw, 40px);
  color:var(--navy); text-decoration:none;
}
.nav a{
  font-family:"Parisienne", cursive;
  font-size:clamp(14px, 3.8vw, 24px);
  margin-left:clamp(8px, 2.6vw, 20px);
  color:var(--navy); text-decoration:none;
}
.nav a:hover{ color:var(--rose); }

.main{ padding: clamp(28px, 5vw, 56px) 0 64px; }
#about, #events, #work{ scroll-margin-top:80px; }

/* =========================================
   SECTION SEPARATORS / FULL-BLEED BANDS
========================================= */
#about, #events, #work, .main.links-page{ position:relative; }

#about::before,
#events::before,
#work::before,
.main.links-page::before{
  content:"";
  position:absolute;
  inset:-1px calc(50% - 50vw) auto;
  border-top:1.5px solid var(--rose);
  pointer-events:none;
}

#events::after{
  content:"";
  position:absolute;
  inset:0 calc(50% - 50vw);
  background:var(--events-bg);
  z-index:-1;
}

.work-band{ border-top:1.5px solid var(--rose); }
.work-band::before{
  content:"";
  position:absolute;
  inset:0 calc(50% - 50vw);
  background:var(--work-bg);
  z-index:-1;
}
#work::after{
  content:"";
  position:absolute; bottom:0; inset:auto calc(50% - 50vw) 0;
  border-top:1.5px solid var(--rose);
}

/* =========================================
   SHOP
========================================= */
.shop-band{
  position: relative;
  border-top: 1.5px solid var(--rose);
}
.shop-band::before{
  content: "";
  position: absolute;
  inset: 0 calc(50% - 50vw);  
  background: var(--work-bg); 
  z-index: -1;
}

.shop-cta{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: clamp(24px, 6vw, 56px) 0;
  text-decoration: none;
  color: inherit;
}
.shop-icon{
  width: clamp(110px, 20vw, 180px);
  height: auto;
  display: block;
}
.shop-text{
  margin-top: 4px;
  font-weight: 700;
  color: var(--navy);
  font-size: clamp(18px, 1.6vw + 14px, 28px);
}

/* =========================================
   ABOUT
========================================= */
.about-title{
  color:var(--berry); font-weight:700; letter-spacing:.2px;
  margin:0 0 clamp(12px, 2vw, 18px);
  font-size:clamp(44px, 4.6vw + 20px, 84px);
  text-align:left;
}
.about-row{
  display:grid; grid-template-columns:1.1fr .9fr;
  gap:clamp(24px, 4vw, 56px); align-items:center;
}
.about-copy{ text-align:left; }
.about-sub{
  color:var(--berry); font-weight:700;
  margin:0 0 clamp(8px, 1.2vw, 12px);
  font-size:clamp(26px, 1.6vw + 18px, 40px);
}
.about .intro{
  max-width:46ch; margin:0; text-align:left;
  font-size:clamp(20px, 1vw + 18px, 32px);
  line-height:1.35; color:var(--navy);
}

.profile{ display:flex; justify-content:center; margin:0; }
.profile img{
  width:clamp(260px, 28vw, 420px);
  height:clamp(260px, 28vw, 420px);
  object-fit:cover; border-radius:50%; box-shadow:var(--shadow);
}
#about .profile img{
  border-radius:50%;
  outline:var(--avatar-ring-width) solid var(--avatar-ring-color);
  outline-offset:var(--avatar-ring-gap);
  box-shadow:0 12px 34px rgba(0,0,0,.14);
  background:#fff;
}

/* =========================================
   EVENTS
========================================= */
.events-title{
  font-family:"Parisienne", cursive; font-weight:600; color:var(--navy);
  text-shadow:1.5px 1.5px 0 var(--rose);
  margin:0 0 clamp(18px, 3vw, 38px);
  font-size:clamp(52px, 5vw + 18px, 84px);
}
.events-row{
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(280px, 440px);
  gap:clamp(18px, 4vw, 40px);
  align-items:start;
  margin:0 0 clamp(42px, 6vw, 72px);
}
.events-list{ padding-right:clamp(8px, 1.8vw, 28px); }
.event-card{ display:block; }

.event-name{
  font-family:"Parisienne", cursive;
  font-size:clamp(32px, 2.2vw + 18px, 48px);
  color:var(--navy); margin:0 0 4px;
  white-space:nowrap; overflow-wrap:normal; word-break:keep-all;
  line-height:1.15;
}
.event-pill{
  display:inline-block; background:rgba(196,89,128,.25); color:var(--navy);
  padding:10px 16px; border-radius:14px; font-weight:600; line-height:1.35;
  box-shadow:var(--shadow);
}

.event-media{ margin:0; }
.event-media img{
  outline:var(--avatar-ring-width) solid var(--avatar-ring-color);
  outline-offset:var(--avatar-ring-gap);
  background:#fff;
  width:100%; height:auto; display:block;
  border-radius:8px; box-shadow:var(--shadow);
}

.events-note{
  text-align:center; color:var(--navy);
  font-size:clamp(24px, 2.2vw + 16px, 40px);
  margin:clamp(36px, 7vw, 96px) 0 0;
}

/* =========================================
   LINKS (Follow) & GALLERY
========================================= */
.links-title{
  font-family:"Parisienne", cursive; font-weight:600; color:var(--navy);
  text-shadow:2px 2px 0 var(--rose); text-align:center;
  font-size:clamp(36px, 6vw, 72px);
  margin:8px 0 clamp(16px, 3vw, 28px);
}

.gallery.masonry{
  width:min(1300px, 96vw);
  margin:0 auto;
  padding:clamp(12px, 1.6vw, 24px);
  column-count:3;
  column-gap:clamp(18px, 2.6vw, 36px);
}
.gallery.masonry img{
  display:inline-block; width:100%; height:auto; break-inside:avoid;
  margin:0 0 clamp(18px, 2.6vw, 36px);
  border-radius:22px; box-shadow:0 8px 24px rgba(0,0,0,.10);
  transition:transform .18s ease, box-shadow .18s ease, opacity .4s ease;
  cursor:zoom-in;
}
.gallery.masonry img:hover{
  transform:translateY(-2px);
  box-shadow:0 12px 30px rgba(0,0,0,.14);
}

#lightbox{
  position:fixed; inset:0; z-index:9999;
  display:flex; align-items:center; justify-content:center;
  background:rgba(0,0,0,.82); padding:16px;
}
#lightbox[hidden]{ display:none; }
#lightbox img{
  max-width:min(1100px, 95vw);
  max-height:90vh;
  border-radius:12px;
  box-shadow:0 14px 40px rgba(0,0,0,.35);
}
.lb-close{
  position:absolute; top:10px; right:18px;
  font-size:40px; line-height:1;
  background:transparent; border:0; color:#fff; cursor:pointer;
}

.links-grid{
  display:grid; grid-template-columns:repeat(4, minmax(0,1fr));
  gap:clamp(14px, 3.5vw, 28px);
  justify-items:center; align-items:start;
}
.big-link{
  width:100%; display:flex; flex-direction:column; align-items:center;
  text-decoration:none; color:inherit;
}
.big-icon{
  width:clamp(90px, 22vw, 180px); height:auto; max-width:100%;
  display:block; object-fit:contain; margin:0 auto 8px;
}
.big-label{
  margin-top:2px; font-weight:700; color:var(--navy); line-height:1.2;
  font-size:clamp(14px, 2.6vw, 20px);
}

/* =========================================
   FOOTER
========================================= */
.site-footer{
  background:var(--footer-navy);
  color:#E5AECB; text-align:center;
  padding:10px 8px 8px; margin-top:auto;
}
.site-footer a{ color:#E5AECB; text-decoration:none; }
.site-footer a:hover{ text-decoration:underline; }

.follow{ margin:6px 0 10px; font-weight:600; font-size:clamp(18px, .7vw + 14px, 22px); }

.site-footer .social{
  list-style:none; margin:10px 0; padding:0;
  display:flex; justify-content:center; align-items:center; gap:18px;
}
.site-footer .social li{ margin:0; padding:0; }
.site-footer .social a{
  display:inline-flex; align-items:center; justify-content:center;
  width:48px; height:48px; border-radius:50%;
  background:#ffffff22; overflow:hidden;
  transition:transform .15s ease, background .15s ease;
}
.site-footer .social a:hover{ transform:translateY(-2px); background:#ffffff35; }
.site-footer .social a img,
.site-footer .social a svg{ width:75px; height:75px; display:block; flex:0 0 30px; }
.site-footer .social a svg{ fill:#fff; }
.credits{ display:block; margin-top:8px; font-size:12px; opacity:.9; }

.lb-arrow{
  position:absolute; top:50%; transform:translateY(-50%);
  width:48px; height:48px; border-radius:999px;
  border:1px solid #ffffff90; background:#ffffff28; color:#fff;
  display:flex; align-items:center; justify-content:center;
  font-size:34px; line-height:1; cursor:pointer;
  backdrop-filter:blur(2px);
  transition:background .2s ease, transform .2s ease;
  user-select:none;
}
.lb-prev{ left:16px; }
.lb-next{ right:16px; }
.lb-arrow:hover{ background:#ffffff45; transform:translateY(-50%) scale(1.06); }
.lb-arrow:focus-visible{ outline:2px solid #fff; }
@media (max-width:640px){ .lb-arrow{ width:56px; height:56px; font-size:32px; } }

/* =========================================
   SCROLL-REVEAL
========================================= */
.reveal-up{
  opacity:0; transform:translateY(18px);
  transition:opacity .6s ease, transform .6s ease;
  will-change:opacity, transform;
}
.reveal-up.is-visible{ opacity:1; transform:none; }
@media (prefers-reduced-motion: reduce){
  .reveal-up{ opacity:1; transform:none; transition:none; }
}

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

@media (min-width:821px){
  .events-row{
    gap:0;
    column-gap:clamp(64px, 8vw, 160px);
    row-gap:clamp(16px, 2vw, 28px);
  }
  .events-list{ padding-right:clamp(12px, 2.5vw, 40px); }
  .events-row .event-media{ margin-left:clamp(8px, 1.6vw, 24px); }
}

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

@media (max-width:1024px){
  .links-grid{ grid-template-columns:repeat(3, 1fr); }
}

@media (max-width:900px){
  .about-row{ grid-template-columns:1fr; }
  .about .profile{ order:2; justify-content:center; }
  .about-copy{ order:1; text-align:center; }
  .about .intro{ margin-inline:auto; text-align:center; }
  .about-title{ text-align:center; }
}

@media (max-width:820px){
  .events-row{ grid-template-columns:1fr; }
  .events-list{ margin-inline:auto; max-width:min(640px, 92vw); }
  .event-name{ text-align:center; }
  .event-pill{ margin:6px auto 18px; }
  .event-media{
    order:2;
    width:min(420px, 86vw);
    margin:clamp(12px, 3vw, 20px) auto 0;
  }
  .event-media img{ width:100%; height:auto; }
}

@media (max-width:740px){
  .links-grid{ grid-template-columns:repeat(2, 1fr); }
  .big-icon{ width:clamp(100px, 34vw, 160px); }
}

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

@media (max-width:560px){
  .header-row{ padding:.8rem 0; }
  .nav a{ margin-left:.9rem; }

  .event-media{ width:min(340px, 72vw); }
  #events .event-media img{
    outline-offset:clamp(6px, 2vw, 10px);
    outline-width:2px;
  }
}

@media (max-width:480px){
  .links-title{ font-size:clamp(30px, 8vw, 52px); }
  .links-grid{ gap:12px 10px; }
  .big-icon{ width:clamp(84px, 36vw, 140px); }
}

@media (max-width: 430px){
  .brand{
    font-size: clamp(14px, 4.6vw, 28px);
  }
  .nav a{
    font-size: clamp(12px, 3.2vw, 18px);
    margin-left: .55rem;
  }
  .site-header .header-row{
    overflow-x: auto;               
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .site-header .header-row::-webkit-scrollbar{ display: none; }
  .event-name{
    font-size: clamp(22px, 5.6vw, 30px); 
    line-height: 1.18;
  }
}

@media (min-width: 431px) and (max-width: 560px){
  .nav a{ font-size: clamp(13px, 3.4vw, 20px); }
  .event-name{ font-size: clamp(22px, 5.2vw, 34px); }
}
