@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,wght@0,300;0,400;0,500;0,700;0,900;1,300;1,400;1,500&family=Geist+Mono:wght@300;400;500;600&display=swap');

:root {
  --fiji-black:         #0F0A07;
  --fiji-black-2:       #1A1411;
  --fiji-black-3:       #272016;
  --fiji-off-white:     #F4F2F1;
  --fiji-off-white-2:   #EFECEB;
  --fiji-warm-beige:    #C3BAAB;
  --fiji-warm-beige-dark: #998970;
  --fiji-grey:          #E4E1DD;
  --fiji-green:         #BEE99C;
  --fiji-green-dark:    #A2DF71;
  --sans: 'DM Sans', 'Helvetica Neue', Arial, sans-serif;
  --mono: 'Geist Mono', ui-monospace, 'SF Mono', Menlo, monospace;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body { font-family: var(--sans); font-weight: 400; background: var(--fiji-off-white); color: var(--fiji-black); -webkit-font-smoothing: antialiased; overflow-x: hidden; }
body { min-height: 100vh; }
a { color: inherit; text-decoration: none; }
button { font: inherit; background: none; border: none; cursor: pointer; color: inherit; }
img, video, svg { display: block; max-width: 100%; }

/* ── Labels & utilities ── */
.mono { font-family: var(--mono); font-weight: 400; letter-spacing: 0.02em; }
.label { font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 400; opacity: 0.7; }
.bracket::before { content: '['; margin-right: 2px; opacity: 0.5; }
.bracket::after  { content: ']'; margin-left:  2px; opacity: 0.5; }

/* ── Nav ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; align-items: center;
  padding: 22px 36px;
  color: var(--fiji-off-white);
  transition: background-color 0.3s ease;
}
.nav-transparent { background-color: rgba(15,10,7,0); }
.nav-solid       { background-color: rgba(15,10,7,1); }

.nav-mark { display: flex; align-items: center; cursor: pointer; transition: opacity 0.2s; flex-shrink: 0; }
.nav-mark:hover { opacity: 0.7; }

.nav-links {
  position: absolute; left: 50%; transform: translateX(-50%);
  display: flex; align-items: center; gap: 40px;
}

.nav-link {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  position: relative; padding: 6px 0; cursor: pointer; transition: opacity 0.2s;
}
.nav-link::after {
  content: ''; position: absolute; left: 0; bottom: 0; height: 1px; width: 0;
  background: currentColor; transition: width 0.35s var(--ease);
}
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 14px 22px; border: 1px solid currentColor;
  transition: all 0.25s var(--ease); cursor: pointer;
}
.btn:hover { background: var(--fiji-green); color: var(--fiji-black); border-color: var(--fiji-green); }
.btn-solid { background: var(--fiji-black); color: var(--fiji-off-white); border-color: var(--fiji-black); }
.btn-solid:hover { background: var(--fiji-green); color: var(--fiji-black); border-color: var(--fiji-green); }
.btn-cta-light { background: var(--fiji-off-white); color: var(--fiji-black); border-color: var(--fiji-off-white); }
.btn-cta-light:hover { background: var(--fiji-green); color: var(--fiji-black); border-color: var(--fiji-green); }

/* ── Hero ── */
.hero {
  position: relative; height: 100vh; min-height: 720px; width: 100vw;
  overflow: hidden; background: #000; color: var(--fiji-off-white);
}
.hero-yt-wrap {
  position: absolute; inset: 0; z-index: 0; overflow: hidden; background: #000; pointer-events: none;
}
.hero-yt-wrap::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.35) 0%, rgba(0,0,0,.15) 40%, rgba(0,0,0,.55) 100%);
}
.hero-bg-video {
  position: absolute; top: 50%; left: 50%;
  width: 177.78vh; height: 100vh; min-width: 100vw; min-height: 56.25vw;
  transform: translate(-50%,-50%); border: 0; pointer-events: none;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(15,10,7,.55) 0%, rgba(15,10,7,.25) 40%, rgba(15,10,7,.7) 100%);
}
.hero-grain {
  position: absolute; inset: 0; z-index: 2; opacity: 0.08; pointer-events: none; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.hero-content {
  position: absolute; inset: 0; z-index: 3;
  display: flex; flex-direction: column; justify-content: center;
  padding: 0 36px;
}
.hero-content-inner { max-width: 1600px; margin: 0 auto; width: 100%; }
.hero-headline {
  font-family: var(--sans); font-weight: 800;
  font-size: clamp(64px, 11vw, 180px); line-height: 0.92;
  letter-spacing: -0.035em; color: var(--fiji-off-white); margin: 0; text-wrap: balance;
}
.hero-tagline-mono {
  margin-top: 48px; font-family: var(--mono); font-size: 12px; letter-spacing: 0.32em;
  text-transform: uppercase; color: var(--fiji-off-white); opacity: 0.85;
  display: inline-flex; align-items: center; gap: 14px;
}
.hero-tagline-mono::before {
  content: ''; display: inline-block; width: 36px; height: 1px; background: var(--fiji-green);
}

/* ── Section titles ── */
.section-title {
  font-size: clamp(56px, 8vw, 140px); line-height: 0.88;
  font-weight: 700; letter-spacing: -0.035em;
}
.section-title em { font-style: italic; font-weight: 300; color: var(--fiji-warm-beige); }
.section-title-dark em { color: var(--fiji-warm-beige-dark); }

/* ── Home: OUR WORK ── */
.home-work { background: var(--fiji-black); color: var(--fiji-off-white); padding: 140px 36px; }
.home-work-inner { max-width: 1600px; margin: 0 auto; }
.home-work-head { display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 40px; margin-bottom: 50px; }
.home-work-filters { display: flex; gap: 8px; flex-wrap: wrap; padding-bottom: 16px; }
.filter-chip {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 10px 16px; border: 1px solid rgba(244,242,241,.25); cursor: pointer; transition: all 0.2s;
  color: var(--fiji-off-white);
}
.filter-chip:hover { border-color: var(--fiji-off-white); }
.filter-chip.active { background: var(--fiji-green); color: var(--fiji-black); border-color: var(--fiji-green); }

.home-work-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.home-work-card { cursor: pointer; }
.home-work-thumb { position: relative; aspect-ratio: 4/5; overflow: hidden; background: var(--fiji-black-2); }
.home-work-thumb > * { transition: transform 0.7s var(--ease); }
.home-work-card:hover .home-work-thumb > * { transform: scale(1.04); }
.play-pill {
  position: absolute; top: 16px; left: 16px; display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 10px; background: rgba(15,10,7,.7); backdrop-filter: blur(10px);
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--fiji-off-white); z-index: 2;
}
.home-work-meta { padding-top: 16px; display: flex; justify-content: space-between; gap: 20px; }
.home-work-meta .title { font-size: 22px; font-weight: 500; letter-spacing: -0.01em; }
.home-work-meta .client { font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; opacity: 0.6; margin-top: 4px; }
.home-work-meta .right { font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; opacity: 0.6; text-align: right; }

/* ── Home: ABOUT ── */
.home-about { background: var(--fiji-off-white); color: var(--fiji-black); padding: 140px 0; overflow: hidden; }
.home-about-inner {
  max-width: 1600px; margin: 0 auto;
  display: grid; grid-template-columns: minmax(0,1.05fr) minmax(0,1fr);
  column-gap: 140px; align-items: start; padding: 0 80px 0 0;
}
.home-about-shape {
  position: relative; width: calc(100% + ((100vw - 1600px)/2) + 80px);
  max-width: none; margin-left: calc(0px - ((100vw - 1600px)/2) - 80px);
  aspect-ratio: 587/700; overflow: hidden;
}
@media (max-width: 1600px) { .home-about-shape { width: 100%; margin-left: 0; } }
.home-about-shape-clip {
  position: absolute; inset: 0;
  clip-path: polygon(0% 33.26%, 0% 100%, 88.15% 41.35%, 49.97% 41.35%, 49.97% 33.26%, 100% 33.26%, 100% 0%, 49.97% 0%);
}
.home-about-shape-img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.home-about-text { max-width: 640px; padding-top: 60px; }
.home-about-copy { font-size: clamp(20px, 1.8vw, 26px); line-height: 1.45; margin-top: 32px; text-wrap: pretty; }
.home-about-copy em { font-style: normal; font-weight: 500; background: var(--fiji-green); color: var(--fiji-black); padding: 1px 6px; }

/* ── Home: CONTACT CTA ── */
.home-contact { background: var(--fiji-black); color: var(--fiji-off-white); padding: 120px 36px; }
.home-contact-inner { max-width: 1600px; margin: 0 auto; }
.home-contact-title { font-size: clamp(40px, 5.5vw, 80px); line-height: 1.0; font-weight: 700; letter-spacing: -0.025em; }

/* ── Footer ── */
.home-footer { background: var(--fiji-black); color: var(--fiji-off-white); padding: 80px 36px 40px; border-top: 1px solid rgba(244,242,241,.12); }
.home-footer-inner { max-width: 1600px; margin: 0 auto; display: grid; grid-template-columns: repeat(3,1fr); gap: 60px; }
.footer-col h4 { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 400; opacity: 0.55; margin-bottom: 14px; }
.footer-col p, .footer-col a { display: block; font-size: 16px; line-height: 1.5; margin-bottom: 4px; transition: color 0.2s; }
.footer-col a:hover { color: var(--fiji-green); }
.home-footer-foot { max-width: 1600px; margin: 60px auto 0; padding-top: 28px; border-top: 1px solid rgba(244,242,241,.12); display: flex; justify-content: space-between; font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; opacity: 0.55; }

/* ── Work page ── */
.work-page { background: var(--fiji-black); color: var(--fiji-off-white); min-height: 100vh; padding: 140px 36px 120px; }
.work-head { max-width: 1600px; margin: 0 auto 80px; display: grid; grid-template-columns: 3fr 2fr; gap: 80px; align-items: end; }
.work-head h1 { font-size: clamp(52px,7.5vw,118px); line-height: 0.9; font-weight: 700; letter-spacing: -0.035em; }
.work-head h1 em { font-style: italic; font-weight: 300; color: var(--fiji-warm-beige); }
.work-head-meta { display: flex; flex-direction: column; gap: 20px; padding-bottom: 8px; }
.work-head-meta .label { color: var(--fiji-warm-beige); opacity: 1; }
.work-filters { max-width: 1600px; margin: 0 auto 40px; display: flex; gap: 8px; flex-wrap: wrap; }
.work-grid { max-width: 1600px; margin: 0 auto; display: grid; grid-template-columns: repeat(12,1fr); gap: 16px; row-gap: 32px; }
.span-12 { grid-column: span 12; }
.span-8  { grid-column: span 8; }
.span-7  { grid-column: span 7; }
.span-6  { grid-column: span 6; }
.span-5  { grid-column: span 5; }
.span-4  { grid-column: span 4; }
.project-card { cursor: pointer; position: relative; overflow: hidden; }
.project-card .thumb { position: relative; width: 100%; overflow: hidden; background: var(--fiji-black-2); }
.project-card .thumb > * { transition: transform 0.7s var(--ease); }
.project-card:hover .thumb > * { transform: scale(1.04); }
.project-card .meta { padding: 16px 0 0; display: flex; justify-content: space-between; gap: 20px; }
.project-card .meta .title { font-size: 20px; font-weight: 500; letter-spacing: -0.01em; }
.project-card .meta .client { font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; opacity: 0.6; }
.project-card .meta .right { text-align: right; font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; opacity: 0.6; }
.project-thumb { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.project-thumb-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0) 35%, rgba(0,0,0,.55) 100%); }

/* ── About page ── */
.about-page { background: var(--fiji-off-white); color: var(--fiji-black); min-height: 100vh; }
.about-hero { position: relative; padding: 180px 36px 120px; overflow: hidden; background: var(--fiji-off-white); }
.about-hero-inner { max-width: 1600px; margin: 0 auto; }
.about-hero-kicker { margin-bottom: 32px; }
.about-hero h1 { font-size: clamp(42px,5.5vw,80px); line-height: 0.9; font-weight: 700; letter-spacing: -0.035em; max-width: 18ch; text-wrap: balance; }
.about-hero h1 em { font-style: italic; font-weight: 300; color: var(--fiji-warm-beige-dark); }

.about-manifesto { background: var(--fiji-black); color: var(--fiji-off-white); padding: 140px 36px; }
.about-manifesto-inner { max-width: 1600px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-manifesto-text p { font-size: clamp(22px,2.2vw,34px); line-height: 1.25; font-weight: 300; letter-spacing: -0.01em; margin-bottom: 28px; }
.about-manifesto-text p:last-child { margin-bottom: 0; }
.about-manifesto-text em { font-style: italic; font-weight: 400; color: var(--fiji-warm-beige); }
.about-manifesto-photo { overflow: hidden; aspect-ratio: 1 / 1; }
.about-manifesto-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }

.about-principles { background: var(--fiji-off-white); padding: 140px 36px; }
.about-principles-inner { max-width: 1600px; margin: 0 auto; }
.about-how-layout { display: grid; grid-template-columns: 1fr 2fr; gap: 80px; align-items: start; }
.about-how-layout h2 { font-size: clamp(42px,6vw,90px); line-height: 0.9; font-weight: 700; letter-spacing: -0.03em; }
.about-how-layout h2 em { font-style: italic; font-weight: 300; color: var(--fiji-warm-beige-dark); }
.about-how-text p { font-size: clamp(20px,2vw,30px); line-height: 1.35; font-weight: 300; letter-spacing: -0.01em; color: var(--fiji-black); opacity: 0.8; margin-bottom: 28px; }
.about-how-text p:last-child { margin-bottom: 0; }

.about-team { background: var(--fiji-warm-beige); color: var(--fiji-black); padding: 140px 36px; }
.about-team-inner { max-width: 1600px; margin: 0 auto; }
.about-team h2 { font-size: clamp(48px,7vw,100px); line-height: 1.0; font-weight: 700; letter-spacing: -0.03em; margin-bottom: 60px; }
.about-team h2 em { font-style: italic; font-weight: 300; opacity: 0.6; }
.team-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; max-width: 760px; }
.team-card .avatar { aspect-ratio: 3/4; background: rgba(15,10,7,.08); margin-bottom: 16px; overflow: hidden; }
.team-card .avatar img { filter: grayscale(100%); }
.team-card h4 { font-size: 20px; font-weight: 500; letter-spacing: -0.01em; }
.team-card p { font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; opacity: 0.6; margin-top: 4px; }

.about-clients { padding: 100px 36px; background: var(--fiji-off-white); border-top: 1px solid rgba(15,10,7,.1); }
.about-clients-inner { max-width: 1600px; margin: 0 auto; }
.about-clients-head { margin-bottom: 40px; }
.about-clients-head h2 { font-size: clamp(36px,5vw,72px); font-weight: 700; letter-spacing: -0.03em; line-height: 1; }
.clients-list { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: rgba(15,10,7,.1); }
.client-cell { background: var(--fiji-off-white); padding: 36px 20px; text-align: center; font-weight: 500; font-size: 18px; letter-spacing: -0.01em; display: flex; align-items: center; justify-content: center; transition: background 0.2s, color 0.2s; }
.client-cell:hover { background: var(--fiji-black); color: var(--fiji-off-white); }

.about-cta { background: var(--fiji-black); color: var(--fiji-off-white); padding: 140px 36px 60px; }
.about-cta-inner { max-width: 1600px; margin: 0 auto; }
.contact-big { font-size: clamp(56px,10vw,180px); line-height: 0.9; font-weight: 700; letter-spacing: -0.035em; margin-bottom: 60px; text-wrap: balance; }
.contact-big .accent { color: var(--fiji-green); font-style: italic; font-weight: 300; }

/* ── Contact page ── */
.contact-page { background: var(--fiji-black); color: var(--fiji-off-white); min-height: 100vh; padding: 160px 36px 60px; }
.contact-page-inner { max-width: 1600px; margin: 0 auto; }
.contact-kicker { margin-bottom: 24px; }
.contact-page h1 { font-size: clamp(56px,8vw,140px); line-height: 0.88; font-weight: 700; letter-spacing: -0.035em; margin-bottom: 80px; text-wrap: balance; }
.contact-page h1 em { font-style: italic; font-weight: 300; color: var(--fiji-warm-beige); }
.contact-page-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; padding-top: 80px; border-top: 1px solid rgba(244,242,241,.15); }
.contact-form { display: flex; flex-direction: column; gap: 32px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; opacity: 0.6; }
.field input, .field textarea, .field select {
  background: transparent; border: none; border-bottom: 1px solid rgba(244,242,241,.3);
  color: var(--fiji-off-white); font-family: var(--sans); font-size: 20px;
  padding: 10px 0 12px; outline: none; transition: border-color 0.25s; width: 100%;
}
.field input:focus, .field textarea:focus { border-bottom-color: var(--fiji-green); }
.field textarea { resize: vertical; min-height: 120px; }
.field input::placeholder, .field textarea::placeholder { color: rgba(244,242,241,.35); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.submit-btn {
  align-self: flex-start; display: inline-flex; align-items: center; gap: 14px;
  padding: 18px 28px; background: var(--fiji-green); color: var(--fiji-black);
  border: 1px solid var(--fiji-green); font-family: var(--mono); font-size: 12px;
  letter-spacing: 0.16em; text-transform: uppercase; font-weight: 500;
  cursor: pointer; transition: transform 0.25s, background 0.25s;
}
.submit-btn:hover { transform: translateY(-2px); }
.submit-btn.sent { background: transparent; color: var(--fiji-green); border-color: var(--fiji-green); }
.contact-side { display: flex; flex-direction: column; gap: 40px; }
.contact-block h4 { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; opacity: 0.6; margin-bottom: 14px; }
.contact-block p, .contact-block a { font-size: 20px; line-height: 1.5; }
.contact-block a { transition: color 0.2s; }
.contact-block a:hover { color: var(--fiji-green); }
.contact-page-foot { margin-top: 120px; padding-top: 30px; border-top: 1px solid rgba(244,242,241,.15); display: flex; justify-content: space-between; font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; opacity: 0.55; }

/* ── Project detail page ── */
.project-page { background: var(--fiji-off-white); color: var(--fiji-black); min-height: 100vh; }

/* Header */
.proj-header { padding: 120px 36px 0; max-width: 1600px; margin: 0 auto; }
.proj-header-top {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 32px;
}
.proj-breadcrumb {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  opacity: 0.5;
}
.proj-counter {
  display: flex; align-items: center; gap: 20px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
}
.proj-counter-nav {
  opacity: 0.5; transition: opacity 0.2s; cursor: pointer; display: inline-flex; align-items: center; gap: 6px;
}
.proj-counter-nav:hover { opacity: 1; }
.proj-counter-num { opacity: 0.4; padding: 0 6px; }

.proj-title-row {
  display: grid; grid-template-columns: 1fr auto; align-items: start; gap: 40px; padding-bottom: 40px;
  border-bottom: 1px solid rgba(15,10,7,.12);
}
.proj-title {
  font-size: clamp(22px, 3.2vw, 48px); font-weight: 700; letter-spacing: -0.03em;
  line-height: 1.1; white-space: nowrap;
}
.proj-title .green-dot { color: var(--fiji-green); }
.proj-tags { display: flex; gap: 8px; flex-wrap: wrap; align-items: flex-start; padding-top: 16px; }
.proj-tag {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 7px 12px; border: 1px solid rgba(15,10,7,.25); color: var(--fiji-black);
  transition: all 0.2s;
}

/* Video / cover */
.proj-video {
  background: var(--fiji-black); margin: 0 36px 0 36px;
  aspect-ratio: 16/9; position: relative; display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.proj-video-embed {
  position: absolute; inset: 0;
}
.proj-video img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.7; }
.proj-video-ph {
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(135deg, rgba(255,255,255,.02) 0 20px, rgba(255,255,255,.04) 20px 40px);
}
.proj-play {
  position: relative; z-index: 2; width: 64px; height: 64px; border-radius: 50%;
  background: rgba(190,233,156,.92); display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: transform 0.25s var(--ease);
}
.proj-play:hover { transform: scale(1.1); }
.proj-play svg { margin-left: 4px; }
.proj-video-label {
  position: absolute; bottom: 20px; left: 24px; z-index: 2;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(244,242,241,.6);
}

/* Content */
.proj-content { padding: 80px 36px; max-width: 1600px; margin: 0 auto; }
.proj-content-grid { display: grid; grid-template-columns: 280px 1fr; gap: 80px; align-items: start; }

.proj-meta { }
.proj-meta-row { padding: 14px 0; border-bottom: 1px solid rgba(15,10,7,.1); }
.proj-meta-row:first-child { border-top: 1px solid rgba(15,10,7,.1); }
.proj-meta-key {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
  opacity: 0.45; margin-bottom: 4px;
}
.proj-meta-val { font-size: 15px; font-weight: 400; letter-spacing: -0.01em; }

.proj-text { }
.proj-summary {
  font-size: clamp(22px, 2.4vw, 32px); line-height: 1.25; font-weight: 400;
  letter-spacing: -0.02em; margin-bottom: 40px;
}
.proj-body-text p { font-size: 16px; line-height: 1.65; opacity: 0.75; margin-bottom: 20px; }
.proj-body-text p:last-child { margin-bottom: 0; }

/* BTS section */
/* Videos scroll */
.proj-videos { padding: 60px 0 60px 36px; border-top: 1px solid rgba(15,10,7,.1); }
.proj-videos-inner { display: flex; flex-direction: column; gap: 24px; }
.proj-videos-label { opacity: 0.5; }
.proj-videos-scroll {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  height: 560px;
  padding-right: 36px;
}
.proj-videos-scroll::-webkit-scrollbar { display: none; }
.proj-videos-cell {
  flex: 0 0 auto;
  width: calc(560px * 9 / 16);
  height: 100%;
  scroll-snap-align: start;
  background: var(--fiji-black);
  overflow: hidden;
}

.proj-crew { padding: 60px 36px; border-top: 1px solid rgba(15,10,7,.1); }
.proj-crew-inner { max-width: 1600px; margin: 0 auto; display: flex; flex-direction: column; gap: 20px; }
.proj-crew-label { opacity: 0.5; }
.proj-crew-text { font-size: 14px; line-height: 1.8; color: var(--fiji-black); opacity: 0.6; font-family: var(--mono); letter-spacing: 0.04em; margin: 0; }
.proj-crew-key { opacity: 0.45; text-transform: uppercase; font-size: 11px; }

.proj-bts { padding: 80px 36px; border-top: 1px solid rgba(15,10,7,.1); }
.proj-bts-inner { max-width: 1600px; margin: 0 auto; }
.proj-bts-head {
  display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 40px;
}
.proj-bts-title { font-size: clamp(40px, 6vw, 90px); font-weight: 700; letter-spacing: -0.035em; line-height: 0.9; }
.proj-bts-title em { font-style: italic; font-weight: 300; color: var(--fiji-warm-beige-dark); }
.proj-bts-count { font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; opacity: 0.5; }
.proj-bts-grid {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  height: 480px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.proj-bts-grid::-webkit-scrollbar { display: none; }
.proj-bts-cell {
  flex: 0 0 auto;
  height: 100%;
  overflow: hidden;
  scroll-snap-align: start;
  cursor: pointer;
}
.proj-bts-cell img {
  height: 100%;
  width: auto;
  display: block;
  transition: transform 0.6s var(--ease);
}
.proj-bts-cell:hover img { transform: scale(1.03); }

/* Project nav bar */
.proj-nav { background: var(--fiji-black); color: var(--fiji-off-white); padding: 50px 36px; }
.proj-nav-inner {
  max-width: 1600px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 40px;
}
.proj-nav-prev { }
.proj-nav-prev-label, .proj-nav-next-label {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
  opacity: 0.4; margin-bottom: 8px;
}
.proj-nav-title {
  font-size: clamp(28px, 4vw, 56px); font-weight: 700; letter-spacing: -0.03em; line-height: 1;
  transition: color 0.2s;
}
.proj-nav-prev a:hover .proj-nav-title,
.proj-nav-next a:hover .proj-nav-title { color: var(--fiji-green); }
.proj-nav-prev a, .proj-nav-next a { text-decoration: none; color: inherit; }
.proj-nav-center { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 16px; }
.proj-nav-count { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; opacity: 0.4; }
.proj-nav-next { text-align: right; }

@media (max-width: 900px) {
  .proj-header { padding: 100px 20px 0; }
  .proj-title-row { grid-template-columns: 1fr; }
  .proj-video { margin: 0 20px; }
  .proj-content { padding: 50px 20px; }
  .proj-content-grid { grid-template-columns: 1fr; gap: 40px; }
  .proj-bts { padding: 50px 20px; }
  .proj-bts-grid { grid-template-columns: repeat(2,1fr); }
  .proj-bts-cell.wide { grid-column: span 2; }
  .proj-nav { padding: 40px 20px; }
  .proj-nav-inner { grid-template-columns: 1fr 1fr; grid-template-rows: auto auto; }
  .proj-nav-center { grid-column: span 2; order: -1; }
}

/* ── Placeholder thumbs ── */
.ph-thumb {
  position: absolute; inset: 0; display: flex; align-items: flex-end; padding: 22px;
  background-image: repeating-linear-gradient(135deg, rgba(255,255,255,.02) 0 20px, rgba(255,255,255,.05) 20px 40px);
  overflow: hidden;
}
.ph-thumb img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; z-index: 0; }
.ph-thumb-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0) 35%, rgba(0,0,0,.55) 100%); z-index: 1; }
.ph-thumb-label { position: relative; z-index: 2; font-family: var(--sans); font-weight: 700; font-size: clamp(28px,3vw,48px); line-height: 0.95; letter-spacing: -0.03em; color: #fff; text-shadow: 0 2px 20px rgba(0,0,0,.4); }

/* ── Page transitions ── */
.page-enter { animation: fade-up 0.55s var(--ease) both; }
@keyframes fade-up { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }

/* ── Responsive ── */
@media (max-width: 900px) {
  .nav-cluster { gap: 22px; }
  .nav .nav-link { font-size: 10px; }
  .hero-content { padding: 0 20px; }
  .home-work { padding: 80px 20px; }
  .home-work-head { grid-template-columns: 1fr; }
  .home-work-grid { grid-template-columns: 1fr; }
  .home-about { padding: 80px 20px; }
  .home-about-inner { grid-template-columns: 1fr; gap: 40px; padding: 0 20px; }
  .home-about-shape { width: 100%; margin-left: 0; }
  .home-contact { padding: 80px 20px; }
  .home-footer { padding: 60px 20px 30px; }
  .home-footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .home-footer-foot { flex-direction: column; gap: 8px; }
  .work-page { padding: 100px 20px 80px; }
  .work-head { grid-template-columns: 1fr; gap: 30px; }
  .work-grid { grid-template-columns: repeat(6,1fr); }
  .span-8, .span-7, .span-6, .span-5, .span-4, .span-12 { grid-column: span 6; }
  .about-hero { padding: 120px 20px 60px; }
  .about-manifesto { padding: 80px 20px; }
  .about-manifesto-inner { grid-template-columns: 1fr; gap: 30px; }
  .about-principles { padding: 80px 20px; }
  .about-team { padding: 80px 20px; }
  .clients-list { grid-template-columns: repeat(2,1fr); }
  .about-how-layout { grid-template-columns: 1fr; gap: 32px; }
  .contact-page { padding: 100px 20px 40px; }
  .contact-page-grid { grid-template-columns: 1fr; gap: 40px; }
  .field-row { grid-template-columns: 1fr; gap: 24px; }
}

/* ============================================================
   FIJI CAMP — workshop page
   Uses existing tokens. No new colors / fonts introduced.
   ============================================================ */

.camp-page { background: var(--fiji-black); color: var(--fiji-off-white); }

/* ---------- HERO ---------- */
.camp-hero {
  background: var(--fiji-black);
  color: var(--fiji-off-white);
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 160px 36px 100px;
  position: relative;
  overflow: hidden;
}
.camp-hero-inner {
  max-width: 1600px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.camp-hero-title {
  font-size: clamp(80px, 14vw, 220px);
  line-height: 0.86;
  font-weight: 800;
  letter-spacing: -0.04em;
  margin: 0;
  text-wrap: balance;
}
.camp-hero-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--fiji-warm-beige);
}
.camp-hero-sub {
  margin-top: 0;
  font-size: clamp(14px, 1.1vw, 18px);
  line-height: 1.35;
  color: var(--fiji-off-white);
  opacity: 0.75;
  white-space: nowrap;
}
.camp-hero-meta {
  margin-top: 0;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fiji-warm-beige);
  padding-top: 24px;
  border-top: 1px solid rgba(244,242,241,0.15);
}
.camp-hero-meta .dot {
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--fiji-green);
  transform: rotate(45deg);
}

/* ---------- INTRO ---------- */
.camp-intro {
  background: var(--fiji-off-white);
  color: var(--fiji-black);
  padding: 140px 36px;
}
.camp-intro-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.camp-intro-copy {
  font-size: clamp(26px, 3vw, 44px);
  line-height: 1.2;
  letter-spacing: -0.015em;
  text-wrap: pretty;
}
.camp-intro-copy em {
  font-style: normal;
  font-weight: 500;
  background: var(--fiji-green);
  color: var(--fiji-black);
  padding: 1px 8px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

/* ---------- TOPICS ---------- */
.camp-topics {
  background: var(--fiji-black);
  color: var(--fiji-off-white);
  padding: 140px 36px;
}
.camp-topics-inner {
  max-width: 1600px;
  margin: 0 auto;
}
.camp-topics-head {
  margin-bottom: 60px;
}
.camp-topics-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(244,242,241,0.12);
}
.camp-topic {
  background: var(--fiji-black);
  padding: 40px 36px;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
}
.camp-topic:hover {
  background: var(--fiji-green);
  color: var(--fiji-black);
}
.camp-topic-num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  opacity: 0.6;
}
.camp-topic-title {
  font-family: var(--sans);
  font-weight: 600;
  font-size: clamp(24px, 2vw, 32px);
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.camp-topic-body {
  font-size: 16px;
  line-height: 1.5;
  opacity: 0.8;
  max-width: 52ch;
}
.camp-topic:hover .camp-topic-body { opacity: 1; }

/* ---------- SPEAKERS ---------- */
.camp-speakers {
  background: var(--fiji-off-white);
  color: var(--fiji-black);
  padding: 140px 36px;
}
.camp-speakers-inner {
  max-width: 1600px;
  margin: 0 auto;
}
.camp-speakers-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px;
  margin-top: 60px;
}
.camp-speaker {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 36px;
  align-items: start;
}
.camp-speaker-avatar {
  aspect-ratio: 3 / 4;
  overflow: hidden;
}
.camp-speaker-info { padding-top: 6px; }
.camp-speaker-name {
  font-family: var(--sans);
  font-weight: 600;
  font-size: clamp(24px, 2vw, 32px);
  letter-spacing: -0.015em;
}
.camp-speaker-location {
  margin-top: 6px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.55;
}
.camp-speaker-role {
  margin-top: 18px;
  font-size: 15px;
  line-height: 1.55;
  opacity: 0.8;
  max-width: 38ch;
}

/* ---------- EVENT ---------- */
.camp-event {
  background: var(--fiji-black);
  color: var(--fiji-off-white);
  padding: 140px 36px;
}
.camp-event-inner {
  max-width: 1600px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 100px;
  align-items: start;
}
.camp-event-meta {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  max-width: 480px;
}
.camp-event-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(244,242,241,0.12);
}
.camp-event-val {
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.4;
}
.camp-schedule { padding-top: 0; }
.camp-schedule-list {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.camp-schedule-row {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 22px 0;
  border-bottom: 1px dashed rgba(244,242,241,0.18);
}
.camp-schedule-row:last-child { border-bottom: none; }
.camp-schedule-time {
  font-family: var(--mono);
  font-size: 14px;
  letter-spacing: 0.06em;
  color: var(--fiji-warm-beige);
}
.camp-schedule-line {
  height: 1px;
  background: rgba(244,242,241,0.18);
}
.camp-schedule-label {
  font-family: var(--sans);
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 500;
  letter-spacing: -0.01em;
  text-align: right;
}

/* ---------- SIGNUP & PRICE ---------- */
.camp-signup {
  background: var(--fiji-off-white);
  color: var(--fiji-black);
  padding: 140px 36px;
}
.camp-signup-inner {
  max-width: 1600px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 120px;
  align-items: start;
}
.camp-price-card {
  margin-top: 48px;
  padding: 36px;
  background: var(--fiji-black);
  color: var(--fiji-off-white);
  display: flex;
  flex-direction: column;
  gap: 22px;
  max-width: 520px;
}
.camp-price-row {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(244,242,241,0.12);
  align-items: end;
}
.camp-price-row:last-of-type { border-bottom: none; padding-bottom: 0; }
.camp-price-row .label { color: var(--fiji-warm-beige); opacity: 1; }
.camp-price-val {
  font-family: var(--sans);
  font-weight: 700;
  font-size: clamp(28px, 3vw, 44px);
  letter-spacing: -0.02em;
  line-height: 1;
}
.camp-price-currency {
  font-size: 0.5em;
  font-weight: 400;
  color: var(--fiji-warm-beige);
  letter-spacing: 0.06em;
  margin-left: 4px;
}
.camp-price-note {
  margin-top: 6px;
  font-size: 14px;
  line-height: 1.5;
  opacity: 0.75;
}
.camp-price-note em {
  font-style: normal;
  font-weight: 600;
  background: var(--fiji-green);
  color: var(--fiji-black);
  padding: 0 6px;
}

/* Camp form — reuses contact field styles but on light bg */
.camp-form {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.camp-form .field label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.6;
}
.camp-form .field input,
.camp-form .field textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(15,10,7,0.25);
  color: var(--fiji-black);
  font-family: var(--sans);
  font-size: 18px;
  padding: 10px 0 12px;
  outline: none;
  transition: border-color 0.25s;
  width: 100%;
}
.camp-form .field input::placeholder,
.camp-form .field textarea::placeholder { color: rgba(15,10,7,0.4); }
.camp-form .field input:focus,
.camp-form .field textarea:focus { border-bottom-color: var(--fiji-black); }
.camp-form .field textarea { resize: vertical; min-height: 100px; }
.camp-form .field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.camp-form .submit-btn {
  background: var(--fiji-black);
  color: var(--fiji-off-white);
  border: 1px solid var(--fiji-black);
  align-self: flex-start;
  padding: 18px 28px;
  margin-top: 12px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  transition: background 0.25s, color 0.25s, transform 0.25s;
}
.camp-form .submit-btn:hover {
  background: var(--fiji-green);
  color: var(--fiji-black);
  border-color: var(--fiji-green);
  transform: translateY(-2px);
}
.camp-form .submit-btn.sent {
  background: var(--fiji-green);
  color: var(--fiji-black);
  border-color: var(--fiji-green);
}

/* ---------- FAQ ---------- */
.camp-faq {
  background: var(--fiji-black);
  color: var(--fiji-off-white);
  padding: 140px 36px;
}
.camp-faq-inner {
  max-width: 1600px;
  margin: 0 auto;
}
.camp-faq-list {
  list-style: none;
  margin: 60px 0 0;
  padding: 0;
  border-top: 1px solid rgba(244,242,241,0.18);
}
.camp-faq-item {
  border-bottom: 1px solid rgba(244,242,241,0.18);
}
.camp-faq-q {
  width: 100%;
  background: none;
  border: 0;
  color: var(--fiji-off-white);
  font-family: var(--sans);
  font-weight: 500;
  font-size: clamp(20px, 2vw, 28px);
  letter-spacing: -0.015em;
  text-align: left;
  cursor: pointer;
  padding: 32px 0;
  display: grid;
  grid-template-columns: 64px 1fr 32px;
  gap: 20px;
  align-items: center;
  transition: color 0.25s;
}
.camp-faq-q:hover { color: var(--fiji-green); }
.camp-faq-num {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--fiji-warm-beige);
}
.camp-faq-text { line-height: 1.25; }
.camp-faq-icon {
  display: inline-flex;
  justify-content: flex-end;
  transition: transform 0.3s var(--ease);
}
.camp-faq-item.open .camp-faq-icon { transform: rotate(45deg); color: var(--fiji-green); }

.camp-faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s var(--ease);
}
.camp-faq-item.open .camp-faq-a {
  grid-template-rows: 1fr;
}
.camp-faq-a > p {
  overflow: hidden;
  font-size: 16px;
  line-height: 1.6;
  opacity: 0.8;
  max-width: 120ch;
  padding-left: 84px;
  padding-bottom: 0;
  margin: 0;
}
.camp-faq-item.open .camp-faq-a > p {
  padding-bottom: 32px;
}

/* ---------- CAMP page-level footer ---------- */
.camp-foot {
  background: var(--fiji-black);
  color: var(--fiji-off-white);
  border-top: 1px solid rgba(244,242,241,0.12);
  padding: 80px 36px;
}
.camp-foot-inner {
  max-width: 1600px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  align-items: end;
}
.camp-foot-mark {
  font-family: var(--sans);
  font-weight: 800;
  font-size: clamp(32px, 4vw, 56px);
  letter-spacing: -0.03em;
  line-height: 1;
}
.camp-foot-mark em {
  font-style: italic;
  font-weight: 300;
  color: var(--fiji-warm-beige);
}
.camp-foot-info {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  line-height: 1.7;
  color: var(--fiji-warm-beige);
  text-align: center;
}
.camp-foot-copy {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.55;
  text-align: right;
}

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .camp-event-inner { grid-template-columns: 1fr; gap: 60px; }
  .camp-signup-inner { grid-template-columns: 1fr; gap: 60px; }
  .camp-topics-grid { grid-template-columns: 1fr; }
  .camp-speakers-grid { grid-template-columns: 1fr; }
  .camp-foot-inner { grid-template-columns: 1fr; text-align: left; }
  .camp-foot-info, .camp-foot-copy { text-align: left; }
}
@media (max-width: 700px) {
  .camp-hero { padding: 140px 20px 80px; }
  .camp-intro, .camp-topics, .camp-speakers, .camp-event, .camp-signup, .camp-faq { padding: 80px 20px; }
  .camp-topic { padding: 28px 22px; }
  .camp-speaker { grid-template-columns: 1fr; gap: 18px; }
  .camp-speaker-avatar { max-width: 220px; }
  .camp-form .field-row { grid-template-columns: 1fr; gap: 24px; }
  .camp-faq-q { grid-template-columns: 32px 1fr 24px; padding: 22px 0; gap: 12px; }
  .camp-faq-a > p { padding-left: 44px; }
  .camp-foot { padding: 60px 20px; }
}

/* ============================================================
   CAMP — corrections (hero photo bg, inline title, subtle price)
   ============================================================ */

/* HERO with photo background */
.camp-hero-photo {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.camp-hero-photo .camp-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}
/* Dark overlay — matches the hero gradient used over the home video */
.camp-hero-photo .camp-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15,10,7,0.55) 0%, rgba(15,10,7,0.25) 40%, rgba(15,10,7,0.7) 100%);
  z-index: 1;
}
.camp-hero-photo .camp-hero-inner {
  position: relative;
  z-index: 2;
}

/* Inline title: FIJI white + CAMP green, single line */
.camp-hero-title-inline {
  display: flex;
  flex-wrap: nowrap;
  align-items: baseline;
  gap: 0.25em;
  font-size: clamp(56px, 8vw, 120px);
  line-height: 0.9;
}
.camp-hero-title-inline .camp-hero-fiji {
  color: var(--fiji-off-white);
  font-weight: 800;
}
.camp-hero-title-inline .camp-hero-camp {
  color: var(--fiji-green);
  font-style: italic;
  font-weight: 500;
}

/* Venue link — subtle underline, brand-accent hover */
.camp-venue-link {
  color: inherit;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  text-decoration-color: rgba(255,255,255,0.35);
  transition: color 0.2s, text-decoration-color 0.2s;
}
.camp-venue-link:hover {
  color: var(--fiji-green);
  text-decoration-color: var(--fiji-green);
}
/* When inside the light Event section override decoration color */
.camp-event .camp-venue-link { text-decoration-color: rgba(244,242,241,0.35); }

/* Speaker Instagram link — pill button under the bio */
.camp-speaker-ig {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
  padding: 10px 16px;
  border: 1px solid rgba(15,10,7,0.22);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fiji-black);
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}
.camp-speaker-ig:hover {
  background: var(--fiji-black);
  color: var(--fiji-off-white);
  border-color: var(--fiji-black);
}
.camp-speaker-ig svg { display: block; }

/* Subtle price list — no dark box, premium */
.camp-price-list {
  margin: 48px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 520px;
  border-top: 1px solid rgba(15,10,7,0.15);
}
.camp-price-line {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 24px;
  align-items: baseline;
  padding: 22px 0;
  border-bottom: 1px solid rgba(15,10,7,0.15);
}
.camp-price-line .label { opacity: 0.55; }
.camp-price-line-val {
  margin: 0;
  font-family: var(--sans);
  font-weight: 500;
  font-size: clamp(22px, 1.9vw, 28px);
  letter-spacing: -0.015em;
  color: var(--fiji-black);
}
.camp-price-line-currency {
  font-family: var(--mono);
  font-size: 0.55em;
  font-weight: 400;
  letter-spacing: 0.16em;
  color: var(--fiji-warm-beige-dark);
  margin-left: 4px;
}
.camp-price-fine {
  margin-top: 22px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--fiji-black);
  opacity: 0.7;
  max-width: 520px;
}
.camp-price-fine em {
  font-style: normal;
  font-weight: 600;
  background: var(--fiji-green);
  color: var(--fiji-black);
  padding: 0 6px;
}

@media (max-width: 700px) {
  .camp-price-line { grid-template-columns: 80px 1fr; gap: 16px; padding: 16px 0; }
  .camp-hero-title-inline { font-size: clamp(56px, 16vw, 120px); }
}

/* ============================================================
   CAMP — round 3: no beige, video hero, 2-col intro, reveals
   Scoped to .camp-page so the rest of the site is untouched.
   ============================================================ */

/* Override every warm-beige use on the CAMP page → green */
.camp-page .section-title em,
.camp-page .section-title-dark em,
.camp-page .camp-hero-title em,
.camp-page .camp-hero-meta,
.camp-page .camp-schedule-time,
.camp-page .camp-faq-num {
  color: var(--fiji-green);
}
.camp-page .camp-hero-meta { color: var(--fiji-green); }

/* HERO video bg replaces the static image */
.camp-hero-yt-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: var(--fiji-black);
  pointer-events: none;
}
.camp-hero-bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 177.78vh;
  height: 100vh;
  min-width: 100vw;
  min-height: 56.25vw;
  transform: translate(-50%, -50%);
  border: 0;
  pointer-events: none;
}

/* Intro section: 2-column layout — text left, photo right */
.camp-intro-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
  max-width: 1600px;
}
.camp-intro-2col .camp-intro-text { max-width: 560px; }
.camp-intro-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.camp-intro-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Speaker photo */
.camp-speaker-photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: grayscale(100%);
}
.camp-speaker-avatar {
  position: relative;
  background: var(--fiji-grey);
  overflow: hidden;
}

/* Entrance animations: fade + slight upward translate, staggered by delay-N */
.camp-page [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease), transform 0.9s var(--ease);
  will-change: opacity, transform;
}
.camp-page [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}
.camp-page [data-reveal="delay-1"] { transition-delay: 0.08s; }
.camp-page [data-reveal="delay-2"] { transition-delay: 0.16s; }
.camp-page [data-reveal="delay-3"] { transition-delay: 0.24s; }

/* Reduce motion: honour user preference */
@media (prefers-reduced-motion: reduce) {
  .camp-page [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Responsive */
@media (max-width: 900px) {
  .camp-intro-2col {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .camp-intro-photo { aspect-ratio: 4 / 3; }
}

/* ============================================================
   CAMP — round 4: white hero title, bold subline, premium cards,
   FAQ fix, event photo bg, scoped to .camp-page
   ============================================================ */

/* ---------- HERO ---------- */
.camp-page .camp-hero-kicker {
  color: var(--fiji-off-white);
  opacity: 1;
}
.camp-page .camp-hero-title-inline {
  font-weight: 800;
  letter-spacing: -0.04em;
}
.camp-page .camp-hero-title-inline .camp-hero-fiji,
.camp-page .camp-hero-title-inline .camp-hero-camp {
  color: var(--fiji-off-white);
  font-style: normal;
  font-weight: 800;
}
.camp-page .camp-hero-title-inline .camp-hero-dot {
  color: var(--fiji-green);
}
/* Hero meta in white (plain text, no link) */
.camp-page .camp-hero-meta {
  color: var(--fiji-off-white);
  opacity: 0.9;
}

/* ---------- SECTION TITLES: bold variant ---------- */
/* Default site keeps italic-thin "em" for visual rhythm; on CAMP we want
   the second line to match the first (bold, no italic, no accent color). */
.camp-page .section-title-bold em,
.camp-page .section-title-bold.section-title-dark em {
  font-style: normal;
  font-weight: 800;
  color: inherit;
}
/* White variant for the event-photo section */
.camp-page .section-title-white {
  color: var(--fiji-off-white);
}
.camp-page .section-title-white em {
  color: var(--fiji-off-white);
}

/* ---------- INTRO: reduce overall type sizes ---------- */
.camp-page .camp-intro-copy {
  font-size: clamp(18px, 1.6vw, 24px);
  line-height: 1.45;
  letter-spacing: -0.005em;
}

/* ---------- SPEAKERS: photos +30% ---------- */
.camp-page .camp-speaker {
  grid-template-columns: 286px 1fr;
  gap: 44px;
}
@media (max-width: 700px) {
  .camp-page .camp-speaker {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .camp-page .camp-speaker-avatar { max-width: 286px; }
}

/* ---------- SCHEDULE: remove the middle dashed line ---------- */
.camp-page .camp-schedule-row {
  grid-template-columns: 80px 1fr;
  gap: 24px;
  align-items: center;
  border-bottom: 1px dashed rgba(244,242,241,0.22);
}
.camp-page .camp-schedule-row .camp-schedule-line { display: none; }
.camp-page .camp-schedule-label {
  text-align: left;
}

/* ---------- PRICE: light-gray cards instead of list ---------- */
.camp-page .camp-price-list { display: none; }
.camp-page .camp-price-cards {
  margin: 48px 0 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 640px;
}
@media (max-width: 700px) {
  .camp-page .camp-price-cards { grid-template-columns: 1fr; }
}
.camp-page .camp-price-card {
  background: var(--fiji-grey);
  color: var(--fiji-black);
  padding: 22px 22px 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 130px;
  justify-content: space-between;
}
.camp-page .camp-price-card .label {
  color: var(--fiji-black);
  opacity: 0.55;
}
.camp-page .camp-price-card-val {
  font-family: var(--sans);
  font-weight: 500;
  font-size: clamp(20px, 1.7vw, 26px);
  letter-spacing: -0.015em;
  line-height: 1.1;
  color: var(--fiji-black);
}
.camp-page .camp-price-line-currency {
  font-family: var(--mono);
  font-size: 0.5em;
  font-weight: 400;
  letter-spacing: 0.16em;
  color: var(--fiji-warm-beige-dark);
  margin-left: 4px;
}
.camp-page .camp-price-fine {
  margin-top: 26px;
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.75;
}

/* ---------- FAQ: fix vanishing content bug ----------
   The previous animation used grid-template-rows from 0fr→1fr with
   overflow:hidden on a <p> with default margins. On some renderers the
   <p>'s vertical margins escape the grid track and the rendered height
   stays 0. Replace with max-height transition which is robust. */
.camp-page .camp-faq-a {
  display: block;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s var(--ease);
}
.camp-page .camp-faq-item.open .camp-faq-a {
  max-height: 600px; /* enough headroom for short answers */
}
.camp-page .camp-faq-a > p {
  font-size: 16px;
  line-height: 1.6;
  opacity: 0.8;
  max-width: 120ch;
  padding-left: 84px;
  padding-top: 0;
  padding-bottom: 32px;
  margin: 0;
}
@media (max-width: 700px) {
  .camp-page .camp-faq-a > p { padding-left: 44px; }
}

/* ---------- EVENT SECTION with photo background ---------- */
.camp-event-photo {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.camp-event-photo .camp-event-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}
.camp-event-photo .camp-event-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15,10,7,0.78) 0%, rgba(15,10,7,0.7) 50%, rgba(15,10,7,0.82) 100%);
  z-index: 1;
}
.camp-event-photo .camp-event-inner {
  position: relative;
  z-index: 2;
}
/* All event text in white, no green accents */
.camp-page .camp-event-photo .camp-event-kicker {
  color: var(--fiji-off-white);
  opacity: 0.85;
}
.camp-page .camp-event-photo .camp-event-row .label {
  color: var(--fiji-off-white);
  opacity: 0.7;
}
.camp-page .camp-event-photo .camp-event-val,
.camp-page .camp-event-photo .camp-venue-link {
  color: var(--fiji-off-white);
}
.camp-page .camp-event-photo .camp-schedule-time {
  color: var(--fiji-off-white);
  opacity: 0.85;
}
.camp-page .camp-event-photo .camp-schedule-label {
  color: var(--fiji-off-white);
}
.camp-page .camp-event-photo .camp-schedule-row {
  border-bottom: 1px dashed rgba(244,242,241,0.28);
}
.camp-page .camp-event-photo .camp-event-row {
  border-bottom: 1px solid rgba(244,242,241,0.2);
}
.camp-page .camp-event-photo .camp-venue-link:hover {
  color: var(--fiji-off-white);
  text-decoration-color: var(--fiji-off-white);
}

/* ---------- Rounded photo corners ---------- */
.camp-page .camp-intro-photo,
.camp-page .camp-intro-photo img,
.camp-page .camp-speaker-avatar,
.camp-page .camp-speaker-photo {
  border-radius: 18px;
}
.camp-page .camp-intro-photo,
.camp-page .camp-speaker-avatar {
  overflow: hidden;
}

/* ---------- Speakers: extra breathing room under heading ---------- */
.camp-page .camp-speakers-grid {
  margin-top: 110px;
}
@media (max-width: 900px) {
  .camp-page .camp-speakers-grid { margin-top: 72px; }
}

/* ---------- Form intro copy ---------- */
.camp-form-intro {
  margin: 0 0 12px;
  font-size: 16px;
  line-height: 1.5;
  color: var(--fiji-black);
  opacity: 0.75;
  max-width: 48ch;
}
