/*
 * pose. — cinematic fashion editorial
 * Playfair Display + Cormorant Garamond + Inter
 * Dark, sharp, elite
 */

/* ── Tokens ── */
:root {
  --bg:             #0a0a0a;
  --bg-elevated:    #141414;
  --text:           #f0ede8;
  --text-2:         #8a8580;
  --text-muted:     #4a4744;
  --silver:         #c0bfbd;
  --champagne:      #c9a96e;
  --border:         rgba(255,255,255,0.08);

  --display:        'Sorts Mill Goudy', Georgia, serif;
  --editorial:      'Cormorant Garamond', Georgia, serif;
  --ui:             'Inter', -apple-system, system-ui, sans-serif;

  --nav-h:          72px;
  --wrap:           1200px;
  --pad:            80px;
  --ease:           cubic-bezier(0.16, 1, 0.3, 1);
  --duration:       1.2s;
}

/* ── Reset ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; scroll-behavior: smooth; }

body {
  font-family: var(--ui);
  font-size: 15px;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }

::selection {
  background: rgba(201,169,110,0.3);
  color: var(--text);
}


/* ================================================================
   NAV
   ================================================================ */
.pn {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 100;
  background: rgba(10,10,10,0.8);
  backdrop-filter: blur(24px) saturate(1.2);
  -webkit-backdrop-filter: blur(24px) saturate(1.2);
  border-bottom: 1px solid var(--border);
}

.pn-wrap {
  max-width: none;
  height: var(--nav-h);
  margin: 0;
  padding: 0 var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.pn-logo {
  font-family: var(--display);
  font-size: 26px;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--text);
  transition: opacity 0.3s;
}
.pn-logo:hover { opacity: 0.5; }

.pn-logo__dot { color: var(--champagne); }

.pn-nav {
  display: flex;
  gap: 28px;
  align-items: center;
}

.pn-link {
  font-family: var(--ui);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s var(--ease);
}

.pn-link:hover {
  color: var(--text);
}

.pn-cta {
  font-family: var(--ui);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
  background: transparent;
  padding: 0 28px;
  height: 40px;
  display: flex;
  align-items: center;
  border: 1px solid var(--silver);
  transition: all 0.4s var(--ease);
}
.pn-cta:hover {
  background: var(--text);
  color: var(--bg);
  border-color: var(--text);
}


/* ================================================================
   SHARED
   ================================================================ */
.pw {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 var(--pad);
}


/* ================================================================
   HERO — cinematic, centered, massive type
   ================================================================ */
.ph {
  position: relative;
  padding-top: var(--nav-h);
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.ph > .pw {
  width: 100%;
  text-align: center;
}

/* ── Label ── */
.ph-label {
  font-family: var(--ui);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block;
  margin-bottom: 48px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity var(--duration) var(--ease) 0.1s, transform var(--duration) var(--ease) 0.1s;
}

.loaded .ph-label {
  opacity: 1;
  transform: translateY(0);
}

/* ── Headline ── */
.ph-headline {
  font-family: var(--display);
  font-size: clamp(52px, 8.5vw, 130px);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--text);
}

.ph-headline__line {
  display: block;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity var(--duration) var(--ease), transform var(--duration) var(--ease);
}

.ph-headline__line:nth-child(2) {
  transition-delay: 0.15s;
}

.ph-headline__line--italic {
  font-style: italic;
}

.ph-headline__line--accent {
  color: var(--champagne);
}


.loaded .ph-headline__line {
  opacity: 1;
  transform: translateY(0);
}

/* ── Subtitle ── */
.ph-sub {
  font-family: var(--editorial);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--silver);
  max-width: 480px;
  margin: 48px auto 0;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity var(--duration) var(--ease) 0.3s, transform var(--duration) var(--ease) 0.3s;
}

.loaded .ph-sub {
  opacity: 1;
  transform: translateY(0);
}



/* ── CTA ── */
.ph-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 56px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity var(--duration) var(--ease) 0.45s, transform var(--duration) var(--ease) 0.45s;
}

.loaded .ph-actions {
  opacity: 1;
  transform: translateY(0);
}

.ph-btn {
  font-family: var(--ui);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0 40px;
  height: 52px;
  display: flex;
  align-items: center;
  cursor: pointer;
  color: var(--bg);
  background: var(--champagne);
  border: none;
  transition: all 0.4s var(--ease);
}
.ph-btn:hover {
  background: #d4b478;
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(201,169,110,0.2);
}

/* ── Camera flashes ── */
@keyframes flashLeft {
  0%, 100% { opacity: 0; }
  5% { opacity: 0.6; }
  8% { opacity: 0; }
  40% { opacity: 0; }
  42% { opacity: 0.3; }
  44% { opacity: 0; }
  75% { opacity: 0; }
  76% { opacity: 0.5; }
  79% { opacity: 0; }
}

@keyframes flashRight {
  0%, 100% { opacity: 0; }
  15% { opacity: 0; }
  17% { opacity: 0.5; }
  20% { opacity: 0; }
  55% { opacity: 0; }
  57% { opacity: 0.7; }
  59% { opacity: 0; }
  88% { opacity: 0; }
  89% { opacity: 0.3; }
  91% { opacity: 0; }
}

.ph-flash {
  position: absolute;
  top: 0;
  width: 40%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.ph-flash--left {
  left: 0;
  background: radial-gradient(ellipse at 0% 50%, rgba(255,255,255,0.15), transparent 60%);
  animation: flashLeft 8s ease-in-out infinite;
  animation-delay: 1s;
}

.ph-flash--right {
  right: 0;
  background: radial-gradient(ellipse at 100% 50%, rgba(255,255,255,0.15), transparent 60%);
  animation: flashRight 8s ease-in-out infinite;
  animation-delay: 2.5s;
}

/* ── Film reel capture animation ── */
.ph-reel {
  position: relative;
  display: inline-block;
}

/* The film frame border — hidden until flash */
.ph-reel__frame {
  position: absolute;
  inset: -24px -40px;
  border: 2px solid transparent;
  pointer-events: none;
  opacity: 0;
  z-index: 2;
}

/* Sprocket strip (left + right) */
.ph-reel__strip {
  position: absolute;
  top: -8px;
  bottom: -8px;
  width: 18px;
  background:
    repeating-linear-gradient(
      to bottom,
      transparent 0px,
      transparent 6px,
      rgba(201,169,110,0.35) 6px,
      rgba(201,169,110,0.35) 16px,
      transparent 16px,
      transparent 22px
    );
  opacity: 0;
}

.ph-reel__strip--left {
  left: -18px;
  border-right: 1px solid rgba(201,169,110,0.25);
}

.ph-reel__strip--right {
  right: -18px;
  border-left: 1px solid rgba(201,169,110,0.25);
}

/* The big camera flash overlay */
.ph-reel__flash {
  position: absolute;
  inset: -100px -200px;
  background: radial-gradient(ellipse at center, rgba(255,255,255,0.95), rgba(255,255,255,0.6) 40%, transparent 70%);
  opacity: 0;
  pointer-events: none;
  z-index: 10;
}

/* ── Keyframes ── */
@keyframes reelFlash {
  0%   { opacity: 0; }
  8%   { opacity: 1; }
  25%  { opacity: 0.9; }
  50%  { opacity: 0; }
  100% { opacity: 0; }
}

@keyframes reelFrameIn {
  0%   { opacity: 0; border-color: transparent; }
  30%  { opacity: 1; border-color: rgba(201,169,110,0.5); }
  100% { opacity: 1; border-color: rgba(201,169,110,0.2); }
}

@keyframes reelStripIn {
  0%   { opacity: 0; transform: translateY(10px); }
  40%  { opacity: 0.8; transform: translateY(0); }
  100% { opacity: 0.5; }
}

@keyframes reelGrain {
  0%, 100% { background-position: 0 0; }
  25% { background-position: 2px -1px; }
  50% { background-position: -1px 2px; }
  75% { background-position: 1px -2px; }
}

/* ── Triggered states (JS adds .captured) ── */
.ph-reel.captured .ph-reel__flash {
  animation: reelFlash 0.6s ease-out forwards;
}

.ph-reel.captured .ph-reel__frame {
  animation: reelFrameIn 0.8s var(--ease) 0.35s forwards;
}

.ph-reel.captured .ph-reel__strip {
  animation: reelStripIn 0.8s var(--ease) 0.4s forwards;
}

/* Subtle film grain overlay after capture */
.ph-reel.captured::after {
  content: '';
  position: absolute;
  inset: -24px -40px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4'%3E%3Crect x='0' y='0' width='1' height='1' fill='rgba(201,169,110,0.04)'/%3E%3C/svg%3E");
  animation: reelGrain 0.3s steps(4) infinite;
  animation-delay: 0.5s;
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.5s ease 0.5s;
}

.ph-reel.captured::after {
  opacity: 1;
}

/* ── Thin divider at bottom of hero ── */
.ph::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: var(--pad);
  right: var(--pad);
  height: 1px;
  background: var(--border);
}


/* ================================================================
   PORTFOLIO GRID — Contact Sheet / Light Table
   ================================================================ */
.pg {
  padding: 100px 0 120px;
  border-top: 1px solid var(--border);
}

.pg-label {
  font-family: var(--ui);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block;
  margin-bottom: 48px;
}

/* ── Light-table grid ── */
.pg-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* ── Film frame card ── */
.pg-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(201,169,110,0.12);
  padding: 36px 28px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 10px;
  min-height: 190px;
  text-decoration: none;
  position: relative;
  transition: background 0.4s var(--ease), border-color 0.5s var(--ease), box-shadow 0.5s var(--ease);
}

/* Backlit glow on hover — like a light table */
.pg-card:hover {
  background: rgba(201,169,110,0.03);
  border-color: rgba(201,169,110,0.3);
  box-shadow: 0 0 40px rgba(201,169,110,0.06), inset 0 0 30px rgba(201,169,110,0.02);
}

/* ── Frame number — clapperboard style ── */
.pg-card__num {
  position: absolute;
  top: 10px;
  left: 12px;
  font-family: var(--ui);
  font-size: 9px;
  font-weight: 600;
  color: rgba(201,169,110,0.3);
  letter-spacing: 0.08em;
}
.pg-card:hover .pg-card__num {
  color: rgba(201,169,110,0.6);
}

/* ── Frame hash marks — top-right corner ── */
.pg-card::before {
  content: '+ + +';
  position: absolute;
  top: 10px;
  right: 12px;
  font-family: var(--ui);
  font-size: 7px;
  letter-spacing: 0.15em;
  color: rgba(201,169,110,0.12);
  transition: color 0.4s var(--ease);
  pointer-events: none;
}
.pg-card:hover::before {
  color: rgba(201,169,110,0.25);
}

/* ── Subtle cross-hair at center (light table register mark) ── */
.pg-card::after {
  content: '';
  position: absolute;
  bottom: 10px;
  right: 12px;
  width: 10px;
  height: 10px;
  border-right: 1px solid rgba(201,169,110,0.1);
  border-bottom: 1px solid rgba(201,169,110,0.1);
  transition: border-color 0.4s var(--ease);
  pointer-events: none;
}
.pg-card:hover::after {
  border-color: rgba(201,169,110,0.25);
}

/* ── Logo ── */
.pg-logo {
  height: 30px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  display: block;
  opacity: 0.7;
  transition: opacity 0.4s var(--ease);
}
.pg-card:hover .pg-logo {
  opacity: 1;
}

.pg-name {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 400;
  color: var(--text);
  transition: color 0.3s var(--ease);
}
.pg-card:hover .pg-name {
  color: var(--champagne);
}

/* ── Byline ── */
.pg-desc {
  font-family: var(--editorial);
  font-size: 13px;
  font-weight: 400;
  font-style: italic;
  color: var(--silver);
  letter-spacing: 0.01em;
}

/* ── Wide card — hero frame spanning 2 cols ── */
.pg-card--wide {
  grid-column: span 2;
  flex-direction: row;
  gap: 24px;
  justify-content: flex-start;
  padding: 36px 40px;
  text-align: left;
  align-items: center;
}
.pg-card--wide .pg-logo {
  height: 36px;
  max-width: 180px;
  flex-shrink: 0;
}
.pg-card--wide .pg-desc { flex-shrink: 0; }
.pg-card--wide .pg-tags { margin-top: 0; }

/* Non-clickable card */
.pg-card--static {
  cursor: default;
}
.pg-card--static:hover {
  background: rgba(255,255,255,0.02);
  border-color: rgba(201,169,110,0.12);
  box-shadow: none;
}

/* ── Tags — film metadata style ── */
.pg-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 6px;
  justify-content: center;
}

.pg-tag {
  font-family: var(--ui);
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 3px 10px;
  color: rgba(201,169,110,0.35);
  border: 1px solid rgba(201,169,110,0.1);
  transition: color 0.4s var(--ease), border-color 0.4s var(--ease);
}

.pg-card:hover .pg-tag {
  color: var(--champagne);
  border-color: rgba(201,169,110,0.35);
}


/* ================================================================
   SPRINT — split layout with accordion
   ================================================================ */
.ps {
  padding: 120px 0;
  border-top: 1px solid var(--border);
}

.ps-section-head {
  text-align: center;
  margin-bottom: 100px;
}

.ps-section-label {
  font-family: var(--ui);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--champagne);
  display: block;
  margin-bottom: 20px;
  opacity: 0.6;
}

.ps-section-title {
  font-family: var(--editorial);
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0.01em;
  color: var(--silver);
  font-style: italic;
}

.ps-section-title em {
  font-style: normal;
  color: var(--text);
  font-family: var(--display);
  letter-spacing: -0.02em;
}

.ps-section-rule {
  width: 40px;
  height: 1px;
  background: var(--champagne);
  margin: 28px auto 0;
  opacity: 0.3;
}

.ps-week {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 100px;
  align-items: start;
  position: relative;
  padding-left: 32px;
}

/* Film strip — left edge of each week */
.ps-week::before {
  content: '';
  position: absolute;
  top: -20px;
  bottom: -20px;
  left: 0;
  width: 18px;
  background:
    repeating-linear-gradient(
      to bottom,
      transparent 0px,
      transparent 6px,
      rgba(201,169,110,0.35) 6px,
      rgba(201,169,110,0.35) 16px,
      transparent 16px,
      transparent 22px
    );
  border-right: 1px solid rgba(201,169,110,0.25);
  opacity: 0.5;
}

/* ── Sprint Board — production calendar ── */
.ps-board {
  margin: 100px 0;
  border: 1px solid var(--border);
  padding: 40px;
  position: relative;
  overflow: visible;
}

.ps-board__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.ps-board__title {
  font-family: var(--ui);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--silver);
}

.ps-board__sub {
  font-family: var(--editorial);
  font-size: 15px;
  font-style: italic;
  color: var(--text-muted);
}

.ps-board__grid {
  display: grid;
  grid-template-columns: 48px repeat(7, 1fr);
  gap: 6px;
  grid-auto-rows: minmax(100px, auto);
}

/* Week label */
.ps-board__week-label {
  font-family: var(--ui);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  writing-mode: vertical-lr;
  text-orientation: mixed;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(180deg);
}

/* Day cells */
.ps-board__day {
  background: var(--bg-elevated);
  border: 1px solid #1a1a1a;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
  overflow: visible;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}

.ps-board__day:hover {
  border-color: var(--silver);
  background: #181818;
}

/* Spanning days */
.ps-board__day--span2 { grid-column: span 2; }
.ps-board__day--span3 { grid-column: span 3; }
.ps-board__day--span4 { grid-column: span 3; }

/* Day number */
.ps-board__num {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1;
}

/* Task name */
.ps-board__task {
  font-family: var(--ui);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
}

/* Deliverable */
.ps-board__del {
  font-family: var(--editorial);
  font-size: 13px;
  font-weight: 400;
  color: var(--text-muted);
  font-style: italic;
  line-height: 1.4;
}

/* Gold milestone days */
.ps-board__day--gold {
  border-color: rgba(201,169,110,0.3);
}

.ps-board__day--gold .ps-board__num {
  color: var(--champagne);
}

.ps-board__day--gold .ps-board__task {
  color: var(--champagne);
}

.ps-board__day--gold:hover {
  border-color: var(--champagne);
}

/* ── Mood board doodles ── */
.ps-board__scribble {
  position: absolute;
  font-size: 16px;
  line-height: 1;
  opacity: 0.35;
  pointer-events: none;
  filter: grayscale(1);
  transition: opacity 0.3s var(--ease), filter 0.3s var(--ease);
}

.ps-board__day:hover .ps-board__scribble {
  opacity: 0.7;
  filter: grayscale(0);
}

.ps-board__doodle {
  position: absolute;
  font-size: 12px;
  line-height: 1;
  opacity: 0.3;
  pointer-events: none;
  filter: grayscale(1);
  transition: opacity 0.3s var(--ease), filter 0.3s var(--ease);
}

.ps-board__day:hover .ps-board__doodle {
  opacity: 0.6;
  filter: grayscale(0);
}

.ps-board__doodle--pin {
  font-size: 11px;
}

.ps-board__doodle--arrow {
  font-family: var(--ui);
  font-size: 16px;
  color: var(--champagne);
  opacity: 0.2;
  filter: none;
}

.ps-board__day:hover .ps-board__doodle--arrow {
  opacity: 0.5;
}

/* Sticky note annotations */
.ps-board__note {
  position: absolute;
  font-family: var(--editorial);
  font-size: 10px;
  font-style: italic;
  color: var(--champagne);
  opacity: 0.25;
  white-space: nowrap;
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
}

.ps-board__day:hover .ps-board__note {
  opacity: 0.55;
}

/* Floating doodles around the board */
.ps-board__float {
  position: absolute;
  font-family: var(--editorial);
  font-size: 11px;
  font-style: italic;
  color: var(--champagne);
  opacity: 0.15;
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: 0.02em;
}

/* Rest/buffer days */
.ps-board__day--rest {
  background: transparent;
  border-style: dashed;
  border-color: #1a1a1a;
}

.ps-board__day--rest .ps-board__num {
  color: #2a2a2a;
}

.ps-board__day--rest .ps-board__task {
  color: var(--text-muted);
  font-weight: 400;
}

.ps-week--2 {
  margin-top: 120px;
}

/* ── Left: heading ── */
.ps-week__left {}

.ps-label {
  font-family: var(--ui);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block;
  margin-bottom: 24px;
}

.ps-heading {
  font-family: var(--display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text);
}

.ps-heading em {
  font-style: italic;
  color: var(--champagne);
}

.ps-intro {
  font-family: var(--editorial);
  font-size: 18px;
  font-weight: 400;
  color: var(--silver);
  line-height: 1.6;
  margin-top: 24px;
  max-width: 360px;
}

/* ── Right: accordion ── */
.ps-week__right {
  display: flex;
  flex-direction: column;
}

.ps-item {
  border-bottom: 1px solid var(--border);
}

.ps-item__head {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 28px 0;
  cursor: pointer;
  list-style: none;
  transition: color 0.3s var(--ease);
}

.ps-item__head::-webkit-details-marker { display: none; }
.ps-item__head::marker { display: none; content: ''; }

.ps-item__head:hover { color: var(--champagne); }

.ps-item__day {
  font-family: var(--ui);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  min-width: 80px;
  transition: color 0.3s var(--ease);
}

.ps-item__head:hover .ps-item__day {
  color: var(--champagne);
}

.ps-item__title {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 400;
  color: var(--text);
  flex: 1;
  transition: color 0.3s var(--ease);
}

.ps-item__head:hover .ps-item__title {
  color: var(--champagne);
}

.ps-item__arrow {
  font-size: 20px;
  color: var(--text-muted);
  transition: transform 0.3s var(--ease);
}

.ps-item[open] .ps-item__arrow {
  transform: rotate(180deg);
}

.ps-item__body {
  padding: 0 0 28px 96px;
}

.ps-item__body p {
  font-family: var(--editorial);
  font-size: 17px;
  font-weight: 400;
  color: var(--silver);
  line-height: 1.6;
  max-width: 480px;
}

/* Final item */
.ps-item--final .ps-item__title {
  color: var(--champagne);
}
.ps-item--final .ps-item__day {
  color: var(--champagne);
}




/* ================================================================
   MAGAZINE — Cover + Letter + Voices
   ================================================================ */
.pm {
  border-top: 1px solid var(--border);
}

/* ── Section intro — matches sprint section head ── */
.pm-intro {
  padding: 100px 0 60px;
  text-align: center;
}

.pm-intro__label {
  font-family: var(--ui);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--champagne);
  display: block;
  margin-bottom: 20px;
  opacity: 0.6;
}

.pm-intro__title {
  font-family: var(--editorial);
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0.01em;
  color: var(--silver);
  font-style: italic;
}

.pm-intro__title em {
  font-style: normal;
  color: var(--text);
  font-family: var(--display);
  letter-spacing: -0.02em;
}

.pm-intro__rule {
  width: 40px;
  height: 1px;
  background: var(--champagne);
  margin: 28px auto 0;
  opacity: 0.3;
}


/* ── Cover + Letter spread ── */
.pm-spread {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--pad);
  align-items: start;
}

/* ── PAGE 1: Premium Magazine Cover — layered depth effect ── */
.pm-cover {
  padding: 10px;
  background: linear-gradient(145deg, #e8e0d4, #d4ccc0);
  box-shadow:
    0 20px 80px rgba(0,0,0,0.5),
    0 4px 12px rgba(0,0,0,0.3),
    inset 0 1px 0 rgba(255,255,255,0.15);
  position: relative;
}

/* Film strip — left edge */
.pm-cover__strip {
  position: absolute;
  top: -8px;
  bottom: -8px;
  left: -20px;
  width: 18px;
  background:
    repeating-linear-gradient(
      to bottom,
      transparent 0px,
      transparent 6px,
      rgba(201,169,110,0.35) 6px,
      rgba(201,169,110,0.35) 16px,
      transparent 16px,
      transparent 22px
    );
  border-right: 1px solid rgba(201,169,110,0.25);
  opacity: 0.5;
}

.pm-cover__frame {
  position: relative;
  width: 480px;
  aspect-ratio: 3/4;
  overflow: hidden;
}

/* Layer 1: Premium dark background */
.pm-cover__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 30%, #2a2420 0%, #0f0e0d 70%);
  z-index: 1;
}

/* Layer 2: Masthead — sits BEHIND the person */
.pm-cover__mast {
  position: absolute;
  top: 6%;
  left: 0;
  right: 0;
  text-align: center;
  font-family: var(--display);
  font-size: 110px;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: rgba(255,255,255,0.88);
  line-height: 1;
  z-index: 2;
  text-shadow: 0 2px 30px rgba(0,0,0,0.3);
}

.pm-cover__dot {
  color: var(--champagne);
}

/* Layer 3: Person — in front of masthead */
.pm-cover__photo {
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  z-index: 3;
  filter: contrast(1.08) brightness(0.95);
}

/* Layer 4: Bottom gradient for text readability */
.pm-cover__fade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 50%, rgba(15,14,13,0.6) 85%, rgba(15,14,13,0.85) 100%);
  pointer-events: none;
  z-index: 4;
}

/* ── Top corners — issue info ── */
.pm-cover__issue {
  position: absolute;
  top: 24px;
  left: 28px;
  font-family: var(--ui);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  z-index: 5;
}

.pm-cover__tag {
  position: absolute;
  top: 24px;
  right: 28px;
  font-family: var(--ui);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--champagne);
  z-index: 5;
}

/* ── Center text block ── */
.pm-cover__center {
  position: absolute;
  bottom: 10%;
  left: 0;
  right: 0;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.pm-cover__headline {
  font-family: var(--display);
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #fff;
  text-transform: uppercase;
}

.pm-cover__headline em {
  font-family: var(--editorial);
  font-style: italic;
  color: var(--champagne);
}

.pm-cover__rule {
  display: block;
  width: 32px;
  height: 1.5px;
  background: var(--champagne);
  margin: 14px 0;
  opacity: 0.6;
}

.pm-cover__byline {
  font-family: var(--editorial);
  font-size: clamp(14px, 1.5vw, 18px);
  font-weight: 600;
  font-style: normal;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.05em;
}

.pm-cover__subtitle {
  font-family: var(--ui);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-top: 6px;
}


/* ── PAGE 2: Editor's Letter (sits beside cover) ── */
.pm-letter {
  padding: 0 48px 60px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  border-left: 1px solid var(--border);
}

.pm-letter__grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.pm-letter__label {
  font-family: var(--ui);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--champagne);
  display: block;
  margin-bottom: 32px;
  opacity: 0.6;
}

.pm-letter__title {
  font-family: var(--display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text);
}

.pm-letter__title em {
  font-style: italic;
  color: var(--champagne);
}

.pm-letter__right {}

.pm-letter__right p {
  font-family: var(--editorial);
  font-size: 17px;
  font-weight: 400;
  color: var(--silver);
  line-height: 1.7;
  margin-bottom: 20px;
}

.pm-letter__right p:last-of-type {
  margin-bottom: 32px;
}

.pm-letter__sign {
  display: block;
  font-family: var(--display);
  font-size: 18px;
  font-weight: 400;
  color: var(--text);
  letter-spacing: -0.01em;
}

.pm-letter__sign-role {
  display: block;
  font-family: var(--editorial);
  font-size: 14px;
  font-style: italic;
  color: var(--text-muted);
  margin-top: 4px;
}


/* ── PAGE 3: Voices — one-liner testimonials ── */
.pm-voices {
  padding: 100px 0 120px;
  border-top: 1px solid var(--border);
}

.pm-voices__label {
  font-family: var(--ui);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block;
  margin-bottom: 60px;
}

.pm-voices__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.pm-voices__page {
  padding: 48px 40px;
  border: 1px solid var(--border);
  margin: -0.5px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 200px;
  transition: background 0.4s var(--ease);
}

.pm-voices__page:hover {
  background: rgba(201,169,110,0.02);
}

.pm-voices__quote {
  font-family: var(--display);
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 24px;
}

.pm-voices__attr {
  font-family: var(--editorial);
  font-size: 14px;
  font-style: italic;
  color: var(--text-muted);
}


/* ================================================================
   TESTIMONIALS — CONTACT SHEET / PROOF GRID
   ================================================================ */
.pc2 {
  padding: 120px 0;
  border-top: 1px solid var(--champagne);
}

.pc2-label {
  font-family: var(--ui);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block;
  margin-bottom: 48px;
}

.pc2-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.pc2-cell {
  border: 1px solid #151515;
  aspect-ratio: 4 / 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 32px 28px;
  position: relative;
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease);
}

.pc2-cell:hover {
  background: #111;
  border-color: var(--text);
  z-index: 1;
}

/* Frame number */
.pc2-cell::before {
  content: attr(data-frame);
  position: absolute;
  top: 14px;
  left: 16px;
  font-family: var(--ui);
  font-size: 9px;
  font-weight: 500;
  color: #252525;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.05em;
  transition: color 0.4s var(--ease);
}

.pc2-cell:hover::before {
  color: var(--champagne);
}

/* Avatar — fills the cell as background */
.pc2-avatar {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  filter: grayscale(1);
  opacity: 0.4;
  transition: opacity 0.5s var(--ease), filter 0.5s var(--ease);
}

.pc2-cell:hover .pc2-avatar {
  opacity: 0.6;
  filter: grayscale(0.3);
}

/* Dark overlay for readability */
.pc2-cell:has(.pc2-avatar)::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.85) 0%, rgba(10,10,10,0.5) 50%, rgba(10,10,10,0.7) 100%);
  z-index: 1;
}

/* Ensure text sits above overlay */
.pc2-cell:has(.pc2-avatar) .pc2-quote,
.pc2-cell:has(.pc2-avatar) .pc2-attr,
.pc2-cell:has(.pc2-avatar) > [data-frame] {
  position: relative;
  z-index: 2;
}

/* Brighter text on photo cells */
.pc2-cell:has(.pc2-avatar) .pc2-quote {
  color: var(--text);
  text-shadow: 0 2px 12px rgba(0,0,0,0.8);
  transition: opacity 0.4s var(--ease);
}

.pc2-cell:has(.pc2-avatar):hover .pc2-quote {
  opacity: 0.4;
}

.pc2-cell:has(.pc2-avatar) .pc2-name {
  color: #fff;
  text-shadow: 0 1px 8px rgba(0,0,0,0.9);
}

.pc2-cell:has(.pc2-avatar) .pc2-role {
  color: var(--silver);
  text-shadow: 0 1px 8px rgba(0,0,0,0.9);
}

/* Override frame number z-index */
.pc2-cell:has(.pc2-avatar)::before {
  z-index: 2;
}

/* Quote */
.pc2-quote {
  font-family: var(--display);
  font-size: 18px;
  font-style: italic;
  font-weight: 400;
  line-height: 1.35;
  color: #666;
  margin: 0;
  transition: color 0.4s var(--ease);
}

.pc2-cell:hover .pc2-quote {
  color: var(--text);
}

/* Attribution */
.pc2-attr {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: 16px;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}

.pc2-cell:hover .pc2-attr {
  opacity: 1;
  transform: translateY(0);
}


.pc2-name {
  font-family: var(--ui);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
}

.pc2-role {
  font-family: var(--ui);
  font-size: 10px;
  font-weight: 400;
  color: var(--text-muted);
}


/* ================================================================
   PRICING
   ================================================================ */
.pricing {
  padding: 120px 0;
  border-top: 1px solid var(--border);
}

.pricing__label {
  font-family: var(--ui);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block;
  margin-bottom: 24px;
}

.pricing__heading {
  font-family: var(--display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 64px;
}

.pricing__heading em {
  font-style: italic;
  color: var(--champagne);
}

.pricing__topups {
  margin-top: 64px;
  border-top: 1px solid var(--border);
  padding-top: 48px;
}

.pricing__topups-label {
  font-family: var(--ui);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block;
  margin-bottom: 32px;
}

.pricing__topups-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.pricing__topup {
  padding: 20px 24px;
  border: 1px solid var(--border);
  margin-top: -1px;
  margin-left: -1px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.pricing__topup-name {
  font-family: var(--display);
  font-size: 16px;
  font-weight: 400;
  color: var(--text);
}

.pricing__topup-desc {
  font-family: var(--editorial);
  font-size: 13px;
  font-style: italic;
  color: var(--text-muted);
}

.pricing__topup-price {
  font-family: var(--display);
  font-size: 18px;
  color: var(--champagne);
  margin-top: 8px;
}

.pricing__banner {
  margin-top: 48px;
  padding: 24px 32px;
  border: 1px solid rgba(201,169,110,0.25);
  background: rgba(201,169,110,0.04);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.pricing__banner-text {
  font-family: var(--editorial);
  font-size: 16px;
  color: var(--silver);
  font-style: italic;
}

.pricing__banner-text strong {
  color: var(--champagne);
  font-weight: 600;
  font-style: normal;
}

.pricing__banner-link {
  font-family: var(--ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--champagne);
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.3s var(--ease);
}

.pricing__banner-link:hover {
  opacity: 0.7;
}

.pricing__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.pricing__card {
  border: 1px solid var(--border);
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
}

.pricing__card--primary {
  border-color: rgba(201,169,110,0.3);
  background: rgba(201,169,110,0.03);
}

.pricing__card-label {
  font-family: var(--ui);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: 24px;
}

.pricing__card--secondary .pricing__card-label {
  color: var(--silver);
}

.pricing__price {
  font-family: var(--display);
  font-size: 48px;
  font-weight: 400;
  color: var(--text);
  letter-spacing: -0.02em;
  line-height: 1;
}

.pricing__price--small {
  font-size: 36px;
}

.pricing__tax {
  font-family: var(--ui);
  font-size: 13px;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 0;
}

.pricing__duration {
  font-family: var(--editorial);
  font-size: 14px;
  font-style: italic;
  color: var(--text-muted);
  margin-top: 8px;
  margin-bottom: 32px;
}

.pricing__list {
  list-style: none;
  padding: 0;
  margin: 0 0 40px;
  flex-grow: 1;
}

.pricing__list li {
  font-family: var(--editorial);
  font-size: 15px;
  color: var(--silver);
  line-height: 1.5;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}

.pricing__list li:last-child {
  border-bottom: none;
}

.pricing__list li::before {
  content: "—  ";
  color: var(--champagne);
  opacity: 0.5;
}

.pricing__cta {
  display: inline-block;
  font-family: var(--ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 32px;
  text-align: center;
  background: var(--champagne);
  color: var(--bg);
  transition: opacity 0.3s var(--ease);
}

.pricing__cta:hover {
  opacity: 0.85;
}

.pricing__cta--outline {
  background: transparent;
  color: var(--silver);
  border: 1px solid var(--border);
}

.pricing__cta--outline:hover {
  border-color: var(--silver);
  color: var(--text);
}


/* ================================================================
   FAQ
   ================================================================ */
.faq {
  padding: 120px 0;
  border-top: 1px solid var(--border);
}

.faq__label {
  font-family: var(--ui);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block;
  margin-bottom: 24px;
  text-align: center;
}

.faq__heading {
  font-family: var(--display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 64px;
  text-align: center;
}

.faq__heading em {
  font-style: italic;
  color: var(--champagne);
}

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

.faq__item {
  border-bottom: 1px solid var(--border);
}

.faq__item:first-child {
  border-top: 1px solid var(--champagne);
}

.faq__q {
  font-family: var(--display);
  font-size: clamp(16px, 1.5vw, 20px);
  font-weight: 400;
  color: var(--silver);
  padding: 24px 0;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s var(--ease);
}

.faq__q::-webkit-details-marker {
  display: none;
}

.faq__q::after {
  content: "+";
  font-family: var(--ui);
  font-size: 18px;
  font-weight: 300;
  color: var(--text-muted);
  transition: color 0.3s var(--ease), transform 0.3s var(--ease);
}

.faq__item[open] .faq__q::after {
  content: "−";
  color: var(--champagne);
}

.faq__item[open] .faq__q {
  color: var(--text);
}

.faq__a {
  font-family: var(--editorial);
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  padding: 0 0 24px;
  max-width: 600px;
}


/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1024px) {
  :root { --pad: 48px; }
  .ph-headline { font-size: clamp(48px, 8vw, 90px); }
  .ph-sub { font-size: 18px; }
  .pg-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .pg-card--wide { grid-column: span 1; flex-direction: column; padding: 36px 28px 28px; text-align: center; }
  .pg-card--wide .pg-logo { height: 30px; max-width: 160px; }
  .ps-week { grid-template-columns: 1fr; gap: 48px; padding-left: 28px; }
  .ps-week__left { position: static; }
  .ps-board__grid { grid-template-columns: 1fr 1fr; }
  .ps-board__week-label { writing-mode: horizontal-tb; transform: none; padding: 8px 0; grid-column: 1 / -1; }
  .ps-board__day--span2, .ps-board__day--span3, .ps-board__day--span4 { grid-column: span 2; }
  .ps-board { padding: 24px; }
  .pm-spread { grid-template-columns: 1fr; }
  .pm-cover__frame { width: 100%; max-width: 480px; }
  .pm-cover__mast { font-size: 80px; }
  .pm-letter { border-left: none; border-top: 1px solid var(--border); padding: 48px var(--pad); }
}

@media (max-width: 640px) {
  :root { --pad: 24px; }
  .ph-headline { font-size: clamp(38px, 11vw, 64px); }
  .pricing { padding: 80px 0; }
  .pricing__cards { grid-template-columns: 1fr; }
  .pricing__card { padding: 36px 28px; }
  .pricing__price { font-size: 36px; }
  .pricing__price--small { font-size: 28px; }
  .pricing__topups-grid { grid-template-columns: 1fr; }
  .faq { padding: 80px 0; }
  .ph-sub { font-size: 17px; max-width: 320px; }
  .ph-label { margin-bottom: 32px; font-size: 10px; }
  .ph-btn { width: 100%; justify-content: center; height: 48px; }
  .ph-reel__frame { inset: -16px -20px; }
  .ph-reel__strip { width: 12px; }
  .ph-reel__strip--left { left: -12px; }
  .ph-reel__strip--right { right: -12px; }
  .pn-wrap { padding: 0 24px; }
  .pn-logo { font-size: 22px; }
  .pn-nav { display: none; }
  .pn-cta { padding: 0 20px; font-size: 11px; }
  .pg-grid { grid-template-columns: repeat(2, 1fr); }
  .pg-grid { gap: 12px; }
  .pg-card { padding: 28px 20px 24px; min-height: 150px; }
  .pg-card--wide { grid-column: span 2; flex-direction: row; padding: 28px 24px; }
  .pg-card--wide .pg-logo { height: 28px; }
  .ps-week--2 { margin-top: 80px; }
  .ps-item__body { padding-left: 0; }
  .ps-item__day { min-width: 60px; font-size: 10px; }
  .pc2-grid { grid-template-columns: 1fr; }
  .pc2-cell { aspect-ratio: auto; min-height: 160px; }
  .pc2-attr { opacity: 1; transform: none; }
  .pm-cover__name { font-size: 32px; }
  .pm-cover__mast { font-size: 64px; }
  .pm-voices__grid { grid-template-columns: 1fr; }
  .pm-voices__page { padding: 36px 24px; min-height: 160px; }
  .pm-letter__right p { font-size: 16px; }
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
