/* Sit-Heads — static rebuild. Faithful to the Squarespace original:
   dark charcoal ground, white Poppins, warm-yellow accent, white line-art. */

/* ---- Font (self-hostable later; Google Fonts for now) ---- */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
  --bg:        #2a2a2d;   /* charcoal ground */
  --bg-alt:    #313136;   /* alternating band */
  --ink:       #ffffff;
  --ink-soft:  rgba(255,255,255,.82);
  --ink-mute:  rgba(255,255,255,.60);
  --accent:    #f5c63b;   /* warm yellow */
  --accent-ink:#1c1c1e;   /* text on yellow */
  --rule:      rgba(255,255,255,.14);
  --maxw:      1120px;
  --pad:       clamp(1.25rem, 4vw, 3rem);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Poppins', system-ui, sans-serif;
  font-weight: 300;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 3px; }

/* ---- Layout helpers ---- */
.wrap { max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad); }
.band { padding-block: clamp(3rem, 8vw, 6rem); }
.band--alt { background: var(--bg-alt); }
.center { text-align: center; }

/* ---- Header / nav ---- */
.site-head {
  position: sticky; top: 0; z-index: 50;
  background: rgba(42,42,45,.86);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--rule);
}
.nav {
  display: flex; align-items: center; gap: 1.5rem;
  padding-block: .9rem;
}
.nav__logo img { height: 34px; width: auto; }
.nav__links {
  display: flex; align-items: center; gap: 1.4rem;
  margin-left: .5rem; flex-wrap: wrap;
}
.nav__links a { color: var(--ink-soft); font-weight: 400; font-size: .95rem; }
.nav__links a:hover { color: var(--ink); text-decoration: none; }
.nav__cta { margin-left: auto; }

/* ---- Buttons ---- */
.btn {
  display: inline-block;
  background: var(--accent); color: var(--accent-ink);
  font-weight: 600; font-size: 1rem; letter-spacing: .01em;
  padding: .8rem 1.5rem; border-radius: 8px;
  border: 0; cursor: pointer;
  transition: transform .12s ease, box-shadow .12s ease, background .12s ease;
  box-shadow: 0 2px 0 rgba(0,0,0,.18);
}
.btn:hover { background: #ffd757; text-decoration: none; transform: translateY(-1px); box-shadow: 0 6px 18px rgba(245,198,59,.28); }
.btn:active { transform: translateY(0); }
.btn--sm { padding: .55rem 1.05rem; font-size: .9rem; }
.nav__cta .btn { padding: .55rem 1.05rem; font-size: .9rem; }

/* ---- Type ---- */
h1, h2, h3, h4 { font-weight: 600; line-height: 1.12; margin: 0 0 .5em; letter-spacing: -.01em; }
.h-hero { font-size: clamp(2.4rem, 6vw, 4rem); max-width: 15ch; }
h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); }
h3 { font-size: clamp(1.4rem, 3vw, 2rem); }
p { margin: 0 0 1.1rem; color: var(--ink-soft); font-size: clamp(1rem, 1.5vw, 1.12rem); }
.lead { font-size: clamp(1.1rem, 2vw, 1.3rem); color: var(--ink); }
.eyebrow { color: var(--accent); font-weight: 600; letter-spacing: .12em; text-transform: uppercase; font-size: .8rem; margin-bottom: .8rem; }
strong { font-weight: 600; color: var(--ink); }

/* hand-drawn accent underlines, drawn as inline SVG so they keep their
   character (tapered marker stroke + a proper squiggle), matching the original */
.mark { position: relative; white-space: nowrap; }
.mark .u {
  position: absolute; left: -2%; width: 104%; bottom: -.02em;
  height: .38em; overflow: visible; pointer-events: none;
}
.mark .u path {
  stroke: var(--accent); fill: none;
  stroke-linecap: round; stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}
.mark .u--brush path { stroke-width: 6; }
.mark .u--wave path  { stroke-width: 5; }

/* ---- Hero ---- */
.hero { padding-block: clamp(3rem, 7vw, 5.5rem); }
.hero__grid { display: grid; grid-template-columns: 1.3fr .7fr; gap: 2rem; align-items: center; }
.hero__art { justify-self: center; max-width: 260px; }
.hero__art img { filter: drop-shadow(0 8px 30px rgba(0,0,0,.35)); }
@media (max-width: 760px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__art { grid-row: 1; max-width: 180px; }
}

/* ---- Two-column feature rows ---- */
.feature { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 5vw, 4rem); align-items: center; }
.feature + .feature { margin-top: clamp(2.5rem, 6vw, 4.5rem); }
.feature__art { justify-self: center; max-width: 320px; }
.feature--flip .feature__art { order: 2; }
@media (max-width: 760px) {
  .feature { grid-template-columns: 1fr; }
  .feature--flip .feature__art { order: 0; }
  .feature__art { max-width: 210px; }
}

/* ---- Event cards (NYC) ---- */
.events { display: grid; gap: 1.25rem; }
.card {
  background: rgba(255,255,255,.035);
  border: 1px solid var(--rule);
  border-radius: 14px;
  padding: clamp(1.4rem, 3vw, 2.1rem);
}
.card h3 { margin-bottom: .35rem; }
.card__when { color: var(--accent); font-weight: 500; font-size: .95rem; margin-bottom: 1rem; font-style: normal; }
.card__when span { display: inline-block; margin-right: 1rem; }
.card p:last-child { margin-bottom: 0; }
.card .btn { margin: .3rem 0 1.1rem; }

/* ---- Photo hero (NYC) — bright skyline, dark title on the sky (faithful to original) ---- */
.hero-photo {
  position: relative; background-size: cover; background-position: center top;
  padding: clamp(2rem, 5vw, 3.25rem) 0 clamp(6rem, 17vw, 12rem);
}
.hero-photo .wrap { position: relative; }
.hero-photo .titlebox { max-width: 640px; }
.hero-photo h1 { color: #1b1b1d; }

/* ---- Photo event cards (NYC) ---- */
.events { display: grid; gap: 1.5rem; }
.event { border: 1px solid var(--rule); border-radius: 16px; overflow: hidden; background: rgba(255,255,255,.035); }
.event__banner {
  position: relative; min-height: clamp(200px, 32vw, 320px);
  background-size: cover; background-position: center;
  display: flex; align-items: center; padding: clamp(1.4rem, 4vw, 2.6rem);
}
.event__banner::before { content:""; position:absolute; inset:0; background: linear-gradient(90deg, rgba(15,15,17,.35), rgba(15,15,17,0) 65%); }
.event__title {
  position: relative; margin: 0; color: #fff; max-width: 18ch;
  background: rgba(18,18,20,.66); padding: .5em .7em; border-radius: 8px;
  backdrop-filter: blur(2px);
}
.event__body { display: grid; grid-template-columns: 1.7fr 1fr; gap: clamp(1.4rem, 4vw, 3rem); padding: clamp(1.5rem, 4vw, 2.4rem); align-items: start; }
.event__desc p:last-child { margin-bottom: 0; }
.event__meta { text-align: left; }
.event__when { color: var(--accent); font-style: italic; font-weight: 400; font-size: .98rem; line-height: 1.7; margin-bottom: 1.1rem; }
.event__when span { display: block; }
@media (max-width: 720px) { .event__body { grid-template-columns: 1fr; } }

/* ---- CTA strip ---- */
.strip { text-align: center; border-block: 1px solid var(--rule); }
.strip h4 { font-size: clamp(1.15rem, 2.2vw, 1.5rem); max-width: 30ch; margin-inline: auto; margin-bottom: 1.3rem; }

/* ---- Signup form (native, styled to the site) ---- */
.signup { max-width: 620px; margin-inline: auto; }
.signup__box {
  background: rgba(255,255,255,.04);
  border: 1px solid var(--rule);
  border-radius: 16px;
  padding: clamp(1.5rem, 4vw, 2.5rem);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 520px) { .form-row { grid-template-columns: 1fr; } }
.field { margin-bottom: 1.15rem; }
.field > label, .field > legend {
  display: block; font-weight: 500; font-size: .92rem; color: var(--ink);
  margin-bottom: .4rem; padding: 0;
}
.field .req { color: var(--accent); }
.field .hint { display: block; font-weight: 300; font-size: .82rem; color: var(--ink-mute); margin-top: .15rem; }
.input, .select {
  width: 100%; font: inherit; font-weight: 400; color: var(--ink);
  background: rgba(0,0,0,.22);
  border: 1px solid var(--rule); border-radius: 9px;
  padding: .72rem .85rem; transition: border-color .12s ease, background .12s ease;
}
.input::placeholder { color: rgba(255,255,255,.4); }
.input:focus, .select:focus { outline: none; border-color: var(--accent); background: rgba(0,0,0,.32); }
.select { appearance: none; background-image: linear-gradient(45deg,transparent 50%,var(--accent) 50%),linear-gradient(135deg,var(--accent) 50%,transparent 50%); background-position: calc(100% - 20px) 1.25rem, calc(100% - 14px) 1.25rem; background-size: 6px 6px, 6px 6px; background-repeat: no-repeat; padding-right: 2.5rem; }
fieldset.field { border: 0; margin: 0 0 1.15rem; }
.radio-row { display: flex; gap: .6rem; flex-wrap: wrap; }
.radio-pill { position: relative; }
.radio-pill input { position: absolute; opacity: 0; inset: 0; cursor: pointer; }
.radio-pill span {
  display: inline-block; padding: .55rem 1.4rem; border-radius: 999px;
  border: 1px solid var(--rule); background: rgba(0,0,0,.18);
  color: var(--ink-soft); font-weight: 400; cursor: pointer; transition: all .12s ease;
}
.radio-pill input:checked + span { background: var(--accent); color: var(--accent-ink); border-color: var(--accent); font-weight: 600; }
.radio-pill input:focus-visible + span { outline: 2px solid var(--accent); outline-offset: 2px; }
.signup .btn { width: 100%; margin-top: .4rem; }
.hp { position: absolute; left: -5000px; }  /* honeypot */

/* ---- Footer ---- */
.site-foot { border-top: 1px solid var(--rule); padding-block: 2.5rem; color: var(--ink-mute); }
.foot-grid { display: flex; align-items: center; gap: 1.2rem; flex-wrap: wrap; justify-content: space-between; }
.foot-links { display: flex; gap: 1.2rem; flex-wrap: wrap; }
.foot-links a { color: var(--ink-mute); font-weight: 400; font-size: .9rem; }
.foot-links a:hover { color: var(--ink); text-decoration: none; }
.foot-note { font-size: .82rem; }

/* ---- Reveal on load ---- */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(14px); animation: rise .7s ease forwards; }
  .reveal:nth-child(2) { animation-delay: .08s; }
  .reveal:nth-child(3) { animation-delay: .16s; }
  @keyframes rise { to { opacity: 1; transform: none; } }
}
