/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --sky:       #5BB5E8;
  --sky-light: #A8D8F0;
  --sky-pale:  #E8F5FD;
  --sky-bg:    #F0F8FF;
  --sky-dark:  #2A7AB5;
  --navy:      #1A3A5C;
  --white:     #FFFFFF;
  --off-white: #F8FAFC;
  --text-dark: #1A2332;
  --text-mid:  #4A6278;
  --text-light:#8AA0B4;
  --border:    #D4E8F5;
  --card-bg:   #FFFFFF;
  --font-serif: 'Cormorant Garamond', 'Noto Serif KR', serif;
  --font-sans:  'Noto Sans KR', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--white);
  color: var(--text-dark);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; transition: color .2s; }
a:hover { color: var(--sky-dark); }

img { display: block; max-width: 100%; }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== NAV ===== */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s;
}
#nav.scrolled { box-shadow: 0 2px 20px rgba(91,181,232,.12); }

.nav-inner {
  max-width: 1100px; margin: 0 auto; padding: 0 24px;
  height: 68px; display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; }
.nav-logo-img {
  height: 44px; width: auto; object-fit: contain;
  mix-blend-mode: multiply;
}

.nav-links {
  display: flex; align-items: center; gap: 28px; list-style: none;
}
.nav-links a {
  font-size: .84rem; letter-spacing: .06em; color: var(--text-mid);
  transition: color .2s; font-weight: 500;
}
.nav-links a:hover { color: var(--sky); }
.nav-cta {
  padding: 8px 22px !important;
  background: var(--sky) !important;
  color: var(--white) !important;
  border-radius: 24px !important;
  font-weight: 600 !important;
  transition: background .2s, transform .2s !important;
}
.nav-cta:hover {
  background: var(--sky-dark) !important;
  color: var(--white) !important;
  transform: translateY(-1px);
}

.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--text-dark); transition: .3s; border-radius: 2px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 32px; font-size: .9rem; letter-spacing: .08em;
  border-radius: 32px; transition: .25s; cursor: pointer;
  font-family: var(--font-sans); font-weight: 600; border: none;
}
.btn-primary {
  background: var(--sky); color: var(--white);
  box-shadow: 0 4px 20px rgba(91,181,232,.35);
}
.btn-primary:hover {
  background: var(--sky-dark); color: var(--white);
  box-shadow: 0 6px 24px rgba(91,181,232,.45);
  transform: translateY(-2px);
}
.btn-ghost {
  background: rgba(255,255,255,.15);
  border: 2px solid rgba(255,255,255,.8);
  color: var(--white);
  backdrop-filter: blur(4px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,.25);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-sky {
  background: var(--white); color: var(--sky-dark);
  font-weight: 700; padding: 12px 28px;
}
.btn-sky:hover { background: var(--sky-pale); color: var(--sky-dark); }
.btn-full { width: 100%; border-radius: 12px; }

/* ===== HERO ===== */
#hero {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden; text-align: center;
}
.hero-bg-gradient {
  position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(135deg, #1A3A5C 0%, #2A6A9A 40%, #5BB5E8 100%);
  overflow: hidden;
}
.hero-bg-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center 38%;
  opacity: .45;
  mix-blend-mode: luminosity;
}
.hero-content {
  position: relative; z-index: 1;
  max-width: 760px; padding: 120px 24px 80px;
}
.hero-sub {
  font-size: .68rem; letter-spacing: .4em; color: var(--sky-light);
  margin-bottom: 24px; font-weight: 500;
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3.5rem, 11vw, 7.5rem);
  font-weight: 400; line-height: 1; letter-spacing: .06em;
  color: var(--white); margin-bottom: 24px;
}
.hero-title em { font-style: italic; color: var(--sky-light); }
.hero-tagline {
  font-size: clamp(.95rem, 2vw, 1.1rem);
  color: rgba(255,255,255,.85); line-height: 1.9; margin-bottom: 36px;
}
.hero-badges {
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: center;
  margin-bottom: 44px;
}
.hero-badges span {
  font-size: .72rem; letter-spacing: .08em;
  border: 1px solid rgba(168,216,240,.5);
  color: var(--sky-light); padding: 6px 16px; border-radius: 20px;
  background: rgba(91,181,232,.12);
  backdrop-filter: blur(4px);
}
.hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.hero-scroll {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  z-index: 1;
}
.hero-scroll span {
  display: block; width: 1px; height: 56px;
  background: linear-gradient(to bottom, transparent, rgba(168,216,240,.8));
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ===== SECTIONS COMMON ===== */
section { padding: 96px 0; }
section:nth-child(odd) { background: var(--white); }
section:nth-child(even) { background: var(--sky-bg); }

.section-label {
  font-size: .67rem; letter-spacing: .38em; color: var(--sky);
  margin-bottom: 14px; font-weight: 600;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 600; line-height: 1.25; margin-bottom: 48px;
  color: var(--navy);
}
.section-desc {
  color: var(--text-mid); margin-top: -32px; margin-bottom: 48px;
  line-height: 1.9; font-size: .975rem;
}

/* ===== ABOUT ===== */
#about { background: var(--white); }

.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  margin-bottom: 56px;
}
.about-photo-wrap { border-radius: 16px; overflow: hidden; box-shadow: 0 12px 40px rgba(42,122,181,.18); }
.about-photo { width: 100%; height: 420px; object-fit: cover; object-position: center; display: block; }

.about-text-block {
  max-width: 720px;
}
.about-text-block p {
  color: var(--text-mid); margin-bottom: 20px; font-size: 1.05rem; line-height: 1.9;
}
.about-em {
  font-family: var(--font-serif); font-size: 1.2rem !important;
  color: var(--navy) !important; font-weight: 600; line-height: 1.7 !important;
}

.story-stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
  margin-bottom: 56px;
}
.stat {
  background: var(--sky-pale); border: 1px solid var(--border);
  border-radius: 16px; padding: 28px 20px;
  display: flex; flex-direction: column; align-items: center; text-align: center;
  transition: transform .3s, box-shadow .3s;
}
.stat:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(91,181,232,.2);
}
.stat-num {
  font-family: var(--font-serif); font-size: 2.8rem; font-weight: 600;
  color: var(--sky); line-height: 1;
}
.stat-label { font-size: .8rem; color: var(--text-mid); margin-top: 8px; font-weight: 500; }

.identity-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.id-card {
  background: var(--white); padding: 28px 22px;
  border: 1px solid var(--border); border-radius: 16px;
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.id-card:hover {
  transform: translateY(-4px);
  border-color: var(--sky);
  box-shadow: 0 8px 32px rgba(91,181,232,.18);
}
.id-icon { font-size: 1.8rem; margin-bottom: 14px; }
.id-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 10px; color: var(--navy); }
.id-card p { font-size: .855rem; color: var(--text-mid); line-height: 1.7; }

/* ===== CREDENTIALS ===== */
#credentials { background: var(--sky-bg); }

.featured-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
  margin-bottom: 48px;
}
.featured-card {
  padding: 32px 24px; position: relative; overflow: hidden;
  border: 1px solid var(--border); border-radius: 16px;
  background: var(--white);
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.featured-card:hover {
  transform: translateY(-6px);
  border-color: var(--sky);
  box-shadow: 0 12px 40px rgba(91,181,232,.2);
}
.fc-tag {
  font-size: .67rem; letter-spacing: .12em; color: var(--sky);
  margin-bottom: 12px; font-weight: 600;
}
.featured-card h3 {
  font-family: var(--font-serif); font-size: 1.3rem;
  margin-bottom: 10px; color: var(--navy); line-height: 1.3;
}
.featured-card h3 span { font-size: 1rem; }
.featured-card p { font-size: .87rem; color: var(--text-mid); line-height: 1.7; }
.featured-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--sky), var(--sky-light));
  border-radius: 16px 16px 0 0;
}

.perf-table-wrap {
  overflow-x: auto;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: var(--white);
}
.perf-table { width: 100%; border-collapse: collapse; font-size: .875rem; }
.perf-table th {
  text-align: left; padding: 14px 18px;
  font-size: .69rem; letter-spacing: .14em; color: var(--sky-dark);
  background: var(--sky-pale); font-weight: 700;
}
.perf-table th:first-child { border-radius: 16px 0 0 0; }
.perf-table th:last-child  { border-radius: 0 16px 0 0; }
.perf-table td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
  color: var(--text-mid);
}
.perf-table td:first-child { color: var(--text-light); white-space: nowrap; font-size: .82rem; }
.perf-table td:nth-child(2) { color: var(--text-dark); font-weight: 600; }
.perf-table tbody tr:last-child td { border-bottom: none; }
.perf-table tbody tr:hover td { background: var(--sky-pale); }
.perf-new td { background: rgba(91,181,232,.06) !important; }
.perf-upcoming td { background: rgba(255,193,7,.06) !important; }
.perf-upcoming td:nth-child(2) { color: var(--sky-dark) !important; }
.perf-upcoming td:first-child::before { content: '예정 '; font-size: .68rem; color: var(--sky); font-weight: 700; }
.year-header td {
  background: var(--navy) !important; color: rgba(255,255,255,.8) !important;
  font-size: .7rem; letter-spacing: .2em; font-weight: 700;
  padding: 8px 18px !important; border-bottom: none !important;
}

/* ===== MEMBERS ===== */
#members { background: var(--white); }

.members-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  margin-bottom: 20px;
}
.member-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 20px; overflow: hidden;
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.member-card:hover {
  transform: translateY(-6px);
  border-color: var(--sky-light);
  box-shadow: 0 12px 40px rgba(91,181,232,.18);
}
.featured-member { border-color: var(--sky); }
.featured-member .member-photo img {
  object-position: top center;
}
.member-photo { height: 260px; overflow: hidden; background: var(--sky-pale); }
.member-photo img { width: 100%; height: 100%; object-fit: contain; object-position: top center; }
.member-photo.placeholder {
  display: flex; align-items: center; justify-content: center;
}
.member-initial { font-size: 2.5rem; opacity: .25; }
.member-info { padding: 20px 22px 28px; }
.member-role-tag {
  display: inline-block; font-size: .67rem; letter-spacing: .1em;
  padding: 3px 12px; margin-bottom: 10px; border-radius: 20px; font-weight: 600;
}
.member-role-tag.vocal     { background: var(--sky-pale); color: var(--sky-dark); }
.member-role-tag.musical   { background: #EDF0FD; color: #3B5BDB; }
.member-role-tag.crossover { background: #F3E8FD; color: #7C3AED; }
.member-name {
  font-family: var(--font-serif); font-size: 1.3rem;
  margin-bottom: 4px; color: var(--navy);
}
.member-role { font-size: .78rem; color: var(--text-light); margin-bottom: 12px; }
.member-career {
  list-style: none; display: flex; flex-direction: column; gap: 6px;
}
.member-career li {
  font-size: .8rem; color: var(--text-mid);
  padding-left: 14px; position: relative; line-height: 1.5;
}
.member-career li::before {
  content: '—'; position: absolute; left: 0; color: var(--sky); font-size: .75rem;
}
.member-coming { font-size: .85rem; color: var(--text-light); font-style: italic; }
.members-note {
  font-size: .8rem; color: var(--text-light); text-align: center;
  border: 1px dashed var(--border); padding: 14px; border-radius: 12px;
  background: var(--sky-pale);
}

/* ===== PROGRAMS ===== */
#programs { background: var(--sky-bg); }

.programs-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px;
}
.program-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 20px; padding: 36px 32px;
  transition: transform .3s, box-shadow .3s, border-color .3s;
  position: relative; overflow: hidden;
}
.program-card:hover {
  transform: translateY(-4px);
  border-color: var(--sky);
  box-shadow: 0 10px 40px rgba(91,181,232,.18);
}
.prog-icon { font-size: 2rem; margin-bottom: 8px; }
.prog-number {
  font-family: var(--font-serif); font-size: 2.5rem; font-weight: 600;
  color: var(--border); line-height: 1; margin-bottom: 16px;
  position: absolute; top: 28px; right: 28px;
}
.program-card h3 {
  font-size: 1.1rem; font-weight: 700;
  margin-bottom: 12px; color: var(--navy); padding-right: 48px;
}
.program-card p {
  font-size: .875rem; color: var(--text-mid); line-height: 1.7; margin-bottom: 18px;
}
.program-card ul { list-style: none; }
.program-card li {
  font-size: .83rem; color: var(--text-mid);
  padding: 7px 0; border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 10px;
}
.program-card li:last-child { border-bottom: none; }
.program-card li::before { content: '·'; color: var(--sky); font-size: 1.2rem; }

/* ===== REPERTOIRE ===== */
#repertoire { background: var(--white); }

.rep-count {
  font-family: var(--font-sans); font-size: 1.1rem;
  color: var(--sky); font-weight: 700;
  background: var(--sky-pale); padding: 3px 14px; border-radius: 20px;
  vertical-align: middle;
}
.rep-filters {
  display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 36px;
}
.rep-filter {
  padding: 7px 20px; border-radius: 24px;
  font-size: .8rem; letter-spacing: .06em; cursor: pointer;
  background: var(--white); border: 1.5px solid var(--border);
  color: var(--text-mid); transition: .2s; font-family: var(--font-sans); font-weight: 500;
}
.rep-filter:hover { border-color: var(--sky); color: var(--sky); }
.rep-filter.active {
  background: var(--sky); border-color: var(--sky);
  color: var(--white); font-weight: 700;
}
.rep-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 12px;
}
.rep-item {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 14px; padding: 16px 18px;
  transition: border-color .2s, transform .2s, box-shadow .2s;
  display: flex; flex-direction: column; gap: 5px;
}
.rep-item:hover {
  border-color: var(--sky-light); transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(91,181,232,.12);
}
.rep-num { font-size: .68rem; color: var(--text-light); }
.rep-title { font-size: .93rem; font-weight: 600; color: var(--text-dark); }
.rep-source { font-size: .77rem; color: var(--text-light); }
.rep-genre {
  display: inline-block; font-size: .65rem; letter-spacing: .06em;
  padding: 2px 10px; border-radius: 12px; margin-top: 4px; width: fit-content; font-weight: 600;
}
.rep-genre.뮤지컬 { background: #EDF0FD; color: #3B5BDB; }
.rep-genre.디즈니  { background: #E3F2FD; color: #1565C0; }
.rep-genre.팝      { background: #FCE4EC; color: #C2185B; }
.rep-genre.가요    { background: #E8F5E9; color: #2E7D32; }
.rep-genre.트로트  { background: #FFF3E0; color: #E65100; }
.rep-genre.팝페라  { background: var(--sky-pale); color: var(--sky-dark); }
.rep-genre.민요    { background: #E0F2F1; color: #00695C; }
.rep-genre.캐롤    { background: #FFEBEE; color: #B71C1C; }

/* ===== SCHEDULE ===== */
#schedule { background: var(--sky-bg); }

.schedule-wrap { display: flex; flex-direction: column; gap: 16px; }

.schedule-ongoing {
  display: flex; align-items: center; gap: 20px;
  background: var(--sky); color: var(--white);
  border-radius: 16px; padding: 24px 28px;
}
.sched-badge {
  font-size: .68rem; letter-spacing: .15em; font-weight: 700;
  padding: 5px 14px; border-radius: 20px; white-space: nowrap;
}
.sched-badge.ongoing { background: rgba(255,255,255,.25); border: 1px solid rgba(255,255,255,.4); }
.sched-badge.upcoming { background: var(--sky-pale); color: var(--sky-dark); }
.sched-badge.past { background: var(--border); color: var(--text-light); }
.sched-info h4 { font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
.sched-info p { font-size: .9rem; opacity: .9; margin-bottom: 4px; }
.sched-place { font-size: .8rem; opacity: .75; }

.schedule-list { display: flex; flex-direction: column; gap: 10px; }
.sched-row {
  display: flex; align-items: center; gap: 16px;
  background: var(--white); border: 1px solid var(--border);
  border-radius: 14px; padding: 18px 22px;
  transition: border-color .2s;
}
.sched-row:hover { border-color: var(--sky-light); }
.sched-date { font-size: .82rem; color: var(--text-light); min-width: 80px; font-weight: 500; }
.sched-title { flex: 1; font-size: .95rem; font-weight: 600; color: var(--text-dark); }
.sched-venue { font-size: .82rem; color: var(--text-mid); text-align: right; }

.schedule-note {
  font-size: .8rem; color: var(--text-light); text-align: center;
  padding: 14px; border: 1px dashed var(--border); border-radius: 12px;
  background: var(--white);
}
.schedule-note a { color: var(--sky-dark); font-weight: 600; }

/* ===== SHOP ===== */
#shop { background: var(--sky-bg); }

.shop-coming-banner {
  background: linear-gradient(135deg, var(--sky), var(--sky-dark));
  border-radius: 20px; padding: 36px 40px;
  display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
  margin-bottom: 48px; color: var(--white);
}
.shop-badge {
  background: rgba(255,255,255,.25); color: var(--white);
  font-size: .7rem; letter-spacing: .2em; font-weight: 700;
  padding: 6px 16px; border-radius: 20px; white-space: nowrap;
  border: 1px solid rgba(255,255,255,.4);
}
.shop-coming-banner p {
  flex: 1; font-size: .95rem; line-height: 1.6; color: rgba(255,255,255,.9);
}
.shop-coming-banner strong { color: var(--white); }

.shop-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
  margin-bottom: 36px;
}
.shop-item {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 20px; overflow: hidden;
  transition: transform .3s, box-shadow .3s;
}
.shop-item:hover { transform: translateY(-4px); box-shadow: 0 10px 32px rgba(91,181,232,.15); }
.shop-img-wrap { position: relative; background: var(--sky-pale); height: 180px;
  display: flex; align-items: center; justify-content: center; }
.shop-img-ph { font-size: 3.5rem; opacity: .35; }
.shop-badge-overlay {
  position: absolute; top: 12px; right: 12px;
  background: var(--sky); color: var(--white);
  font-size: .68rem; font-weight: 700; letter-spacing: .1em;
  padding: 4px 12px; border-radius: 12px;
}
.shop-info { padding: 18px 20px 22px; }
.shop-info h4 { font-size: .95rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.shop-desc { font-size: .8rem; color: var(--text-light); margin-bottom: 10px; line-height: 1.5; }
.shop-price { font-size: 1rem; font-weight: 700; color: var(--sky-dark); margin-bottom: 14px; }
.btn-shop-soon {
  width: 100%; padding: 10px; border-radius: 10px;
  background: var(--sky-pale); color: var(--sky-dark);
  font-size: .8rem; font-weight: 600; letter-spacing: .06em;
  border: 1px solid var(--border); cursor: not-allowed; font-family: var(--font-sans);
  opacity: .7;
}
.shop-contact {
  text-align: center; padding: 20px;
  border: 1px dashed var(--border); border-radius: 14px; background: var(--white);
  font-size: .9rem; color: var(--text-mid);
  display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap;
}
.shop-contact a { color: var(--sky-dark); font-weight: 600; }
.shop-contact a:hover { color: var(--sky); }

/* ===== CONTACT ===== */
#contact { background: var(--white); }

.contact-wrap {
  display: grid; grid-template-columns: 1fr 1.6fr; gap: 60px; align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 36px; }
.ci-block h3 {
  font-size: .68rem; letter-spacing: .22em; color: var(--sky);
  margin-bottom: 14px; font-weight: 700;
}
.ci-row {
  display: flex; flex-direction: column; gap: 3px;
  padding: 12px 0; border-bottom: 1px solid var(--border);
}
.ci-label { font-size: .72rem; color: var(--text-light); font-weight: 500; }
.ci-row a { font-size: .95rem; color: var(--text-dark); font-weight: 600; }
.ci-row a:hover { color: var(--sky); }
.ci-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.ci-tags span {
  font-size: .72rem; padding: 4px 14px;
  border: 1px solid var(--border); color: var(--text-mid);
  border-radius: 20px; background: var(--sky-pale);
}

/* Form */
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group.full { grid-column: 1 / -1; }
label { font-size: .79rem; letter-spacing: .05em; color: var(--text-mid); font-weight: 600; }
.req { color: var(--sky); }
input, select, textarea {
  background: var(--sky-bg); border: 1.5px solid var(--border);
  color: var(--text-dark); padding: 12px 16px; border-radius: 12px;
  font-family: var(--font-sans); font-size: .9rem;
  transition: border-color .2s, box-shadow .2s; outline: none; width: 100%;
}
input::placeholder, textarea::placeholder { color: var(--text-light); }
input:focus, select:focus, textarea:focus {
  border-color: var(--sky);
  box-shadow: 0 0 0 3px rgba(91,181,232,.15);
  background: var(--white);
}
select option { background: var(--white); }
textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: .76rem; color: var(--text-light); line-height: 1.6; text-align: center; }

/* Success */
.form-success {
  display: none; text-align: center; padding: 48px 24px;
  border: 2px solid var(--sky); border-radius: 20px;
  background: var(--sky-pale);
}
.form-success.visible { display: block; }
.form-success h3 { font-family: var(--font-serif); font-size: 1.5rem; margin-bottom: 12px; color: var(--sky-dark); }
.form-success p { color: var(--text-mid); }

/* ===== FOOTER ===== */
#footer {
  background: var(--navy);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 48px;
  padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.1);
  margin-bottom: 32px;
}
.footer-logo-img {
  height: 72px; width: auto; object-fit: contain;
  margin-bottom: 14px;
  mix-blend-mode: screen;
  filter: brightness(1.4);
}
.footer-logo-text {
  font-family: var(--font-serif); font-size: 1.6rem; font-weight: 600;
  letter-spacing: .18em; color: var(--sky-light); margin-bottom: 14px;
}
.footer-brand p { font-size: .875rem; color: rgba(255,255,255,.65); line-height: 1.9; }
.footer-copy { font-size: .75rem !important; color: rgba(255,255,255,.4) !important; margin-top: 10px; }
.footer-links h4, .footer-contact h4 {
  font-size: .69rem; letter-spacing: .22em; color: var(--sky-light);
  margin-bottom: 16px; font-weight: 700;
}
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: .88rem; color: rgba(255,255,255,.6); }
.footer-links a:hover { color: var(--sky-light); }
.footer-contact p { font-size: .875rem; color: rgba(255,255,255,.6); margin-bottom: 8px; }
.footer-contact a { color: rgba(255,255,255,.75); }
.footer-contact a:hover { color: var(--sky-light); }
.footer-sns { display: flex; gap: 16px; margin-top: 16px; }
.footer-sns a {
  font-size: .8rem; letter-spacing: .08em; color: rgba(255,255,255,.55);
  border-bottom: 1px solid rgba(255,255,255,.2); padding-bottom: 2px;
}
.footer-sns a:hover { color: var(--sky-light); border-color: var(--sky-light); }
.footer-bottom p { font-size: .78rem; color: rgba(255,255,255,.35); text-align: center; }

/* ===== PERF TABLE CLICKABLE ===== */
.perf-table tbody tr[data-imgs] { cursor: pointer; }
.perf-table tbody tr[data-imgs]:hover td { background: var(--sky-pale); }
.perf-table tbody tr[data-imgs] td:first-child::after {
  content: ' 📷'; font-size: .7rem; opacity: .5;
}

/* ===== PERF PHOTO MODAL ===== */
.perf-modal-overlay {
  display: none; position: fixed; inset: 0; z-index: 9000;
  background: rgba(0,0,0,.88); align-items: center; justify-content: center;
}
.perf-modal-overlay.open { display: flex; }
.perf-modal-box {
  position: relative; max-width: 860px; width: 94vw;
  background: #111; border-radius: 12px; overflow: hidden;
}
.perf-modal-close {
  position: absolute; top: 12px; right: 16px; z-index: 10;
  background: rgba(0,0,0,.6); color: #fff; border: none; border-radius: 50%;
  width: 36px; height: 36px; font-size: 1.3rem; cursor: pointer; line-height: 1;
}
.perf-modal-close:hover { background: rgba(91,181,232,.8); }
.perf-modal-img-wrap {
  position: relative; display: flex; align-items: center; justify-content: center;
  min-height: 200px; background: #000;
}
.perf-modal-img {
  max-height: 72vh; max-width: 100%; object-fit: contain; display: block;
}
.perf-modal-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(0,0,0,.5); color: #fff; border: none;
  width: 44px; height: 44px; font-size: 1.4rem; cursor: pointer; border-radius: 50%;
}
.perf-modal-nav:hover { background: var(--sky-dark); }
.perf-modal-prev { left: 12px; }
.perf-modal-next { right: 12px; }
.perf-modal-footer {
  padding: 12px 16px; display: flex; align-items: center; justify-content: space-between;
  background: #1a1a1a;
}
.perf-modal-title { color: rgba(255,255,255,.8); font-size: .85rem; }
.perf-modal-counter { color: rgba(255,255,255,.4); font-size: .8rem; }

/* ===== COUNTDOWN BANNER ===== */
.countdown-banner {
  background: linear-gradient(135deg, var(--sky-dark) 0%, var(--sky) 100%);
  color: white; padding: 18px 24px;
}
.countdown-inner {
  display: flex; align-items: center; justify-content: center;
  gap: 36px; flex-wrap: wrap; max-width: 860px; margin: 0 auto;
}
.cd-info { text-align: left; }
.cd-label {
  display: block; font-size: 10px; text-transform: uppercase;
  letter-spacing: 2px; opacity: .75; margin-bottom: 2px;
}
.cd-title { font-size: 14px; font-weight: 600; }
.cd-timer { display: flex; align-items: center; gap: 8px; }
.cd-unit {
  text-align: center; min-width: 54px;
  background: rgba(255,255,255,.15); border-radius: 10px; padding: 8px 12px;
}
.cd-num {
  display: block; font-size: 26px; font-weight: 700; line-height: 1;
  font-family: var(--font-serif);
}
.cd-lbl { font-size: 10px; opacity: .75; letter-spacing: 1px; }
.cd-sep { font-size: 22px; font-weight: 700; opacity: .6; margin-bottom: 12px; }

/* ===== VIDEOS ===== */
#videos { background: var(--sky-bg); }
.video-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 28px; margin-top: 40px;
}
.video-card {
  display: block; text-decoration: none; color: inherit;
  background: white; border-radius: 16px; overflow: hidden;
  box-shadow: 0 6px 28px rgba(0,0,0,.08);
  transition: transform .25s, box-shadow .25s;
}
.video-card:hover { transform: translateY(-4px); box-shadow: 0 14px 44px rgba(0,0,0,.14); }
.video-thumb-wrap { position: relative; aspect-ratio: 16/9; overflow: hidden; }
.video-thumb { width: 100%; height: 100%; object-fit: cover; display: block; }
.video-play-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,.32);
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.video-card:hover .video-play-overlay { background: rgba(0,0,0,.55); }
.video-play-btn {
  width: 60px; height: 60px; background: rgba(255,255,255,.9);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  margin-left: 4px;
}
.video-duration {
  position: absolute; bottom: 8px; right: 10px;
  background: rgba(0,0,0,.75); color: white;
  font-size: 11px; padding: 2px 7px; border-radius: 4px;
}
.video-info { padding: 18px 20px 22px; }
.video-info h4 { font-size: 14px; font-weight: 700; margin-bottom: 5px; line-height: 1.5; color: var(--text-dark); }
.video-info p { font-size: 12px; color: var(--text-light); }
.video-channel-cta {
  background: white; border-radius: 16px; padding: 40px 32px;
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; text-align: center; gap: 14px;
  box-shadow: 0 6px 28px rgba(0,0,0,.08);
}
.vc-yt-icon { margin-bottom: 4px; }
.video-channel-cta h4 { font-size: 20px; font-weight: 700; color: var(--text-dark); }
.video-channel-cta p { font-size: 13px; color: var(--text-mid); line-height: 1.7; }
.btn-youtube {
  display: inline-flex; align-items: center; gap: 8px;
  background: #FF0000; color: white; border: none;
  padding: 13px 28px; border-radius: 50px;
  font-size: 14px; font-weight: 700; text-decoration: none;
  transition: background .2s, transform .2s;
  margin-top: 4px;
}
.btn-youtube:hover { background: #cc0000; transform: scale(1.03); }

/* ===== REVIEWS ===== */
#reviews { background: white; }
.reviews-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; margin-top: 40px;
}
.review-card {
  background: var(--sky-bg); border-radius: 16px; padding: 26px;
  border: 1px solid var(--border); position: relative;
  display: flex; flex-direction: column; gap: 12px;
}
.review-stars { color: #f5a623; font-size: 13px; letter-spacing: 2px; }
.review-text {
  font-size: 13.5px; line-height: 1.85; color: var(--text);
  flex: 1;
}
.review-meta { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-top: auto; }
.review-tag {
  font-size: 10px; font-weight: 700; padding: 3px 10px;
  border-radius: 50px; letter-spacing: .5px; white-space: nowrap;
}
.review-tag.wedding   { background: #fce8f3; color: #c2185b; }
.review-tag.festival  { background: #e3f2fd; color: #1565c0; }
.review-tag.corporate { background: #e8f5e9; color: #2e7d32; }
.review-tag.charity   { background: #fff3e0; color: #e65100; }
.review-tag.local     { background: #f3e8fd; color: #6a1b9a; }
.review-author { font-size: 12px; color: var(--text-light); font-style: italic; }

/* ===== GUESTBOOK ===== */
#guestbook { background: #0d1b2a; }
#guestbook .section-label { color: var(--sky); }
#guestbook .section-title { color: white; }
#guestbook .section-desc { color: rgba(255,255,255,.55); }
.guestbook-form {
  display: flex; gap: 12px; flex-wrap: wrap;
  margin-bottom: 32px; align-items: stretch;
}
.gb-input {
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.14);
  color: white; border-radius: 12px; padding: 13px 16px;
  font-size: 14px; font-family: var(--font-sans); outline: none;
  min-width: 120px; flex: 1;
  transition: border-color .2s, background .2s;
}
.gb-input::placeholder { color: rgba(255,255,255,.35); }
.gb-input:focus { border-color: var(--sky); background: rgba(255,255,255,.11); }
.gb-msg-input { flex: 3; }
.guestbook-list { display: flex; flex-direction: column; gap: 14px; }
.gb-item {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px; padding: 16px 20px;
  display: flex; gap: 14px; align-items: flex-start;
  animation: gbFadeIn .3s ease;
}
@keyframes gbFadeIn { from { opacity:0; transform:translateY(8px); } to { opacity:1; transform:none; } }
.gb-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--sky); color: white;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 15px; flex-shrink: 0;
}
.gb-name { font-size: 13px; font-weight: 700; color: white; margin-bottom: 4px; }
.gb-msg { font-size: 13px; color: rgba(255,255,255,.75); line-height: 1.65; }
.gb-date { font-size: 11px; color: rgba(255,255,255,.3); margin-top: 6px; }
.gb-empty {
  text-align: center; padding: 48px 24px;
  color: rgba(255,255,255,.35); font-size: 14px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
  .about-layout { grid-template-columns: 1fr; }
  .about-photo { height: 280px; }
  .identity-grid { grid-template-columns: repeat(2, 1fr); }
  .featured-grid  { grid-template-columns: repeat(2, 1fr); }
  .members-grid   { grid-template-columns: repeat(2, 1fr); }
  .story-grid     { grid-template-columns: 1fr; gap: 36px; }
  .story-stats    { grid-template-columns: repeat(4, 1fr); }
  .contact-wrap   { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid    { grid-template-columns: 1fr 1fr; }
  .shop-grid      { grid-template-columns: repeat(2, 1fr); }
  .video-grid     { grid-template-columns: 1fr; }
  .reviews-grid   { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .countdown-inner { flex-direction: column; gap: 16px; text-align: center; }
  .cd-info { text-align: center; }
  .cd-num { font-size: 20px; }
  .video-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .guestbook-form { flex-direction: column; }
  .gb-msg-input { flex: none; }
  section { padding: 68px 0; }
  .nav-links {
    display: none; flex-direction: column; gap: 0;
    position: absolute; top: 68px; left: 0; right: 0;
    background: rgba(255,255,255,.97); backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
  }
  .nav-links.open { display: flex; }
  .nav-links li { padding: 0; }
  .nav-links a { display: block; padding: 14px 24px; font-size: .95rem; border-bottom: 1px solid var(--border); color: var(--text-dark); }
  .nav-links .nav-cta {
    border-radius: 0 !important; background: var(--sky-pale) !important;
    color: var(--sky-dark) !important; border: none !important; border-bottom: 1px solid var(--border) !important;
  }
  .nav-toggle { display: flex; }
  .identity-grid, .featured-grid, .members-grid, .programs-grid, .shop-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .story-stats { grid-template-columns: repeat(2, 1fr); }
  .shop-coming-banner { flex-direction: column; text-align: center; }
  .shop-contact { flex-direction: column; gap: 8px; }
}
