/* ============================================================
   GoGreek — dark editorial nightlife landing
   ============================================================ */

:root {
  --bg:        #0b0a0d;
  --bg-2:      #100e13;
  --ink:       #f6f1e7;
  --ink-dim:   #b4aea2;
  --ink-faint: #8f8a80;
  --gold:      #f5c542;
  --gold-deep: #d9a520;
  --coral:     #ff3b5c;
  --line:      rgba(246,241,231,.12);
  --line-soft: rgba(246,241,231,.07);
  --maxw: 1200px;
  --ease: cubic-bezier(.2,.7,.2,1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: "Instrument Sans", system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }

.mono { font-family: "Space Mono", ui-monospace, monospace; }
.serif-ital { font-family: "Fraunces", Georgia, serif; font-style: italic; font-weight: 500; }

mark { background: none; color: var(--gold); }

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

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--gold); color: #17130a;
  font-family: "Instrument Sans", sans-serif; font-weight: 700;
  font-size: 1rem; letter-spacing: .01em;
  padding: 14px 26px; border: none; border-radius: 100px;
  cursor: pointer; white-space: nowrap;
  transition: transform .3s var(--ease), background .3s var(--ease), box-shadow .3s var(--ease);
  box-shadow: 0 0 0 rgba(245,197,66,0);
}
.btn:hover { background: #ffd45e; transform: translateY(-2px); box-shadow: 0 12px 34px rgba(245,197,66,.28); }
.btn:active { transform: translateY(0); }
.btn-sm { padding: 9px 18px; font-size: .9rem; }

/* ---------- nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px clamp(18px, 4vw, 48px);
  backdrop-filter: blur(14px);
  background: linear-gradient(to bottom, rgba(11,10,13,.85), rgba(11,10,13,0));
  border-bottom: 1px solid transparent;
  transition: background .4s var(--ease), border-color .4s var(--ease);
}
.nav.scrolled { background: rgba(11,10,13,.88); border-bottom: 1px solid var(--line-soft); }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 700; }
.brand-mark {
  font-family: "Fraunces", serif; font-weight: 900; color: var(--gold);
  font-size: 1.5rem; line-height: 1;
}
.brand-word { font-size: 1.15rem; letter-spacing: -.01em; }
.nav-links { display: flex; gap: 30px; }
.nav-links a { color: var(--ink-dim); font-size: .95rem; transition: color .25s; }
.nav-links a:hover { color: var(--ink); }
@media (max-width: 640px) {
  .nav { padding: 12px 18px; }
  .nav-links { display: none; }
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;          /* fallback */
  min-height: 100svh;
  min-height: 100dvh;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 120px clamp(18px, 4vw, 48px) clamp(48px, 7vh, 96px);
  overflow: hidden;
}
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media img {
  width: 100%; height: 100%; object-fit: cover;
  animation: slowzoom 24s ease-out both;
}
@keyframes slowzoom { from { transform: scale(1.12); } to { transform: scale(1); } }
.hero-scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(to top, var(--bg) 0%, rgba(11,10,13,.82) 26%, rgba(11,10,13,.5) 58%, rgba(11,10,13,.62) 100%),
    linear-gradient(to right, rgba(11,10,13,.9) 0%, rgba(11,10,13,.6) 40%, rgba(11,10,13,.2) 78%, rgba(11,10,13,0) 100%),
    radial-gradient(120% 80% at 12% 92%, rgba(245,197,66,.12), transparent 55%),
    radial-gradient(80% 65% at 96% 6%, rgba(255,59,92,.14), transparent 62%);
}
.hero-inner { position: relative; z-index: 2; max-width: 960px; }

.eyebrow {
  font-family: "Space Mono", monospace; font-size: .8rem; letter-spacing: .22em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 22px;
}
.hero-title {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 800; line-height: .95; letter-spacing: -.02em;
  font-size: clamp(3rem, 9.5vw, 8.2rem);
  margin-bottom: 26px;
}
.hero-title span { display: block; }
.hero-title .serif-ital { color: var(--gold); font-weight: 600; }
.hero-sub {
  max-width: 620px; font-size: clamp(1.02rem, 1.7vw, 1.28rem);
  color: var(--ink-dim); margin-bottom: 34px;
}
.hero-corner {
  position: absolute; right: clamp(18px,4vw,48px); bottom: clamp(48px,7vh,96px);
  z-index: 2; font-size: .75rem; letter-spacing: .18em; color: var(--ink-faint);
  writing-mode: vertical-rl; text-orientation: mixed;
}
@media (max-width: 720px) { .hero-corner { display: none; } }

/* ---------- waitlist form ---------- */
.waitlist-form {
  display: grid; grid-template-columns: 1fr auto; gap: 10px;
  max-width: 520px; position: relative;
}
.waitlist-form input {
  background: rgba(11,10,13,.55); color: var(--ink);
  border: 1px solid var(--line); border-radius: 100px;
  padding: 15px 22px; font-family: inherit; font-size: 1rem;
  backdrop-filter: blur(6px);
  transition: border-color .25s, background .25s;
}
.waitlist-form input::placeholder { color: var(--ink-faint); }
.waitlist-form input:focus { outline: none; border-color: var(--gold); background: rgba(11,10,13,.8); }
.form-note {
  grid-column: 1 / -1; font-size: .82rem; color: var(--ink-faint);
  padding-left: 8px; margin-top: 2px; transition: color .3s;
}
.waitlist-form.is-success input { border-color: rgba(120,220,150,.5); }
.waitlist-form.is-success .form-note { color: #7fd39a; }
.waitlist-form.is-error .form-note { color: var(--coral); }

.waitlist-form-lg { max-width: 560px; margin: 0 auto; }
.waitlist-form-lg .form-note { text-align: center; padding-left: 0; }

/* ---------- marquee ---------- */
.marquee {
  border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft);
  background: var(--bg-2); overflow: hidden; padding: 20px 0;
}
.marquee-track {
  display: flex; align-items: center; gap: 34px; width: max-content;
  animation: scrollx 34s linear infinite;
  font-family: "Fraunces", serif; font-weight: 600; font-size: clamp(1.3rem, 3vw, 2rem);
  color: var(--ink);
}
.marquee-track span { white-space: nowrap; }
.marquee-track .dot { color: var(--gold); font-family: "Fraunces", serif; }
@keyframes scrollx { to { transform: translateX(-50%); } }

/* ---------- section shared ---------- */
.section-kicker {
  font-size: .78rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--coral); margin-bottom: 22px;
}

/* ---------- what ---------- */
.what { max-width: var(--maxw); margin: 0 auto; padding: clamp(80px,12vh,150px) clamp(18px,4vw,48px); }
.what-statement {
  font-family: "Fraunces", serif; font-weight: 600; letter-spacing: -.02em;
  font-size: clamp(1.9rem, 5vw, 4rem); line-height: 1.06; max-width: 16ch;
  margin-bottom: 64px;
}
.what-statement mark { color: var(--gold); }
.what-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.what-item { border-top: 1px solid var(--line); padding-top: 22px; }
.what-no { display: block; color: var(--gold); font-size: .9rem; margin-bottom: 14px; }
.what-item p { color: var(--ink-dim); font-size: 1.05rem; }
@media (max-width: 780px) { .what-grid { grid-template-columns: 1fr; gap: 28px; } }

/* ---------- features ---------- */
.features { max-width: var(--maxw); margin: 0 auto; padding: 0 clamp(18px,4vw,48px) clamp(60px,9vh,120px); }
.feat-head { margin-bottom: clamp(50px,7vh,90px); max-width: 760px; }
.feat-head h2 {
  font-family: "Fraunces", serif; font-weight: 700; letter-spacing: -.02em;
  font-size: clamp(2rem, 5.5vw, 4rem); line-height: 1.02;
}
.feat-head .serif-ital { color: var(--gold); }

.feature {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px,5vw,80px);
  align-items: center; padding: clamp(40px,6vh,80px) 0;
  border-top: 1px solid var(--line-soft);
}
.feature-alt .feature-copy { order: 2; }
.feature-alt .feature-media { order: 1; }
.feature-num { color: var(--coral); font-size: .95rem; letter-spacing: .1em; }
.feature-copy h3 {
  font-family: "Fraunces", serif; font-weight: 700; letter-spacing: -.02em;
  font-size: clamp(1.9rem, 4vw, 3.1rem); line-height: 1.02;
  margin: 16px 0 20px;
}
.feature-copy > p { color: var(--ink-dim); font-size: 1.08rem; max-width: 46ch; margin-bottom: 26px; }
.feature-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.feature-list li {
  position: relative; padding-left: 26px; color: var(--ink); font-size: 1rem;
}
.feature-list li::before {
  content: "Γ"; position: absolute; left: 0; top: -1px;
  color: var(--gold); font-family: "Fraunces", serif; font-weight: 700;
}
.feature-media { position: relative; }
.feature-media img {
  width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: 6px;
  filter: contrast(1.04) saturate(1.05);
}
.feature-media figcaption {
  position: absolute; left: 14px; bottom: 14px;
  background: rgba(11,10,13,.72); backdrop-filter: blur(6px);
  color: var(--gold); font-size: .72rem; letter-spacing: .18em; text-transform: uppercase;
  padding: 7px 13px; border-radius: 100px; border: 1px solid var(--line);
}
@media (max-width: 820px) {
  .feature { grid-template-columns: 1fr; gap: 26px; }
  .feature-alt .feature-copy { order: 1; }
  .feature-alt .feature-media { order: 2; }
  .feature-media img { aspect-ratio: 3 / 2; }
}

/* ---------- campus ---------- */
.campus { position: relative; overflow: hidden; padding: clamp(90px,14vh,170px) clamp(18px,4vw,48px); }
.campus-media { position: absolute; inset: 0; z-index: 0; }
.campus-media img { width: 100%; height: 100%; object-fit: cover; }
.campus-scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(to right, var(--bg) 8%, rgba(11,10,13,.82) 45%, rgba(11,10,13,.5) 100%),
    linear-gradient(to top, var(--bg), transparent 60%);
}
.campus-inner { position: relative; z-index: 2; max-width: var(--maxw); margin: 0 auto; }
.campus-inner h2 {
  font-family: "Fraunces", serif; font-weight: 700; letter-spacing: -.02em;
  font-size: clamp(2.1rem, 6vw, 4.4rem); line-height: 1.0; margin-bottom: 24px;
}
.campus-inner .serif-ital { color: var(--gold); }
.campus-lead { max-width: 560px; color: var(--ink-dim); font-size: 1.12rem; margin-bottom: 54px; }
.stat-row { display: grid; grid-template-columns: repeat(3, auto); gap: clamp(28px,5vw,72px); justify-content: start; }
.stat { border-left: 2px solid var(--gold); padding-left: 18px; max-width: 200px; }
.stat-num {
  display: block; font-family: "Fraunces", serif; font-weight: 800;
  font-size: clamp(2.6rem, 6vw, 4.2rem); line-height: 1; color: var(--ink);
}
.stat-label { display: block; font-size: .74rem; letter-spacing: .08em; color: var(--ink-dim); margin-top: 10px; line-height: 1.5; }
@media (max-width: 720px) { .stat-row { grid-template-columns: 1fr; gap: 24px; } .stat { max-width: none; } }

/* ---------- final cta ---------- */
.cta { position: relative; overflow: hidden; padding: clamp(90px,15vh,180px) clamp(18px,4vw,48px); text-align: center; }
.cta-media { position: absolute; inset: 0; z-index: 0; }
.cta-media img { width: 100%; height: 100%; object-fit: cover; }
.cta-scrim {
  position: absolute; inset: 0;
  background:
    radial-gradient(90% 90% at 50% 50%, rgba(11,10,13,.6), var(--bg) 88%),
    linear-gradient(to bottom, var(--bg), rgba(11,10,13,.4) 40%, var(--bg));
}
.cta-inner { position: relative; z-index: 2; max-width: 780px; margin: 0 auto; }
.cta-title {
  font-family: "Fraunces", serif; font-weight: 800; letter-spacing: -.02em;
  font-size: clamp(2.6rem, 8vw, 6rem); line-height: .96; margin: 12px 0 20px;
}
.cta-title .serif-ital { color: var(--gold); }
.cta-sub { color: var(--ink-dim); font-size: 1.15rem; max-width: 460px; margin: 0 auto 38px; }

/* ---------- footer ---------- */
.footer {
  border-top: 1px solid var(--line-soft);
  padding: 48px clamp(18px,4vw,48px);
  display: flex; flex-direction: column; align-items: center; gap: 14px; text-align: center;
}
.footer-brand { display: flex; align-items: center; gap: 10px; }
.footer-tag { font-size: .78rem; letter-spacing: .12em; color: var(--ink-dim); }
.footer-legal { font-size: .72rem; letter-spacing: .1em; color: var(--ink-faint); }

/* ---------- reveal animation (progressive enhancement) ---------- */
.js .reveal { opacity: 0; transform: translateY(22px); }
.reveal.in {
  opacity: 1; transform: none;
  transition: opacity .8s var(--ease) var(--d, 0s), transform .8s var(--ease) var(--d, 0s);
}
@media (prefers-reduced-motion: reduce) {
  .js .reveal, .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .hero-media img { animation: none; }
  .marquee-track { animation: none; }
  html { scroll-behavior: auto; }
}
