/* ── Reset ──────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ── Variables ──────────────────────────────────────────────────────── */
:root {
  --serif:   'Libre Baskerville', Georgia, serif;
  --sans:    'Inter', system-ui, sans-serif;
  --muted:   rgba(0, 0, 0, 0.65);
  --faint:   rgba(0, 0, 0, 0.5);
  --border:  rgba(0, 0, 0, 0.1);
  --border-faint: rgba(0, 0, 0, 0.05);
  --img-main: url('https://www.figma.com/api/mcp/asset/df6f3bd9-debc-4e2e-8137-bd529a199971');
  --pad-x:   80px;
  --nav-h:   64px;
  --ease:    cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Base ───────────────────────────────────────────────────────────── */
html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
}

body {
  background: #fff;
  color: #000;
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ── Page wrapper ───────────────────────────────────────────────────── */
.page {
  position: relative;
  width: 100%;
  background: #fff;
  overflow: hidden;
}

/* ── Decorative vertical lines (stop above footer) ─────────────────── */
.vline {
  position: absolute;
  top: 0;
  bottom: 185px;
  width: 1px;
  background: rgba(0, 0, 0, 0.1);
  pointer-events: none;
  z-index: 10;
}
.vline-left  { left: 8.11%;  }
.vline-right { left: 91.06%; }

/* ── Utility ────────────────────────────────────────────────────────── */
.bt { border-top: 1px solid var(--border); }


/* ════════════════════════════════════════════════════════════════════
   SCROLL REVEAL
   ════════════════════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* Stagger: second sibling in text sections */
.intro-p.reveal                  { transition-delay: 120ms; }
.gallery-grid.reveal             { transition-delay: 140ms; }
.why-h.reveal                    { transition-delay:   0ms; }
.why-cards .card:nth-child(1)    { transition-delay:  80ms; }
.why-cards .card:nth-child(2)    { transition-delay: 180ms; }
.why-cards .card:nth-child(3)    { transition-delay: 280ms; }
.format-p.reveal                 { transition-delay: 120ms; }
.format-list li:nth-child(1)     { transition-delay: 240ms; }
.format-list li:nth-child(2)     { transition-delay: 300ms; }
.format-list li:nth-child(3)     { transition-delay: 360ms; }
.format-list li:nth-child(4)     { transition-delay: 420ms; }
.format-list li:nth-child(5)     { transition-delay: 480ms; }
.host-p.reveal                   { transition-delay: 120ms; }
.cta-p.reveal                    { transition-delay: 120ms; }
.btn-cta.reveal                  { transition-delay: 260ms; }


/* ════════════════════════════════════════════════════════════════════
   NAVIGATION
   ════════════════════════════════════════════════════════════════════ */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--pad-x);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-brand {
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 400;
  color: #000;
  text-decoration: none;
  letter-spacing: 0.01em;
}

.nav-links {
  display: flex;
  gap: 40px;
  align-items: center;
}

.nav-links a {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 400;
  color: var(--muted);
  text-decoration: none;
  transition: color 200ms var(--ease);
}

.nav-links a:hover { color: #000; }

.btn-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 38px;
  padding: 0 20px;
  background: #000;
  border: 1px solid #000;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 200ms var(--ease);
}

.btn-nav:hover { opacity: 0.75; }

.nav-hamburger { display: none; }


/* ════════════════════════════════════════════════════════════════════
   HERO
   ════════════════════════════════════════════════════════════════════ */
.hero {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 100vh;
  z-index: 0;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: calc(var(--nav-h) + 12vh);
}

.hero-bg-wrap {
  position: absolute;
  inset: 0;
  will-change: transform;
  transform-origin: center center;
}

.hero-bg-sketch {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url('https://www.figma.com/api/mcp/asset/1d892793-7f7a-44fc-b47a-f273a315ed9a') center / cover no-repeat;
  opacity: 0;
  pointer-events: none;
  animation: hero-fade-sketch 0.9s ease 0.8s forwards;
}

.hero-bg-cover {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  pointer-events: none;
  animation: hero-fade-in 0.9s ease 0.8s forwards;
}

.hero-bg-white {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.4);
  pointer-events: none;
}

@keyframes hero-fade-sketch {
  to { opacity: 0.5; }
}

@keyframes hero-fade-in {
  to { opacity: 1; }
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  opacity: 0;
  transform: translateY(16px);
  animation: hero-content-in 0.7s ease 1.2s forwards;
}

@keyframes hero-content-in {
  to { opacity: 1; transform: translateY(0); }
}

.hero-title {
  max-width: 900px;
  font-family: var(--serif);
  font-size: 66px;
  font-weight: 700;
  line-height: 1.15;
  color: #000;
  text-align: center;
}

.hero-subtitle {
  max-width: 560px;
  font-family: var(--sans);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.7;
  color: rgba(0, 0, 0, 0.7);
  text-align: center;
}

.btn-guest {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 149px;
  height: 54px;
  background: #000 !important;
  border: 1px solid #000;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 500;
  color: #fff !important;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 200ms var(--ease);
}

.btn-guest:hover { opacity: 0.75; }


/* ════════════════════════════════════════════════════════════════════
   APP
   ════════════════════════════════════════════════════════════════════ */
.app {
  position: relative;
  z-index: 1;
  background: #fff;
  width: 100%;
  margin-top: 100vh;
}


/* ── Character highlight spans ──────────────────────────────────── */
.intro-h .char {
  display: inline;
  color: rgba(0, 0, 0, 0.2);
}

/* ── About ───────────────────────────────────────────────────────── */
.s-intro {
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 150px var(--pad-x) 150px calc(8.11% + 64px);
  gap: 32px;
}

.intro-h {
  font-family: var(--serif);
  font-size: 65px;
  font-weight: 700;
  line-height: 1.2;
  color: #000;
  text-align: left;
  max-width: 900px;
}

.intro-p {
  font-family: var(--sans);
  font-size: 32px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--muted);
  text-align: left;
  max-width: 900px;
}


/* ── Gallery ─────────────────────────────────────────────────────── */
.s-gallery {
  padding: 0 8.94% 0 8.11%;
  display: flex;
  flex-direction: column;
  margin-top: -1px;
}

.gallery-caption {
  font-family: var(--sans);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--muted);
  text-align: center;
  margin-bottom: 40px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 400px);
  width: 100%;
}

.gcell {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.gcell::before {
  content: '';
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: filter 300ms var(--ease);
}

.gcell:nth-child(1)::before {
  background-image: url('./Images/Img1.png');
}

.gcell:nth-child(2)::before {
  background-image: url('./Images/Img2.png');
}

.gcell:nth-child(3)::before {
  background-image: url('./Images/Img3.png');
}

.gcell:nth-child(4)::before {
  background-image: url('./Images/Img4.png');
}

.gcell:nth-child(5)::before {
  background-image: url('./Images/Img5.png');
}

.gcell:nth-child(6)::before {
  background-image: url('./Images/Img6.png');
}

.gcell:hover::before,
.gcell.active::before {
  filter: blur(8px);
}

.gcell-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
  background: rgba(220, 215, 207, 0.7);
  opacity: 0;
  transition: opacity 300ms var(--ease);
  pointer-events: none;
}

.gcell:hover .gcell-content,
.gcell.active .gcell-content {
  opacity: 1;
}

.gcell-title {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 700;
  color: #000;
  text-align: center;
  margin-bottom: 16px;
}

.gcell-description {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(0, 0, 0, 0.8);
  text-align: center;
}

.gcell.tinted::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(220, 215, 207, 0.4);
}


/* ── Why Join ────────────────────────────────────────────────────── */
.s-why {
  height: 100vh;
  padding: 0 var(--pad-x);
  display: flex;
  align-items: center;
}

.why-inner {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.why-h {
  max-width: 760px;
  margin: 0 auto;
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 700;
  line-height: 1.45;
  color: #000;
  text-align: center;
}

.why-cards {
  display: flex;
}

.card {
  flex: 1;
  border: 1px solid var(--border);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card + .card { border-left: none; }

.card-h {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.4;
  color: #000;
}

.card-p {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--muted);
}


/* ── Format ──────────────────────────────────────────────────────── */
.s-format {
  padding: 200px var(--pad-x);
  display: flex;
  align-items: center;
}

.format-inner {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.format-h {
  font-family: var(--serif);
  font-size: 65px;
  font-weight: 700;
  line-height: 1.2;
  color: #000;
  text-align: center;
}

.format-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.format-grid::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: 100%;
  background: var(--border);
  transform: translateX(-50%);
}

.format-grid::after {
  content: '';
  position: absolute;
  top: calc(50% - 60px);
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--border);
  transform: translateY(-50%);
}


.format-box {
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}

.format-box:nth-child(1),
.format-box:nth-child(3) {
  border-right: 1px solid var(--border);
}

.box-title {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 700;
  line-height: 1.3;
  color: #000;
}

.box-subtitle {
  font-family: var(--sans);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--muted);
}


/* ── Host ────────────────────────────────────────────────────────── */
.s-host {
  padding: 200px var(--pad-x);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.host-inner {
  width: 100%;
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-bottom: 60px;
}

.host-reels {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 60px;
  place-items: center;
  justify-content: center;
}

.reel-embed {
  position: relative;
  display: block;
  aspect-ratio: 9 / 16;
  width: 220px;
  border-radius: 8px;
  overflow: hidden;
  background: #f0f0f0;
  text-decoration: none;
  transition: transform 200ms var(--ease);
}

.reel-embed:hover {
  transform: scale(1.02);
}

.reel-preview {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.reel-play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.host-h {
  font-family: var(--serif);
  font-size: 65px;
  font-weight: 700;
  line-height: 1.2;
  color: #000;
  text-align: center;
}

.host-p {
  font-family: var(--sans);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--muted);
  text-align: center;
}


/* ── Image strip ─────────────────────────────────────────────────── */
.img-strip {
  position: relative;
  width: 100%;
  aspect-ratio: 1387 / 262;
  overflow: hidden;
}

.img-strip-bg {
  position: absolute;
  inset: 0;
  background: url('https://www.figma.com/api/mcp/asset/1d892793-7f7a-44fc-b47a-f273a315ed9a') center 40% / cover no-repeat;
}

.img-strip-white {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.4);
}


/* ── CTA ─────────────────────────────────────────────────────────── */
.s-cta {
  padding: 200px var(--pad-x);
  display: flex;
  align-items: center;
}

.cta-inner {
  width: 100%;
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.cta-h {
  font-family: var(--serif);
  font-size: 65px;
  font-weight: 700;
  line-height: 1.2;
  color: #000;
  text-align: center;
}

.cta-p {
  font-family: var(--sans);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--muted);
  text-align: center;
}

.btn-cta {
  height: 56px;
  padding: 0 48px;
  background: #000;
  border: none;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  cursor: pointer;
  margin-top: 8px;
  transition: opacity 200ms var(--ease);
}

.btn-cta:hover { opacity: 0.75; }


/* ── Footer ──────────────────────────────────────────────────────── */
.footer {
  height: 185px;
  padding: 64px var(--pad-x) 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-name {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4;
  color: #0a0a0a;
}

.footer-tag {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--faint);
}

.footer-nav {
  display: flex;
  gap: 32px;
  align-items: center;
}

.footer-nav a {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 400;
  color: var(--muted);
  text-decoration: none;
  transition: color 200ms var(--ease);
}

.footer-nav a:hover { color: #000; }


/* ════════════════════════════════════════════════════════════════════
   RESPONSIVE DESIGN — TABLET (max-width: 1024px)
   ════════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}


/* ════════════════════════════════════════════════════════════════════
   RESPONSIVE DESIGN — MOBILE (max-width: 768px)
   ════════════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  :root {
    --pad-x: 20px;
  }

  /* Navigation */
  .nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    margin: 0;
  }

  .nav-hamburger span {
    width: 24px;
    height: 2px;
    background: #000;
    display: block;
    transition: all 200ms var(--ease);
  }

  .nav-hamburger {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: #fff;
    border-bottom: 1px solid var(--border);
    padding: 16px 20px;
    gap: 12px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: max-height 300ms var(--ease), opacity 300ms var(--ease);
  }

  .site-nav.nav-open .nav-links {
    max-height: 200px;
    opacity: 1;
    visibility: visible;
  }

  .btn-nav {
    display: none;
  }

  /* Hero */
  .hero {
    padding-top: calc(var(--nav-h) + 8vh);
  }

  .hero-title {
    font-size: 34px;
  }

  .hero-subtitle {
    font-size: 16px;
    max-width: 100%;
  }

  .hero-content {
    gap: 16px;
    padding: 0 20px;
  }

  /* About Section */
  .s-intro {
    height: auto;
    min-height: auto;
    padding: 80px 20px;
  }

  .intro-h {
    font-size: 32px;
  }

  .intro-p {
    font-size: 18px;
  }

  /* Gallery */
  .s-gallery {
    padding: 0 20px 80px;
  }

  .gallery-caption {
    font-size: 18px;
    margin-bottom: 24px;
    max-width: 100%;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(6, 280px);
    gap: 0;
  }

  .gcell::before {
    background-size: cover;
    background-position: center;
  }

  .gcell-title {
    font-size: 24px;
  }

  .gcell-description {
    font-size: 13px;
  }

  /* Decorative Lines */
  .vline {
    display: none;
  }

  /* Host Section */
  .s-host {
    padding: 60px 20px;
  }

  .host-h {
    font-size: 32px;
  }

  .host-p {
    font-size: 16px;
  }

  .host-inner {
    margin-bottom: 32px;
  }

  .host-reels {
    grid-template-columns: 1fr;
    gap: 32px;
    width: 100%;
  }

  .reel-embed {
    width: 208px;
    justify-self: center;
  }

  /* Format Section */
  .s-format {
    padding: 60px 20px;
  }

  .format-h {
    font-size: 32px;
  }

  .format-grid {
    grid-template-columns: 1fr;
    max-width: 100%;
    position: relative;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }

  .format-grid::before,
  .format-grid::after {
    display: none;
  }

  .format-box {
    padding: 32px 20px;
    border: none;
    border-bottom: 1px solid var(--border);
  }

  .format-box:last-child {
    border-bottom: none;
  }

  .box-title {
    font-size: 20px;
  }

  .box-subtitle {
    font-size: 16px;
  }

  /* Image Strip */
  .img-strip {
    aspect-ratio: 16 / 9;
    min-height: 180px;
  }

  /* Footer */
  .footer {
    height: auto;
    padding: 40px 20px;
  }

  .footer-inner {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }

  .footer-nav {
    flex-direction: column;
    gap: 12px;
  }

  .footer-nav a {
    font-size: 12px;
  }

  .footer-name {
    font-size: 16px;
  }

  .footer-tag {
    font-size: 12px;
  }
}
