/* =========================================================
   RESET (INTENTIONAL, AS-IS)
   ========================================================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* =========================================================
   BASE
   ========================================================= */
html, body {
  width: 100%;
  overflow-x: hidden;
}

body {
  background: #0f0f0f;
  font-family: -apple-system, BlinkMacSystemFont, "Inter",
               "Helvetica Neue", Arial, sans-serif;
  color: #f2f2f2;
  line-height: 1.65;
}

/* =========================================================
   TYPOGRAPHY
   ========================================================= */
h1, h2, h3 {
  font-weight: 500;
  letter-spacing: -0.02em;
}

p {
  font-size: 16px;
  line-height: 1.7;
  opacity: 0.88;
}

/* =========================================================
   CONTENT SECTIONS — NON-VIDEO PAGES
   ========================================================= */
.page-home section {
  padding: 200px 64px;
}

.page-frequencies section,
.page-workshops section {
  padding: 64px 64px;
}


/* =========================================================
   WORKSHOPS PAGE — COMPLETE CLEAN REBUILD
   (ONLY THIS SECTION CHANGED FROM YOUR ORIGINAL)
   ========================================================= */

/* remove old stacked/grid behavior entirely */

.page-workshops {
  max-width: 1200px;
  margin: 0 auto;
}

/* intro */
.page-workshops .ws-intro {
  max-width: 720px;
  margin: 0 auto 140px;
  text-align: center;
}

/* horizontal museum-style field */
.page-workshops .ws-field {
  display: grid;
  grid-template-columns: 1fr 1fr 1.35fr;
  gap: 96px;
  align-items: start;
  margin-bottom: 160px;
}

.page-workshops .ws-block ul {
  list-style: none;
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  opacity: 0.9;
}

/* orientation */
.page-workshops .ws-orientation {
  text-align: center;
  margin-bottom: 160px;
  opacity: 0.7;
  font-size: 15px;
}

/* access grid */
.page-workshops .ws-access-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 56px 48px;
  margin-bottom: 180px;
}

.page-workshops .ws-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* complete access */
.page-workshops .ws-complete {
  text-align: center;
  max-width: 520px;
  margin: 0 auto 200px;
}

.page-workshops .price {
  font-size: 20px;
  margin: 4px 0 8px;
}


/* =========================================================
   VIDEO PAGES — PROFESSIONAL CINEMATIC STANDARD
   ========================================================= */
.video-page section {
  padding: 64px 0 32px;
  background: #0f0f0f;
  display: flex;
  justify-content: center;
}

.video-page video {
  display: block;
  max-width: min(1200px, 92vw);
  max-height: 80vh;
  width: auto;
  height: auto;
  object-fit: contain;
  background: #000;
}

/* =========================================================
   LOCAL SEPARATION FOR VIDEO TEXT CTA ONLY
   ========================================================= */
.video-page .video-text-wrapper .btn-portal {
  display: block;
  width: fit-content;
  margin-top: 24px;
}

/* =========================================================
   HERO (LANDING ONLY)
   ========================================================= */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.6),
    rgba(0,0,0,0.15),
    rgba(0,0,0,0.7)
  );
}

.hero-buttons {
  position: absolute;
  bottom: 10vh;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 24px;
  z-index: 2;
}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn-hero,
.btn-portal,
.btn-workshops,
.btn-founder,
.btn-govern {
  padding: 8px 34px;
  border-radius: 40px;
  background: linear-gradient(135deg, #d8c79a, #bfa86a);
  color: #111;
  text-decoration: none;
  font-size: 14.5px;
  border: none;
  display: inline-block;
  transition: opacity 0.2s ease;
}

.btn-hero:hover,
.btn-portal:hover,
.btn-workshops:hover,
.btn-founder:hover,
.btn-govern:hover {
  opacity: 0.88;
}

/* =========================================================
   NYC EXPERIENCE
   ========================================================= */
.nyc-section {
  background: #e2dccb;
  display: flex;
  justify-content: center;
  padding: 180px 64px;
}

.nyc-pair {
  display: flex;
  gap: 32px;
  max-width: 1100px;
}

.nyc-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.nyc-pair img {
  width: 100%;
  max-width: 520px;
  border-radius: 18px;
  object-fit: cover;
}

.nyc-item p {
  margin-top: 18px;
  font-size: 15px;
  color: #111;
  opacity: 0.9;
  text-align: center;
}

/* =========================================================
   ETHOS
   ========================================================= */
.pillars {
  background: #d6cfbb;
  color: #111;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-items: center;
  column-gap: 60px;
  padding: 160px 64px;
}

.pillar {
  text-align: center;
  max-width: 260px;
}

.pillar h2 {
  margin-bottom: 12px;
}

/* =========================================================
   VALIDITY THRESHOLD
   ========================================================= */
.integration-threshold {
  background: #d6cfbb;
  color: #111;
  text-align: center;
  padding: 160px 64px 200px;
}

.integration-threshold p {
  margin: 22px 0;
  font-size: 16px;
  opacity: 0.9;
  text-align: center;
}

/* =========================================================
   FREQUENCY PORTALS (LANDING PAGE)
   ========================================================= */
.frequency-portals {
  background: #efece3;
  color: #111;
  text-align: center;
  padding: 180px 64px;
  scroll-margin-top: 140px;
}

.portal-grid {
  display: flex;
  gap: 48px;
  justify-content: center;
  margin-top: 56px;
}

.portal-item {
  max-width: 320px;
}

.portal-item img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  display: block;
  border-radius: 18px;
  margin-bottom: 20px;
}

/* =========================================================
   WORKSHOPS (LANDING PAGE)
   ========================================================= */
.workshops {
  background: #f5f5f2;
  color: #111;
  text-align: center;
  padding: 80px 140px 64px;
}

.workshop-image {
  width: auto;
  max-width: 520px;
  max-height: 60vh;
  height: auto;
  border-radius: 20px;
  margin: 32px auto 24px;
}

/* =========================================================
   FREQUENCY PAGE
   ========================================================= */
.page-frequencies section {
  padding: 64px 64px;
}

.freq-intro {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.freq-grid-wrapper {
  padding-top: 72px;
  padding-bottom: 72px;
}

.freq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 56px 48px;
  max-width: 1200px;
  margin: 0 auto;
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  background: #ffffff;
  color: #111;
  padding: 140px 40px;
  text-align: center;
  opacity: 0.6;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 900px) {
  .page-frequencies section,
  .page-workshops section,
  .page-home section {
    padding: 120px 28px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .pillars {
    grid-template-columns: 1fr;
    row-gap: 48px;
  }

  .video-page video {
    max-width: 94vw;
    max-height: 70vh;
  }

  .page-workshops .ws-field {
    grid-template-columns: 1fr;
    gap: 64px;
  }
}

/* =========================================================
   FOUNDER PAGE SUPPORT (unchanged)
   ========================================================= */
.founder-preview {
  background: #f5f5f2;
  color: #111;
  display: flex;
  justify-content: center;
  padding: 220px 64px 240px;
  text-align: center;
}

.founder-inner {
  max-width: 640px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.page-founder section {
  padding: 64px 64px;
}

.founder-column {
  max-width: 720px;
  margin: 0 auto;
}

.page-home .workshops {
  padding: 64px 64px;
}
