*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}
html{
  height:100%;
  overflow:hidden;
  background:#fff0c8;
}
body{
  font-family:Arial,sans-serif;
  background:#fff0c8;
  height:100%;
  overflow:hidden;
  color:#50323c;
}
.page-scroll{
  position:fixed;
  inset:0;
  overflow-x:hidden;
  overflow-y:auto;
  overscroll-behavior:contain;
  scrollbar-width:thin;
  scrollbar-color:rgba(255,175,56,.65) transparent;
}
.page-scroll::-webkit-scrollbar{width:6px;}
.page-scroll::-webkit-scrollbar-track{background:transparent;}
.page-scroll::-webkit-scrollbar-thumb{background:rgba(255,175,56,.55);border-radius:999px;}
.page-scroll::-webkit-scrollbar-thumb:hover{background:rgba(255,175,56,.75);}
a{color:inherit;}
.site-container{
  width:100%;
  max-width:1100px;
  margin:0 auto;
  padding-left:20px;
  padding-right:20px;
}
.site-header{
  width:100%;
  background:#f0de9e;
  border-bottom:1px solid rgba(255,190,80,.35);
  box-shadow:0 4px 14px rgba(255,185,70,.15);
  position:sticky;
  top:0;
  z-index:100;
}
.site-header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  min-height:56px;
  padding-top:12px;
  padding-bottom:12px;
}
.site-logo{
  flex-shrink:0;
  display:flex;
  align-items:center;
  text-decoration:none;
}
.site-logo img,
.brand-logo{
  display:block;
  height:44px;
  width:auto;
}
.nav-toggle{display:none;}
.site-nav{
  display:flex;
  align-items:center;
  justify-content:center;
}
.nav-menu{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:18px;
  list-style:none;
  flex-wrap:nowrap;
  padding:0;
}
.nav-menu a{
  text-decoration:none;
  font-size:12px;
  font-weight:800;
  color:#50323c;
  letter-spacing:.6px;
  transition:color .2s;
}
.nav-menu a:hover,
.nav-menu a.active{color:#7d4300;}
.header-actions{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:10px;
  flex-shrink:0;
}
.btn-register{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:9px 18px;
  border-radius:10px;
  font-size:11px;
  font-weight:800;
  letter-spacing:.5px;
  text-decoration:none;
  color:#7d4300;
  background:linear-gradient(180deg,#ffd770,#ffaf38);
  transition:background .2s ease;
  white-space:nowrap;
}
.btn-register:hover{background:linear-gradient(180deg,#ffaf38,#ffd770);}
.page-content{padding-bottom:48px;}
/* ── Hero ── */
.about-hero{
  position:relative;
  margin:0 -20px 32px;
  padding:32px 20px 28px;
  background:linear-gradient(145deg,#ffe8a8 0%,#ffd770 45%,#f5b848 100%);
  overflow:hidden;
}
.about-hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 12% 80%, rgba(255,255,255,.35) 0%, transparent 42%),
    radial-gradient(circle at 88% 20%, rgba(255,255,255,.25) 0%, transparent 38%);
  pointer-events:none;
}
.about-hero-inner{
  position:relative;
  display:grid;
  grid-template-columns:1fr;
  gap:28px;
  align-items:center;
}
.about-hero-copy{
  display:flex;
  flex-direction:column;
  justify-content:center;
}
.about-hero-copy h1{
  font-size:clamp(28px,6vw,42px);
  font-weight:900;
  line-height:1.15;
  color:#50323c;
  margin-bottom:14px;
}
.about-hero-copy h1 em{
  font-style:normal;
  color:#7d4300;
}
.about-hero-copy p{
  font-size:15px;
  line-height:1.7;
  color:#6b4a3a;
  max-width:480px;
}
.about-hero-visual{
  display:flex;
  justify-content:center;
  align-items:flex-end;
  gap:10px;
  min-height:170px;
}
.hero-char{
  width:30%;
  max-width:115px;
  aspect-ratio:3/4;
  border-radius:14px;
  overflow:hidden;
  border:3px solid #fff;
  box-shadow:0 12px 28px rgba(80,50,20,.22);
  background:linear-gradient(180deg,#fff8e8,#ffe8b8);
  transform-origin:center bottom;
}
.hero-char img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center top;
  display:block;
}
.hero-char:nth-child(1){transform:rotate(-6deg) translateY(8px);}
.hero-char:nth-child(2){
  width:36%;
  max-width:135px;
  z-index:2;
  transform:translateY(-6px);
}
.hero-char:nth-child(3){transform:rotate(6deg) translateY(8px);}
/* ── Quote ── */
.about-quote{
  position:relative;
  background:#fff;
  border-radius:16px;
  padding:28px 24px 28px 56px;
  margin-bottom:36px;
  box-shadow:0 10px 28px rgba(255,185,70,.14);
  border:1px solid rgba(255,190,80,.35);
}
.about-quote::before{
  content:"“";
  position:absolute;
  left:18px;
  top:8px;
  font-size:56px;
  line-height:1;
  font-weight:900;
  color:#ffd770;
}
.about-quote p{
  font-size:16px;
  line-height:1.65;
  font-weight:700;
  color:#50323c;
  margin-bottom:10px;
}
.about-quote cite{
  font-size:12px;
  font-style:normal;
  font-weight:800;
  color:#b86a00;
  letter-spacing:.4px;
}
/* ── Timeline ── */
.section-label{
  font-size:11px;
  font-weight:800;
  letter-spacing:1px;
  text-transform:uppercase;
  color:#b86a00;
  margin-bottom:8px;
}
.section-title{
  font-size:clamp(20px,4vw,26px);
  font-weight:900;
  color:#50323c;
  margin-bottom:22px;
}
.timeline{
  position:relative;
  padding-left:28px;
  margin-bottom:40px;
}
.timeline::before{
  content:"";
  position:absolute;
  left:7px;
  top:8px;
  bottom:8px;
  width:3px;
  border-radius:999px;
  background:linear-gradient(180deg,#ffd770,#ffaf38);
}
.timeline-item{
  position:relative;
  padding-bottom:24px;
}
.timeline-item:last-child{padding-bottom:0;}
.timeline-item::before{
  content:"";
  position:absolute;
  left:-28px;
  top:6px;
  width:14px;
  height:14px;
  border-radius:50%;
  background:#fff;
  border:3px solid #ffaf38;
  box-shadow:0 0 0 3px rgba(255,215,112,.4);
}
.timeline-year{
  font-size:11px;
  font-weight:800;
  color:#b86a00;
  letter-spacing:.6px;
  margin-bottom:4px;
}
.timeline-item h3{
  font-size:15px;
  font-weight:900;
  color:#50323c;
  margin-bottom:6px;
}
.timeline-item p{
  font-size:13px;
  line-height:1.65;
  color:#9b7b87;
}
/* ── Cast ── */
.cast-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:16px;
  margin-bottom:40px;
}
.cast-card{
  display:grid;
  grid-template-columns:110px 1fr;
  gap:16px;
  align-items:center;
  background:#fff;
  border-radius:14px;
  padding:14px;
  box-shadow:0 8px 22px rgba(255,185,70,.12);
  border:1px solid rgba(255,190,80,.28);
  transition:transform .2s ease, box-shadow .2s ease;
}
.cast-card:hover{
  transform:scale(1.015);
  box-shadow:0 10px 26px rgba(255,185,70,.2);
}
.cast-photo{
  aspect-ratio:3/4;
  border-radius:10px;
  overflow:hidden;
  border:2px solid #fff;
  box-shadow:0 4px 12px rgba(255,185,70,.2);
}
.cast-photo img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center top;
  display:block;
}
.cast-photo.girl{background:linear-gradient(180deg,#ffd770,#ffaf38);}
.cast-photo.boy{background:linear-gradient(180deg,#ffe090,#f5b848);}
.cast-photo.mascot{background:linear-gradient(180deg,#79dfb8,#43ba8a);}
.cast-info h3{
  font-size:16px;
  font-weight:900;
  color:#7d4300;
  margin-bottom:4px;
}
.cast-role{
  display:inline-block;
  font-size:10px;
  font-weight:800;
  letter-spacing:.4px;
  padding:4px 8px;
  border-radius:6px;
  background:#fff8e8;
  color:#b86a00;
  margin-bottom:8px;
}
.cast-info p{
  font-size:13px;
  line-height:1.6;
  color:#9b7b87;
}
/* ── Beliefs ── */
.beliefs{
  display:grid;
  grid-template-columns:1fr;
  gap:12px;
  margin-bottom:36px;
}
.belief{
  display:flex;
  gap:14px;
  align-items:flex-start;
  background:linear-gradient(135deg,#fff 0%,#fffaf0 100%);
  border-radius:12px;
  padding:18px 16px;
  border:1px solid rgba(255,190,80,.3);
}
.belief-num{
  flex-shrink:0;
  width:36px;
  height:36px;
  border-radius:10px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:14px;
  font-weight:900;
  color:#7d4300;
  background:linear-gradient(180deg,#ffd770,#ffaf38);
}
.belief h3{
  font-size:14px;
  font-weight:900;
  color:#50323c;
  margin-bottom:4px;
}
.belief p{
  font-size:13px;
  line-height:1.6;
  color:#9b7b87;
}
/* ── CTA ── */
.about-cta{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:14px;
  text-align:center;
  padding:32px 24px;
  border-radius:16px;
  background:#fff;
  border:none;
  box-shadow:0 10px 22px rgba(255,185,70,.14);
  color:#50323c;
}
.about-cta h2{
  font-size:20px;
  font-weight:900;
}
.about-cta p{
  font-size:13px;
  line-height:1.6;
  color:#7a5f6a;
  max-width:400px;
}
.cta-actions{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  justify-content:center;
  margin-top:4px;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 22px;
  border-radius:10px;
  font-size:13px;
  font-weight:900;
  text-decoration:none;
  letter-spacing:.3px;
  transition:background .2s ease, color .2s ease;
}
.btn-gold{
  background:linear-gradient(180deg,#ffd770,#ffaf38);
  color:#7d4300;
}
.btn-gold:hover{background:linear-gradient(180deg,#ffaf38,#ffd770);}
.btn-ghost{
  background:linear-gradient(180deg,#ffd770,#ffaf38);
  color:#7d4300;
  border:none;
}
.btn-ghost:hover{background:linear-gradient(180deg,#ffaf38,#ffd770);}
/* ── Footer ── */
.site-footer{
  width:100%;
  background:#fff;
  border-top:1px solid rgba(255,190,80,.35);
  padding-top:40px;
  padding-bottom:24px;
}
.footer-top{
  display:grid;
  grid-template-columns:1fr;
  gap:28px;
  margin-bottom:32px;
}
.footer-brand .brand-logo{height:40px;margin-bottom:10px;}
.footer-brand p{
  font-size:13px;
  line-height:1.6;
  color:#9b7b87;
  max-width:280px;
}
.footer-col h4{
  font-size:12px;
  font-weight:900;
  color:#50323c;
  letter-spacing:.8px;
  margin-bottom:14px;
  text-transform:uppercase;
}
.footer-links{list-style:none;}
.footer-links li{margin-bottom:10px;}
.footer-links a{
  font-size:13px;
  color:#9b7b87;
  text-decoration:none;
  transition:color .2s;
}
.footer-links a:hover{color:#7d4300;}
.footer-bottom{
  padding-top:24px;
  border-top:1px solid rgba(255,190,80,.25);
  display:flex;
  flex-direction:column;
  gap:8px;
  align-items:center;
  text-align:center;
}
.footer-bottom p{font-size:12px;color:#b89aa6;}
@media (min-width:768px){
  .site-header-inner{
    display:grid;
    grid-template-columns:1fr auto 1fr;
    align-items:center;
    padding-top:14px;
    padding-bottom:14px;
  }
  .site-logo{grid-column:1;justify-self:start;}
  .site-nav{grid-column:2;}
  .header-actions{grid-column:3;justify-self:end;}
  .btn-register{padding:10px 20px;font-size:12px;}
  .nav-menu{gap:28px;}
  .nav-menu a{font-size:13px;}
  .about-hero{
    margin:0 0 40px;
    padding:40px 0 36px;
  }
  .about-hero-inner{
    grid-template-columns:1.1fr .9fr;
    gap:40px;
    min-height:240px;
  }
  .about-hero-visual{
    justify-content:flex-end;
    min-height:190px;
  }
  .cast-grid{grid-template-columns:repeat(3,1fr);}
  .cast-card{
    grid-template-columns:1fr;
    text-align:center;
    padding:20px 16px 22px;
  }
  .cast-photo{
    width:100%;
    max-width:140px;
    margin:0 auto 12px;
  }
  .beliefs{grid-template-columns:repeat(3,1fr);}
  .footer-top{grid-template-columns:1.4fr 1fr 1fr 1fr;}
  .footer-bottom{
    flex-direction:row;
    justify-content:space-between;
    text-align:left;
  }
}
@media (max-width:767px){
  .page-scroll{scrollbar-width:none;-ms-overflow-style:none;}
  .page-scroll::-webkit-scrollbar{display:none;}
  .site-header-inner{min-height:52px;}
  .site-logo img{height:38px;}
  .btn-register{display:none;}
  .nav-toggle{
    display:block;
    position:relative;
    width:40px;
    height:40px;
    border:none;
    background:transparent;
    cursor:pointer;
    padding:0;
    flex-shrink:0;
  }
  .nav-toggle span{
    position:absolute;
    left:9px;
    right:9px;
    top:50%;
    height:3px;
    margin-top:-1.5px;
    background:#7d4300;
    border-radius:1px;
    transform-origin:center;
    transition:transform .25s, opacity .25s;
  }
  .nav-toggle span:nth-child(1){transform:translateY(-8px);}
  .nav-toggle span:nth-child(2){transform:translateY(0);}
  .nav-toggle span:nth-child(3){transform:translateY(8px);}
  .site-header.menu-open .nav-toggle span:nth-child(1){transform:translateY(0) rotate(45deg);}
  .site-header.menu-open .nav-toggle span:nth-child(2){opacity:0;}
  .site-header.menu-open .nav-toggle span:nth-child(3){transform:translateY(0) rotate(-45deg);}
  .site-nav{
    display:none;
    position:absolute;
    top:100%;
    left:0;
    right:0;
    background:#f0de9e;
    border-bottom:1px solid rgba(255,190,80,.35);
    box-shadow:0 10px 20px rgba(255,185,70,.14);
  }
  .site-header.menu-open .site-nav{display:block;}
  .nav-menu{
    width:100%;
    flex-direction:column;
    align-items:stretch;
    gap:0;
    padding:8px 0;
  }
  .nav-menu li{border-bottom:1px solid rgba(255,190,80,.25);}
  .nav-menu li:last-child{border-bottom:none;}
  .nav-menu a{
    display:block;
    padding:14px 20px;
    font-size:13px;
    letter-spacing:.5px;
  }
}
