﻿:root {
  --orange: #f36c21;
  --orange-dark: #c64d0d;
  --ink: #1d1d1f;
  --muted: #5f6368;
  --line: #e8e8e8;
  --bg: #ffffff;
  --soft: #f7f7f5;
  --soft-orange: #fff1e9;
  --radius: 8px;
  --shadow: 0 18px 48px rgba(29, 29, 31, 0.1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a { color: inherit; }
.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  background: var(--ink);
  color: #fff;
  padding: .75rem 1rem;
  z-index: 20;
}
.skip-link:focus { top: 1rem; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .85rem 1rem;
  background: #050505;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  backdrop-filter: blur(12px);
  transition: box-shadow .2s ease, padding .2s ease;
}
.site-header.is-scrolled { box-shadow: 0 10px 30px rgba(0, 0, 0, .26); }
.brand {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  text-decoration: none;
  min-width: 0;
}
.brand img {
  width: min(270px, 62vw);
  max-height: 64px;
  height: auto;
  border-radius: 0;
  background: #000;
  object-fit: contain;
}
.brand span { display: grid; line-height: 1.1; }
.brand small { color: #d8d8d8; font-size: .78rem; }
.nav-toggle {
  border: 0;
  background: var(--orange);
  color: #fff;
  min-height: 44px;
  padding: .7rem 1rem;
  border-radius: var(--radius);
  font-weight: 700;
}
.site-nav {
  position: absolute;
  left: 1rem;
  right: 1rem;
  top: 4.7rem;
  display: none;
  padding: .5rem;
  background: #111;
  border: 1px solid rgba(255, 255, 255, .14);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
}
.site-nav.open { display: grid; }
.site-nav a {
  min-height: 44px;
  padding: .7rem .8rem;
  text-decoration: none;
  border-radius: 6px;
  color: #f3f3f3;
  font-weight: 700;
  transition: background .2s ease, color .2s ease;
}
.site-nav a.active,
.site-nav a:hover { background: var(--orange); color: #fff; }
.hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: 72svh;
  padding: 7rem 1rem 2.5rem;
  color: #fff;
  background: #111;
  overflow: hidden;
  isolation: isolate;
}
.home-hero { min-height: calc(100svh - 72px); }
.compact-hero { min-height: 62svh; }
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(0, 0, 0, .34), rgba(0, 0, 0, .82));
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1120px;
  width: 100%;
  margin: 0 auto;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  max-width: none;
  width: 100%;
  margin: 0;
  border-radius: 0;
  box-shadow: none;
}
.feature-image::after,
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: inherit;
  pointer-events: none;
}
.hero-media img,
.hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-media img {
  animation: heroFloat 8s ease-in-out infinite;
}
.hero-media video {
  background: #111;
}
.hero .eyebrow {
  color: #ffb37e;
}
.hero h1 {
  color: #fff;
  text-shadow: 0 12px 34px rgba(0, 0, 0, .32);
}
.hero p {
  color: #f4f4f4;
}
.eyebrow {
  margin: 0 0 .75rem;
  color: var(--orange-dark);
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0;
  font-size: .82rem;
}
h1, h2, h3 { line-height: 1.12; margin: 0 0 1rem; letter-spacing: 0; }
h1 { font-size: clamp(2.25rem, 8vw, 5rem); max-width: 11ch; }
h2 { font-size: clamp(1.65rem, 5vw, 3rem); }
h3 { font-size: 1.35rem; }
.hero p { max-width: 650px; font-size: 1.08rem; color: #f4f4f4; }
.section {
  max-width: 1120px;
  margin: 0 auto;
  padding: 4rem 1rem;
}
.section-heading { max-width: 760px; margin-bottom: 1.5rem; }
.choice-grid,
.content-grid,
.photo-grid {
  display: grid;
  gap: 1rem;
}
.hero-choice-grid {
  margin-top: 1.5rem;
}
.choice-card,
.content-card,
.value-box,
.stat-panel,
.form,
.photo-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}
.choice-card {
  display: grid;
  align-content: space-between;
  min-height: 255px;
  padding: 1.35rem;
  text-decoration: none;
  color: var(--ink);
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.choice-card:hover { transform: translateY(-5px); border-color: var(--orange); box-shadow: 0 22px 58px rgba(243, 108, 33, .16); }
.choice-card h2 {
  color: var(--ink);
  font-size: clamp(1.25rem, 4vw, 1.75rem);
}
.choice-card p {
  margin-top: 0;
  color: #303236;
}
.card-icon {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  font-weight: 900;
  animation: beacon 2.8s ease-in-out infinite;
}
.choice-card strong {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 38px;
  padding: .45rem .7rem;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
}
.split {
  display: grid;
  gap: 1.4rem;
  align-items: center;
}
.image-feature { align-items: center; }
.feature-image,
.image-band,
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--ink);
}
.feature-image img,
.image-band img {
  width: 100%;
  height: clamp(260px, 38vw, 460px);
  object-fit: cover;
  object-position: center;
  transition: transform .55s ease;
}
.feature-image:hover img,
.image-band:hover img,
.gallery-item:hover img,
.photo-card:hover img { transform: scale(1.045); }
.stat-panel {
  display: grid;
  gap: .5rem;
  padding: 1rem;
  background: var(--ink);
  color: #fff;
}
.stat-panel div {
  padding: 1rem;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 6px;
}
.stat-panel strong {
  display: block;
  color: var(--orange);
  font-size: 2rem;
  line-height: 1;
}
.content-card,
.value-box { padding: 1.25rem; }
.content-card h2,
.value-box h2,
.photo-card h2 {
  font-size: clamp(1.25rem, 4vw, 1.8rem);
}
.event-video-section {
  padding-top: 2rem;
}
.event-video-frame {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #111;
  box-shadow: var(--shadow);
}
.event-video-frame video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: min(72svh, 680px);
  object-fit: contain;
  background: #111;
}
.tariff-section .section-heading {
  max-width: 900px;
}
.tariff-grid {
  display: grid;
  gap: 1rem;
}
.tariff-card {
  padding: 1.15rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}
.tariff-card h3 {
  margin-bottom: .8rem;
}
.tariff-card p {
  margin-top: 0;
}
.tariff-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .96rem;
}
.tariff-table th,
.tariff-table td {
  padding: .72rem 0;
  border-top: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}
.tariff-table th {
  width: 62%;
  padding-right: .9rem;
  color: var(--ink);
}
.tariff-table td {
  font-weight: 800;
  color: var(--orange-dark);
}
.condition-note {
  margin: 1rem 0 0;
  padding: .9rem;
  border-radius: 6px;
  background: var(--soft-orange);
}
.area-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: .5rem;
  margin: 1rem 0;
  padding: 0;
  list-style: none;
}
.area-list li {
  padding: .55rem .7rem;
  border: 1px solid var(--line);
  border-left: 4px solid var(--orange);
  border-radius: 6px;
  background: #fff;
  font-weight: 700;
}
.split .area-list {
  grid-template-columns: 1fr;
}
.benefit-card {
  display: grid;
  gap: .9rem;
}
.benefit-card .check-list {
  display: grid;
  gap: .75rem;
  padding-left: 0;
  margin: 0;
  list-style: none;
}
.benefit-card .check-list li {
  margin: 0;
  padding: .8rem .9rem .8rem 1rem;
  border-left: 4px solid var(--orange);
  border-radius: 6px;
  background: var(--soft-orange);
}
.check-list { padding-left: 1.1rem; }
.check-list li { margin: .45rem 0; }
.small-note { color: var(--muted); font-size: .95rem; }

.photo-card {
  overflow: hidden;
}
.photo-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: center;
  transition: transform .55s ease;
}
.photo-card div { padding: 1.2rem; }

.photo-grid { grid-template-columns: 1fr; }
.gallery-item {
  min-height: 240px;
  margin: 0;
}
.gallery-item img {
  width: 100%;
  height: 280px;
  min-height: 0;
  object-fit: cover;
  object-position: center;
  transition: transform .55s ease, filter .55s ease;
}
.gallery-item figcaption {
  position: absolute;
  left: .75rem;
  bottom: .75rem;
  padding: .45rem .65rem;
  border-radius: 999px;
  background: rgba(29, 29, 31, .78);
  color: #fff;
  font-size: .9rem;
  font-weight: 800;
}
.image-band { padding: 0; }
.image-band img { height: clamp(220px, 42vw, 520px); }

.timeline {
  display: grid;
  gap: 1rem;
}
.timeline article {
  border-left: 4px solid var(--orange);
  padding: 1rem 1rem 1rem 1.2rem;
  background: var(--soft);
  border-radius: 0 var(--radius) var(--radius) 0;
  transition: transform .22s ease, background .22s ease;
}
.timeline article:hover { transform: translateX(4px); background: #fff6ef; }
.timeline span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  font-weight: 800;
  margin-bottom: .8rem;
}

.form {
  display: grid;
  gap: .9rem;
  padding: 1rem;
}
.form label {
  display: grid;
  gap: .35rem;
  font-weight: 700;
}
.form input,
.form textarea,
.form select {
  width: 100%;
  min-height: 48px;
  border: 1px solid #c9c9c9;
  border-radius: 6px;
  padding: .8rem;
  font: inherit;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.form input:focus,
.form textarea:focus,
.form select:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(243, 108, 33, .18);
}
.form textarea { min-height: 140px; resize: vertical; }
.privacy {
  grid-template-columns: 24px 1fr;
  align-items: start;
  font-weight: 400 !important;
}
.privacy input { min-height: 22px; }
.hidden-field {
  position: absolute;
  left: -9999px;
}
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 50px;
  border: 0;
  border-radius: var(--radius);
  padding: .85rem 1.15rem;
  background: var(--orange);
  color: #fff;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
  transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
}
.button:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 12px 26px rgba(243, 108, 33, .25); }
.button-secondary {
  background: var(--ink);
}
.button-secondary:hover {
  background: #000;
}
.form-alert {
  max-width: 1120px;
  margin: 1rem auto 0;
  padding: 1rem;
  border-radius: var(--radius);
  font-weight: 700;
}
.form-alert.success { background: #e9f7ef; color: #14532d; }
.form-alert.error { background: #fff1f1; color: #8a1f1f; }
.legal { max-width: 820px; }

.blog-list {
  display: grid;
  gap: 1rem;
}
.blog-card {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}
.blog-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}
.blog-card div {
  display: grid;
  gap: .7rem;
  padding: 1.2rem;
}
.blog-card h2,
.blog-card p {
  margin: 0;
}
.post-meta {
  color: var(--orange-dark);
  font-size: .9rem;
  font-weight: 800;
}
.blog-post-body {
  font-size: 1.08rem;
}
.blog-post-body p {
  margin-bottom: 1.15rem;
}

.admin-page {
  min-height: 100svh;
  background: var(--soft);
}
.admin-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .85rem 1rem;
  background: #111;
  color: #fff;
}
.admin-nav {
  display: flex;
  gap: .6rem;
  flex-wrap: wrap;
}
.admin-nav a,
.admin-back-link {
  font-weight: 800;
  color: inherit;
}
.admin-shell,
.admin-login {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 2rem 0 4rem;
}
.admin-login {
  min-height: 100svh;
  display: grid;
  place-content: center;
  gap: 1rem;
}
.admin-logo {
  justify-content: center;
}
.admin-header {
  margin-bottom: 1.5rem;
}
.admin-header p {
  max-width: 680px;
}
.admin-grid {
  display: grid;
  gap: 1rem;
}
.admin-panel {
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}
.admin-page-preview {
  display: block;
  width: 100%;
  max-height: 320px;
  margin: 0 0 1rem;
  border-radius: 6px;
  object-fit: cover;
  background: #111;
}
.admin-settings-panel {
  max-width: 620px;
}
.admin-list {
  display: grid;
  gap: .8rem;
}
.admin-post {
  display: grid;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
}
.admin-post h3,
.admin-post p {
  margin: .35rem 0 0;
}
.admin-actions {
  display: flex;
  align-items: center;
  gap: .6rem;
  flex-wrap: wrap;
}
.admin-actions form {
  margin: 0;
}
.admin-badge {
  display: inline-flex;
  padding: .25rem .55rem;
  border-radius: 999px;
  background: #e9e9e9;
  color: #333;
  font-size: .78rem;
  font-weight: 800;
}
.admin-badge.is-published {
  background: #e9f7ef;
  color: #14532d;
}
.admin-delete {
  background: #8a1f1f;
}
.admin-delete:hover {
  background: #651414;
}
.admin-dashboard a {
  text-decoration: none;
}
.media-admin-grid {
  display: grid;
  gap: 1rem;
}
.media-admin-card {
  display: grid;
  gap: .55rem;
  padding: .8rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
}
.media-admin-card img,
.media-admin-card video {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 6px;
  background: #111;
}
.team-hero h1 {
  max-width: 12ch;
}
.team-intro {
  display: grid;
  gap: 1.2rem;
}
.team-stats {
  display: grid;
  gap: .8rem;
}
.team-stats div {
  padding: 1rem;
  border: 1px solid var(--line);
  border-left: 5px solid var(--orange);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}
.team-stats strong {
  display: block;
  color: var(--orange-dark);
  font-size: 2rem;
  line-height: 1;
}
.team-grid {
  display: grid;
  gap: 1rem;
}
.team-card {
  display: grid;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.team-card:hover {
  transform: translateY(-4px);
  border-color: var(--orange);
  box-shadow: 0 24px 58px rgba(243, 108, 33, .16);
}
.team-avatar {
  display: grid;
  place-items: center;
  width: 132px;
  height: 132px;
  justify-self: center;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  font-size: 2.4rem;
  font-weight: 900;
  box-shadow: 0 10px 28px rgba(29, 29, 31, .16);
}
.team-photo {
  width: 132px;
  height: 132px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center top;
  justify-self: center;
  border: 3px solid #fff;
  border-radius: 50%;
  background: var(--soft);
  box-shadow: 0 10px 28px rgba(29, 29, 31, .16);
}
.team-rank {
  display: inline-flex;
  margin-bottom: .35rem;
  padding: .25rem .55rem;
  border-radius: 999px;
  background: var(--soft-orange);
  color: var(--orange-dark);
  font-size: .78rem;
  font-weight: 900;
}
.team-card h3 {
  margin-bottom: .35rem;
}
.team-role {
  margin: 0 0 .8rem;
  color: var(--ink);
  font-weight: 800;
}
.team-tasks {
  display: grid;
  gap: .35rem;
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted);
}
.team-contact {
  display: grid;
  gap: .5rem;
  align-self: end;
}
.team-contact a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: .65rem .75rem;
  border-radius: 6px;
  background: var(--soft);
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
}
.team-contact a:hover {
  background: var(--soft-orange);
}

.site-footer {
  display: grid;
  gap: 1rem;
  padding: 2rem 1rem;
  background: var(--ink);
  color: #fff;
}
.site-footer p { margin: .2rem 0; color: #d8d8d8; }
.footer-links { display: flex; gap: 1rem; flex-wrap: wrap; }
.footer-links a, .site-footer a { color: #fff; }

.reveal {
  transition: opacity .58s ease var(--reveal-delay, 0ms), transform .58s ease var(--reveal-delay, 0ms);
}
.js .reveal {
  opacity: 0;
  transform: translateY(22px);
}
.js .reveal-left { transform: translateX(-24px); }
.js .reveal-right { transform: translateX(24px); }
.js .zoom-in { transform: scale(.96); }
.reveal.is-visible,
.reveal-left.is-visible,
.reveal-right.is-visible,
.zoom-in.is-visible {
  opacity: 1;
  transform: translate(0) scale(1);
}

@keyframes heroFloat {
  0%, 100% { transform: scale(1.02) translateY(0); }
  50% { transform: scale(1.05) translateY(-8px); }
}
@keyframes beacon {
  0%, 100% { box-shadow: 0 0 0 0 rgba(243, 108, 33, .28); }
  50% { box-shadow: 0 0 0 10px rgba(243, 108, 33, 0); }
}

@media (min-width: 640px) {
  .photo-grid { grid-template-columns: repeat(2, 1fr); }
  .area-list { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 760px) {
  .site-header { padding: .85rem max(1rem, calc((100vw - 1180px) / 2)); }
  .nav-toggle { display: none; }
  .site-nav {
    position: static;
    display: flex;
    align-items: center;
    gap: .15rem;
    padding: 0;
    border: 0;
    box-shadow: none;
    background: transparent;
  }
  .site-nav a { font-size: .9rem; color: #f3f3f3; }
  .hero {
    padding: 5.5rem max(1rem, calc((100vw - 1120px) / 2)) 4rem;
  }
  .choice-grid,
  .split { grid-template-columns: 1fr 1fr; }
  .content-grid { grid-template-columns: repeat(3, 1fr); }
  .youth-benefit-grid {
    grid-template-columns: minmax(0, .95fr) minmax(0, 1.35fr);
    align-items: stretch;
  }
  .youth-benefit-grid .benefit-card {
    grid-row: span 2;
  }
  .blog-card {
    grid-template-columns: minmax(260px, .8fr) minmax(0, 1fr);
  }
  .admin-grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
    align-items: start;
  }
  .admin-panel {
    padding: 1.3rem;
  }
  .admin-post {
    grid-template-columns: 1fr auto;
    align-items: center;
  }
  .tariff-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .area-list { grid-template-columns: repeat(3, 1fr); }
  .split .area-list { grid-template-columns: repeat(2, 1fr); }
  .photo-grid { grid-template-columns: repeat(4, 1fr); }
  .team-intro {
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, .8fr);
    align-items: start;
  }
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .photo-grid .gallery-item:nth-child(1),
  .photo-grid .gallery-item:nth-child(4) { grid-column: span 2; }
  .site-footer {
    grid-template-columns: 1fr auto;
    align-items: center;
    padding: 2rem max(1rem, calc((100vw - 1120px) / 2));
  }
  .form { padding: 1.3rem; }
}

@media (min-width: 980px) {
  .hero-choice-grid { grid-template-columns: 1fr 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation: none !important;
    transition: none !important;
  }
  .reveal,
  .reveal-left,
  .reveal-right,
  .zoom-in,
  .js .reveal,
  .js .reveal-left,
  .js .reveal-right,
  .js .zoom-in { opacity: 1; transform: none; }
}

