@charset "utf-8";
.event-gallery {
  padding: 40px 0 40px;
}

.event-gallery__inner {
  width: 92%;
  max-width: 1200px;
  margin: 0 auto;
}

.event-gallery--dark {
  background: #111;
}

.event-gallery--dark .event-empty {
  color: #d2d2d2;
  border-color: #705923;
  background: #1a1a1a;
}

.event-gallery--dark .event-card {
  background: #181818;
  border: 1px solid #705923;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.24);
}

.event-gallery--dark .event-card:hover {
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.34);
}

.event-gallery--dark .event-card__media {
  background: #222;
}

.event-gallery--dark .event-card__placeholder,
.event-gallery--dark .event-card__date {
  color: #b9b9b9;
}

.event-gallery--dark .event-card__title {
  color: #f4efe2;
}

.event-gallery--detail-dark .event-view__media {
  background: #1a1a1a;
  border: 1px solid #705923;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.24);
}

.event-gallery--detail-dark .event-view__body {
  background: #181818;
  border-color: #705923;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.24);
}

.event-gallery--detail-dark .event-view__title,
.event-gallery--detail-dark .event-cta .ment,
.event-gallery--detail-dark .event-view__desc {
  color: #f4efe2;
}

.event-gallery--detail-dark .event-view__date,
.event-gallery--detail-dark .event-card__placeholder {
  color: #b9b9b9;
}

.event-gallery--detail-dark .event-cta .ment a {
  color: #dfbb67;
}

.event-gallery--detail-dark .event-back-btn {
  border-color: #705923;
  background: #181818;
  color: #f4efe2;
}

.event-gallery--detail-dark .event-back-btn:hover {
  background: #222;
}

.event-gallery--detail-dark .event-apply-btn {
  background: #705923;
  color: #111;
}

.event-gallery--detail-dark .event-apply-btn:hover {
  background: #dfbb67;
}

.event-apply-box {
  border: 1px solid transparent;
}

.event-gallery--detail-dark ~ .event-apply-modal .event-apply-box,
.event-apply-modal .event-apply-box {
  background: #fff;
}

.event-gallery--detail-dark ~ .event-apply-modal .event-apply-box {
  background: #181818;
  border-color: #705923;
  color: #f4efe2;
}

.event-gallery--detail-dark ~ .event-apply-modal .event-apply-title,
.event-gallery--detail-dark ~ .event-apply-modal .event-apply-form label {
  color: #f4efe2;
}

.event-gallery--detail-dark ~ .event-apply-modal .event-apply-form input[type="text"] {
  background: #222;
  border-color: #5a4a23;
  color: #f4efe2;
}

.event-gallery--detail-dark ~ .event-apply-modal .event-apply-cancel {
  border-color: #5a4a23;
  background: #222;
  color: #f4efe2;
}

.event-gallery--detail-dark ~ .event-apply-modal .event-apply-submit {
  background: #705923;
  color: #111;
  border-color: #705923;
}

.event-gallery--detail-dark ~ .event-apply-modal .event-apply-close {
  color: #f4efe2;
}

.event-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.event-card {
  background: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.event-card__link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.event-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.event-card__media {
  position: relative;
  background: #f4f4f4;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

.event-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.event-card__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9a9a9a;
  font-size: 13px;
  letter-spacing: 0.02em;
}

.event-card__body {
  padding: 16px 18px 20px;
}

.event-card__title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.event-card__title {
  font-size: 18px;
  font-weight: 700;
  color: #111;
  margin: 0 0 8px;
  flex: 1 1 auto;
}

.event-card__status {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 8px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.event-card__status--ongoing {
  background: #1f7a3a;
  color: #fff;
}

.event-card__status--ended {
  background: #777;
  color: #fff;
}

.event-card__status--upcoming {
  background: #c28d1d;
  color: #fff;
}

.event-card__desc {
  font-size: 14px;
  color: #444;
  margin: 0 0 10px;
  line-height: 1.5;
}

.event-card__date {
  font-size: 12px;
  color: #777;
}

.event-empty {
  padding: 60px 0;
  text-align: center;
  color: #666;
  border: 1px dashed #ddd;
  border-radius: 10px;
  background: #fafafa;
}

.event-view {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 32px;
  align-items: start;
}

.event-view__back {
  margin-bottom: 16px;
}

.event-back-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  border: 1px solid #ddd;
  border-radius: 999px;
  font-size: 12px;
  color: #222;
  background: #fff;
  text-decoration: none;
}

.event-back-btn:hover {
  background: #f7f7f7;
}

.event-cta {
  margin-top: 32px;
  text-align: center;
}

.event-cta .ment {
  font-size: 14px;
  color: #333;
  line-height: 1.6;
}

.event-cta .ment a {
  color: #111;
  text-decoration: underline;
}

.event-apply-btn {
  margin-top: 16px;
  padding: 10px 22px;
  border: 0;
  border-radius: 999px;
  background: #111;
  color: #fff;
  font-size: 14px;
  cursor: pointer;
}

.event-apply-btn:hover {
  background: #000;
}

.event-apply-modal { position: fixed; inset: 0; z-index: 1100; display: none; }
.event-apply-modal.is-open { display: block; }
.event-apply-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,0.6); }
.event-apply-box {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 92%;
  max-width: 420px;
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.2);
}
.event-apply-close {
  position: absolute;
  right: 10px;
  top: 6px;
  border: 0;
  background: transparent;
  font-size: 22px;
  cursor: pointer;
}
.event-apply-title {
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: 700;
}
.event-apply-form label { display:block; margin-bottom:6px; font-weight:600; }
.event-apply-form input[type="text"] {
  width: 100%;
  padding: 8px 10px;
  border: 1px solid #ddd;
  border-radius: 6px;
}
.event-apply-row { margin-bottom: 12px; }
.event-apply-agree label { font-weight: 400; }
.event-apply-actions {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
  margin-top: 10px;
}
.event-apply-cancel, .event-apply-submit {
  padding: 8px 14px;
  border-radius: 6px;
  border: 1px solid #ddd;
  background: #fff;
  cursor: pointer;
}
.event-apply-submit {
  background: #111;
  color: #fff;
  border-color: #111;
}

.event-view__media {
  background: #f4f4f4;
  border-radius: 12px;
  overflow: hidden;
}

.event-view__media img {
  width: 100%;
  height: auto;
  display: block;
}

.event-view__body {
  background: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 12px;
  padding: 22px;
}

.event-view__title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.event-view__title-group {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1 1 auto;
}

.event-view__title {
  margin: 0;
  font-size: 22px;
  font-weight: 700;
  color: #111;
}

.event-view__desc {
  margin: 0 0 14px;
  font-size: 15px;
  line-height: 1.6;
  color: #444;
  padding-top:10px;
}

.event-view__date {
  font-size: 13px;
  color: #777;
}

.event-pagination {
  padding: 30px 0 80px;
}

.event-pagination--dark {
  background: #111;
}

.event-pagination--dark .pg_page,
.event-pagination--dark .pg_current {
  border-color: #705923;
}

.event-pagination--dark .pg_page {
  background: #181818;
  color: #f4efe2;
}

.event-pagination--dark .pg_page:link,
.event-pagination--dark .pg_page:visited,
.event-pagination--dark .pg_page:active,
.event-pagination--dark .pg_page:hover {
  color: #f4efe2;
}

.event-pagination--dark .pg_page:hover {
  background: #222;
  border-color: #705923;
}

.event-pagination--dark .pg_current {
  background: #705923;
  border-color: #705923;
  color: #111;
}

.event-pagination .pg {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.event-pagination .pg_page,
.event-pagination .pg_current {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid #e2e2e2;
  background: #fff;
  color: #000;
  font-size: 13px;
  line-height: 1;
  transition: all 0.2s ease;
}

.event-pagination .pg_page:link,
.event-pagination .pg_page:visited,
.event-pagination .pg_page:active,
.event-pagination .pg_page:hover {
  color: #000;
}

.event-pagination .pg_page:hover {
  border-color: #c9c9c9;
  background: #f7f7f7;
}

.event-pagination .pg_current {
  background: #121212;
  border-color: #121212;
  color: #fff;
  font-weight: 600;
}

.event-pagination .pg_start,
.event-pagination .pg_prev,
.event-pagination .pg_next,
.event-pagination .pg_end {
  display: none;
}

.event-pagination .sound_only {
  display: none !important;
}

@media (max-width: 640px) {
  .event-pagination .pg_page,
  .event-pagination .pg_current {
    min-width: 32px;
    height: 32px;
    font-size: 12px;
  }
}
@media (max-width: 991px) {
  .event-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .event-gallery {
    padding: 40px 0 40px;
  }
  .event-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .event-card__title {
    font-size: 16px;
  }

  .event-view {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}



.signature-hero {
  position: relative;
  overflow: hidden;
  background: #121212;
  max-height: 700px;
}

.signature-hero .hero-bg {
  position: relative;
  max-height: 400px;
}

.signature-hero .hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 52%, rgba(27, 27, 29, 0) 100%),
    radial-gradient(circle at 50% 28%, rgba(134, 156, 52, 0.22) 0%, rgba(0, 0, 0, 0) 42%);
  z-index: 1;
}

.signature-hero .hero-bg-img {
  display: block;
  width: 100%;
  max-height: 400px;
  object-fit: cover;
}

.signature-hero .hero-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 120px 20px 0;
  text-align: center;
}

.signature-hero .hero-title {
  color: #fff;
}

.signature-hero .hero-title p {
  margin: 0 0 12px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.signature-hero .hero-title h3 {
  margin: 0;
  font-size: 72px;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.04em;
  color: #fff;
}

.signature-hero .hero-title p {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(25px, 2.5vw, 58px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
}

.signature-hero .hero-title h3 {
  margin: 12px 0 0;
  font-size: clamp(40px, 4.8vw, 74px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.02em;
}
