:root {
--bg: #f7f4ee;
--bg2: #efebe2;
--ink: #0f1a14;
--forest: #1c3d2b;
--forest2: #264d38;
--gold: #d4922b;
--gold2: #f2b84b;
--red: #c93028;
--cream: #fbf8f2;
--mid: #8a7f72;
--f-head: "Syne", sans-serif;
--f-serif: "Playfair Display", serif;
--f-body: "DM Sans", sans-serif;
/* Responsive spacing scale */
--pad-x: clamp(1.25rem, 4vw, 5rem);
--section-y: clamp(4rem, 8vw, 9rem);
--max-w: min(1200px, 90vw);
--max-w-wide: min(1600px, 92vw);
}
*,
*::before,
*::after {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html {
scroll-behavior: smooth;
}
body {
background: var(--bg);
color: var(--ink);
font-family: var(--f-body);
overflow-x: hidden;
}

/* ── NAV ── */
nav {
position: fixed;
top: 0;
left: 0;
right: 0;
z-index: 200;
padding: 1.5rem var(--pad-x);
display: flex;
align-items: center;
justify-content: space-between;
transition: all 0.35s;
}
nav.up {
  background-image: 
    linear-gradient(rgba(28, 61, 43, 0.88), rgba(28, 61, 43, 0.88)),
    url("media/background/header.png");
  background-repeat: repeat;
  padding: 1rem var(--pad-x);
  box-shadow: 0 1px 0 rgba(212, 146, 43, 0.35), 0 4px 24px rgba(0, 0, 0, 0.4);
}
.n-logo {
font-family: var(--f-head);
font-weight: 800;
font-size: clamp(0.9rem, 1.8vw, 1.15rem);
color: #fff;
text-decoration: none;
letter-spacing: -0.01em;
display: flex;
align-items: center;
gap: 0.5rem;
flex-shrink: 0;
}
.n-dot {
width: 8px;
height: 8px;
background: var(--gold2);
border-radius: 50%;
display: inline-block;
flex-shrink: 0;
}
.n-links {
display: flex;
align-items: center;
gap: 0.25rem;
list-style: none;
}
.n-links a {
color: rgba(255, 255, 255, 0.65);
text-decoration: none;
font-size: clamp(0.65rem, 0.9vw, 0.75rem);
font-weight: 500;
letter-spacing: 0.1em;
text-transform: uppercase;
padding: 0.45rem 0.9rem;
border-radius: 100px;
transition: all 0.2s;
white-space: nowrap;
}
.n-links a:hover {
color: #fff;
background: rgba(255, 255, 255, 0.1);
}
.n-pill a {
background: var(--gold) !important;
color: var(--forest) !important;
font-weight: 700 !important;
opacity: 1 !important;
}
.n-pill a:hover {
background: var(--gold2) !important;
}
/* Hamburger */
.n-burger {
display: none;
flex-direction: column;
gap: 5px;
background: none;
border: none;
cursor: pointer;
padding: 0.4rem;
z-index: 201;
}
.n-burger span {
display: block;
width: 24px;
height: 2px;
background: #fff;
border-radius: 2px;
transition: all 0.5s ease; 
}
.n-burger.open span:nth-child(1) {
transform: translateY(7px) rotate(45deg);
}
.n-burger.open span:nth-child(2) {
opacity: 0;
}
.n-burger.open span:nth-child(3) {
transform: translateY(-7px) rotate(-45deg);
}
.n-drawer {
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--forest);
  z-index: 199;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity 0.5s ease, transform 0.5s ease, visibility 0.5s;
}

.n-drawer.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.n-drawer a {
color: rgba(255, 255, 255, 0.8);
text-decoration: none;
font-family: var(--f-head);
font-size: clamp(1.4rem, 5vw, 2rem);
font-weight: 800;
letter-spacing: 0.05em;
text-transform: uppercase;
transition: color 0.2s;
}
.n-drawer a:hover {
color: var(--gold2);
}
.n-drawer .drawer-cta {
background: var(--gold);
color: var(--forest);
padding: 0.7rem 2rem;
border-radius: 4px;
margin-top: 0.5rem;
}

/* ── HERO ── */
#hero {
min-height: 100svh;
background: var(--forest);
display: grid;
grid-template-rows: 1fr auto;
overflow: hidden;
position: relative;
}
.hero-bg {
position: absolute;
inset: 0;
overflow: hidden;
}
.hero-circle {
position: absolute;
border-radius: 50%;
opacity: 0.06;
}
.hc1 {
width: clamp(400px, 55vw, 900px);
height: clamp(400px, 55vw, 900px);
background: #fff;
right: -12%;
top: -15%;
}
.hc2 {
width: clamp(250px, 32vw, 500px);
height: clamp(250px, 32vw, 500px);
background: var(--gold2);
left: -6%;
bottom: -10%;
}
.hc3 {
width: clamp(100px, 14vw, 220px);
height: clamp(100px, 14vw, 220px);
background: var(--gold2);
right: 18%;
top: 28%;
opacity: 0.12;
}
.hero-content {
position: relative;
z-index: 1;
padding: clamp(7rem, 14vh, 12rem) var(--pad-x) 4rem;
max-width: var(--max-w-wide);
margin: 0 auto;
width: 100%;
}
.h-eyebrow {
display: inline-flex;
align-items: center;
gap: 0.55rem;
background: rgba(212, 146, 43, 0.18);
border: 1px solid rgba(212, 146, 43, 0.35);
color: var(--gold2);
font-size: clamp(0.58rem, 0.7vw, 0.68rem);
font-weight: 600;
letter-spacing: 0.22em;
text-transform: uppercase;
padding: 0.4rem 1rem;
border-radius: 100px;
margin-bottom: clamp(1.5rem, 3vh, 2.2rem);
animation: fadeUp 0.7s ease both;
}
.h-eyebrow-dot {
width: 5px;
height: 5px;
background: var(--gold2);
border-radius: 50%;
flex-shrink: 0;
}
.hero-title {
font-family: var(--f-head);
font-weight: 800;
line-height: 0.88;
margin-bottom: clamp(1.5rem, 3vh, 2rem);
animation: fadeUp 0.7s 0.15s ease both;
}
.ht-small {
display: block;
font-size: clamp(0.9rem, 2.5vw, 1.9rem);
color: rgba(255, 255, 255, 0.35);
letter-spacing: 0.3em;
text-transform: uppercase;
font-weight: 500;
margin-bottom: 0.6rem;
}
.ht-big {
  display: block;
  font-size: clamp(2.8rem, 13vw, 7.5rem);
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 0.9;
}
.ht-accent {
color: var(--gold2);
}
.hero-desc {
max-width: min(520px, 85vw);
color: rgba(255, 255, 255, 0.5);
font-size: clamp(0.88rem, 1.2vw, 1rem);
line-height: 1.75;
font-weight: 300;
margin-bottom: clamp(1.75rem, 3vh, 2.5rem);
animation: fadeUp 0.7s 0.3s ease both;
}
.hero-btns {
display: flex;
gap: 0.75rem;
flex-wrap: wrap;
animation: fadeUp 0.7s 0.45s ease both;
}
.btn {
display: inline-flex;
align-items: center;
gap: 0.5rem;
padding: clamp(0.75rem, 0.9vw, 0.9rem) clamp(1.25rem, 1.8vw, 2rem);
font-family: var(--f-head);
font-size: clamp(0.7rem, 0.85vw, 0.82rem);
font-weight: 700;
letter-spacing: 0.08em;
text-transform: uppercase;
text-decoration: none;
border: none;
cursor: pointer;
border-radius: 4px;
transition: all 0.25s;
}
.btn-gold {
background: var(--gold);
color: var(--forest);
}
.btn-gold:hover {
background: var(--gold2);
transform: translateY(-2px);
box-shadow: 0 10px 30px rgba(212, 146, 43, 0.4);
}
.btn-ghost {
background: transparent;
color: #fff;
border: 1.5px solid rgba(255, 255, 255, 0.25);
}
.btn-ghost:hover {
border-color: rgba(255, 255, 255, 0.6);
background: rgba(255, 255, 255, 0.07);
}
.hero-foot {
position: relative;
z-index: 1;
padding: 1.75rem var(--pad-x);
max-width: var(--max-w-wide);
margin: 0 auto;
width: 100%;
display: flex;
align-items: center;
justify-content: space-between;
border-top: 1px solid rgba(255, 255, 255, 0.08);
flex-wrap: wrap;
gap: 1rem;
}
.hero-stats {
display: flex;
gap: clamp(1.5rem, 4vw, 3.5rem);
flex-wrap: wrap;
}
.hstat-n {
font-family: var(--f-head);
font-size: clamp(1.1rem, 2vw, 1.55rem);
font-weight: 800;
color: #fff;
line-height: 1;
}
.hstat-l {
font-size: clamp(0.55rem, 0.7vw, 0.63rem);
font-weight: 500;
letter-spacing: 0.15em;
text-transform: uppercase;
color: rgba(255, 255, 255, 0.3);
margin-top: 0.2rem;
}
.hero-scroll-hint {
display: flex;
align-items: center;
gap: 0.6rem;
color: rgba(255, 255, 255, 0.25);
font-size: 0.65rem;
letter-spacing: 0.18em;
text-transform: uppercase;
}
.scroll-bar {
width: 28px;
height: 1.5px;
background: rgba(255, 255, 255, 0.2);
position: relative;
overflow: hidden;
}
.scroll-bar::after {
content: "";
position: absolute;
top: 0;
left: 0;
width: 50%;
height: 100%;
background: var(--gold2);
animation: scrollAnim 2s ease infinite;
}

/* ── MARQUEE ── */
.marquee-wrap {
background: var(--gold);
padding: 0.65rem 0;
overflow: hidden;
white-space: nowrap;
}
.marquee-inner {
display: inline-flex;
animation: marquee 22s linear infinite;
gap: 0;
}
.marquee-item {
font-family: var(--f-head);
font-size: clamp(0.6rem, 0.75vw, 0.72rem);
font-weight: 700;
letter-spacing: 0.22em;
text-transform: uppercase;
color: var(--forest);
padding: 0 2.5rem;
}
.marquee-sep {
color: var(--forest);
opacity: 0.35;
}

/* ── ABOUT ── */
#about {
padding: var(--section-y) var(--pad-x);
background: var(--bg);
}
.about-wrap {
max-width: var(--max-w);
margin: 0 auto;
display: grid;
grid-template-columns: 1fr 1fr;
gap: clamp(3rem, 6vw, 7rem);
align-items: center;
}
.lbl {
display: inline-flex;
align-items: center;
gap: 0.6rem;
font-size: clamp(0.58rem, 0.75vw, 0.65rem);
font-weight: 700;
letter-spacing: 0.26em;
text-transform: uppercase;
color: var(--gold);
margin-bottom: 1.2rem;
}
.lbl::after {
content: "";
display: block;
width: 28px;
height: 1.5px;
background: var(--gold);
}
.about-h {
font-family: var(--f-head);
font-weight: 800;
font-size: clamp(1.8rem, 3.5vw, 3.5rem);
line-height: 1.02;
color: var(--ink);
margin-bottom: 1.4rem;
}
.about-h em {
font-family: var(--f-serif);
font-style: italic;
color: var(--red);
font-weight: 400;
}
.about-p {
font-size: clamp(0.85rem, 1.1vw, 0.95rem);
line-height: 1.85;
color: var(--mid);
font-weight: 300;
margin-bottom: 1rem;
}
.about-pills {
display: flex;
flex-wrap: wrap;
gap: 0.5rem;
margin-top: 1.75rem;
}
.pill {
background: var(--forest);
color: rgba(255, 255, 255, 0.8);
font-family: var(--f-head);
font-size: clamp(0.6rem, 0.75vw, 0.68rem);
font-weight: 600;
letter-spacing: 0.1em;
text-transform: uppercase;
padding: 0.45rem 1rem;
border-radius: 2px;
}
.pill.gold {
background: var(--gold);
color: var(--forest);
}
.pill.red {
background: var(--red);
color: #fff;
}
.about-vis {
position: relative;
}
.av-card {
background: var(--forest);
padding: clamp(2rem, 3.5vw, 3rem) clamp(1.5rem, 3vw, 2.5rem);
position: relative;
overflow: hidden;
}
.av-card::before {
content: "";
position: absolute;
top: -60px;
right: -60px;
width: 220px;
height: 220px;
border-radius: 50%;
background: rgba(212, 146, 43, 0.12);
}
.av-card::after {
content: "";
position: absolute;
bottom: 0;
left: 0;
right: 0;
height: 4px;
background: linear-gradient(
    90deg,
    var(--gold),
    var(--gold2),
    var(--red)
);
}
.av-quote {
font-family: var(--f-serif);
font-style: italic;
font-size: clamp(1.1rem, 1.8vw, 1.45rem);
color: rgba(255, 255, 255, 0.85);
line-height: 1.45;
position: relative;
z-index: 1;
margin-bottom: 1.5rem;
}
.av-quote::before {
content: "\201C";
font-size: 4rem;
color: var(--gold);
line-height: 0.5;
display: block;
margin-bottom: 0.75rem;
opacity: 0.6;
}
.av-attr {
font-size: 0.68rem;
font-weight: 600;
letter-spacing: 0.16em;
text-transform: uppercase;
color: rgba(255, 255, 255, 0.3);
position: relative;
z-index: 1;
}
.av-badges {
display: grid;
grid-template-columns: 1fr 1fr 1fr;
gap: 1px;
background: rgba(255, 255, 255, 0.08);
margin-top: 1.5rem;
position: relative;
z-index: 1;
}
.av-b {
background: var(--forest2);
padding: 1.25rem 1rem;
text-align: center;
}
.av-b-n {
font-family: var(--f-head);
font-size: clamp(1.1rem, 1.8vw, 1.5rem);
font-weight: 800;
color: var(--gold2);
line-height: 1;
}
.av-b-l {
font-size: 0.6rem;
font-weight: 500;
letter-spacing: 0.12em;
text-transform: uppercase;
color: rgba(255, 255, 255, 0.3);
margin-top: 0.25rem;
}

/* ── RECAP ── */
#recap {
background: var(--ink);
padding: var(--section-y) var(--pad-x);
position: relative;
overflow: hidden;
}
.recap-grid-bg {
position: absolute;
inset: 0;
background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
background-size: 60px 60px;
}
.recap-inner {
max-width: var(--max-w);
margin: 0 auto;
position: relative;
z-index: 1;
}
.recap-top {
display: flex;
align-items: flex-end;
justify-content: space-between;
gap: 2rem;
margin-bottom: 3.5rem;
flex-wrap: wrap;
}
.recap-h {
font-family: var(--f-head);
font-weight: 800;
  font-size: clamp(2.5rem, 5vw, 5rem);
color: #fff;
line-height: 0.95;
}
.recap-h span {
display: block;
font-size: 0.32em;
letter-spacing: 0.3em;
text-transform: uppercase;
font-weight: 500;
color: rgba(255, 255, 255, 0.25);
margin-bottom: 0.5rem;
}
.recap-note {
max-width: 240px;
font-size: clamp(0.75rem, 0.9vw, 0.82rem);
color: rgba(255, 255, 255, 0.3);
line-height: 1.7;
}
.photo-mosaic {
display: grid;
grid-template-columns: repeat(12, 1fr);
grid-template-rows: clamp(140px, 18vw, 220px) clamp(140px, 18vw, 220px);
gap: 6px;
}
.pm-cell {
position: relative;
overflow: hidden;
cursor: pointer;
}
.pm-cell:hover .pm-inner {
transform: scale(1.06);
}
.pm-cell::after {
content: attr(data-l);
position: absolute;
inset: 0;
display: flex;
align-items: flex-end;
padding: 0.8rem;
background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.65) 0%,
    transparent 60%
);
font-size: 0.65rem;
font-weight: 700;
letter-spacing: 0.12em;
text-transform: uppercase;
color: rgba(255, 255, 255, 0.7);
opacity: 0;
transition: opacity 0.25s;
}
.pm-cell:hover::after {
opacity: 1;
}
.pm-inner {
width: 100%;
height: 100%;
display: flex;
align-items: center;
justify-content: center;
transition: transform 0.45s ease;
flex-direction: column;
gap: 0.4rem;
font-size: 0.62rem;
font-weight: 600;
letter-spacing: 0.1em;
text-transform: uppercase;
color: rgba(255, 255, 255, 0.25);
}
.pm-icon {
font-size: 1.4rem;
opacity: 0.3;
}
.p1 {
grid-column: span 5;
}
.p2 {
grid-column: span 4;
}
.p3 {
grid-column: span 3;
}
.p4 {
grid-column: span 3;
}
.p5 {
grid-column: span 5;
}
.p6 {
grid-column: span 4;
}
.p1-bg {
background: #1e3d2a;
}
.p2-bg {
background: #3a1212;
}
.p3-bg {
background: #1a2e3a;
}
.p4-bg {
background: #2e1a3a;
}
.p5-bg {
background: #1e3010;
}
.p6-bg {
background: #2e2208;
}
.photo-hint {
text-align: center;
margin-top: 1.2rem;
font-size: 0.7rem;
color: rgba(255, 255, 255, 0.15);
font-style: italic;
}

/* ── COUNTDOWN ── */
#countdown {
background: var(--red);
padding: clamp(3rem, 6vw, 5rem) var(--pad-x);
text-align: center;
position: relative;
overflow: hidden;
}
#countdown::before {
content: "COMING SOON · JOURNEY TO MALAYSIA 2026 · COMING SOON · JOURNEY TO MALAYSIA 2026 · COMING SOON · JOURNEY TO MALAYSIA 2026 · ";
position: absolute;
top: 0.6rem;
left: 0;
right: 0;
font-family: var(--f-head);
font-size: 0.62rem;
font-weight: 700;
letter-spacing: 0.2em;
color: rgba(255, 255, 255, 0.12);
white-space: nowrap;
overflow: hidden;
}
.cd-label {
font-size: 0.65rem;
font-weight: 700;
letter-spacing: 0.28em;
text-transform: uppercase;
color: rgba(255, 255, 255, 0.5);
margin-bottom: 1rem;
}
.cd-head {
font-family: var(--f-head);
font-weight: 800;
font-size: clamp(1.8rem, 5vw, 3.8rem);
color: #fff;
line-height: 1;
margin-bottom: 0.6rem;
}
.cd-sub {
font-family: var(--f-serif);
font-style: italic;
font-size: clamp(0.95rem, 1.4vw, 1.1rem);
color: rgba(255, 255, 255, 0.6);
margin-bottom: 2.5rem;
}
.cd-units {
display: inline-flex;
gap: 0.6rem;
margin-bottom: 2.75rem;
flex-wrap: wrap;
justify-content: center;
}
.cd-unit {
background: rgba(0, 0, 0, 0.2);
border: 1px solid rgba(255, 255, 255, 0.15);
padding: clamp(0.7rem, 0.9vw, 0.9rem) clamp(0.9rem, 1.2vw, 1.2rem);
min-width: clamp(70px, 8vw, 90px);
text-align: center;
border-radius: 4px;
}
.cd-n {
font-family: var(--f-head);
font-size: clamp(1.8rem, 3vw, 2.4rem);
font-weight: 800;
color: #fff;
display: block;
line-height: 1;
}
.cd-l {
font-size: 0.55rem;
font-weight: 700;
letter-spacing: 0.18em;
text-transform: uppercase;
color: rgba(255, 255, 255, 0.4);
display: block;
margin-top: 0.25rem;
}
.btn-white {
background: #fff;
color: var(--red);
}
.btn-white:hover {
background: rgba(255, 255, 255, 0.9);
transform: translateY(-2px);
box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* ── EXPERIENCE ── */
#experience {
padding: var(--section-y) var(--pad-x);
background: var(--bg);
}
.exp-header {
max-width: var(--max-w);
margin: 0 auto clamp(2.5rem, 5vh, 4rem);
text-align: center;
}
.section-h {
font-family: var(--f-head);
font-weight: 800;
font-size: clamp(1.8rem, 3.5vw, 3.4rem);
color: var(--ink);
line-height: 1.2;
margin-bottom: 0.6rem;
}
.section-sub {
color: var(--mid);
font-size: clamp(0.85rem, 1.1vw, 0.95rem);
}
.exp-cards {
max-width: var(--max-w);
margin: 0 auto;
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 1.25rem;
}
.ec {
background: var(--cream);
border: 1px solid var(--bg2);
padding: clamp(1.75rem, 2.5vw, 2.5rem) clamp(1.25rem, 2vw, 2rem);
position: relative;
overflow: hidden;
transition:
    transform 0.3s,
    box-shadow 0.3s;
cursor: default;
}
.ec:hover {
transform: translateY(-6px);
box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}
.ec-num {
font-family: var(--f-head);
font-size: clamp(4rem, 7vw, 7rem);
font-weight: 800;
position: absolute;
top: -1rem;
right: -0.5rem;
line-height: 1;
opacity: 0.05;
color: var(--ink);
}
.ec-top {
display: flex;
align-items: center;
gap: 0.75rem;
margin-bottom: 1.5rem;
}
.ec-ico {
width: 44px;
height: 44px;
border-radius: 8px;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.3rem;
flex-shrink: 0;
}
.ec-ico.g {
background: rgba(28, 61, 43, 0.1);
}
.ec-ico.r {
background: rgba(201, 48, 40, 0.1);
}
.ec-ico.o {
background: rgba(212, 146, 43, 0.12);
}
.ec-tag {
font-family: var(--f-head);
font-size: 0.6rem;
font-weight: 700;
letter-spacing: 0.15em;
text-transform: uppercase;
padding: 0.3rem 0.7rem;
border-radius: 100px;
}
.ec-tag.g {
background: rgba(28, 61, 43, 0.1);
color: var(--forest);
}
.ec-tag.r {
background: rgba(201, 48, 40, 0.1);
color: var(--red);
}
.ec-tag.o {
background: rgba(212, 146, 43, 0.15);
color: var(--gold);
}
.ec-title {
font-family: var(--f-head);
font-weight: 800;
font-size: clamp(1.1rem, 1.6vw, 1.35rem);
color: var(--ink);
margin-bottom: 0.75rem;
}
.ec-desc {
font-size: clamp(0.8rem, 1vw, 0.88rem);
line-height: 1.75;
color: var(--mid);
font-weight: 300;
margin-bottom: 1.5rem;
}
.ec-items {
display: flex;
flex-direction: column;
gap: 0.4rem;
}
.ec-item {
display: flex;
align-items: center;
gap: 0.5rem;
font-size: clamp(0.72rem, 0.9vw, 0.78rem);
color: var(--mid);
}
.ec-item::before {
content: "";
display: block;
width: 5px;
height: 5px;
background: currentColor;
border-radius: 50%;
opacity: 0.5;
flex-shrink: 0;
}

/* ── COMMITTEE ── */
#committee {
padding: var(--section-y) var(--pad-x);
background: var(--bg2);
}
.comm-inner {
max-width: var(--max-w);
margin: 0 auto;
}
.comm-head {
text-align: center;
margin-bottom: clamp(2.5rem, 5vh, 4rem);
}
.comm-grid {
display: grid;
grid-template-columns: repeat(
    auto-fill,
    minmax(clamp(140px, 16vw, 190px), 1fr)
);
gap: 1rem;
}
.mc {
background: var(--cream);
padding: 1.75rem 1.25rem;
text-align: center;
border: 1px solid rgba(0, 0, 0, 0.06);
transition: all 0.25s;
cursor: default;
}
.mc:hover {
transform: translateY(-4px);
box-shadow: 0 12px 35px rgba(0, 0, 0, 0.09);
border-color: rgba(28, 61, 43, 0.15);
}
.mc-av {
width: 60px;
height: 60px;
border-radius: 50%;
margin: 0 auto 1rem;
display: flex;
align-items: center;
justify-content: center;
font-family: var(--f-head);
font-size: 1rem;
font-weight: 800;
background: var(--forest);
color: rgba(255, 255, 255, 0.85);
position: relative;
}
.mc-av::after {
content: "";
position: absolute;
inset: -3px;
border-radius: 50%;
border: 1.5px dashed var(--gold);
opacity: 0.25;
}
.mc.you .mc-av {
background: var(--gold);
color: var(--forest);
}
.mc.you .mc-av::after {
border-color: var(--gold);
opacity: 0.5;
}
.mc-name {
font-family: var(--f-head);
font-size: clamp(0.78rem, 1vw, 0.85rem);
font-weight: 700;
color: var(--ink);
margin-bottom: 0.3rem;
line-height: 1.2;
}
.mc-role {
font-size: 0.63rem;
font-weight: 700;
letter-spacing: 0.12em;
text-transform: uppercase;
color: var(--mid);
}
.mc.you .mc-role {
color: var(--gold);
}
.mc-you-badge {
font-size: 0.55rem;
background: var(--gold);
color: var(--forest);
font-weight: 800;
letter-spacing: 0.1em;
text-transform: uppercase;
padding: 0.2rem 0.5rem;
border-radius: 100px;
display: inline-block;
margin-top: 0.4rem;
}

/* ── SPONSORS ── */
#sponsors {
padding: var(--section-y) var(--pad-x);
background: var(--cream);
}
.sponsors-inner {
max-width: var(--max-w);
margin: 0 auto;
}
.sponsors-head {
text-align: center;
margin-bottom: clamp(2.5rem, 5vh, 4rem);
}
.sp-tier-lbl {
font-size: 0.6rem;
font-weight: 700;
letter-spacing: 0.26em;
text-transform: uppercase;
color: var(--mid);
margin-bottom: 1.25rem;
display: flex;
align-items: center;
gap: 0.75rem;
}
.sp-tier-lbl::before,
.sp-tier-lbl::after {
content: "";
flex: 1;
height: 1px;
background: var(--bg2);
}
.sp-card {
border: 1.5px dashed rgba(212, 146, 43, 0.35);
background: var(--bg);
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
gap: 0.55rem;
transition: all 0.3s;
cursor: default;
position: relative;
}
.sp-card:hover {
border-color: var(--gold);
background: rgba(212, 146, 43, 0.05);
transform: translateY(-3px);
}
.sp-card.title {
height: clamp(100px, 13vw, 155px);
}
.sp-card.gold {
height: clamp(80px, 10vw, 120px);
}
.sp-card.support {
height: clamp(65px, 8vw, 95px);
}
.sp-logo-ph {
font-family: var(--f-head);
font-weight: 700;
color: var(--mid);
opacity: 0.35;
font-size: clamp(0.72rem, 1.1vw, 0.95rem);
letter-spacing: 0.06em;
text-transform: uppercase;
text-align: center;
padding: 0 1rem;
line-height: 1.3;
}
.sp-badge {
font-size: 0.52rem;
font-weight: 700;
letter-spacing: 0.18em;
text-transform: uppercase;
padding: 0.2rem 0.65rem;
border-radius: 100px;
}
.sp-badge.t {
background: rgba(212, 146, 43, 0.18);
color: var(--gold);
}
.sp-badge.g {
background: rgba(212, 146, 43, 0.1);
color: var(--gold);
}
.sp-badge.s {
background: var(--bg2);
color: var(--mid);
}
.sp-title-row {
display: grid;
grid-template-columns: 1fr;
gap: 1rem;
margin-bottom: 2.5rem;
}
.sp-gold-row {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 1rem;
margin-bottom: 2.5rem;
}
.sp-support-row {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 1rem;
margin-bottom: 3rem;
}
.sp-cta {
  background: var(--forest);
  padding: clamp(1.5rem, 2.5vw, 2rem) clamp(1.5rem, 2.5vw, 2.5rem);
  display: flex;
  align-items: center;
  justify-content: center;   
  flex-direction: column;     
  text-align: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.sp-cta-text h3 {
font-family: var(--f-head);
font-weight: 800;
font-size: clamp(1rem, 1.8vw, 1.35rem);
color: #fff;
margin-bottom: 0.35rem;
}
.sp-cta-text p {
font-size: clamp(0.75rem, 0.95vw, 0.83rem);
color: rgba(255, 255, 255, 0.42);
line-height: 1.6;
max-width: 480px;
margin: 0 auto;   
}

/* ── FORM ── */
#join {
padding: var(--section-y) var(--pad-x);
background: var(--ink);
position: relative;
overflow: hidden;
}
.join-grid-bg {
position: absolute;
inset: 0;
background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
background-size: 60px 60px;
}
.join-inner {
max-width: min(720px, 90vw);
margin: 0 auto;
position: relative;
z-index: 1;
}
.join-head {
text-align: center;
margin-bottom: 3rem;
}
.join-h {
font-family: var(--f-head);
font-weight: 800;
font-size: clamp(1.8rem, 4vw, 3.5rem);
color: #fff;
line-height: 1.05;
margin-bottom: 0.65rem;
}
.join-h em {
font-family: var(--f-serif);
font-style: italic;
color: var(--gold2);
font-weight: 400;
}
.join-sub {
color: rgba(255, 255, 255, 0.38);
font-size: clamp(0.82rem, 1vw, 0.9rem);
line-height: 1.7;
max-width: 440px;
margin: 0 auto;
}
.form-row {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 1rem;
margin-bottom: 1rem;
}
.fg {
display: flex;
flex-direction: column;
gap: 0.4rem;
}
.fg.full {
grid-column: span 2;
}
.fl {
font-size: 0.63rem;
font-weight: 700;
letter-spacing: 0.16em;
text-transform: uppercase;
color: rgba(255, 255, 255, 0.3);
}
.fi,
.fs,
.ft {
background: rgba(255, 255, 255, 0.05);
border: 1px solid rgba(255, 255, 255, 0.1);
color: #fff;
padding: 0.85rem 1rem;
font-family: var(--f-body);
font-size: 0.9rem;
outline: none;
transition: border-color 0.2s;
width: 100%;
border-radius: 3px;
}
.fi::placeholder,
.ft::placeholder {
color: rgba(255, 255, 255, 0.2);
}
.fi:focus,
.fs:focus,
.ft:focus {
border-color: var(--gold);
}
.fs {
appearance: none;
cursor: pointer;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath d='M1 1l5 4.5L11 1' stroke='%23D4922B' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
background-repeat: no-repeat;
background-position: right 1rem center;
}
.fs option {
background: #1a2e1f;
color: #fff;
}
.ft {
resize: vertical;
min-height: 90px;
}
.form-actions {
text-align: center;
margin-top: 1.75rem;
}
#form-ok {
display: none;
text-align: center;
padding: 4rem 0;
}
.ok-emoji {
font-size: 2.5rem;
margin-bottom: 1rem;
display: block;
}
.ok-h {
font-family: var(--f-head);
font-weight: 800;
font-size: 2rem;
color: #fff;
margin-bottom: 0.6rem;
}
.ok-p {
color: rgba(255, 255, 255, 0.4);
font-size: 0.9rem;
line-height: 1.65;
max-width: 340px;
margin: 0 auto;
}

/* ── FOOTER ── */
footer {
  background: var(--forest);
  padding: clamp(3rem, 5vw, 5rem) var(--pad-x);
}
.ft-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}

.ft-brand {
  display: flex;
  align-items: center;
  font-family: var(--f-head);
  font-weight: 800;
  font-size: clamp(1rem, 1.8vw, 1.6rem); /* reined in — no more wrapping */
  color: #fff;
  gap: 0.75rem;
  white-space: nowrap; /* prevents "Journey to" and "Malaysia" splitting */
  flex-shrink: 0;
}
.ft-brand span {
color: var(--gold2);
}
.ft-tagline {
font-size: 0.72rem;
color: rgba(255, 255, 255, 0.25);
margin-top: 0.2rem;
font-family: var(--f-serif);
font-style: italic;
}
.ft-links {
display: flex;
gap: clamp(1rem, 2vw, 2rem);
list-style: none;
flex-wrap: wrap;
}
.ft-links a {
font-size: 0.68rem;
font-weight: 600;
letter-spacing: 0.12em;
text-transform: uppercase;
color: rgba(255, 255, 255, 0.3);
text-decoration: none;
transition: color 0.2s;
}
.ft-links a:hover {
color: var(--gold2);
}
.ft-socials {
display: flex;
gap: 0.6rem;
}
.fs-link {
width: 34px;
height: 34px;
border: 1px solid rgba(255, 255, 255, 0.15);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 0.85rem;
font-weight: 700;
color: rgba(255, 255, 255, 0.5);
text-decoration: none;
transition: all 0.2s;
}
.fs-link:hover {
border-color: var(--gold2);
color: var(--gold2);
}
.ft-copy {
max-width: var(--max-w);
margin: 0.2rem auto 0;
padding-top: 1.5rem;
border-top: 1px solid rgba(255, 255, 255, 0.07);
font-size: 0.67rem;
color: rgba(255, 255, 255, 0.2);
text-align: center;
}

/* ── REVEAL ── */
.r {
opacity: 0;
transform: translateY(22px);
transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}
.r.on {
opacity: 1;
transform: translateY(0);
}
.r1 {
transition-delay: 0.1s;
}
.r2 {
transition-delay: 0.2s;
}
.r3 {
transition-delay: 0.3s;
}
.r4 {
transition-delay: 0.4s;
}

/* ── KEYFRAMES ── */
@keyframes fadeUp {
from {
    opacity: 0;
    transform: translateY(26px);
}
to {
    opacity: 1;
    transform: translateY(0);
}
}
@keyframes marquee {
from {
    transform: translateX(0);
}
to {
    transform: translateX(-50%);
}
}
@keyframes scrollAnim {
0% {
    left: -60%;
}
100% {
    left: 110%;
}
}

/* ════════════════════════════════
RESPONSIVE BREAKPOINTS
xs  < 480px   — small phones
sm  480–768px — large phones
md  769–1024px — tablets
lg  1025–1440px — laptops (base)
xl  1441–1920px — large monitors
2xl > 1920px  — TV / 4K
════════════════════════════════ */

/* ── xs: small phones ── */
@media (max-width: 479px) {

.ht-big {
    font-size: clamp(2.2rem, 14vw, 3.5rem);
    line-height: 0.95;
  }
  
  .ht-small {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
  }

.sp-gold-row,
.sp-support-row {
    grid-template-columns: 1fr 1fr;
}
.sp-cta {
    flex-direction: column;
    text-align: center;
}
.n-links {
    display: none;
}
.n-burger {
    display: flex;
}
#hero {
    min-height: 100svh;
}
.hero-content {
    padding: 7rem 1.25rem 2.5rem;
}
.hero-foot {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.25rem 1.25rem;
    gap: 0.75rem;
}
.hero-stats {
    gap: 1.25rem;
}
.hero-scroll-hint {
    display: none;
}
#about,
#recap,
#experience,
#committee,
#join {
    padding: 3.5rem 1.25rem;
}
#countdown {
    padding: 3rem 1.25rem;
}
footer {
    padding: 2rem 1.25rem;
}
.about-wrap {
    grid-template-columns: 1fr;
    gap: 2.5rem;
}
.about-h {
    font-size: 1.8rem;
}
.photo-mosaic {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
}
.pm-cell {
    grid-column: span 1 !important;
    height: 130px;
}
.exp-cards {
    grid-template-columns: 1fr;
}
.comm-grid {
    grid-template-columns: 1fr 1fr;
}
.form-row {
    grid-template-columns: 1fr;
}
.fg.full {
    grid-column: span 1;
}
.recap-top {
    flex-direction: column;
    align-items: flex-start;
}
.recap-note {
    max-width: 100%;
    text-align: left;
}
.recap-h {
    font-size: 2rem;
}
.ft-inner {
    flex-direction: column;
    text-align: center;
}
.ft-links {
    justify-content: center;
}
.ft-socials {
    justify-content: center;
}
.cd-units {
    gap: 0.4rem;
}
.cd-unit {
    min-width: 65px;
    padding: 0.7rem 0.8rem;
}
}

/* ── sm: large phones ── */
@media (min-width: 480px) and (max-width: 768px) {

.ht-big {
    font-size: clamp(2.8rem, 12vw, 5rem);
}

.sp-support-row {
    grid-template-columns: repeat(2, 1fr);
}
.sp-cta {
    flex-direction: column;
    text-align: center;
}
.n-links {
    display: none;
}
.n-burger {
    display: flex;
}
.hero-content {
    padding: 8rem 1.5rem 3rem;
}
.hero-foot {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem 1.5rem;
    gap: 1rem;
}
.hero-scroll-hint {
    display: none;
}
#about,
#recap,
#experience,
#committee,
#join {
    padding: 4.5rem 1.5rem;
}
#countdown {
    padding: 3.5rem 1.5rem;
}
footer {
    padding: 2.5rem 1.5rem;
}
.about-wrap {
    grid-template-columns: 1fr;
    gap: 3rem;
}
.photo-mosaic {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
}
.pm-cell {
    grid-column: span 1 !important;
    height: 150px;
}
.exp-cards {
    grid-template-columns: 1fr;
}
.comm-grid {
    grid-template-columns: repeat(2, 1fr);
}
.form-row {
    grid-template-columns: 1fr;
}
.fg.full {
    grid-column: span 1;
}
.recap-top {
    flex-direction: column;
    align-items: flex-start;
}
.recap-note {
    max-width: 100%;
    text-align: left;
}
.ft-inner {
    flex-direction: column;
    text-align: center;
}
.ft-links {
    justify-content: center;
}
.ft-socials {
    justify-content: center;
}
}

/* ── md: tablets ── */
@media (min-width: 769px) and (max-width: 1024px) {
.sp-support-row {
    grid-template-columns: repeat(2, 1fr);
}
.n-links {
    display: none;
}
.n-burger {
    display: flex;
}
.about-wrap {
    gap: 3.5rem;
}
.exp-cards {
    grid-template-columns: 1fr 1fr;
}
.ec:last-child {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}
.ec:last-child .ec-num {
    top: 0.5rem;
    right: 1rem;
}
.comm-grid {
    grid-template-columns: repeat(3, 1fr);
}
.photo-mosaic {
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: auto;
}
.pm-cell {
    grid-column: span 2 !important;
    height: 170px;
}
.hero-content {
    padding: 9rem 2rem 3rem;
}
.hero-foot {
    padding: 1.5rem 2rem;
}
.ft-links {
    gap: 1.25rem;
}
}

/* ── lg: laptops / base (1025–1440) ── no changes, this is the design baseline ── */

/* ── xl: large monitors (1441–1920px) ── */
@media (min-width: 1441px) and (max-width: 1919px) {
:root {
    --max-w: min(1400px, 88vw);
    --max-w-wide: min(1700px, 90vw);
    --pad-x: clamp(3rem, 5vw, 7rem);
}
.photo-mosaic {
    grid-template-rows: 240px 240px;
}
.comm-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
}
.marquee-item {
    font-size: 0.8rem;
    padding: 0 3.5rem;
}
}

/* ── 2xl: TV / 4K (> 1920px) ── */
@media (min-width: 1920px) {
:root {
    --max-w: min(1800px, 85vw);
    --max-w-wide: min(2200px, 88vw);
    --pad-x: clamp(4rem, 6vw, 10rem);
    --section-y: clamp(7rem, 9vw, 12rem);
}
body {
    font-size: 20px;
}
.n-logo {
    font-size: 1.5rem;
}
.n-links a {
    font-size: 0.85rem;
    padding: 0.55rem 1.1rem;
}
.ht-small {
    font-size: 2.2rem;
    letter-spacing: 0.35em;
}

.hero-desc {
    font-size: 1.25rem;
    max-width: 680px;
}
.btn {
    padding: 1rem 2.5rem;
    font-size: 0.95rem;
}
.hstat-n {
    font-size: 2rem;
}
.hstat-l {
    font-size: 0.75rem;
}
.section-h {
    font-size: 4.5rem;
}
.about-h {
    font-size: 4rem;
}
.about-p {
    font-size: 1.15rem;
}
.ec-title {
    font-size: 1.7rem;
}
.ec-desc {
    font-size: 1rem;
}
.ec-item {
    font-size: 0.9rem;
}
.join-h {
    font-size: 4rem;
}
.join-sub {
    font-size: 1.1rem;
}
.fi,
.fs,
.ft {
    font-size: 1.05rem;
    padding: 1rem 1.25rem;
}
.fl {
    font-size: 0.75rem;
}
.cd-head {
    font-size: 5rem;
}
.cd-n {
    font-size: 3.2rem;
}
.cd-unit {
    min-width: 120px;
    padding: 1.25rem 1.5rem;
}
.mc-av {
    width: 80px;
    height: 80px;
    font-size: 1.3rem;
}
.mc-name {
    font-size: 1rem;
}
.mc-role {
    font-size: 0.75rem;
}
.ft-brand {
    font-size: 1.7rem;
}
.ft-links a {
    font-size: 0.82rem;
}
.photo-mosaic {
    grid-template-rows: 280px 280px;
}
.marquee-item {
    font-size: 0.9rem;
    padding: 0 4rem;
}
.av-quote {
    font-size: 1.7rem;
}
.av-b-n {
    font-size: 1.9rem;
}
.recap-h {
    font-size: 5.5rem;
}
.pill {
    font-size: 0.8rem;
    padding: 0.55rem 1.25rem;
}
.lbl {
    font-size: 0.78rem;
}
}

.ft-logo {
  width: 100px;
  height: 100px;
  object-fit: contain;
  border-radius: 50%;
  mix-blend-mode: screen;
  flex-shrink: 0;
}
.fs-link i {
  font-size: 0.85rem;
}

.fs-link {
  position: relative; /* already needed */
}

.fs-link::after {
  content: attr(data-tip);
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: #1c3d2b;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 500;
  white-space: nowrap;
  padding: 0.3rem 0.6rem;
  border-radius: 6px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s;
}

.fs-link:hover::after {
  opacity: 1;
}

.cd-unit.r {
  opacity: 0;
  transform: translateY(30px) scale(0.85);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.cd-unit.r.on {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.n-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.n-logo-img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  border-radius: 50%;
}

#hero {
  min-height: unset;
  padding-bottom: clamp(2rem, 4vw, 4rem);
}

.hero-content {
  padding-bottom: clamp(1.5rem, 3vh, 2.5rem);
}

.hero-foot {
  padding-top: clamp(1rem, 2vh, 1.75rem);
  padding-bottom: clamp(1rem, 2vh, 1.75rem);
}

.about-vid-container {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(15, 26, 20, 0.08); /* Uses your --ink color for shadow */
  display: flex;
}

.about-vid {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

#hero {
  min-height: 100svh;
  background: var(--forest);
  display: grid;
  grid-template-rows: 1fr auto;
  overflow: hidden;
  position: relative;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

/* Background image */
.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 0.45; /* blend with forest green underneath */
  mix-blend-mode: luminosity;
}

/* Dark overlay so text stays readable */
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15, 45, 25, 0.75) 0%,
    rgba(15, 45, 25, 0.4) 50%,
    rgba(15, 45, 25, 0.6) 100%
  );
  z-index: 1;
}

/* Keep circles but more subtle since image is present */
.hero-circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.03;
}

.hero-content {
  position: relative;
  z-index: 2; /* above overlay */
  padding: clamp(7rem, 14vh, 12rem) var(--pad-x) clamp(1.5rem, 3vh, 2.5rem);
  max-width: var(--max-w-wide);
  margin: 0 auto;
  width: 100%;
}

.hero-foot {
  position: relative;
  z-index: 2; /* above overlay */
  padding: clamp(1rem, 2vh, 1.75rem) var(--pad-x);
  max-width: var(--max-w-wide);
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  flex-wrap: wrap;
  gap: 1rem;
}

/* ── POPUP ── */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 25, 15, 0.75);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.popup-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.popup-box {
  background: var(--forest);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: clamp(2rem, 4vw, 3.5rem);
  max-width: 520px;
  width: 100%;
  position: relative;
  text-align: center;
  transform: translateY(24px);
  transition: transform 0.4s ease;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
}

.popup-overlay.open .popup-box {
  transform: translateY(0);
}

.popup-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(255, 255, 255, 0.07);
  border: none;
  color: rgba(255, 255, 255, 0.4);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 0.75rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.popup-close:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.popup-label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold2);
  margin-bottom: 1rem;
}

.popup-head {
  font-family: var(--f-head);
  font-weight: 800;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  color: #fff;
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

.popup-head span {
  color: var(--gold2);
}

.popup-sub {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: clamp(0.85rem, 1.2vw, 0.95rem);
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 1.75rem;
}

.popup-units {
  display: inline-flex;
  gap: 0.6rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.popup-unit {
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  padding: 0.75rem 1.1rem;
  min-width: 72px;
  text-align: center;
}

.popup-unit .cd-n {
  font-family: var(--f-head);
  font-size: clamp(1.6rem, 3vw, 2rem);
  font-weight: 800;
  color: #fff;
  display: block;
  line-height: 1;
}

.popup-unit .cd-l {
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  display: block;
  margin-top: 0.25rem;
}

.popup-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin: 0 0 1.75rem;
}

.popup-nl-label {
  font-size: clamp(0.8rem, 1.1vw, 0.9rem);
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.popup-input-wrap {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.popup-input {
  flex: 1;
  min-width: 0;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  color: #fff;
  padding: 0.75rem 1rem;
  font-family: var(--f-body);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s;
}

.popup-input::placeholder {
  color: rgba(255, 255, 255, 0.2);
}

.popup-input:focus {
  border-color: var(--gold);
}

.popup-btn {
  background: var(--gold);
  color: var(--forest);
  border: none;
  border-radius: 6px;
  padding: 0.75rem 1.25rem;
  font-family: var(--f-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}

.popup-btn:hover {
  background: var(--gold2);
  transform: translateY(-1px);
}

.popup-privacy {
  font-size: 0.62rem;
  color: rgba(255, 255, 255, 0.2);
  margin-top: 0.6rem;
  letter-spacing: 0.05em;
}

.popup-ok {
  display: none;
  color: var(--gold2);
  font-size: 0.9rem;
  padding: 1rem 0 0.5rem;
}

.comm-photo-wrap {
  position: relative;  
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.comm-photo {
  width: 100%;
  height: clamp(280px, 45vw, 580px);
  object-fit: cover;
  object-position: center 75%;
  display: block;
  transition: transform 0.6s ease;
}

.comm-photo-wrap:hover .comm-photo {
  transform: scale(1.02);
}

/* Chairman quote */
.comm-quote {
  max-width: min(720px, 90%);
  margin: 0 auto;
  text-align: center;
}

.cq-inner {
  position: relative;
  padding: clamp(2rem, 4vw, 3rem) clamp(1.5rem, 3vw, 2.5rem);
  background: var(--cream);
  border: 1px solid var(--bg2);
  border-radius: 8px;
}

.cq-mark {
  font-family: var(--f-serif);
  font-size: clamp(4rem, 8vw, 7rem);
  color: var(--gold);
  opacity: 0.25;
  line-height: 0;
  position: absolute;
  top: 2.5rem;
  left: 1.5rem;
}

.cq-text {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: clamp(1rem, 1.6vw, 1.3rem);
  color: var(--ink);
  line-height: 1.75;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.cq-attr {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.cq-name {
  font-family: var(--f-head);
  font-weight: 700;
  font-size: clamp(0.8rem, 1vw, 0.9rem);
  color: var(--ink);
  letter-spacing: 0.05em;
}

.cq-role {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

.comm-quotes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  max-width: var(--max-w);
  margin: 0 auto;
}

/* Collapse to single column on mobile */
@media (max-width: 768px) {
  .comm-quotes {
    grid-template-columns: 1fr;
  }
}

.pm-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.45s ease;
}

.pm-cell:hover .pm-img {
  transform: scale(1.06);
}

.sp-logo-img {
  width: auto;
  max-width: 70%;
  max-height: 60px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  filter: grayscale(20%); /* subtle, keeps colours but unified */
  transition: filter 0.3s;
}

.sp-logo-img:hover {
  filter: grayscale(0%); /* full colour on hover */
}

.sp-logo-lg {
  max-height: 90px;  /* bigger for the main organiser */
  max-width: 55%;
}

.sp-logo-sm {
  max-height: 48px;  /* smaller for supporters */
  max-width: 75%;
}

.ft-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Partners centre column */
.ft-partners {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;          /* more space between organised/partnered blocks */
}


.ft-partners-label {
  font-size: 0.68rem;   /* slightly bigger label */
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);  /* more visible */
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.75rem;
}

.ft-partners-label::before,
.ft-partners-label::after {
  content: "";
  display: block;
  width: 28px;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
}

.ft-partners-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.75rem;
  flex-wrap: wrap;
}

.ft-partner-img {
  height: 52px;         /* was 36px — bigger logos */
  width: auto;
  object-fit: contain;
  opacity: 0.85;        /* no colour change, just slightly softer */
  transition: opacity 0.2s;
}

.ft-partner-img:hover {
  opacity: 1;
}


/* Mobile stacking */
@media (max-width: 768px) {
  .ft-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
  }

  .ft-partners {
    width: 100%;
  }

  .ft-socials-wrap {
    align-items: center;
  }
}

* Contact Us right column */
.ft-socials-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.85rem;
}

.ft-contact-label {
  font-family: var(--f-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.ft-contact-label::before,
.ft-contact-label::after {
  content: "";
  display: block;
  width: 24px;
  height: 1px;
  background: rgba(255, 255, 255, 0.25);
}

.ft-socials {
  display: flex;
  gap: 0.85rem;
}

.fs-link {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: all 0.2s;
  position: relative;
}

.ft-copy {
  max-width: var(--max-w);
  margin: 0 auto;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.25);
  text-align: center;
  letter-spacing: 0.05em;
}


footer {
  background: var(--forest);
  padding: clamp(3rem, 5vw, 5rem) var(--pad-x);
}

.ft-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: nowrap; /* force single row on desktop */
}

.ft-partners {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}

.ft-partners-label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
}

.ft-partners-label::before,
.ft-partners-label::after {
  content: "";
  display: block;
  width: 20px;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
}

.ft-partners-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.ft-partner-img {
  height: 108px;
  width: auto;
  object-fit: contain;
  opacity: 0.85;
  transition: opacity 0.2s;
}

.ft-partner-img:hover {
  opacity: 1;
}

.ft-socials-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.75rem;
  flex-shrink: 0;
}

.ft-contact-label {
  font-family: var(--f-head);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
}

.ft-contact-label::before,
.ft-contact-label::after {
  content: "";
  display: block;
  width: 20px;
  height: 1px;
  background: rgba(255, 255, 255, 0.25);
}

/* Mobile — stack into columns */
@media (max-width: 768px) {
  .ft-inner {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    gap: 2rem;
  }

  .ft-brand {
    width: 100%;
    justify-content: center;
  }

  .ft-socials-wrap {
    align-items: center;
    width: 100%;
  }
}

.sp-logo-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  margin-bottom: 2.5rem;
}

.sp-bare-img {
  height: 160px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  opacity: 0.8;
  transition: opacity 0.2s, transform 0.2s;
  filter: grayscale(15%);
}

.sp-bare-img:hover {
  opacity: 1;
  transform: translateY(-2px);
  filter: grayscale(0%);
}

.sp-divider {
  width: 100%;
  height: 1px;
  background: var(--bg2);
  margin: 0.5rem 0 2.5rem;
}

.ft-credit {
  display: block;         
  text-align: center;      
  margin-top: 1rem;        
  color: rgba(255, 255, 255, 0.18);
}

.ft-credit a {
  color: rgba(255, 255, 255, 0.3);
  text-decoration: none;
  transition: color 0.2s;
}

.ft-credit a:hover {
  color: var(--gold2);
}

/* ── TAB SWITCHER ── */
.tab-switcher-wrap {
  padding: clamp(1.5rem, 3vw, 2.5rem) var(--pad-x) 0;
  display: flex;
  justify-content: center;
  transition: background 0.4s ease;
}

/* Match switcher background to the active tab's first section */
.tab-switcher-wrap[data-active="about"] {
  background: var(--bg);
}
.tab-switcher-wrap[data-active="recap"] {
  background: var(--ink);
}
.tab-switcher-wrap[data-active="team"] {
  background: var(--bg2);
}

.tab-switcher {
  display: inline-flex;
  gap: 0.4rem;
  background: rgba(15, 26, 20, 0.08); 
  padding: 0.4rem;
  border-radius: 100px;
  transition: background 0.4s ease;
}

.tab-btn {
  font-family: var(--f-head);
  font-weight: 700;
  font-size: clamp(0.7rem, 0.9vw, 0.8rem);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--mid);
  background: transparent;
  border: none;
  padding: 0.65rem 1.5rem;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.tab-btn:hover {
  color: var(--ink);
}

.tab-btn.active {
  background: var(--forest);
  color: #fff;
  box-shadow: 0 4px 14px rgba(28, 61, 43, 0.25);
}

/* On dark recap background, lighten the pill track + inactive text */
.tab-switcher-wrap[data-active="recap"] .tab-switcher {
  background: rgba(255, 255, 255, 0.08);
}

.tab-switcher-wrap[data-active="recap"] .tab-btn {
  color: rgba(255, 255, 255, 0.4);
}

.tab-switcher-wrap[data-active="recap"] .tab-btn:hover {
  color: #fff;
}

.tab-switcher-wrap[data-active="recap"] .tab-btn.active {
  background: var(--gold);
  color: var(--forest);
}

/* ── TAB PANELS ── */
.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
  animation: tabFadeIn 0.4s ease both;
}

@keyframes tabFadeIn {
  from { opacity: 0.4; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

#tab-recap {
  background: var(--ink);
}
#tab-about {
  background: var(--bg);
}
#tab-team {
  background: var(--bg2);
}

/* Mobile tab switcher tweaks */
@media (max-width: 479px) {
  .tab-switcher {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .tab-btn {
    padding: 0.6rem 1.1rem;
    font-size: 0.65rem;
  }
}

.n-logo {
  font-family: var(--f-head);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}

.n-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.n-logo-title {
  font-weight: 800;
  font-size: clamp(0.9rem, 1.8vw, 1.15rem);
  color: #fff;
  letter-spacing: -0.01em;
}

.n-logo-tagline {
  font-family: var(--f-body);
  font-weight: 400;
  font-size: clamp(0.55rem, 0.7vw, 0.65rem);
  color: var(--gold2);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  opacity: 0.85;
}

.sp-logo-item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sp-logo-item::after {
  content: attr(data-name);
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--forest);
  color: #fff;
  font-family: var(--f-head);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  padding: 0.35rem 0.75rem;
  border-radius: 6px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Show on hover (desktop) */
.sp-logo-item:hover::after {
  opacity: 1;
}

/* Show on touch/focus (mobile) */
.sp-logo-item:focus-within::after,
.sp-logo-item.touched::after {
  opacity: 1;
}

.collage-marquee {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  overflow: hidden;
  border-radius: 8px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.collage-marquee.on {
  opacity: 1;
  transform: translateY(0);
}

/* Keep animation paused until marquee is visible */
.cm-row {
  animation-play-state: paused;
}

.collage-marquee.on .cm-row {
  animation-play-state: running;
}
.cm-row {
  display: flex;
  width: max-content;
  gap: 0.8rem;
  animation: cmScrollLeft 34s linear infinite;
}
.cm-row.reverse {
  animation-name: cmScrollRight;
  animation-duration: 40s;
}

.cm-tile {
  position: relative;
  flex: 0 0 auto;
  width: clamp(200px, 28vw, 320px);   
  height: clamp(140px, 19vw, 210px);  
  border-radius: 8px;
  overflow: hidden;
}
.cm-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease, filter 0.5s ease;
  filter: saturate(0.95);
}
.cm-tile:hover img {
  transform: scale(1.06);
  filter: saturate(1.05);
}
.cm-tile-caption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 0.5rem 0.7rem;
  font-family: var(--f-head);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--cream);
  background: linear-gradient(to top, rgba(15,26,20,0.75), transparent);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.cm-tile:hover .cm-tile-caption {
  opacity: 1;
  transform: translateY(0);
}

@keyframes cmScrollLeft {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes cmScrollRight {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

/* ── COMMITTEE SPACING FIX ── */
.comm-photo-wrap--spaced {
  margin-top: clamp(2.5rem, 5vw, 4rem);
}

/* ── THANK YOU PASSAGE ── */
.comm-thankyou {
  margin: clamp(2.5rem, 5vw, 4rem) auto clamp(1rem, 2vw, 2rem);
  max-width: min(680px, 90%);
  text-align: center;
}

.cty-inner {
  padding: clamp(2rem, 4vw, 3.5rem);
  background: var(--forest);
  border-radius: 8px;
  position: relative;
}

.cty-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.cty-h {
  font-family: var(--f-head);
  font-weight: 800;
  font-size: clamp(1.2rem, 2.2vw, 1.7rem);
  color: #fff;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.cty-p {
  font-size: clamp(0.85rem, 1.1vw, 0.95rem);
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 0.85rem;
}

.cty-sig {
  margin-top: 1.5rem;
  font-family: var(--f-serif);
  font-style: italic;
  font-size: clamp(0.8rem, 1vw, 0.9rem);
  color: var(--gold2);
  opacity: 0.8;
}

/* ── COMMITTEE GET INVOLVED CTA ── */
.comm-cta {
  margin-top: clamp(2rem, 4vw, 3.5rem);
}

.comm-cta-inner {
  background: var(--ink);
  border-radius: 8px;
  padding: clamp(2rem, 4vw, 3.5rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(2rem, 4vw, 4rem);
  flex-wrap: wrap;
}

.comm-cta-text .lbl {
  color: var(--gold2);
  margin-bottom: 0.75rem;
}

.comm-cta-text .lbl::after {
  background: var(--gold2);
}

.comm-cta-h {
  font-family: var(--f-head);
  font-weight: 800;
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  color: #fff;
  line-height: 1.1;
  margin-bottom: 0.85rem;
}

.comm-cta-h em {
  font-family: var(--f-serif);
  font-style: italic;
  color: var(--gold2);
  font-weight: 400;
}

.comm-cta-p {
  font-size: clamp(0.82rem, 1vw, 0.92rem);
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.4);
  max-width: 480px;
}

.comm-cta-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  flex-shrink: 0;
}

.comm-cta-roles {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.ccr-pill {
  font-family: var(--f-head);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
  .comm-cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .comm-cta-actions {
    width: 100%;
  }
}

.comm-photo-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.25rem 1.5rem;
  background: linear-gradient(to top, rgba(15, 26, 20, 0.85), transparent);
  font-family: var(--f-head);
  font-size: clamp(0.75rem, 1.1vw, 0.95rem);
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.04em;
  text-align: center;
}


  /* ===== VARIANT 2: Drifting masonry / parallax grid ===== */
  .collage-masonry {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.7rem;
    grid-auto-rows: 90px;
  }
  .mg-tile {
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    transition: transform 0.35s ease;
  }
  .mg-tile:hover { transform: translateY(-4px); }
  .mg-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .mg-tile.tall { grid-row: span 2; }
  .mg-tile.wide { grid-column: span 2; }
 
  @media (max-width: 700px) {
    .collage-masonry { grid-template-columns: repeat(2, 1fr); }
    .mg-tile.wide { grid-column: span 2; }
  }

  

/* ── INSPIRATION LINKS ── */

.exp-inspo-label {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mid);
  margin-right: 0.25rem;
}

.exp-inspo-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 1rem 0.6rem 0.75rem;
  background: var(--cream);
  border: 1px solid var(--bg2);
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.25s ease;
  group: true;
}

.exp-inspo-link:hover {
  border-color: var(--gold);
  background: rgba(212, 146, 43, 0.06);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 146, 43, 0.12);
}

.exp-inspo-icon {
  font-size: 1.1rem;
  line-height: 1;
}

.exp-inspo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.exp-inspo-name {
  font-family: var(--f-head);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.exp-inspo-loc {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid);
}

.exp-inspo-arrow {
  font-size: 0.6rem;
  color: var(--mid);
  margin-left: 0.25rem;
  transition: color 0.2s, transform 0.2s;
}

.exp-inspo-link:hover .exp-inspo-arrow {
  color: var(--gold);
  transform: translate(2px, -2px);
}

.exp-inspo-divider {
  width: 1px;
  height: 20px;
  background: var(--bg2);
}

/* ── RELIVE BUTTON ── */
.relive-action {
  display: flex;
  justify-content: center;
  margin-top: 3.5rem;
}

.btn-relive {
  display: inline-flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1rem 1.5rem 1rem 1.75rem;
  background: var(--forest);
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
  overflow: hidden;
}

.btn-relive::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(212, 146, 43, 0.12), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn-relive:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(28, 61, 43, 0.3);
  border-color: rgba(212, 146, 43, 0.3);
}

.btn-relive:hover::before {
  opacity: 1;
}

.btn-relive-inner {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
}

.btn-relive-label {
  font-family: var(--f-head);
  font-weight: 800;
  font-size: clamp(0.95rem, 1.3vw, 1.1rem);
  color: #fff;
  letter-spacing: -0.01em;
  line-height: 1.1;
}

.btn-relive-sub {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold2);
  opacity: 0.8;
  margin-top: 0.2rem;
}

.btn-relive-arrow {
  font-size: 0.85rem;
  color: var(--gold2);
  position: relative;
  z-index: 1;
  transition: transform 0.25s ease;
  flex-shrink: 0;
}

.btn-relive:hover .btn-relive-arrow {
  transform: translateX(4px);
}

.exp-inline-link {
  color: var(--gold);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(212, 146, 43, 0.35);
  text-underline-offset: 3px;
  transition: color 0.2s, text-decoration-color 0.2s;
}

.exp-inline-link:hover {
  color: var(--gold2);
  text-decoration-color: var(--gold2);
}

.exp-desc {
  max-width: var(--max-w);
  margin: 0 auto clamp(2.5rem, 5vw, 4rem);
  text-align: center;
  color: var(--mid);
  font-size: clamp(0.85rem, 1.1vw, 0.95rem);
  line-height: 1.75;
}

.exp-cards {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.ec {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 1 / 1; /* square cards */
  cursor: default;
  transition: transform 0.3s, box-shadow 0.3s;
}

.ec:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
}

/* Background photo layer */
.ec-bg-img {
  position: absolute;
  inset: 0;
  background-image: var(--ec-bg);
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
  z-index: 0;
}

.ec:hover .ec-bg-img {
  transform: scale(1.06);
}

/* Dark overlay so text stays readable */
.ec::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 25, 15, 0.88) 0%,
    rgba(10, 25, 15, 0.55) 50%,
    rgba(10, 25, 15, 0.3) 100%
  );
  z-index: 1;
}

/* Content sits above overlay */
.ec-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(1.25rem, 2vw, 2rem);
}

/* Number badge — top left, separate from title */
.ec-num-badge {
  position: absolute;
  top: clamp(1rem, 1.5vw, 1.5rem);
  left: clamp(1.25rem, 2vw, 2rem);
  font-family: var(--f-head);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--gold2);
  background: rgba(212, 146, 43, 0.15);
  border: 1px solid rgba(212, 146, 43, 0.3);
  padding: 0.25rem 0.6rem;
  border-radius: 100px;
}

.ec-title {
  font-family: var(--f-head);
  font-weight: 800;
  font-size: clamp(1.2rem, 1.8vw, 1.6rem);
  color: #fff;
  margin-bottom: 0.6rem;
  line-height: 1.1;
}

.ec-desc {
  font-size: clamp(0.78rem, 0.95vw, 0.88rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 300;
}

/* Mobile — stack to single column */
@media (max-width: 768px) {
  .exp-cards {
    grid-template-columns: 1fr;
  }
  .ec {
    aspect-ratio: 4 / 3; /* less square on mobile to save vertical space */
  }
}

.exp-header {
  max-width: var(--max-w);
  margin: 0 auto clamp(1.5rem, 3vw, 2.5rem);
  text-align: center;
}


/* ══════════════════════════════
   RECAP — CLEAN SECTION SYSTEM
══════════════════════════════ */

/* Shared split layout */
.rc-split {
  padding: var(--section-y) var(--pad-x);
}
.rc-split--light  { background: var(--bg); }
.rc-split--muted  { background: var(--bg2); }
.rc-split--dark   { background: var(--ink); }

.rc-split-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 7rem);
  align-items: center;
}

@media (max-width: 768px) {
  .rc-split-inner { grid-template-columns: 1fr; }
}

/* Text block */
.rc-text .lbl { color: var(--gold); }
.rc-text .lbl::after { background: var(--gold); }

.rc-h {
  font-family: var(--f-head);
  font-weight: 800;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  color: var(--ink);
  line-height: 1.05;
  margin-bottom: 1rem;
}

.rc-h em {
  font-family: var(--f-serif);
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}

.rc-p {
  font-size: clamp(0.85rem, 1.1vw, 0.95rem);
  line-height: 1.85;
  color: var(--mid);
  margin-bottom: 0.85rem;
}

/* Photo block */
.rc-photo { position: block; }

.rc-img {
  width: 100%;
  height: clamp(260px, 38vw, 460px);
  object-fit: cover;
  object-position: center 25%;
  display: block;
  border-radius: 6px;
}

.rc-img--map {
  height: auto;
  object-fit: contain;
}

.rc-img--contain {
  height: auto;
  object-fit: contain;
  background: #1a1a1a;
  border-radius: 6px;
}

.rc-caption {
  font-size: 0.68rem;
  color: var(--mid);
  font-style: italic;
  text-align: center;
  margin-top: 0.6rem;
}

/* Vendor lists */
.rc-vendor-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 1.75rem;
}

.rc-vendor-heading {
  font-family: var(--f-head);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}

.rc-vendor-list {
  padding-left: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.rc-vendor-list li {
  font-size: 0.8rem;
  color: var(--mid);
  line-height: 1.4;
}

/* Programme section */
.rc-programme {
  background: var(--forest);
  padding: 0;
  position: relative;
  overflow: hidden;
}

.rc-prog-bg {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  z-index: 0;
}

.rc-prog-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 30, 20, 0.78);
  z-index: 1;
}

/* Background collage fills the section height */
.rc-collage--bg {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  mask-image: none;
  -webkit-mask-image: none;
  opacity: 0.55;
}

.rc-collage--bg .rc-collage-row {
  flex: 1;
  overflow: hidden;
}

.rc-collage--bg .rc-collage-track {
  height: 100%;
}

.rc-collage--bg .rc-col-img {
  height: 100%;
  width: auto;
  min-width: 200px;
}

/* Timeline sits above the background */
.rc-programme-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--section-y) var(--pad-x);
  position: relative;
  z-index: 2;
}

.rc-prog-header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

/* Timeline */
.rc-timeline {
  display: flex;
  flex-direction: column;
  position: relative;
  max-width: 680px;
  margin: 0 auto;
}

.rc-timeline::before {
  content: "";
  position: absolute;
  left: 90px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(255,255,255,0.07);
}

.rct-item {
  display: grid;
  grid-template-columns: 86px 16px 1fr;
  gap: 0 1rem;
  align-items: start;
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.rct-item:last-child { border-bottom: none; }

.rct-time {
  font-family: var(--f-head);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.3);
  text-align: right;
  padding-top: 0.15rem;
  white-space: nowrap;
}

.rct-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: 1.5px solid rgba(255,255,255,0.18);
  margin-top: 0.25rem;
  justify-self: center;
  flex-shrink: 0;
}

.rct-item--key .rct-dot {
  background: var(--gold);
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212,146,43,0.18);
}

.rct-item--sub .rct-dot {
  border-color: rgba(255,255,255,0.12);
  background: transparent;
}

.rct-item--end .rct-dot {
  background: rgba(255,255,255,0.25);
}

.rct-title {
  font-family: var(--f-head);
  font-size: 0.88rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 0.2rem;
}

.rct-item--key .rct-title { color: var(--gold2); }
.rct-item--sub .rct-title { color: rgba(255,255,255,0.45); font-weight: 500; }
.rct-item--end .rct-title { color: rgba(255,255,255,0.4); }

.rct-desc {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.65;
  margin-top: 0.2rem;
}

/* Moving collage under programme */
.rc-collage {
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow: hidden;
  padding-bottom: 0;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
}

.rc-collage-row { overflow: hidden; }

.rc-collage-track {
  display: flex;
  gap: 8px;
  width: max-content;
}

.rc-collage-row--right .rc-collage-track {
  animation: rcScrollRight 48s linear infinite;
}

.rc-collage-row--left .rc-collage-track {
  animation: rcScrollLeft 48s linear infinite;
}

.rc-collage:hover .rc-collage-track {
  animation-play-state: paused;
}

.rc-col-img {
  height: clamp(160px, 18vw, 220px);
  width: auto;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  flex-shrink: 0;
}

@keyframes rcScrollRight {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@keyframes rcScrollLeft {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}

/* Lucky draw prizes */
.rc-prizes {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 1.75rem;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 6px;
  overflow: hidden;
}

.rc-prize {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1.25rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.rc-prize:last-child { border-bottom: none; }

.rc-prize:first-child {
  background: rgba(212,146,43,0.08);
}

.rc-prize-label {
  font-family: var(--f-head);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold2);
  white-space: nowrap;
  flex-shrink: 0;
}

.rc-prize-name {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  text-align: right;
}

/* Merch detail */
.rc-merch-detail {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1.75rem;
  padding: 1.25rem;
  background: var(--bg2);
  border-radius: 6px;
  border: 1px solid rgba(0,0,0,0.06);
}

.rc-md-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.rc-md-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid);
}

.rc-md-val {
  font-family: var(--f-head);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--ink);
}

.rc-md-badge {
  font-size: 0.58rem;
  background: var(--gold);
  color: var(--forest);
  padding: 0.15rem 0.5rem;
  border-radius: 100px;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin-left: 0.4rem;
  vertical-align: middle;
}
/* ── RECAP HERO ROW ── */
.recap-hero-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: start;
  padding: clamp(3rem, 6vw, 5rem) 0 clamp(2rem, 4vw, 3rem);
}

.recap-hero-heading {
  grid-column: 1 / -1;  /* full width on its own row */
  max-width: 100%;
}

.recap-hero-collage {
  grid-column: 1;
}

.recap-hero-text {
  grid-column: 2;
  max-width: 100%;
  padding-top: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-self: center;    /* add this — vertically centres against both photo rows */
}

.recap-hero-heading {
  max-width: 280px;
}

.recap-hero-text {
  max-width: 280px;
  padding-top: 0.5rem;
}

.recap-hero-h {
  font-family: var(--f-head);
  font-weight: 800;
  font-size: clamp(1.1rem, 1.8vw, 1.5rem);
  color: #fff;
  line-height: 1.1;
  margin: 0.5rem 0 0.65rem;
}

.recap-hero-p {
  font-size: clamp(0.78rem, 0.95vw, 0.88rem);
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
}

.recap-hero-p strong {
  color: rgba(255,255,255,0.85);
  font-weight: 600;
}

/* 3-photo collage */
.recap-hero-collage {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.rhc-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}

.rhc-bottom {
  display: grid;
  grid-template-columns: 1fr;
}

.rhc-cell {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
}

.rhc-cell--wide {
  grid-column: 1 / -1;
}

.rhc-img {
  width: 100%;
  height: clamp(120px, 14vw, 180px);
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.rhc-cell--wide .rhc-img {
  height: clamp(100px, 11vw, 150px);
  object-position: center 35%;
}

.rhc-cell:hover .rhc-img {
  transform: scale(1.05);
}

.rhc-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.4rem 0.6rem;
  font-family: var(--f-head);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  background: linear-gradient(to top, rgba(10,20,15,0.7), transparent);
  opacity: 0;
  transition: opacity 0.25s;
}

.rhc-cell:hover .rhc-label {
  opacity: 1;
}

/* Group photo below */
.recap-group-wrap {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}

.recap-group-img {
  width: 100%;
  height: clamp(280px, 38vw, 520px);
  object-fit: cover;
  object-position: center 18%;
  display: block;
}

/* Mobile stacking */
@media (max-width: 900px) {
  .recap-hero-row {
    grid-template-columns: 1fr;
  }
  .recap-hero-heading,
  .recap-hero-text {
    max-width: 100%;
  }
}

.recap-hero-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: start;
  padding: clamp(3rem, 6vw, 5rem) 0 clamp(2rem, 4vw, 3rem);
}

.recap-hero-heading {
  grid-column: 1 / -1;
  max-width: 100%;
}

.recap-hero-collage {
  grid-column: 1;
}

.recap-hero-text {
  grid-column: 2;
  max-width: 100%;
  padding-top: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;    /* vertically centre against the photos */
}

/* Bigger photos */
.rhc-img {
  width: 100%;
  height: clamp(160px, 18vw, 240px);  /* was 120–180px */
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.rhc-cell--wide .rhc-img {
  height: clamp(130px, 14vw, 190px);  /* was 100–150px */
  object-position: center 35%;
}

/* Bigger text on the right */
.recap-hero-h {
  font-family: var(--f-head);
  font-weight: 800;
  font-size: clamp(1.5rem, 2.8vw, 2.4rem);  /* was 1.1–1.5rem */
  color: #fff;
  line-height: 1.05;
  margin: 0.65rem 0 0.85rem;
}

.recap-hero-p {
  font-size: clamp(0.85rem, 1.1vw, 1rem);   /* was 0.78–0.88rem */
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
}

#recap-gallery a,
#recap-gallery-group a {
  display: block;
  cursor: zoom-in;
}

.rhc-cell--wide .rhc-img {
  height: auto;
  aspect-ratio: 16 / 6;   /* wide cinematic crop */
  object-fit: cover;
  object-position: center 40%;
}

.rc-map-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  flex-direction: column;   /* was row — now stacks text above map */
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.rc-map-thumb {
  position: relative;
  display: block;
  width: 100%;             
  max-width: 100%;         
  border: none;
  background: none;
  padding: 0;
  cursor: default;         
  border-radius: 8px;
  overflow: hidden;
}

.rc-map-thumb a {
  display: block;
  cursor: zoom-in;
  position: relative;
}

.rc-map-section {
  background: var(--bg2);
  padding: var(--section-y) var(--pad-x);
}

.rc-map-thumb-img {
  width: 100%;
  max-height: 1000px;     
  object-fit: cover;
  object-position: center top;
  display: block;
  border-radius: 8px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.rc-map-thumb a:hover .rc-map-thumb-img {
  transform: scale(1.01);
  box-shadow: 0 12px 36px rgba(0,0,0,0.18);
}

.rc-map-hint {
  position: absolute;
  bottom: 0.75rem;
  right: 0.75rem;
  background: rgba(28,61,43,0.82);
  color: rgba(255,255,255,0.85);
  font-family: var(--f-head);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.65rem;
  border-radius: 100px;
  pointer-events: none;
  backdrop-filter: blur(4px);
}