@import url('https://fonts.googleapis.com/css2?family=Redressed&family=Cinzel+Decorative:wght@700;900&family=Nunito:wght@400;600;700;800&display=swap');

:root {
  --flame:    #FF6B1A;
  --gold:     #F5B800;
  --saffron:  #FF8C00;
  --magenta:  #C0186A;
  --violet:   #5B1FA8;
  --emerald:  #0A7B55;
  --cream:    #FFF8EC;
  --dark:     #1A0A00;
  --charcoal: #2D1A06;
  --text:     #3D1F00;
  --muted:    #7A5C3A;
  --nav-h:    72px;
  --brand-dark: linear-gradient(90deg, #000000 0%, #3533cd 100%);
  --brand-dark-160: linear-gradient(160deg, #000000 0%, #3533cd 100%);
  --brand-dark-180: linear-gradient(180deg, #000000 0%, #3533cd 100%);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }


body {
  font-family: 'Nunito', sans-serif;
  background: var(--cream);
  color: var(--text);
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

/* ── FIREWORKS LAYER (decade section only) ── */
#fw-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
	  background: transparent;	  
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(26,10,0,.92);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  border-bottom: 2px solid var(--gold);
}
.nav-brand {
  display: flex;
  flex-direction: column;
  text-decoration: none;
}
.nav-brand .b1 {
  font-family: 'Redressed', cursive;
  font-size: 1.2rem;
  color: var(--gold);
  letter-spacing: .02em;
  line-height: 1.1;
}
.nav-brand .b2 {
  font-size: .92rem;
  color: var(--cream);
  letter-spacing: .06em;
}

.nav-links {
  display: flex;
  gap: 1.6rem;
  list-style: none;
}
.nav-links a {
  color: #fff;
  text-decoration: none;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  transition: color .2s;
}
.nav-links a:hover { color: var(--gold); }

/* hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 26px; height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    flex-direction: column;
    gap: 0;
    background: rgba(10,4,0,.98);
    padding: 1rem 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease;
    z-index: 99;
  }
  .nav-links.open {
    max-height: 480px;
  }
  .nav-links li a {
    display: block;
    padding: .85rem 2rem;
    font-size: .95rem;
    border-bottom: 1px solid rgba(245,184,0,.12);
  }
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding-bottom: 5vh;
  background: #000;
  overflow: hidden;
}
@media (max-width: 768px) {
  .hero {
    min-height: 100dvh;
    padding-top: var(--nav-h);
    padding-bottom: 2rem;
  }
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  overflow: hidden;
  opacity: .55;
}
.hero-video iframe {
  position: absolute;
  width: 177.78vh; /* 16:9 ratio */
  height: 56.25vw; /* 16:9 ratio */
  min-width: 100%;
  min-height: 100%;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 1.5rem;
}
.hero-eyebrow {
  display: inline-block;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .75rem;
}
.hero-title {
  font-family: 'Redressed', cursive;
  font-size: clamp(2.8rem, 9vw, 6.5rem);
  color: #fff;
  line-height: 1.1;
  text-shadow: 0 0 60px rgba(245,184,0,.6);
  margin-bottom: .5rem;
}
.hero-title span { color: var(--gold); }
.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  color: var(--saffron);
  font-weight: 700;
  margin-bottom: 1.5rem;
  letter-spacing: .05em;
}
.hero-date-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  background: var(--gold);
  color: var(--dark);
  padding: .6rem 2.4rem;
  border-radius: 50px;
  font-weight: 800;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 1.5rem;
  box-shadow: 0 0 30px rgba(245,184,0,.5);
}
.hero-date-badge small {
  font-size: .72rem;
  letter-spacing: .12em;
  opacity: .8;
}
.hero-ctas {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  padding: .7rem 1.8rem;
  border-radius: 50px;
  font-weight: 800;
  font-size: .85rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform .15s, box-shadow .15s;
  cursor: pointer;
  border: 2px solid transparent;
}
.btn:hover { transform: translateY(-2px); }
.btn-flame  { background: var(--flame); color: #fff; }
.btn-flame:hover  { box-shadow: 0 6px 24px rgba(255,107,26,.5); }
.btn-gold   { background: var(--gold); color: var(--dark); }
.btn-gold:hover   { box-shadow: 0 6px 24px rgba(245,184,0,.5); }
.btn-outline { background: transparent; border-color: #fff; color: #fff; }
.btn-outline:hover { background: #fff; color: var(--dark); }
.btn-violet { background: var(--violet); color: #fff; }
.btn-violet:hover { box-shadow: 0 6px 24px rgba(91,31,168,.4); }
.btn-magenta { background: var(--magenta); color: #fff; }
.btn-magenta:hover { box-shadow: 0 6px 24px rgba(192,24,106,.4); }

/* ── SECTIONS ── */
/* position: relative + z-index: 1 layers sections above the
   z-index:-1 canvas. Light sections are fully opaque (fireworks
   hidden). Dark gradient sections use rgba so fireworks glow
   subtly through without washing out text.                     */
section { position: relative; z-index: 1; }

.section-pad { padding: 5rem 1.5rem; }

.container {
  max-width: 1100px;
  margin: 0 auto;
}

.section-label {
  display: inline-block;
  font-size: .85rem;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--saffron);
  margin-bottom: .5rem;
}
.section-title {
  font-family: 'Cinzel Decorative', serif;
  font-size: clamp(1.4rem, 4vw, 2.4rem);
  color: var(--dark);
  margin-bottom: 1rem;
  line-height: 1.2;
}
.section-title.light { color: #fff; }
.divider {
  width: 60px; height: 4px;
  background: linear-gradient(90deg, var(--flame), var(--gold));
  border-radius: 2px;
  margin: 0 0 1.5rem;
}
.divider.center { margin: 0 auto 1.5rem; }

/* ── TYPOGRAPHY UTILITIES ── */
/* Consistent scale — nothing smaller than .85rem on this site */
.text-body   { font-size: 1.05rem; line-height: 1.8;  color: var(--text); }
.text-lead   { font-size: 1.15rem; line-height: 1.85; color: var(--text); }
.text-note { font-size: 0.95rem; line-height: 1.7; color: var(--muted); margin-bottom: 1rem; }
.text-light  { color: rgba(255,255,255,.78); }
.text-gold   { color: var(--gold); }
.text-flame  { color: var(--flame); font-weight: 700; }
.text-muted  { color: var(--muted); }
.link-flame  { color: var(--flame); font-weight: 700; text-decoration: none; }
.link-flame:hover { text-decoration: underline; }
.link-gold   { color: var(--gold); text-decoration: none; }
.link-gold:hover { text-decoration: underline; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 1.5rem; }
.sponsors-intro { font-size: 1.05rem; color: var(--muted); line-height: 1.8; margin-bottom: 2rem; }
.sponsors-supporters-title {
  font-family: 'Cinzel Decorative', serif;
  font-size: 1.1rem;
  color: var(--dark);
  margin: 2.5rem 0 .75rem;
}

/* ── ABOUT ── — fully opaque, fireworks hidden */
.about-bg {
  background: #fff;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; }
}
.about-text p {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 1rem;
}
.fact-pills {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: 1.5rem;
}
.fact-pill {
  background: var(--cream);
  border: 1.5px solid var(--gold);
  color: var(--charcoal);
  padding: .35rem 1rem;
  border-radius: 50px;
  font-size: .95rem;
  font-weight: 700;
}
.social-row {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}
.social-row a {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .95rem;
  font-weight: 800;
  text-decoration: none;
  color: var(--muted);
  transition: color .2s;
}
.social-row a:hover { color: var(--flame); }
.social-row img {
  width: 28px; height: 28px;
  object-fit: contain;
}

/* about feature card */
.about-feature {
  background: var(--brand-dark-180);
  border-radius: 24px;
  padding: 2.5rem;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.about-feature::before {
  content: '🪔';
  position: absolute;
  font-size: 8rem;
  right: -1rem; bottom: -1rem;
  opacity: .15;
  line-height: 1;
}
.about-feature h3 {
  font-family: 'Cinzel Decorative', serif;
  font-size: 1.3rem;
  color: var(--gold);
  margin-bottom: 1rem;
}
.about-feature ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .6rem;
}
.about-feature li {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: 1rem;
  line-height: 1.5;
}
.about-feature li::before {
  content: '';
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── HIGHLIGHTS / PARTICIPATE ── dark, fireworks glow through */
.highlights-bg {
  background: linear-gradient(160deg,
    rgba(0,0,0,.98) 10%,
    rgba(53,51,205,.98) 100%);
}
.highlights-bg .section-title { color: var(--gold); }

/* Horizontal swipe carousel */
.cards-scroll-wrap {
  position: relative;
  margin-top: 2.5rem;
}
.cards-track {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 1rem;
  scrollbar-width: thin;
  scrollbar-color: var(--gold) rgba(255,255,255,.1);
}
.cards-track::-webkit-scrollbar { height: 4px; }
.cards-track::-webkit-scrollbar-track { background: rgba(255,255,255,.1); border-radius: 2px; }
.cards-track::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }
.scroll-hint {
  text-align: center;
  color: rgba(255,255,255,.4);
  font-size: .9rem;
  letter-spacing: .1em;
  margin-top: .5rem;
}

.card {
  border-radius: 18px;
  overflow: hidden;
  text-align: center;
  padding: 0 0 1.25rem;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  transition: transform .2s, box-shadow .2s;
  cursor: pointer;
  /* Fixed width so they stay in one row */
  min-width: 315px;
  max-width: 315px;
  flex-shrink: 0;
  scroll-snap-align: start;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,.4); }

/* Photo area at top of card */
.card-photo {
  width: 100%;
  height: 140px;
  object-fit: cover;
  display: block;
  background: rgba(255,255,255,.08);
  /* fallback icon centered when no real image yet */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  flex-shrink: 0;
}
.card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.card-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .45rem;
  padding: .5rem 1rem 0;
  flex: 1;
}
.card h3 {
  font-family: 'Cinzel Decorative', serif;
  font-size: .95rem;
  line-height: 1.3;
}
.card p {
  font-size: 1rem;
  line-height: 1.55;
  opacity: .88;
}
.card-link {
  font-size: .88rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-top: auto;
  text-decoration: none;
  opacity: .85;
}
.card-link:hover { opacity: 1; }

/* card color themes */
.card-purple { background: linear-gradient(180deg, #5B1FA8, #3B0F6E); color: #fff; }
.card-purple .card-link { color: var(--gold); }

.card-flame { background: linear-gradient(180deg, #FF6B1A, #C0390A); color: #fff; }
.card-flame .card-link { color: #FFD580; }

.card-magenta { background: linear-gradient(180deg, #C0186A, #8A0B47); color: #fff; }
.card-magenta .card-link { color: #FFD0E8; }

.card-teal { background: linear-gradient(180deg, #0A7B55, #055C3E); color: #fff; }
.card-teal .card-link { color: #80FFD4; }

.card-blue { background: linear-gradient(180deg, #1A4FA0, #0D2F6B); color: #fff; }
.card-blue .card-link { color: #A0C8FF; }

.card-gold { background: linear-gradient(180deg, #D4940A, #A06A00); color: #fff; }
.card-gold .card-link { color: #FFE8A0; }

.card-rose { background: linear-gradient(180deg, #B03060, #701C3E); color: #fff; }
.card-rose .card-link { color: #FFB8D0; }

.card-indigo { background: linear-gradient(180deg, #3B3FA8, #23257A); color: #fff; }
.card-indigo .card-link { color: #C0C8FF; }

/* ── SCHEDULE ── fully opaque, fireworks hidden */
.schedule-bg { background: var(--cream); }
.timeline {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 80px; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--gold), var(--flame), var(--magenta));
}
.tl-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.1rem 0;
  position: relative;
}
.tl-time {
  width: 72px;
  text-align: right;
  font-size: .9rem;
  font-weight: 800;
  color: var(--muted);
  padding-top: .15rem;
  flex-shrink: 0;
  line-height: 1.2;
}
.tl-dot {
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid var(--cream);
  flex-shrink: 0;
  margin-top: .2rem;
  position: relative;
  left: 0;
  z-index: 1;
}
.tl-body h4 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: .2rem;
}
.tl-body p {
  font-size: .95rem;
  color: var(--muted);
  line-height: 1.5;
}
.tl-highlight .tl-dot { background: var(--flame); }
.tl-highlight .tl-body h4 { color: var(--magenta); }

@media (max-width: 520px) {
  .timeline::before { left: 58px; }
  .tl-time { width: 52px; font-size: .7rem; }
}

/* ── SPONSORS ── fully opaque, fireworks hidden */
.sponsors-bg { background: #fff; }
.sponsor-tier {
  margin-bottom: 2.5rem;
}
.tier-label {
  display: inline-block;
  padding: .3rem 1.1rem;
  border-radius: 50px;
  font-size: .85rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.tier-platinum { background: var(--dark); color: var(--gold); }
.tier-gold     { background: var(--gold); color: var(--dark); }
.tier-silver   { background: #c0c0c0; color: #333; }
.sponsor-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}
.sponsor-logo {
  background: var(--cream);
  border: 1.5px solid rgba(245,184,0,.3);
  border-radius: 14px;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sponsor-logo img {
  max-height: 80px;
  max-width: 160px;
  object-fit: contain;
  filter: grayscale(20%);
  transition: filter .2s;
}
.sponsor-logo:hover img { filter: none; }

.supporter-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}
.supporter-logo {
  background: var(--cream);
  border: 1px solid rgba(0,0,0,.07);
  border-radius: 12px;
  padding: .75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .2s;
}
.supporter-logo:hover { transform: scale(1.04); }
.supporter-logo img {
  max-height: 70px;
  max-width: 120px;
  object-fit: contain;
}

/* ── CONTACT ── dark, fireworks glow through */
.contact-bg {
  background: linear-gradient(160deg,
    rgba(0,0,0,.98) 30%,
    rgba(53,51,205,.95) 100%);
}
.contact-bg .section-title { color: var(--gold); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 2.5rem;
}
@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; }
}
.contact-info h3 {
  font-family: 'Cinzel Decorative', serif;
  font-size: 1rem;
  color: var(--gold);
  margin-bottom: .5rem;
}
.contact-info p, .contact-info a {
  font-size: 1rem;
  color: rgba(255,255,255,.75);
  line-height: 1.7;
  text-decoration: none;
}
.contact-info a:hover { color: var(--gold); }
.contact-info .social-row a { color: rgba(255,255,255,.6); }
.contact-info .social-row a:hover { color: var(--gold); }

form {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
}
@media (max-width: 520px) {
  .form-row { grid-template-columns: 1fr; }
}
form input, form textarea {
  width: 100%;
  padding: .75rem 1rem;
  border-radius: 10px;
  border: 1.5px solid rgba(245,184,0,.25);
  background: rgba(255,255,255,.07);
  color: #fff;
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  outline: none;
  transition: border-color .2s;
}
form input::placeholder, form textarea::placeholder { color: rgba(255,255,255,.35); }
form input:focus, form textarea:focus { border-color: var(--gold); }
form textarea { resize: vertical; min-height: 100px; }
.spam-row {
  display: flex;
  align-items: center;
  gap: .75rem;
}
.spam-row label {
  color: rgba(255,255,255,.6);
  font-size: 1rem;
}
.spam-row input { flex: 1; max-width: 80px; }

/* ── DECADE SECTION ── dark, fireworks glow through */
.decade-bg {
  background: linear-gradient(160deg,
    rgba(0,0,0,.90) 10%,
    rgba(53,51,205,.86) 100%);
  position: relative;
  overflow: hidden;
}
.decade-bg::before {
  content: '10';
  position: absolute;
  right: -2rem; top: 50%;
  transform: translateY(-50%);
  font-family: 'Redressed', cursive;
  font-size: clamp(12rem, 30vw, 22rem);
  color: rgba(245,184,0,.06);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.decade-inner {
  max-width: 760px;
}
.decade-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--gold);
  color: var(--dark);
  padding: .4rem 1.2rem;
  border-radius: 50px;
  font-size: .88rem;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.decade-title {
  font-family: "Cinzel Decorative", serif;
  /*font-size: clamp(2.2rem, 6vw, 4.5rem);*/
  color: #fff;
  line-height: 1.1;
  margin-bottom: .5rem;
}
.decade-title span { color: var(--gold);       font-size: clamp(1.6rem, 4vw, 3.5rem);}
.decade-sub {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  color: var(--saffron);
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.decade-body {
  font-size: 1.15rem;
  color: rgba(255,255,255,.82);
  line-height: 1.85;
  margin-bottom: 2rem;
}
.decade-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.decade-stat {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(245,184,0,.25);
  border-radius: 14px;
  padding: 1rem 1.5rem;
  text-align: center;
  min-width: 130px;
  flex: 1;
}
.decade-stat .num {
  font-family: 'Redressed', cursive;
  font-size: 2.2rem;
  color: var(--gold);
  line-height: 1;
  display: block;
}
.decade-stat .lbl {
  font-size: .88rem;
  color: rgba(255,255,255,.55);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-top: .3rem;
  display: block;
}

/* ── DONATE STRIP ── */
.donate-strip {
  background: linear-gradient(90deg, var(--flame), var(--magenta));
  padding: 1.8rem 1.5rem;
  text-align: center;
  color: #fff;
}
.donate-strip p {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: .75rem;
}

/* ── FOOTER ── */
footer {
  background: #0D0500;
  color: rgba(255,255,255,.5);
  text-align: center;
  padding: 2rem 1.5rem;
  font-size: .95rem;
  line-height: 1.8;
}
footer a { color: var(--gold); text-decoration: none; }
footer a:hover { text-decoration: underline; }

/* section-scoped canvas elements */
#flames-canvas, #rangoli-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}
.section-content {
  position: relative;
  z-index: 1;
}
.btn-submit { align-self: flex-start; }
.contact-credit {
  margin-top: 1.5rem;
  font-size: .9rem;
  color: rgba(255,255,255,.45);
  line-height: 1.7;
}
.skip-link {
  position: absolute;
  top: -9999px; left: 1rem;
  background: var(--gold);
  color: var(--dark);
  padding: .5rem 1rem;
  border-radius: 4px;
  font-weight: 800;
  z-index: 999;
}
.skip-link:focus { top: .5rem; }

/* ── BACK TO TOP ── */
#btt {
  position: fixed;
  bottom: 1.5rem; right: 1.5rem;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--dark);
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 50;
  box-shadow: 0 4px 16px rgba(0,0,0,.3);
  transition: transform .15s;
}
#btt.visible { display: flex; }
#btt:hover { transform: translateY(-2px); }

/* ── PAGE HERO (subpages) ── */
.page-hero {
  position: relative;
  min-height: 280px;
  display: flex;
  align-items: flex-end;
  padding: calc(var(--nav-h) + 3rem) 1.5rem 3rem;
  background: var(--brand-dark-160);
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.4);
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .35;
}
.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}
.page-hero-label {
  display: inline-block;
  font-size: .85rem;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--saffron);
  margin-bottom: .5rem;
}
.page-hero-title {
  font-family: 'Redressed', cursive;
  font-size: clamp(2rem, 6vw, 4rem);
  color: #fff;
  line-height: 1.1;
  text-shadow: 0 0 40px rgba(245,184,0,.5);
}
.page-hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,.78);
  margin-top: .5rem;
}

/* ── SUBPAGE LAYOUT ── */
.subpage-main { padding-top: var(--nav-h); }
.content-section {
  padding: 4rem 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

/* ── NAV active state ── */
.nav-links a.active { color: var(--gold); }
