:root {
  --orange: #ef8b2c;
  --orange-dark: #b96112;
  --black: #101010;
  --ink: #182235;
  --muted: #667085;
  --line: #e6e8ee;
  --soft: #f7f8fb;
  --cream: #fff7ed;
  --white: #ffffff;
  --max: 1180px;
  --radius-xl: 34px;
  --radius-lg: 28px;
  --radius-md: 20px;
  --shadow: 0 24px 60px rgba(15, 23, 42, .12);
  --shadow-soft: 0 12px 30px rgba(15, 23, 42, .08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
button { font: inherit; }
.container { width: min(var(--max), calc(100% - 40px)); margin-inline: auto; }
.section { padding: 74px 0; }
.section-soft { background: var(--soft); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  color: var(--orange-dark);
  font-size: .76rem;
  font-weight: 950;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.kicker::before { content: ""; width: 30px; height: 3px; border-radius: 999px; background: var(--orange); }
h1, h2, h3, h4 { color: var(--black); margin: 0 0 16px; line-height: 1.08; letter-spacing: -.04em; }
h1 { font-size: clamp(2.35rem, 5vw, 4.5rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 3.05rem); }
h3 { font-size: 1.24rem; letter-spacing: -.025em; }
h4 { font-size: 1.12rem; letter-spacing: -.02em; }
p { margin: 0 0 16px; color: var(--muted); }
.lead { font-size: clamp(1.05rem, 1.7vw, 1.23rem); max-width: 720px; }

.topbar { background: var(--black); color: rgba(255,255,255,.78); font-size: .92rem; }
.topbar-inner { min-height: 38px; display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap; }
.topbar a { color: #fff; font-weight: 850; }
.site-header { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.96); border-bottom: 1px solid rgba(226,232,240,.95); backdrop-filter: blur(18px); }
.nav-inner { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 22px; }
.brand { display: inline-flex; align-items: center; gap: 12px; color: var(--black); font-weight: 950; }
.brand img { width: 56px; height: 56px; object-fit: contain; }
.brand small { display: block; margin-top: 2px; color: var(--muted); font-size: .68rem; font-weight: 900; letter-spacing: .09em; text-transform: uppercase; }
.main-nav { display: flex; align-items: center; gap: 6px; color: #334155; font-weight: 850; }
.main-nav a { padding: 10px 12px; border-radius: 999px; white-space: nowrap; transition: .18s ease; }
.main-nav a:hover { background: #fff3e8; color: var(--orange-dark); }
.main-nav .nav-cta { background: var(--orange); color: #fff; box-shadow: 0 12px 24px rgba(239,139,44,.25); }
.nav-toggle { display: none; border: 1px solid var(--line); background: #fff; border-radius: 999px; padding: 9px 14px; font-weight: 900; cursor: pointer; }

.hero { padding: 62px 0 68px; background: radial-gradient(circle at 84% 12%, rgba(239,139,44,.18), transparent 32%), linear-gradient(135deg, #fff7ed 0%, #fff 56%, #f8fafc 100%); border-bottom: 1px solid var(--line); overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 46px; align-items: center; }
.hero h1 span { display: block; color: var(--orange-dark); }
.actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 26px; }
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 12px 18px; border-radius: 999px; border: 1px solid transparent; font-weight: 950; transition: .18s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-orange { background: var(--orange); color: #fff; box-shadow: 0 14px 28px rgba(239,139,44,.25); }
.btn-orange:hover { background: var(--orange-dark); }
.btn-dark { background: var(--black); color: #fff; }
.btn-light { background: #fff; border-color: var(--line); color: var(--black); }
.btn-light:hover { border-color: var(--orange); color: var(--orange-dark); box-shadow: var(--shadow-soft); }
.hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 34px; }
.stat { background: rgba(255,255,255,.9); border: 1px solid rgba(226,232,240,.95); border-radius: 18px; padding: 16px; box-shadow: 0 8px 24px rgba(15,23,42,.05); }
.stat b { display: block; color: var(--black); font-size: 1.15rem; line-height: 1; }
.stat span { display: block; color: var(--muted); font-size: .91rem; margin-top: 6px; }
.hero-media { position: relative; }
.hero-image { width: 100%; height: 410px; object-fit: cover; object-position: center center; border-radius: 32px; border: 8px solid #fff; box-shadow: var(--shadow); }
.hero-note { position: absolute; left: 20px; bottom: 20px; max-width: 320px; background: rgba(16,16,16,.94); color: #fff; padding: 18px 20px; border-radius: 22px; box-shadow: var(--shadow); }
.hero-note b { display: block; margin-bottom: 6px; }
.hero-note p { color: rgba(255,255,255,.74); margin: 0; }

.quick { margin-top: -28px; position: relative; z-index: 3; }
.quick-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.quick-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-md); padding: 23px; box-shadow: var(--shadow-soft); }
.quick-number { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 14px; background: #fff3e8; color: var(--orange-dark); font-weight: 950; margin-bottom: 14px; }

.section-head { display: grid; grid-template-columns: 1fr .82fr; gap: 32px; align-items: end; margin-bottom: 34px; }
.club-grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: 42px; align-items: start; }
.club-visual { display: grid; gap: 14px; }
.club-visual img { width: 100%; height: 390px; object-fit: cover; object-position: center center; border-radius: 30px; box-shadow: var(--shadow); }
.club-meta { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.club-meta-card { background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 16px; box-shadow: var(--shadow-soft); }
.club-meta-card b { display: block; color: var(--black); font-size: 1.05rem; }
.club-meta-card span { color: var(--muted); font-size: .92rem; }
.dark-panel { background: var(--black); color: #fff; border-radius: 30px; padding: clamp(28px, 3.8vw, 42px); box-shadow: var(--shadow); }
.dark-panel h2 { color: #fff; }
.dark-panel p { color: rgba(255,255,255,.74); }
.dark-panel .kicker { color: #fed7aa; }
.features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 13px; margin-top: 22px; }
.feature { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.11); border-radius: 18px; padding: 16px; }
.feature b { display: block; color: #fff; margin-bottom: 4px; }
.feature span { color: rgba(255,255,255,.66); font-size: .93rem; }

.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-md); overflow: hidden; box-shadow: 0 12px 34px rgba(15,23,42,.06); }
.card img { width: 100%; height: 210px; object-fit: cover; object-position: center center; }
.card-body { padding: 22px; }
.tag { display: inline-flex; align-items: center; padding: 6px 10px; border-radius: 999px; background: #fff3e8; color: var(--orange-dark); font-size: .74rem; font-weight: 950; letter-spacing: .07em; text-transform: uppercase; margin-bottom: 12px; }

.schedule { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.schedule-card { display: grid; grid-template-columns: 1fr auto; gap: 16px; align-items: center; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-md); padding: 20px; box-shadow: 0 10px 28px rgba(15,23,42,.045); }
.schedule-card b { color: var(--black); font-size: 1.03rem; }
.schedule-card span { display: block; color: var(--muted); margin-top: 4px; }
.time-pill { min-width: 112px; padding: 10px 14px; border-radius: 16px; background: var(--black); color: #fff; text-align: center; font-weight: 950; white-space: nowrap; }

.camp-card { display: grid; grid-template-columns: .92fr 1.08fr; gap: 30px; align-items: stretch; background: #fff; border: 1px solid var(--line); border-radius: 32px; padding: clamp(22px, 3vw, 34px); box-shadow: var(--shadow); }
.camp-content { align-self: center; }
.camp-timeline { display: grid; gap: 12px; margin: 24px 0 4px; }
.camp-step { display: grid; grid-template-columns: 102px 1fr; gap: 14px; align-items: start; padding: 16px; background: var(--soft); border: 1px solid var(--line); border-radius: 18px; }
.camp-time { display: inline-flex; align-items: center; justify-content: center; min-height: 44px; border-radius: 999px; background: var(--black); color: #fff; font-weight: 950; font-size: .95rem; }
.camp-step b { display: block; color: var(--black); margin-bottom: 4px; }
.camp-step span { display: block; color: var(--muted); }
.camp-image { position: relative; }
.camp-image img { width: 100%; height: 100%; min-height: 420px; object-fit: cover; object-position: center center; border-radius: 26px; box-shadow: var(--shadow-soft); }
.camp-badge { position: absolute; right: 18px; top: 18px; background: #fff; border-radius: 999px; padding: 10px 15px; font-weight: 950; box-shadow: var(--shadow-soft); }

.people-section { background: var(--cream); border-block: 1px solid #fed7aa; }
.people-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.person { background: #fff; border: 1px solid #fed7aa; border-radius: var(--radius-md); padding: 18px; box-shadow: 0 10px 26px rgba(239,139,44,.08); }
.person img { width: 100%; height: 220px; border-radius: 18px; object-fit: cover; object-position: center top; margin-bottom: 14px; background: var(--soft); }
.role { color: var(--orange-dark); font-weight: 950; font-size: .9rem; margin-bottom: 4px; }
.person h3 { margin-bottom: 0; }

.sponsor-teaser { background: #fff; }
.sponsor-box { display: grid; grid-template-columns: .9fr 1.1fr; gap: 30px; align-items: center; background: linear-gradient(135deg, #0d0d0d 0%, #1e293b 100%); border-radius: 32px; padding: clamp(28px, 4vw, 46px); box-shadow: var(--shadow); }
.sponsor-box h2 { color: #fff; }
.sponsor-box p { color: rgba(255,255,255,.74); }
.sponsor-box .kicker { color: #fed7aa; }
.sponsor-names { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.sponsor-names span { min-height: 92px; display: grid; place-items: center; text-align: center; padding: 14px; border-radius: 18px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16); color: #fff; font-weight: 950; }

.cta-section { background: var(--black); color: #fff; padding: 70px 0; }
.cta-box { display: grid; grid-template-columns: 1fr auto; gap: 28px; align-items: center; }
.cta-box h2 { color: #fff; margin-bottom: 8px; }
.cta-box p { color: rgba(255,255,255,.74); max-width: 760px; }
.cta-box .kicker { color: #fed7aa; }
.cta-actions { margin-top: 0; justify-content: flex-end; }

.contact-panel { display: grid; grid-template-columns: .9fr 1.1fr; gap: 24px; align-items: stretch; background: #fff; border: 1px solid var(--line); border-radius: 32px; padding: clamp(22px, 3vw, 34px); box-shadow: var(--shadow); }
.contact-intro { background: var(--black); color: #fff; border-radius: 24px; padding: clamp(24px, 3vw, 34px); display: flex; flex-direction: column; justify-content: space-between; }
.contact-intro h2 { color: #fff; }
.contact-intro p { color: rgba(255,255,255,.72); }
.contact-intro .kicker { color: #fed7aa; }
.contact-note { margin-top: 28px; padding: 16px; border-radius: 18px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.76); }
.contact-boxes { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.contact-boxes article { background: var(--soft); border: 1px solid var(--line); border-radius: 18px; padding: 19px; }
.contact-boxes b { display: block; color: var(--black); margin-bottom: 6px; }
.contact-boxes span { display: block; color: var(--muted); }
.contact-boxes a { color: var(--orange-dark); font-weight: 850; }

.page-hero { padding: 58px 0 34px; background: linear-gradient(135deg,#fff7ed 0%, #fff 60%, #f8fafc 100%); border-bottom: 1px solid var(--line); }
.page-hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 34px; align-items: center; }
.page-hero p { max-width: 720px; font-size: 1.03rem; }
.page-hero-image { width: 100%; height: 280px; object-fit: cover; object-position: center center; border-radius: 28px; box-shadow: var(--shadow-soft); }
.breadcrumbs { display: flex; gap: 8px; flex-wrap: wrap; color: var(--muted); font-size: .94rem; margin-bottom: 16px; }
.breadcrumbs a { color: var(--orange-dark); font-weight: 850; }
.file-grid, .logo-grid, .info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.file-card, .logo-card, .info-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-soft); }
.file-card, .info-card { padding: 22px; }
.file-meta { display: flex; gap: 10px; flex-wrap: wrap; margin: 12px 0 18px; }
.meta-pill { display: inline-flex; padding: 6px 10px; border-radius: 999px; background: var(--soft); color: var(--muted); font-size: .82rem; font-weight: 850; }
.logo-card { min-height: 170px; padding: 24px; display: flex; align-items: center; justify-content: center; }
.logo-card img { max-width: 100%; max-height: 118px; width: auto; height: auto; object-fit: contain; }
.empty-state { padding: 28px; border: 1px dashed #fdba74; border-radius: var(--radius-md); background: #fff7ed; }
.info-grid { margin-top: 20px; }
.archive-filter { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 26px; }
.archive-filter a { display: inline-flex; align-items: center; min-height: 40px; padding: 9px 14px; border-radius: 999px; background: #fff; border: 1px solid var(--line); color: var(--black); font-weight: 900; box-shadow: 0 8px 20px rgba(15,23,42,.04); }
.archive-year { scroll-margin-top: 110px; margin-top: 34px; }
.archive-year > h3 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 18px; }
.archive-list { display: grid; gap: 16px; }
.archive-item { display: grid; grid-template-columns: 150px 1fr; gap: 20px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-md); padding: 22px; box-shadow: var(--shadow-soft); }
.archive-date { color: var(--orange-dark); font-weight: 950; }
.archive-content p { margin-bottom: 0; }
.legal-page { background: var(--soft); }
.legal-box { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(26px,5vw,48px); box-shadow: var(--shadow-soft); }
.legal-box h1 { font-size: clamp(2.2rem,5vw,3.6rem); }
.legal-box h2 { font-size: clamp(1.25rem,3vw,1.8rem); margin-top: 28px; }
.legal-box a { color: var(--orange-dark); font-weight: 850; }

.site-footer { background: #080808; color: rgba(255,255,255,.72); padding: 54px 0 28px; }
.footer-layout { display: grid; grid-template-columns: 1fr 1.55fr; gap: 54px; align-items: start; }
.footer-logo { display: inline-flex; align-items: center; gap: 13px; color: #fff; font-weight: 950; font-size: 1.18rem; margin-bottom: 14px; }
.footer-logo img { width: 58px; height: 58px; object-fit: contain; }
.footer-brand p { max-width: 420px; color: rgba(255,255,255,.68); }
.footer-brand a { color: #fff; font-weight: 850; }
.footer-columns { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.footer-col h3 { color: #fff; font-size: .9rem; letter-spacing: .1em; text-transform: uppercase; margin: 0 0 16px; }
.footer-links { display: grid; gap: 9px; }
.footer-links a { color: rgba(255,255,255,.72); font-weight: 780; }
.footer-links a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; border-top: 1px solid rgba(255,255,255,.12); margin-top: 40px; padding-top: 20px; color: rgba(255,255,255,.58); font-size: .92rem; }

@media (max-width: 1080px) {
  .main-nav { display: none; }
  .nav-toggle { display: inline-flex; }
  .main-nav.is-open { display: grid; position: fixed; top: 84px; left: 18px; right: 18px; background: #fff; border: 1px solid var(--line); border-radius: 24px; padding: 12px; box-shadow: var(--shadow); z-index: 200; }
  .main-nav.is-open a { padding: 13px 14px; }
  .hero-grid, .club-grid, .section-head, .camp-card, .sponsor-box, .cta-box, .contact-panel, .page-hero-grid, .footer-layout { grid-template-columns: 1fr; }
  .quick-grid, .cards, .schedule, .file-grid, .logo-grid, .info-grid { grid-template-columns: 1fr; }
  .people-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-actions { justify-content: flex-start; }
  .club-visual img, .camp-image img { height: 340px; min-height: 0; }
}
@media (max-width: 700px) {
  .container { width: min(100% - 28px, var(--max)); }
  .topbar { display: none; }
  .section { padding: 58px 0; }
  .hero { padding: 44px 0 58px; }
  .brand img { width: 50px; height: 50px; }
  .brand span { font-size: .95rem; }
  .brand small { font-size: .62rem; }
  .hero-stats, .features, .club-meta, .people-grid, .sponsor-names, .contact-boxes, .footer-columns { grid-template-columns: 1fr; }
  .hero-card { left: 14px; right: 14px; max-width: none; }
  .hero-image, .club-visual img, .camp-image img { height: 300px; }
  .schedule-card, .camp-step, .archive-item { grid-template-columns: 1fr; }
  .time-pill, .camp-time { width: fit-content; min-width: 0; }
  .actions { align-items: stretch; }
  .btn { width: 100%; }
  .footer-bottom { display: grid; }
}
