/* ============================================================
   SINAG EVENTS — Design tokens
   Palette pulled from the logo (warm metallic gold on black)
   Type: Space Mono (the studio's own collateral face) for body/UI,
         Cormorant Garamond italic as the sole "script" accent —
         echoes the logo's cursive swoosh without competing with it.
   ============================================================ */
:root{
  --black:        #0a0908;
  --black-soft:   #121110;
  --black-panel:  #17140f;
  --line:         rgba(212,168,75,.22);
  --line-strong:  rgba(212,168,75,.45);

  --gold-deep:    #8a6a24;
  --gold:         #c9973f;
  --gold-bright:  #e7bd63;
  --gold-light:   #f3d788;

  --cream:        #f4ecd8;
  --cream-dim:    #cfc4a6;

  --font-mono: 'Space Mono', 'Courier New', monospace;
  --font-script: 'Cormorant Garamond', Georgia, serif;

  --gold-grad: linear-gradient(115deg, var(--gold-deep) 0%, var(--gold-bright) 35%, var(--gold-light) 50%, var(--gold) 68%, var(--gold-deep) 100%);

  --maxw: 1200px;
  --edge: clamp(24px, 5vw, 72px);
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  background:var(--black);
  color:var(--cream);
  font-family:var(--font-mono);
  font-size:15px;
  line-height:1.7;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ list-style:none; margin:0; padding:0; }
h1,h2,h3,p{ margin:0; }

::selection{ background:var(--gold); color:var(--black); }

/* focus visibility */
a:focus-visible, button:focus-visible{
  outline:1.5px solid var(--gold-bright);
  outline-offset:3px;
}

/* grain overlay for texture */
.grain{
  position:fixed; inset:0; pointer-events:none; z-index:999;
  opacity:.04; mix-blend-mode:overlay;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.icon{ width:18px; height:18px; fill:currentColor; flex:none; }
.icon--brand{ border-radius:5px; object-fit:contain; }

/* ---------- hours block ---------- */
.hours__status{ margin-bottom:16px; }
.hours__list{
  display:flex; flex-direction:column; gap:0;
}
.hours__list li{
  display:flex; align-items:center; justify-content:space-between;
  gap:20px;
  padding:12px 0;
  border-bottom:1px solid var(--line);
  font-size:13px; color:var(--cream-dim);
}
.hours__list li span:first-child{ color:var(--cream); letter-spacing:.03em; }
.hours__list-closed{ color:#e08a7a !important; }
.hours__list-closed span:first-child{ color:var(--cream) !important; }
.hours__list-closed span:last-child{ color:#e08a7a; letter-spacing:.08em; text-transform:uppercase; font-size:11px; }
.hours__list li.is-active-day{
  border-color:var(--gold-bright);
}
.hours__list li.is-active-day span:first-child{ color:var(--gold-bright) !important; }
.hours__list li.is-active-day span:last-child{ color:var(--gold-light); }
.hours__tz{ margin-top:12px; font-size:10.5px; color:var(--cream-dim); opacity:.6; letter-spacing:.04em; }

/* ---------- eyebrow / labels ---------- */
.eyebrow{
  display:flex; align-items:center; gap:.6em;
  font-size:11px; letter-spacing:.22em; text-transform:uppercase;
  color:var(--gold-bright); margin-bottom:18px;
}
.eyebrow .dot{
  width:9px; height:9px; flex:none;
  background:var(--gold-bright);
  clip-path:polygon(50% 0%, 61% 39%, 100% 50%, 61% 61%, 50% 100%, 39% 61%, 0% 50%, 39% 39%);
  box-shadow:0 0 6px rgba(231,189,99,.5);
}

.h2{
  font-family:var(--font-script);
  font-weight:600;
  font-size:clamp(30px, 4vw, 46px);
  line-height:1.15;
  color:var(--cream);
  letter-spacing:.005em;
}
.h2 em{
  font-style:italic;
  font-weight:600;
  background:var(--gold-grad);
  background-size:260% auto;
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
  animation:gold-foil-shimmer 7s linear infinite;
}
@keyframes gold-foil-shimmer{
  0%{ background-position:0% 50%; }
  100%{ background-position:200% 50%; }
}

/* ============================================================
   NAV
   ============================================================ */
.nav{
  position:fixed; top:0; left:0; right:0; z-index:100;
  display:flex; align-items:center; justify-content:space-between;
  padding:18px var(--edge);
  background:linear-gradient(to bottom, rgba(10,9,8,.92), rgba(10,9,8,0));
  backdrop-filter:blur(2px);
}
.nav__mark{ display:flex; align-items:center; }
.nav__logo{ height:34px; width:auto; }
.nav__links{ display:flex; gap:38px; }
.nav__links a{
  font-size:12px; letter-spacing:.1em; text-transform:uppercase;
  color:var(--cream-dim);
  display:flex; align-items:baseline; gap:8px;
  transition:color .25s ease;
}
.nav__links a:hover{ color:var(--gold-bright); }
.nav__num{ color:var(--gold-deep); font-size:10px; }
.nav__right{ display:flex; align-items:center; gap:18px; }
.nav__cta{
  border:1px solid var(--line-strong);
  padding:9px 20px;
  font-size:11px; letter-spacing:.12em; text-transform:uppercase;
  color:var(--gold-bright);
  transition:background .25s ease, color .25s ease;
  white-space:nowrap;
}
.nav__cta:hover{ background:var(--gold-bright); color:var(--black); }

/* ---------- live open/closed status pill ---------- */
.status-pill{
  display:inline-flex; align-items:center; gap:8px;
  font-size:10px; letter-spacing:.1em; text-transform:uppercase;
  color:var(--cream-dim);
  border:1px solid var(--line);
  padding:7px 13px;
  white-space:nowrap;
}
.status-pill__dot{
  width:7px; height:7px; border-radius:50%;
  background:var(--cream-dim);
  flex:none;
}
.status-pill.is-open .status-pill__dot{
  background:#39d353;
  box-shadow:0 0 8px #39d353;
  animation:pulse-green 1.6s ease-in-out infinite;
}
.status-pill.is-open{ color:#8beb9d; border-color:rgba(57,211,83,.35); }

.status-pill.is-closed .status-pill__dot{
  background:#ff4d4d;
  box-shadow:0 0 8px #ff4d4d;
  animation:pulse-red 1.1s ease-in-out infinite;
}
.status-pill.is-closed{ color:#ff9a9a; border-color:rgba(255,77,77,.35); }

@keyframes pulse-red{
  0%,100%{ opacity:1; transform:scale(1); }
  50%{ opacity:.25; transform:scale(.7); }
}
@keyframes pulse-green{
  0%,100%{ opacity:1; transform:scale(1); }
  50%{ opacity:.4; transform:scale(.82); }
}

.status-pill--mobile{ margin-bottom:6px; }
.status-pill--lg{ font-size:12px; padding:10px 18px; }
.status-pill--lg .status-pill__dot{ width:9px; height:9px; }

.nav__burger{
  display:none; flex-direction:column; justify-content:center; gap:5px;
  width:34px; height:34px; background:none; border:0; cursor:pointer;
}
.nav__burger span{ width:100%; height:1.5px; background:var(--gold-bright); }

.mobile-menu{
  position:fixed; inset:0; z-index:99;
  background:var(--black);
  display:flex; flex-direction:column; align-items:flex-start; justify-content:center;
  gap:26px; padding:0 var(--edge);
  transform:translateY(-100%);
  transition:transform .45s cubic-bezier(.7,0,.2,1);
}
.mobile-menu.is-open{ transform:translateY(0); }
.mobile-menu a{ font-family:var(--font-script); font-size:32px; font-style:italic; color:var(--cream); }
.mobile-menu__cta{ margin-top:12px; font-family:var(--font-mono); font-style:normal; font-size:13px; letter-spacing:.1em; text-transform:uppercase; color:var(--gold-bright); border:1px solid var(--line-strong); padding:12px 22px; }

/* ============================================================
   HERO
   ============================================================ */
.hero{
  position:relative;
  min-height:100svh;
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  text-align:center;
  padding:140px var(--edge) 0;
  background:
    radial-gradient(60% 50% at 50% 18%, rgba(201,151,63,.10), transparent 70%),
    var(--black);
  overflow:hidden;
}
.hero__trail{
  position:absolute; inset:0; width:100%; height:100%;
  opacity:.5;
}

.hero__stars{
  position:absolute; inset:0;
  overflow:hidden;
  pointer-events:none;
  z-index:1;
}
.hero__stars .star{
  position:absolute;
  background:var(--gold-light);
  clip-path:polygon(50% 0%, 61% 39%, 100% 50%, 61% 61%, 50% 100%, 39% 61%, 0% 50%, 39% 39%);
  opacity:0;
  animation-name:star-twinkle;
  animation-timing-function:ease-in-out;
  animation-iteration-count:infinite;
}
.hero__stars .star--dot{
  clip-path:none;
  border-radius:50%;
}
@keyframes star-twinkle{
  0%, 100%{ opacity:0; transform:scale(.5); }
  50%{ opacity:var(--peak, .55); transform:scale(1); }
}
.hero__trail path{
  fill:none;
  stroke:var(--gold-deep);
  stroke-width:1;
  stroke-linecap:round;
  stroke-dasharray:2 18;
  opacity:0;
  animation:
    trail-fade-in 1.6s ease forwards .2s,
    trail-flow 14s linear infinite .2s;
}
@keyframes trail-fade-in{
  from{ opacity:0; }
  to{ opacity:1; }
}
@keyframes trail-flow{
  from{ stroke-dashoffset:0; }
  to{ stroke-dashoffset:-400; }
}
.hero__inner{ position:relative; z-index:2; max-width:760px; }
.hero__eyebrow{ justify-content:center; }
.hero__logo{
  width:min(74vw, 520px);
  margin:0 auto 6px;
  filter:drop-shadow(0 0 40px rgba(201,151,63,.18));
}
.hero__managed-by{
  font-size:10.5px;
  letter-spacing:.08em;
  color:var(--cream-dim);
  opacity:.7;
  margin-top:-4px;
  margin-bottom:22px;
}
.hero__managed-by a{
  color:var(--gold-deep);
  border-bottom:1px solid transparent;
  transition:color .25s ease, border-color .25s ease;
}
.hero__managed-by a:hover{
  color:var(--gold-bright);
  border-color:var(--gold-bright);
}
.hero__tagline{
  font-family:var(--font-script);
  font-size:clamp(18px, 2.4vw, 26px);
  color:var(--cream-dim);
  font-weight:500;
  line-height:1.5;
  margin-top:6px;
}
.hero__tagline em{
  font-style:italic;
  background:var(--gold-grad);
  background-size:260% auto;
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
  animation:gold-foil-shimmer 7s linear infinite;
}

.hero__actions{
  margin-top:44px;
  display:flex; gap:18px; justify-content:center; flex-wrap:wrap;
}
.btn{
  font-family:var(--font-mono);
  font-size:12px; letter-spacing:.12em; text-transform:uppercase;
  padding:15px 30px;
  display:inline-flex; align-items:center; gap:8px;
  border:1px solid transparent;
  transition:transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
}
.btn--gold{
  background:var(--gold-grad);
  background-size:200% 100%;
  color:var(--black);
  font-weight:700;
}
.btn--gold:hover{ background-position:100% 0; box-shadow:0 8px 26px rgba(201,151,63,.25); transform:translateY(-1px); }
.btn--ghost{
  border-color:var(--line-strong);
  color:var(--cream-dim);
}
.btn--ghost:hover{ color:var(--gold-bright); border-color:var(--gold-bright); }

.hero__services-line{
  position:relative; z-index:2;
  width:100%;
  max-width:900px;
  margin:74px auto 0;
  padding-top:26px;
  border-top:1px solid var(--line);
  font-size:11.5px; letter-spacing:.14em;
  color:var(--gold-deep);
  line-height:2.1;
}

/* ============================================================
   SECTION LAYOUT (shared two-column grid)
   ============================================================ */
.section{ padding:120px var(--edge); }
.section__grid{
  max-width:var(--maxw); margin:0 auto;
  display:grid; grid-template-columns:.85fr 1.15fr; gap:70px;
}
.section__label-col{ position:sticky; top:120px; align-self:start; }
.section__note{ margin-top:18px; color:var(--cream-dim); font-size:13px; max-width:32ch; }
.section__body-col p{ color:var(--cream-dim); max-width:56ch; }
.section__body-col p + p{ margin-top:18px; }
.lead{ color:var(--cream) !important; font-size:17px; line-height:1.75; }
.lead strong{ color:var(--gold-bright); font-weight:700; }

.divider{
  display:flex; align-items:center; justify-content:center;
  color:var(--gold-deep); font-size:14px;
  padding:0 var(--edge);
}
.divider::before,.divider::after{
  content:''; flex:1; height:1px; background:var(--line);
}
.divider span{ padding:0 20px; }

/* ---------- services list ---------- */
.services__list{
  display:grid; grid-template-columns:1fr 1fr; gap:0 40px;
}
.services__list li{
  display:flex; align-items:center; gap:14px;
  padding:20px 0;
  border-bottom:1px solid var(--line);
  font-size:15px; color:var(--cream);
  letter-spacing:.01em;
  transition:padding-left .3s ease, color .3s ease;
}
.services__list li:hover{ padding-left:8px; color:var(--gold-light); }
.services__mark{ color:var(--gold-bright); font-size:11px; }

/* ============================================================
   EVENTS banner
   ============================================================ */
.events{
  position:relative;
  padding:140px var(--edge);
  text-align:center;
  background:var(--black-panel);
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.events::before{
  content:'';
  position:absolute; inset:0;
  background:radial-gradient(50% 60% at 50% 0%, rgba(201,151,63,.08), transparent 70%);
  pointer-events:none;
}
.events__inner{ position:relative; max-width:820px; margin:0 auto; }
.events__quote{
  font-family:var(--font-script);
  font-style:italic;
  font-size:clamp(22px, 3.2vw, 34px);
  line-height:1.45;
  color:var(--cream);
}
.events__quote strong{
  background:var(--gold-grad);
  background-size:260% auto;
  -webkit-background-clip:text; background-clip:text; color:transparent;
  font-style:normal; font-weight:700;
  animation:gold-foil-shimmer 7s linear infinite;
}
.events__body{
  margin-top:26px;
  color:var(--cream-dim);
  font-size:14px; line-height:1.9;
  max-width:64ch; margin-left:auto; margin-right:auto;
}
.events__body--emphasis{ color:var(--gold-light); }
.events__inner .btn{ margin-top:44px; }

/* ============================================================
   BACK TO TOP
   ============================================================ */
.back-to-top{
  position:fixed; right:20px; bottom:86px; z-index:89;
  width:44px; height:44px;
  background:var(--black-panel);
  border:1px solid var(--line-strong);
  border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  cursor:pointer;
  opacity:0; transform:translateY(10px);
  pointer-events:none;
  transition:opacity .3s ease, transform .3s ease, border-color .25s ease, background .25s ease;
}
.back-to-top.is-visible{ opacity:1; transform:translateY(0); pointer-events:auto; }
.back-to-top[hidden]{ display:flex; } /* overridden by JS toggling opacity, keep in flow for transition */
.back-to-top svg{ width:18px; height:18px; fill:var(--gold-bright); }
.back-to-top:hover{ border-color:var(--gold-bright); background:var(--black); }

@media (max-width:520px){
  .back-to-top{ right:14px; bottom:76px; width:40px; height:40px; }
}

/* ============================================================
   CURSOR SPARKLE TRAIL — hero only, desktop pointer devices
   ============================================================ */
.sparkle{
  position:fixed;
  z-index:5;
  pointer-events:none;
  width:5px; height:5px;
  background:var(--gold-light);
  clip-path:polygon(50% 0%, 61% 39%, 100% 50%, 61% 61%, 50% 100%, 39% 61%, 0% 50%, 39% 39%);
  opacity:.85;
  animation:sparkle-fade .9s ease-out forwards;
}
@keyframes sparkle-fade{
  0%{ opacity:.85; transform:translate(-50%,-50%) scale(1) translateY(0); }
  100%{ opacity:0; transform:translate(-50%,-50%) scale(.3) translateY(-18px); }
}

/* ============================================================
   WORKSHOPS SIDE TAB — persistent, always-findable entry point
   ============================================================ */
.workshops-tab{
  position:fixed;
  left:0; top:50%;
  transform:translateY(-50%);
  z-index:95;
  writing-mode:vertical-rl;
  text-orientation:mixed;
  display:flex; align-items:center; gap:9px;
  background:var(--gold-grad);
  background-size:200% 200%;
  color:var(--black);
  font-family:var(--font-mono);
  font-size:11px;
  font-weight:700;
  letter-spacing:.12em;
  text-transform:uppercase;
  padding:22px 8px 22px 9px;
  border:none;
  border-radius:0 8px 8px 0;
  cursor:pointer;
  box-shadow:5px 0 24px rgba(0,0,0,.45);
  transition:padding .3s ease, box-shadow .3s ease, background-position .5s ease;
}
.workshops-tab:hover{
  padding-right:14px;
  box-shadow:7px 0 30px rgba(0,0,0,.55);
  background-position:100% 0;
}
.workshops-tab__dot{
  width:6px; height:6px; border-radius:50%; flex:none;
  background:var(--black);
  opacity:.55;
  animation:workshops-tab-blink 1.8s ease-in-out infinite;
}
@keyframes workshops-tab-blink{
  0%,100%{ opacity:.55; }
  50%{ opacity:.15; }
}

@media (max-width:640px){
  .workshops-tab{
    font-size:10px;
    padding:16px 6px 16px 7px;
  }
}
.workshops-banner{
  padding:110px var(--edge);
  background:var(--black-panel);
  border-bottom:1px solid var(--line);
}
.workshops-banner__inner{
  max-width:var(--maxw); margin:0 auto;
  display:grid; grid-template-columns:.78fr 1.22fr; gap:64px; align-items:center;
}
.workshops-banner__poster{
  border:1px solid var(--line-strong);
  overflow:hidden;
  align-self:start;
}
.workshops-banner__poster img{ width:100%; display:block; }
.workshops-banner__text{
  margin-top:18px; color:var(--cream-dim); font-size:14px; line-height:1.85; max-width:58ch;
}
.workshops-banner__actions{
  margin-top:32px; display:flex; gap:16px; flex-wrap:wrap;
}
.workshops-banner__actions .btn{ cursor:pointer; border:1px solid transparent; }

@media (max-width:860px){
  .workshops-banner__inner{ grid-template-columns:1fr; gap:36px; }
  .workshops-banner__poster{ max-width:340px; margin:0 auto; }
}
@media (max-width:520px){
  .workshops-banner{ padding:70px var(--edge); }
  .workshops-banner__actions{ flex-direction:column; }
  .workshops-banner__actions .btn{ width:100%; justify-content:center; }
}

/* ============================================================
   BOOKING FORM
   ============================================================ */
.booking-form{ max-width:560px; }
.field{ display:flex; flex-direction:column; gap:8px; margin-bottom:22px; }
.field-row{ display:grid; grid-template-columns:1fr 1fr; gap:20px; }
.field label{
  font-size:10.5px; letter-spacing:.12em; text-transform:uppercase;
  color:var(--gold-deep);
}
.field input,
.field select,
.field textarea{
  font-family:var(--font-mono);
  font-size:14px;
  color:var(--cream);
  background:transparent;
  border:none;
  border-bottom:1px solid var(--line-strong);
  padding:10px 2px;
  outline:none;
  transition:border-color .25s ease;
  resize:vertical;
}
.field select{
  appearance:none;
  -webkit-appearance:none;
  background-image:linear-gradient(45deg, transparent 50%, var(--gold) 50%), linear-gradient(135deg, var(--gold) 50%, transparent 50%);
  background-position: calc(100% - 6px) center, calc(100% - 1px) center;
  background-size: 6px 6px, 6px 6px;
  background-repeat:no-repeat;
}
.field select option{ background:var(--black-soft); color:var(--cream); }
.field input::placeholder,
.field textarea::placeholder{ color:var(--cream-dim); opacity:.5; }
.field input:focus,
.field select:focus,
.field textarea:focus{ border-color:var(--gold-bright); }
.field input:invalid:not(:placeholder-shown){ border-color:#c9573f; }

.booking-form__actions{
  display:flex; gap:16px; flex-wrap:wrap;
  margin-top:8px;
}
.booking-form__actions .btn{ border:1px solid transparent; cursor:pointer; }
.booking-form__actions .btn--gold{ display:inline-flex; align-items:center; gap:10px; }
.booking-form__actions .btn--gold img{ filter:brightness(0); opacity:.85; }
.booking-form__note{
  margin-top:16px; font-size:11.5px; color:var(--cream-dim); opacity:.75;
}
.booking-form__note.is-error{ color:#e08a7a; opacity:1; }
.booking-form__note.is-success{ color:var(--gold-light); opacity:1; }

@media (max-width:560px){
  .field-row{ grid-template-columns:1fr; gap:0; }
  .booking-form__actions{ flex-direction:column; }
  .booking-form__actions .btn{ width:100%; justify-content:center; }
}
.nav__links a.is-current{ color:var(--gold-bright); }
.nav__links a.is-current .nav__num{ color:var(--gold-bright); }

.nav__workshops{
  display:flex; align-items:center; gap:7px;
  color:var(--gold-bright) !important;
  font-weight:700;
  cursor:pointer;
}
.nav__workshops-dot{
  width:6px; height:6px; border-radius:50%; flex:none;
  background:var(--gold-bright);
  box-shadow:0 0 6px var(--gold-bright);
  animation:pulse-green 1.6s ease-in-out infinite;
}

/* ============================================================
   SECONDARY PAGE HERO (Team, etc.)
   ============================================================ */
.page-hero{
  padding:150px var(--edge) 80px;
  max-width:820px;
  margin:0 auto;
  text-align:center;
}
.page-hero__eyebrow{ justify-content:center; }
.page-hero__title{
  font-family:var(--font-script);
  font-weight:600;
  font-size:clamp(34px, 5vw, 54px);
  line-height:1.15;
  color:var(--cream);
}
.page-hero__title em{
  font-style:italic;
  background:var(--gold-grad);
  background-size:260% auto;
  -webkit-background-clip:text; background-clip:text; color:transparent;
  animation:gold-foil-shimmer 7s linear infinite;
}
.page-hero__lead{
  margin-top:22px;
  color:var(--cream-dim);
  font-size:15px;
  line-height:1.8;
  max-width:56ch;
  margin-left:auto; margin-right:auto;
}

/* ============================================================
   TEAM GRID
   ============================================================ */
.team{ padding-top:20px; }
.team__grid{
  max-width:var(--maxw); margin:0 auto;
  display:grid; grid-template-columns:repeat(3, 1fr); gap:2px;
  background:var(--line);
  border:1px solid var(--line);
}
.team-card{
  background:var(--black);
  padding:44px 30px;
  text-align:center;
  transition:background .3s ease;
}
.team-card:hover{ background:var(--black-panel); }
.team-card__frame{
  width:84px; height:84px;
  margin:0 auto 22px;
  border:1px solid var(--line-strong);
  display:flex; align-items:center; justify-content:center;
  position:relative;
}
.team-card__frame::before{
  content:'';
  position:absolute; inset:6px;
  border:1px solid var(--line);
}
.team-card--featured{ background:var(--black-panel); }
.team-card__frame--photo{
  width:112px; height:112px;
  overflow:hidden;
  border-color:var(--gold-bright);
}
.team-card__frame--photo::before{ display:none; }
.team-card__frame--photo img{
  width:100%; height:100%;
  object-fit:cover;
  filter:grayscale(.55) contrast(1.05);
  transition:filter .4s ease;
}
.team-card--featured:hover .team-card__frame--photo img{ filter:grayscale(0); }
.team-card__title{
  margin-top:4px;
  font-size:11px; letter-spacing:.1em; text-transform:uppercase;
  color:var(--gold-bright);
}
.team-card__initials{
  font-size:10px; letter-spacing:.12em; text-transform:uppercase;
  color:var(--gold-bright);
}
.team-card__name{
  font-family:var(--font-script);
  font-style:italic; font-weight:600;
  font-size:19px;
  color:var(--cream);
}
.team-card__role{
  margin-top:10px;
  font-size:12.5px; line-height:1.7;
  color:var(--cream-dim);
}
.team__note{
  max-width:var(--maxw); margin:36px auto 0;
  font-size:11px; color:var(--cream-dim); opacity:.55;
  text-align:center;
}
.team__note code{
  color:var(--gold-deep);
  font-family:var(--font-mono);
}

.team-cta{ text-align:center; }
.team-cta__inner{ max-width:600px; margin:0 auto; }
.team-cta__inner p{
  margin-top:16px; color:var(--cream-dim); font-size:14px; line-height:1.8;
}
.team-cta__inner .hero__actions{ margin-top:34px; justify-content:center; }

@media (max-width:860px){
  .team__grid{ grid-template-columns:repeat(2, 1fr); }
}
@media (max-width:560px){
  .team__grid{ grid-template-columns:1fr; }
  .page-hero{ padding:120px var(--edge) 60px; }
}

.contact__block{ margin-top:38px; }
.contact__label{
  display:block; font-size:10px; letter-spacing:.18em; text-transform:uppercase;
  color:var(--gold-deep); margin-bottom:10px;
}
.contact__value{ color:var(--cream-dim); font-size:14px; line-height:1.8; }

.contact__whatsapp{
  display:flex; width:fit-content; align-items:center; gap:10px;
  font-size:16px; color:var(--gold-bright);
  border-bottom:1px solid var(--line-strong);
  padding-bottom:4px;
  transition:color .25s ease, border-color .25s ease, gap .25s ease;
}
.contact__whatsapp:hover{ color:var(--gold-light); border-color:var(--gold-light); gap:14px; }
.contact__whatsapp + .contact__whatsapp{ margin-top:12px; }
.contact__whatsapp--secondary{
  font-size:14px;
  color:var(--cream-dim);
  border-color:var(--line);
}
.contact__whatsapp--secondary:hover{ color:var(--gold-bright); border-color:var(--gold-bright); }
.contact__hint{ margin-top:10px; font-size:11px; color:var(--cream-dim); opacity:.7; }

.contact__socials{ display:flex; gap:16px; }
.social{
  display:inline-flex; align-items:center; gap:8px;
  font-size:12px; letter-spacing:.06em; text-transform:uppercase;
  border:1px solid var(--line); padding:10px 16px;
  color:var(--cream-dim);
  transition:border-color .25s ease, color .25s ease, transform .25s ease;
}
.social:hover{ border-color:var(--gold-bright); color:var(--gold-bright); transform:translateY(-2px); }

.contact__map-col{ display:flex; flex-direction:column; gap:16px; }
.map-frame{
  border:1px solid var(--line-strong);
  filter:grayscale(.35) sepia(.18) saturate(1.3);
  aspect-ratio:4/3.1;
  overflow:hidden;
  position:relative;
}
.map-frame::after{
  content:''; position:absolute; inset:0; pointer-events:none;
  box-shadow:inset 0 0 60px rgba(0,0,0,.55);
}
.map-frame iframe{ width:100%; height:100%; border:0; filter:invert(0); }
.map-directions{
  align-self:flex-end;
  font-size:11px; letter-spacing:.1em; text-transform:uppercase;
  color:var(--gold-bright);
  border-bottom:1px solid var(--line-strong);
  padding-bottom:2px;
}
.map-directions:hover{ color:var(--gold-light); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer{
  padding:70px var(--edge) 40px;
  text-align:center;
  border-top:1px solid var(--line);
}
.footer__logo{ height:30px; margin:0 auto 20px; opacity:.9; }
.footer__line{ color:var(--cream-dim); font-size:13px; font-family:var(--font-script); font-style:italic; font-size:18px; }
.footer__bottom{
  margin-top:40px;
  display:flex; align-items:center; justify-content:space-between;
  max-width:var(--maxw); margin-left:auto; margin-right:auto;
  font-size:11px; letter-spacing:.05em; color:var(--cream-dim); opacity:.7;
  flex-wrap:wrap; gap:14px;
}
.footer__socials{ display:flex; gap:16px; }
.footer__socials a:hover{ color:var(--gold-bright); }

/* floating whatsapp — interactive two-number chooser */
.float-wa-wrap{
  position:fixed; right:20px; bottom:20px; z-index:90;
}
.float-wa{
  position:relative;
  width:56px; height:56px; border-radius:50%;
  background:var(--black-panel);
  border:1.5px solid var(--line-strong);
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 10px 30px rgba(0,0,0,.55);
  cursor:pointer;
  transition:transform .25s ease, border-color .25s ease;
}
.float-wa img{ width:28px; height:28px; }
.float-wa:hover{ transform:scale(1.08); border-color:var(--gold-bright); }
.float-wa[aria-expanded="true"]{ border-color:var(--gold-bright); }
.float-wa__ping{
  position:absolute; inset:-1.5px; border-radius:50%;
  border:1.5px solid var(--gold-bright);
  opacity:0;
  animation:ping-ring 2.6s cubic-bezier(.2,.7,.2,1) infinite;
}
@keyframes ping-ring{
  0%{ transform:scale(1); opacity:.55; }
  80%{ transform:scale(1.55); opacity:0; }
  100%{ opacity:0; }
}

.float-wa-menu{
  position:absolute;
  right:0; bottom:calc(100% + 14px);
  min-width:210px;
  background:var(--black-panel);
  border:1px solid var(--line-strong);
  box-shadow:0 20px 50px rgba(0,0,0,.5);
  padding:8px;
  opacity:0; visibility:hidden;
  transform:translateY(8px);
  transition:opacity .22s ease, transform .22s ease, visibility .22s;
}
.float-wa-menu.is-open{
  opacity:1; visibility:visible; transform:translateY(0);
}
.float-wa-menu a{
  display:flex; align-items:center; gap:10px;
  padding:11px 12px;
  font-size:13px; color:var(--cream);
  white-space:nowrap;
  border-radius:2px;
  transition:background .2s ease, color .2s ease;
}
.float-wa-menu a:hover{ background:rgba(212,168,75,.1); color:var(--gold-bright); }
.float-wa-menu a img{ width:16px; height:16px; flex:none; }
.float-wa-menu::after{
  content:'';
  position:absolute; top:100%; right:20px;
  width:10px; height:10px;
  background:var(--black-panel);
  border-right:1px solid var(--line-strong);
  border-bottom:1px solid var(--line-strong);
  transform:translateY(-50%) rotate(45deg);
}

/* ============================================================
   REVEAL ON SCROLL
   ============================================================ */
[data-reveal]{
  opacity:0; transform:translateY(24px);
  transition:opacity .8s cubic-bezier(.2,.7,.2,1), transform .8s cubic-bezier(.2,.7,.2,1);
}
[data-reveal].is-visible{ opacity:1; transform:translateY(0); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width:900px){
  .nav__links, .nav__cta{ display:none; }
  .nav__burger{ display:flex; }
  .section__grid{ grid-template-columns:1fr; gap:36px; }
  .section__label-col{ position:static; }
  .services__list{ grid-template-columns:1fr; }
  .footer__bottom{ flex-direction:column; }
  .hero__marquee{ margin-top:56px; }
}
@media (max-width:520px){
  :root{ --edge:20px; }
  .section{ padding:64px var(--edge); }
  .events{ padding:70px var(--edge); }
  .hero{ padding-top:104px; }
  .nav{ padding:14px var(--edge); }
  .nav__logo{ height:28px; }
  .nav__right{ gap:10px; }
  .status-pill{ display:none; }
  .hero__actions{ flex-direction:column; width:100%; }
  .hero__actions .btn{ width:100%; justify-content:center; }
  .hero__tagline{ font-size:17px; }
  .contact__socials{ flex-wrap:wrap; }
  .hours__list li{ font-size:12.5px; }
  .float-wa-wrap{ right:14px; bottom:14px; }
  .float-wa{ width:50px; height:50px; }
  .float-wa img{ width:24px; height:24px; }
  .footer__bottom{ align-items:flex-start; }
}

@media (min-width:901px) and (max-width:1080px){
  .nav__right{ gap:12px; }
  .nav__cta{ padding:9px 14px; }
}

@media (prefers-reduced-motion: reduce){
  *{ animation-duration:.001ms !important; animation-iteration-count:1 !important; transition-duration:.001ms !important; scroll-behavior:auto !important; }
}

/* ============================================================
   WORKSHOPS PROMO — temporary announcement popup
   ============================================================ */
.promo-backdrop{
  position:fixed; inset:0; z-index:200;
  display:flex; align-items:center; justify-content:center;
  padding:24px;
  background:rgba(6,5,4,.78);
  backdrop-filter:blur(6px);
  opacity:0;
  transition:opacity .35s ease;
}
.promo-backdrop.is-visible{ opacity:1; }
.promo-backdrop[hidden]{ display:none; }

.promo-modal{
  position:relative;
  width:100%; max-width:560px;
  max-height:88vh;
  overflow-y:auto;
  background:var(--black-panel);
  border:1px solid var(--line-strong);
  padding:44px 38px 36px;
  transform:translateY(18px) scale(.98);
  transition:transform .4s cubic-bezier(.2,.7,.2,1);
  box-shadow:0 30px 80px rgba(0,0,0,.6);
}
.promo-backdrop.is-visible .promo-modal{ transform:translateY(0) scale(1); }

.promo-modal__close{
  position:absolute; top:16px; right:16px;
  width:32px; height:32px;
  background:none; border:1px solid var(--line);
  color:var(--cream-dim);
  font-size:13px; cursor:pointer;
  transition:border-color .2s ease, color .2s ease;
}
.promo-modal__close:hover{ border-color:var(--gold-bright); color:var(--gold-bright); }

.promo-modal__head{ text-align:left; margin-bottom:26px; }
.promo-modal__eyebrow{ margin-bottom:14px; }
.promo-modal__title{
  font-family:var(--font-script);
  font-weight:600;
  font-size:clamp(26px, 4vw, 34px);
  line-height:1.18;
  color:var(--cream);
}
.promo-modal__title em{
  font-style:italic;
  background:var(--gold-grad);
  -webkit-background-clip:text; background-clip:text; color:transparent;
}
.promo-modal__sub{
  margin-top:12px; font-size:13.5px; color:var(--cream-dim); line-height:1.7;
}

.promo-list{ border-top:1px solid var(--line); }
.promo-list li{
  display:flex; flex-direction:column; gap:3px;
  padding:14px 0;
  border-bottom:1px solid var(--line);
}
.promo-list__name{ font-size:14px; color:var(--cream); letter-spacing:.01em; }
.promo-list__meta{ font-size:11.5px; color:var(--gold-deep); letter-spacing:.02em; }

.promo-modal__poster{
  width:100%;
  border:1px solid var(--line-strong);
  margin-bottom:22px;
}
.promo-modal__schedule-label{
  font-size:10px; letter-spacing:.16em; text-transform:uppercase;
  color:var(--gold-deep);
  margin-bottom:4px;
}
.promo-list__name em{
  font-style:italic; font-weight:400;
  color:var(--gold-deep);
  font-size:11px;
  margin-left:2px;
}

.promo-modal__location{
  margin-top:18px;
  font-size:11px; letter-spacing:.08em; text-transform:uppercase;
  color:var(--cream-dim); opacity:.7;
}

.promo-modal__actions{
  margin-top:28px;
  display:flex; gap:14px; flex-wrap:wrap;
}
.promo-modal__actions .btn{ cursor:pointer; }
.promo-modal__actions .btn--ghost{ display:inline-flex; align-items:center; gap:9px; }
.promo-modal__actions .btn--ghost img{ opacity:.85; }

@media (max-width:560px){
  .promo-modal{ padding:34px 22px 28px; max-height:92vh; }
  .promo-modal__actions{ flex-direction:column; }
  .promo-modal__actions .btn{ width:100%; justify-content:center; }
}
