:root {
  --black: #0a0a0a;
  --white: #f5f5f2;
  --blue: #3d4ff5;
  --teal: #22d3c5;
  --yellow: #f3e83c;
  --pink: #ff6ea3;
  --grey: #8a8a8a;
  --big: 250px;
  --head: 24px;
  --body: 20px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 700;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  width: 100%;
  display: block;
  object-fit: cover;
}

/* ---------- TOP BAR & NAVIGATION ---------- */
.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 28px;
  font-size: var(--head);
  letter-spacing: -0.04em;
  font-style: italic;
  font-weight: 300;
}

.nav-right-wrapper {
  display: flex;
  align-items: center;
  gap: 30px;
}

.right {
  display: flex;
  align-items: center;
}

.MENU {
  display: flex;
  gap: 30px;
}

.lang {
  display: flex;
  gap: 6px;
  align-items: center;
  font-size: var(--head);
}

.lang-en,
.lang-kr {
  opacity: 0.25;
  transition: opacity 0.2s ease;
}

.lang-en:hover,
.lang-kr:hover,
.lang a:not([class]):hover {
  opacity: 1;
}

/* ---------- NAV TOGGLE (HAMBURGER BUTTON) ---------- */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 16px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
  color: inherit;
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: currentColor;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---------- HERO ---------- */
.hero {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100vh;
  z-index: 5;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 0 0 6vh 2vw;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.18) 0%, rgba(0,0,0,0.05) 35%, rgba(0,0,0,0.65) 100%);
  z-index: 1;
}

.hero-topbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  font-style: italic;
}

.hero-topbar a {
  color: var(--white);
}

.hero-title {
  position: absolute;
  left: 40px;
  right: 40px;
  bottom: 40px;
  z-index: 5;
  display: flex;
  align-items: baseline;
  font-size: clamp(56px, 10vw, 180px);
  line-height: 0.9;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: -0.02em;
  white-space: nowrap;
  overflow: hidden;
}

.hero-cursor {
  display: inline-block;
  margin-left: 10px;
  animation: hero-blink 1s steps(1) infinite;
}

@keyframes hero-blink {
  50% { opacity: 0; }
}

/* ---------- SECTION 1: STAGE VISUAL ---------- */
.stage-section {
  display: grid;
  grid-template-columns: 38% 62%;
}

.stage-sticky-wrap {
  position: relative;
}

.stage-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  background: var(--blue);
  display: flex;
  align-items: flex-start;
  padding: 40px;
}

.stage-sticky h1 {
  font-size: clamp(300px, 10vw, var(--big));
  line-height: 220px;
  text-transform: uppercase;
  transform: rotate(-90deg);
  margin-top: 240px;
  letter-spacing: -30px;
}

.stage-grid {
  display: grid;
  grid-template-columns: repeat(3, 380px);
  justify-content: start;
}

.stage-cell {
  position: relative;
  width: 380px;
  height: 380px;
  flex: none;
  overflow: hidden;
  border: 1px solid var(--black);
  background: linear-gradient(135deg, #1a1a2e, #2a2a4e);
}

.stage-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stage-cell .thumb-fill {
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 30% 30%, #ffcf4d 0%, transparent 35%),
    linear-gradient(160deg, #101020, #2c2c55 60%, #161628);
}

.stage-cell::after {
  content: attr(data-label);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.03em;
  background: rgba(10, 10, 10, 0.85);
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  text-align: center;
  padding: 12px;
}

.stage-cell:hover::after,
.stage-cell:active::after,
.stage-cell.is-active::after {
  opacity: 1;
  transform: scale(1);
}

/* ---------- SECTION 2: DESIGN ---------- */
.design-section {
  display: grid;
  grid-template-columns: 32% 68%;
}

.design-sticky-wrap {
  position: relative;
}

.design-sticky {
  position: sticky;
  transform: rotate(-90deg);
  top: 0;
  height: 150vh;
  display: flex;
  align-items: center;
  padding: 40px;
}

.design-sticky h1 {
  font-size: clamp(250px, 8vw, var(--big));
  line-height: 0.85;
  text-transform: uppercase;
  letter-spacing: -30px;
}

.design-content {
  padding: 60px 60px 60px 0;
}

.design-content section {
  margin-bottom: 90px;
}

.headline-block h2 {
  line-height: .95;
  text-transform: uppercase;
}

.headline-block .passional {
  background: linear-gradient(90deg, var(--blue), var(--teal));
  font-weight: lighter;
  font-size: 100px;
  letter-spacing: 30px;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.headline-block .years {
  color: #6be36b;
  font-size: 150px;
}

.headline-block .basedon {
  color: var(--pink);
  font-size: 100px;
  letter-spacing: -10px;
}

.thumb-row {
  display: grid;
  gap: 14px;
  margin-top: 10px;
  width: 100%;
  height: 676px;
}

.thumb-row .thumb {
  background-image: url("https://owniedesigns.b-cdn.net/SWORD.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.body-copy {
  font-weight: lighter;
  font-size: var(--body);
  letter-spacing: -.8px;
  line-height: 1.2;
  max-width: 640px;
  margin-top: 32px;
  color: #d9d9d6;
}

.body-copy p + p {
  margin-top: 50px;
}

.eyebrow {
  font-size: var(--head);
  font-weight: 500;
  letter-spacing: -.8px;
  text-transform: uppercase;
  color: var(--white);
  margin-top: 1px;
}

.full-image {
  width: 100%;
  aspect-ratio: 16/9;
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.full-image.hyper {
  background-image: url("https://owniedesigns.b-cdn.net/hyper.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.full-image.hyper h2 {
  font-size: clamp(60px, 10vw, 180px);
  letter-spacing: 0.05em;
  color: var(--white);
  mix-blend-mode: screen;
}

.tofuya-block {
  color: var(--black);
  padding: 50px;
  margin-top: 40px;
}

.tofuya-block video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tofuya-block h2 {
  font-size: clamp(40px, 6vw, 90px);
  line-height: 0.9;
  text-transform: uppercase;
}

.tofuya-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 30px;
}

.tofuya-row .poster {
  aspect-ratio: 3/4;
  background: linear-gradient(160deg, var(--pink), #c23e70);
  border: 2px solid var(--white);
  display: flex;
  align-items: flex-end;
  padding: 10px;
  font-size: 12px;
  font-weight: 700;
  z-index: 1;
}

.poster:nth-child(1) { background-image: url("https://owniedesigns.b-cdn.net/poster-tofuya-full-ScaleArtboard-1_1.png"); background-size: cover; background-position: center; }
.poster:nth-child(2) { background-image: url("https://owniedesigns.b-cdn.net/poster-tofuya-full-ScaleArtboard-1_2.png"); background-size: cover; background-position: center; }
.poster:nth-child(3) { background-image: url("https://owniedesigns.b-cdn.net/poster-tofuya-full-ScaleArtboard-1_3.png"); background-size: cover; background-position: center; }
.poster:nth-child(4) { background-image: url("https://owniedesigns.b-cdn.net/poster-tofuya-full-ScaleArtboard-1_4.png"); background-size: cover; background-position: center; }

.event-photo {
  width: 100%;
  aspect-ratio: 21/9;
  margin-top: 40px;
  background-image: url("https://owniedesigns.b-cdn.net/BKKDW.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.thai-heading {
  text-align: center;
  margin-top: 60px;
}

.thai-heading .th {
  font-size: clamp(30px, 5vw, 64px);
  line-height: 1.5;
  font-weight: 400;
}

.thai-heading .BOWKYVisual {
  width: 100%;
  max-width: 1200px;
  height: auto;
  aspect-ratio: 2/1;
  margin: 0 auto 20px;
}

.thai-heading .BOWKYVisual:nth-child(1) { background-image: url("https://owniedesigns.b-cdn.net/BOWKY_TYPO.png"); background-size: contain; background-position: center; background-repeat: no-repeat; }
.thai-heading .BOWKYVisual:nth-child(2) { background-image: url("https://owniedesigns.b-cdn.net/BOWKY_TYPO_WB.png"); background-size: contain; background-position: center; background-repeat: no-repeat; }

/* ---------- SECTION 3: EXHIBITION GROUP ---------- */
.exhibitiontext {
  font-weight: lighter;
  font-size: var(--body);
  letter-spacing: -.8px;
  line-height: 1.5em;
  max-width: 640px;
  margin-top: 50px;
  margin-left: auto;
  color: #d9d9d6;
}

.exhibitiontext p {
  margin-top: 50px;
}

.exhibition-section {
  padding: 100px 60px;
}

.exhibition-section h1 {
  font-size: clamp(48px, 9vw, var(--big));
  line-height: 0.85;
  text-transform: uppercase;
}

.exhibition-visual {
  width: 100%;
  aspect-ratio: 16/9;
  margin-top: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #111;
  padding: 60px;
}

.exhibition-visual .frame {
  width: 60%;
  aspect-ratio: 1/1;
}

.exhibition-visual video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.exhibition-photo video {
  width: 100%;
  aspect-ratio: 16/9;
  margin-top: 60px;
  background: linear-gradient(90deg, rgb(3, 17, 71), transparent 40%), linear-gradient(160deg, #1c1c1c, #0a0a0a);
  position: relative;
}

.exhibition-photo::before {
  content: "";
  position: absolute;
  left: 8%;
  top: 10%;
  bottom: 10%;
  width: 22%;
  opacity: 0.85;
}

/* ---------- FOOTER / CAROUSEL ---------- */
.carousel {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #111;
  margin-top: 1px;
}

.carousel-track {
  display: flex;
  width: 1200%;
  height: 100%;
  transition: transform 0.8s ease;
}

.carousel-slide {
  flex: 0 0 8.333333%;
  width: 8.333333%;
  height: 100%;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-slide:nth-child(1) { background-image: url(https://owniedesigns.b-cdn.net/ADJUSTMENT/ADJUSTMENT_POST_page-0001.jpg); background-size: cover; }
.carousel-slide:nth-child(2) { background-image: url(https://owniedesigns.b-cdn.net/ADJUSTMENT/ADJUSTMENT_POST_page-0002.jpg); background-size: cover; }
.carousel-slide:nth-child(3) { background-image: url(https://owniedesigns.b-cdn.net/ADJUSTMENT/ADJUSTMENT_POST_page-0003.jpg); background-size: cover; }
.carousel-slide:nth-child(4) { background-image: url(https://owniedesigns.b-cdn.net/ADJUSTMENT/ADJUSTMENT_POST_page-0004.jpg); background-size: cover; }
.carousel-slide:nth-child(5) { background-image: url(https://owniedesigns.b-cdn.net/ADJUSTMENT/ADJUSTMENT_POST_page-0005.jpg); background-size: cover; }
.carousel-slide:nth-child(6) { background-image: url(https://owniedesigns.b-cdn.net/ADJUSTMENT/ADJUSTMENT_POST_page-0006.jpg); background-size: cover; }
.carousel-slide:nth-child(7) { background-image: url(https://owniedesigns.b-cdn.net/ADJUSTMENT/ADJUSTMENT_POST_page-0007.jpg); background-size: cover; }
.carousel-slide:nth-child(8) { background-image: url(https://owniedesigns.b-cdn.net/ADJUSTMENT/ADJUSTMENT_POST_page-0008.jpg); background-size: cover; }
.carousel-slide:nth-child(9) { background-image: url(https://owniedesigns.b-cdn.net/ADJUSTMENT/ADJUSTMENT_POST_page-0009.jpg); background-size: cover; }
.carousel-slide:nth-child(10) { background-image: url(https://owniedesigns.b-cdn.net/ADJUSTMENT/ADJUSTMENT_POST_page-00010.jpg); background-size: cover; }
.carousel-slide:nth-child(11) { background-image: url(https://owniedesigns.b-cdn.net/ADJUSTMENT/ADJUSTMENT_POST_page-00011.jpg); background-size: cover; }
.carousel-slide:nth-child(12) { background-image: url(https://owniedesigns.b-cdn.net/ADJUSTMENT/ADJUSTMENT_POST_page-00012.jpg); background-size: cover; }

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  color: var(--white);
  border: 1px solid var(--white);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-btn.prev { left: 20px; }
.carousel-btn.next { right: 20px; }

.carousel-dots {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.carousel-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
}

.carousel-dots span.active { background: var(--white); }

.adjustment-footer {
  padding: 60px 0 40px;
  text-align: center;
}

.adjustment-footer h3 {
  font-size: clamp(24px, 4vw, 48px);
  letter-spacing: 0.15em;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
}

/* ========================================
   VIDEO OVERLAY & TYPING
======================================== */
.video-overlay {
  position: fixed;
  inset: 0;
  z-index: 1;
  background: linear-gradient(rgba(255, 0, 110, 0.38), rgba(255, 0, 110, 0.38)), rgba(0, 0, 0, 0.18);
  pointer-events: none;
}

.video-overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.15), transparent 35%, rgba(0, 0, 0, 0.35));
}

.typing-wrapper {
  position: absolute;
  left: 40px;
  right: 5px;
  bottom: 40px;
  width: auto;
  overflow: visible;
  white-space: nowrap;
  color: var(--white);
  text-align: right;
  z-index: 6;
  pointer-events: none;
}

.typing {
  display: inline-block;
  font-size: clamp(56px, 10vw, 180px);
  line-height: 0.9;
  font-weight: 500;
  letter-spacing: -0.07em;
  text-transform: uppercase;
  color: var(--white);
  text-align: right;
  white-space: nowrap;
}

.cursor {
  display: inline-block;
  width: 5px;
  height: 0.8em;
  margin-left: -20px;
  background: var(--white);
  vertical-align: baseline;
  animation: blink 0.7s infinite;
}

@keyframes blink {
  0%, 45% { opacity: 1; }
  46%, 100% { opacity: 0; }
}

.small-label {
  position: absolute;
  left: 2vw;
  bottom: 2vh;
  color: white;
  font-size: 11px;
  letter-spacing: 0.12em;
  opacity: 0.8;
}

/* ---------- OTHER PAGES (Contact / News) ---------- */
body.contact-page,
body.news-page {
  background: var(--white);
  color: var(--black);
}

body.contact-page .topbar,
body.news-page .topbar {
  background: var(--white);
  border-bottom: 1px solid var(--black);
  font-style: normal;
  color: var(--black);
}

body.news-page {
  border: 12px solid var(--blue);
}

.contact-grid {
  display: grid;
  grid-template-columns: 45% 55%;
  min-height: calc(100vh - 61px);
}

.contact-photo-col {
  position: relative;
  border-right: 1px solid var(--black);
  overflow: hidden;
  background: var(--white);
}

.contact-photo-col img {
  width: 200%;
  max-width: 200%;
  max-height: 1000px;
  height: auto;
  object-fit: cover;
  filter: contrast(10%) brightness(190%);
}

.contact-info-col {
  display: flex;
  flex-direction: column;
  background-color: var(--white);
}

.contact-info-upper {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 50px;
  padding: 50px 60px;
  letter-spacing: -1.5px;
}

.contact-info-upper p {
  font-weight: lighter;
  font-size: 30px;
  line-height: 1.4;
  max-width: 640px;
  color: #0a0a0a;
}

.contact-info-upper a,
.contact-info-lower a {
  color: #d230ba;
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 400;
  letter-spacing: -1.5px;
}

.contact-info-lower {
  position: relative;
  border-top: 1px solid var(--black);
  padding: 36px 60px;
  min-height: 150px;
  font-weight: lighter;
  font-size: 20px;
  color: #0a0a0a;
  letter-spacing: -1.5px;
}

.contact-info-lower .project-line {
  max-width: 640px;
}

.contact-info-lower .address-line {
  position: absolute;
  right: 60px;
  bottom: 30px;
  text-align: right;
  line-height: 1.6;
}

.news-list {
  border-top: 1px solid var(--black);
}

.news-row {
  background-color: var(--white);
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  align-items: center;
  padding: 22px 40px;
  border-bottom: 1px solid var(--black);
  font-weight: lighter;
  font-size: 40px;
  letter-spacing: -2.8px;
  color: #0a0a0a;
}

.news-row .date { text-align: left; }
.news-row .title { text-align: left; text-transform: uppercase; }
.news-row .location { text-align: right; }

/* ---------- SCROLL FADE-IN ---------- */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.9s ease, transform 0.9s ease;
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .carousel-track { transition: none; }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ==========================================================================
   RESPONSIVE (MOBILE BREAKPOINTS)
   ========================================================================== */
@media (max-width: 780px) {
  /* ---------- TOPBAR / NAV STRUCTURE ---------- */
  .topbar {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 16px 20px !important;
  }

  .nav-right-wrapper {
    display: flex !important;
    align-items: center !important;
    gap: 16px !important;
  }

  /* แสดงปุ่ม Hamburger */
  .nav-toggle {
    display: flex !important;
    order: 1 !important;
    z-index: 1002 !important;
  }

  /* ภาษา EN / KR อยู่ขวาสุดเสมอ */
  .lang {
    order: 2 !important;
    font-size: 16px !important;
  }

  /* กำหนดสีปุ่มตามสีพื้นหลังของหน้า */
  body.contact-page .nav-toggle,
  body.news-page .nav-toggle {
    color: var(--black) !important;
  }

  .hero-topbar .nav-toggle {
    color: var(--white) !important;
  }

  /* ซ่อนเฉพาะ MENU เข้าไปในแถบสไลด์ */
  .right {
    position: fixed !important;
    top: 0 !important;
    right: -100% !important;
    width: 40% !important;
    max-width: 320px !important;
    height: 100vh !important;
    background: rgba(10, 10, 10, 0.5) !important;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: center !important;
    padding: 60px 32px !important;
    transition: right 0.35s ease !important;
    z-index: 1000 !important;
  }

  .right.active {
    right: 0 !important;
  }

  .MENU {
    flex-direction: column !important;
    gap: 24px !important;
  }

  body.contact-page .right,
  body.news-page .right {
    background: #ffffff !important;
    color: var(--black) !important;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.15) !important;
  }

  /* ---------- HERO & TYPING ---------- */
  .hero {
    padding: 0 4vw 10vh;
  }

  .hero-title {
    left: 20px;
    right: 20px;
    bottom: 24px;
  }

  .typing-wrapper {
    left: 20px;
    right: 0;
    bottom: 24px;
  }

  .typing {
    font-size: 18vw;
  }

  .small-label {
    left: 4vw;
  }

  /* ---------- STAGE SECTION ---------- */
  .stage-section {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .stage-sticky-wrap {
    position: relative;
    width: 100%;
  }

  .stage-sticky {
    position: relative;
    height: 340px;
    padding: 0;
    background: var(--blue);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    overflow: hidden;
  }

  .stage-sticky h1 {
    transform: rotate(-90deg) translateY(-40px);
    white-space: nowrap;
    margin-left: -50px;
    margin-top: -20px;
    letter-spacing: -10px;
    line-height: 0.8;
    font-size: clamp(110px, 30vw, 180px);
  }

  .stage-grid {
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
  }

  .stage-cell {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
  }

  .stage-cell::after {
    opacity: 0;
    transform: scale(0.92);
    background: rgba(10, 10, 10, 0.88);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    font-size: 13px;
    text-align: center;
    line-height: 1.3;
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .stage-cell:hover::after,
  .stage-cell:active::after,
  .stage-cell.is-active::after {
    opacity: 1;
    transform: scale(1);
  }

  /* ---------- DESIGN SECTION ---------- */
  .design-section {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .design-sticky-wrap {
    position: relative;
    width: 100%;
  }

  .design-sticky {
    position: relative;
    height: 260px;
    padding: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
    transform: none;
  }

  .design-sticky h1 {
    transform: rotate(-90deg) translateY(-15px);
    white-space: nowrap;
    margin-left: -20px;
    margin-top: 0;
    letter-spacing: -5px;
    line-height: 0.9;
    font-size: clamp(64px, 16vw, 105px);
  }

  .design-content {
    padding: 20px;
    width: 100%;
  }

  .headline-block .passional {
    font-size: clamp(40px, 12vw, 76px);
    letter-spacing: 2px;
  }

  .headline-block .years {
    font-size: clamp(50px, 16vw, 96px);
  }

  .headline-block .basedon {
    font-size: clamp(34px, 10vw, 64px);
    letter-spacing: -2px;
  }

  img, video {
    max-width: 100% !important;
    height: auto;
  }

  .thumb-row {
    height: auto;
    width: 100%;
    max-width: 100%;
    aspect-ratio: 16 / 9;
    background-size: contain;
  }

  .full-image {
    width: 100%;
    max-width: 100%;
    margin-top: 24px;
    background-size: contain;
  }

  .tofuya-block {
    padding: 30px 0;
    width: 100%;
  }

  .tofuya-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    width: 100%;
    margin-top: 24px;
  }

  .tofuya-row .poster {
    width: 100%;
    aspect-ratio: 3 / 4;
  }

  .event-photo {
    width: 100%;
    max-width: 100%;
    aspect-ratio: 16 / 9;
    margin-top: 24px;
    background-size: contain;
  }

  .thai-heading {
    margin-top: 30px;
  }

  .thai-heading .BOWKYVisual {
    width: 100%;
    max-width: 100%;
    height: auto;
    aspect-ratio: 2 / 1;
    margin-bottom: 16px;
    background-size: contain;
  }

  /* ---------- EXHIBITION SECTION ---------- */
  .exhibition-section {
    padding: 40px 20px;
    width: 100%;
  }

  .exhibition-section h1 {
    font-size: clamp(40px, 12vw, 76px);
    line-height: 0.95;
  }

  .exhibition-visual {
    margin-top: 30px;
    padding: 16px;
    aspect-ratio: 16 / 9;
    width: 100%;
  }

  .exhibitiontext {
    margin-top: 30px;
    width: 100%;
    font-size: 16px;
  }

  .exhibitiontext p {
    margin-top: 20px;
  }

  .exhibition-visual video,
  .exhibition-photo video {
    width: 100%;
    max-width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: contain;
  }

  /* ---------- CAROUSEL ---------- */
  .carousel {
    width: 100%;
    aspect-ratio: 4 / 3;
  }

  .carousel-btn {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }

  .carousel-btn.prev { left: 10px; }
  .carousel-btn.next { right: 10px; }

  /* ---------- CONTACT & NEWS PAGE (MOBILE) ---------- */
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-photo-col {
    border-right: none;
    border-bottom: 1px solid var(--black);
    aspect-ratio: 4/3;
  }

  .contact-info-upper,
  .contact-info-lower {
    padding: 30px 24px;
  }

  .contact-info-lower .address-line {
    position: static;
    text-align: left;
    margin-top: 24px;
  }

  body.news-page {
    border-width: 6px;
  }

  .news-row {
    grid-template-columns: 1fr;
    gap: 6px;
    font-size: 20px;
    padding: 16px 20px;
    letter-spacing: .3px;
  }

  .news-row .title,
  .news-row .location {
    text-align: left;
  }
}