@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,400;12..96,600;12..96,800&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;1,9..40,300&display=swap');

:root {
  --c-orange: #FA6B20;
  --c-orange-light: #ff9a63;
  --c-dark: #0F1110;
  --c-dark2: #1A1D1B;
  --c-dark3: #242825;
  --c-grey: #8A8E8B;
  --c-light: #F2F0EB;
  --c-white: #FFFFFF;
  --c-green: #2D6A2F;
  --c-bg:       #FAF9F6;
  --c-bg2:      #F2F0EB;
  --c-bg3:      #E8E5DE;
  --c-text:     #1A1A18;
  --c-text2:    #4A4A44;
  --c-text3:    #7A7A72;
  --c-border:   rgba(26,26,24,0.10);
  --c-border2:  rgba(26,26,24,0.06);

  --font-display: 'Bricolage Grotesque', sans-serif;
  --font-body: 'DM Sans', sans-serif;

  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--c-bg);
  color: var(--c-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 clamp(1.5rem, 5vw, 3rem);
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(250,249,246,0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--c-border);
}

.nav-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--c-text);
  text-decoration: none;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-logo span { color: var(--c-orange); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}

.nav-links a {
  color: var(--c-text2);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 400;
  padding: 0.45rem 0.85rem;
  border-radius: 8px;
  transition: color var(--transition), background var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--c-text);
  background: var(--c-bg2);
}

.nav-links a.nav-cta {
  background: var(--c-orange);
  color: var(--c-white);
  font-weight: 500;
  margin-left: 0.5rem;
}

.nav-links a.nav-cta:hover {
  background: var(--c-orange-light);
}

/* Mobile nav */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--c-text);
  border-radius: 2px;
  transition: var(--transition);
}

@media (max-width: 768px) {
  .nav-hamburger { display: flex; }

  .nav-links {
    display: none;
    position: fixed;
    top: 68px; left: 0; right: 0;
    flex-direction: column;
    background: var(--c-bg);
    padding: 1.5rem;
    gap: 0.5rem;
    border-bottom: 1px solid var(--c-border);
  }

  .nav-links.open { display: flex; }
  .nav-links a { width: 100%; font-size: 1rem; padding: 0.75rem 1rem; }
  .nav-links a.nav-cta { margin-left: 0; text-align: center; }
}

/* ── PAGE WRAPPER ── */
main { padding-top: 68px; }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: calc(100svh - 68px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3rem, 8vw, 6rem) clamp(1.5rem, 5vw, 3rem);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 60% 40%, rgba(245,86,10,0.18) 0%, transparent 70%),
              radial-gradient(ellipse 50% 40% at 20% 80%, rgba(45,106,47,0.12) 0%, transparent 60%),
              var(--c-dark);
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23F2F0EB' fill-opacity='0.025'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(245, 86, 10, 0.15);
  border: 1px solid rgba(245, 86, 10, 0.3);
  color: var(--c-orange-light);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 0.85rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.8rem, 8vw, 5.5rem);
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--c-white);
  margin-bottom: 0.25rem;
}

.hero h1 .accent { color: var(--c-orange); }

.hero-date {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 3vw, 1.6rem);
  font-weight: 600;
  color: rgba(242,240,235,0.5);
  letter-spacing: -0.01em;
  margin-bottom: 1.75rem;
}

.hero p {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(242,240,235,0.7);
  max-width: 520px;
  margin-bottom: 2.5rem;
  font-weight: 300;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  border-radius: 10px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all var(--transition);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--c-orange);
  color: var(--c-white);
}

.btn-primary:hover {
  background: var(--c-orange-light);
  transform: translateY(-1px);
  box-shadow: 0 8px 25px rgba(245,86,10,0.35);
}

.btn-secondary {
  background: var(--c-bg2);
  color: var(--c-text);
  border: 1px solid var(--c-border);
}

.btn-secondary:hover {
  background: var(--c-bg3);
  transform: translateY(-1px);
}

/* ── COUNTDOWN ── */
.countdown {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 3rem;
}

.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.countdown-num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: var(--c-text);
  line-height: 1;
  letter-spacing: -0.04em;
  min-width: 3ch;
  text-align: center;
}

.countdown-label {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-text3);
  margin-top: 0.3rem;
}

/* ── SECTIONS ── */
.section {
  padding: clamp(4rem, 8vw, 7rem) clamp(1.5rem, 5vw, 3rem);
  max-width: 1200px;
  margin: 0 auto;
}

.section-full {
  padding: clamp(4rem, 8vw, 7rem) clamp(1.5rem, 5vw, 3rem);
  background: var(--c-bg2);
}

.section-full .section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-orange);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--c-text);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--c-text2);
  font-weight: 300;
  max-width: 560px;
  line-height: 1.7;
}

/* ── ACTIVITY GRID ── */
.activity-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1rem;
  margin-top: 2.5rem;
}

.activity-card {
  background: var(--c-bg2);
  border: 1px solid var(--c-border2);
  border-radius: var(--radius);
  padding: 1.25rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: border-color var(--transition), transform var(--transition);
}

.activity-card:hover {
  border-color: rgba(245,86,10,0.3);
  transform: translateY(-2px);
}

.activity-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.activity-name {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--c-text);
}

/* ── GOAL LIST ── */
.goal-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
  margin-top: 2.5rem;
}

.goal-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background: var(--c-bg2);
  border-radius: var(--radius);
  padding: 1.1rem 1.25rem;
  border: 1px solid var(--c-border2);
}

.goal-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c-orange);
  margin-top: 0.45rem;
  flex-shrink: 0;
}

.goal-text {
  font-size: 0.92rem;
  color: var(--c-text2);
  line-height: 1.5;
}

/* ── SSW WEEK INFO CARDS ── */
.info-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 2.5rem;
}

.info-card {
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.info-card-icon { font-size: 1.75rem; margin-bottom: 0.75rem; }

.info-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--c-text);
  margin-bottom: 0.4rem;
}

.info-card p {
  font-size: 0.875rem;
  color: var(--c-text2);
  line-height: 1.5;
}

/* ── DIVIDER ── */
.divider {
  height: 1px;
  background: var(--c-border2);
  max-width: 1200px;
  margin: 0 auto;
}

/* ── PAGE HEADER ── */
.page-header {
  padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 5vw, 3rem) clamp(2rem, 4vw, 3rem);
  background: linear-gradient(to bottom, rgba(245,86,10,0.07), transparent);
  border-bottom: 1px solid var(--c-border);
}

.page-header-inner { max-width: 1200px; margin: 0 auto; }

/* ── EMBED GRID ── */
.embed-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.embed-card {
  background: var(--c-bg2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--c-border2);
}

.embed-card iframe {
  width: 100%;
  display: block;
  aspect-ratio: 16/9;
  border: none;
}

.embed-card-info {
  padding: 1rem 1.25rem;
}

.embed-card-info h3 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--c-text);
}

.embed-card-info p {
  font-size: 0.82rem;
  color: var(--c-text2);
  margin-top: 0.25rem;
}

/* ── MYALBUM LINK CARD ── */
.album-link-card {
  display: flex;
  align-items: center;
  gap: 2rem;
  background: var(--c-bg2);
  border: 1px solid var(--c-border2);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  margin-top: 2rem;
  text-decoration: none;
  transition: border-color var(--transition), transform var(--transition);
}

.album-link-card:hover {
  border-color: rgba(245,86,10,0.35);
  transform: translateY(-2px);
}

.album-link-icon {
  font-size: 3.5rem;
  flex-shrink: 0;
}

.album-link-text h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--c-text);
  margin-bottom: 0.4rem;
}

.album-link-text p {
  color: var(--c-text2);
  font-size: 0.9rem;
}

.album-link-arrow {
  margin-left: auto;
  font-size: 1.5rem;
  color: var(--c-orange);
  flex-shrink: 0;
}

/* ── VOLUNTEER CARDS ── */
.volunteer-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

.volunteer-card {
  background: var(--c-bg2);
  border-radius: var(--radius);
  padding: 1.5rem;
  border: 1px solid var(--c-border2);
}

.volunteer-card-icon { font-size: 1.75rem; margin-bottom: 0.75rem; }
.volunteer-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--c-text);
  margin-bottom: 0.5rem;
}

.volunteer-card ul {
  list-style: none;
  padding: 0;
}

.volunteer-card ul li {
  font-size: 0.85rem;
  color: var(--c-text3);
  line-height: 1.6;
  padding-left: 0.9rem;
  position: relative;
}

.volunteer-card ul li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--c-orange);
}

/* ── FORM ── */
.form-card {
  background: var(--c-bg2);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  max-width: 620px;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--c-text2);
  margin-bottom: 0.5rem;
  letter-spacing: 0.01em;
}

.form-label .required { color: var(--c-orange); margin-left: 2px; }

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  color: var(--c-text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  -webkit-appearance: none;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--c-orange);
  box-shadow: 0 0 0 3px rgba(245,86,10,0.15);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--c-text3);
}

.form-textarea {
  min-height: 130px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 560px) {
  .form-row { grid-template-columns: 1fr; }
}

.form-note {
  font-size: 0.8rem;
  color: var(--c-text3);
  margin-top: 0.4rem;
}

.form-success {
  display: none;
  background: rgba(45,106,47,0.15);
  border: 1px solid rgba(45,106,47,0.3);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  color: #7ECF81;
  font-size: 0.9rem;
  margin-top: 1rem;
}

/* ── PRETIX EMBED ── */
.pretix-wrapper {
  background: var(--c-bg2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(242,240,235,0.06);
  margin-top: 2rem;
}

.pretix-placeholder {
  padding: 3rem 2rem;
  text-align: center;
}

.pretix-placeholder p {
  color: var(--c-grey);
  margin-bottom: 1.5rem;
}

/* ── SOCIALS ── */
.socials {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.1rem;
  border-radius: 8px;
  background: var(--c-bg2);
  border: 1px solid var(--c-border);
  color: var(--c-text2);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all var(--transition);
}

.social-link:hover {
  border-color: rgba(245,86,10,0.3);
  color: var(--c-text);
  transform: translateY(-1px);
}

/* ── FOOTER ── */
footer {
  background: var(--c-bg2);
  border-top: 1px solid var(--c-border);
  padding: 3rem clamp(1.5rem, 5vw, 3rem);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-socials {
  display: flex;
  gap: 0.6rem;
  align-items: center;
  flex-shrink: 0;
}

.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--c-bg3);
  border: 1px solid var(--c-border);
  color: var(--c-text2);
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}

.footer-social-link:hover {
  background: var(--c-orange);
  border-color: var(--c-orange);
  color: #fff;
}

@media (max-width: 768px) {
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
}

.footer-brand .nav-logo {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  display: block;
}

.footer-brand p {
  font-size: 0.85rem;
  color: var(--c-text3);
  line-height: 1.6;
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--c-white);
  margin-bottom: 0.75rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer-col ul { list-style: none; }

.footer-col ul li {
  margin-bottom: 0.4rem;
}

.footer-col ul li a,
.footer-col p {
  font-size: 0.85rem;
  color: var(--c-grey);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-col ul li a:hover { color: var(--c-light); }

.footer-bottom {
  max-width: 1200px;
  margin: 2rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--c-border2);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--c-text3);
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.animate-up {
  opacity: 0;
  animation: fadeUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.35s; }
.delay-4 { animation-delay: 0.5s; }

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ── UTILITIES ── */
.mt-3 { margin-top: 3rem; }

/* ══════════════════════════════════════
   INDEX (home)
══════════════════════════════════════ */
.hero {
  min-height: calc(100svh - 68px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 0;
  padding: 0;
  background: var(--c-bg);
  overflow: hidden;
}

.hero-bg { display: none; }

.hero-left {
  padding: clamp(3rem, 6vw, 5rem) clamp(2rem, 5vw, 4rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: var(--c-text);
  margin-bottom: 0.3rem;
}

.hero h1 .accent { color: var(--c-orange); }

.hero-date {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 600;
  color: #1A1A18 !important;
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
}

.hero p.hero-desc {
  font-size: 1rem;
  color: var(--c-text2);
  max-width: 440px;
  margin-bottom: 2rem;
  font-weight: 300;
  line-height: 1.7;
}

.countdown { margin-top: 2.5rem; gap: 2rem; }
.hero-actions { flex-wrap: wrap; gap: 0.75rem; }

.hero-right {
  height: calc(100svh - 68px);
  display: grid;
  grid-template-rows: 1fr 1fr 1fr;
  gap: 0;
  padding: clamp(1rem, 2vw, 1.5rem);
}

.hero-photo-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  text-decoration: none;
  display: block;
  margin: 0.3rem;
}

.hero-photo-card:nth-child(1) {
  background: linear-gradient(135deg, #f5560a 0%, #e8a87c 100%);
}
.hero-photo-card:nth-child(2) {
  background: linear-gradient(135deg, #2563eb 0%, #7dd3fc 100%);
}
.hero-photo-card:nth-child(3) {
  background: linear-gradient(135deg, #16a34a 0%, #86efac 100%);
}

.hero-photo-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-photo-card:hover img {
  transform: scale(1.06);
}

.hero-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.1) 55%, transparent 100%);
  transition: background 0.35s ease;
}

.hero-photo-card:hover .hero-photo-overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.25) 55%, rgba(245,86,10,0.08) 100%);
}

.hero-photo-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.hero-photo-label-text {
  display: flex;
  flex-direction: column;
}

.hero-photo-label-eyebrow {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 0.2rem;
}

.hero-photo-label-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
}

.hero-photo-arrow {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1rem;
  flex-shrink: 0;
  transition: background 0.25s ease, transform 0.25s ease;
}

.hero-photo-card:hover .hero-photo-arrow {
  background: var(--c-orange);
  border-color: var(--c-orange);
  transform: translate(2px, -2px);
}

.hero-photo-icon {
  position: absolute;
  top: 1.1rem;
  left: 1.25rem;
  font-size: 1.75rem;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    min-height: unset;
  }
  .hero-left {
    padding: 2.5rem 1.5rem 1.5rem;
  }
  .hero-right {
    height: auto;
    grid-template-rows: unset;
    grid-template-columns: repeat(3, 1fr);
    padding: 0 1rem 1.5rem;
    background: var(--c-bg);
    gap: 0.75rem;
  }
  .hero-photo-card {
    aspect-ratio: 3/4;
    margin: 0;
  }
  .hero-photo-label-title { font-size: 0.95rem; }
  .hero-photo-label { padding: 1rem; }
  .hero-photo-icon { font-size: 1.25rem; }
}

@media (max-width: 560px) {
  .hero-right { grid-template-columns: 1fr; }
  .hero-photo-card { aspect-ratio: 16/7; }
}

/* ══════════════════════════════════════
   FOTOS
══════════════════════════════════════ */
.foto-year-section {
  margin-bottom: 3.5rem;
}

.foto-year-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--c-border);
}

.foto-year-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--c-text);
  letter-spacing: -0.04em;
  line-height: 1;
}

.dag-placeholder {
  background: linear-gradient(155deg, #9ca3af 0%, #d1d5db 100%);
  opacity: 0.6;
  cursor: default;
  pointer-events: none;
}

.foto-day-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.75rem;
}

.foto-day-grid.flex-grid {
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
}

.foto-day-card {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0.9rem;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease;
}

.foto-day-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(0,0,0,0.18);
}

.dag-ma { background: linear-gradient(155deg, #FA6B20 0%, #f5a27a 100%); }
.dag-di { background: linear-gradient(155deg, #2563eb 0%, #7dd3fc 100%); }
.dag-wo { background: linear-gradient(155deg, #16a34a 0%, #86efac 100%); }
.dag-do { background: linear-gradient(155deg, #7c3aed 0%, #c4b5fd 100%); }
.dag-vr { background: linear-gradient(155deg, #dc2626 0%, #fca5a5 100%); }
.dag-cr { background: linear-gradient(155deg, #db2777 0%, #f9a8d4 100%); }

.foto-day-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.68) 0%, rgba(0,0,0,0.08) 55%, transparent 100%);
}

.foto-day-info {
  position: relative;
  z-index: 1;
}

.foto-day-name {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.01em;
  display: block;
}

.foto-day-sub {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.65);
  display: block;
  margin-top: 0.1rem;
}

.foto-day-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.foto-day-arrow {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  border: 1px solid rgba(255,255,255,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.85rem;
  z-index: 1;
  transition: background 0.25s ease, transform 0.25s ease;
}

.foto-day-card:hover .foto-day-arrow {
  background: rgba(255,255,255,0.35);
  transform: translate(2px, -2px);
}

@media (max-width: 900px) {
  .foto-day-grid { grid-template-columns: repeat(3, 1fr); }
  .foto-day-grid.flex-grid { grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); }
}

@media (max-width: 560px) {
  .foto-day-grid { grid-template-columns: repeat(2, 1fr); }
  .foto-year-title { font-size: 1.6rem; }
}

/* ══════════════════════════════════════
   VIDEOS
══════════════════════════════════════ */
.video-year-section {
  margin-bottom: 3.5rem;
}

.video-year-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--c-border);
}

.video-year-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--c-text);
  letter-spacing: -0.04em;
  line-height: 1;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.video-grid.single { grid-template-columns: minmax(0, 560px); }
.video-grid.two    { grid-template-columns: repeat(2, 1fr); }

.embed-card {
  background: var(--c-bg2);
  border: 1px solid var(--c-border2);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.embed-card iframe {
  width: 100%;
  aspect-ratio: 16/9;
  display: block;
  border: none;
}

.embed-card-info {
  padding: 0.9rem 1.1rem;
}

.embed-card-info h3 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--c-text);
  margin-bottom: 0.15rem;
}

.embed-card-info p {
  font-size: 0.8rem;
  color: var(--c-text3);
}

.embed-card-placeholder {
  aspect-ratio: 16/9;
  background: var(--c-bg3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.5rem;
  color: var(--c-text3);
  font-size: 0.85rem;
}

.embed-card-placeholder a {
  color: var(--c-orange);
  text-decoration: none;
  font-weight: 500;
}

.embed-card-placeholder a:hover { text-decoration: underline; }

.video-coming-soon {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--c-bg2), var(--c-bg3));
  border: 2px dashed var(--c-border);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.5rem;
  color: var(--c-text3);
  font-size: 0.9rem;
  max-width: 560px;
}

@media (max-width: 900px) {
  .video-grid { grid-template-columns: repeat(2, 1fr); }
  .video-grid.single { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .video-grid, .video-grid.two { grid-template-columns: 1fr; }
  .video-year-title { font-size: 1.6rem; }
}

/* ══════════════════════════════════════
   MERCH
══════════════════════════════════════ */
.merch-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.merch-card {
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.merch-card:hover {
  border-color: rgba(245,86,10,0.35);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}

.merch-card-visual {
  position: relative;
  height: 280px;
  overflow: hidden;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
}

.merch-card-visual img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.merch-card:hover .merch-card-visual img {
  transform: scale(1.04);
}

.merch-card-body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.merch-price-tag {
  display: inline-flex;
  align-items: center;
  background: rgba(245,86,10,0.1);
  color: var(--c-orange);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  padding: 0.3rem 0.85rem;
  border-radius: 8px;
  margin-bottom: 1rem;
  align-self: flex-start;
}

.merch-card-body h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--c-text);
  margin-bottom: 0.75rem;
}

.merch-card-body p {
  font-size: 0.93rem;
  color: var(--c-text2);
  line-height: 1.65;
  flex: 1;
}

.merch-cta-banner {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  padding: clamp(2.5rem, 5vw, 4rem) clamp(2rem, 4vw, 3rem);
  margin-top: 3rem;
  text-align: center;
  background: var(--c-dark);
}

.merch-cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 40%, rgba(245,86,10,0.22) 0%, transparent 70%);
}

.merch-cta-banner > * { position: relative; z-index: 1; }

.merch-cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.merch-cta-banner p {
  color: rgba(255,255,255,0.7);
  font-size: 0.97rem;
  max-width: 500px;
  margin: 0 auto 2rem;
  line-height: 1.65;
}

.merch-price-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.merch-price-pill {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.9);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.45rem 1rem;
  border-radius: 100px;
}

/* ══════════════════════════════════════
   VRIJWILLIGERS
══════════════════════════════════════ */
.vw-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 4rem;
}

.vw-intro-text p {
  color: var(--c-text2);
  line-height: 1.8;
  font-size: 1.02rem;
  margin-bottom: 1rem;
}

.vw-intro-text p:last-child { margin-bottom: 0; }

.vw-featured-photo {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: linear-gradient(155deg, #FA6B20 0%, #f5c49a 100%);
}

.vw-featured-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vw-featured-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, transparent 60%);
}

.vw-featured-photo-label {
  position: absolute;
  bottom: 1.1rem;
  left: 1.25rem;
  color: #fff;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
}

.vw-photo-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
}

.vw-photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-bottom: 4rem;
}

.vw-photo-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
}

.vw-photo-card.tall { aspect-ratio: 3/4; }

.vw-photo-card-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vw-photo-card:nth-child(1) { background: linear-gradient(135deg, #FA6B20 0%, #f5a27a 100%); }
.vw-photo-card:nth-child(2) { background: linear-gradient(135deg, #7c3aed 0%, #c4b5fd 100%); }
.vw-photo-card:nth-child(3) { background: linear-gradient(135deg, #16a34a 0%, #86efac 100%); }
.vw-photo-card:nth-child(4) { background: linear-gradient(135deg, #2563eb 0%, #7dd3fc 100%); }
.vw-photo-card:nth-child(5) { background: linear-gradient(135deg, #dc2626 0%, #fca5a5 100%); }

.vw-photo-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.05) 55%, transparent 100%);
}

.vw-photo-card-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  color: rgba(255,255,255,0.6);
  font-size: 0.78rem;
}

.vw-roles {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
  margin-bottom: 4rem;
}

.vw-role-card {
  background: var(--c-bg2);
  border: 1px solid var(--c-border2);
  border-radius: var(--radius);
  padding: 1.4rem;
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.vw-role-card:hover {
  border-color: rgba(245,86,10,0.3);
  transform: translateY(-2px);
}

.vw-role-icon { font-size: 1.75rem; margin-bottom: 0.65rem; }

.vw-role-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--c-text);
  margin-bottom: 0.35rem;
}

.vw-role-card p {
  font-size: 0.85rem;
  color: var(--c-text3);
  line-height: 1.55;
}

.volunteer-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
  margin-bottom: 4rem;
}

@media (max-width: 900px) {
  .vw-intro { grid-template-columns: 1fr; gap: 2rem; }
  .vw-photo-grid { grid-template-columns: repeat(3, 1fr); }
  .vw-roles { grid-template-columns: repeat(2, 1fr); }
  .volunteer-highlights { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .vw-photo-grid { grid-template-columns: 1fr; }
  .vw-roles { grid-template-columns: 1fr; }
  .volunteer-highlights { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════
   CONTACT
══════════════════════════════════════ */
@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr !important; }
}

/* ══════════════════════════════════════
   404
══════════════════════════════════════ */
.page-404 {
  min-height: calc(100svh - 68px);
  margin-top: 68px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(2rem, 6vw, 4rem);
}

.error-number {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(7rem, 22vw, 14rem);
  line-height: 1;
  letter-spacing: -0.06em;
  color: var(--c-bg3);
  user-select: none;
  position: relative;
}

.error-number .accent {
  color: var(--c-orange);
}

.error-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  letter-spacing: -0.03em;
  color: var(--c-text);
  margin-top: -0.5rem;
  margin-bottom: 1rem;
}

.error-desc {
  font-size: 1rem;
  color: var(--c-text2);
  max-width: 420px;
  margin-bottom: 2rem;
  line-height: 1.65;
}

.error-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
}
