/* =========================================================================
   PHDCCI Himalayan Wellness Festival 2026 — Design System
   Palette: navy + bright gold + cream. Type: Cormorant Garamond + Mulish.
   ========================================================================= */

:root {
  /* Colour */
  --green:        #1E3E77;  /* brighter royal blue (primary) */
  --green-2:      #2F5AA0;  /* mid blue */
  --green-deep:   #0F1F45;  /* deep blue (dark backgrounds) */
  --gold:         #F5C24C;  /* bright brand gold */
  --gold-soft:    #F8DA97;  /* light gold */
  --gold-bright:  #FFD658;  /* highlight gold */
  --gold-ink:     #9C6F16;  /* gold for text on light bg */
  --cream:        #EEF2F9;  /* cool fresh light */
  --cream-2:      #E4EBF5;
  --white:        #FFFFFF;
  --ink:          #1e2433;
  --ink-soft:     #566079;
  --line:         #dde3ee;

  /* Type */
  --display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --body:    'Plus Jakarta Sans', -apple-system, 'Segoe UI', Roboto, sans-serif;

  /* Rhythm */
  --shell: 1200px;
  --gutter: clamp(20px, 5vw, 48px);
  --section-y: clamp(64px, 9vw, 64px);
  --radius: 16px;
  --radius-sm: 10px;

  --shadow-sm: 0 4px 18px rgba(22,41,77,.08);
  --shadow-md: 0 16px 44px rgba(22,41,77,.14);
  --ease: cubic-bezier(.4, 0, .2, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-size: 17px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }

/* ---------- Type ---------- */
h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 500;
  line-height: 1.1;
  color: var(--green-deep);
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.6rem, 6.5vw, 5rem); font-weight: 400; }
h2 { font-size: clamp(2rem, 4.4vw, 3.4rem); }
h3 { font-size: clamp(1.3rem, 2.3vw, 1.75rem); }
p  { color: var(--ink-soft); }

.eyebrow {
  font-family: var(--body);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: "";
  width: 34px; height: 1px;
  background: var(--gold);
  display: inline-block;
}
.eyebrow.center { justify-content: center; }
.eyebrow.center::after {
  content: ""; width: 34px; height: 1px; background: var(--gold); display: inline-block;
}

/* ---------- Layout ---------- */
.shell { width: min(var(--shell), 100% - (var(--gutter) * 2)); margin-inline: auto; }
.section { padding-block: var(--section-y); position: relative; }
.section--cream  {
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 100%);
  position: relative; overflow: hidden;
}
.section--cream::before {
  content: ""; position: absolute; top: -30%; right: -8%; width: 42vw; height: 42vw;
  background: radial-gradient(circle, rgba(245,194,76,.16), transparent 62%);
  pointer-events: none; z-index: 0;
}
.section--cream > .shell { position: relative; z-index: 1; }
.section--white  { background: var(--white); }
.section--soft   { background: var(--cream-2); }
.section--green  { background: var(--green); color: #dfeae5; }
.section--green h2, .section--green h3 { color: var(--white); }

.section-head { max-width: 720px; margin-bottom: clamp(38px, 5vw, 64px); }
.section-head.center { margin-inline: auto; text-align: center;display: flex;
    flex-direction: column; }
.section-head h2 { margin-top: 14px; }
.section-head p { margin-top: 18px; font-size: 1.08rem; }

.lede { font-size: clamp(1.1rem, 1.6vw, 1.3rem); color: var(--ink-soft); }

/* ---------- Buttons ---------- */
.btn {
  --bg: var(--gold); --fg: var(--green-deep);
  position: relative; overflow: hidden;
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--body); font-weight: 700; font-size: .9rem;
  letter-spacing: .04em; text-transform: uppercase;
  padding: 15px 32px; border-radius: 8px; border: 1.5px solid transparent;
  background: var(--bg); color: var(--fg); cursor: pointer;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease), color .3s var(--ease);
}
/* shine sweep on hover */
.btn::before {
  content: ""; position: absolute; top: 0; bottom: 0; left: -60%; width: 40%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.45), transparent);
  transform: skewX(-18deg); transition: left .6s var(--ease);
}
.btn:hover::before { left: 130%; }
.btn i { transition: transform .3s var(--ease); }
.btn:hover i { transform: translateX(4px); }
.btn:hover { transform: translateY(-2px); box-shadow: 0 10px 26px rgba(245,194,76,.45); }
.btn--green { --bg: var(--green); --fg: #fff; }
.btn--green:hover { box-shadow: 0 10px 26px rgba(22,41,77,.35); }
.btn--outline { background: transparent; border-color: var(--gold); color: var(--gold); }
.btn--outline:hover { background: var(--gold); color: var(--green-deep); box-shadow: none; }
.btn--ghost-light { background: transparent; border-color: rgba(255,255,255,.5); color: #fff; }
.btn--ghost-light:hover { background: #fff; color: var(--green); box-shadow: none; }
.btn .fa-solid, .btn .fa-brands { font-size: .85em; }

/* ==========================================================================
   HEADER / NAV
   ========================================================================== */
/*.site-header {*/
/*  position: relative; z-index: 900;*/
/*}*/
.site-header.scrolled {
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(10px);
  padding: 0px 0;
  box-shadow: 0 4px 24px rgba(0,0,0,.06);
}

/* Make Entire Header (Logos + Navigation) Sticky */
.site-header {
  position: sticky !important;
  top: 0 !important;
  z-index: 1000 !important;
  width: 100% !important;
  background: #ffffff !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12) !important;
}

.site-header .site-nav {
  position: static !important;
  box-shadow: none !important;
}

.header-partners {
  background: #ffffff !important;
  border-bottom: 1px solid var(--line) !important;
}

/* When the mobile drawer is open, an ancestor with backdrop-filter/filter/transform
   would make the fixed drawer + backdrop anchor to the (short) header box instead of
   the viewport. Neutralise it so they span the full screen correctly. */
body.nav-open .site-header,
body.nav-open .site-header.scrolled {
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  transform: none;
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; flex-direction: column; line-height: 1; }
.brand__mark {
  font-family: var(--display); font-size: 1.35rem; color: #fff; font-weight: 500;
  transition: color .35s var(--ease);
}
.brand__sub {
  font-size: .62rem; letter-spacing: .25em; text-transform: uppercase;
  color: var(--gold); font-weight: 800; margin-top: 4px;
}
.scrolled .brand__mark { color: var(--green-deep); }

.nav-menu { display: flex; align-items: center; gap: 4px; }
.nav-menu a {
  font-size: .9rem; font-weight: 600; color: #fff; padding: 10px 14px;
  border-radius: 8px; transition: color .25s, background .25s; position: relative;
}
.scrolled .nav-menu a { color: var(--green-deep); }
.nav-menu a:hover, .nav-menu a.active { color: var(--gold); }
.nav-cta { margin-left: 8px; }

.nav-toggle {
  display: none; background: none; border: 0; cursor: pointer; padding: 8px;
  flex-direction: column; gap: 5px;
}
.nav-toggle span { width: 26px; height: 2px; background: #fff; transition: .3s; }
.scrolled .nav-toggle span { background: var(--green-deep); }

@media (max-width: 992px) {
  .nav-toggle { display: flex; position: relative; z-index: 1003; }
  .nav-menu {
    position: fixed; top: 0; bottom: 0; right: 0; width: min(320px, 85vw);
    background: var(--green); flex-direction: column; align-items: flex-start;
    gap: 6px; padding: 96px 28px 40px; transform: translateX(100%);
    transition: transform .4s var(--ease); box-shadow: -20px 0 50px rgba(0,0,0,.25);
    z-index: 1002; overflow-y: auto;
  }
  .nav-menu.open { transform: translateX(0); }
  .nav-menu a { color: #fff !important; width: 100%; font-size: 1rem; padding: 12px 4px; }
  .nav-menu a:hover, .nav-menu a.active { color: var(--gold-soft) !important; }
  .nav-cta { margin: 16px 0 0; width: 100%; }
  /* CTA must contrast against the navy drawer — use gold, not the navy button */
  .nav-menu .nav-cta .btn { background: var(--gold); color: var(--green-deep) !important; width: 100%; justify-content: center; }
  .nav-menu .nav-cta .btn:hover { background: var(--gold-soft); }
  body.nav-open { overflow: hidden; }

  /* Backdrop */
  .nav-backdrop {
    position: fixed; top: 0; right: 0; bottom: 0; left: 0;
    background: rgba(8, 15, 30, .55); opacity: 0; visibility: hidden;
    transition: opacity .35s var(--ease), visibility .35s var(--ease); z-index: 1001;
  }
  /*.nav-backdrop.show { opacity: 1; visibility: visible; }*/

  /* Hamburger morphs into an X, kept white over the navy drawer */
  .nav-toggle.open span { background: #fff; }
  .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}
.nav-backdrop { display: none; }
@media (max-width: 992px) { .nav-backdrop { display: block; } }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative; min-height: auto; display: flex; align-items: center;
  color: #fff; overflow: hidden; background: #0F1F45;
}
/* Banner image as its own layer so it can gently zoom (ken-burns) */
.hero__photo {
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: url('../images/hero-banner-1.jpg') center/cover no-repeat;
  transform: scale(1.06); animation: heroZoom 18s ease-out forwards; z-index: 0;
}
/* Scrim: dark on the left for text legibility, clearer on the right to reveal the mountains */
.hero::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; bottom: 0; z-index: 1;
  background:
    linear-gradient(90deg, rgba(8,17,38,.85) 0%, rgba(9,18,42,.62) 30%, rgba(10,20,44,.28) 55%, rgba(12,23,48,.05) 80%, rgba(12,23,48,0) 100%),
    linear-gradient(to top, rgba(8,17,38,.55) 0%, rgba(8,17,38,0) 38%);
}
@keyframes heroZoom { to { transform: scale(1); } }
.hero__mountains { position: absolute; bottom: 0; left: 0; right: 0; width: 100%; z-index: 1; }
.hero__glow {
  position: absolute; top: -10%; right: -5%; width: 55vw; height: 55vw;
  background: radial-gradient(circle, rgba(245,194,76,.35), transparent 62%);
  z-index: 0; filter: blur(10px);
}
.hero__inner { position: relative; z-index: 3; padding: 140px 0 200px; max-width: 860px; text-shadow: 0 1px 14px rgba(0,0,0,.32); }
.hero__kicker {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: .8rem; font-weight: 800; letter-spacing: .28em; text-transform: uppercase;
  color: var(--gold-soft); margin-bottom: 26px;
}
.hero__kicker::before { content:""; width: 40px; height:1px; background: var(--gold); }
.hero h1 { color: #fff; }
.hero h1 em { font-style: italic; color: var(--gold-soft); }
.hero__tag {
  font-family: var(--display); font-style: italic; font-size: clamp(1.2rem, 2.4vw, 1.7rem);
  color: var(--gold-soft); margin: 22px 0 10px;
}
.hero__meta {
  display: flex; flex-wrap: wrap; gap: 14px 34px; margin: 30px 0 38px;
  font-size: .98rem; color: #cdd9ef;
}
.hero__meta span { display: inline-flex; align-items: center; gap: 10px; }
.hero__meta i { color: var(--gold); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 16px; }
.hero__scroll {
  position: absolute; bottom: 34px; left: 50%; transform: translateX(-50%);
  z-index: 3; font-size: .7rem; letter-spacing: .25em; text-transform: uppercase;
  color: #c3d0e6; display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.hero__scroll::after {
  content: ""; width: 1px; height: 40px;
  background: linear-gradient(var(--gold), transparent); animation: scrolldot 2s infinite;
}
@keyframes scrolldot { 0%,100%{opacity:.3;} 50%{opacity:1;} }

/* ==========================================================================
   HORIZON DIVIDER (signature)
   ========================================================================== */
.horizon { display: block; width: 100%; line-height: 0; }
.horizon svg { width: 100%; height: auto; display: block; }

/* ==========================================================================
   STAT / QUICK FACTS BAR
   ========================================================================== */
.facts { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border-radius: var(--radius); overflow: hidden; }
.fact { background: var(--white); padding: 34px 26px; text-align: center; }
.fact__num { font-family: var(--display); font-size: clamp(2rem, 3.5vw, 2.9rem); color: var(--gold); line-height: 1; }
.fact__num span { color: var(--gold); }
.fact__label { margin-top: 10px; font-size: .82rem; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-soft); font-weight: 700; }
@media (max-width: 760px){ .facts { grid-template-columns: repeat(2,1fr); } }

/* ==========================================================================
   SPLIT (image + text)
   ========================================================================== */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.split--reverse .split__media { order: 2; }
.split__media {
  position: relative; border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 4/5; box-shadow: var(--shadow-md);
  background: linear-gradient(135deg, #2a4d8f, #0f1f45);
}
.split__media img { width:100%; height:100%; object-fit: cover; }
.split__media .ph { display:flex; align-items:center; justify-content:center; height:100%; color: rgba(255,255,255,.4); font-size:.85rem; text-align:center; padding:20px; }
.split__badge {
  position: absolute; bottom: 22px; left: 22px; background: var(--gold);
  color: #fff; padding: 12px 20px; border-radius: 100px; font-weight: 700; font-size: .85rem;
  box-shadow: var(--shadow-sm);
}
.split__body h2 { margin: 14px 0 20px; }
.split__body p + p { margin-top: 16px; }
@media (max-width: 860px){
  .split { grid-template-columns: 1fr; }
  .split--reverse .split__media { order: 0; }
  .split__media { aspect-ratio: 16/11; }
}

/* ==========================================================================
   CARD GRIDS
   ========================================================================== */
.grid { display: grid; gap: 24px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px){ .grid--4 { grid-template-columns: repeat(2,1fr); } .grid--3 { grid-template-columns: repeat(2,1fr);} }
@media (max-width: 620px){ .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; } }

.card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 32px 28px; transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.card__icon {
  width: 56px; height: 56px; border-radius: 14px; display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(245,194,76,.18), rgba(22,41,77,.12));
  color: var(--green); font-size: 1.35rem; margin-bottom: 20px;
}
.card h3 { font-size: 1.25rem; margin-bottom: 10px; }
.card p { font-size: .96rem; }
.card__num {
  font-family: var(--display); font-size: 1rem; color: var(--gold); font-weight: 600;
  display: block; margin-bottom: 12px;
}

/* pill list (audience) */
.pill-group { margin-top: 22px; }
.pill-group h4 {
  font-family: var(--body); font-size: .78rem; font-weight: 800; letter-spacing: .18em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 14px;
}
.pills { display: flex; flex-wrap: wrap; gap: 10px; }
.pill {
  background: var(--white); border: 1px solid var(--line); border-radius: 100px;
  padding: 9px 18px; font-size: .9rem; font-weight: 600; color: var(--green-deep);
  transition: .25s;
}
.pill:hover { background: var(--green); color: #fff; border-color: var(--green); }
@media (max-width:520px){ .pill {
 
  padding: 9px 10px; font-size: .65rem; font-weight: 600;} }
/* ==========================================================================
   EXPERIENCE ZONES
   ========================================================================== */
.zone {
  border-radius: var(--radius); padding: 40px 36px; height: 100%;
  border: 1px solid var(--line);
}
.zone--carnival { background: linear-gradient(160deg, #fff, #f5f8f5); }
.zone--retreat  { background: linear-gradient(160deg, var(--green), var(--green-deep)); color: #d7e7e0; }
.zone--retreat h3 { color: #fff; }
.zone__tag { font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; font-weight: 800; color: var(--gold); }
.zone ul { margin-top: 20px; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.zone li { display: flex; align-items: center; gap: 10px; font-size: .95rem; font-weight: 600; }
.text-white { color:white; }
.zone--carnival li { color: var(--green-deep); }
.zone li i { color: var(--gold); font-size: .8rem; }
@media (max-width:520px){ .zone ul { grid-template-columns: 1fr; } }

/* ==========================================================================
   TIMELINE
   ========================================================================== */
.timeline { position: relative; margin-top: 40px; }
.tl-day { margin-bottom: 46px; }
.tl-day__head {
  display: flex; align-items: baseline; gap: 16px; margin-bottom: 24px;
  padding-bottom: 14px; border-bottom: 1px solid rgba(255,255,255,.18);
}
.tl-day__n { font-family: var(--display); font-size: 2.4rem; color: var(--gold); line-height: 1; }
.tl-day__label { font-size: .95rem; color: #c3d0e6; }
.tl-items { display: grid; gap: 2px; }
.tl-item {
  display: grid; grid-template-columns: 130px 1fr; gap: 20px; padding: 13px 0;
  border-bottom: 1px dashed rgba(255,255,255,.12); align-items: baseline;
}
.tl-item time { font-weight: 700; color: var(--gold-soft); font-size: .9rem; }
.tl-item p { color: #d7e7e0; margin: 0; font-size: .98rem; }
@media (max-width: 560px){ .tl-item { grid-template-columns: 1fr; gap: 4px; } }

/* ==========================================================================
   PRICING
   ========================================================================== */
.price-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; max-width: 860px; margin-inline: auto; }
.price {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 40px 34px; position: relative; transition: .35s var(--ease);
}
.price:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.price--featured { border-color: var(--gold); box-shadow: var(--shadow-md); }
.price--featured::before {
  content: "Most Popular"; position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: #fff; font-size: .7rem; font-weight: 800; letter-spacing: .12em;
  text-transform: uppercase; padding: 6px 16px; border-radius: 100px;
}
.price__name { font-size: .8rem; letter-spacing: .18em; text-transform: uppercase; font-weight: 800; color: var(--gold); }
.price__amt { font-family: var(--display); font-size: 3rem; color: var(--green-deep); margin: 12px 0 2px; }
.price__amt small { font-size: 1rem; color: var(--ink-soft); font-family: var(--body); }
.price__gst { font-size: .85rem; color: var(--ink-soft); }
.price ul { margin: 24px 0 28px; display: grid; gap: 12px; }
.price li { display: flex; gap: 12px; font-size: .95rem; color: var(--ink); }
.price li i { color: var(--green); margin-top: 4px; }
.price .btn { width: 100%; justify-content: center; }
@media (max-width: 640px){ .price-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   ACCORDION (FAQ)
   ========================================================================== */
.acc { max-width: 800px; margin-inline: auto; }
.acc__item { border-bottom: 1px solid var(--line); }
.acc__q {
  width: 100%; text-align: left; background: none; border: 0; cursor: pointer;
  padding: 22px 0; font-family: var(--display); font-size: 1.15rem; color: var(--green-deep);
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
}
.acc__q i { color: var(--gold); transition: transform .3s; flex: none; }
.acc__item.open .acc__q i { transform: rotate(45deg); }
.acc__a { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.acc__a p { padding: 0 0 22px; font-size: .98rem; }

/* ==========================================================================
   FORMS
   ========================================================================== */
.form-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(28px, 4vw, 48px); box-shadow: var(--shadow-sm);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: .84rem; font-weight: 700; color: var(--green-deep); }
.field label span { color: #c0392b; }
.field input, .field select, .field textarea {
  font-family: var(--body); font-size: 1rem; color: var(--ink);
  padding: 14px 16px; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  background: var(--cream); transition: border-color .25s, box-shadow .25s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--green); box-shadow: 0 0 0 4px rgba(22,41,77,.1); background: #fff;
}
.field textarea { resize: vertical; min-height: 120px; }
.field .err { color: #c0392b; font-size: .8rem; display: none; }
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: #c0392b; }
.field.invalid .err { display: block; }
@media (max-width: 620px){ .form-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   ALERTS
   ========================================================================== */
.alert { border-radius: var(--radius-sm); padding: 16px 20px; font-size: .95rem; margin-bottom: 24px; display: flex; gap: 12px; align-items: flex-start; }
.alert i { margin-top: 3px; }
.alert--ok  { background: #e7f4ee; color: #1c6b4b; border: 1px solid #b6ddca; }
.alert--err { background: #fbeceb; color: #a5312a; border: 1px solid #f0c6c3; }

/* ==========================================================================
   CTA BAND
   ========================================================================== */
.cta-band {
  background: radial-gradient(120% 140% at 20% 10%, #2a4d8f, #0f1f45);
  color: #fff; border-radius: clamp(18px, 3vw, 28px); padding: clamp(44px, 6vw, 80px);
  text-align: center; position: relative; overflow: hidden;
}
.cta-band::after {
  content: ""; position: absolute; top: -40%; right: -10%; width: 40vw; height: 40vw;
  background: radial-gradient(circle, rgba(245,194,76,.25), transparent 60%);
}
.cta-band h2 { color: #fff; position: relative; }
.cta-band p { color: #cdd9ef; max-width: 560px; margin: 16px auto 30px; position: relative; }
.cta-band .hero__actions { justify-content: center; position: relative; }

/* ==========================================================================
   GALLERY
   ========================================================================== */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.gallery a {
  aspect-ratio: 1; border-radius: 12px; overflow: hidden; position: relative;
  background: linear-gradient(135deg, #2a4d8f, #0f1f45); display:grid; place-items:center;
  color: rgba(255,255,255,.45); font-size: .8rem;
}
.gallery a img { width:100%; height:100%; object-fit: cover; transition: transform .5s var(--ease); }
.gallery a:hover img { transform: scale(1.08); }
.gallery a:nth-child(1), .gallery a:nth-child(6) { grid-row: span 2; aspect-ratio: auto; }
@media (max-width: 700px){ .gallery { grid-template-columns: repeat(2,1fr); } .gallery a:nth-child(1),.gallery a:nth-child(6){grid-row:auto;aspect-ratio:1;} }

/* ==========================================================================
   PARTNERS
   ========================================================================== */
.partners { display: flex; flex-wrap: wrap; gap: 20px; justify-content: center; align-items: center; }
.partner {
  width: 300px; height: 154px; border: 1px solid var(--line); border-radius: 12px;
  display: grid; place-items: center; background: #fff; color: var(--ink-soft);
  font-weight: 700; font-size: .82rem; letter-spacing: .05em;
}

/* ==========================================================================
   PAGE HERO (inner pages)
   ========================================================================== */
.page-hero {
  background: radial-gradient(120% 140% at 75% 0%, #2a4d8f, #1E3E77 45%, #0f1f45);
  color: #fff; padding: 196px 0 90px; position: relative; overflow: hidden; text-align: center;
}
.page-hero__glow { position:absolute; top:-20%; left:-5%; width:45vw; height:45vw; background: radial-gradient(circle, rgba(245,194,76,.25), transparent 60%); }
.page-hero h1 { color: #fff; position: relative; }
.page-hero p { color: #cdd9ef; position: relative; max-width: 620px; margin: 18px auto 0; }
.crumbs { position: relative; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; color: var(--gold-soft); margin-bottom: 18px; }
.crumbs a { opacity: .8; } .crumbs a:hover { opacity: 1; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer { background: var(--green-deep); color: #aeb9d0; padding: 76px 0 30px; font-size: .93rem; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 40px; }
.site-footer h4 { color: #fff; font-family: var(--body); font-size: .82rem; letter-spacing: .18em; text-transform: uppercase; margin-bottom: 20px; font-weight: 800; }
.site-footer a:hover { color: var(--gold); }
.footer-brand__mark { font-family: var(--display); font-size: 1.5rem; color: #fff; }
.footer-brand p { color: #93a3c2; margin-top: 14px; max-width: 300px; }
.footer-links li { margin-bottom: 12px; }
.footer-contact li { margin-bottom: 14px; display: flex; gap: 12px; }
.footer-contact i { color: var(--gold); margin-top: 4px; }
.newsletter { display: flex; margin-top: 8px; border-radius: 100px; overflow: hidden; background: rgba(255,255,255,.08); }
.newsletter input { flex: 1; background: transparent; border: 0; padding: 13px 18px; color: #fff; font-family: var(--body); }
.newsletter input::placeholder { color: #8592b0; }
.newsletter input:focus { outline: none; }
.newsletter button { background: var(--gold); border: 0; color: #fff; padding: 0 20px; cursor: pointer; font-size: 1rem; }
.socials { display: flex; gap: 12px; margin-top: 20px; }
.socials a { width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(255,255,255,.2); display: grid; place-items: center; color: #cdd9ef; transition: .25s; }
.socials a:hover { background: var(--gold); border-color: var(--gold); color: #fff; }
.footer-bottom { margin-top: 56px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,.12); display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; font-size: .82rem; color: #8592b0; }
@media (max-width: 900px){ .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px){ .footer-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   BACK TO TOP
   ========================================================================== */
.to-top {
  position: fixed; bottom: 26px; right: 26px; z-index: 900;
  width: 48px; height: 48px; border-radius: 50%; border: 0; cursor: pointer;
  background: var(--green); color: #fff; font-size: 1.1rem; box-shadow: var(--shadow-md);
  opacity: 0; visibility: hidden; transform: translateY(12px); transition: .3s var(--ease);
}
.to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { background: var(--gold); }

/* ==========================================================================
   AOS-lite (scroll reveal)
   ========================================================================== */
.js [data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.js [data-reveal].in { opacity: 1; transform: none; }

/* utilities */
.center { text-align: center; }
.mt-s { margin-top: 22px; } .mt-m { margin-top: 34px; }
.stack-gap > * + * { margin-top: 16px; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto !important; }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
}
.register-btn{
    color:white;
}
/* ============================================================
   v2 ENHANCEMENTS — logo, brighter gold, hero, pillars, motion
   ============================================================ */

/* Brand logo (colourful logo on a subtle white chip → crisp in both header states) */
.brand__logo {
  height: 46px; width: auto; display: block; background: #fff;
  padding: 5px 9px; border-radius: 10px; box-shadow: 0 5px 16px rgba(0,0,0,.16);
  transition: box-shadow .3s var(--ease), transform .3s var(--ease);
}
.brand:hover .brand__logo { transform: translateY(-1px); }
.scrolled .brand__logo { box-shadow: 0 2px 10px rgba(0,0,0,.08); }

/* Eyebrow + card number stay legible on light sections with the brighter gold */
.section--white .eyebrow, .section--cream .eyebrow,
.section--white .card__num, .section--cream .card__num { color: var(--gold-ink); }
.card__icon { background: linear-gradient(135deg, rgba(231,184,78,.22), rgba(22,41,77,.10)); }
.btn:hover { box-shadow: 0 12px 30px rgba(245,194,76,.5); }

/* Organized-by lockup */
.org-by { display: inline-flex; align-items: center; gap: 12px; margin-bottom: 24px; }
.org-by__label { font-size: .68rem; letter-spacing: .22em; text-transform: uppercase; color: #c3d0e6; font-weight: 800; }
.org-by img { height: 40px; width: auto; background: #fff; padding: 5px 9px; border-radius: 8px; box-shadow: 0 4px 14px rgba(0,0,0,.2); }

/* Hero photo layer (ken-burns) sits behind the scrim */
.hero .shell { position: relative; z-index: 2; }

/* Hero content load animation (staggered) — only when JS present, else content shows */
@keyframes heroUp { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: none; } }
.js .hero__inner > * { opacity: 0; animation: heroUp .95s var(--ease) forwards; }
.js .hero__inner > *:nth-child(1) { animation-delay: .10s; }
.js .hero__inner > *:nth-child(2) { animation-delay: .22s; }
.js .hero__inner > *:nth-child(3) { animation-delay: .34s; }
.js .hero__inner > *:nth-child(4) { animation-delay: .46s; }
.js .hero__inner > *:nth-child(5) { animation-delay: .58s; }
.js .hero__inner > *:nth-child(6) { animation-delay: .70s; }

/* Reveal system: directions + per-element stagger via --d */
.js [data-reveal] { transition-delay: var(--d, 0s); }
.js [data-reveal="left"]  { transform: translateX(-36px); }
.js [data-reveal="right"] { transform: translateX(36px); }
.js [data-reveal="scale"] { transform: scale(.94); }
.js [data-reveal="fade"]  { transform: none; }

/* ---- Festival Pillars — image tiles with hover reveal ---- */
.pillars { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.pillar {
  position: relative; border-radius: 18px; overflow: hidden; isolation: isolate;
  min-height: 380px; display: flex; align-items: flex-end; color: #fff;
  box-shadow: var(--shadow-sm); transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.pillar:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.pillar__img {
  position: absolute; top: 0; left: 0; right: 0; bottom: 0; z-index: -2;
  background-size: cover; background-position: center; transform: scale(1.05);
  transition: transform .7s var(--ease);
}
.pillar:hover .pillar__img { transform: scale(1.13); }
.pillar::after {
  content: ""; position: absolute; top: 0; left: 0; right: 0; bottom: 0; z-index: -1;
  background: linear-gradient(to top, rgba(7,14,32,.94) 6%, rgba(9,18,42,.60) 52%, rgba(12,23,48,.20) 100%);
}
.pillar__body { padding: 28px 24px 30px; width: 100%; }
.pillar__icon {
  width: 54px; height: 54px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(231,184,78,.16); border: 1px solid rgba(231,184,78,.55);
  color: var(--gold-bright); font-size: 1.3rem; margin-bottom: 18px;
  transition: background .35s var(--ease);
}
.pillar:hover .pillar__icon { background: rgba(231,184,78,.30); }
.pillar__kicker { font-size: .66rem; letter-spacing: .26em; text-transform: uppercase; color: var(--gold); font-weight: 800; display: block; margin-bottom: 8px; }
.pillar h3 { font-family: var(--display); font-weight: 600; font-size: 1.85rem; line-height: 1.05; color: #fff; margin: 0 0 10px; }
.pillar p { color: #d6ddec; font-size: .95rem; line-height: 1.5; margin: 0; }
.pillar__bar { position: absolute; left: 0; bottom: 0; height: 4px; width: 0; background: var(--gold); transition: width .55s var(--ease); z-index: 1; }
.pillar:hover .pillar__bar { width: 100%; }
@media (max-width: 900px) { .pillars { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .pillars { grid-template-columns: 1fr; } .pillar { min-height: 300px; } }

/* Partner logos (image) */
.partner img { max-width: 118px; max-height: 136px; width: auto; height: auto; object-fit: contain; display: block; }
.partner--logo { background: #fff; }

/* Motion-safe fallbacks */
@media (prefers-reduced-motion: reduce) {
  .js .hero__inner > * { opacity: 1 !important; animation: none !important; }
  .hero__photo { animation: none !important; transform: none !important; }
  .pillar__img { transition: none !important; }
}

/* ============================================================
   v3 — heading animation, partner-CTA cards, organized-by band
   ============================================================ */

/* Headings reveal: gold rule grows + title wipes up when its head scrolls in */
.section-head { position: relative; }
.js .section-head h2 { clip-path: inset(0 0 110% 0); transform: translateY(14px); opacity: .001; transition: clip-path .8s var(--ease) .12s, transform .8s var(--ease) .12s, opacity .6s var(--ease) .12s; }
.js .section-head.in h2 { clip-path: inset(0 0 -10% 0); transform: none; opacity: 1; }
/* animated gold underline under centered section titles */
.section-head.center h2 { display: inline-block; }
.section-head.center h2::after {
  content: ""; display: block; height: 3px; width: 0; margin: 14px auto 0;
  background: linear-gradient(90deg, var(--gold), var(--gold-bright)); border-radius: 2px;
  transition: width .7s var(--ease) .35s;
}
.js .section-head.center.in h2::after { width: 74px; }

/* Hero H1 subtle continuous shimmer on the gold word (premium, restrained) */
.hero h1 em { background: linear-gradient(100deg, var(--gold-soft), var(--gold-bright), var(--gold-soft)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }

/* ---- Partner CTA cards (Sponsor / Exhibit / Delegate) ---- */
.cta-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.cta-card {
  position: relative; overflow: hidden; border-radius: 18px; padding: 40px 30px 34px;
  background: linear-gradient(160deg, #24488A 0%, var(--green) 55%, var(--green-deep) 100%);
  color: #fff; text-align: left; isolation: isolate;
  box-shadow: var(--shadow-sm); transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.cta-card::after { /* gold corner glow */
  content: ""; position: absolute; top: -40%; right: -30%; width: 60%; height: 90%;
  background: radial-gradient(circle, rgba(245,194,76,.30), transparent 60%); z-index: -1;
  transition: transform .5s var(--ease);
}
.cta-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.cta-card:hover::after { transform: scale(1.25); }
.cta-card__ico {
  width: 60px; height: 60px; border-radius: 14px; display: grid; place-items: center;
  font-size: 1.5rem; color: var(--green-deep); margin-bottom: 22px;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold)); box-shadow: 0 8px 22px rgba(245,194,76,.35);
}
.cta-card h3 { font-family: var(--display); font-weight: 600; font-size: 1.7rem; color: #fff; margin: 0 0 12px; }
.cta-card p { color: #d5deef; font-size: .96rem; line-height: 1.55; margin: 0 0 24px; min-height: 66px; }
.cta-card .clink {
  display: inline-flex; align-items: center; gap: 9px; font-weight: 700; font-size: .82rem;
  letter-spacing: .06em; text-transform: uppercase; color: var(--gold-bright);
}
.cta-card .clink i { transition: transform .3s var(--ease); }
.cta-card:hover .clink i { transform: translateX(5px); }
@media (max-width: 860px) { .cta-cards { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; } .cta-card p { min-height: 0; } }

/* ---- Organized By band (below the closing CTA) ---- */
.orgband { background: var(--cream-2); border-top: 1px solid var(--line); }
.orgband .shell { display: flex; flex-direction: column; align-items: center; gap: 16px; padding-block: 46px; text-align: center; }
.orgband__label { font-size: .72rem; letter-spacing: .28em; text-transform: uppercase; font-weight: 800; color: var(--gold-ink); }
.orgband__logo { height: 78px; width: auto; }
.orgband__note { font-size: .92rem; color: var(--ink-soft); max-width: 640px; }

@media (prefers-reduced-motion: reduce) {
  .js .section-head h2 { clip-path: none !important; transform: none !important; opacity: 1 !important; }
  .js .section-head.center.in h2::after { width: 74px; }
  .hero h1 em { -webkit-text-fill-color: initial; }
}

/* ---- About PHDCCI (image + overlay) ---- */
.about-phd { position: relative; overflow: hidden; color: #fff; }
.about-phd__bg {
  position: absolute; top: 0; left: 0; right: 0; bottom: 0; z-index: -2;
  background: url('../images/main-banner.jpg') center/cover no-repeat; transform: scale(1.04);
}
.about-phd::after {
  content: ""; position: absolute; top: 0; left: 0; right: 0; bottom: 0; z-index: -1;
  background: linear-gradient(120deg, rgba(15,31,69,.95) 0%, rgba(15,31,69,.80) 52%, rgba(30,62,119,.55) 100%);
}
.about-phd .shell { padding-block: clamp(64px, 9vw, 112px); }
.about-phd .eyebrow { color: var(--gold); }
.about-phd h2 { color: #fff; }
.about-phd p { color: #dbe3f2; max-width: 720px; margin-top: 14px; }
.phd-stats { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 30px; }
.phd-stat { border: 1px solid rgba(255,255,255,.22); border-radius: 12px; padding: 16px 22px; background: rgba(255,255,255,.05); }
.phd-stat b { display: block; font-family: var(--display); font-weight: 600; font-size: 1.5rem; color: var(--gold-bright); }
.phd-stat span { font-size: .82rem; color: #cdd6ea; }

/* ---- Inner page-hero headings: gentle load reveal ---- */
.js .page-hero h1, .js .page-hero p, .js .page-hero .crumbs { opacity: 0; animation: heroUp .9s var(--ease) forwards; }
.js .page-hero .crumbs { animation-delay: .05s; }
.js .page-hero h1 { animation-delay: .16s; }
.js .page-hero p  { animation-delay: .30s; }

/* ---- Partner CTA as a premium band ---- */
.section--getinvolved { position: relative; overflow: hidden; background: linear-gradient(180deg, #ffffff 0%, var(--cream) 100%); }
.section--getinvolved::before {
  content: ""; position: absolute; top: 12%; left: 50%; transform: translateX(-50%);
  width: 75vw; height: 75vw; background: radial-gradient(circle, rgba(30,62,119,.07), transparent 60%);
  pointer-events: none; z-index: 0;
}
.section--getinvolved > .shell { position: relative; z-index: 1; }

@media (prefers-reduced-motion: reduce) {
  .js .page-hero h1, .js .page-hero p, .js .page-hero .crumbs { opacity: 1 !important; animation: none !important; }
}

/* ============================================================
   Header second row — partner / organiser logos
   ============================================================ */
.header-partners {
  background: rgba(255,255,255,.97);
  border-top: 1px solid rgba(0,0,0,.05);
  border-bottom: 1px solid var(--line);
  margin-top: 14px;
  max-height: 140px; opacity: 1;
  transition: max-height .4s var(--ease), opacity .3s var(--ease), margin .4s var(--ease), padding .4s var(--ease);
  overflow: hidden;
}
.header-partners__row {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; padding: 10px var(--gutter);
}
.hp-item { display: flex; flex-direction: column; align-items: center; gap: 5px; flex: 1 1 0; min-width: 0; }
.hp-item--main { flex: 0 0 auto; }
.hp-label {
  font-family: var(--body); font-size: .58rem; font-weight: 800; letter-spacing: .14em;
  text-transform: uppercase; color: var(--green); white-space: nowrap;
}
.hp-logo { height: 44px; width: auto; max-width: 100%; object-fit: contain; display: block; }
.hp-logo--main { height: 58px; }

/* Collapse the partner strip once the user scrolls (keeps sticky nav compact) */

/* Tablet */
@media (max-width: 900px) {
  .hp-logo { height: 36px; } .hp-logo--main { height: 46px; }
  .header-partners__row { gap: 14px; }
  .hp-label { font-size: .54rem; letter-spacing: .1em; }
}
/* Mobile — hide labels, keep logos in one tidy row */
@media (max-width: 620px) {
  .header-partners { margin-top: 10px; }
  .header-partners__row { gap: 10px; padding: 8px 14px; }
  .hp-label {font-size: .4rem; }
  .hp-logo { height: 26px; } .hp-logo--main { height: 34px; }
}

/* Brochure success tick */
.brochure-tick {
  width: 74px; height: 74px; border-radius: 50%; margin: 0 auto 22px;
  display: grid; place-items: center; font-size: 1.8rem; color: #fff;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  box-shadow: 0 10px 26px rgba(245,194,76,.45);
}

/* ============================================================
   v6 — logo row on top (scrolls away) + sticky menu bar
   ============================================================ */
.site-header.scrolled { background: transparent; -webkit-backdrop-filter: none; backdrop-filter: none; box-shadow: none; }
.header-partners { margin-top: 0; }

.site-nav {
  position: sticky; top: 0; z-index: 1000;
  background: linear-gradient(90deg, #0F1F45 0%, #1E3E77 100%);
  box-shadow: 0 6px 20px rgba(0,0,0,.18);
}
.site-nav .nav { position: relative; display: flex; align-items: center; justify-content: center; gap: 6px; padding: 8px 0; min-height: 46px; }
.site-nav .nav-menu { display: flex; align-items: center; gap: 4px; }
.site-nav .nav-menu a { color: #fff; }
.site-nav .nav-menu a:hover, .site-nav .nav-menu a.active { color: var(--gold); background: rgba(255,255,255,.07); }
.register-btn, .register-btn:hover { color: var(--green-deep) !important; padding: 11px 22px; }
.nav-toggle span { background: #fff; }

/* Header is in flow now, so heroes don't need to clear a fixed bar */
.hero__inner { padding-top: 64px; padding-bottom: 80px; }
.page-hero    { padding-top: 92px; padding-bottom: 74px; }

@media (max-width: 992px) {
  .site-nav .nav { justify-content: center; }
  .site-nav .nav-toggle { display: flex; position: absolute; right: 16px; top: 50%; transform: translateY(-50%); z-index: 1003; }
}

/* ============================================================
   v9 — mobile nav logo + festival-experience gallery
   ============================================================ */
/* Mobile-only HWF logo to the left of the hamburger */
.nav-mobile-brand { display: none; }
@media (max-width: 992px) {
  .nav-mobile-brand { display: block; position: absolute; left: 16px; top: 50%; transform: translateY(-50%); }
  .nav-mobile-brand img { height: 34px; width: auto; display: block; background: #fff; padding: 4px 7px; border-radius: 8px; box-shadow: 0 3px 10px rgba(0,0,0,.18); }
  .site-nav .nav { min-height: 52px; }
  .mob-hide{
      display:none;
  }
}

/* Festival Experience gallery — responsive, easily extensible */
.xp-gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 18px; }
.xp-gallery__item { margin: 0; position: relative; overflow: hidden; border-radius: 16px; box-shadow: var(--shadow-sm); aspect-ratio: 16 / 10; }
.xp-gallery__item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .6s var(--ease); }
.xp-gallery__item:hover img { transform: scale(1.07); }
.xp-gallery__item figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 20px 18px 16px; color: #fff;
  font-family: var(--display); font-weight: 600; font-size: 1.15rem;
  background: linear-gradient(to top, rgba(15,31,69,.9), rgba(15,31,69,0));
}
@media (max-width: 540px) { .xp-gallery__item { aspect-ratio: 4 / 3; } }

.footer-logo{
    height: 54px;
        width: auto;
        display: block;
        box-shadow: rgba(0, 0, 0, 0.18) 0px 3px 10px;
        background: rgb(255, 255, 255);
        padding: 4px 7px;
        border-radius: 8px;
}
