* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #090909;
  --bg-soft: #131313;
  --panel: #171717;
  --line: rgba(255, 255, 255, 0.1);
  --text: #f3f3f3;
  --muted: #b9b9b9;
  --accent: #ffb800;
  --accent-2: #ff6a00;
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  --radius-lg: 28px;
  --radius-md: 22px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.65;
}

img {
  width: 100%;
  display: block;
}

a {
  text-decoration: none;
}

.container {
  width: min(1240px, 92%);
  margin: 0 auto;
}

.section {
  padding: 110px 0;
}

.center {
  text-align: center;
}

.section-label {
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  line-height: 1.05;
  font-weight: 900;
  margin-bottom: 32px;
}

/* NAV */

.main-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 14px 0;
  background: rgba(9, 9, 9, 0.84);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.nav-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

.nav-left {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.nav-center {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
}

.nav-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-width: 0;
}

.logo {
  font-family: 'Anton', sans-serif;
  letter-spacing: 1px;
  color: white;
  font-size: 1.2rem;
  text-align: center;
  white-space: nowrap;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 14px;
  box-shadow: var(--shadow);
  white-space: nowrap;
}

.language-switch a {
  color: rgba(255,255,255,0.88);
  font-size: 0.92rem;
  font-weight: 700;
  transition: 0.2s ease;
}

.language-switch a:hover {
  color: var(--accent);
}

.language-switch .lang-active {
  color: var(--accent);
}

.language-switch span {
  color: rgba(255,255,255,0.35);
  font-weight: 700;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: nowrap;
  gap: 14px;
  white-space: nowrap;
}

.nav-links a {
  color: rgba(255,255,255,0.9);
  font-size: 0.9rem;
  font-weight: 700;
  transition: 0.2s ease;
}

.nav-links a:hover {
  color: var(--accent);
}

/* HERO */

.hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(to right, rgba(0,0,0,0.84) 18%, rgba(0,0,0,0.50) 55%, rgba(0,0,0,0.10) 100%),
    url("img/hero-bg.png") center center / cover no-repeat;
  display: flex;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(0,0,0,0.14), rgba(0,0,0,0.50)),
    linear-gradient(to right, rgba(255,184,0,0.045), transparent 28%);
  z-index: 1;
}

.hero-number {
  position: absolute;
  right: 3%;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Anton', sans-serif;
  font-size: clamp(16rem, 30vw, 30rem);
  line-height: 1;
  color: rgba(255,255,255,0.05);
  z-index: 1;
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 20px;
  align-items: center;
  padding: 145px 0 40px;
}

.hero-kicker {
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.hero-copy h1 {
  font-family: 'Anton', sans-serif;
  font-size: clamp(4.4rem, 10vw, 8.5rem);
  line-height: 0.9;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero-copy h1 span {
  display: block;
}

.hero-lead {
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 800;
  margin-bottom: 18px;
  max-width: 720px;
}

.hero-text {
  max-width: 700px;
  color: #d8d8d8;
  font-size: 1.03rem;
  margin-bottom: 14px;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.meta-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--line);
  padding: 16px 14px;
  box-shadow: var(--shadow);
  border-radius: var(--radius-md);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.meta-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.42);
  border-color: rgba(255, 184, 0, 0.22);
}

.meta-card span {
  display: block;
  color: var(--muted);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.meta-card strong {
  font-size: 1.05rem;
  font-weight: 800;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 26px;
}

.btn {
  padding: 14px 24px;
  font-weight: 800;
  border-radius: 999px;
  transition: 0.25s ease;
}

.btn-primary {
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  color: #111;
}

.btn-primary:hover {
  transform: translateY(-2px);
}

.btn-secondary {
  color: white;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.05);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.1);
}

.hero-image {
  display: flex;
  justify-content: center;
  align-items: end;
  min-height: 760px;
  animation: fadeUp 1.1s ease both;
}

.hero-image img {
  width: auto;
  max-width: 100%;
  max-height: 92vh;
  object-fit: contain;
  filter: drop-shadow(0 24px 40px rgba(0,0,0,0.45));
}

.hero-copy {
  animation: fadeUp 0.9s ease both;
}

/* BAND */

.identity-band {
  position: relative;
  margin-top: -30px;
  z-index: 5;
}

.identity-band-grid {
  display: grid;
  grid-template-columns: 0.75fr 1fr 1fr;
  gap: 14px;
}

.identity-item {
  background: #111111;
  border: 1px solid var(--line);
  padding: 24px 22px;
  box-shadow: var(--shadow);
  border-radius: var(--radius-md);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.identity-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.42);
  border-color: rgba(255, 184, 0, 0.22);
}

.identity-item span {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.identity-item strong {
  font-size: 1.08rem;
  font-weight: 800;
}

/* SHARED */

.story-main-grid,
.family-number-grid,
.camp-grid {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.story-main-text h2,
.family-number-copy h2,
.camp-copy h2,
.final-box h2,
.next-chapter-box h2 {
  font-size: clamp(2.3rem, 4vw, 3.8rem);
  line-height: 1.02;
  font-weight: 900;
  margin-bottom: 22px;
}

.story-main-text p,
.family-number-copy p,
.camp-copy p,
.final-box p,
.next-chapter-box p {
  color: #d6d6d6;
  font-size: 1.03rem;
  margin-bottom: 16px;
}

.story-main-image img {
  min-height: 640px;
  object-fit: cover;
  box-shadow: var(--shadow);
  border-radius: var(--radius-lg);
  clip-path: polygon(0 0, 100% 0, 100% 84%, 84% 100%, 0 100%);
  transition: transform 0.45s ease;
}

.story-main-image:hover img {
  transform: scale(1.03);
}

/* FAMILY */

.family-number-section {
  background: linear-gradient(180deg, #0e0e0e, #141414);
}

.family-number-photo img {
  min-height: 620px;
  object-fit: cover;
  box-shadow: var(--shadow);
  border-radius: var(--radius-lg);
  transition: transform 0.45s ease;
}

.family-number-photo:hover img {
  transform: scale(1.03);
}

.family-number-copy blockquote {
  margin-top: 24px;
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  line-height: 1.35;
  font-weight: 800;
  border-left: 4px solid var(--accent);
  padding-left: 18px;
}

/* CAMP */

.camp-section {
  background: linear-gradient(180deg, #0d0d0d, #141414);
}

.camp-highlight {
  margin-top: 24px;
  display: inline-flex;
  flex-direction: column;
  gap: 6px;
  padding: 18px 20px;
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  border-radius: var(--radius-md);
}

.camp-highlight span {
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.camp-highlight strong {
  font-size: 1.05rem;
  font-weight: 800;
}

.camp-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: stretch;
}

.camp-photo {
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: #111111;
  border-radius: var(--radius-lg);
  min-height: 520px;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.camp-photo:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.45);
}

.camp-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.camp-photo:hover img {
  transform: scale(1.03);
}

/* NEXT CHAPTER */

.next-chapter-section {
  background: #0a0a0a;
}

.next-chapter-box {
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(255,184,0,0.08), rgba(255,106,0,0.04)), #111111;
  padding: 60px 50px;
  box-shadow: var(--shadow);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.next-chapter-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.42);
  border-color: rgba(255, 184, 0, 0.22);
}

.next-chapter-box h2 {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

.next-chapter-box p {
  max-width: 860px;
  margin: 16px auto 0;
}

.next-chapter-image-wide {
  margin-top: 22px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: #111111;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.next-chapter-image-wide:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.45);
}

.next-chapter-image-wide img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.next-chapter-image-wide:hover img {
  transform: scale(1.03);
}

/* SELF ASSESSMENT */

.skills-section {
  background: #0b0b0b;
}

.skills-intro {
  max-width: 860px;
  margin: 0 auto 36px;
  text-align: center;
  color: #cfcfcf;
  font-size: 1rem;
}

.clean-score-grid {
  margin-top: 10px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.score-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 24px 22px;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: 0.25s ease;
}

.score-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,184,0,0.35);
}

.score-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
}

.score-number-wrap {
  display: flex;
  align-items: flex-end;
  gap: 6px;
}

.score-number {
  font-family: 'Anton', sans-serif;
  font-size: 4rem;
  line-height: 0.9;
  color: var(--accent);
  font-weight: 400;
}

.score-total {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--muted);
  padding-bottom: 8px;
}

/* STATEMENT */

.statement-box {
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(255,184,0,0.08), rgba(255,106,0,0.04)), #111111;
  padding: 60px 50px;
  box-shadow: var(--shadow);
  text-align: center;
  border-radius: var(--radius-lg);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.statement-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.42);
  border-color: rgba(255, 184, 0, 0.22);
}

.statement-box h2 {
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1.08;
  font-weight: 900;
  max-width: 900px;
  margin: 0 auto;
}

/* GALLERY */

.gallery-grid {
  margin-top: 38px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.gallery-item {
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  border-radius: var(--radius-lg);
  min-height: 520px;
  background: #111111;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.45);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

/* FINAL */

.final-box {
  background: #111111;
  border: 1px solid var(--line);
  padding: 60px 50px;
  box-shadow: var(--shadow);
  text-align: center;
  border-radius: var(--radius-lg);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.final-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.42);
  border-color: rgba(255, 184, 0, 0.22);
}

.final-box h2 {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

.final-box p {
  max-width: 820px;
  margin: 16px auto 0;
}

/* LIGHTBOX */

.lightbox-trigger {
  cursor: pointer;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px;
  opacity: 0;
  visibility: hidden;
  transition: 0.25s ease;
  z-index: 9999;
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox img {
  max-width: 92vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 22px;
  background: transparent;
  border: none;
  color: white;
  font-size: 2.4rem;
  line-height: 1;
  cursor: pointer;
}

/* REVEAL */

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(26px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* RESPONSIVE */

@media (max-width: 1200px) {
  .nav-inner {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .nav-left,
  .nav-center,
  .nav-right {
    justify-content: center;
  }

  .nav-links {
    justify-content: center;
    flex-wrap: wrap;
    white-space: normal;
  }

  .logo {
    text-align: center;
  }
}

@media (max-width: 1100px) {
  .hero-grid,
  .story-main-grid,
  .family-number-grid,
  .camp-grid {
    grid-template-columns: 1fr;
  }

  .hero-image {
    order: -1;
    min-height: auto;
  }

  .hero-image img {
    max-height: 640px;
  }

  .hero-meta {
    grid-template-columns: repeat(2, 1fr);
  }

  .identity-band-grid {
    grid-template-columns: 1fr;
  }

  .camp-photos {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .gallery-item {
    min-height: 460px;
  }

  .clean-score-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  .main-nav {
    padding: 14px 0;
  }

  .section {
    padding: 78px 0;
  }

  .hero {
    min-height: auto;
    padding: 34px 0 60px;
  }

  .hero-copy h1 {
    font-size: clamp(3rem, 16vw, 5rem);
  }

  .hero-meta,
  .clean-score-grid,
  .gallery-grid,
  .camp-photos {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .statement-box,
  .final-box,
  .next-chapter-box {
    padding: 34px 22px;
  }

  .story-main-image img,
  .family-number-photo img,
  .camp-photo,
  .gallery-item {
    min-height: 420px;
  }

  .next-chapter-image-wide img {
    height: 320px;
  }

  .nav-links {
    gap: 10px 14px;
  }

  .nav-links a {
    font-size: 0.88rem;
  }

  .logo {
    font-size: 1.05rem;
  }

  .language-switch {
    padding: 7px 12px;
  }

  .score-card {
    min-height: 150px;
  }

  .score-number {
    font-size: 3.3rem;
  }
}

