:root {
  --ink: #0A0A0A;
  --paper: #F7F4EC;
  --royal: #4B1F73;
  --muted: #a8aaa7;
  --line: rgba(255, 255, 255, 0.18);
  --display: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  --body: Arial, Helvetica, sans-serif;
  color-scheme: dark;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--ink); color: white; font-family: var(--body); font-size: 16px; line-height: 1.55; overflow-x: hidden; }
a { color: inherit; }
img { display: block; max-width: 100%; }
button { font: inherit; }

.skip-link { position: fixed; left: 1rem; top: -5rem; z-index: 1000; background: var(--royal); color: white; padding: .8rem 1rem; font-weight: 800; }
.skip-link:focus { top: 1rem; }

.site-header { min-height: 108px; padding: 16px clamp(20px, 4vw, 64px); display: flex; align-items: center; justify-content: space-between; gap: 2rem; background: rgba(8, 8, 8, .92); border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 50; backdrop-filter: blur(16px); }
.brand { font-family: var(--display); font-size: 18px; line-height: .9; letter-spacing: .04em; text-decoration: none; text-transform: uppercase; color: white; display: inline-flex; align-items: center; }
.brand img { height: 72px; width: auto; }
.desktop-nav { display: flex; gap: 2rem; }
.desktop-nav a { font-size: .78rem; font-weight: 800; letter-spacing: .14em; text-decoration: none; text-transform: uppercase; }
.desktop-nav a:hover, .desktop-nav a:focus-visible { color: white; }

#mainNav { display: none; position: fixed; inset: 108px 0 0 0; flex-direction: column; gap: 0; padding: 10px 24px 30px; background: #080808; overflow-y: auto; z-index: 60; }
#mainNav a { padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,.12); font-size: .95rem; text-decoration: none; color: white; }
#mainNav.open { display: flex; }

.nav-toggle { display: none; width: 40px; height: 40px; border: 0; background: transparent; cursor: pointer; flex-direction: column; align-items: center; justify-content: center; gap: 5px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: white; transition: transform .25s ease, opacity .25s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { min-height: calc(100vh - 108px); min-height: calc(100svh - 108px); position: relative; display: flex; align-items: flex-end; padding: clamp(44px, 7vw, 100px) clamp(20px, 6vw, 90px); isolation: isolate; overflow: hidden; }
.hero-image { position: absolute; inset: 0; z-index: -2; background: url("../images/hero-banner.jpg") center 35% / cover no-repeat; transform: scale(1.02); filter: contrast(1.05) saturate(1.02); }
.hero-shade { position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgba(3,3,3,.92) 0%, rgba(3,3,3,.55) 50%, rgba(3,3,3,.22) 85%), linear-gradient(0deg, rgba(3,3,3,.82) 0%, transparent 55%); }
.hero h1 { margin: 0; line-height: 0; }
.hero h1 img { width: min(90vw, 720px); height: auto; }

/* ---------- Sections (shared) ---------- */
.section { padding: clamp(80px, 10vw, 150px) clamp(20px, 6vw, 90px); }
.section-label { color: white; font-size: .74rem; font-weight: 900; letter-spacing: .2em; text-transform: uppercase; margin-bottom: 18px; }
.partner .section-label { color: var(--royal); }
.section-note { color: var(--muted); max-width: 60ch; margin: -20px 0 40px; font-size: 1rem; }
.section h2 { margin: 0 0 44px; font-family: var(--display); font-weight: 900; line-height: .9; letter-spacing: -.02em; text-transform: uppercase; font-size: clamp(2.6rem, 5.5vw, 4.6rem); color: white; }

/* ---------- Photography / FYF gallery ---------- */
.gallery { background: var(--ink); }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 8px; gap: 14px; }
.gallery-tile { position: relative; border: 1px dashed rgba(255,255,255,.28); display: grid; place-items: center; background: rgba(255,255,255,.03); overflow: hidden; cursor: zoom-in; }
.gallery-tile img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s ease; }
.gallery-tile:hover img { transform: scale(1.04); }
.gallery-tile[hidden] { display: none; }
.view-more-btn { margin: 32px auto 0; display: flex; }

.fyf-merch-banner { position: relative; margin-bottom: 40px; overflow: hidden; }
.fyf-merch-banner img { width: 100%; height: auto; display: block; filter: brightness(0.85); }
.fyf-merch-banner-tag {
  position: absolute;
  left: clamp(16px, 3vw, 32px);
  bottom: clamp(14px, 2.5vw, 24px);
  background: var(--royal);
  color: white;
  font-family: var(--display);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .04em;
  font-size: clamp(1.1rem, 2.4vw, 1.8rem);
  padding: 8px 18px;
}

.fyf { margin-top: 0; }
.fyf-shout {
  font-family: var(--display);
  font-weight: 900;
  text-transform: uppercase;
  line-height: .84;
  letter-spacing: -.01em;
  font-size: clamp(3.2rem, 11vw, 10rem);
  color: white;
  margin: -6px 0 40px;
  transform: rotate(-1.2deg);
}
.fyf-grid { grid-template-columns: repeat(8, 1fr); grid-auto-rows: 6px; gap: 6px; }
.fyf-grid .gallery-tile { border: none; cursor: zoom-in; }
.fyf-frame {
  background: #EFEBE2;
  padding: 10px 10px 0;
  box-shadow: 0 8px 20px rgba(0,0,0,.35);
}
.fyf-frame img { padding-bottom: 10px; }
.fyf-tilt-a { transform: rotate(-2.2deg); }
.fyf-tilt-b { transform: rotate(2deg); }
.fyf-tilt-a:hover, .fyf-tilt-b:hover { transform: rotate(0deg) scale(1.02); z-index: 2; }
.fyf-feature { box-shadow: 0 12px 30px rgba(0,0,0,.45); }

@media (max-width: 900px) {
  .fyf-grid { grid-template-columns: repeat(4, 1fr); gap: 6px; }
  .fyf-feature { grid-column: span 2; }
}
@media (max-width: 580px) {
  .fyf-grid { grid-template-columns: repeat(3, 1fr); }
  .fyf-tilt-a, .fyf-tilt-b { transform: none; }
}

.button { min-height: 50px; display: inline-flex; align-items: center; justify-content: center; gap: 12px; padding: .9rem 1.25rem; border: 1px solid transparent; border-radius: 0; font-size: .78rem; font-weight: 900; letter-spacing: .1em; text-decoration: none; text-transform: uppercase; cursor: pointer; }
.button-quiet { border-color: rgba(255,255,255,.35); color: white; background: transparent; }
.button-quiet:hover, .button-quiet:focus-visible { border-color: white; }

/* ---------- Marquee (personality strip) ---------- */
.marquee { padding: 16px 0; overflow: hidden; background: var(--royal); color: white; white-space: nowrap; }
.marquee div { display: flex; justify-content: space-around; min-width: 1000px; font-family: var(--display); font-size: 1.15rem; letter-spacing: .06em; text-transform: uppercase; }
.marquee b { font-weight: 400; opacity: .7; padding: 0 6px; }
@media (max-width: 720px) {
  .marquee { white-space: normal; }
  .marquee div { min-width: 0; flex-wrap: wrap; justify-content: center; row-gap: 10px; column-gap: 6px; font-size: 1rem; }
}

/* ---------- Partners ---------- */
.partner { background: var(--paper); color: var(--ink); }
.partner-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; border-top: 2px solid var(--ink); padding-top: 44px; }
.partner-card { border: 1px solid rgba(0,0,0,.25); padding: 28px; display: flex; flex-direction: column; align-items: flex-start; gap: 16px; }
.partner-card img.partner-logo { height: 56px; width: auto; }
.partner-card h3 { margin: 0; font: 900 1.3rem var(--display); text-transform: uppercase; letter-spacing: .01em; }
.partner-card a.button { background: var(--ink); color: white; }
.partner-card a.button:hover { background: var(--royal); }

.partner-video { position: relative; width: 100%; aspect-ratio: 16/9; background: var(--ink); overflow: hidden; cursor: pointer; border: 0; padding: 0; }
.partner-video img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.partner-video:hover img, .partner-video:focus-visible img { transform: scale(1.04); }
.partner-video::after { content: ""; position: absolute; inset: 0; background: rgba(0,0,0,.32); }
.partner-video-play { position: absolute; z-index: 2; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 58px; height: 58px; border-radius: 50%; background: var(--royal); color: white; display: grid; place-items: center; font-size: 1.05rem; }
.partner-video iframe { width: 100%; height: 100%; border: 0; display: block; aspect-ratio: 16/9; }

@media (max-width: 720px) {
  .partner-grid { grid-template-columns: 1fr; }
}

/* ---------- Find Me ---------- */
.connect { background: var(--ink); }
.social-list { border-top: 2px solid rgba(255,255,255,.25); }
.social-list a { display: flex; justify-content: space-between; align-items: center; gap: 24px; padding: 23px 0; border-bottom: 1px solid rgba(255,255,255,.18); text-decoration: none; color: white; }
.social-list a:hover span, .social-list a:focus-visible span { color: white; }
.social-list span { font: 2rem var(--display); text-transform: uppercase; }
.social-list small { color: var(--muted); }
.social-list b { font-weight: 400; color: var(--muted); }

/* ---------- Footer ---------- */
footer { display: grid; grid-template-columns: 1.1fr .8fr 1.1fr; gap: 40px; padding: 60px clamp(20px, 6vw, 90px) 30px; background: var(--paper); color: var(--ink); border-top: 1px solid rgba(0,0,0,.15); }
.footer-brand-col { display: flex; flex-direction: column; gap: 18px; align-self: start; }
.footer-brand { margin: 0; line-height: 0; }
.footer-brand img { height: 56px; width: auto; }
.footer-social { display: flex; flex-wrap: wrap; gap: 18px; }
.footer-social a { text-decoration: none; font-size: .85rem; letter-spacing: .04em; text-transform: uppercase; color: var(--ink); }
.footer-social a:hover, .footer-social a:focus-visible { color: var(--royal); }
.footer-explore h4, .footer-contact h4 { margin: 0 0 16px; font-size: .78rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; color: var(--royal); }
.footer-contact-info { margin-bottom: 22px; }
.footer-contact-info h5 { margin: 0 0 4px; font-size: .68rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; color: var(--royal); }
.footer-contact-info h5:not(:first-child) { margin-top: 16px; }
.footer-contact-info p { margin: 0; color: #555; font-size: .9rem; line-height: 1.5; }
.footer-contact-info a { color: var(--ink); text-decoration: none; }
.footer-contact-info a:hover, .footer-contact-info a:focus-visible { color: var(--royal); text-decoration: underline; }
.footer-nav { display: flex; flex-direction: column; gap: 10px; }
.footer-nav a { color: var(--ink); text-decoration: none; font-size: .95rem; }
.footer-nav a:hover, .footer-nav a:focus-visible { color: var(--royal); text-decoration: underline; }
.netlify-form { display: flex; flex-direction: column; gap: 10px; max-width: 420px; }
.netlify-form input, .netlify-form textarea { font: inherit; font-size: .9rem; padding: .7rem .8rem; border: 1px solid rgba(0,0,0,.3); background: white; color: var(--ink); border-radius: 0; }
.netlify-form input::placeholder, .netlify-form textarea::placeholder { color: #888; }
.netlify-form input:focus, .netlify-form textarea:focus { outline: 2px solid var(--royal); outline-offset: 1px; }
.netlify-form textarea { resize: vertical; min-height: 84px; }
.netlify-form .button { align-self: flex-start; margin-top: 2px; background: var(--royal); color: white; border-color: var(--royal); }
.netlify-form .button:hover, .netlify-form .button:focus-visible { background: var(--ink); color: white; border-color: var(--ink); }
.netlify-form.submitted > *:not(.form-success) { display: none; }
.form-success { color: var(--royal); font-weight: 700; font-size: .85rem; margin: 0; }
.form-error { color: #b3261e; font-weight: 700; font-size: .85rem; margin: 0; }
.hidden-field { position: absolute; left: -9999px; }
.footer-legal { grid-column: 1 / -1; margin-top: 20px; display: flex; gap: 20px; }
.footer-legal a { color: #555; text-decoration: underline; font-size: .8rem; }
.footer-legal a:hover, .footer-legal a:focus-visible { color: var(--royal); }
.copyright { grid-column: 1 / -1; margin: 12px 0 0; padding-top: 22px; border-top: 1px solid rgba(0,0,0,.15); color: #555; font-size: .75rem; }

@media (max-width: 720px) {
  footer { grid-template-columns: 1fr; }
}

/* ---------- Lightbox ---------- */
.lightbox { position: fixed; inset: 0; z-index: 300; background: rgba(6,6,6,.95); display: flex; align-items: center; justify-content: center; padding: 50px; }
.lightbox[hidden] { display: none; }
.lightbox img { max-width: 100%; max-height: 100%; object-fit: contain; }
.lightbox-close { position: fixed; top: 18px; right: 22px; width: 46px; height: 46px; border: 1px solid rgba(255,255,255,.3); background: rgba(255,255,255,.08); color: white; font-size: 1.6rem; line-height: 1; cursor: pointer; }
.lightbox-close:hover, .lightbox-close:focus-visible { background: var(--royal); border-color: var(--royal); }

.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }

/* ---------- Legal pages ---------- */
.legal-main { max-width: 760px; margin: 0 auto; padding: clamp(60px, 8vw, 120px) clamp(20px, 6vw, 40px) 100px; }
.legal-main h1 { font-family: var(--display); font-weight: 900; text-transform: uppercase; font-size: clamp(2.4rem, 6vw, 4rem); margin: 16px 0 30px; }
.legal-main h2 { font-family: var(--display); font-weight: 900; text-transform: uppercase; letter-spacing: .02em; font-size: 1.2rem; margin: 40px 0 12px; color: white; }
.legal-main h3 { font-size: 1rem; font-weight: 700; margin: 24px 0 8px; color: white; }
.legal-main p { color: #d8d8d5; max-width: 640px; }
.legal-main .effective-date { color: #888; font-size: .85rem; margin-bottom: 40px; }
.legal-main ul { padding-left: 1.2rem; }
.legal-main li { color: #d8d8d5; }
.faq-item { margin: 0 0 34px; padding-bottom: 30px; border-bottom: 1px solid rgba(255,255,255,.12); }
.faq-item:last-child { border-bottom: 0; }
.faq-item h2 { margin: 0 0 12px; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .75s ease, transform .75s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .desktop-nav { display: none; }
  .hero h1 { font-size: clamp(2.8rem, 13vw, 5.5rem); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .partner-grid { grid-template-columns: 1fr; }
  footer { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 580px) {
  .site-header { padding-inline: 16px; min-height: 84px; }
  .brand img { height: 56px; }
  #mainNav { inset: 84px 0 0 0; }
  .hero { min-height: calc(100vh - 84px); min-height: calc(100svh - 84px); }
  .section h2 { font-size: clamp(2.2rem, 12vw, 3.4rem); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}
