﻿/* ── Base ── */
    * { margin: 0; padding: 0; box-sizing: border-box; }
    body {
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
      background-color: #FFF9F0;
      color: #2D2A26;
      -webkit-font-smoothing: antialiased;
      padding-top: 72px;
    }
    a { text-decoration: none; color: inherit; }
    img { max-width: 100%; display: block; }

    /* ── Animations ── */
    @keyframes fadeInUp {
      from { opacity: 0; transform: translateY(30px); }
      to { opacity: 1; transform: translateY(0); }
    }
    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }
    @keyframes float1 {
      0%, 100% { transform: translateY(0); opacity: 0.4; }
      50% { transform: translateY(-30px); opacity: 0.8; }
    }
    @keyframes float2 {
      0%, 100% { transform: translateY(0) translateX(0); opacity: 0.3; }
      50% { transform: translateY(20px) translateX(-10px); opacity: 0.7; }
    }
    @keyframes float3 {
      0%, 100% { transform: translateY(0); opacity: 0.3; }
      50% { transform: translateY(-20px); opacity: 0.6; }
    }
    @keyframes slideIn {
      from { opacity: 0; transform: scale(1.1); }
      to { opacity: 1; transform: scale(1); }
    }
    @keyframes pulse {
      0%, 100% { transform: scale(1); }
      50% { transform: scale(1.05); }
    }
    @keyframes lanternSway {
      0%, 100% { transform: rotate(-5deg) translate3d(0, 0, 0); }
      24% { transform: rotate(2.5deg) translate3d(1px, -2px, 0); }
      52% { transform: rotate(-2deg) translate3d(-1px, 1px, 0); }
      76% { transform: rotate(3deg) translate3d(1px, 2px, 0); }
    }
    @keyframes lanternStringFloat {
      0%, 100% { opacity: 0.58; transform: translateX(-50%) scaleY(0.94); }
      50% { opacity: 0.9; transform: translateX(-50%) scaleY(1.08); }
    }
    @keyframes lanternWarmGlow {
      0%, 100% { filter: drop-shadow(0 12px 18px rgba(239,126,66,0.16)); }
      50% { filter: drop-shadow(0 16px 26px rgba(239,126,66,0.34)); }
    }

    .animate-fadeInUp {
      opacity: 0;
      animation: fadeInUp 0.8s ease forwards;
    }
    .animate-fadeIn {
      opacity: 0;
      animation: fadeIn 0.8s ease forwards;
    }
    .delay-1 { animation-delay: 0.2s; }
    .delay-2 { animation-delay: 0.4s; }
    .delay-3 { animation-delay: 0.5s; }
    .delay-4 { animation-delay: 0.6s; }
    .delay-5 { animation-delay: 0.7s; }
    .delay-6 { animation-delay: 0.9s; }
    .delay-7 { animation-delay: 1.0s; }

    /* ── Scroll reveal ── */
    .reveal {
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }
    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* ── Navbar ── */
    .navbar {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 50;
      height: 72px;
      display: flex;
      align-items: center;
      background: rgba(255,249,240,0.6);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      transition: all 0.3s ease;
    }
    .navbar.scrolled {
      background: rgba(255,249,240,0.9);
      box-shadow: 0 1px 12px rgba(0,0,0,0.06);
    }
    .nav-container {
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 16px;
      display: grid;
      grid-template-columns: auto 1fr auto;
      align-items: center;
      gap: 24px;
    }
    .nav-logo img {
      height: 40px;
      width: auto;
      transition: transform 0.3s ease;
    }
    .nav-logo:hover img { transform: scale(1.1); }
    .nav-links {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 32px;
      list-style: none;
    }
    .nav-links a {
      font-size: 15px;
      font-weight: 500;
      color: #5C554F;
      transition: color 0.2s ease;
      position: relative;
    }
    .nav-links a:hover,
    .nav-links a.active { color: #9B59B6; }
    .nav-links a.active::after {
      content: '';
      position: absolute;
      bottom: -4px;
      left: 0;
      right: 0;
      height: 2px;
      background: #9B59B6;
      border-radius: 1px;
    }
    .nav-actions {
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .nav-lang-btn {
      display: flex;
      align-items: center;
      gap: 6px;
      padding: 6px 12px;
      border-radius: 9999px;
      font-size: 14px;
      font-weight: 500;
      color: #5C554F;
      background: transparent;
      border: none;
      cursor: pointer;
      transition: all 0.2s ease;
    }
    .nav-lang-btn:hover {
      color: #2D2A26;
      background: rgba(255,255,255,0.6);
    }
    .nav-login-btn {
      display: inline-flex;
      align-items: center;
      padding: 8px 20px;
      border-radius: 9999px;
      font-size: 14px;
      font-weight: 500;
      color: #fff;
      background: linear-gradient(135deg, #9B59B6 0%, #FF6B9D 100%);
      transition: all 0.2s ease;
    }
    .nav-login-btn:hover {
      transform: translateY(-1px);
      box-shadow: 0 4px 12px rgba(155,89,182,0.3);
    }

    /* ── Mobile bottom nav ── */
    .mobile-bottom-nav {
      display: none;
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      z-index: 50;
      background: rgba(255,255,255,0.9);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border-top: 1px solid rgba(231,229,228,0.5);
    }
    .mobile-bottom-nav .nav-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      height: 64px;
    }
    .mobile-bottom-nav .nav-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 2px;
      text-decoration: none;
    }
    .mobile-bottom-nav .nav-item.center {
      position: relative;
      top: -16px;
    }
    .mobile-bottom-nav .nav-item.center .icon-circle {
      width: 56px;
      height: 56px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(135deg, #FF6B9D 0%, #9B59B6 100%);
      box-shadow: 0 4px 14px rgba(155,89,182,0.3);
    }
    .mobile-bottom-nav .nav-item:not(.center) .icon-wrap {
      width: 24px;
      height: 24px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .mobile-bottom-nav .nav-item .label {
      font-size: 10px;
      font-weight: 500;
      color: #a8a29e;
      transition: color 0.2s ease;
    }
    .mobile-bottom-nav .nav-item.active .label {
      color: #9B59B6;
      font-weight: 600;
    }
    .mobile-bottom-nav .nav-item.active .nav-icon {
      stroke: #9B59B6;
      stroke-width: 2.5;
    }
    .mobile-bottom-nav .nav-item .nav-icon {
      stroke: #a8a29e;
      stroke-width: 1.5;
      transition: stroke 0.2s ease;
    }
    .mobile-bottom-nav .nav-item.active .nav-icon {
      stroke: #9B59B6;
    }
    .mobile-bottom-nav .nav-indicator {
      position: absolute;
      top: -2px;
      left: 50%;
      transform: translateX(-50%);
      width: 4px;
      height: 4px;
      border-radius: 50%;
      background: #9B59B6;
    }

    /* ── Hero ── */
    .hero {
      position: relative;
      width: 100%;
      min-height: calc(100dvh - 72px);
      overflow: hidden;
      margin-top: -72px;
      padding: 132px 20px 56px;
      background:
        linear-gradient(118deg, rgba(255,248,236,0.98) 0%, rgba(255,248,236,0.96) 39%, rgba(255,229,212,0.72) 100%),
        linear-gradient(180deg, #FFF9F0 0%, #F8F0E6 100%);
    }
    .hero::before {
      content: '';
      position: absolute;
      inset: 72px 0 auto;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(245,169,108,0.55), transparent);
      pointer-events: none;
    }
    .hero::after {
      content: '';
      position: absolute;
      right: -12vw;
      top: 72px;
      width: 48vw;
      height: calc(100% - 72px);
      background: linear-gradient(135deg, rgba(255,214,186,0.34), rgba(233,225,255,0.4));
      clip-path: polygon(18% 0, 100% 0, 100% 100%, 0 100%, 32% 46%);
      pointer-events: none;
    }
    .hero-shell {
      position: relative;
      z-index: 1;
      width: min(1460px, 100%);
      min-height: 600px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: minmax(0, 0.86fr) minmax(620px, 1.16fr);
      align-items: center;
      gap: clamp(28px, 4.4vw, 64px);
    }

    .hero-content {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      justify-content: center;
      text-align: left;
      max-width: 610px;
    }
    .hero-kicker {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 20px;
      padding: 9px 14px;
      border-radius: 999px;
      color: #8a4f24;
      background: rgba(255,255,255,0.78);
      border: 1px solid rgba(245,169,108,0.26);
      box-shadow: 0 14px 36px rgba(115,81,48,0.08);
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0.08em;
    }
    .hero-kicker-mark {
      width: 32px;
      height: 32px;
      display: inline-grid;
      place-items: center;
      flex: 0 0 auto;
      border-radius: 999px;
      color: #EF7E42;
      background: #fff7ef;
      border: 1px solid rgba(239,126,66,0.14);
      box-shadow: inset 0 0 0 6px rgba(239,126,66,0.08), 0 8px 18px rgba(239,126,66,0.12);
    }
    .hero-kicker-mark svg { width: 18px; height: 22px; }

    .hero-title {
      display: grid;
      gap: 8px;
      margin-bottom: 18px;
      color: #2D2A26;
      letter-spacing: 0;
    }
    .hero-title-main {
      position: relative;
      display: inline-flex;
      align-items: flex-start;
      width: max-content;
      max-width: 100%;
      font-size: clamp(56px, 8vw, 116px);
      line-height: 0.92;
      font-weight: 900;
      letter-spacing: 0;
      color: #2D2A26;
    }
    .hero-title-lantern {
      position: absolute;
      right: -42px;
      top: 0.12em;
      display: inline-flex;
      color: #EF7E42;
      transform-origin: 50% -18px;
      animation: lanternSway 5.6s ease-in-out infinite, lanternWarmGlow 4.6s ease-in-out infinite;
      will-change: transform, filter;
    }
    .hero-title-lantern::before {
      content: "";
      position: absolute;
      top: -22px;
      left: 50%;
      width: 1px;
      height: 26px;
      background: linear-gradient(to bottom, transparent, rgba(239,126,66,0.72));
      transform: translateX(-50%);
      transform-origin: top center;
      animation: lanternStringFloat 5.6s ease-in-out infinite;
    }
    .hero-title-lantern svg {
      width: clamp(24px, 3.4vw, 46px);
      height: auto;
    }
    .hero-title strong {
      display: block;
      max-width: min(100%, 760px);
      color: #EF7E42;
      font-size: clamp(20px, 2vw, 30px);
      line-height: 1.35;
      font-weight: 800;
      letter-spacing: 0;
    }
    .hero-subtitle-en {
      margin-bottom: 18px;
      color: #8B7E74;
      font-size: 14px;
      font-weight: 700;
      letter-spacing: 0.04em;
    }
    .hero-lead {
      max-width: 720px;
      margin-bottom: 24px;
      color: #5C554F;
      font-size: clamp(15px, 1.18vw, 17px);
      line-height: 1.78;
      font-weight: 500;
    }
    .hero-info-grid {
      width: 100%;
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 10px;
      margin-bottom: 28px;
    }
    .hero-info-grid > div {
      min-height: 82px;
      padding: 14px 16px;
      border-radius: 22px;
      background: rgba(255,255,255,0.72);
      border: 1px solid rgba(255,255,255,0.9);
      box-shadow: 0 16px 34px rgba(105,76,53,0.08);
    }
    .hero-info-head {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 9px;
    }
    .hero-info-icon {
      width: 26px;
      height: 26px;
      display: inline-grid;
      place-items: center;
      flex: 0 0 auto;
      border-radius: 9px;
      color: #EF7E42;
      background: #fff3e9;
      border: 1px solid rgba(239,126,66,0.14);
    }
    .hero-info-icon svg {
      width: 18px;
      height: 18px;
    }
    .hero-info-label {
      color: #9b8f86;
      font-size: 12px;
      font-weight: 700;
    }
    .hero-info-grid strong {
      display: block;
      color: #2D2A26;
      font-size: 15px;
      line-height: 1.35;
      font-weight: 800;
    }

    .hero-cta {
      display: flex;
      align-items: center;
      gap: 12px;
      flex-wrap: wrap;
      margin-bottom: 18px;
    }
    .btn-gradient-pink,
    .btn-gradient-blue {
      position: relative;
      display: inline-flex;
      align-items: center;
      gap: 12px;
      min-height: 66px;
      padding: 12px 16px 12px 18px;
      border-radius: 22px;
      color: #fff;
      font-weight: 800;
      font-size: 16px;
      overflow: hidden;
      transition: transform 0.26s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.26s ease, background 0.26s ease;
      will-change: transform;
      isolation: isolate;
    }
    .btn-gradient-pink::after,
    .btn-gradient-blue::after,
    .about-more::after {
      content: "";
      position: absolute;
      top: -55%;
      bottom: -55%;
      left: -70%;
      width: 46%;
      z-index: 0;
      pointer-events: none;
      opacity: 0;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.52), rgba(255,231,166,0.34), transparent);
      transform: skewX(-18deg) translateX(0);
      transition: transform 0.76s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.24s ease;
    }
    .btn-gradient-pink > *,
    .btn-gradient-blue > *,
    .about-more > * {
      position: relative;
      z-index: 1;
    }
    .btn-gradient-pink {
      min-width: 186px;
      background: linear-gradient(135deg, #F5A96C 0%, #EF7E42 100%);
      box-shadow: 0 18px 38px rgba(239,126,66,0.25);
    }
    .btn-gradient-blue {
      min-width: 176px;
      background: #2F7E83;
      box-shadow: 0 18px 38px rgba(47,126,131,0.18);
    }
    .btn-gradient-pink:hover,
    .btn-gradient-blue:hover {
      transform: translateY(-2px);
    }
    .btn-gradient-pink:hover { box-shadow: 0 22px 48px rgba(239,126,66,0.34); }
    .btn-gradient-blue:hover { box-shadow: 0 22px 48px rgba(47,126,131,0.26); }
    .btn-gradient-pink:hover::after,
    .btn-gradient-blue:hover::after,
    .about-more:hover::after {
      opacity: 1;
      transform: skewX(-18deg) translateX(420%);
    }
    .btn-gradient-pink:active,
    .btn-gradient-blue:active {
      transform: translateY(0) scale(0.98);
    }
    .btn-icon {
      width: 40px;
      height: 40px;
      border-radius: 14px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: rgba(255,255,255,0.2);
      box-shadow: inset 0 1px 0 rgba(255,255,255,0.24);
      flex: 0 0 auto;
    }
    .btn-copy {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      line-height: 1.12;
    }
    .btn-sub {
      margin-top: 5px;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.08em;
      opacity: 0.72;
    }
    .btn-arrow {
      margin-left: auto;
      opacity: 0.86;
      flex: 0 0 auto;
    }

    .countdown-wrap {
      display: inline-flex;
      align-items: center;
      gap: 14px;
      padding: 11px 14px;
      border-radius: 18px;
      background: rgba(255,255,255,0.68);
      border: 1px solid rgba(245,169,108,0.22);
      box-shadow: 0 14px 32px rgba(105,76,53,0.08);
    }
    .countdown-label {
      display: flex;
      align-items: center;
      gap: 7px;
      color: #7b6250;
      font-size: 13px;
      font-weight: 800;
      white-space: nowrap;
    }
    .countdown-units {
      display: flex;
      align-items: center;
      gap: 5px;
    }
    .countdown-unit {
      min-width: 34px;
      padding: 6px 8px;
      border-radius: 11px;
      text-align: center;
      background: #FFF2E7;
      border: 1px solid rgba(245,169,108,0.2);
    }
    .countdown-unit span {
      color: #2D2A26;
      font-weight: 900;
      font-size: 15px;
      font-variant-numeric: tabular-nums;
    }
    .count-label {
      font-size: 11px;
      color: #8B7E74;
      font-weight: 700;
      margin-left: 1px;
    }

    .hero-stage {
      position: relative;
      justify-self: end;
      align-self: center;
      padding: 15px;
      border-radius: 42px;
      background: linear-gradient(135deg, rgba(255,255,255,0.98), rgba(255,246,235,0.82));
      border: 1px solid rgba(255,255,255,0.92);
      box-shadow: 0 34px 78px rgba(88,61,42,0.18), 0 10px 36px rgba(239,126,66,0.12);
      isolation: isolate;
      transform: rotate(-2.6deg) translateZ(0);
      transform-origin: 52% 54%;
      transition: transform 0.48s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.48s ease, border-color 0.48s ease;
      will-change: transform;
    }
    .hero-stage::before {
      content: "";
      position: absolute;
      inset: -28px;
      z-index: -1;
      border-radius: 54px;
      background:
        radial-gradient(circle at 76% 16%, rgba(255,214,142,0.34), transparent 32%),
        radial-gradient(circle at 18% 84%, rgba(47,126,131,0.12), transparent 36%),
        radial-gradient(circle at 58% 50%, rgba(239,126,66,0.24), rgba(245,169,108,0.08) 44%, transparent 72%);
      opacity: 0.76;
      transform: scale(0.98);
      filter: blur(1px);
      transition: opacity 0.48s ease, transform 0.48s ease;
      pointer-events: none;
    }
    .hero-stage::after {
      content: "";
      position: absolute;
      inset: 20px -18px -22px 24px;
      z-index: -2;
      border-radius: 44px;
      border: 2px solid rgba(255,255,255,0.78);
      background: rgba(255,255,255,0.15);
      transform: rotate(2.2deg);
      box-shadow: 0 18px 46px rgba(105,76,53,0.12);
      pointer-events: none;
    }
    .hero-stage:hover {
      transform: rotate(-1.4deg) translateY(-8px) scale(1.01);
      border-color: rgba(245,169,108,0.52);
      box-shadow: 0 42px 94px rgba(88,61,42,0.24), 0 16px 48px rgba(239,126,66,0.16);
    }
    .hero-stage:hover::before {
      opacity: 1;
      transform: scale(1.03);
    }
    .hero-stage-frame {
      position: relative;
      overflow: hidden;
      border-radius: 31px;
      aspect-ratio: 7 / 4;
      background: #F7EBDD;
      border: 6px solid rgba(255,255,255,0.98);
      box-shadow: inset 0 0 0 1px rgba(255,255,255,0.7), 0 18px 40px rgba(74,48,29,0.16);
    }
    .hero-stage-frame img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.72s cubic-bezier(0.16, 1, 0.3, 1);
      will-change: transform;
    }
    .hero-stage:hover .hero-stage-frame img { transform: scale(1.035); }
    .hero-stage-frame::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 1;
      background:
        linear-gradient(135deg, rgba(255,255,255,0.42), transparent 34%),
        linear-gradient(0deg, rgba(67,38,21,0.08), transparent 48%);
      pointer-events: none;
    }
    .hero-stage-frame::after {
      content: '';
      position: absolute;
      inset: auto 0 0;
      height: 30%;
      background: linear-gradient(180deg, transparent, rgba(255,249,240,0.55));
      pointer-events: none;
    }
    .hero-float-card {
      position: absolute;
      display: grid;
      gap: 3px;
      padding: 12px 14px;
      border-radius: 18px;
      color: #2D2A26;
      background: linear-gradient(135deg, rgba(255,255,255,0.92), rgba(255,248,240,0.8));
      border: 1px solid rgba(255,255,255,0.92);
      box-shadow: 0 18px 38px rgba(75,52,35,0.16);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      transition: transform 0.42s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.42s ease;
    }
    .hero-float-card::after {
      content: "";
      position: absolute;
      inset: 1px;
      border-radius: inherit;
      border: 1px solid rgba(255,255,255,0.52);
      pointer-events: none;
    }
    .hero-float-card span {
      color: #EF7E42;
      font-size: 12px;
      font-weight: 800;
    }
    .hero-float-label {
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }
    .hero-float-label svg {
      color: currentColor;
      flex: 0 0 auto;
    }
    .hero-float-card strong {
      color: #2D2A26;
      font-size: 14px;
      font-weight: 900;
      white-space: nowrap;
    }
    .hero-mini-row {
      display: flex;
      align-items: center;
      gap: 0;
      margin-top: 3px;
    }
    .hero-mini-avatar {
      width: 24px;
      height: 24px;
      border-radius: 999px;
      border: 2px solid rgba(255,255,255,0.92);
      background:
        radial-gradient(circle at 45% 34%, #fff7e8 0 12%, transparent 13%),
        linear-gradient(135deg, #f6a86b, #f05c73);
      box-shadow: 0 4px 9px rgba(75,52,35,0.12);
    }
    .hero-mini-avatar + .hero-mini-avatar {
      margin-left: -8px;
    }
    .hero-mini-avatar-2 {
      background:
        radial-gradient(circle at 45% 34%, #fff7e8 0 12%, transparent 13%),
        linear-gradient(135deg, #71cfc7, #2f7e83);
    }
    .hero-mini-avatar-3 {
      background:
        radial-gradient(circle at 45% 34%, #fff7e8 0 12%, transparent 13%),
        linear-gradient(135deg, #f4c45c, #ef7e42);
    }
    .hero-mini-row em {
      margin-left: 9px;
      color: #EF7E42;
      font-size: 12px;
      font-style: normal;
      font-weight: 900;
    }
    .hero-float-arrow {
      position: absolute;
      right: 14px;
      top: 50%;
      color: #EF7E42;
      transform: translateY(-50%);
      transition: transform 0.32s ease;
    }
    .hero-float-top {
      top: 34px;
      left: -30px;
      min-width: 164px;
      padding: 14px 16px;
      transform: rotate(2.6deg);
    }
    .hero-float-left {
      left: -52px;
      bottom: 30px;
      min-width: 206px;
      padding: 14px 46px 14px 16px;
      transform: rotate(2.6deg);
    }
    .hero-float-bottom {
      right: -6px;
      bottom: 24px;
      min-width: 218px;
      padding: 14px 46px 14px 16px;
      transform: rotate(2.6deg);
    }
    .hero-stage:hover .hero-float-top {
      transform: rotate(2.6deg) translate3d(-5px, -6px, 0);
      box-shadow: 0 20px 42px rgba(75,52,35,0.16);
    }
    .hero-stage:hover .hero-float-left {
      transform: rotate(2.6deg) translate3d(-4px, -6px, 0);
      box-shadow: 0 22px 44px rgba(75,52,35,0.17);
    }
    .hero-stage:hover .hero-float-bottom {
      transform: rotate(2.6deg) translate3d(4px, -6px, 0);
      box-shadow: 0 20px 42px rgba(75,52,35,0.16);
    }
    .hero-stage:hover .hero-float-arrow {
      transform: translate(3px, -50%);
    }

    .hero-bg,
    .hero-indicators,
    .particle,
    .hero-logo,
    .hero-tagline {
      display: none;
    }

    @media (max-width: 1180px) {
      .hero-shell {
        grid-template-columns: 1fr;
        gap: 34px;
      }
      .hero-content {
        max-width: 760px;
      }
      .hero-stage {
        width: min(880px, 100%);
        transform: rotate(-1.4deg) translateZ(0);
      }
    }

    @media (max-width: 767px) {
      .hero {
        min-height: auto;
        padding: 112px 16px 34px;
        margin-top: -72px;
      }
      .hero::after {
        display: none;
      }
      .hero-shell {
        min-height: 0;
        gap: 24px;
      }
      .hero-kicker {
        margin-bottom: 14px;
        font-size: 12px;
        letter-spacing: 0.04em;
      }
      .hero-title {
        margin-bottom: 14px;
      }
      .hero-title-main {
        font-size: clamp(42px, 11.5vw, 62px);
      }
      .hero-title-lantern {
        right: -24px;
        top: 0.2em;
      }
      .hero-title-lantern::before {
        top: -14px;
        height: 18px;
      }
      .hero-title strong {
        font-size: clamp(18px, 4.2vw, 24px);
        line-height: 1.42;
      }
      .hero-lead {
        margin-bottom: 18px;
        font-size: 15px;
        line-height: 1.76;
      }
      .hero-info-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 8px;
        margin-bottom: 16px;
      }
      .hero-info-grid > div {
        min-height: auto;
        padding: 11px 9px;
        border-radius: 18px;
      }
      .hero-info-head {
        gap: 6px;
        margin-bottom: 7px;
      }
      .hero-info-icon {
        width: 23px;
        height: 23px;
        border-radius: 8px;
      }
      .hero-info-icon svg {
        width: 15px;
        height: 15px;
      }
      .hero-info-label {
        font-size: 11px;
      }
      .hero-info-grid strong {
        font-size: 13px;
      }
      .hero-cta {
        width: 100%;
        gap: 10px;
        flex-wrap: nowrap;
        margin-bottom: 14px;
      }
      .btn-gradient-pink,
      .btn-gradient-blue {
        flex: 1 1 0;
        min-width: 0;
        min-height: 58px;
        gap: 8px;
        padding: 10px 12px;
        border-radius: 18px;
        font-size: 14px;
      }
      .btn-icon {
        width: 36px;
        height: 36px;
        border-radius: 12px;
      }
      .btn-arrow {
        width: 16px;
        height: 16px;
      }
      .countdown-wrap {
        width: 100%;
        display: grid;
        gap: 10px;
        border-radius: 18px;
      }
      .countdown-units {
        flex-wrap: wrap;
      }
      .hero-stage {
        padding: 8px;
        border-radius: 24px;
        transform: none;
      }
      .hero-stage::before {
        inset: -14px;
        border-radius: 30px;
      }
      .hero-stage::after {
        display: none;
      }
      .hero-stage-frame {
        border-radius: 18px;
        border-width: 3px;
      }
      .hero-float-card {
        position: static;
        margin-top: 8px;
        border-radius: 16px;
        min-width: 0;
        transform: none;
      }
      .hero-float-card strong {
        white-space: normal;
      }
      .hero-mini-row,
      .hero-float-arrow {
        display: none;
      }
      .hero-float-left,
      .hero-float-bottom {
        margin-top: 6px;
      }
    }

    @media (max-width: 360px) {
      .hero-info-grid {
        grid-template-columns: 1fr;
      }
      .hero-cta {
        flex-wrap: wrap;
      }
      .btn-gradient-pink,
      .btn-gradient-blue {
        flex-basis: 100%;
      }
    }

    /* ── Section common ── */
    .section { padding: 24px 16px; }
    .container {
      max-width: 1200px;
      margin: 0 auto;
    }
    .section-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 16px;
      padding: 0 8px;
    }
    .section-title-wrap {
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .section-title {
      font-size: 1.25rem;
      font-weight: 700;
      color: #2D2A26;
    }
    @media (min-width: 768px) { .section-title { font-size: 1.5rem; } }
    .section-more {
      display: inline-flex;
      align-items: center;
      gap: 4px;
      font-size: 0.875rem;
      color: #2f7e83;
      font-weight: 800;
      text-decoration: none;
      transition: color 0.2s ease, transform 0.2s ease;
    }
    .section-more:hover {
      color: #ef7e42;
      transform: translateX(2px);
    }
    .section-actions {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      flex: 0 0 auto;
    }

    /* Glass card */
    .glass-card {
      background: rgba(255,255,255,0.45);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border: 1px solid rgba(255,255,255,0.5);
      border-radius: 1rem;
      padding: 16px;
      transition: all 0.3s ease;
    }
    .glass-card:hover {
      box-shadow: 0 8px 30px rgba(0,0,0,0.08);
      transform: translateY(-2px);
    }

    /* ── Timeline ── */
    .timeline-desktop { display: none; }
    @media (min-width: 768px) { .timeline-desktop { display: block; } }
    .timeline-mobile { display: block; }
    @media (min-width: 768px) { .timeline-mobile { display: none; } }

    .timeline-numline {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 5%;
      margin-bottom: 8px;
    }
    .timeline-numline .line {
      position: absolute;
      top: 50%;
      left: 8%;
      right: 8%;
      height: 1px;
      background:
        repeating-linear-gradient(90deg, rgba(239,126,66,0.45) 0 8px, transparent 8px 16px),
        linear-gradient(90deg, rgba(239,126,66,0.38), rgba(47,126,131,0.24), rgba(245,169,108,0.32));
      transform: translateY(-50%);
      filter: drop-shadow(0 0 7px rgba(239,126,66,0.16));
    }
    .timeline-dot {
      position: relative;
      z-index: 10;
      width: 28px;
      height: 28px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      background: #fff7ee;
      border: 1px solid rgba(239,126,66,0.18);
      box-shadow: inset 0 0 0 7px rgba(245,169,108,0.12), 0 6px 18px rgba(105,76,53,0.08);
      transition: transform 0.28s ease, box-shadow 0.28s ease, background 0.28s ease;
    }
    .timeline-dot.current {
      background: var(--stage-color, #EF7E42);
      border-color: rgba(255,255,255,0.76);
      box-shadow: 0 0 0 7px rgba(239,126,66,0.16), 0 0 24px rgba(239,126,66,0.42), 0 8px 22px rgba(105,76,53,0.12);
    }
    .timeline-dot.future {
      color: #b9aa9b;
    }
    .timeline-dot span {
      font-size: 10px;
      font-weight: 700;
      color: #a36a3e;
    }
    .timeline-dot.current span {
      color: #fff;
    }
    .timeline-cards {
      display: flex;
      align-items: stretch;
      justify-content: space-between;
      gap: 12px;
    }
    .timeline-card {
      position: relative;
      background: rgba(255,255,255,0.58);
      backdrop-filter: blur(12px);
      border: 1px solid rgba(255,255,255,0.78);
      border-radius: 22px;
      padding: 18px 16px 16px;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      width: 15.5%;
      min-height: 188px;
      flex-shrink: 0;
      cursor: pointer;
      overflow: hidden;
      box-shadow: 0 12px 30px rgba(105,76,53,0.06);
      transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;
    }
    .timeline-card::before {
      content: "";
      position: absolute;
      top: 14px;
      left: 22px;
      right: 22px;
      height: 3px;
      border-radius: 999px;
      background: linear-gradient(90deg, transparent, color-mix(in srgb, var(--stage-color, #EF7E42) 64%, white), transparent);
      opacity: 0;
      transform: scaleX(0.42);
      transform-origin: center;
      transition: opacity 0.3s ease, transform 0.3s ease;
      pointer-events: none;
    }
    .timeline-card:hover {
      transform: translateY(-5px);
      border-color: color-mix(in srgb, var(--stage-color, #EF7E42) 34%, white);
      box-shadow: 0 18px 42px rgba(105,76,53,0.12);
    }
    .timeline-card:hover::before {
      opacity: 0.9;
      transform: scaleX(1);
    }
    .timeline-card.active {
      background: rgba(255,250,244,0.78);
      border-color: rgba(239,126,66,0.32);
      box-shadow: 0 0 0 1px rgba(239,126,66,0.18), 0 20px 42px rgba(239,126,66,0.12);
    }
    .timeline-icon {
      position: relative;
      z-index: 1;
      width: 56px;
      height: 56px;
      border-radius: 18px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 12px;
      color: #fff;
      background: linear-gradient(135deg, var(--stage-color, #EF7E42), color-mix(in srgb, var(--stage-color, #EF7E42) 68%, #FDE68A));
      box-shadow: 0 10px 24px color-mix(in srgb, var(--stage-color, #EF7E42) 22%, transparent);
      transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease, color 0.3s ease, background 0.3s ease, border-color 0.3s ease;
    }
    .timeline-card.future .timeline-icon {
      color: color-mix(in srgb, var(--stage-color, #EF7E42) 62%, #9d8f82);
      background: rgba(255,247,238,0.9);
      border: 1px solid rgba(239,126,66,0.12);
      box-shadow: inset 0 1px 0 rgba(255,255,255,0.8), 0 8px 20px rgba(105,76,53,0.06);
    }
    .timeline-card:hover .timeline-icon {
      transform: translateY(-2px) scale(1.03);
      color: #fff;
      background: linear-gradient(135deg, var(--stage-color, #EF7E42), color-mix(in srgb, var(--stage-color, #EF7E42) 72%, #FDE68A));
      border-color: transparent;
      box-shadow: 0 12px 28px color-mix(in srgb, var(--stage-color, #EF7E42) 24%, transparent);
    }
    .timeline-icon svg {
      width: 31px;
      height: 31px;
      color: currentColor;
    }
    .timeline-card-title {
      position: relative;
      z-index: 1;
      font-size: 0.875rem;
      font-weight: 700;
      color: #2D2A26;
      margin-bottom: 4px;
      transition: transform 0.3s ease;
    }
    .timeline-card-date {
      position: relative;
      z-index: 1;
      font-size: 0.75rem;
      color: #8C8279;
      line-height: 1.25;
      transition: opacity 0.3s ease, transform 0.3s ease;
    }
    .timeline-card-desc {
      position: relative;
      z-index: 1;
      max-height: 0;
      margin-top: 0;
      color: #9a5126;
      font-size: 11px;
      line-height: 1.45;
      font-weight: 700;
      opacity: 0;
      transform: translateY(-3px);
      transition: max-height 0.3s ease, opacity 0.3s ease, transform 0.3s ease, margin-top 0.3s ease;
    }
    .timeline-card.active:not(:hover) .timeline-card-desc {
      max-height: 40px;
      margin-top: 8px;
      opacity: 1;
      transform: translateY(0);
    }
    .timeline-card:hover .timeline-card-title {
      transform: translateY(-1px);
    }
    .timeline-card:hover .timeline-card-date {
      opacity: 0.34;
      transform: translateY(-2px);
    }
    .timeline-hover-detail {
      position: absolute;
      z-index: 2;
      left: 14px;
      right: 14px;
      bottom: 12px;
      display: grid;
      gap: 3px;
      padding: 10px 12px;
      border-radius: 15px;
      background: rgba(255, 251, 246, 0.96);
      border: 1px solid color-mix(in srgb, var(--stage-color, #EF7E42) 22%, white);
      box-shadow: 0 14px 30px rgba(105,76,53,0.12);
      opacity: 0;
      transform: translateY(10px) scale(0.98);
      pointer-events: none;
      transition: opacity 0.28s ease, transform 0.28s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .timeline-hover-detail::before {
      content: "";
      position: absolute;
      top: -5px;
      left: 50%;
      width: 10px;
      height: 10px;
      border-top: 1px solid color-mix(in srgb, var(--stage-color, #EF7E42) 22%, white);
      border-left: 1px solid color-mix(in srgb, var(--stage-color, #EF7E42) 22%, white);
      background: rgba(255, 251, 246, 0.96);
      transform: translateX(-50%) rotate(45deg);
    }
    .timeline-hover-detail span {
      color: var(--stage-color, #EF7E42);
      font-size: 10px;
      font-weight: 800;
      letter-spacing: 0.04em;
    }
    .timeline-hover-detail strong {
      color: #2D2A26;
      font-size: 12px;
      line-height: 1.35;
    }
    .timeline-hover-detail em {
      color: #8C8279;
      font-size: 10px;
      font-style: normal;
      line-height: 1.2;
    }
    .timeline-card:hover .timeline-hover-detail,
    .timeline-card:focus-within .timeline-hover-detail {
      opacity: 1;
      transform: translateY(0) scale(1);
    }

    /* Mobile timeline */
    .timeline-row { margin-bottom: 16px; }
    .timeline-row .timeline-numline {
      padding: 0 12px;
      margin-bottom: 4px;
    }
    .timeline-row .timeline-numline .line {
      left: 12%;
      right: 12%;
    }
    .timeline-row .timeline-dot {
      width: 20px;
      height: 20px;
    }
    .timeline-row .timeline-dot span { font-size: 9px; }
    .timeline-row-cards {
      display: flex;
      align-items: stretch;
      justify-content: space-between;
      gap: 8px;
    }
    .timeline-row-cards .timeline-card {
      flex: 1;
      width: auto;
      min-height: 118px;
      padding: 12px;
      border-radius: 0.75rem;
    }
    .timeline-row-cards .timeline-icon {
      width: 40px;
      height: 40px;
      border-radius: 0.75rem;
      margin-bottom: 8px;
    }
    .timeline-row-cards .timeline-icon svg { width: 20px; height: 20px; }
    .timeline-row-cards .timeline-card-title { font-size: 0.75rem; }
    .timeline-row-cards .timeline-card-date { font-size: 10px; }
    .timeline-row-cards .timeline-card-desc {
      display: none;
    }

    /* ── About ── */
    .about-panel {
      position: relative;
      display: grid;
      grid-template-columns: minmax(260px, 0.62fr) minmax(0, 1.38fr);
      align-items: stretch;
      gap: clamp(24px, 4.6vw, 68px);
      padding: clamp(22px, 3vw, 42px);
      border-radius: clamp(26px, 3vw, 40px);
      overflow: hidden;
      background:
        radial-gradient(circle at 12% 16%, rgba(255, 205, 142, 0.34), transparent 34%),
        linear-gradient(135deg, rgba(255,255,255,0.92) 0%, rgba(255,250,244,0.88) 54%, rgba(255,238,230,0.8) 100%);
      border: 1px solid rgba(255,255,255,0.86);
      box-shadow: 0 28px 70px rgba(117, 82, 52, 0.1);
    }
    .about-panel::before {
      content: "";
      position: absolute;
      inset: auto -12% -38% 34%;
      height: 72%;
      border-radius: 999px;
      background: rgba(239, 126, 66, 0.08);
      transform: rotate(-10deg);
      pointer-events: none;
    }
    .about-copy {
      position: relative;
      z-index: 1;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      justify-self: center;
      width: 100%;
      min-height: clamp(320px, 33vw, 520px);
      max-width: 430px;
      padding: clamp(8px, 1.8vw, 24px) 0;
      text-align: center;
    }
    .about-copy::after {
      content: "";
      position: absolute;
      left: -18px;
      bottom: clamp(24px, 5vw, 70px);
      width: clamp(120px, 16vw, 210px);
      height: clamp(120px, 16vw, 210px);
      border-radius: 999px;
      background:
        radial-gradient(circle at 34% 34%, rgba(255, 255, 255, 0.74), transparent 30%),
        radial-gradient(circle, rgba(239, 126, 66, 0.13), transparent 68%);
      opacity: 0.7;
      pointer-events: none;
      z-index: -1;
    }
    .about-eyebrow {
      width: max-content;
      max-width: 100%;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 18px;
      padding: 8px 14px;
      border-radius: 999px;
      color: #9a5126;
      background: rgba(255,255,255,0.76);
      border: 1px solid rgba(239,126,66,0.14);
      box-shadow: 0 12px 28px rgba(122, 79, 42, 0.08);
      font-size: 13px;
      font-weight: 800;
      letter-spacing: 0.05em;
    }
    .about-eyebrow-icon {
      width: 30px;
      height: 30px;
      display: inline-grid;
      place-items: center;
      flex: 0 0 auto;
      border-radius: 999px;
      color: #EF7E42;
      background: #fff3e9;
      border: 1px solid rgba(239,126,66,0.16);
    }
    .about-title {
      max-width: 100%;
      margin: 0 0 clamp(26px, 4vw, 42px);
      color: #2D2A26;
      font-size: clamp(36px, 3vw, 52px);
      line-height: 1.08;
      font-weight: 900;
      letter-spacing: 0;
      white-space: nowrap;
      text-wrap: balance;
    }
    .about-copy .about-desc {
      max-width: 38em;
      margin-bottom: 12px;
      color: #61584f;
      font-size: 16px;
      line-height: 1.9;
      font-weight: 500;
    }
    .about-points {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 12px;
      margin: 22px 0 24px;
    }
    .about-point {
      display: flex;
      align-items: center;
      gap: 12px;
      min-height: 78px;
      padding: 14px;
      border-radius: 20px;
      background: rgba(255,255,255,0.74);
      border: 1px solid rgba(255,255,255,0.86);
      box-shadow: 0 14px 32px rgba(110, 74, 43, 0.08);
    }
    .about-point-icon {
      width: 42px;
      height: 42px;
      display: inline-grid;
      place-items: center;
      flex: 0 0 auto;
      border-radius: 15px;
      color: #EF7E42;
      background: #fff3e9;
      border: 1px solid rgba(239,126,66,0.16);
    }
    .about-point strong,
    .about-point em {
      display: block;
      font-style: normal;
      letter-spacing: 0;
    }
    .about-point strong {
      margin-bottom: 3px;
      color: #2D2A26;
      font-size: 15px;
      font-weight: 900;
    }
    .about-point em {
      color: #8B7E74;
      font-size: 12px;
      line-height: 1.45;
      font-weight: 700;
    }
    .about-more {
      position: relative;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      min-height: 54px;
      padding: 0 24px;
      border-radius: 999px;
      color: #fff;
      background: linear-gradient(135deg, #ff9b5f 0%, #f26f3d 100%);
      box-shadow: 0 18px 34px rgba(239, 126, 66, 0.22);
      font-size: 15px;
      font-weight: 900;
      overflow: hidden;
      isolation: isolate;
      transition: transform 0.25s ease, box-shadow 0.25s ease;
    }
    .about-more:hover {
      transform: translateY(-2px);
      box-shadow: 0 22px 42px rgba(239, 126, 66, 0.28);
    }
    .about-actions {
      display: flex;
      align-items: center;
      justify-content: center;
      flex-wrap: nowrap;
      gap: 12px;
      width: 100%;
      margin-top: 0;
    }
    .about-submit {
      position: relative;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      min-height: 62px;
      width: max-content;
      min-width: 156px;
      margin-top: 0;
      padding: 0 20px 0 14px;
      border-radius: 999px;
      color: #fff;
      background: linear-gradient(135deg, #ffb06d 0%, #ff8746 48%, #f06735 100%);
      box-shadow: 0 20px 42px rgba(239, 126, 66, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.38);
      font-size: 16px;
      font-weight: 900;
      letter-spacing: 0.02em;
      overflow: hidden;
      isolation: isolate;
      transition: transform 0.28s ease, box-shadow 0.28s ease, filter 0.28s ease;
    }
    .about-submit::before {
      content: "";
      position: absolute;
      top: -70%;
      bottom: -70%;
      left: -55%;
      width: 46%;
      z-index: -1;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.52), transparent);
      transform: skewX(-20deg);
      transition: left 0.72s ease;
    }
    .about-submit::after {
      content: "";
      position: absolute;
      inset: 4px;
      border: 1px solid rgba(255,255,255,0.38);
      border-radius: inherit;
      pointer-events: none;
    }
    .about-submit:hover {
      transform: translateY(-3px);
      filter: saturate(1.06);
      box-shadow: 0 26px 54px rgba(239, 126, 66, 0.34), 0 0 0 8px rgba(255, 139, 78, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.46);
    }
    .about-submit:hover::before {
      left: 120%;
    }
    .about-submit:active {
      transform: translateY(-1px) scale(0.99);
    }
    .about-submit-icon {
      width: 42px;
      height: 42px;
      display: inline-grid;
      place-items: center;
      flex: 0 0 auto;
      border-radius: 17px;
      color: #fff;
      background: rgba(255,255,255,0.18);
      box-shadow: inset 0 0 0 1px rgba(255,255,255,0.2);
    }
    .about-submit-arrow {
      flex: 0 0 auto;
      transition: transform 0.28s ease;
    }
    .about-submit:hover .about-submit-arrow {
      transform: translateX(4px);
    }
    .about-detail {
      position: relative;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      min-height: 58px;
      min-width: 136px;
      padding: 0 18px 0 14px;
      border-radius: 999px;
      color: #2f7e83;
      background: rgba(255, 255, 255, 0.86);
      border: 1px solid rgba(47, 126, 131, 0.18);
      box-shadow: 0 16px 34px rgba(47, 126, 131, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.72);
      font-size: 15px;
      font-weight: 900;
      overflow: hidden;
      isolation: isolate;
      transition: transform 0.28s ease, box-shadow 0.28s ease, color 0.28s ease, border-color 0.28s ease;
    }
    .about-detail::before {
      content: "";
      position: absolute;
      inset: auto auto 8px 24px;
      width: 46px;
      height: 6px;
      border-radius: 999px;
      background: linear-gradient(90deg, rgba(245, 169, 108, 0.28), rgba(47, 126, 131, 0.18));
      opacity: 0.72;
      transition: width 0.28s ease, opacity 0.28s ease;
    }
    .about-detail:hover {
      color: #236f74;
      border-color: rgba(47, 126, 131, 0.28);
      transform: translateY(-3px);
      box-shadow: 0 22px 44px rgba(47, 126, 131, 0.16), 0 0 0 8px rgba(47, 126, 131, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.82);
    }
    .about-detail:hover::before {
      width: calc(100% - 48px);
      opacity: 1;
    }
    .about-detail-icon {
      width: 38px;
      height: 38px;
      display: inline-grid;
      place-items: center;
      flex: 0 0 auto;
      border-radius: 15px;
      color: #2f7e83;
      background: rgba(47, 126, 131, 0.08);
      box-shadow: inset 0 0 0 1px rgba(47, 126, 131, 0.1);
    }
    .about-visual {
      position: relative;
      z-index: 1;
      min-height: clamp(360px, 36vw, 560px);
      overflow: hidden;
      border-radius: clamp(24px, 2.6vw, 34px);
      border: 8px solid rgba(255,255,255,0.78);
      background: #fff7ee;
      box-shadow: 0 26px 54px rgba(106, 68, 38, 0.16);
    }
    .about-visual img {
      width: 100%;
      height: 100%;
      min-height: inherit;
      display: block;
      object-fit: cover;
      object-position: center center;
      transition: transform 0.65s ease;
    }
    .about-panel:hover .about-visual img { transform: scale(1.025); }
    .about-visual::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, transparent 56%, rgba(60,35,20,0.22) 100%);
      pointer-events: none;
    }
    .about-visual-card {
      position: absolute;
      right: 18px;
      bottom: 18px;
      z-index: 1;
      max-width: min(300px, calc(100% - 36px));
      padding: 15px 18px;
      border-radius: 22px;
      color: #2D2A26;
      background: rgba(255,255,255,0.84);
      border: 1px solid rgba(255,255,255,0.92);
      box-shadow: 0 16px 36px rgba(75, 48, 30, 0.16);
      backdrop-filter: blur(14px);
    }
    .about-visual-card span {
      display: block;
      margin-bottom: 5px;
      color: #EF7E42;
      font-size: 12px;
      font-weight: 900;
    }
    .about-visual-card strong {
      display: block;
      font-size: 16px;
      line-height: 1.35;
      font-weight: 900;
    }
    @media (max-width: 900px) {
      .about-panel {
        grid-template-columns: 1fr;
      }
      .about-copy {
        min-height: auto;
        max-width: none;
        align-items: center;
      }
      .about-copy::after { display: none; }
      .about-title {
        max-width: 100%;
      }
    }
    @media (max-width: 640px) {
      .about-panel {
        padding: 18px;
        border-radius: 26px;
        gap: 20px;
      }
      .about-eyebrow {
        margin-bottom: 14px;
        font-size: 12px;
      }
      .about-title {
        margin-bottom: 22px;
        font-size: clamp(30px, 8.4vw, 36px);
      }
      .about-copy .about-desc {
        font-size: 14px;
        line-height: 1.8;
      }
      .about-points {
        grid-template-columns: 1fr;
        gap: 10px;
        margin: 18px 0 20px;
      }
      .about-point {
        min-height: 68px;
      }
      .about-more,
      .about-submit,
      .about-detail {
        width: 100%;
      }
      .about-actions {
        flex-wrap: wrap;
      }
      .about-submit {
        min-height: 58px;
        min-width: 0;
        margin-top: 0;
      }
      .about-visual {
        min-height: 230px;
        border-width: 6px;
        border-radius: 24px;
      }
      .about-visual-card {
        left: auto;
        right: 14px;
        bottom: 14px;
        max-width: min(180px, calc(100% - 28px));
        padding: 12px 14px;
        border-radius: 18px;
      }
      .about-visual-card span {
        margin-bottom: 4px;
        font-size: 11px;
      }
      .about-visual-card strong {
        font-size: 16px;
      }
    }

    /* ── Videos ── */
    #videos {
      position: relative;
      overflow: hidden;
    }
    #videos::before {
      content: '';
      position: absolute;
      left: max(24px, calc((100vw - 1200px) / 2));
      top: 24px;
      width: 82px;
      height: 82px;
      border-radius: 999px;
      background:
        radial-gradient(circle at 34% 38%, rgba(245, 169, 108, 0.34), transparent 42%),
        radial-gradient(circle at 68% 64%, rgba(47, 126, 131, 0.16), transparent 48%);
      filter: blur(2px);
      pointer-events: none;
    }
    .video-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 18px;
      position: relative;
    }
    .home-video-carousel {
      grid-template-columns: none;
      grid-auto-flow: column;
      grid-auto-columns: minmax(292px, calc((100% - 44px) / 3));
      align-items: stretch;
      overflow-x: auto;
      overflow-y: visible;
      scroll-snap-type: x mandatory;
      scroll-padding-inline: 8px;
      overscroll-behavior-inline: contain;
      padding: 4px 8px 26px;
      margin: -4px -8px -14px;
      scrollbar-width: thin;
      scrollbar-color: rgba(239, 126, 66, 0.42) rgba(255, 249, 240, 0.72);
    }
    .home-video-carousel::-webkit-scrollbar {
      height: 8px;
    }
    .home-video-carousel::-webkit-scrollbar-track {
      border-radius: 999px;
      background: rgba(255, 249, 240, 0.72);
    }
    .home-video-carousel::-webkit-scrollbar-thumb {
      border-radius: 999px;
      background: linear-gradient(90deg, rgba(239, 126, 66, 0.72), rgba(47, 126, 131, 0.48));
    }
    .home-video-carousel .video-card {
      scroll-snap-align: start;
      min-width: 0;
    }
    .video-carousel-controls {
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }
    .video-scroll-btn {
      width: 36px;
      height: 36px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border: 1px solid rgba(239, 126, 66, 0.18);
      border-radius: 999px;
      color: #EF7E42;
      background: rgba(255, 255, 255, 0.78);
      box-shadow: 0 12px 28px rgba(116, 77, 38, 0.08);
      cursor: pointer;
      transition:
        transform 0.22s ease,
        color 0.22s ease,
        border-color 0.22s ease,
        background 0.22s ease,
        opacity 0.22s ease;
    }
    .video-scroll-btn:hover {
      color: #2F7E83;
      border-color: rgba(47, 126, 131, 0.22);
      background: rgba(255, 255, 255, 0.94);
      transform: translateY(-2px);
    }
    .video-scroll-btn:active {
      transform: translateY(0) scale(0.97);
    }
    .video-scroll-btn:disabled {
      opacity: 0.38;
      cursor: not-allowed;
      transform: none;
    }
    @media (min-width: 760px) {
      .video-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 22px;
      }
      .home-video-carousel {
        grid-template-columns: none;
        grid-auto-columns: minmax(300px, calc((100% - 44px) / 3));
      }
      .home-video-carousel.video-grid-count-1,
      .home-video-carousel.video-grid-count-2 {
        grid-template-columns: none;
        max-width: none;
      }
      .home-video-carousel.video-grid-count-1 .video-card {
        display: block;
      }
      .home-video-carousel.video-grid-count-1 .video-thumb {
        height: auto;
        min-height: 0;
        aspect-ratio: 16/9;
      }
      .home-video-carousel.video-grid-count-1 .video-body {
        min-height: 148px;
        padding: 18px 18px 20px;
        justify-content: flex-start;
      }
      .home-video-carousel.video-grid-count-1 .video-title {
        font-size: 18px;
        line-height: 1.45;
      }
      .video-grid-count-1 {
        grid-template-columns: minmax(0, 920px);
      }
      .video-grid-count-1 .video-card {
        display: grid;
        grid-template-columns: minmax(0, 1.42fr) minmax(280px, 0.78fr);
        align-items: stretch;
      }
      .video-grid-count-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        max-width: 980px;
      }
    }
    .video-card {
      --video-accent: #EF7E42;
      position: relative;
      display: block;
      cursor: pointer;
      overflow: hidden;
      border-radius: 24px;
      color: #2D2A26;
      background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 249, 240, 0.9)),
        #fff;
      border: 1px solid rgba(239, 126, 66, 0.14);
      box-shadow: 0 16px 44px rgba(116, 77, 38, 0.08);
      transform: translateY(0);
      transition:
        transform 0.34s cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 0.34s cubic-bezier(0.16, 1, 0.3, 1),
        border-color 0.34s ease;
      animation-delay: calc(var(--video-index, 0) * 90ms);
      isolation: isolate;
    }
    .video-card:focus-visible {
      outline: 3px solid rgba(239, 126, 66, 0.35);
      outline-offset: 4px;
    }
    .video-card::after {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: inherit;
      background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.42) 46%, transparent 62%);
      opacity: 0;
      transform: translateX(-120%);
      transition: transform 0.72s ease, opacity 0.32s ease;
      pointer-events: none;
    }
    .video-card:hover {
      border-color: rgba(239, 126, 66, 0.28);
      box-shadow: 0 24px 64px rgba(116, 77, 38, 0.15);
      transform: translateY(-8px);
    }
    .video-card:hover::after {
      opacity: 1;
      transform: translateX(120%);
    }
    .video-card.is-playing {
      cursor: default;
      border-color: rgba(47, 126, 131, 0.28);
      box-shadow: 0 22px 58px rgba(47, 126, 131, 0.14);
      transform: translateY(-3px);
    }
    .video-card.is-playing::after {
      display: none;
    }
    .video-thumb {
      position: relative;
      aspect-ratio: 16/9;
      overflow: hidden;
      background: linear-gradient(135deg, #fff3df, #edf8f6);
    }
    .video-grid-count-1 .video-thumb {
      height: 100%;
      min-height: 314px;
      aspect-ratio: auto;
    }
    .video-thumb-link {
      display: block;
    }
    .video-player-mount {
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 20% 18%, rgba(239, 126, 66, 0.16), transparent 36%),
        linear-gradient(135deg, #fff3df, #edf8f6);
    }
    .video-thumb img,
    .video-inline-player,
    .video-player-mount iframe {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border: 0;
      display: block;
      transition: transform 0.62s cubic-bezier(0.16, 1, 0.3, 1), filter 0.34s ease;
    }
    .video-card:hover .video-thumb img,
    .video-card:hover .video-inline-player.preview-mode {
      filter: saturate(1.07) contrast(1.03);
      transform: scale(1.065);
    }
    .video-card.is-playing .video-thumb img,
    .video-card.is-playing .video-inline-player {
      filter: none;
      transform: none;
    }
    .video-inline-player {
      background: #17120e;
    }
    .video-inline-player.preview-mode {
      pointer-events: none;
    }
    .video-player-hidden {
      display: none !important;
    }
    .video-live-placeholder {
      width: 100%;
      height: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 10px;
      color: #EF7E42;
      background:
        linear-gradient(135deg, rgba(255, 249, 240, 0.88), rgba(239, 126, 66, 0.1)),
        repeating-linear-gradient(135deg, rgba(47, 126, 131, 0.08) 0 1px, transparent 1px 14px);
      font-size: 13px;
      font-weight: 800;
    }
    .video-media-badge {
      position: absolute;
      left: 14px;
      top: 14px;
      z-index: 2;
      display: inline-flex;
      align-items: center;
      min-height: 28px;
      padding: 0 12px;
      border-radius: 999px;
      color: #8A4F24;
      background: rgba(255, 249, 240, 0.9);
      border: 1px solid rgba(255, 255, 255, 0.72);
      box-shadow: 0 10px 24px rgba(116, 77, 38, 0.13);
      backdrop-filter: blur(10px);
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.01em;
      transition: opacity 0.24s ease, transform 0.24s ease;
    }
    .video-thumb .overlay {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 9px;
      background:
        linear-gradient(180deg, rgba(45, 42, 38, 0.02) 30%, rgba(45, 42, 38, 0.34) 100%),
        radial-gradient(circle at 50% 45%, rgba(255, 255, 255, 0.26), transparent 38%);
      transition: background 0.34s ease, opacity 0.24s ease;
    }
    .video-card:hover .video-thumb .overlay {
      background:
        linear-gradient(180deg, rgba(45, 42, 38, 0.04) 22%, rgba(45, 42, 38, 0.42) 100%),
        radial-gradient(circle at 50% 45%, rgba(255, 249, 240, 0.36), transparent 40%);
    }
    .video-card.is-playing .video-thumb .overlay,
    .video-card.is-playing .video-media-badge {
      opacity: 0;
      pointer-events: none;
      transform: translateY(-6px);
    }
    .play-btn {
      width: 62px;
      height: 62px;
      border-radius: 999px;
      background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 245, 228, 0.88));
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow:
        0 16px 34px rgba(239, 126, 66, 0.22),
        inset 0 0 0 1px rgba(255, 255, 255, 0.74);
      transition:
        transform 0.34s cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 0.34s ease;
    }
    .video-card:hover .play-btn {
      box-shadow:
        0 20px 44px rgba(239, 126, 66, 0.28),
        inset 0 0 0 1px rgba(255, 255, 255, 0.86);
      transform: scale(1.08);
    }
    .play-btn svg {
      color: #EF7E42;
      margin-left: 4px;
    }
    .video-body {
      position: relative;
      min-height: 148px;
      padding: 18px 18px 20px;
      display: flex;
      flex-direction: column;
    }
    .video-grid-count-1 .video-body {
      min-height: 314px;
      padding: 24px 24px 26px;
      justify-content: center;
      background:
        radial-gradient(circle at 100% 0%, rgba(239, 126, 66, 0.1), transparent 34%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 249, 240, 0.94));
    }
    .video-meta-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      margin-bottom: 10px;
      color: #9C7A62;
      font-size: 12px;
      font-weight: 700;
    }
    .video-meta-row span {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      color: #2F7E83;
    }
    .video-meta-row span::before {
      content: '';
      width: 8px;
      height: 8px;
      border-radius: 999px;
      background: #EF7E42;
      box-shadow: 0 0 0 4px rgba(239, 126, 66, 0.12);
    }
    .video-title {
      color: #2D2A26;
      font-size: 18px;
      font-weight: 800;
      line-height: 1.45;
      display: -webkit-box;
      overflow: hidden;
      -webkit-box-orient: vertical;
      -webkit-line-clamp: 2;
    }
    .video-grid-count-1 .video-title {
      font-size: 24px;
      line-height: 1.38;
    }
    .video-summary {
      margin-top: 10px;
      color: #6F6259;
      font-size: 13px;
      line-height: 1.7;
      display: -webkit-box;
      overflow: hidden;
      -webkit-box-orient: vertical;
      -webkit-line-clamp: 2;
    }
    .video-action {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      margin-top: auto;
      width: fit-content;
      padding-top: 15px;
      color: #EF7E42;
      font-size: 13px;
      font-weight: 800;
      transition: gap 0.22s ease, color 0.22s ease;
    }
    .video-card.is-playing .video-action {
      color: #2F7E83;
    }
    .video-card:hover .video-action {
      gap: 11px;
      color: #2F7E83;
    }
    .video-empty {
      grid-column: 1 / -1;
      display: flex;
      min-height: 220px;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 10px;
      border-radius: 28px;
      color: #8A4F24;
      background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(255, 247, 236, 0.86)),
        radial-gradient(circle at 30% 20%, rgba(239, 126, 66, 0.12), transparent 36%);
      border: 1px dashed rgba(239, 126, 66, 0.3);
      box-shadow: 0 18px 48px rgba(116, 77, 38, 0.08);
      text-align: center;
    }
    .video-empty-icon {
      width: 64px;
      height: 64px;
      border-radius: 22px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #EF7E42;
      background: rgba(239, 126, 66, 0.1);
    }
    .video-empty strong {
      color: #2D2A26;
      font-size: 18px;
    }
    .video-empty span {
      color: #7B6C62;
      font-size: 14px;
    }

    @media (max-width: 767px) {
      #videos::before {
        display: none;
      }
      .section-actions {
        gap: 8px;
      }
      .video-carousel-controls {
        display: none;
      }
      .video-grid {
        gap: 16px;
      }
      .home-video-carousel {
        grid-template-columns: none;
        grid-auto-columns: minmax(280px, 86vw);
        padding: 2px 16px 22px;
        margin: -2px -16px -10px;
        scroll-padding-inline: 16px;
      }
      .video-card {
        border-radius: 22px;
      }
      .video-card:hover {
        transform: none;
      }
      .video-grid-count-1 .video-card {
        display: block;
      }
      .video-grid-count-1 .video-thumb {
        min-height: 0;
        height: auto;
        aspect-ratio: 16/9;
      }
      .play-btn {
        width: 54px;
        height: 54px;
      }
      .video-body {
        min-height: auto;
        padding: 16px;
      }
      .video-title {
        font-size: 16px;
      }
      .video-grid-count-1 .video-title {
        font-size: 18px;
      }
    }

    /* Video Modal */
    .video-modal {
      display: none;
      position: fixed;
      inset: 0;
      z-index: 100;
      align-items: center;
      justify-content: center;
      background: rgba(0,0,0,0.7);
      backdrop-filter: blur(4px);
      padding: 16px;
    }
    .video-modal.active { display: flex; }
    .video-modal-inner {
      width: 100%;
      max-width: 768px;
      background: #1a1a1a;
      border-radius: 1rem;
      overflow: hidden;
      box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    }
    .video-player {
      position: relative;
      aspect-ratio: 16/9;
      background: #000;
    }
    .video-player img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.8;
    }
    .video-controls-top {
      position: absolute;
      top: 0; left: 0; right: 0;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 16px;
      background: linear-gradient(to bottom, rgba(0,0,0,0.6), transparent);
    }
    .video-controls-top span {
      color: #fff;
      font-size: 0.875rem;
      font-weight: 500;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      padding-right: 16px;
    }
    .video-close-btn {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      background: rgba(255,255,255,0.1);
      border: none;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: background 0.2s ease;
      flex-shrink: 0;
    }
    .video-close-btn:hover { background: rgba(255,255,255,0.2); }
    .video-center-btn {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .video-center-btn button {
      width: 64px;
      height: 64px;
      border-radius: 50%;
      background: rgba(255,255,255,0.2);
      backdrop-filter: blur(4px);
      border: none;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.3s ease;
    }
    .video-center-btn button:hover {
      background: rgba(255,255,255,0.3);
      transform: scale(1.1);
    }
    .video-center-btn button svg { color: #fff; }

    /* ── Award Works ── */
    .awards-showcase-section {
      position: relative;
      overflow: hidden;
    }
    .awards-showcase-section::before {
      content: "";
      position: absolute;
      top: 8px;
      right: 4%;
      width: 220px;
      height: 220px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(255, 150, 82, 0.16), rgba(255, 150, 82, 0));
      pointer-events: none;
    }
    .award-showcase-shell {
      position: relative;
      border-radius: 28px;
    }
    .award-showcase-header {
      position: relative;
      z-index: 1;
    }
    .award-showcase-header .section-more {
      color: #2f8584;
      font-weight: 800;
      text-decoration: none;
    }
    .award-showcase-header .section-more:hover {
      color: #f47b38;
    }
    .award-tabs {
      position: relative;
      z-index: 1;
      display: flex;
      flex-wrap: wrap;
      gap: 4px;
      width: fit-content;
      max-width: 100%;
      margin: 0 0 20px;
      padding: 4px;
      border: 1px solid rgba(239, 126, 66, 0.13);
      border-radius: 9999px;
      background: rgba(255, 255, 255, 0.58);
      box-shadow: 0 10px 24px rgba(124, 82, 45, 0.06);
    }
    .award-tab {
      position: relative;
      min-width: 64px;
      padding: 8px 18px;
      border: none;
      border-radius: 9999px;
      background: transparent;
      color: #7b6252;
      cursor: pointer;
      font-size: 0.88rem;
      font-weight: 800;
      letter-spacing: 0;
      transition: color 0.24s ease, background 0.24s ease, box-shadow 0.24s ease, transform 0.24s ease;
    }
    .award-tab:hover {
      background: rgba(255, 245, 235, 0.82);
      color: #d9662f;
      transform: translateY(-1px);
    }
    .award-tab.active {
      color: #fff;
      background: linear-gradient(135deg, #ff995f 0%, #ef7e42 100%);
      box-shadow: 0 10px 20px rgba(239, 126, 66, 0.2);
    }
    .award-grid {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 14px;
    }
    .award-item {
      position: relative;
      display: flex;
      min-width: 0;
      min-height: 100%;
      flex-direction: column;
      overflow: hidden;
      padding: 8px;
      border: 1px solid rgba(239, 126, 66, 0.16);
      border-radius: 22px;
      background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 250, 243, 0.94)),
        radial-gradient(circle at 18% 0%, rgba(255, 183, 118, 0.15), rgba(255, 183, 118, 0));
      color: inherit;
      text-decoration: none;
      box-shadow: 0 14px 34px rgba(105, 76, 53, 0.09);
      transition: transform 0.32s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.32s ease, box-shadow 0.32s ease;
    }
    .award-item::after {
      content: "";
      position: absolute;
      inset: auto 18px 0;
      height: 3px;
      border-radius: 999px 999px 0 0;
      background: linear-gradient(90deg, #f47b38, #2f8584);
      opacity: 0;
      transition: opacity 0.28s ease;
    }
    .award-item .aspect-3-4 {
      position: relative;
      display: grid;
      place-items: center;
      aspect-ratio: 4 / 3;
      overflow: hidden;
      padding: 8px;
      border: 1px solid rgba(239, 126, 66, 0.1);
      border-radius: 17px;
      background:
        linear-gradient(135deg, rgba(255, 247, 236, 0.96), rgba(255, 255, 255, 0.72)),
        linear-gradient(90deg, rgba(47, 133, 132, 0.08) 1px, transparent 1px),
        linear-gradient(0deg, rgba(47, 133, 132, 0.08) 1px, transparent 1px);
      background-size: auto, 28px 28px, 28px 28px;
    }
    .award-card-badge {
      position: absolute;
      top: 12px;
      left: 12px;
      z-index: 2;
      max-width: calc(100% - 24px);
      padding: 6px 10px;
      border: 1px solid rgba(255, 255, 255, 0.74);
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.82);
      box-shadow: 0 8px 22px rgba(105, 76, 53, 0.12);
      color: #e96f2f;
      font-size: 0.72rem;
      font-weight: 800;
      line-height: 1;
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      transition: transform 0.3s ease, background 0.3s ease;
    }
    .award-item img {
      width: 100%;
      height: 100%;
      border-radius: 12px;
      object-fit: contain;
      filter: drop-shadow(0 10px 18px rgba(83, 58, 39, 0.1));
      transition: transform 0.48s cubic-bezier(0.16, 1, 0.3, 1), filter 0.48s ease;
    }
    .award-item:hover {
      border-color: rgba(239, 126, 66, 0.32);
      box-shadow: 0 24px 48px rgba(105, 76, 53, 0.15);
      transform: translateY(-7px);
    }
    .award-item:hover::after {
      opacity: 1;
    }
    .award-item:hover img {
      filter: drop-shadow(0 16px 24px rgba(83, 58, 39, 0.16));
      transform: scale(1.035);
    }
    .award-item:hover .award-card-badge {
      background: rgba(255, 255, 255, 0.94);
      transform: translateY(-2px);
    }
    .award-caption {
      display: flex;
      flex: 1;
      flex-direction: column;
      min-height: 108px;
      padding: 13px 8px 5px;
      background: transparent;
      border-top: none;
    }
    .award-caption span {
      display: block;
      margin-bottom: 7px;
      color: #a56f48;
      font-size: 0.76rem;
      font-weight: 800;
    }
    .award-caption strong {
      display: -webkit-box;
      overflow: hidden;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      color: #2a2622;
      font-size: 1.05rem;
      font-weight: 800;
      line-height: 1.36;
    }
    .award-caption em {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      width: fit-content;
      margin-top: auto;
      color: #2f8584;
      font-size: 0.82rem;
      font-style: normal;
      font-weight: 800;
      opacity: 0.86;
      transition: color 0.24s ease, transform 0.24s ease;
    }
    .award-item:hover .award-caption em {
      color: #f47b38;
      transform: translateX(3px);
    }
    .award-placeholder,
    .award-empty {
      display: grid;
      place-items: center;
      min-height: 180px;
      border-radius: 17px;
      background: rgba(255,255,255,0.72);
      color: #9A6A4B;
      font-weight: 800;
      text-align: center;
    }
    .award-empty {
      gap: 8px;
      padding: 36px 20px;
      border: 1px dashed rgba(239,126,66,0.28);
    }
    .award-empty span {
      font-size: 0.9rem;
      font-weight: 600;
      color: #7A6A5E;
    }
    @media (min-width: 768px) {
      .award-showcase-shell {
        padding: 26px;
        border: 1px solid rgba(239, 126, 66, 0.12);
        background:
          linear-gradient(135deg, rgba(255, 252, 246, 0.76), rgba(255, 246, 236, 0.44)),
          radial-gradient(circle at 0% 30%, rgba(47, 133, 132, 0.08), transparent 34%),
          radial-gradient(circle at 98% 5%, rgba(255, 150, 82, 0.14), transparent 32%);
        box-shadow: 0 22px 58px rgba(105, 76, 53, 0.08);
      }
      .award-showcase-shell::before {
        content: "";
        position: absolute;
        inset: 16px;
        border-radius: 24px;
        border: 1px dashed rgba(239, 126, 66, 0.12);
        pointer-events: none;
      }
      .award-showcase-header {
        margin-bottom: 20px;
        padding: 0;
      }
      .award-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 20px;
      }
    }

    /* ── Popular Works ── */
    .works-grid {
      display: none;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
    }
    @media (min-width: 768px) { .works-grid { display: grid; } }
    .works-scroll {
      display: flex;
      gap: 12px;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      padding-bottom: 8px;
      margin: 0 -16px;
      padding-left: 16px;
      padding-right: 16px;
      scrollbar-width: none;
    }
    .works-scroll::-webkit-scrollbar { display: none; }
    @media (min-width: 768px) { .works-scroll { display: none; } }
    .works-scroll .work-card {
      flex: 0 0 45%;
      scroll-snap-align: start;
    }
    .work-card {
      position: relative;
      background: rgba(255,255,255,0.45);
      backdrop-filter: blur(12px);
      border: 1px solid rgba(255,255,255,0.5);
      border-radius: 0.75rem;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0,0,0,0.06);
      transition: transform 0.32s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.32s ease, border-color 0.32s ease;
    }
    .work-card:hover,
    .work-card:focus-visible {
      transform: translateY(-5px);
      border-color: rgba(239,126,66,0.28);
      box-shadow: 0 18px 42px rgba(105,76,53,0.15);
    }
    .work-card .aspect-square {
      position: relative;
      aspect-ratio: 1;
      overflow: hidden;
    }
    .work-card .aspect-square img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }
    .work-card:hover .aspect-square img,
    .work-card:focus-visible .aspect-square img { transform: scale(1.06); }
    .work-badge {
      position: absolute;
      top: 10px;
      right: 10px;
      z-index: 2;
      padding: 5px 9px;
      border-radius: 999px;
      color: #8a4f24;
      background: rgba(255,247,238,0.82);
      border: 1px solid rgba(255,255,255,0.78);
      box-shadow: 0 8px 18px rgba(60,35,20,0.1);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      font-size: 11px;
      font-weight: 800;
      opacity: 0.92;
    }
    .work-hover-panel {
      position: absolute;
      inset: 0;
      z-index: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 14px;
      background: linear-gradient(180deg, rgba(45,42,38,0.02), rgba(45,42,38,0.42));
      opacity: 0;
      transform: translateY(8px);
      transition: opacity 0.3s ease, transform 0.3s ease;
    }
    .work-card:hover .work-hover-panel,
    .work-card:focus-visible .work-hover-panel {
      opacity: 1;
      transform: translateY(0);
    }
    .work-hover-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 34px;
      padding: 0 12px;
      border-radius: 999px;
      color: #2D2A26;
      background: rgba(255,255,255,0.88);
      border: 1px solid rgba(255,255,255,0.86);
      box-shadow: 0 8px 20px rgba(45,42,38,0.16);
      font-size: 12px;
      font-weight: 900;
      white-space: nowrap;
    }
    .work-hover-btn.vote {
      color: #fff;
      background: linear-gradient(135deg, #F5A96C 0%, #EF7E42 100%);
      border-color: rgba(255,231,166,0.42);
    }
    .work-card-body { padding: 12px; }
    .work-card-title {
      font-size: 0.875rem;
      font-weight: 700;
      color: #2D2A26;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    .work-card-author {
      font-size: 0.75rem;
      color: #5C554F;
      margin-top: 2px;
    }
    .work-card-votes {
      display: flex;
      align-items: center;
      gap: 4px;
      margin-top: 6px;
    }
    .work-card-votes svg { color: #fb923c; }
    .work-card-votes span {
      font-size: 0.75rem;
      font-weight: 700;
      color: #f97316;
    }
    @media (hover: none) {
      .work-card:hover {
        transform: none;
      }
      .work-hover-panel {
        display: none;
      }
      .work-badge {
        font-size: 10px;
      }
    }

    /* ── News ── */
    .news-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 16px;
    }
    @media (min-width: 640px) { .news-grid { grid-template-columns: repeat(2, 1fr); } }
    @media (min-width: 1024px) { .news-grid { grid-template-columns: repeat(4, 1fr); } }
    .news-card {
      display: block;
      border-radius: 0.75rem;
      overflow: hidden;
      background: rgba(255,255,255,0.45);
      backdrop-filter: blur(12px);
      box-shadow: 0 2px 8px rgba(0,0,0,0.06);
      transition: box-shadow 0.3s ease;
    }
    .news-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.1); }
    .news-card .aspect-16-10 {
      aspect-ratio: 16/10;
      overflow: hidden;
    }
    .news-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }
    .news-card:hover img { transform: scale(1.05); }
    .news-card-body { padding: 12px; }
    .news-card-title {
      font-size: 0.875rem;
      font-weight: 700;
      color: #2D2A26;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
      transition: color 0.2s ease;
    }
    .news-card:hover .news-card-title { color: #9333ea; }
    .news-card-summary {
      font-size: 0.75rem;
      color: #5C554F;
      margin-top: 4px;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    .news-card-meta {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-top: 8px;
      font-size: 0.75rem;
      color: #9E9E9E;
    }
    .news-card-views {
      display: flex;
      align-items: center;
      gap: 4px;
    }

    @media (max-width: 767px) {
      #news.section {
        padding-top: 18px;
        padding-bottom: 18px;
      }
      #news .section-header {
        margin-bottom: 10px;
      }
      .news-grid {
        display: flex;
        gap: 12px;
        margin: 0 -16px;
        padding: 0 16px 4px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
      }
      .news-grid::-webkit-scrollbar {
        display: none;
      }
      .news-card {
        flex: 0 0 min(68vw, 270px);
        border-radius: 18px;
        scroll-snap-align: start;
      }
      .news-card .aspect-16-10 {
        aspect-ratio: 16 / 7.4;
      }
      .news-card-body {
        padding: 8px 10px;
      }
      .news-card-title {
        min-height: 1.45em;
        font-size: 0.82rem;
        -webkit-line-clamp: 1;
      }
      .news-card-summary {
        display: none;
      }
      .news-card-meta {
        margin-top: 6px;
        font-size: 0.68rem;
      }
    }

    /* ── Contact / Footer ── */
    .contact-section {
      position: relative;
      padding: 40px 16px;
      overflow: hidden;
    }
    .contact-section .bg-img {
      position: absolute;
      inset: 0;
    }
    .contact-section .bg-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.4;
    }
    .contact-grid {
      position: relative;
      z-index: 10;
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr;
      gap: 32px;
    }
    @media (min-width: 768px) { .contact-grid { grid-template-columns: 1fr 1fr 1fr; } }
    .contact-col h4 {
      font-weight: 700;
      color: #2D2A26;
      margin-bottom: 16px;
    }
    .contact-col p,
    .contact-col .contact-item {
      font-size: 0.875rem;
      color: #5C554F;
      line-height: 1.75;
    }
    .contact-item {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 12px;
    }
    .contact-item svg { color: #9333ea; flex-shrink: 0; }
    .qr-box {
      width: 96px;
      height: 96px;
      border-radius: 0.75rem;
      border: 2px dashed #c084fc;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(255,255,255,0.5);
      margin-bottom: 12px;
    }
    .qr-box span { font-size: 0.75rem; color: #c084fc; }
    .social-icons { display: flex; gap: 12px; }
    .social-icon {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: rgba(255,255,255,0.7);
      border: 1px solid rgba(255,255,255,0.6);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.2s ease;
    }
    .social-icon:hover { transform: translateY(-2px); }
    .copyright {
      position: relative;
      z-index: 10;
      max-width: 1200px;
      margin: 32px auto 0;
      padding-top: 16px;
      border-top: 1px solid rgba(255,255,255,0.3);
      text-align: center;
      font-size: 0.75rem;
      color: #9E9E9E;
    }

    /* ── Responsive helpers ── */
    @media (max-width: 767px) {
      .nav-links { display: none; }
      .nav-login-btn { display: none; }
    }
    @media (min-width: 768px) {
      .mobile-bottom-nav { display: none !important; }
    }
    @media (max-width: 767px) {
      .mobile-bottom-nav { display: block; }
      body { padding-bottom: 70px; }
    }
    .hidden-md { display: block; }
    @media (min-width: 768px) { .hidden-md { display: none; } }

/* Laravel layout owns the top spacing; keep imported design CSS from adding another 72px. */
body { padding-top: 0 !important; }

/* Keep content visible even when scroll observers are delayed or unavailable. */
.reveal {
  opacity: 1 !important;
  transform: none !important;
}

/* Footer contact layout override for the current official information. */
.contact-section {
  padding: 56px 16px 36px;
}
.contact-grid {
  gap: 24px;
}
@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
    grid-template-areas:
      "units contact"
      "units qr";
    align-items: stretch;
  }
  .contact-grid > .contact-col:first-child {
    grid-area: units;
  }
  .footer-card-contact {
    grid-area: contact;
  }
  .footer-qr-card {
    grid-area: qr;
  }
}
.contact-col {
  position: relative;
  min-height: 0;
  border-radius: 24px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 46px rgba(116, 77, 38, 0.07);
  backdrop-filter: blur(10px);
}
.footer-card-contact {
  align-self: stretch;
  min-height: 0;
}
.footer-qr-card {
  align-self: stretch;
}
.footer-logo {
  height: 44px;
  width: auto;
  margin-bottom: 14px;
}
.footer-desc {
  max-width: 35rem;
  margin-bottom: 18px;
}
.footer-units {
  display: grid;
  gap: 14px;
}
.footer-unit-group {
  padding-top: 14px;
  border-top: 1px solid rgba(116, 77, 38, 0.1);
}
.footer-unit-title,
.footer-contact-title {
  display: block;
  margin-bottom: 7px;
  color: #8A4F24;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}
.footer-unit-list {
  display: grid;
  gap: 4px;
  color: #5C554F;
  font-size: 0.84rem;
  line-height: 1.7;
}
.footer-contact-card {
  display: grid;
  gap: 10px;
  padding: 14px;
  border-radius: 18px;
  background: rgba(255, 249, 240, 0.78);
  border: 1px solid rgba(239, 126, 66, 0.12);
}
.footer-contact-card + .footer-contact-card {
  margin-top: 14px;
}
.footer-contact-line {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 10px;
  color: #5C554F;
  font-size: 0.86rem;
  line-height: 1.65;
}
.footer-contact-line span:first-child {
  color: #9C7A62;
  font-weight: 700;
}
.qr-box {
  width: 156px;
  height: 156px;
  border-radius: 22px;
  border: 1px solid rgba(239, 126, 66, 0.18);
  background: rgba(255,255,255,0.82);
  margin-bottom: 14px;
  box-shadow: 0 16px 38px rgba(116, 77, 38, 0.09);
}
.qr-box img {
  width: 132px;
  height: 132px;
  object-fit: contain;
}
@media (max-width: 767px) {
  .contact-section { padding: 32px 16px 28px; }
  .contact-col { padding: 20px; border-radius: 22px; }
  .footer-contact-line { grid-template-columns: 64px 1fr; }
  .qr-box { width: 144px; height: 144px; }
  .qr-box img { width: 122px; height: 122px; }
}

