:root {
  --orange: #e76814;
  --red: #c0392b;
  --bg: #000;
  --text: #ccc;
  --card: #0a0a0a;
  --border: #1a1a1a;
}

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

html, body {
  width: 100%;
  min-height: 100%;
  background: var(--bg);
  color: var(--text);
  font-family: Georgia, serif;
}

body.home-page { overflow: hidden; }
body.home-page.site-open { overflow: auto; }
body.home-page:not(.site-open) #site { display: none !important; }
body.inner-page { overflow-x: hidden; }

a { color: inherit; }

/* Nav */
.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 10px 16px;
  background: #000;
  border-bottom: 1px solid transparent;
  position: sticky;
  top: 0;
  z-index: 50;
  gap: 12px;
}
.nav-brand img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(231, 104, 20, 0.4));
}
.nav-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}
.nav-links a {
  color: #bbb;
  text-decoration: none;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-family: 'Cinzel', serif;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--orange); }
.nav-links a.active,
.dropdown-trigger.active { color: #fff; }
.nav-links a.active:hover,
.dropdown-trigger.active:hover { color: var(--orange); }
.monly {
  background: var(--orange) !important;
  color: #fff !important;
  padding: 8px 14px;
  border-radius: 2px;
  font-weight: 700;
}
.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--orange);
  color: var(--orange);
  font-size: 1.2rem;
  padding: 6px 10px;
  cursor: pointer;
}
.dropdown { position: relative; }
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #111;
  border: 1px solid var(--orange);
  border-radius: 4px;
  min-width: 220px;
  z-index: 100;
  padding: 6px 0;
}
.dropdown:hover .dropdown-menu,
.dropdown.open .dropdown-menu { display: block; }
.dropdown-menu a {
  display: block;
  padding: 10px 18px;
  font-size: 0.68rem;
  color: #fff;
  transition: color 0.2s;
}
.dropdown-menu a:hover { color: var(--orange); }

@media (max-width: 900px) {
  .site-nav { justify-content: space-between; }
  .nav-toggle { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #000;
    border-bottom: 1px solid var(--orange);
    flex-direction: column;
    align-items: stretch;
    padding: 12px 16px 16px;
  }
  .nav-links.open { display: flex; }
  .dropdown-menu {
    position: static;
    border: none;
    background: #0a0a0a;
    margin-top: 4px;
  }
}

/* Hero / home */
#site .hero {
  position: relative;
  min-height: calc(100vh - 56px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px 20px 48px;
  gap: 10px;
  overflow: hidden;
}
#hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 42% center;
  opacity: 1;
  filter: contrast(1.05) brightness(1.06);
  z-index: 0;
  pointer-events: none;
}
#site .hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.32);
  z-index: 1;
  pointer-events: none;
}
.hero > *:not(#hero-video) { position: relative; z-index: 2; }
.hero-logo {
  width: min(320px, 70vw);
  height: auto;
  aspect-ratio: 1;
  object-fit: contain;
  filter: drop-shadow(0 0 16px rgba(200, 30, 30, 0.5));
}
.hero-title {
  font-size: clamp(1.8rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--orange);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-shadow: 0 2px 20px rgba(231, 104, 20, 0.5);
}
.hero-sub {
  font-size: clamp(0.75rem, 2vw, 1rem);
  color: var(--red);
  letter-spacing: 0.35em;
  text-transform: uppercase;
}
.mission-text {
  font-size: clamp(0.82rem, 1.8vw, 1rem);
  line-height: 2;
  max-width: 640px;
  margin-top: 16px;
}
.accent { color: var(--orange); }
.ig-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--orange);
  text-decoration: none;
  font-family: 'Cinzel', serif;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: 1px solid var(--orange);
  padding: 8px 20px;
  margin: 8px 0;
  transition: background 0.2s, color 0.2s;
}
.ig-btn:hover { background: var(--orange); color: #000; }
.ig-btn.small { font-size: 0.65rem; padding: 7px 18px; }

/* Splash */
#splash {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: #000;
  --logo-size: min(300px, 72vw);
  --logo-half: calc(var(--logo-size) / 2);
  --split-ease: 1.3s cubic-bezier(0.76, 0, 0.24, 1);
}
#curtain-top,
#curtain-bottom {
  position: fixed;
  left: 0;
  right: 0;
  background: #000;
  z-index: 15;
  transition: transform var(--split-ease);
  will-change: transform;
}
#curtain-top {
  top: 0;
  height: calc(50% - var(--logo-half));
}
#curtain-bottom {
  bottom: 0;
  height: calc(50% - var(--logo-half));
}
#splash.entering #curtain-top { transform: translateY(-100%); }
#splash.entering #curtain-bottom { transform: translateY(100%); }
#splash-logo {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: var(--logo-size);
  height: var(--logo-size);
  z-index: 20;
  pointer-events: none;
}
.logo-half {
  position: absolute;
  left: 0;
  width: 100%;
  height: 50%;
  overflow: hidden;
  transition: transform var(--split-ease);
  will-change: transform;
}
.logo-half-top { top: 0; }
.logo-half-bottom { bottom: 0; }
#splash.entering .logo-half-top { transform: translateY(calc(-50vh - var(--logo-half))); }
#splash.entering .logo-half-bottom { transform: translateY(calc(50vh - var(--logo-half))); }
.logo-half img {
  width: var(--logo-size);
  height: var(--logo-size);
  object-fit: contain;
  position: absolute;
  left: 0;
  animation: pulseOrange 2.5s ease-in-out infinite;
}
.logo-half-top img { top: 0; }
.logo-half-bottom img { top: calc(var(--logo-half) * -1); }
#hint {
  position: fixed;
  top: calc(50% - var(--logo-half) - 36px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 23;
  color: var(--orange);
  font-size: 0.68rem;
  letter-spacing: 0.26em;
  font-weight: 900;
  text-transform: uppercase;
  font-family: 'Cinzel', serif;
  animation: blink 2.2s ease-in-out infinite;
  pointer-events: none;
  white-space: nowrap;
}
.splash-hit {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: var(--logo-size);
  height: var(--logo-size);
  z-index: 25;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
#splash.splash-hidden {
  display: none !important;
  visibility: hidden;
  pointer-events: none;
}
#hint.hide { display: none; }
#emberbox {
  position: fixed;
  inset: 0;
  z-index: 16;
  overflow: hidden;
  pointer-events: none;
}
.ember {
  position: fixed;
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  z-index: 16;
}
@keyframes pulseOrange {
  0%, 100% { filter: drop-shadow(0 0 6px rgba(231, 104, 20, 0.2)); }
  50% { filter: drop-shadow(0 0 11px rgba(255, 140, 0, 0.38)); }
}
@keyframes blink {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}
@keyframes rise {
  0% { opacity: 0.9; transform: translateY(0) translateX(0) scale(1); }
  100% { opacity: 0; transform: translateY(-110vh) translateX(var(--drift, 40px)) scale(0.05); }
}

/* Back bar on inner pages */
.page-back-bar {
  width: 100%;
  display: flex;
  align-items: center;
  padding: 10px clamp(16px, 4vw, 32px);
  background: #000;
  border-bottom: 1px solid rgba(231, 104, 20, 0.45);
  box-sizing: border-box;
}
.page-back {
  color: #888;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  font-family: 'Cinzel', serif;
  transition: color 0.2s;
}
.page-back:hover { color: var(--orange); }

/* Inner pages */
.page-main {
  min-height: calc(100vh - 56px - 41px);
  background: #000;
}
.scroll-y {
  overflow-y: auto;
  max-height: calc(100vh - 56px - 41px);
  padding-bottom: 40px;
}
.page-panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 32px 20px 48px;
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
}
.panel-header { text-align: center; margin-bottom: 24px; }
.panel-title {
  font-size: clamp(1.4rem, 4vw, 1.8rem);
  font-weight: 900;
  color: var(--orange);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.panel-sub {
  font-family: 'Cinzel', serif;
  font-size: 0.68rem;
  color: #fff;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  margin-top: 6px;
}
.panel-rule {
  width: 260px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
  margin: 16px auto 0;
}
.panel-rule.wide { width: 280px; margin-top: 18px; }
.panel-footer {
  font-family: 'Cinzel', serif;
  font-size: 0.65rem;
  color: #fff;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  text-align: center;
  margin-top: 24px;
}

/* Chapters */
.chap-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 32px 12px 48px;
  width: 100%;
}
.chap-logo {
  width: 190px;
  height: 190px;
  object-fit: contain;
  filter: drop-shadow(0 0 18px rgba(231, 104, 20, 0.5));
}
.chap-logo-nb {
  width: 190px;
  height: 190px;
  object-fit: contain;
}
.chap-title {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--orange);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 12px;
}
.chap-sub {
  color: #fff;
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-family: 'Cinzel', serif;
}
.chap-rule {
  width: 160px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
  margin: 16px auto;
}
.chap-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  width: 100%;
  justify-content: center;
  align-items: flex-start;
  margin-top: 24px;
  max-width: 1100px;
}
.sh-wrap {
  display: flex;
  gap: 16px;
  width: 100%;
  justify-content: center;
  align-items: flex-start;
  margin-top: 40px;
  flex-wrap: nowrap;
}
.sh-wrap-tomb { align-items: flex-start; }
.sh-side-col,
.sh-block { flex: 0 0 auto; }
.sh-row-group {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.sh-col-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 0 0 auto;
}
.sh-label {
  font-family: 'Cinzel', serif;
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  color: var(--orange);
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 8px;
  max-width: 100%;
}
.sh-grid {
  display: grid;
  gap: 8px;
}
.sh-grid1 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  width: 128px;
}
.sh-card, .merc-card {
  background: transparent;
  border: none;
  border-top: 2px solid var(--orange);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6px 4px;
  transition: border-top-color 0.2s;
}
.sh-card {
  width: 128px;
  min-height: 128px;
}
.merc-card {
  width: 100px;
  min-height: 100px;
}
.sh-card:hover, .merc-card:hover { border-top-color: #fff; }
.sh-icon {
  width: 52px;
  height: 52px;
  object-fit: contain;
  margin-bottom: 4px;
}
.sh-name {
  font-size: 0.72rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.sh-role {
  font-size: 0.52rem;
  color: #666;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 2px;
  font-family: 'Cinzel', serif;
}

/* Board */
.board-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
  width: 100%;
}
.board-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-top: 2px solid var(--orange);
  padding: 28px 20px;
  text-align: center;
}
.board-card:hover { border-top-color: #fff; }
.board-badge {
  width: 90px;
  height: 90px;
  object-fit: contain;
  margin: 0 auto 14px;
  display: block;
}
.board-name {
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--orange);
}
.board-role {
  font-family: 'Cinzel', serif;
  font-size: 0.65rem;
  color: #888;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}
.board-divider {
  width: 40px;
  height: 1px;
  background: var(--orange);
  margin: 12px auto;
  opacity: 0.4;
}

/* Events */
.events-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  width: 100%;
  max-width: 860px;
}
.event-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--orange);
  padding: 18px 24px;
  display: flex;
  gap: 20px;
  align-items: center;
  transition: border-left-color 0.2s;
}
.event-card:hover { border-left-color: #fff; }
.event-date-box {
  flex-shrink: 0;
  width: 72px;
  text-align: center;
  border-right: 1px solid #1e1e1e;
  padding-right: 18px;
}
.event-month {
  font-family: 'Cinzel', serif;
  font-size: 0.58rem;
  color: var(--orange);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.event-day {
  font-size: 2rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}
.event-year {
  font-family: 'Cinzel', serif;
  font-size: 0.55rem;
  color: #555;
}
.event-chapter {
  font-family: 'Cinzel', serif;
  font-size: 0.6rem;
  color: var(--orange);
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.event-name { font-size: 1rem; font-weight: 700; color: #fff; }
.event-tag {
  font-family: 'Cinzel', serif;
  font-size: 0.5rem;
  color: #555;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-top: 6px;
}

/* GBNF */
.gbnf-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  width: 100%;
}
.gbnf-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-top: 2px solid var(--orange);
  padding: 24px 28px;
  text-align: center;
  position: relative;
  transition: border-top-color 0.2s;
}
.gbnf-card:hover { border-top-color: #fff; }
.gbnf-card::before {
  content: '\2020';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #000;
  padding: 0 10px;
  color: var(--orange);
}
.gbnf-nickname { font-style: italic; color: var(--orange); margin-bottom: 8px; }
.gbnf-name { font-size: 1.1rem; font-weight: 900; color: #fff; }
.gbnf-chapter {
  font-family: 'Cinzel', serif;
  font-size: 0.6rem;
  color: #666;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin: 8px 0 12px;
}
.gbnf-dates { font-size: 0.88rem; color: #999; }
.gbnf-dates span { color: var(--orange); }
.gbnf-eternal {
  font-family: 'Cinzel', serif;
  font-size: 0.55rem;
  color: #fff;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-top: 10px;
}

/* About */
.about-panel { max-width: 1000px; }
.about-logo {
  width: 180px;
  height: 180px;
  object-fit: contain;
  filter: drop-shadow(0 0 16px rgba(231, 104, 20, 0.4));
}
.about-sections {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  width: 100%;
}
.about-section { flex: 1; min-width: 260px; max-width: 380px; }
.about-section-icon { font-size: 1.8rem; text-align: center; color: var(--orange); }
.about-section-title {
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  letter-spacing: 0.35em;
  color: var(--orange);
  text-transform: uppercase;
  text-align: center;
  margin: 12px 0 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(231, 104, 20, 0.3);
}
.about-section-text {
  font-size: 1.05rem;
  color: #bbb;
  line-height: 2;
  text-align: center;
}
.about-section-text strong { color: var(--orange); }
.about-divider {
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(231, 104, 20, 0.4), transparent);
  align-self: stretch;
  min-height: 200px;
}
.about-footer {
  margin-top: 30px;
  text-align: center;
  width: 100%;
  max-width: 860px;
}
.about-footer-rule {
  width: 300px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
  margin: 0 auto 22px;
}
.about-footer-text {
  font-family: Georgia, serif;
  font-size: 1.2rem;
  color: var(--orange);
  letter-spacing: 0.06em;
  font-style: italic;
  line-height: 1.8;
}
.about-footer-text strong {
  font-weight: bold;
  color: var(--orange);
}
@media (max-width: 700px) {
  .about-divider { display: none; }
}

/* Contact */
.contact-panel { text-align: center; min-height: calc(100vh - 120px); justify-content: center; }
.contact-logo {
  width: 150px;
  height: 150px;
  object-fit: contain;
  filter: drop-shadow(0 0 16px rgba(231, 104, 20, 0.4));
  margin-bottom: 20px;
}
.contact-message {
  font-size: 1.2rem;
  color: #fff;
  line-height: 1.9;
  max-width: 600px;
}
.contact-message span { color: var(--orange); font-weight: bold; }
.contact-email {
  display: inline-block;
  margin-top: 16px;
  font-family: 'Cinzel', serif;
  font-size: 0.75rem;
  color: var(--orange);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  border: 1px solid var(--orange);
  padding: 12px 28px;
  text-decoration: none;
}
.contact-email:hover { background: var(--orange); color: #000; }
.contact-footer {
  font-family: 'Cinzel', serif;
  font-size: 0.6rem;
  color: #333;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-top: 32px;
}

/* Gallery */
.gallery-page .page-main { display: flex; flex-direction: column; height: calc(100vh - 56px - 41px); }
.gallery-main { max-width: 100%; padding: 0; }
.gallery-header { text-align: center; padding: 20px; flex-shrink: 0; }
.gallery-scroll {
  flex: 1;
  overflow-y: auto;
  padding: 0 16px 24px;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 10px;
  max-width: 1100px;
  margin: 0 auto;
}
.gallery-item {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  cursor: pointer;
  background: var(--card);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0);
  transition: background 0.2s;
}
.gallery-overlay span {
  color: #fff;
  font-size: 1.8rem;
  opacity: 0;
  transition: opacity 0.2s;
}
.gallery-item:hover .gallery-overlay { background: rgba(0, 0, 0, 0.35); }
.gallery-item:hover .gallery-overlay span { opacity: 1; }

#lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 300;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
#lightbox.active { display: flex; }
#lightbox-img {
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
  border: 1px solid var(--border);
}
#lightbox-close {
  position: absolute;
  top: 16px;
  right: 24px;
  color: var(--orange);
  font-size: 1.8rem;
  cursor: pointer;
}
#lightbox-prev, #lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: var(--orange);
  font-size: 2rem;
  cursor: pointer;
  padding: 10px 20px;
  background: rgba(0, 0, 0, 0.5);
  border: none;
}
#lightbox-prev { left: 10px; }
#lightbox-next { right: 10px; }
#lightbox-counter {
  position: absolute;
  bottom: 16px;
  font-family: 'Cinzel', serif;
  font-size: 0.65rem;
  color: #666;
  letter-spacing: 0.3em;
}

/* Chapters index */
.chapters-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  max-width: 420px;
}
.chapter-link-card {
  display: block;
  text-decoration: none;
  background: transparent;
  border-top: 2px solid var(--orange);
  border-left: 2px solid var(--orange);
  padding: 18px 24px;
  text-align: center;
  transition: border-color 0.2s;
}
.chapter-link-card:hover {
  border-top-color: #fff;
  border-left-color: #fff;
}
.chapter-link-name {
  font-family: 'Cinzel', serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.chapter-link-card:hover .chapter-link-name { color: var(--orange); }

@media (max-width: 1100px) {
  .sh-wrap,
  .sh-row-group { flex-wrap: wrap; justify-content: center; }
}

@media (max-width: 900px) {
  .chap-wrap {
    flex-direction: column;
    align-items: center;
  }
  .sh-wrap { flex-wrap: wrap; }
  .sh-row-group { flex-wrap: wrap; justify-content: center; }
  .sh-col-main { width: 100%; }
  .sh-label { width: auto !important; }
  .sh-grid { grid-template-columns: repeat(auto-fill, minmax(100px, 128px)) !important; }
  .events-grid { grid-template-columns: 1fr; max-width: 100%; }
  .board-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); }
  .gbnf-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-title { letter-spacing: 0.04em; }
  .hero-sub { letter-spacing: 0.2em; }
  .mission-text { font-size: 0.82rem; line-height: 1.8; }
  .panel-title { font-size: 1.3rem; }
  .chap-title { font-size: 1.3rem; }
  .gallery-grid { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); }
}
