/* Sub-page layout */
.subpage-hero {
  padding: 200px 40px 80px;
  text-align: center;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}
.subpage-hero .eyebrow { display: inline-block; padding-left: 0; }
.subpage-hero .eyebrow::before { display: none; }
.subpage-hero h1 {
  font-size: clamp(60px, 10vw, 160px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  margin-top: 30px;
}
.subpage-hero .lede {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(22px, 2.4vw, 32px);
  color: var(--cream-soft);
  line-height: 1.45;
  max-width: 36ch;
  margin: 40px auto 0;
}

/* Story page */
.story-timeline {
  max-width: 860px;
  margin: 60px auto;
  padding: 0 40px;
}
.story-letter {
  max-width: 700px;
  margin: 100px auto;
  padding: 60px;
  border-radius: 28px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
}
.story-letter p {
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.7;
  color: var(--cream);
  margin-bottom: 20px;
}
.story-letter .sign {
  font-style: italic;
  margin-top: 40px;
  color: var(--pink);
}

/* WOW page */
.wow-hero-stage {
  max-width: 640px;
  margin: 60px auto;
  aspect-ratio: 1;
  position: relative;
}
.wow-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.video-frame {
  max-width: 900px;
  margin: 100px auto;
  aspect-ratio: 16 / 9;
  border-radius: 24px;
  background: radial-gradient(circle at center, var(--ink-2), var(--ink-0));
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 0 40px;
}
.video-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent 0 10%, rgba(94,240,217,0.08) 10% calc(10% + 1px)),
    repeating-linear-gradient(90deg, transparent 0 10%, rgba(94,240,217,0.08) 10% calc(10% + 1px));
}
.video-frame .placeholder {
  position: relative;
  text-align: center;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
}
.video-frame .placeholder strong {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 32px;
  color: var(--cream);
  letter-spacing: -0.01em;
  text-transform: none;
  margin-bottom: 16px;
}

/* Internship page */
.dur-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 40px;
}
.dur-card {
  padding: 40px 30px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.03);
  text-align: left;
  transition: all .3s;
}
.dur-card:hover {
  transform: translateY(-6px);
  border-color: var(--pink);
}
.dur-card .n {
  font-family: var(--serif);
  font-size: 64px;
  line-height: 1;
  letter-spacing: -0.03em;
}
.dur-card .n .unit { font-size: 18px; font-style: italic; color: var(--pink); margin-left: 4px; }
.dur-card .name {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--cream);
  margin-top: 10px;
}
.dur-card p {
  font-size: 13px;
  color: var(--cream-soft);
  margin-top: 14px;
  line-height: 1.55;
}

.offerings-block {
  max-width: 1100px;
  margin: 120px auto;
  padding: 0 40px;
}
.offerings-block h2 {
  text-align: center;
  font-size: clamp(40px, 5vw, 72px);
  margin-bottom: 60px;
}
.off-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.off-card {
  padding: 36px;
  border-radius: 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex; gap: 24px; align-items: flex-start;
}
.off-card .ic {
  width: 48px; height: 48px; flex-shrink: 0;
  border-radius: 14px;
  background: rgba(255,63,143,0.15);
  color: var(--pink);
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,63,143,0.3);
}
.off-card h3 {
  font-size: 22px;
  color: var(--cream);
  margin-bottom: 6px;
  font-family: var(--serif);
  font-weight: 500;
}
.off-card p { font-size: 14px; color: var(--cream-soft); line-height: 1.55; }

.stats-inline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: 1100px;
  margin: 80px auto;
  padding: 60px 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* Gallery — editorial photo layout */
.gal-chapter {
  max-width: 1300px;
  margin: 80px auto 120px;
  padding: 0 40px;
  position: relative;
}
.gal-chapter-head {
  max-width: 820px;
  margin: 0 auto 50px;
  text-align: center;
  position: relative;
}
.gal-roman {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 56px;
  color: var(--pink);
  line-height: 1;
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}
.gal-chapter:nth-of-type(odd) .gal-roman { color: var(--teal); }
.gal-chap-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(44px, 6vw, 84px);
  line-height: 0.98;
  letter-spacing: -0.03em;
  color: var(--cream);
  margin: 0;
}
.gal-chap-lede {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(17px, 1.6vw, 21px);
  color: var(--cream-soft);
  line-height: 1.5;
  margin: 22px auto 0;
  max-width: 52ch;
}

.gal-photos { display: grid; gap: 14px; }
.gal-hero-row { grid-template-columns: 1.55fr 1fr; }
.gal-tri { grid-template-columns: repeat(3, 1fr); margin-top: 14px; }
.gal-duo { grid-template-columns: 1fr 1fr; }
.gal-feature-left { grid-template-columns: 1fr 1fr; align-items: stretch; }
.gal-feature-left .gal-col-right {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 14px;
}
.gal-masonry {
  grid-template-columns: repeat(3, 1fr);
  grid-auto-flow: dense;
}
.gal-masonry .gal-tall { grid-row: span 2; }
.gal-masonry .gal-wide { grid-column: span 2; }

.gal-photo {
  margin: 0;
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  transition: transform .35s ease, border-color .35s ease;
  display: flex;
  flex-direction: column;
}
.gal-photo:hover {
  transform: translateY(-3px);
  border-color: rgba(255,63,143,0.35);
}
.gal-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  aspect-ratio: 4/5;
  transition: transform .7s ease;
}
.gal-photo.gal-wide img { aspect-ratio: 5/4; }
.gal-photo.gal-tall img { aspect-ratio: 3/5; }
.gal-photo.gal-full img { aspect-ratio: 16/8; }
.gal-photo:hover img { transform: scale(1.025); }

.gal-photo figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 60px 18px 16px;
  background: linear-gradient(to top, rgba(8,10,18,0.92) 20%, rgba(8,10,18,0.65) 60%, transparent);
  color: var(--cream);
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 14px;
  line-height: 1.45;
  letter-spacing: -0.005em;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .35s ease, transform .35s ease;
  pointer-events: none;
}
.gal-photo:hover figcaption {
  opacity: 1;
  transform: translateY(0);
}
.gal-photo .cap-label {
  display: inline-block;
  font-family: var(--mono);
  font-style: normal;
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pink);
  margin-right: 8px;
}

.gal-full { margin-top: 14px; }

.gal-hero-row .gal-wide img { aspect-ratio: 16/10; }
.gal-feature-left .gal-tall img { aspect-ratio: auto; height: 100%; }
.gal-feature-left .gal-col-right .gal-photo img { aspect-ratio: 16/10; }

.gal-credits {
  max-width: 900px;
  margin: 60px auto 120px;
  padding: 0 40px;
  text-align: center;
}
.gal-credits-inner {
  padding: 40px 50px;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.gal-credits p {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.6;
  color: var(--cream-soft);
  margin: 16px auto 0;
  max-width: 60ch;
}
.gal-credits a { color: var(--pink); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }

.gal-fineprint {
  max-width: 1200px;
  margin: 40px auto 0;
  padding: 20px 40px 28px;
  border-top: 1px solid rgba(255,255,255,0.06);
  text-align: center;
}
.gal-fineprint p {
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.6;
  color: rgba(244,236,224,0.35);
  max-width: 72ch;
  margin: 0 auto;
}
.gal-fineprint a {
  color: rgba(244,236,224,0.55);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.gal-fineprint a:hover { color: var(--pink); }

@media (max-width: 900px) {
  .gal-hero-row,
  .gal-tri,
  .gal-duo,
  .gal-feature-left,
  .gal-masonry { grid-template-columns: 1fr; }
  .gal-masonry .gal-tall,
  .gal-masonry .gal-wide { grid-row: auto; grid-column: auto; }
  .gal-photo figcaption { opacity: 1; transform: none; font-size: 13px; padding: 40px 14px 12px; }
  .gal-chapter { margin: 60px auto 80px; padding: 0 20px; }
}

.sec-cta {
  text-align: center;
  padding: 120px 40px;
}
.sec-cta h2 {
  font-size: clamp(40px, 6vw, 80px);
  margin-bottom: 30px;
}
.sec-cta .btns { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

@media (max-width: 900px) {
  .dur-grid { grid-template-columns: 1fr 1fr; }
  .off-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .stats-inline { grid-template-columns: 1fr 1fr; gap: 20px; }
  .story-letter { padding: 30px; }
}
