/* Elite Event Magazine — eliteeventmag.com
   Shares the NYMD network type ramp, spacing rhythm and motion timing.
   Owns its palette: ink, ivory, gold. Editorial, not clinical. */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300..900;1,9..144,300..900&family=Inter+Tight:wght@300;400;500;600&display=swap');

:root{
  --ink:      #0E0F10;
  --ink-2:    #1B1D1F;
  --ivory:    #F7F4ED;
  --ivory-2:  #EFEAE0;
  --gold:     #B8945A;
  --gold-lt:  #D9BE8A;
  --muted:    #6E6A63;
  --line:     rgba(14,15,16,.14);
  --line-dk:  rgba(247,244,237,.18);

  --display:  'Fraunces', 'Times New Roman', Georgia, serif;
  --body:     'Inter Tight', system-ui, -apple-system, sans-serif;

  --h1: clamp(2.4rem, 1.3rem + 4.2vw, 5.2rem);
  --h2: clamp(1.7rem, 1.1rem + 2.2vw, 2.9rem);
  --h3: clamp(1.15rem, .98rem + .75vw, 1.6rem);

  --maxw: 1240px;
  --narrow: 720px;
  --gap: clamp(1rem, .6rem + 1.4vw, 2rem);

  --ease: cubic-bezier(.22,.61,.36,1);
  --dur-fast: 180ms;
  --dur: 320ms;
  --dur-slow: 560ms;
}
@media (prefers-reduced-motion: reduce){ :root{ --dur-fast:0ms; --dur:0ms; --dur-slow:0ms; } }

*,*::before,*::after{ box-sizing:border-box; }
html{ -webkit-text-size-adjust:100%; scroll-behavior:smooth; }
body{
  margin:0; background:var(--ivory); color:var(--ink);
  font-family:var(--body); font-size:17px; line-height:1.65;
  font-synthesis-weight:none; -webkit-font-smoothing:antialiased;
}
img{ max-width:100%; display:block; }
a{ color:inherit; }
.wrap{ max-width:var(--maxw); margin:0 auto; padding-inline:clamp(18px,4vw,40px); }
.narrow{ max-width:var(--narrow); margin-inline:auto; }

/* ---------- masthead / nav ---------- */
.topbar{
  background:var(--ink); color:var(--ivory);
  font-size:.72rem; letter-spacing:.16em; text-transform:uppercase;
  padding:.55rem 0;
}
.topbar .wrap{ display:flex; justify-content:space-between; gap:1rem; flex-wrap:wrap; }
.topbar a{ text-decoration:none; opacity:.8; }
.topbar a:hover{ opacity:1; color:var(--gold-lt); }

.masthead{ text-align:center; padding:clamp(1.6rem,4vw,3rem) 0 1rem; }
.wordmark{ margin:0; line-height:0; }
.wordmark a{ display:inline-block; text-decoration:none; }
.wordmark img{
  width:clamp(230px, 46vw, 470px); height:auto; margin-inline:auto;
}
.rule{ height:1px; background:var(--ink); opacity:.85; margin-top:1.2rem; }
.rule.thin{ opacity:.16; }

nav.sections{ border-bottom:1px solid var(--line); }
nav.sections ul{
  list-style:none; margin:0; padding:.85rem 0; display:flex; gap:clamp(1rem,3vw,2.4rem);
  justify-content:center; flex-wrap:wrap;
  font-size:.74rem; letter-spacing:.2em; text-transform:uppercase;
}
nav.sections a{ text-decoration:none; padding-bottom:2px; border-bottom:1px solid transparent; transition:border-color var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease); }
nav.sections a:hover,nav.sections a[aria-current]{ border-color:var(--gold); color:var(--gold); }

/* ---------- kickers, meta ---------- */
.kicker{
  font-size:.7rem; letter-spacing:.26em; text-transform:uppercase;
  color:var(--gold); font-weight:500; margin:0 0 .7rem;
}
.kicker.dark{ color:var(--gold-lt); }
.meta{ font-size:.78rem; letter-spacing:.1em; text-transform:uppercase; color:var(--muted); }
.byline{ font-size:.82rem; color:var(--muted); }
.byline b{ color:var(--ink); font-weight:500; }

/* ---------- lead / hero ---------- */
.lead{ position:relative; margin-top:clamp(1.4rem,3vw,2.4rem); }
.lead-figure{ position:relative; overflow:hidden; background:var(--ink-2); border-radius:2px; }
.lead-figure img{ width:100%; aspect-ratio:16/9; object-fit:cover;
  transition:transform var(--dur-slow) var(--ease); }
.lead:hover .lead-figure img{ transform:scale(1.02); }
.lead-body{ padding:clamp(1.2rem,3vw,2rem) 0 0; max-width:900px; }
.lead h1{ font-family:var(--display); font-weight:400; font-size:var(--h1);
  line-height:1.02; margin:.2rem 0 .8rem; letter-spacing:-.015em; }
.lead h1 a{ text-decoration:none; }
.standfirst{ font-size:clamp(1.02rem,.95rem + .4vw,1.3rem); color:var(--ink-2); max-width:62ch; margin:0 0 1rem; }

/* ---------- grid of events ---------- */
.grid{ display:grid; gap:clamp(1.6rem,3vw,2.6rem); }
.grid.c3{ grid-template-columns:repeat(3,1fr); }
.grid.c2{ grid-template-columns:repeat(2,1fr); }
@media (max-width:900px){ .grid.c3{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:620px){ .grid.c3,.grid.c2{ grid-template-columns:1fr; } }

.card figure{ margin:0; overflow:hidden; background:var(--ivory-2); border-radius:2px; }
.card img{ width:100%; aspect-ratio:4/3; object-fit:cover; transition:transform var(--dur-slow) var(--ease); }
.card:hover img{ transform:scale(1.035); }
.card h3{ font-family:var(--display); font-weight:400; font-size:var(--h3);
  line-height:1.15; margin:.75rem 0 .4rem; letter-spacing:-.01em; }
.card h3 a{ text-decoration:none; }
.card h3 a:hover{ color:var(--gold); }
.card p{ margin:0 0 .5rem; color:var(--muted); font-size:.94rem; }

/* ---------- section headers ---------- */
.sec{ padding:clamp(2.4rem,5vw,4.2rem) 0 0; }
.sec-head{ display:flex; align-items:baseline; justify-content:space-between;
  gap:1rem; border-bottom:1px solid var(--ink); padding-bottom:.6rem; margin-bottom:clamp(1.4rem,3vw,2.2rem); }
.sec-head h2{ font-family:var(--display); font-weight:400; font-size:clamp(1.2rem,1rem + .8vw,1.7rem);
  margin:0; letter-spacing:.02em; }
.sec-head a{ font-size:.74rem; letter-spacing:.2em; text-transform:uppercase; text-decoration:none; color:var(--muted); white-space:nowrap; }
.sec-head a:hover{ color:var(--gold); }

/* ---------- dark band ---------- */
.band{ background:var(--ink); color:var(--ivory); margin-top:clamp(2.8rem,6vw,5rem);
  padding:clamp(2.4rem,5vw,4rem) 0; }
.band h2{ font-family:var(--display); font-weight:300; font-size:var(--h2); margin:0 0 .8rem; }
.band p{ color:rgba(247,244,237,.72); }
.band a{ color:var(--gold-lt); }

/* ---------- event article ---------- */
.hero-full{ position:relative; background:var(--ink); }
.hero-full img{ width:100%; height:clamp(320px,62vh,720px); object-fit:cover; opacity:.86; }
.hero-full .cap{ position:absolute; inset:auto 0 0 0;
  background:linear-gradient(to top,rgba(14,15,16,.92),rgba(14,15,16,0));
  color:var(--ivory); padding:clamp(2rem,6vw,4.5rem) 0 clamp(1.4rem,3vw,2.4rem); }
.hero-full h1{ font-family:var(--display); font-weight:400; font-size:var(--h1);
  line-height:1.02; margin:.4rem 0 .6rem; letter-spacing:-.015em; max-width:16ch; }
.hero-full .meta{ color:rgba(247,244,237,.7); }

.article{ padding:clamp(2rem,5vw,3.4rem) 0; }
.article p{ margin:0 0 1.15rem; }
.article p.dropcap::first-letter{
  font-family:var(--display); font-weight:400; float:left; font-size:3.6em;
  line-height:.82; padding:.06em .12em 0 0; color:var(--gold);
}
.article h2{ font-family:var(--display); font-weight:400; font-size:var(--h3);
  margin:2rem 0 .7rem; letter-spacing:-.005em; }
.pullquote{ font-family:var(--display); font-weight:300; font-size:clamp(1.3rem,1rem + 1.4vw,2.1rem);
  line-height:1.25; color:var(--ink); border-left:2px solid var(--gold);
  padding-left:clamp(1rem,2.5vw,1.8rem); margin:clamp(1.8rem,4vw,2.8rem) 0; }

.factbox{ background:var(--ivory-2); border-top:2px solid var(--gold);
  padding:clamp(1.2rem,3vw,1.8rem); margin:2rem 0; }
.factbox dl{ margin:0; display:grid; grid-template-columns:auto 1fr; gap:.45rem 1.4rem; font-size:.94rem; }
.factbox dt{ font-size:.7rem; letter-spacing:.18em; text-transform:uppercase; color:var(--muted); padding-top:.28em; }
.factbox dd{ margin:0; }
@media (max-width:520px){ .factbox dl{ grid-template-columns:1fr; gap:.1rem .5rem; } .factbox dd{ margin-bottom:.6rem; } }

/* ---------- gallery ---------- */
.gallery{ display:grid; grid-template-columns:repeat(auto-fill,minmax(240px,1fr));
  gap:6px; margin:clamp(1.6rem,3vw,2.4rem) 0; }
.gallery figure{ margin:0; overflow:hidden; background:var(--ivory-2); }
.gallery img{ width:100%; aspect-ratio:1/1; object-fit:cover; transition:transform var(--dur) var(--ease); }
.gallery figure:hover img{ transform:scale(1.04); }
.gallery figure.tall{ grid-row:span 2; }
.gallery figure.tall img{ aspect-ratio:1/2; }
.gallery figcaption{ font-size:.76rem; color:var(--muted); padding:.4rem .1rem 0; }

/* ---------- social ---------- */
.social-strip{ border-top:1px solid var(--line); border-bottom:1px solid var(--line);
  padding:clamp(1.6rem,4vw,2.6rem) 0; margin-top:clamp(2.4rem,5vw,4rem); }
.embed-row{ display:grid; grid-template-columns:1fr 1fr; gap:clamp(1rem,3vw,2rem); align-items:start; }
@media (max-width:820px){ .embed-row{ grid-template-columns:1fr; } }
.embed-box{ border:1px solid var(--line); background:#fff; min-height:420px;
  display:flex; align-items:center; justify-content:center; overflow:hidden; }
.embed-box iframe{ width:100%; border:0; }
.embed-note{ font-size:.82rem; color:var(--muted); padding:2rem; text-align:center; }

/* ---------- buttons ---------- */
.btn{
  display:inline-block; font-size:.76rem; letter-spacing:.2em; text-transform:uppercase;
  text-decoration:none; padding:.85rem 1.7rem; border:1px solid var(--ink);
  background:transparent; color:var(--ink);
  transition:background var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease);
}
.btn:hover{ background:var(--ink); color:var(--ivory); }
.btn.gold{ border-color:var(--gold); background:var(--gold); color:var(--ink); }
.btn.gold:hover{ background:var(--gold-lt); border-color:var(--gold-lt); }
.btn.ghost-lt{ border-color:var(--line-dk); color:var(--ivory); }
.btn.ghost-lt:hover{ background:var(--ivory); color:var(--ink); border-color:var(--ivory); }

/* ---------- forms ---------- */
form.pitch{ display:grid; gap:.9rem; max-width:560px; }
form.pitch label{ font-size:.72rem; letter-spacing:.18em; text-transform:uppercase; color:var(--muted); }
form.pitch input,form.pitch textarea,form.pitch select{
  width:100%; font:inherit; font-size:.98rem; padding:.75rem .9rem;
  border:1px solid var(--line); background:#fff; color:var(--ink); border-radius:2px;
}
form.pitch input:focus,form.pitch textarea:focus,form.pitch select:focus{ outline:2px solid var(--gold); outline-offset:1px; }

/* ---------- footer ---------- */
footer.site{ background:var(--ink); color:rgba(247,244,237,.72); margin-top:clamp(3rem,6vw,5rem);
  padding:clamp(2.4rem,5vw,3.6rem) 0 2rem; font-size:.9rem; }
footer.site a{ color:rgba(247,244,237,.86); text-decoration:none; }
footer.site a:hover{ color:var(--gold-lt); }
footer.site .cols{ display:grid; grid-template-columns:2fr 1fr 1fr; gap:clamp(1.4rem,4vw,3rem); }
@media (max-width:760px){ footer.site .cols{ grid-template-columns:1fr 1fr; } }
@media (max-width:480px){ footer.site .cols{ grid-template-columns:1fr; } }
footer.site h4{ font-size:.7rem; letter-spacing:.22em; text-transform:uppercase;
  color:var(--gold-lt); margin:0 0 .8rem; font-weight:500; }
footer.site ul{ list-style:none; margin:0; padding:0; display:grid; gap:.45rem; }
footer.site .fine{ border-top:1px solid var(--line-dk); margin-top:2.4rem; padding-top:1.2rem;
  font-size:.76rem; color:rgba(247,244,237,.5); display:flex; justify-content:space-between; gap:1rem; flex-wrap:wrap; }

/* ---------- link-in-bio ---------- */
body.bio{ background:var(--ink); color:var(--ivory); }
.bio-wrap{ max-width:520px; margin:0 auto; padding:clamp(2rem,7vw,3.5rem) 20px 3rem; text-align:center; }
.bio-logo{ width:min(300px,72%); height:auto; margin:0 auto 1.2rem; }
.bio-avatar{ width:104px; height:104px; border-radius:50%; object-fit:cover;
  margin:0 auto 1.2rem; border:1px solid var(--gold); }
.bio-tag{ color:rgba(247,244,237,.7); font-size:.98rem; margin:.8rem 0 2rem; }
.bio-links{ display:grid; gap:.7rem; }
.bio-link{ display:block; text-decoration:none; color:var(--ivory);
  border:1px solid var(--line-dk); padding:1rem 1.2rem; text-align:left;
  transition:border-color var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease), transform var(--dur-fast) var(--ease); }
.bio-link:hover{ border-color:var(--gold); background:rgba(184,148,90,.1); transform:translateY(-1px); }
.bio-link b{ display:block; font-size:.95rem; letter-spacing:.06em; font-weight:500; }
.bio-link span{ font-size:.8rem; color:rgba(247,244,237,.55); }
.bio-social{ display:flex; gap:1.4rem; justify-content:center; margin-top:2rem;
  font-size:.72rem; letter-spacing:.2em; text-transform:uppercase; }
.bio-social a{ color:var(--gold-lt); text-decoration:none; }

/* ---------- utility ---------- */
.skip{ position:absolute; left:-9999px; }
.skip:focus{ left:1rem; top:1rem; background:var(--gold); color:var(--ink); padding:.6rem 1rem; z-index:99; }
.center{ text-align:center; }
.stack > * + *{ margin-top:1rem; }
.mt2{ margin-top:2rem; } .mt3{ margin-top:3rem; }
.empty{ border:1px dashed var(--line); padding:clamp(1.6rem,4vw,2.6rem); text-align:center; color:var(--muted); }
