/* ============================================================
   Sheepshead Bay Roll — 2026 stylesheet
   Dark, editorial, high-contrast. Brand green preserved.
   Type: Archivo (display/body) · Space Grotesk (labels/ui)
   ============================================================ */

:root {
  --bg: #0a0b0d;
  --panel: #14161b;
  --panel2: #191c22;
  --line: rgba(255,255,255,.10);
  --fg: #f2f1ec;
  --muted: #9aa0a8;
  --dim: #c9ccd1;
  --accent: #48b149;
  --lime: #9dff5a;
  --ink: #04140a;
  --sans: 'Archivo', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --mono: 'Space Grotesk', ui-monospace, monospace;
  --container: 1280px;
}

/* --- Font Awesome subset (self-hosted) --- */
@font-face {
  font-family: 'FA';
  src: url('../fonts/fontawesome-webfont.woff2') format('woff2');
  font-weight: normal; font-style: normal; font-display: swap;
}
.fa { display: inline-block; font: normal normal normal 14px/1 'FA'; font-size: inherit; -webkit-font-smoothing: antialiased; }
.fa-search::before { content: "\f002"; }
.fa-map-marker::before { content: "\f041"; }
.fa-phone::before { content: "\f095"; }
.fa-envelope::before { content: "\f0e0"; }
.fa-facebook::before { content: "\f09a"; }
.fa-twitter::before { content: "\f099"; }
.fa-linkedin::before { content: "\f0e1"; }
.fa-youtube::before { content: "\f167"; }
.fa-arrow-circle-left::before { content: "\f0a8"; }
.fa-arrow-circle-right::before { content: "\f0a9"; }

/* --- Reset / base --- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; border: 0; }
a { color: var(--accent); text-decoration: none; transition: color .3s ease, background .3s ease, border-color .3s ease, transform .3s ease; }
h1, h2, h3, h4, h5, h6 { margin: 0; font-weight: 800; letter-spacing: -.03em; line-height: 1; }
::selection { background: var(--accent); color: var(--ink); }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 clamp(20px,5vw,64px); }
.eyebrow { font-family: var(--mono); font-size: 13px; letter-spacing: .2em; text-transform: uppercase; color: var(--lime); display: flex; align-items: center; gap: 14px; }
.eyebrow::before { content: ""; width: 32px; height: 1px; background: var(--lime); }
.section { padding: clamp(70px,11vh,140px) 0; }
.section-title { font-weight: 900; text-transform: uppercase; letter-spacing: -.03em; line-height: .9; font-size: clamp(34px,6vw,78px); }

/* --- Grain --- */
.grain {
  position: fixed; inset: 0; z-index: 9999; pointer-events: none;
  opacity: .05; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

/* --- Buttons --- */
.btn {
  display: inline-block; cursor: pointer; border: none;
  font-family: var(--mono); font-weight: 600; font-size: 15px;
  padding: 16px 32px; border-radius: 100px; text-align: center;
}
.btn-accent { background: var(--accent); color: var(--ink); }
.btn-accent:hover { background: var(--lime); color: var(--ink); }
.btn-ghost { border: 1px solid var(--line); color: var(--fg); }
.btn-ghost:hover { border-color: var(--fg); }
.btn-lg { padding: 18px 40px; font-size: 16px; }

/* --- Nav --- */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px clamp(20px,5vw,64px);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: background .3s ease, border-color .3s ease;
}
.navbar.scrolled { background: rgba(10,11,13,.82); border-bottom-color: var(--line); }
.brand { display: flex; align-items: center; gap: 11px; color: var(--fg); }
.brand__mark { width: 34px; height: 34px; border-radius: 9px; background: var(--accent); color: var(--ink); display: flex; align-items: center; justify-content: center; font-weight: 900; font-size: 17px; }
.brand__name { font-weight: 800; letter-spacing: -.02em; font-size: 16px; }
.nav-right { display: flex; align-items: center; gap: 34px; }
.nav-links { display: flex; gap: 28px; list-style: none; margin: 0; padding: 0; font-family: var(--mono); font-size: 14px; font-weight: 500; }
.nav-links a { color: var(--dim); }
.nav-links a:hover, .nav-links .active a { color: var(--fg); }
.nav-links .active a { color: var(--accent); }
.nav-toggle { display: none; background: none; border: 0; width: 46px; height: 38px; padding: 8px; cursor: pointer; }
.nav-toggle span { display: block; height: 3px; background: var(--fg); border-radius: 2px; margin: 5px 0; transition: all .25s ease; }
.nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .nav-cta { display: none; }
  .nav-links {
    position: fixed; inset: 70px 0 0 0; flex-direction: column; gap: 0;
    background: var(--bg); padding: 20px 0; transform: translateX(100%);
    transition: transform .3s ease; overflow-y: auto;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links li { border-bottom: 1px solid var(--line); }
  .nav-links a { display: block; padding: 22px clamp(20px,5vw,64px); font-family: var(--sans); font-weight: 800; font-size: 1.7rem; letter-spacing: -.02em; }
}

/* --- Hero --- */
.hero { position: relative; min-height: 100vh; display: flex; align-items: flex-end; padding: 0 clamp(20px,5vw,64px) clamp(40px,6vh,72px); overflow: hidden; }
.hero__slides { position: absolute; inset: 0; z-index: 0; }
.hero__slide { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; transition: opacity 1.2s ease; }
.hero__slide.active { opacity: 1; }
.hero::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(10,11,13,.55) 0%, rgba(10,11,13,.32) 40%, rgba(10,11,13,.94) 100%); }
.hero__inner { position: relative; z-index: 2; width: 100%; max-width: var(--container); margin: 0 auto; }
.hero h1 { font-weight: 900; text-transform: uppercase; letter-spacing: -.045em; line-height: .86; font-size: clamp(56px,11vw,168px); margin: 26px 0 0; }
.hero h1 .g { color: var(--accent); }
.hero__foot { display: flex; flex-wrap: wrap; gap: 40px; align-items: flex-end; justify-content: space-between; margin-top: 34px; }
.hero p { max-width: 440px; margin: 0; font-size: clamp(15px,1.5vw,18px); color: var(--dim); }
.hero__btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* --- Marquee --- */
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.marquee { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #0c0e11; overflow: hidden; padding: 18px 0; }
.marquee__track { display: flex; width: max-content; animation: marquee 26s linear infinite; font-weight: 800; text-transform: uppercase; font-size: clamp(20px,2.4vw,30px); letter-spacing: -.01em; color: #20242b; }
.marquee__track span { padding: 0 28px; white-space: nowrap; }
.marquee__track .s { color: var(--accent); }

/* --- Two-column band --- */
.two-col { display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: end; }
.two-col h2 { font-weight: 800; letter-spacing: -.035em; line-height: 1.02; font-size: clamp(30px,4.2vw,60px); }
.two-col h2 .g { color: var(--accent); }
.lead { margin: 0 0 22px; color: var(--muted); font-size: 17px; }
.chips { display: flex; gap: 10px; flex-wrap: wrap; font-family: var(--mono); font-size: 13px; }
.chips span { border: 1px solid var(--line); border-radius: 100px; padding: 8px 16px; color: var(--dim); }
@media (max-width: 820px) { .two-col { grid-template-columns: 1fr; gap: 30px; } }

/* --- Programs bento --- */
.head-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: 38px; }
.head-row .note { font-family: var(--mono); color: var(--muted); font-size: 14px; max-width: 280px; text-align: right; }
.bento { display: grid; grid-template-columns: repeat(4,1fr); grid-auto-rows: 230px; gap: 16px; }
.tile { position: relative; border-radius: 22px; overflow: hidden; border: 1px solid var(--line); display: flex; flex-direction: column; justify-content: flex-end; padding: 26px; background-size: cover; background-position: center; }
.tile:hover { transform: translateY(-4px); }
.tile.big { grid-column: span 2; grid-row: span 2; }
.tile.wide { grid-column: span 2; }
.tile .num { font-family: var(--mono); font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: var(--lime); }
.tile h3 { color: #fff; margin: 8px 0 6px; font-size: 22px; }
.tile.big h3 { font-size: 32px; }
.tile.wide h3 { font-size: 26px; margin-bottom: 0; }
.tile p { margin: 0; color: #cfd2d7; font-size: 14px; max-width: 320px; }
.tile--accent { background: var(--accent); color: var(--ink); justify-content: space-between; }
.tile--accent .num { color: rgba(4,20,10,.6); }
.tile--accent h3 { color: var(--ink); }
.tile--accent .go { font-family: var(--mono); font-size: 13px; font-weight: 600; }
@media (max-width: 820px) { .bento { grid-template-columns: repeat(2,1fr); grid-auto-rows: 200px; } .tile.big { grid-row: span 2; } }
@media (max-width: 520px) { .bento { grid-template-columns: 1fr; } .tile.big, .tile.wide { grid-column: span 1; } .tile.big { grid-row: span 1; } }

/* --- Stats --- */
.stats-band { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 30px; padding: clamp(44px,7vh,80px) 0; }
.stat__num { font-weight: 900; letter-spacing: -.03em; font-size: clamp(48px,7vw,92px); line-height: 1; }
.stat__num.g { color: var(--accent); }
.stat__label { font-family: var(--mono); color: var(--muted); font-size: 14px; margin-top: 8px; }
@media (max-width: 620px) { .stats { grid-template-columns: 1fr; gap: 20px; text-align: center; } }

/* --- Why / feature --- */
.why { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px,5vw,72px); align-items: center; }
.why__img { border-radius: 24px; overflow: hidden; border: 1px solid var(--line); aspect-ratio: 4/5; background-size: cover; background-position: center; }
.why h2 { margin: 18px 0 30px; font-weight: 800; letter-spacing: -.03em; line-height: 1.02; font-size: clamp(30px,4vw,54px); }
.why__list { display: flex; flex-direction: column; }
.why__row { display: flex; gap: 20px; padding: 20px 0; border-top: 1px solid var(--line); }
.why__row:last-child { border-bottom: 1px solid var(--line); }
.why__row .n { color: var(--accent); font-weight: 800; font-family: var(--mono); }
.why__row .t { font-weight: 700; font-size: 18px; margin-bottom: 4px; }
.why__row p { margin: 0; color: var(--muted); font-size: 15px; }
@media (max-width: 820px) { .why { grid-template-columns: 1fr; } .why__img { aspect-ratio: 16/10; } }

/* --- Schedule --- */
.sched { display: flex; flex-direction: column; border-top: 1px solid var(--line); }
.sched__row { display: grid; grid-template-columns: 1fr 1.4fr auto; gap: 20px; align-items: center; padding: 26px 4px; border-bottom: 1px solid var(--line); }
.sched__day { font-weight: 800; font-size: clamp(20px,2.4vw,30px); letter-spacing: -.02em; }
.sched__desc { color: var(--muted); font-family: var(--mono); }
.sched__time { font-family: var(--mono); font-weight: 600; color: var(--lime); }
@media (max-width: 620px) { .sched__row { grid-template-columns: 1fr; gap: 6px; } }

/* --- Gallery marquee (home) --- */
.gal-marquee { overflow: hidden; }
.gal-marquee__track { display: flex; gap: 16px; width: max-content; animation: marquee 34s linear infinite; }
.gal-marquee__track img { height: 300px; width: auto; border-radius: 16px; object-fit: cover; }

/* --- CTA band --- */
.cta { position: relative; border-radius: 28px; overflow: hidden; border: 1px solid var(--line); background-size: cover; background-position: center; padding: clamp(48px,8vw,96px) clamp(28px,5vw,72px); text-align: center; }
.cta::before { content: ""; position: absolute; inset: 0; background: linear-gradient(120deg, rgba(10,11,13,.4), rgba(10,11,13,.85)); }
.cta > * { position: relative; z-index: 1; }
.cta h2 { margin: 0 auto 18px; max-width: 820px; font-weight: 900; text-transform: uppercase; letter-spacing: -.035em; line-height: .92; font-size: clamp(38px,7vw,92px); }
.cta p { margin: 0 auto 34px; max-width: 520px; color: var(--dim); font-size: 17px; }

/* --- Footer --- */
.footer { border-top: 1px solid var(--line); padding: clamp(48px,7vh,80px) 0 40px; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; }
.footer p { margin: 0; color: var(--muted); font-size: 15px; max-width: 340px; }
.footer h4 { font-family: var(--mono); font-weight: 500; color: var(--muted); text-transform: uppercase; letter-spacing: .16em; font-size: 12px; margin-bottom: 16px; }
.footer__col { font-family: var(--mono); font-size: 15px; }
.footer__col a { display: block; color: var(--dim); margin-bottom: 8px; }
.footer__col a:hover { color: var(--accent); }
.foot-addr { color: var(--dim); line-height: 1.9; font-family: var(--mono); font-size: 15px; }
.footer__social { display: flex; gap: 10px; margin-top: 16px; }
.footer__social a { width: 40px; height: 40px; border: 1px solid var(--line); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--dim); }
.footer__social a:hover { background: var(--accent); border-color: var(--accent); color: var(--ink); }
.footer__bar { max-width: var(--container); margin: 48px auto 0; padding: 24px clamp(20px,5vw,64px) 0; border-top: 1px solid var(--line); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-family: var(--mono); font-size: 13px; color: var(--muted); }
@media (max-width: 900px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer__grid { grid-template-columns: 1fr; } }

/* --- Newsletter --- */
.newsletter { border-top: 1px solid var(--line); }
.newsletter__inner { display: flex; align-items: center; gap: 30px; flex-wrap: wrap; padding: clamp(40px,6vh,64px) 0; }
.newsletter h3 { font-size: clamp(24px,3vw,38px); font-weight: 900; text-transform: uppercase; letter-spacing: -.03em; flex: 1 1 340px; }
.newsletter h3 .g { color: var(--accent); }
.newsletter form { flex: 1 1 340px; }
.sub-group { display: flex; border: 1px solid var(--line); border-radius: 100px; overflow: hidden; background: var(--panel); }
.sub-group input { flex: 1; min-width: 0; border: none; background: transparent; color: var(--fg); font-family: var(--mono); font-size: 15px; padding: 16px 24px; }
.sub-group input:focus { outline: none; }
.sub-group button { border: none; cursor: pointer; background: var(--accent); color: var(--ink); font-family: var(--mono); font-weight: 600; padding: 0 30px; }
.sub-group button:hover { background: var(--lime); }

/* --- Inner page header --- */
.page-header { padding: clamp(130px,18vh,180px) 0 clamp(40px,7vh,70px); border-bottom: 1px solid var(--line); }
.page-header .eyebrow { margin-bottom: 22px; }
.page-header h1 { font-weight: 900; text-transform: uppercase; letter-spacing: -.035em; line-height: .9; font-size: clamp(44px,9vw,120px); }
.page-header h1 .g { color: var(--accent); }

/* --- About --- */
.about-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(30px,5vw,72px); align-items: start; }
.about-grid .lead-lg { font-size: clamp(20px,2.2vw,26px); color: var(--fg); line-height: 1.4; letter-spacing: -.01em; }
.about-items { display: flex; flex-direction: column; }
.about-item { padding: 24px 0; border-top: 1px solid var(--line); }
.about-item:last-child { border-bottom: 1px solid var(--line); }
.about-item h6 { font-family: var(--mono); color: var(--accent); font-size: 12px; letter-spacing: .16em; text-transform: uppercase; margin-bottom: 8px; }
.about-item p { margin: 0; color: var(--muted); font-size: 15px; }
@media (max-width: 820px) { .about-grid { grid-template-columns: 1fr; } }
.video-frame { position: relative; aspect-ratio: 16/9; border-radius: 22px; overflow: hidden; border: 1px solid var(--line); margin-top: 40px; }
.video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* --- Gallery page --- */
.gallery-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.gallery-photo { position: relative; display: block; overflow: hidden; border-radius: 18px; border: 1px solid var(--line); aspect-ratio: 3/2; }
.gallery-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gallery-photo::after { content: ""; position: absolute; inset: 0; background: rgba(10,11,13,.5); opacity: 0; transition: opacity .3s ease; }
.gallery-photo .zoom { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 60px; height: 60px; border-radius: 50%; background: var(--accent); color: var(--ink); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; opacity: 0; transition: opacity .3s ease; z-index: 2; }
.gallery-photo:hover::after { opacity: 1; }
.gallery-photo:hover .zoom { opacity: 1; }
.gallery-photo:hover img { transform: scale(1.06); }
@media (max-width: 820px) { .gallery-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 520px) { .gallery-grid { grid-template-columns: 1fr; } }

/* --- Lightbox --- */
.lightbox { position: fixed; inset: 0; background: rgba(6,7,10,.95); display: none; align-items: center; justify-content: center; z-index: 2000; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 85vh; border-radius: 12px; width: auto; height: auto; }
.lightbox__btn { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,.08); color: #fff; border: none; cursor: pointer; width: 56px; height: 56px; border-radius: 50%; font-size: 1.4rem; }
.lightbox__btn:hover { background: var(--accent); color: var(--ink); }
.lightbox__prev { left: 3vw; }
.lightbox__next { right: 3vw; }
.lightbox__close { top: 4vh; right: 4vw; transform: none; }
@media (max-width: 600px) { .lightbox__btn { width: 44px; height: 44px; } }

/* --- Contact --- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(30px,5vw,72px); align-items: start; }
.contact-grid h2 { font-size: clamp(22px,2.4vw,30px); font-weight: 800; margin-bottom: 20px; }
.contact-list { list-style: none; margin: 0 0 36px; padding: 0; }
.contact-list li { display: flex; align-items: center; gap: 16px; font-size: 17px; color: var(--dim); padding: 14px 0; border-bottom: 1px solid var(--line); }
.contact-list li .fa { color: var(--accent); font-size: 1.3rem; width: 26px; text-align: center; }
.hours { font-family: var(--mono); color: var(--dim); line-height: 2; }
.social-round { display: flex; gap: 12px; margin-top: 20px; }
.social-round a { width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--dim); }
.social-round a:hover { background: var(--accent); border-color: var(--accent); color: var(--ink); }
.form-card { background: var(--panel); border: 1px solid var(--line); border-radius: 24px; padding: clamp(28px,4vw,44px); }
.form-card input, .form-card textarea {
  width: 100%; margin-bottom: 16px; background: var(--bg); color: var(--fg);
  border: 1px solid var(--line); border-radius: 14px; padding: 16px 20px;
  font-family: var(--mono); font-size: 15px;
}
.form-card textarea { min-height: 140px; resize: vertical; }
.form-card input::placeholder, .form-card textarea::placeholder { color: #6c7178; }
.form-card input:focus, .form-card textarea:focus { outline: none; border-color: var(--accent); }
.form-status { margin: 10px 0 0; font-family: var(--mono); font-size: 14px; min-height: 1.2em; }
.form-status.ok { color: var(--lime); }
.form-status.err { color: #ff6b57; }
#map { width: 100%; height: 440px; border: 0; display: block; border-radius: 22px; border: 1px solid var(--line); filter: grayscale(1) invert(.92) hue-rotate(180deg) contrast(.9); }
@media (max-width: 820px) { .contact-grid { grid-template-columns: 1fr; } }

[hidden] { display: none !important; }
.hp { position: absolute; left: -5000px; }
