@charset "UTF-8";
/* Navigation */
/* Mobile Menu Toggle */
/* Floating Ticket Button */
/* General Section Styles */
/* Hero Section (1920*1080 Full Screen) */
@keyframes zoomIn {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.1);
  }
}
/* About Section */
/* Summary Quote */
/* Stories Section - 寬螢幕佈局優化 */
/* Library Section - 滿版設計 */
/* Award Section */
/* .award-grid .aw-desc {
  font-family: "Cormorant Garamond", serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(245, 240, 234, 0.6);
  letter-spacing: 0.04em;
  flex: 1;
  margin-bottom: 28px;
} */
/* nominess */
/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Brands Section */
/* Events Section */
/* CTA Section */
/* Exhibitors Section */
/* Organizers Section */
/* Info Section */
/* Footer */
/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
    filter: blur(5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}
/* =========================================
           Responsive Breakpoints (響應式斷點)
           ========================================= */
/* 1366px Laptop & Small Desktop */
/* @media (max-width: 1366px) {
            :root {
                --container-width: 1100px;
            }

            .hero-title {
                font-size: 5rem;
            }

            .stories-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .exhibitors-container {
                grid-template-columns: repeat(3, 1fr);
            }
        } */
/* 1024px Tablet Landscape */
/* 768px Tablet Portrait & Large Mobile */
/* 漢堡按鈕靠左 */
/* 直接顯示：移除過場動畫，使用 display 控制顯示與否 */
:root {
  --ink: #1a1a1a;
  --charcoal: #2c2c2c;
  --stone: #4a4a4a;
  --mist: #8a8a8a;
  --cloud: #c4c4c4;
  --cream: #f5f3ef;
  --paper: #faf8f5;
  --gold: #b8a078;
  --gold-light: #d4c4a8;
  --sage: #7a8b6e;
  --deep: #111111;
  --muted: rgba(245, 240, 234, 0.45);
  --border: rgba(255, 255, 255, 0.08);
  --border-gold: rgba(196, 160, 90, 0.35);
  --surface: #252525;
  --container-width: 1440px;
  --nav-height: 80px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: "Noto Serif TC", serif;
  background: var(--paper);
  color: var(--charcoal);
  line-height: 2;
  font-weight: 300;
  letter-spacing: 0.05em;
  overflow-x: hidden;
}

.serif-display {
  font-family: "Cormorant Garamond", serif;
  text-transform: uppercase;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  padding: 0 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  background: rgba(250, 248, 245, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.nav-logo,
.nav-logo a {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--ink);
  width: 200px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  cursor: pointer;
}
.nav-logo img,
.nav-logo a img {
  max-width: 80%;
}

.nav-links {
  display: flex;
  gap: 3rem;
}
.nav-links a {
  font-size: 0.95rem;
  color: var(--stone);
  text-decoration: none;
  letter-spacing: 0.1em;
  transition: color 0.3s ease;
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.nav-links a:hover {
  color: var(--ink);
}
.nav-links a:hover::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--ink);
  transition: all 0.3s ease;
  display: block;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}
.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.floating-ticket {
  position: fixed;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 999;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  background: var(--ink);
  color: var(--paper);
  padding: 2rem 1rem;
  font-size: 1rem;
  letter-spacing: 0.2em;
  text-decoration: none;
  border-radius: 4px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}
.floating-ticket:hover {
  background: var(--gold);
  transform: translateY(-50%) scale(1.05);
}

section {
  padding: 3rem 2rem;
  width: 100%;
  margin: 0 auto;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  position: relative;
}

.section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 400;
  letter-spacing: 0.15em;
  margin-bottom: 3rem;
  text-align: center;
  color: var(--ink);
}
.section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 1.5rem auto 0;
}

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 700px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  background: #0c0909;
  padding: 0;
}

@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-subtitle-zh {
  font-size: clamp(3.5rem, 3vw, 3rem);
  font-weight: 300;
  letter-spacing: 0.5em;
  color: var(--gold);
  margin-bottom: 4rem;
  animation: fadeInUp 1.5s ease-out 0.3s both;
}

.hero-tagline {
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  color: #ffffff;
  margin-bottom: 1.5rem;
  animation: fadeInUp 1.5s ease-out 0.6s both;
}

.hero-poem {
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 2.2;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 4rem;
  animation: fadeInUp 1.5s ease-out 0.9s both;
}

.hero-info {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  letter-spacing: 0.2em;
  color: #ffffff;
  border-top: 1px solid rgba(184, 160, 120, 0.6);
  padding-top: 2.5rem;
  display: inline-block;
  animation: fadeInUp 1.5s ease-out 1.2s both;
}

.cta-button {
  display: inline-block;
  padding: 1.5rem 5rem;
  font-family: "Noto Serif TC", serif;
  font-size: 1.1rem;
  letter-spacing: 0.2em;
  color: var(--paper);
  background: var(--ink);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.kv-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.kv-background img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  filter: brightness(0.55) contrast(1.1);
  animation: zoomIn 20s infinite alternate;
}

.kv-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(26, 26, 26, 0.1) 0%, rgba(26, 26, 26, 0.5) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  color: #ffffff;
  max-width: 1200px;
  padding: 0 2rem;
}
.hero-content .hero-award-label {
  font-size: 0.95rem;
  letter-spacing: 0.35em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeSlideUp 1s ease 0.3s forwards;
}

.hero-title {
  font-family: "Noto Serif TC", serif;
  font-weight: 600;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  color: var(--cream);
  letter-spacing: 0.08em;
  line-height: 1.4;
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeSlideUp 1s ease 0.6s forwards;
}
.hero-title em {
  font-style: normal;
  color: #c9a96e;
}

.hero-stat {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  color: var(--cream-dim);
  font-weight: 300;
  letter-spacing: 0.04em;
  line-height: 1.7;
  opacity: 0;
  animation: fadeSlideUp 1s ease 0.9s forwards;
}

.about-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.about-content p {
  margin-bottom: 1.8rem;
  font-size: 1.15rem;
  color: var(--charcoal);
}
.about-content .highlight {
  font-size: 1.3rem;
  color: var(--ink);
  font-weight: 500;
  margin: 2rem 0;
  display: block;
}

.summary-quote {
  text-align: center;
  padding: 4rem 0;
  margin-top: 1rem;
  border-top: 1px solid var(--cloud);
  border-bottom: 1px solid var(--cloud);
}
.summary-quote p {
  font-size: 1.25rem;
  color: var(--stone);
  font-style: italic;
  max-width: 900px;
  margin: 0 auto;
  line-height: 2.2;
}

.stories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
  margin-top: 3rem;
}

.story-card {
  padding: 2rem 0;
  border-top: 1px solid var(--gold);
  transition: transform 0.3s ease;
}
.story-card:hover {
  transform: translateY(-10px);
}

.story-title {
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
  color: var(--ink);
}

.story-text {
  font-size: 1rem;
  color: var(--stone);
  line-height: 2;
  text-align: justify;
}

.library-section {
  background: var(--ink);
  color: var(--paper);
  padding: 4rem 2rem;
  position: relative;
}
.library-section .container:last-child {
  margin-top: 100px;
}
.library-section .section-title {
  color: var(--paper);
}
.library-section .section-title::after {
  background: var(--gold-light);
}

.library-intro {
  max-width: 800px;
  margin: 0 auto 4rem;
  text-align: center;
}
.library-intro p {
  font-size: 1.2rem;
  color: var(--cloud);
  margin-bottom: 1rem;
}

.library-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  max-width: var(--container-width);
  margin: 0 auto;
}

.library-card {
  padding: 3rem 2.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s ease;
  height: 100%;
}
.library-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--gold);
}

.library-card-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
  color: var(--gold-light);
}

.library-card-text {
  font-size: 1rem;
  color: var(--cloud);
  line-height: 2;
}

.aw-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 32px;
  font-size: 24px;
  font-weight: 200;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: #c4a05a;
}
.aw-divider::before {
  content: "";
  flex: 1;
  max-width: 180px;
  height: 1px;
  background: rgba(196, 160, 90, 0.3);
}
.aw-divider::after {
  content: "";
  flex: 1;
  max-width: 180px;
  height: 1px;
  background: rgba(196, 160, 90, 0.3);
}

.award-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(10px, 1fr));
  gap: 1rem;
  margin: 0 auto;
  animation: fadeUp 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  animation-delay: 0.35s;
}
.award-grid .aw-card {
  display: grid;
  grid-template-columns: 340px 1fr;
  background: #131313;
  border: 2px solid rgba(196, 160, 90, 0.12);
  margin-bottom: 2px;
  text-decoration: none;
  color: inherit;
  position: relative;
  overflow: hidden;
  transition: border-color 0.35s;
  grid-column: span 2;
  /* 💡 核心：一個人佔兩個人的位子 */
  justify-self: center;
  /* 自己在這一大格裡面水平置中 */
  width: 50%;
  /* 調整寬度，不然它會撐滿整個容器 */
}
.award-grid .aw-card:hover {
  border-color: rgba(196, 160, 90, 0.38);
}
.award-grid .aw-card:hover .aw-cta-arrow {
  gap: 14px;
}
.award-grid .aw-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, transparent, #c4a05a 30%, #c4a05a 70%, transparent);
  opacity: 0.6;
}
.award-grid .aw-img {
  position: relative;
  overflow: hidden;
}
.award-grid .aw-info {
  padding: 36px 44px 36px 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-left: 1px solid rgba(196, 160, 90, 0.1);
  padding: 36px 44px 36px 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-left: 1px solid rgba(196, 160, 90, 0.1);
}
.award-grid .aw-img-placeholder {
  width: 100%;
  height: 100%;
  background: #1c1710;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 320px;
}
.award-grid .aw-rank-stamp {
  padding: 0px 0px 5px;
  display: flex;
  align-items: flex-end;
  gap: 12px;
}
.award-grid .aw-rank-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 56px;
  font-weight: 300;
  color: #c4a05a;
  line-height: 1;
  opacity: 0.9;
}
.award-grid .aw-rank-label {
  font-size: 18px;
  font-weight: 300;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #e0c88a;
  display: block;
}
.award-grid .aw-top {
  flex: 1;
}
.award-grid .aw-tag {
  display: inline-block;
  font-size: 9px;
  font-weight: 300;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: #c4a05a;
  background: rgba(196, 160, 90, 0.08);
  border: 1px solid rgba(196, 160, 90, 0.2);
  padding: 4px 10px;
  margin-bottom: 20px;
}
.award-grid .aw-work-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 36px;
  font-weight: 300;
  letter-spacing: 0.04em;
  color: #f5f0ea;
  line-height: 1.2;
  margin-bottom: 4px;
}
.award-grid .aw-work-subtitle {
  font-family: "Cormorant Garamond", serif;
  font-size: 16px;
  font-weight: 300;
  font-style: italic;
  color: rgba(245, 240, 234, 0.4);
  letter-spacing: 0.12em;
  margin-bottom: 24px;
}
.award-grid .aw-meta-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  line-height: 22px;
}
.award-grid .aw-author {
  font-size: 15px;
  font-weight: 300;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #c4a05a;
}
.award-grid .aw-brand {
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.12em;
  color: rgba(245, 240, 234, 0.45);
  font-family: "Cormorant Garamond", serif;
  font-size: 14px;
}
.award-grid .aw-cta {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.award-grid .aw-cta-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 300;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: #c4a05a;
  transition: gap 0.3s;
}
.award-grid .aw-cta-arrow::after {
  content: "→";
  font-size: 15px;
}
.award-grid .award-card {
  background: rgba(255, 255, 255, 0.03);
  border: var(--gold) 1px solid;
  padding: 2rem;
  transition: all 0.4s ease;
  grid-column: span 2;
  /* 💡 核心：一個人佔兩個人的位子 */
  justify-self: center;
  /* 自己在這一大格裡面水平置中 */
  width: 50%;
  /* 調整寬度，不然它會撐滿整個容器 */
}

.award-grid.row_2 {
  grid-template-columns: repeat(2, 1fr);
}

.nominess-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  animation: fadeUp 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  animation-delay: 0.35s;
  margin-top: 30px;
}
.nominess-grid .nominee-card {
  background: var(--deep);
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: block;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}
.nominess-grid .nominee-image {
  aspect-ratio: 1/1;
  /* 1. 確保容器永遠是正方形 */
  overflow: hidden;
  /* 2. 裁掉超出正方形範圍的部分 */
  position: relative;
}
.nominess-grid .nominee-image img {
  width: 100%;
  /* 3. 強制寬度填滿 */
  height: 100%;
  /* 4. 強制高度填滿 */
  -o-object-fit: cover;
     object-fit: cover;
  /* 💡 核心：等比例縮放並填滿，多餘的自動裁切 */
  -o-object-position: center;
     object-position: center;
  /* 5. 確保裁切時是以照片中心點為基準 (預設即為中心) */
}
.nominess-grid .img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.nominess-grid .nominee-body {
  padding: 20px 22px 24px;
}
.nominess-grid .nominee-brand {
  font-family: "Cormorant Garamond", serif;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.3em;
  line-height: 1.6;
  text-transform: uppercase;
  color: var(--muted);
}
.nominess-grid .nominee-author {
  font-size: 15px;
  font-weight: 300;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #c4a05a;
  line-height: 1.4;
}
.nominess-grid .nominee-hover-arrow {
  position: absolute;
  bottom: 22px;
  right: 22px;
  width: 28px;
  height: 28px;
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--gold);
  opacity: 0;
  transform: translate(4px, 4px);
  transition: opacity 0.3s, transform 0.3s;
}

.nominees-label {
  animation: fadeUp 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  animation-delay: 0.25s;
  font-family: "Josefin Sans", sans-serif;
  font-weight: 200;
  font-size: 10px;
  letter-spacing: 0.5em;
  color: var(--muted);
  text-transform: uppercase;
  text-align: center;
}
.nominees-label::before {
  content: "";
  flex: 1;
  max-width: 220px;
  height: 1px;
  background: rgba(196, 160, 90, 0.3);
}
.nominees-label::after {
  content: "";
  flex: 1;
  max-width: 220px;
  height: 1px;
  background: rgba(196, 160, 90, 0.3);
}

.nominee-card:hover {
  background: var(--surface);
}
.nominee-card:hover .nominee-hover-arrow {
  opacity: 1;
  transform: translate(0, 0);
  opacity: 1;
  transform: translate(0, 0);
}
.nominee-card:hover::after {
  transform: scaleX(1);
}
.nominee-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform-origin: left;
}

.img-placeholder span {
  font-family: "Josefin Sans", sans-serif;
  font-size: 9px;
  letter-spacing: 0.3em;
  color: var(--muted);
  text-transform: uppercase;
}

.nominee-body {
  min-height: 137px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.nominee-body .nominee-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
  font-weight: 300;
  letter-spacing: 0.04em;
  color: var(--white);
  line-height: 1.4;
}

.brands-intro {
  text-align: center;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.brands-intro p {
  font-size: 1.1rem;
  color: var(--stone);
  margin-bottom: 0.5rem;
}

.logo-wall {
  width: 100%;
  max-width: 1000px;
  margin: 2rem auto;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}
.logo-wall img {
  width: 100%;
  height: auto;
  display: block;
  opacity: 1;
  transition: opacity 0.3s;
}
.logo-wall img:hover {
  opacity: 0.9;
}

.brands-cta {
  text-align: center;
  margin-top: 3rem;
}

.brands-button {
  display: inline-block;
  padding: 1.2rem 4rem;
  font-family: "Noto Serif TC", serif;
  font-size: 1rem;
  letter-spacing: 0.15em;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--ink);
  cursor: pointer;
  text-decoration: none;
  transition: all 0.4s ease;
}
.brands-button:hover {
  background: var(--ink);
  color: var(--paper);
}

.events-section {
  background: var(--cream);
  padding: 6rem 2rem;
}

.events-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  max-width: var(--container-width);
  margin: 0 auto;
}

.events-header {
  text-align: left;
}
.events-header .section-title {
  text-align: left;
  margin-bottom: 1.5rem;
}
.events-header .section-title::after {
  margin: 1.5rem 0;
  width: 40px;
}

.events-intro {
  font-size: 1rem;
  color: var(--stone);
  line-height: 2;
  margin-bottom: 2rem;
}

.events-column {
  margin-bottom: 3rem;
}
.events-column h3 {
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--ink);
  margin-bottom: 1.2rem;
  border-left: 4px solid var(--gold);
  padding-left: 1rem;
}

.event-item {
  background: rgba(255, 255, 255, 0.6);
  border-bottom: 1px solid var(--cloud);
  padding: 1.2rem 1.5rem;
  margin-bottom: 0.8rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
}
.event-item:hover {
  background: #fff;
  transform: translateX(10px);
  border-color: var(--gold);
}
.event-item .chevron {
  font-size: 0.8rem;
  color: var(--mist);
  transition: transform 0.3s ease;
}
.event-item span {
  font-size: 1rem;
  color: var(--charcoal);
}

.event-btn {
  background-color: var(--ink);
  color: var(--paper);
  padding: 0.5rem 1rem;
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-decoration: none;
  transition: all 0.3s ease;
  display: block;
  margin-left: auto;
  width: -moz-fit-content;
  width: fit-content;
}

.cta-section {
  background: linear-gradient(180deg, var(--cream) 0%, #fff 100%);
  text-align: center;
  padding: 8rem 2rem;
}
.cta-section .other {
  text-decoration: underline;
  color: var(--stone);
}
.cta-section .other:hover {
  text-decoration: underline;
  color: var(--gold);
}

.cta-subtitle {
  font-size: 1.2rem;
  color: var(--mist);
  margin-bottom: 3rem;
  line-height: 1.8;
}

.cta-title {
  font-weight: 500;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--deep);
  letter-spacing: 0.1em;
}

.closing-sub {
  font-family: "Cinzel", serif;
  font-size: 0.9rem;
  letter-spacing: 0.35em;
  color: var(--gold);
  text-transform: uppercase;
}

.exhibitors-section {
  background: var(--paper);
  padding: 3rem 2rem;
  border-top: 1px solid var(--cloud);
}

.exhibitors-container {
  max-width: var(--container-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.award-container {
  max-width: var(--container-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  max-width: calc(var(--container-width) - 300px);
  grid-template-columns: repeat(2, 1fr);
}
.award-container .award-entry .award-name {
  font-size: 22px;
  line-height: 22px;
  font-weight: bold;
}
.award-container .award-entry .award-brand {
  font-size: 14px;
  color: #666;
}

.jury-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.jury-stats .jury-stat-item {
  text-align: center;
}
.jury-stats .jury-stat-number {
  font-family: "Cinzel", serif;
  font-size: 5.5rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}
.jury-stats .jury-stat-label {
  font-size: 1rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
}
.jury-stats .jury-stat-divider {
  font-family: "Cinzel", serif;
  font-size: 3rem;
  color: var(--gold);
}

.jury-domains {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 3rem;
  justify-content: center;
}
.jury-domains .jury-domain-tag {
  font-size: 1rem;
  font-weight: 400;
  color: var(--cream-dim);
  padding: 0.5rem 1.2rem;
  border: 1px solid rgba(201, 169, 110, 0.6);
  border-radius: 1px;
  letter-spacing: 0.06em;
}

.jury-criteria {
  margin-top: 2rem;
  text-align: center;
}
.jury-criteria .criteria-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
  margin: 1rem auto 2rem;
  /* 💡 margin 左右 auto 讓整個「容器」置中 */
  max-width: 1100px;
  /* 💡 限制最大寬度，防止 5 個物件被拉得太寬 */
  justify-content: center;
}
.jury-criteria .criteria-item {
  text-align: center;
  padding: 1rem 0.8rem;
  border: 1px solid #b8a078;
  border-radius: 2px;
  background: #e0cfb1;
  line-height: 1.5;
}
.jury-criteria .criteria-item .ci-name {
  font-family: "Noto Serif TC", serif;
  font-size: 1rem;
  color: var(--deep);
  letter-spacing: 0.04em;
}
.jury-criteria .criteria-item .ci-weight {
  font-family: "Cinzel", serif;
  font-size: 1.2rem;
  letter-spacing: 0.2em;
  color: var(--deep);
}

.vote-highlight {
  position: relative;
  padding: 3rem;
  border: 1.5px solid rgba(201, 169, 110, 0.5);
  border-radius: 2px;
  background: rgba(201, 169, 110, 0.02);
  text-align: center;
  max-width: 940px;
  margin: 0rem auto 2rem;
}
.vote-highlight .vote-number {
  font-family: "Cinzel", serif;
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.vote-highlight .vote-unit {
  font-family: "Noto Serif TC", serif;
  font-size: 1rem;
  color: var(--cream-dim);
  letter-spacing: 0.08em;
}
.vote-highlight .vote-desc {
  margin-top: 1.5rem;
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.9;
}

.jury-container {
  max-width: var(--container-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  /* 固定 5 欄 */
  gap: 0.1rem;
}
.jury-container .jury-item {
  width: 100%;
  aspect-ratio: 1/1;
  /* 💡 核心：強制長寬比 1:1 */
  background-color: #333;
  position: relative;
  /* 為了讓內部的 info 定位 */
  overflow: hidden;
}
.jury-container {
  /* 評審圖片容器 */
}
.jury-container .pic {
  width: 100%;
  height: 100%;
  position: relative;
  /* 必備：讓內部的 info 可以絕對定位 */
  overflow: hidden;
  /* 確保圓角或多餘部分不會超出 */
  cursor: pointer;
}
.jury-container {
  /* 預設隱藏的資訊層 */
}
.jury-container .jury-info {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* 半透明背景，讓文字更清晰 */
  background-color: rgba(0, 0, 0, 0.8);
  color: #fff;
  /* 置中文字 */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  /* 動畫過渡 */
  opacity: 0;
  transition: opacity 0.3s ease;
}
.jury-container {
  /* 當滑鼠移入 .pic 時，顯示 .jury-info */
}
.jury-container .pic:hover .jury-info {
  opacity: 1;
}
.jury-container .jury-company {
  line-height: 1.2;
  text-align: center;
}
.jury-container .jury-name {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 5px;
  letter-spacing: 1px;
  text-align: center;
}
.jury-container .jury-job {
  font-size: 0.85rem;
  opacity: 0.9;
}
.jury-container img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  filter: grayscale(30%);
  object-fit: cover;
  /* 💡 核心：防止圖片壓扁，自動裁切 */
  display: block;
}

.exhibitor-category h3 {
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--ink);
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--gold);
}

.exhibitor-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.exhibitor-list span {
  font-size: 1rem;
  color: var(--stone);
  transition: color 0.2s;
  cursor: default;
}
.exhibitor-list span:hover {
  color: var(--gold);
  padding-left: 5px;
}

.organizers-section {
  background: var(--cream);
  padding: 3rem 2rem;
  border-top: 1px solid var(--cloud);
}

.organizers-intro {
  text-align: center;
  margin-bottom: 3rem;
}

.organizers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto;
}
.organizers-grid.gold {
  grid-template-columns: repeat(2, 1fr);
}

.organizer-card {
  text-align: center;
  padding: 2rem;
  border: 1px solid transparent;
  transition: border-color 0.3s;
}
.organizer-card:hover {
  border-color: var(--gold);
}

.organizer-name {
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
  color: var(--ink);
}

.info-section {
  text-align: center;
  border-top: 1px solid var(--cloud);
  padding: 3rem 2rem;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
  text-align: left;
}

.info-item {
  padding-left: 2rem;
  text-align: center;
}
.info-item a {
  color: var(--charcoal);
}

.info-label {
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  color: var(--mist);
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.info-value {
  font-size: 1.1rem;
  color: var(--charcoal);
  line-height: 1.8;
}

.gallery-grid {
  display: grid;
  gap: clamp(6px, 0.1vw, 10px);
}
.gallery-grid .row {
  display: grid;
  gap: clamp(6px, 0.1vw, 10px);
}
.gallery-grid .photo-cell {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: #2a2825;
}
.gallery-grid .photo-cell::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20, 18, 16, 0.55) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.gallery-grid .photo-cell:hover::after {
  opacity: 1;
}
.gallery-grid .photo-cell.photo-num {
  opacity: 1;
}
.gallery-grid .photo-cell:hover .zoom-icon {
  opacity: 1;
  transform: scale(1) translateY(0);
}
.gallery-grid .photo-cell:hover img {
  transform: scale(1.06);
  filter: saturate(1) brightness(0.88);
}
.gallery-grid .photo-cell img {
  width: 100%;
  /* 3. 強制寬度填滿 */
  height: 100%;
  /* 4. 強制高度填滿 */
  -o-object-fit: cover;
     object-fit: cover;
  /* 💡 核心：等比例縮放並填滿，多餘的自動裁切 */
  -o-object-position: center;
     object-position: center;
  /* 5. 確保裁切時是以照片中心點為基準 (預設即為中心) */
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.5s ease;
}
.gallery-grid .photo-cell .photo-cell img[src*=placeholder],
.gallery-grid .photo-cell .photo-cell img:not([src]) {
  opacity: 0;
}
.gallery-grid .photo-cell .zoom-icon {
  position: absolute;
  bottom: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border: 2px solid rgba(196, 168, 130, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.8) translateY(4px);
  transition: opacity 0.35s ease, transform 0.35s ease;
  z-index: 2;
}
.gallery-grid .photo-cell .zoom-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--gold);
  fill: none;
}
.gallery-grid .row-a {
  grid-template-columns: 2fr 1fr;
}
.gallery-grid .row-a .photo-cell {
  height: clamp(180px, 18vw, 330px);
}
.gallery-grid .row-b {
  grid-template-columns: 1fr 1fr 1fr 1fr;
}
.gallery-grid .row-b .photo-cell {
  height: clamp(130px, 16vw, 280px);
}
.gallery-grid .row-c {
  grid-template-columns: 1fr 2fr 1fr;
}
.gallery-grid .row-c .photo-cell {
  height: clamp(160px, 20vw, 340px);
}
.gallery-grid .row-d {
  grid-template-columns: 1fr 1fr;
}
.gallery-grid .row-d .photo-cell {
  height: clamp(200px, 21vw, 420px);
}
.gallery-grid .row-e {
  grid-template-columns: 3fr 2fr 2fr;
}
.gallery-grid .row-e .photo-cell {
  height: clamp(150px, 20vw, 300px);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(16, 14, 12, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease, background 0.4s ease;
}
.lightbox.open {
  opacity: 1;
  background: rgba(16, 14, 12, 0.94);
  pointer-events: all;
}
.lightbox.open .lb-img-wrap {
  transform: scale(1) translateY(0);
}
.lightbox .lb-close {
  position: fixed;
  top: 24px;
  right: 28px;
  width: 44px;
  height: 44px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  transition: border-color 0.3s, background 0.3s;
  z-index: 10;
  background: transparent;
}
.lightbox .lb-close svg {
  width: 16px;
  height: 16px;
  stroke: var(--gold);
  fill: none;
}
.lightbox .lb-prev {
  left: clamp(8px, 3vw, 32px);
}
.lightbox .lb-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 60px clamp(16px, 5vw, 80px);
}
.lightbox .lb-nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(196, 168, 130, 0.5);
  border-radius: 50%;
  transition: border-color 0.3s, background 0.3s, opacity 0.3s;
  background: rgba(20, 18, 16, 0.5);
  z-index: 10;
}
.lightbox .lb-nav svg {
  width: 18px;
  height: 18px;
  stroke: var(--gold);
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.lightbox .lb-img-wrap {
  position: relative;
  max-width: 90vw;
  max-height: 85vh;
  transform: scale(0.92) translateY(12px);
  transition: transform 0.45s cubic-bezier(0.34, 1.2, 0.64, 1);
}
.lightbox .lb-img-wrap img {
  display: block;
  max-width: 90vw;
  max-height: 85vh;
  -o-object-fit: contain;
     object-fit: contain;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
}
.lightbox .lb-next {
  right: clamp(8px, 3vw, 32px);
}
.lightbox .lb-counter {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  font-family: "Cormorant Garamond", serif;
  font-size: 13px;
  letter-spacing: 0.2em;
  color: var(--muted);
  font-style: italic;
  z-index: 10;
}
.lightbox .lb-counter span {
  color: var(--accent);
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
  justify-content: center;
}
.social-links a {
  border: 1px solid var(--ink);
  text-decoration: none;
  padding: 0.5rem 1rem;
  color: var(--charcoal);
  transition: all 0.3s ease;
}
.social-links a:hover {
  border: 1px solid var(--ink);
  color: var(--cream);
  background-color: var(--ink);
}

footer {
  padding: 3rem 2rem;
  text-align: center;
  background: var(--ink);
  color: var(--mist);
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1024px) {
  section {
    padding: 4rem 2rem;
  }
  .nav-links {
    gap: 1.5rem;
  }
  .events-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .event-btn {
    margin-left: 0;
  }
  .info-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
  .exhibitors-container {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  nav {
    padding: 1rem 1.5rem;
    justify-content: flex-start;
  }
  .nav-logo {
    font-size: 1.4rem;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1002;
    justify-content: center;
  }
  .nav-toggle {
    display: flex;
    z-index: 1003;
    margin-left: 0;
  }
  .nav-links {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: var(--paper);
    flex-direction: column;
    padding: 2rem 1.5rem;
    gap: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: none;
    opacity: 1;
    visibility: visible;
    transition: none;
  }
  .nav-links a {
    padding: 1rem 0;
    font-size: 1.1rem;
    border-bottom: 1px solid var(--cloud);
  }
  .nav-links a:last-child {
    border-bottom: none;
  }
  .nav-links a::after {
    display: none;
  }
  .nav-links.active {
    display: flex;
  }
  .floating-ticket {
    right: 10px;
    padding: 1rem 0.6rem;
    font-size: 0.8rem;
  }
  .hero {
    height: auto;
    min-height: 100vh;
    padding: 8rem 1.5rem;
  }
  .hero-title {
    font-size: 3rem;
    letter-spacing: 0.1em;
  }
  .hero-subtitle-zh {
    letter-spacing: 0.3em;
    margin-bottom: 2rem;
    font-size: clamp(2.5rem, 2vw, 3rem);
  }
  .hero-info {
    padding: 0;
  }
  .hero-info span {
    display: block;
    margin: 0 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 0.5rem;
  }
  .hero-info span:last-child {
    border-bottom: none;
  }
  .stories-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .library-grid {
    grid-template-columns: 1fr;
  }
  .exhibitors-container {
    grid-template-columns: 1fr;
  }
  .award-container {
    grid-template-columns: 1fr;
  }
  .organizers-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .info-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  .info-item {
    border-left: none;
    padding-left: 0;
    border-bottom: 1px solid var(--cloud);
    padding-bottom: 2rem;
  }
  .info-item:last-child {
    border-bottom: none;
  }
  .info-value {
    word-break: break-all;
    word-wrap: break-word;
  }
  .social-links {
    justify-content: center;
  }
  .cta-button {
    width: 100%;
    padding: 1.2rem;
  }
  .award-grid.row_2 {
    grid-template-columns: repeat(1, 1fr);
  }
  .award-grid.row_2 .aw-info {
    padding: 10px 44px 10px 40px;
  }
  .award-grid.row_2 .aw-card {
    display: grid;
    grid-template-columns: 1fr;
    background: #131313;
    border: 2px solid rgba(196, 160, 90, 0.12);
    margin-bottom: 2px;
    text-decoration: none;
    color: inherit;
    position: relative;
    overflow: hidden;
    transition: border-color 0.35s;
    width: 100%;
  }
  .nominess-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .jury-container {
    grid-template-columns: repeat(2, 1fr);
  }
  .jury-container .jury-name {
    font-size: 20px;
    margin-bottom: 0;
  }
  .gallery-grid .row-a,
  .gallery-grid .row-b,
  .gallery-grid .row-c,
  .gallery-grid .row-d,
  .gallery-grid .row-e {
    grid-template-columns: 1fr 1fr;
  }
  .gallery-grid .row-a .photo-cell,
  .gallery-grid .row-b .photo-cell,
  .gallery-grid .row-c .photo-cell,
  .gallery-grid .row-d .photo-cell,
  .gallery-grid .row-e .photo-cell {
    height: clamp(120px, 42vw, 200px);
  }
  .gallery-grid .row-c .photo-cell:last-child,
  .gallery-grid .row-e .photo-cell:last-child {
    grid-column: 1/-1;
  }
  .lb-nav {
    width: 40px;
    height: 40px;
  }
  .lb-nav svg {
    width: 14px;
    height: 14px;
  }
  .lb-prev {
    left: 6px;
  }
  .lb-next {
    right: 6px;
  }
  .event-item {
    flex-direction: column;
    gap: 0.5rem;
  }
}