:root {
  --bg: #0c111a;
  --bg-soft: #121925;
  --panel: rgba(24, 32, 46, 0.86);
  --panel-solid: #171f2d;
  --text: #f7f7f5;
  --muted: #b2bbc8;
  --line: rgba(255, 255, 255, 0.11);
  --orange: #ff7417;
  --orange-light: #ff9a4f;
  --cyan: #25d8e9;
  --cyan-light: #73eff7;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
  --radius: 24px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 82% 4%, rgba(37, 216, 233, .12), transparent 25rem),
    radial-gradient(circle at 8% 46%, rgba(255, 116, 23, .1), transparent 27rem),
    var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.skip-link { position: fixed; left: 1rem; top: -100px; z-index: 999; background: white; color: black; padding: .7rem 1rem; border-radius: 8px; }
.skip-link:focus { top: 1rem; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  background: rgba(12, 17, 26, .78);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(16px);
  transition: .25s ease;
}
.site-header.scrolled { border-color: var(--line); background: rgba(12, 17, 26, .95); }
.nav-wrap { height: 88px; display: flex; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; text-decoration: none; }
.brand img { width: 102px; height: auto; border-radius: 8px; }
.site-nav { display: flex; align-items: center; gap: 1.55rem; }
.site-nav a { color: #e1e6ed; text-decoration: none; font-weight: 700; font-size: .9rem; transition: color .2s ease; }
.site-nav a:hover, .site-nav a:focus-visible { color: var(--cyan); }
.site-nav .nav-cta { border: 1px solid rgba(255, 116, 23, .55); border-radius: 999px; padding: .58rem 1rem; }
.site-nav .nav-cta:hover { color: white; border-color: var(--orange); background: rgba(255, 116, 23, .09); }
.menu-toggle { display: none; border: 0; background: transparent; padding: .55rem; }
.menu-toggle span { display: block; width: 25px; height: 2px; margin: 5px; background: white; transition: .25s ease; }

.hero { min-height: 820px; display: grid; align-items: center; position: relative; padding: 150px 0 90px; overflow: hidden; }
.hero::before { content: ""; position: absolute; width: 560px; height: 560px; border-radius: 50%; background: rgba(37, 216, 233, .08); filter: blur(45px); right: -170px; top: 80px; }
.hero::after { content: ""; position: absolute; width: 360px; height: 360px; border-radius: 50%; background: rgba(255, 116, 23, .065); filter: blur(40px); left: -150px; bottom: 10px; }
.hero-grid { position: absolute; inset: 0; opacity: .22; background-image: linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px); background-size: 46px 46px; mask-image: linear-gradient(to bottom, black, transparent 92%); }
.hero-layout { position: relative; z-index: 1; display: grid; grid-template-columns: 1.03fr .97fr; align-items: center; gap: 4rem; }
.eyebrow { margin: 0 0 1rem; font-weight: 800; font-size: .74rem; letter-spacing: .22em; color: var(--cyan); }
h1, h2, h3 { font-family: Orbitron, Inter, sans-serif; line-height: 1.12; margin: 0; }
h1 { font-size: clamp(3rem, 5.7vw, 5.9rem); letter-spacing: -.045em; max-width: 720px; }
h1 span { background: linear-gradient(90deg, var(--orange), var(--cyan) 78%); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-text { max-width: 650px; margin: 1.6rem 0 2rem; font-size: clamp(1rem, 1.4vw, 1.16rem); color: var(--muted); }
.hero-actions { display: flex; flex-wrap: wrap; gap: .85rem; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 49px; padding: .8rem 1.22rem; border-radius: 12px; text-decoration: none; font-weight: 800; font-size: .92rem; transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); }
.button.primary { color: #1b0c02; background: linear-gradient(135deg, var(--orange), var(--orange-light)); box-shadow: 0 13px 38px rgba(255, 116, 23, .22); }
.button.primary:hover { box-shadow: 0 16px 46px rgba(255, 116, 23, .3); }
.button.secondary { background: rgba(255, 255, 255, .035); border: 1px solid var(--line); color: var(--text); }
.button.secondary:hover { border-color: rgba(37, 216, 233, .5); background: rgba(37, 216, 233, .045); }
.hero-points { display: flex; flex-wrap: wrap; gap: .8rem 1.3rem; margin-top: 2rem; color: #c1c8d2; font-size: .82rem; }
.hero-points span::before { content: "●"; color: var(--cyan); font-size: .62rem; font-weight: 800; margin-right: .5rem; vertical-align: .1rem; }

.hero-showcase { border: 1px solid rgba(255, 255, 255, .12); border-radius: 28px; background: rgba(18, 25, 37, .9); box-shadow: var(--shadow); overflow: hidden; position: relative; }
.hero-showcase::before { content: ""; position: absolute; inset: 11px; z-index: 5; pointer-events: none; border: 1px solid rgba(255, 255, 255, .045); border-radius: 19px; }
.stall-photo { position: relative; margin: 0; height: 300px; overflow: hidden; border-bottom: 1px solid var(--line); }
.stall-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(8, 12, 19, .86), transparent 48%); pointer-events: none; }
.stall-photo picture, .stall-photo img { width: 100%; height: 100%; }
.stall-photo img { object-fit: cover; object-position: center 52%; transition: transform .7s ease; }
.hero-showcase:hover .stall-photo img { transform: scale(1.025); }
.stall-photo figcaption { position: absolute; left: 1.75rem; right: 1.75rem; bottom: 1.35rem; z-index: 2; display: flex; align-items: end; justify-content: space-between; gap: 1rem; }
.stall-photo figcaption strong { font-family: Orbitron, sans-serif; font-size: 1rem; }
.photo-label { display: inline-flex; padding: .32rem .62rem; border-radius: 999px; background: var(--orange); color: #1a0b02; font-size: .63rem; font-weight: 900; letter-spacing: .14em; }
.next-event-card { position: relative; min-height: 275px; padding: 2rem 2.2rem 2.25rem; overflow: hidden; display: flex; flex-direction: column; justify-content: center; }
.card-glow { position: absolute; width: 230px; height: 230px; border-radius: 50%; background: rgba(37, 216, 233, .1); filter: blur(26px); right: -70px; top: -70px; }
.card-kicker { position: relative; z-index: 1; margin: 0 0 .9rem; color: var(--orange-light); font-weight: 800; font-size: .7rem; letter-spacing: .19em; }
.next-event-content { position: relative; z-index: 1; }
.next-event-content h2 { font-size: clamp(1.55rem, 2.7vw, 2.15rem); }
.next-event-content p { color: var(--muted); margin-bottom: .65rem; }
.event-meta { display: grid; gap: .5rem; margin: 1.05rem 0; color: #e1e8ef; font-size: .9rem; }
.event-meta span { display: flex; gap: .55rem; align-items: flex-start; }
.text-link { color: var(--cyan); text-decoration: none; font-weight: 800; }
.text-link:hover { color: var(--cyan-light); }

.section { padding: 105px 0; }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 2rem; margin-bottom: 2.7rem; }
.section-heading h2, .about-copy h2, .follow-panel h2, .contact-panel h2 { font-size: clamp(2rem, 4vw, 3.65rem); letter-spacing: -.035em; }
.section-heading > p { max-width: 530px; color: var(--muted); margin: 0; }
.events-section { background: rgba(255, 255, 255, .015); border-block: 1px solid rgba(255, 255, 255, .05); }
.events-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.15rem; }
.event-card { position: relative; background: rgba(23, 31, 45, .74); border: 1px solid var(--line); border-radius: 18px; padding: 1.45rem; overflow: hidden; transition: transform .25s ease, border-color .25s ease; }
.event-card::before { content: ""; position: absolute; inset: 0 auto auto 0; width: 100%; height: 3px; background: linear-gradient(90deg, var(--orange), var(--cyan)); opacity: .8; }
.event-card:hover { transform: translateY(-5px); border-color: rgba(37, 216, 233, .32); }
.event-card .date-tile { display: inline-grid; min-width: 68px; text-align: center; border-radius: 13px; overflow: hidden; margin-bottom: 1.25rem; border: 1px solid rgba(255, 116, 23, .32); }
.date-tile .month { padding: .26rem .5rem; font-weight: 900; font-size: .68rem; letter-spacing: .13em; color: #1b0b02; background: var(--orange); }
.date-tile .day { padding: .45rem .5rem; font-size: 1.35rem; font-weight: 800; background: rgba(255, 116, 23, .07); }
.event-card h3 { font-size: 1.2rem; }
.event-card p { color: var(--muted); font-size: .9rem; margin: .6rem 0; }
.event-card .event-actions { display: flex; flex-wrap: wrap; gap: .8rem 1.15rem; align-items: center; margin-top: 1.2rem; }
.event-card a { color: var(--cyan); font-size: .85rem; font-weight: 800; text-decoration: none; }
.event-tag { position: absolute; right: 1rem; top: 1rem; border: 1px solid var(--line); border-radius: 999px; padding: .25rem .55rem; color: #c8d0da; font-size: .66rem; text-transform: uppercase; letter-spacing: .09em; }
.empty-events { grid-column: 1 / -1; padding: 3rem; border-radius: 18px; border: 1px dashed rgba(255, 255, 255, .18); text-align: center; color: var(--muted); background: rgba(255, 255, 255, .018); }
.empty-events strong { display: block; color: var(--text); font-size: 1.18rem; margin-bottom: .45rem; }

.gallery-section { position: relative; }
.creation-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.15rem; }
.creation-card { min-height: 400px; padding: 1.55rem; border: 1px solid var(--line); border-radius: 20px; background: linear-gradient(155deg, rgba(28, 37, 53, .92), rgba(16, 22, 33, .96)); overflow: hidden; position: relative; display: flex; flex-direction: column; justify-content: flex-end; transition: transform .25s ease, border-color .25s ease; }
.creation-card:hover { transform: translateY(-5px); border-color: rgba(255, 255, 255, .2); }
.creation-card h3 { font-size: 1.35rem; margin-bottom: .55rem; }
.creation-card > p:last-child { color: var(--muted); font-size: .92rem; margin: 0; }
.card-number { position: absolute; top: 1.35rem; left: 1.55rem; margin: 0; font-family: Orbitron, sans-serif; font-size: .75rem; letter-spacing: .12em; color: #8f99a7; }
.creation-art { position: absolute; inset: 38px 22px auto; height: 205px; border-radius: 18px; overflow: hidden; background: rgba(255, 255, 255, .025); border: 1px solid rgba(255, 255, 255, .065); }
.creation-art::before { content: ""; position: absolute; inset: 0; background-image: repeating-linear-gradient(to bottom, transparent 0 8px, rgba(255, 255, 255, .045) 8px 9px); }
.creation-orange .creation-art { background: radial-gradient(circle at 50% 50%, rgba(255, 116, 23, .24), transparent 55%), rgba(255, 255, 255, .02); }
.layer { position: absolute; left: 50%; transform: translateX(-50%); border-radius: 999px; border: 10px solid var(--orange); box-shadow: 0 0 22px rgba(255, 116, 23, .13); }
.layer-one { width: 160px; height: 70px; bottom: 27px; }
.layer-two { width: 118px; height: 58px; bottom: 72px; }
.layer-three { width: 70px; height: 48px; bottom: 112px; }
.creation-cyan .creation-art { background: radial-gradient(circle at 50% 50%, rgba(37, 216, 233, .22), transparent 55%), rgba(255, 255, 255, .02); }
.gift-art span { position: absolute; width: 112px; height: 96px; left: 50%; bottom: 37px; transform: translateX(-50%); border: 12px solid var(--cyan); border-radius: 12px; box-shadow: 0 0 25px rgba(37, 216, 233, .14); }
.gift-art span::before { content: ""; position: absolute; width: 16px; top: -12px; bottom: -12px; left: 36px; background: var(--cyan); }
.gift-art span::after { content: ""; position: absolute; height: 16px; left: -12px; right: -12px; top: 20px; background: var(--cyan); }
.creation-mix .creation-art { background: radial-gradient(circle at 42% 45%, rgba(255, 116, 23, .17), transparent 35%), radial-gradient(circle at 65% 64%, rgba(37, 216, 233, .18), transparent 38%), rgba(255, 255, 255, .02); }
.practical-art span { position: absolute; display: block; border-radius: 12px; border: 8px solid; }
.practical-art span:nth-child(1) { width: 84px; height: 84px; left: 39px; top: 62px; border-color: var(--orange); transform: rotate(-12deg); }
.practical-art span:nth-child(2) { width: 104px; height: 48px; right: 36px; top: 53px; border-color: var(--cyan); transform: rotate(8deg); }
.practical-art span:nth-child(3) { width: 128px; height: 42px; right: 46px; bottom: 30px; border-color: var(--orange-light); transform: rotate(-5deg); }

.about-section { border-top: 1px solid rgba(255, 255, 255, .045); background: rgba(255, 255, 255, .01); }
.about-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: 6rem; align-items: center; }
.about-copy p:not(.eyebrow) { color: var(--muted); font-size: 1.03rem; }
.about-copy .button { margin-top: .8rem; }
.about-visual { min-height: 460px; display: grid; place-items: center; position: relative; }
.about-visual::before { content: ""; position: absolute; width: 390px; height: 390px; border-radius: 50%; background: radial-gradient(circle, rgba(37, 216, 233, .12), transparent 68%); }
.brand-display { width: min(100%, 430px); padding: 2rem; border: 1px solid rgba(255, 255, 255, .12); border-radius: 26px; background: linear-gradient(145deg, #151d2a, #0e141e); box-shadow: var(--shadow); position: relative; overflow: hidden; }
.brand-display::before { content: ""; position: absolute; width: 180px; height: 180px; border-radius: 50%; background: rgba(255, 116, 23, .11); filter: blur(22px); left: -55px; top: -55px; }
.brand-display::after { content: ""; position: absolute; width: 180px; height: 180px; border-radius: 50%; background: rgba(37, 216, 233, .1); filter: blur(22px); right: -65px; bottom: -65px; }
.brand-display img { width: 100%; height: auto; border-radius: 15px; position: relative; z-index: 2; }
.brand-display p { position: relative; z-index: 2; margin: 1rem 0 0; color: #c9d0d9; font-weight: 800; font-size: .7rem; text-align: center; letter-spacing: .22em; }
.brand-display-lines { position: absolute; inset: 0; opacity: .18; background-image: repeating-linear-gradient(to bottom, transparent 0 11px, rgba(255, 255, 255, .08) 11px 12px); }

.follow-section { padding-top: 75px; }
.follow-panel { padding: 3.2rem; border-radius: var(--radius); background: linear-gradient(135deg, rgba(29, 38, 55, .92), rgba(16, 22, 33, .96)); border: 1px solid rgba(255, 116, 23, .22); box-shadow: var(--shadow); display: grid; grid-template-columns: .85fr 1.15fr; gap: 3rem; align-items: center; position: relative; overflow: hidden; }
.follow-panel::before { content: ""; position: absolute; inset: 0 auto auto 0; width: 100%; height: 4px; background: linear-gradient(90deg, var(--orange), var(--cyan)); }
.follow-panel p:not(.eyebrow) { color: var(--muted); }
.social-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: .8rem; }
.social-card[hidden] { display: none; }
.next-event-links { display: flex; flex-wrap: wrap; gap: .65rem 1.2rem; margin-top: .95rem; }
.social-card { display: flex; align-items: center; gap: .85rem; padding: 1rem; border: 1px solid var(--line); background: rgba(255, 255, 255, .025); border-radius: 14px; text-decoration: none; transition: .22s ease; }
.social-card:hover { transform: translateY(-3px); border-color: rgba(37, 216, 233, .38); background: rgba(37, 216, 233, .04); }
.social-icon { width: 38px; height: 38px; flex: 0 0 38px; border-radius: 11px; display: grid; place-items: center; color: #10151e; background: linear-gradient(145deg, var(--orange), var(--cyan)); font-family: Orbitron, sans-serif; font-weight: 900; }
.social-card span:last-child { display: flex; flex-direction: column; }
.social-card small { color: #9fa9b6; }

.contact-section { padding-top: 25px; }
.contact-panel { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 4rem 0; display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.contact-panel p:not(.eyebrow) { color: var(--muted); }
.site-footer { padding: 2rem 0; color: #9099a6; font-size: .82rem; }
.footer-layout { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
.footer-brand img { width: 84px; }
.site-footer a { text-decoration: none; }
.site-footer > a:hover { color: var(--cyan); }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 980px) {
  .hero { min-height: auto; }
  .hero-layout, .about-layout, .follow-panel { grid-template-columns: 1fr; }
  .hero-layout { gap: 3.2rem; }
  .hero-copy { max-width: 780px; }
  .hero-showcase { max-width: 720px; }
  .events-grid { grid-template-columns: repeat(2, 1fr); }
  .creation-grid { grid-template-columns: 1fr; }
  .creation-card { min-height: 360px; }
  .about-layout { gap: 3rem; }
  .about-visual { order: 2; }
  .follow-panel { padding: 2.3rem; }
}

@media (max-width: 720px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .nav-wrap { height: 80px; }
  .brand img { width: 86px; }
  .menu-toggle { display: block; }
  .site-nav { position: absolute; top: 80px; left: 0; right: 0; display: grid; gap: 0; padding: .6rem 14px 1rem; background: rgba(12, 17, 26, .99); border-bottom: 1px solid var(--line); transform: translateY(-130%); opacity: 0; pointer-events: none; transition: .25s ease; }
  .site-nav.open { transform: none; opacity: 1; pointer-events: auto; }
  .site-nav a { padding: .85rem .6rem; border-bottom: 1px solid rgba(255, 255, 255, .05); }
  .site-nav .nav-cta { border: 0; border-radius: 0; }
  .menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle.open span:nth-child(2) { opacity: 0; }
  .menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .hero { padding: 124px 0 72px; }
  h1 { font-size: clamp(2.65rem, 14vw, 4.1rem); }
  .hero-points { display: grid; }
  .stall-photo { height: 230px; }
  .stall-photo figcaption { left: 1rem; right: 1rem; bottom: .85rem; align-items: flex-start; flex-direction: column; gap: .4rem; }
  .next-event-card { padding: 1.7rem 1.4rem 1.9rem; min-height: 265px; }
  .section { padding: 78px 0; }
  .section-heading { align-items: flex-start; flex-direction: column; }
  .events-grid { grid-template-columns: 1fr; }
  .creation-card { min-height: 390px; }
  .about-visual { min-height: 370px; }
  .brand-display { padding: 1.25rem; }
  .social-grid { grid-template-columns: 1fr; }
  .contact-panel, .footer-layout { align-items: flex-start; flex-direction: column; }
  .contact-panel .button { width: 100%; }
}
