/* ==========================================================================
   Delta Award for Architecture — Main Stylesheet
   Font: Outfit | Design source: Figma
   ========================================================================== */

:root {
  --color-white: #ffffff;
  --color-black: #000000;
  --color-dark: #161616;
  --color-gray-900: #404040;
  --color-gray-700: #7d7d7d;
  --color-gray-500: #b1b1b1;
  --color-gray-300: #d9d9d9;
  --color-gray-100: #f3f3f3;
  --color-gray-50: #f6f6f6;
  --color-accent: #d68352;

  --font-family: "Outfit", sans-serif;
  --container-max: 1320px;
  --figma-frame: 1440px;
  --home-frame: 1728px;
  /* Unitless Figma frame — Firefox rejects calc(px * vw / px); use N / frame-n * 100vw */
  --home-frame-n: 1728;
  --hero-section-h: 798px;
  --hero-section-h-n: 798;
  --hero-title-w: 1100px;
  --hero-title-w-n: 1100;
  --hero-title-h: 168px;
  --hero-title-h-n: 168;
  --hero-title-top: 220px;
  --hero-title-top-n: 220;
  --hero-partners-w: 720px;
  --hero-partners-w-n: 720;
  --hero-partners-top: 450px;
  --hero-partners-top-n: 450;
  --hero-copy-left: 174px;
  --hero-copy-left-n: 174;
  --hero-copy-gap: 64px;
  /* Video — flush right */
  --hero-gif-w: 652px;
  --hero-gif-w-n: 652;
  --hero-gif-h: 725px;
  --hero-visual-w: 900px;
  /* Logo video — laptop/desktop baseline */
  --hero-video-w: 115%;
  --hero-video-shift-x: 10%;
  --hero-video-shift-y: -3%;
  --hero-video-margin-right: -3%;
  --hero-title-font-n: 45;
  --hero-title-lh-n: 56;
  --hero-content-left: 158px;
  --hero-content-left-ratio: 10.069%;
  --hero-content-w: 939px;
  /* Figma: right corner sits at ::after end; tip dips into jury. */
  --crest-right-corner-from-tip: 83px;
  --showcase-pattern-tail: 19px;
  --crest-top-page: calc(
    var(--header-height)
    + var(--hero-section-h)
    + var(--showcase-band-offset)
    + var(--showcase-band-h)
    + var(--showcase-pattern-tail)
    + var(--crest-right-corner-from-tip)
    - var(--crest-display-height)
  );
  --crest-width: 528px;
  --crest-height: 768px;
  --crest-display-height: var(--crest-height);
  --crest-left: 1100px;
  --crest-left-ratio: 63.657%;
  --showcase-band-h: 231px;
  --showcase-band-text-w: 692px;
  --showcase-band-text-h: 147px;
  --showcase-intro-w: 993px;
  --showcase-intro-h: 300px;
  --showcase-intro-gap: 24px;
  --showcase-intro-left: 166px;
  --showcase-intro-top-page: 994px;
  --showcase-band-top-page: 1349px;
  --showcase-band-text-top-page: 1391px;
  --showcase-band-offset: 467px;
  --showcase-page-end: calc(var(--header-height) + var(--hero-section-h) + var(--showcase-band-offset) + var(--showcase-band-h) + var(--showcase-pattern-tail));
  --pattern-tile-size: clamp(56px, 6.5vw, 90px);
  --jury-bg-width: 1605px;
  --jury-bg-height: 1533px;
  --jury-bg-left: 151px;
  --jury-bg-top-page: 1151px;
  --jury-bg-opacity: 0.1;
  --header-height: 115px;
  --nav-dropdown-pad: 14px;
  --nav-dropdown-gap: 12px;
  --nav-dropdown-font: 21px;
  --nav-dropdown-offset: 8px;
  --section-py: 80px;
  /* Equal gap above + below: Jury Board / Launching Ceremony / Events titles */
  --home-title-gap: clamp(40px, 4vw, 48px);
  --transition: 0.3s ease;

  --partners-frame: 1728px;
  --partners-sidebar-w: 490.809px;
  --partners-sidebar-h: 1148px;
  --partners-list-w: 826px;
  --partners-section-gap: 64px;
  --partners-block-h: 1148px;
  --partner-card-w: 826px;
  --partner-card-h: 340px;
  --partner-logo-size: 340px;
  --partner-card-pad-x: 24px;
  --partner-logo-pad-x: 39px;
  --partner-border-w: 24px;

  --ac-content-w: 1170px;
  --ac-intro-w: 1025px;
  --ac-note-w: 1380px;

  --privilege-frame: 1728px;
  --privilege-content-left: 420px;
  --privilege-content-left-ratio: 24.306%;
  --privilege-content-w: 1134px;
  --privilege-title-w: 703px;
  --privilege-title-h: 94px;
  --privilege-list-w: 912px;
  --privilege-list-h: 378px;
  --privilege-table-w: 1134px;
  --privilege-table-h: auto;
  --privilege-decor-w: 361px;
  --privilege-decor-h: 595px;
  --privilege-decor-left: 0px;
  --privilege-decor-w-ratio: 20.891%;
  --privilege-text-color: #202020;
  --privilege-title-color: #888888dd;

  --nominate-frame: 1170px;
  --nominate-header-h: 41px;
  --nominate-step-h: 74px;
  --nominate-action-h: 64px;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  font-family: var(--font-family);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-black);
  background: var(--color-white);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

main {
  display: block;
  margin: 0;
  padding: 0;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition), opacity var(--transition);
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: 24px;
}

/* --------------------------------------------------------------------------
   Scroll Animations
   -------------------------------------------------------------------------- */

.anim-ready {
  opacity: 0;
  will-change: transform, opacity;
  transition:
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.65s ease-out;
}

.anim-ready.anim-from-top {
  transform: translate3d(0, -52px, 0);
}

.anim-ready.anim-from-left {
  transform: translate3d(-56px, 0, 0);
}

.anim-ready.anim-from-right {
  transform: translate3d(56px, 0, 0);
}

.anim-ready.anim-from-bottom {
  transform: translate3d(0, 52px, 0);
}

.anim-ready.anim-rise {
  transform: translate3d(0, 64px, 0) scale(0.94);
  transition:
    transform 0.85s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.75s ease-out;
}

.anim-ready.anim-slide-down {
  transform: translate3d(0, -64px, 0) scale(0.98);
  transition:
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.7s ease-out;
}

.anim-ready.anim-zoom-in {
  transform: scale(0.86) translate3d(-24px, 32px, 0);
  transition:
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.8s ease-out;
}

.anim-ready.anim-zoom-in-right {
  transform: scale(0.86) translate3d(24px, 32px, 0);
  transition:
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.8s ease-out;
}

.anim-ready.anim-tilt-left {
  transform: translate3d(-48px, 28px, 0) rotate(-2.5deg);
  transition:
    transform 0.85s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.75s ease-out;
}

.anim-ready.anim-tilt-right {
  transform: translate3d(48px, 28px, 0) rotate(2.5deg);
  transition:
    transform 0.85s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.75s ease-out;
}

.anim-ready.anim-pop {
  transform: scale(0.88);
}

.nominate-form__button.anim-ready.anim-pop {
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.3s ease-out;
}

.anim-ready.anim-pop-image {
  transform: scale(0.84) translate3d(0, 28px, 0);
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.7s ease-out;
}

.anim-ready.anim-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1) rotate(0deg);
}

@media (prefers-reduced-motion: reduce) {
  .anim-ready {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #be7950;
  height: var(--header-height);
  overflow: visible;
}

.site-header .container.site-header__inner {
  max-width: var(--home-frame);
  margin-inline: auto;
  padding-right: 24px;
  padding-left: max(
    24px,
    calc(
      50vw - var(--home-frame) / 2 + var(--hero-content-left)
      - max(0px, (100vw - var(--home-frame)) / 2)
    )
  );
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: var(--header-height);
  gap: 96px;
}

.site-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  height: var(--header-height);
}

.site-nav {
  display: flex;
  align-items: center;
  height: var(--header-height);
  overflow: visible;
}

.site-header__submit {
  position: relative;
  flex-shrink: 0;
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 36px;
  overflow: hidden;
  isolation: isolate;
  border: 1.5px solid #ffffff;
  border-radius: 4px;
  background: #cb8056;
  color: #ffffff;
  font-family: var(--font-family);
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.35),
    0 6px 16px rgba(255, 255, 255, 0.28),
    0 14px 32px rgba(255, 255, 255, 0.18),
    0 2px 6px rgba(255, 255, 255, 0.4);
  animation: site-header-submit-glow 2.6s ease-in-out infinite;
  transition:
    background-color 0.28s ease,
    color 0.28s ease,
    border-color 0.28s ease,
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.28s ease;
}

.site-header__submit::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent 0%,
    transparent 40%,
    rgba(255, 255, 255, 0.28) 50%,
    transparent 60%,
    transparent 100%
  );
  transform: translateX(-130%);
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.site-header__submit:hover {
  background: #ffffff;
  color: #cb8056;
  border-color: #ffffff;
  transform: translateY(-2px);
  animation: none;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.55),
    0 8px 20px rgba(255, 255, 255, 0.38),
    0 18px 40px rgba(255, 255, 255, 0.24),
    0 3px 8px rgba(255, 255, 255, 0.5);
}

.site-header__submit:hover::before {
  transform: translateX(130%);
}

.site-header__submit:active {
  transform: translateY(0);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.3),
    0 4px 12px rgba(255, 255, 255, 0.22),
    0 10px 22px rgba(255, 255, 255, 0.14);
}

.site-header__submit.is-active,
.site-header__submit[aria-current="page"] {
  background: #ffffff;
  color: #cb8056;
  border-color: #ffffff;
  animation: none;
}

@keyframes site-header-submit-glow {
  0%,
  100% {
    box-shadow:
      0 0 0 1px rgba(255, 255, 255, 0.32),
      0 6px 16px rgba(255, 255, 255, 0.24),
      0 14px 32px rgba(255, 255, 255, 0.14),
      0 2px 6px rgba(255, 255, 255, 0.34);
    transform: translateY(0);
  }
  50% {
    box-shadow:
      0 0 0 1px rgba(255, 255, 255, 0.5),
      0 8px 20px rgba(255, 255, 255, 0.36),
      0 18px 38px rgba(255, 255, 255, 0.22),
      0 3px 8px rgba(255, 255, 255, 0.48);
    transform: translateY(-1px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-header__submit,
  .site-header__submit::before {
    animation: none;
    transition: none;
  }

  .site-header__submit:hover {
    transform: none;
  }
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 40px;
  height: 40px;
  margin-left: auto;
  padding: 8px;
  border: none;
  background: transparent;
  cursor: pointer;
}

.site-logo img {
  width: 118px;
  height: 50px;
  max-width: 100%;
  object-fit: contain;
  opacity: 1;
  transform: rotate(0deg);
}

.site-nav__list {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 36px;
}

.site-nav__list > li {
  display: flex;
  align-items: center;
  height: auto;
}

.site-nav__list a {
  position: relative;
  display: inline-block;
  font-size: 21px;
  font-weight: 300;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-white);
  transition: opacity 0.2s ease, font-weight 0.2s ease;
}

.site-nav__list a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: var(--color-white);
  opacity: 0;
  transform: translateX(-50%) scaleX(0.4);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.site-nav__list a:hover {
  color: var(--color-white);
  opacity: 0.85;
}

.site-nav__list a:hover::after {
  opacity: 0.5;
  transform: translateX(-50%) scaleX(0.7);
}

.site-nav__list a.is-active,
.site-nav__list a[aria-current="page"] {
  color: var(--color-white);
  font-weight: 600;
  opacity: 1;
}

.site-nav__list a.is-active::after,
.site-nav__list a[aria-current="page"]::after {
  opacity: 1;
  transform: translateX(-50%) scaleX(1);
}

.site-nav__item--dropdown {
  position: relative;
  display: flex;
  align-items: center;
  height: auto;
}

.site-nav__item--dropdown::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  width: 100%;
  height: var(--nav-dropdown-offset);
}

.site-nav__trigger {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  border: none;
  background: none;
  font-family: var(--font-family);
  font-size: 22px;
  font-weight: 300;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-white);
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.site-nav__trigger::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: var(--color-white);
  opacity: 0;
  transform: translateX(-50%) scaleX(0.4);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.site-nav__trigger:hover {
  color: var(--color-white);
  opacity: 0.85;
}

.site-nav__trigger:hover::after {
  opacity: 0.5;
  transform: translateX(-50%) scaleX(0.7);
}

.site-nav__item--dropdown.is-active .site-nav__trigger,
.site-nav__item--dropdown.is-open .site-nav__trigger {
  color: var(--color-white);
  font-weight: 600;
  opacity: 1;
}

.site-nav__item--dropdown.is-active .site-nav__trigger::after,
.site-nav__item--dropdown.is-open .site-nav__trigger::after {
  opacity: 1;
  transform: translateX(-50%) scaleX(1);
}

.site-nav__chevron {
  width: 8px;
  height: 5px;
  flex-shrink: 0;
  color: currentColor;
  transition: transform 0.2s ease;
}

.site-nav__item--dropdown.is-open .site-nav__chevron {
  transform: rotate(180deg);
}

.site-nav__dropdown {
  position: absolute;
  top: calc(100% + var(--nav-dropdown-offset));
  left: 0;
  right: auto;
  width: max-content;
  min-width: 0;
  margin: 0;
  padding: var(--nav-dropdown-pad);
  list-style: none;
  background: #be7950;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  gap: var(--nav-dropdown-gap);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: none;
  transition: opacity 0.15s ease, visibility 0.15s ease;
  z-index: 1100;
  box-shadow: 0 12px 24px -8px rgba(0, 0, 0, 0.35);
}

.site-nav__dropdown > li {
  position: relative;
  flex-shrink: 0;
}

.site-nav__dropdown > li:not(:last-child) {
  padding-bottom: calc(var(--nav-dropdown-gap) * 0.7);
}

.site-nav__dropdown > li:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 2px;
  right: 2px;
  bottom: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.18);
}

.site-nav__item--dropdown:hover .site-nav__dropdown,
.site-nav__item--dropdown.is-open .site-nav__dropdown,
.site-nav__item--dropdown:focus-within .site-nav__dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.site-nav__dropdown a {
  position: relative;
  display: block;
  width: auto;
  min-height: 0;
  padding: 6px 10px;
  margin: 0 -10px;
  border-radius: 2px;
  font-family: var(--font-family);
  font-size: var(--nav-dropdown-font);
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0;
  text-align: left;
  text-transform: none;
  color: var(--color-white);
  white-space: nowrap;
  transition: background-color 0.2s ease, opacity 0.2s ease;
}

.site-nav__dropdown a:hover {
  color: var(--color-white);
  background-color: rgba(255, 255, 255, 0.14);
  opacity: 1;
}

.site-nav__dropdown a.is-active,
.site-nav__dropdown a[aria-current="page"] {
  color: var(--color-white);
  font-weight: 600;
  background-color: rgba(255, 255, 255, 0.2);
  opacity: 1;
}

.site-nav__dropdown a.is-active::after,
.site-nav__dropdown a[aria-current="page"]::after {
  content: none;
}

.nav-toggle__bar {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-white);
  transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* --------------------------------------------------------------------------
   Hero — Figma 1728×798 (desktop scales with viewport)
   Title @ 174,235 | Partners @ 174,511 | GIF flush right
   -------------------------------------------------------------------------- */

.hero {
  position: relative;
  /* Firefox-safe: unitless * vw (not px * vw) */
  height: calc(100vw * var(--hero-section-h-n) / var(--home-frame-n));
  min-height: calc(100vw * var(--hero-section-h-n) / var(--home-frame-n));
  margin: 0;
  overflow: hidden;
  isolation: isolate;
  background-color: #D9D9D9;
  background-image: url("../assets/hero_section/hero-bg.webp");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

/* Overlay on top of hero background image */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #D9D9D9;
  opacity: 0.55;
  pointer-events: none;
}

.hero::after {
  display: none;
}

.hero__shell {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: none;
  height: 100%;
  margin-inline: auto;
  box-sizing: border-box;
}

.hero__copy {
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  left: 0;
  /* Leave room on the right for video, but keep title wide enough for 3-line wrap */
  right: clamp(280px, 30vw, 560px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: var(--hero-copy-gap);
  width: auto;
  max-width: none;
  padding-left: calc(100vw * var(--hero-copy-left-n) / var(--home-frame-n));
  padding-right: clamp(16px, 2vw, 32px);
  box-sizing: border-box;
  pointer-events: none;
  overflow: visible;
}

.hero__title {
  position: relative;
  left: auto;
  top: auto;
  margin: 0;
  width: calc(100vw * var(--hero-title-w-n) / var(--home-frame-n));
  max-width: 100%;
  min-height: calc(100vw * var(--hero-title-h-n) / var(--home-frame-n));
  height: auto;
  font-family: var(--font-family);
  font-weight: 600;
  font-style: normal;
  font-size: calc(100vw * var(--hero-title-font-n) / var(--home-frame-n));
  line-height: calc(100vw * var(--hero-title-lh-n) / var(--home-frame-n));
  letter-spacing: 0;
  text-transform: uppercase;
  text-align: left;
  color: #d47545;
  pointer-events: auto;
  white-space: normal;
}

.hero__title-lead {
  display: inline;
}

.hero__title-lead.anim-ready.anim-from-top {
  display: inline-block;
  opacity: 0;
  transform: translate3d(0, -56px, 0);
  transition:
    transform 0.85s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.7s ease-out;
  will-change: transform, opacity;
}

.hero__title-lead.anim-ready.anim-from-top.anim-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.hero__title-em {
  display: inline-block;
  font-weight: 800;
}

/* Only this line — distinct left → right slide */
.hero__title-em.anim-ready.anim-from-left {
  opacity: 0;
  transform: translate3d(-88px, 0, 0);
  transition:
    transform 1.05s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.85s ease-out;
  transition-delay: 0.28s;
  will-change: transform, opacity;
}

.hero__title-em.anim-ready.anim-from-left.anim-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@media (prefers-reduced-motion: reduce) {
  .hero__title-lead.anim-ready.anim-from-top,
  .hero__title-em.anim-ready.anim-from-left {
    opacity: 1;
    transform: none;
    transition: none;
    transition-delay: 0s;
  }
}

/* Desktop/tablet line breaks — hidden on mobile */
.hero__title-break {
  display: inline;
}

.hero__title-break::before {
  content: "\A";
  white-space: pre;
}

.hero__partners {
  position: relative;
  left: auto;
  top: auto;
  display: block;
  width: calc(100vw * var(--hero-partners-w-n) / var(--home-frame-n));
  max-width: 100%;
  height: auto;
  margin: 0;
  pointer-events: auto;
}

.hero__visual {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  bottom: 0;
  left: auto;
  height: 100%;
  width: min(50vw, var(--hero-visual-w));
  max-width: min(50vw, var(--hero-visual-w));
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin: 0;
  padding: 0;
  pointer-events: none;
  overflow: hidden;
  isolation: isolate;
  background: transparent;
}

/*
  Same plate as .hero (color + hero-bg.webp + grey wash), sized to the full
  hero width and clipped — so the video area matches the textured bg exactly.
*/
.hero__visual::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 100vw;
  z-index: 0;
  pointer-events: none;
  background-color: #D9D9D9;
  background-image: url("../assets/hero_section/hero-bg.webp");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.hero__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: #D9D9D9;
  opacity: 0.55;
}

.hero__logo-video {
  position: relative;
  z-index: 2;
  display: block;
  width: var(--hero-video-w);
  max-width: none;
  height: auto;
  max-height: none;
  margin-left: auto;
  margin-right: var(--hero-video-margin-right);
  transform: translateX(var(--hero-video-shift-x)) translateY(var(--hero-video-shift-y));
  aspect-ratio: 16 / 9;
  object-fit: contain;
  object-position: right center;
  background: transparent;
  /* White video plate × local hero plate → seamless texture */
  mix-blend-mode: multiply;
}

/* Short desktop viewports — keep composition readable */
@media (min-width: 1024px) and (max-height: 720px) {
  .hero {
    height: max(560px, calc(100vw * var(--hero-section-h-n) / var(--home-frame-n)));
    min-height: 560px;
  }
}

/* --------------------------------------------------------------------------
   Pattern sections
   -------------------------------------------------------------------------- */

.section-pattern {
  background-color: var(--color-white);
  background-image: url("../assets/images/image 4.jpg");
  background-repeat: repeat;
  background-size: var(--pattern-tile-size) auto;
}

/* --------------------------------------------------------------------------
   Showcase (Intro + Trophy + CTA Band)
   -------------------------------------------------------------------------- */

.showcase {
  position: relative;
  z-index: 3;
  overflow: visible;
  padding-bottom: var(--showcase-pattern-tail);

}

.showcase::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 100%;
  background-color: var(--color-white);
  background-image: url("../assets/images/image 4.jpg");
  background-repeat: repeat-y;
  background-size: 100% auto;
  background-position: top center;
  z-index: 0;
  pointer-events: none;
}

.showcase::after {
  content: "";
  position: absolute;
  top: auto;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: var(--showcase-pattern-tail);
  background-color: #F3F3F3;
  background-repeat: repeat-y;
  background-size: 100% auto;
  background-position: top center;
  z-index: 0;
  pointer-events: none;
}

.showcase__intro {
  padding-top: calc(var(--showcase-intro-top-page) - var(--header-height) - var(--hero-section-h));
  padding-bottom: 0;
  position: relative;
  z-index: 1;
  background: transparent;
}

.showcase__intro .container {
  max-width: var(--home-frame);
  margin-inline: auto;
  padding-right: 24px;
  padding-left: max(
    24px,
    calc(
      50vw - var(--home-frame) / 2 + var(--showcase-intro-left)
      - max(0px, (100vw - var(--home-frame)) / 2)
    )
  );
}

.showcase__band .container {
  max-width: var(--home-frame);
  margin-inline: auto;
  padding-right: 24px;
  padding-left: max(
    24px,
    calc(
      50vw - var(--home-frame) / 2 + var(--hero-content-left)
      - max(0px, (100vw - var(--home-frame)) / 2)
    )
  );
}

.showcase__intro-inner {
  box-sizing: border-box;
  width: min(var(--showcase-intro-w), 100%);
  max-width: var(--showcase-intro-w);
  min-height: var(--showcase-intro-h);
  display: flex;
  align-items: center;
  padding-block: 0;
}

.showcase__text {
  display: flex;
  flex-direction: column;
  gap: var(--showcase-intro-gap);
  justify-content: center;
  width: 100%;
  margin-block: auto;
}

.showcase__text p {
  font-family: var(--font-family);
  font-size: 23px;
  font-weight: 300;
  font-style: normal;
  line-height: 1.6;
  letter-spacing: 0;
  text-align: justify;
  text-justify: inter-word;
  color: var(--color-black);
  margin-bottom: 0;
}

.showcase__text-em {
  font-family: var(--font-family);
  font-weight: 400;
  font-style: normal;
}

.showcase__link {
  display: inline-block;
  font-family: var(--font-family);
  font-size: 25px;
  font-weight: 500;
  font-style: normal;
  line-height: 1.4;
  letter-spacing: 0;
  text-transform: lowercase;
  text-decoration: none;
  color: #D68352;
  opacity: 1;
  white-space: nowrap;
}

.showcase__link:hover {
  opacity: 0.8;
}

.showcase__band {
  --showcase-band-offset-ratio: 3.231%;
  background-color: #D68352;
  background-image: url("../assets/images/show_case_brand_background.webp");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
  z-index: 1;
  margin-top: var(--showcase-band-offset-ratio);
  min-height: var(--showcase-band-h);
  display: flex;
  align-items: center;
  padding-block: calc((var(--showcase-band-h) - var(--showcase-band-text-h)) / 2);
}

/* @media (min-width: 1024px) {
  .showcase__band {
    margin-top: calc(
      var(--showcase-band-offset)
      - (var(--showcase-intro-top-page) - var(--header-height) - var(--hero-section-h))
      - var(--showcase-intro-h)
    );
  }
} */

.showcase__band-text {
  font-family: var(--font-family);
  font-size: clamp(20px, 2.4vw, 32px);
  font-weight: 500;
  font-style: normal;
  line-height: clamp(28px, 3vw, 40px);
  letter-spacing: 0;
  color: var(--color-white);
  width: min(var(--showcase-band-text-w), 100%);
  max-width: var(--showcase-band-text-w);
  margin: 0;
}

.showcase__trophy {
  --trophy-w: var(--crest-width);
  --trophy-h: var(--crest-display-height);
  position: absolute;
  top: auto;
  bottom: calc(-1 * var(--crest-right-corner-from-tip));
  left: calc(50% - var(--home-frame) / 2 + var(--crest-left));
  width: var(--trophy-w);
  height: var(--trophy-h);
  z-index: 3;
  pointer-events: none;
}

/* GIF fills crest box same as old crest.webp / image */
.showcase__trophy-stone {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: contain;
  object-position: right bottom;
  mix-blend-mode: lighten;
  pointer-events: none;
  user-select: none;
}

/* --------------------------------------------------------------------------
   Section titles
   -------------------------------------------------------------------------- */

.section-title {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
  color: var(--color-black);
  margin-bottom: 56px;
}

.section-title--accent {
  color: var(--color-accent);
  position: relative;
  z-index: 1;
}

/* --------------------------------------------------------------------------
   Jury
   -------------------------------------------------------------------------- */

.jury {
  position: relative;
  padding-top: var(--home-title-gap);
  padding-bottom: 0;
  background-color: var(--color-white);
  overflow: hidden;
  z-index: 0;
  isolation: isolate;
}

.jury::before {
  content: "";
  position: absolute;
  width: var(--jury-bg-width);
  height: var(--jury-bg-height);
  top: calc(var(--jury-bg-top-page) - var(--showcase-page-end));
  left: calc(50% - var(--home-frame) / 2 + var(--jury-bg-left));
  opacity: var(--jury-bg-opacity);
  background: url("../assets/images/jury_background_new.webp") center top / 100% 100% no-repeat;
  pointer-events: none;
  z-index: 0;
}

/* Keep desktop jury background identical from 1024px up */
@media (min-width: 1024px) {
  .jury::before {
    width: var(--jury-bg-width);
    height: var(--jury-bg-height);
    top: calc(var(--jury-bg-top-page) - var(--showcase-page-end));
    left: calc(50% - var(--home-frame) / 2 + var(--jury-bg-left));
    right: auto;
    transform: none;
    aspect-ratio: auto;
    opacity: var(--jury-bg-opacity);
    background: url("../assets/images/jury_background_new.webp") center top / 100% 100% no-repeat;
    background-size: 100% 100%;
    background-position: center top;
  }
}

/* Below 1024 only: scale background for smaller screens */
@media (max-width: 1023px) {
  .jury::before {
    width: min(var(--jury-bg-width), 110vw);
    height: auto;
    aspect-ratio: 1605 / 1533;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    background-size: contain;
    background-position: center top;
  }
}

/* White mask: mid portraits → section end (all breakpoints) */
.jury::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: calc(var(--home-title-gap) + 72px + 100px);
  bottom: 0;
  background: var(--color-white);
  z-index: 0;
  pointer-events: none;
}

.jury .container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.jury .section-title {
  width: 100%;
  text-align: center;
  margin-top: 0;
  margin-bottom: var(--home-title-gap);
}

.jury .jury-boards-members {
  position: relative;
  width: 100%;
  padding-bottom: 0;
}

.jury .jury-boards-members__frame {
  margin-bottom: 8px;
}

/* Homepage only — center the 3 members on the 2nd row under the 5-col grid */
.jury .jury-boards-members__frame > .jury-boards-member:nth-child(6) {
  grid-column: 2;
}

/* Homepage — space above the 2nd row (3 members) */
.jury .jury-boards-members__frame > .jury-boards-member:nth-child(n + 6) {
  padding-top: clamp(65px, 4.5vw, 45px);
}

@media (max-width: 1200px) {
  .jury .jury-boards-members__frame > .jury-boards-member:nth-child(n + 6) {
    padding-top: clamp(32px, 4vw, 40px);
  }
}

@media (max-width: 768px) {
  .jury .jury-boards-members__frame > .jury-boards-member:nth-child(n + 6) {
    padding-top: clamp(24px, 5vw, 32px);
  }
}

.jury__board {
  position: relative;
  width: min(1380px, 100%);
  margin-inline: auto;
  padding-bottom: 8px;
}

.jury__black-bar {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: min(calc(100% + 80px), 1460px);
  top: 197px;
  height: 260px;
  background: var(--color-black);
  z-index: 0;
}

.jury__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 230px 231px 234px 235px 237px;
  gap: 32px;
  justify-content: center;
  padding-inline: 0;
  box-sizing: border-box;
}

.jury-card {
  display: flex;
  flex-direction: column;
}

.jury-card__photo {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 306px;
  background-image: url("../assets/images/jury-1.webp");
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  filter: grayscale(100%);
}

.jury-card:nth-child(1) .jury-card__photo {
  background-image: url("../assets/images/jury-1.webp");
}

.jury-card:nth-child(2) .jury-card__photo {
  background-image: url("../assets/images/jury-2.webp");
}

.jury-card:nth-child(3) .jury-card__photo {
  background-image: url("../assets/images/jury-3.webp");
}

.jury-card:nth-child(4) .jury-card__photo {
  background-image: url("../assets/images/jury-4.webp");
}

.jury-card:nth-child(5) .jury-card__photo {
  background-image: url("../assets/images/jury-5.webp");
}

.jury-card__info {
  position: relative;
  z-index: 1;
  background: transparent;
  padding: 20px 12px 24px;
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 6px;
}

.jury-card__name {
  min-height: 67px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: 0;
  text-align: center;
  color: var(--color-white);
}

.jury-card__social {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.jury-card__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
}

.jury-card__social svg {
  width: 16px;
  height: 16px;
  fill: var(--color-white);
}

.jury-card__social a:hover svg {
  fill: var(--color-accent);
}

/* --------------------------------------------------------------------------
   Launching Ceremony
   -------------------------------------------------------------------------- */

.launching-ceremony {
  --ceremony-frame-w: 1381px;
  --ceremony-visible: 3;
  --ceremony-gap: 32px;
  /* Landscape ~16:9 */
  --ceremony-card-ratio: 9 / 16;
  --ceremony-card-w: 439px;
  --ceremony-card-h: calc(var(--ceremony-card-w) * var(--ceremony-card-ratio));
  --ceremony-play-w: clamp(36px, 8.5cqi, 57.46px);
  --ceremony-play-h: calc(var(--ceremony-play-w) * 49.78 / 57.46);
  --ceremony-nav-size: 48px;
  --ceremony-nav-icon: 20px;
  --ceremony-nav-edge: clamp(6px, 1.2vw, 12px);
  --ceremony-title-gap: clamp(36px, 3.5vw, 48px);

  position: relative;
  z-index: 1;
  padding-top: var(--ceremony-title-gap);
  padding-bottom: var(--section-py);
  background: var(--color-white);
}

.launching-ceremony .container {
  max-width: var(--home-frame);
  padding-inline: clamp(16px, 3vw, 24px);
}

.launching-ceremony .section-title {
  margin-top: 0;
  margin-bottom: var(--ceremony-title-gap);
}

/* Same desktop layout all breakpoints: arrows overlaid on viewport sides */
.launching-ceremony__carousel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: auto;
  grid-template-areas: "stage";
  align-items: center;
  box-sizing: border-box;
  width: min(var(--ceremony-frame-w), 100%);
  max-width: 100%;
  margin-inline: auto;
}

.launching-ceremony__viewport {
  grid-area: stage;
  z-index: 1;
  overflow: hidden;
  width: 100%;
  min-width: 0;
  container-type: inline-size;
  container-name: ceremony;
  touch-action: pan-y;
}

.launching-ceremony__carousel.has-playing-video .launching-ceremony__viewport {
  touch-action: pan-y;
}

.launching-ceremony__track {
  position: relative;
  left: 0;
  display: flex;
  gap: var(--ceremony-gap);
  transition: left 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: left;
}

.launching-ceremony__link {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  overflow: hidden;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

.launching-ceremony__frame {
  position: relative;
  display: block;
  width: 100%;
}

.launching-ceremony__media {
  position: relative;
  display: block;
  width: 100%;
  height: var(--ceremony-card-h);
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #1f1a17;
  border-radius: 2px;
}

.launching-ceremony__thumb {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.launching-ceremony__video {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  background: #1f1a17;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  touch-action: manipulation;
}

.launching-ceremony__card.is-playing .launching-ceremony__video {
  opacity: 1;
  pointer-events: auto;
  z-index: 8;
}

.launching-ceremony__card.is-playing .launching-ceremony__link {
  opacity: 0;
  pointer-events: none;
  z-index: 0;
}

.launching-ceremony__card.is-playing .launching-ceremony__thumb,
.launching-ceremony__card.is-playing .launching-ceremony__play {
  opacity: 0;
  pointer-events: none;
}

.launching-ceremony__loader {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: rgba(20, 16, 14, 0.55);
  color: #fff;
  pointer-events: none;
}

.launching-ceremony__loader[hidden] {
  display: none !important;
}

.launching-ceremony__spinner {
  width: 42px;
  height: 42px;
  border: 3px solid rgba(255, 255, 255, 0.28);
  border-top-color: #fff;
  border-radius: 50%;
  animation: ceremony-spin 0.8s linear infinite;
}

.launching-ceremony__loader-text {
  font-family: var(--font-family);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@keyframes ceremony-spin {
  to {
    transform: rotate(360deg);
  }
}

.launching-ceremony__play {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.launching-ceremony__play::before,
.launching-ceremony__play::after {
  content: "";
  position: absolute;
  width: calc(var(--ceremony-play-w) * 1.45);
  height: calc(var(--ceremony-play-w) * 1.45);
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  pointer-events: none;
}

.launching-ceremony__play::before {
  animation: ceremony-play-ring 2s ease-out infinite;
}

.launching-ceremony__play::after {
  animation: ceremony-play-ring 2s ease-out infinite 1s;
}

.launching-ceremony__play img {
  position: relative;
  z-index: 1;
  width: var(--ceremony-play-w);
  height: var(--ceremony-play-h);
  opacity: 0.78;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.35));
  animation: ceremony-play-soft 2s ease-in-out infinite;
}

@keyframes ceremony-play-ring {
  0% {
    transform: scale(0.92);
    opacity: 0.65;
  }
  100% {
    transform: scale(1.35);
    opacity: 0;
  }
}

@keyframes ceremony-play-soft {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.75;
  }
  50% {
    transform: scale(1.04);
    opacity: 0.9;
  }
}

.launching-ceremony__expand {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 6;
  display: none;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 8px;
  color: #fff;
  background: rgba(28, 22, 18, 0.72);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.launching-ceremony__expand:hover {
  background: var(--color-accent);
  transform: scale(1.05);
}

.launching-ceremony__expand[hidden] {
  display: none !important;
}

.launching-ceremony__meta {
  margin-top: 14px;
  padding-inline: 4px;
  text-align: center;
}

.launching-ceremony__formal {
  margin: 0;
  display: inline-block;
  max-width: 100%;
  padding: 7px 14px;
  font-family: var(--font-family);
  font-size: clamp(14px, 1.45vw, 15px);
  font-weight: 300;
  line-height: 1.35;
  letter-spacing: 0.02em;
  color: #fff;
  background: var(--color-accent);
  text-align: center;
}

.launching-ceremony__roles {
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 4px;
}

.launching-ceremony__roles li {
  margin: 0;
  font-family: var(--font-family);
  font-size: clamp(11px, 1.05vw, 13px);
  font-weight: 400;
  line-height: 1.45;
  color: #5c4f46;
}

.launching-ceremony__card {
  box-sizing: border-box;
  flex: 0 0 var(--ceremony-card-w);
  width: var(--ceremony-card-w);
  max-width: 100%;
  height: auto;
  aspect-ratio: auto;
  opacity: 0.78;
  transition: opacity 0.35s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.launching-ceremony__card.is-active .launching-ceremony__formal {
  background: #be7950;
}

.launching-ceremony__carousel.anim-ready.anim-from-bottom {
  transform: none;
  opacity: 0;
}

.launching-ceremony__carousel.anim-ready.anim-visible {
  transform: none;
  opacity: 1;
}

.launching-ceremony__card.anim-ready.anim-pop {
  transform: none;
}

.launching-ceremony__card.anim-ready:not(.anim-visible) {
  opacity: 0;
}

.launching-ceremony__card.anim-ready.anim-visible {
  opacity: 0.78;
  /* Any ancestor transform breaks native video seek controls in Chromium. */
  transform: none !important;
  will-change: opacity;
}

.launching-ceremony__card.is-active {
  opacity: 1;
}

.launching-ceremony__card.anim-ready.anim-visible.is-active {
  opacity: 1;
}

.launching-ceremony__card.is-playing,
.launching-ceremony__card.is-playing.anim-ready.anim-visible {
  transform: none !important;
  will-change: auto;
}

.launching-ceremony__nav {
  grid-area: stage;
  position: relative;
  z-index: 10;
  align-self: start;
  margin-top: calc(var(--ceremony-card-h) / 2 - var(--ceremony-nav-size) / 2);
  display: flex;
  align-items: center;
  justify-content: center;
  width: var(--ceremony-nav-size);
  height: var(--ceremony-nav-size);
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--color-accent);
  box-shadow: 0 6px 16px rgba(214, 131, 82, 0.32);
  color: #fff;
  cursor: pointer;
  opacity: 1;
  transition: opacity 0.25s ease, background 0.25s ease, color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.launching-ceremony__nav svg {
  display: block;
  width: var(--ceremony-nav-icon);
  height: var(--ceremony-nav-icon);
  transition: transform 0.25s ease;
  pointer-events: none;
}

.launching-ceremony__nav--prev {
  justify-self: start;
  margin-left: var(--ceremony-nav-edge);
}

.launching-ceremony__nav--next {
  justify-self: end;
  margin-right: var(--ceremony-nav-edge);
}

.launching-ceremony__nav.is-active {
  opacity: 1;
  pointer-events: auto;
  cursor: pointer;
  background: var(--color-accent);
  color: #fff;
  box-shadow: 0 6px 18px rgba(214, 131, 82, 0.38);
  animation: ceremony-nav-pulse 1.8s ease-in-out infinite;
}

.launching-ceremony__nav.is-active:hover:not(:disabled) {
  background: #be7950;
  color: #fff;
  transform: scale(1.08);
  box-shadow: 0 8px 22px rgba(214, 131, 82, 0.48);
  animation: none;
}

.launching-ceremony__nav.is-active:hover:not(:disabled) svg {
  transform: scale(1.08);
}

.launching-ceremony__nav:disabled,
.launching-ceremony__nav:not(.is-active),
.launching-ceremony__carousel.is-static .launching-ceremony__nav {
  opacity: 0.42;
  cursor: default;
  pointer-events: auto;
  background: #d9cfc7;
  color: #fff;
  box-shadow: none;
  animation: none;
}

@keyframes ceremony-nav-pulse {
  0%,
  100% {
    box-shadow: 0 6px 16px rgba(214, 131, 82, 0.32);
  }
  50% {
    box-shadow:
      0 8px 22px rgba(214, 131, 82, 0.48),
      0 0 0 4px rgba(214, 131, 82, 0.16);
  }
}

@media (prefers-reduced-motion: reduce) {
  .launching-ceremony__track {
    transition: none;
  }

  .launching-ceremony__play::before,
  .launching-ceremony__play::after,
  .launching-ceremony__play img {
    animation: none;
  }

  .launching-ceremony__nav.is-active {
    animation: none;
  }
}

.launching-ceremony__link:focus-visible,
.launching-ceremony__nav:focus-visible,
.launching-ceremony__expand:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
}

/* Enlarged player lightbox */
.ceremony-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 4vw, 40px);
}

.ceremony-lightbox[hidden] {
  display: none !important;
}

.ceremony-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(18, 14, 12, 0.82);
  cursor: pointer;
}

.ceremony-lightbox__dialog {
  position: relative;
  z-index: 1;
  width: min(1100px, 100%);
  max-height: calc(100vh - 48px);
  display: flex;
  flex-direction: column;
}

.ceremony-lightbox__close {
  position: absolute;
  top: -6px;
  right: -6px;
  z-index: 2;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: #2c241f;
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
}

.ceremony-lightbox__close:hover {
  background: var(--color-accent);
}

.ceremony-lightbox__stage {
  width: 100%;
  background: #000;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.45);
}

.ceremony-lightbox__video {
  display: block;
  width: 100%;
  max-height: calc(100vh - 64px);
  height: auto;
  aspect-ratio: 16 / 9;
  background: #000;
  object-fit: contain;
}

html.ceremony-lightbox-open,
html.ceremony-lightbox-open body {
  overflow: hidden;
}

@media (max-width: 1440px) {
  .launching-ceremony {
    --ceremony-gap: clamp(16px, 2vw, 28px);
  }
}

@media (max-width: 1200px) {
  .launching-ceremony {
    --ceremony-nav-size: 44px;
    --ceremony-nav-icon: 18px;
  }
}

@media (max-width: 900px) {
  .launching-ceremony {
    --ceremony-visible: 2;
    --ceremony-gap: clamp(14px, 2.2vw, 20px);
    --ceremony-nav-size: 42px;
    --ceremony-nav-icon: 17px;
  }
}

@media (max-width: 768px) {
  .launching-ceremony {
    --ceremony-title-gap: 32px;
    padding-top: 0;
    padding-bottom: clamp(48px, 8vw, 72px);
    --ceremony-nav-size: 40px;
    --ceremony-nav-icon: 16px;
    --ceremony-nav-edge: 8px;
  }
}

@media (max-width: 560px) {
  .launching-ceremony {
    --ceremony-visible: 1;
    --ceremony-gap: 12px;
    --ceremony-nav-size: 38px;
    --ceremony-nav-icon: 15px;
    --ceremony-nav-edge: 6px;
  }
}

@media (max-width: 380px) {
  .launching-ceremony {
    --ceremony-nav-size: 36px;
    --ceremony-nav-icon: 14px;
    --ceremony-nav-edge: 4px;
  }
}

/* --------------------------------------------------------------------------
   Events
   -------------------------------------------------------------------------- */

.events {
  --events-gap: 24px;
  --events-card-pad-x: 29.5px; /* (444 - 385) / 2 ≈ content inset */
  --events-card-pad-b: 19px;
  --events-card-max: 444px;
  --events-title-gap: var(--home-title-gap);
  --events-lift: -10px;
  --events-lift-press: -14px;
  --events-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
  --events-shadow-lift: 0 18px 40px rgba(0, 0, 0, 0.14);
  /* Start higher (into title area), run to section end */
  --events-bg-top: calc(
    var(--events-title-gap) + clamp(8px, 1.2vw, 20px) + 46px
  );
  --events-bg-overlay: rgba(243, 243, 243, 0.45);

  position: relative;
  z-index: 1;
  padding-top: var(--home-title-gap);
  padding-bottom: var(--section-py);
  background-color: #F3F3F3;
  overflow: hidden;
  isolation: isolate;
}

/* Background image — removed per client feedback (graphical item) */
.events::before {
  content: none;
  display: none;
}

/* Light overlay — removed with background graphic */
.events::after {
  content: none;
  display: none;
}

.events .container {
  position: relative;
  z-index: 1;
  max-width: var(--home-frame);
  margin-inline: auto;
  padding-inline: clamp(16px, 3vw, 24px);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.events .section-title {
  position: relative;
  z-index: 1;
  width: 100%;
  margin-top: 0;
  margin-bottom: var(--home-title-gap);
}

.events__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--events-gap);
  width: 100%;
  max-width: min(100%, calc(var(--events-card-max) * 3 + var(--events-gap) * 2));
  margin-inline: auto;
  align-items: stretch;
}

.events-card {
  position: relative;
  z-index: 1;
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
  min-height: 476px;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0 var(--events-card-pad-x) var(--events-card-pad-b);
  background: #FFFFFF;
  box-shadow: var(--events-shadow);
  transform: translate3d(0, 0, 0);
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
  -webkit-tap-highlight-color: transparent;
}

.events-card.anim-ready.anim-visible:hover,
.events-card:hover {
  transform: translate3d(0, var(--events-lift), 0) scale(1);
  box-shadow: var(--events-shadow-lift);
}

.events-card.anim-ready.anim-visible:active,
.events-card:active {
  transform: translate3d(0, var(--events-lift-press), 0) scale(1);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.16);
  transition-duration: 0.18s;
}

.events-card:focus-visible {
  outline: 2px solid #D68352;
  outline-offset: 4px;
}

.events-card__media {
  margin: 0 calc(-1 * var(--events-card-pad-x));
  width: calc(100% + var(--events-card-pad-x) * 2);
  flex: 0 0 auto;
  aspect-ratio: 444 / 280;
  min-height: 0;
  overflow: hidden;
  background: #E8E8E8;
}

.events-card__media:not(.events-card__media--crest) img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.events-card:hover .events-card__media:not(.events-card__media--crest) img,
.events-card:active .events-card__media:not(.events-card__media--crest) img {
  transform: scale(1.045);
}

/* 2nd card crest — same on all breakpoints (desktop settings) */
.events-card__media--crest {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  aspect-ratio: 444 / 280;
  padding-left: clamp(19px, 20.5vw, 95px);
  padding-bottom: 0;
  background: linear-gradient(120.57deg, #E6E6E6 7.46%, #B4B4B4 68.57%);
}

.events-card__media--crest img {
  display: block;
  width: auto;
  height: 96%;
  max-height: 96%;
  max-width: min(180px, 70%);
  aspect-ratio: 154 / 224;
  margin: 0;
  padding: 0;
  border: 0;
  flex-shrink: 0;
  align-self: flex-end;
  object-fit: contain;
  object-position: left bottom;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.events-card:hover .events-card__media--crest img,
.events-card:active .events-card__media--crest img {
  transform: translateY(-4px) scale(1.03);
}

.events-card__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1 1 auto;
  min-width: 0;
  min-height: 168px;
  padding-top: 16px;
}

.events-card__title {
  margin: 0 0 16px;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: clamp(18px, 1.35vw, 24px);
  line-height: 1.15;
  letter-spacing: 0;
  color: #161616;
}

.events-card__text {
  margin: 0;
  max-width: 100%;
  font-family: var(--font-family);
  font-weight: 300;
  font-size: clamp(14px, 1.05vw, 16px);
  line-height: 1.25;
  letter-spacing: 0;
  color: #161616;
}

/* Date: icon + orange text only, large gap from description */
.events-card__date {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  padding-top: clamp(20px, 2.5vw, 32px);
  color: #D68352;
}

.events-card__date-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: #D68352;
}

.events-card__date time {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: clamp(13px, 0.95vw, 14px);
  line-height: 1.2;
  letter-spacing: 0;
  color: #D68352;
  white-space: nowrap;
}

@media (max-width: 1440px) {
  .events {
    --events-gap: clamp(14px, 1.6vw, 24px);
    --events-card-pad-x: clamp(16px, 1.8vw, 24px);
    --events-card-pad-b: 16px;
  }

  .events-card {
    min-height: 0;
  }

  .events-card__body {
    min-height: 150px;
  }
}

@media (max-width: 1200px) {
  .events {
    --events-lift: -8px;
    --events-lift-press: -12px;
  }

  .events__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: min(100%, calc(var(--events-card-max) * 2 + var(--events-gap)));
  }

  .events-card:last-child {
    grid-column: 1 / -1;
    max-width: min(100%, var(--events-card-max));
    justify-self: center;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .events {
    --events-gap: 20px;
    --events-card-pad-x: 20px;
    --events-card-pad-b: 16px;
    --events-title-gap: var(--home-title-gap);
    --events-lift: -6px;
    --events-lift-press: -10px;
    padding-top: var(--home-title-gap);
    padding-bottom: clamp(44px, 8vw, 56px);
  }

  .events__grid {
    grid-template-columns: 1fr;
    max-width: min(100%, var(--events-card-max));
  }

  .events-card,
  .events-card:last-child {
    grid-column: auto;
    justify-self: stretch;
    width: 100%;
    max-width: none;
  }

  .events-card__title {
    margin-bottom: 12px;
  }

  .events-card__date {
    gap: 8px;
  }

  .events-card__date time {
    white-space: normal;
  }
}

@media (max-width: 480px) {
  .events {
    --events-card-pad-x: 16px;
    --events-gap: 16px;
    --events-title-gap: 40px;
    padding-top: var(--events-title-gap);
    padding-bottom: 40px;
  }

  .events-card__media:not(.events-card__media--crest) {
    aspect-ratio: 16 / 10;
  }

  .events-card__title {
    font-size: 20px;
  }

  .events-card__text {
    font-size: 14px;
    line-height: 1.3;
  }

  .events-card__date time {
    font-size: 13px;
  }
}

@media (hover: none) {
  .events-card:hover {
    transform: translate3d(0, 0, 0) scale(1);
    box-shadow: var(--events-shadow);
  }

  .events-card:hover .events-card__media:not(.events-card__media--crest) img,
  .events-card:hover .events-card__media--crest img {
    transform: none;
  }

  .events-card:active {
    transform: translate3d(0, var(--events-lift), 0) scale(1);
    box-shadow: var(--events-shadow-lift);
  }

  .events-card:active .events-card__media:not(.events-card__media--crest) img {
    transform: scale(1.03);
  }

  .events-card:active .events-card__media--crest img {
    transform: translateY(-3px) scale(1.02);
  }
}

@media (prefers-reduced-motion: reduce) {
  .events-card,
  .events-card__media img,
  .events-card__media--crest img {
    transition: none;
  }

  .events-card:hover,
  .events-card:active,
  .events-card.anim-ready.anim-visible:hover,
  .events-card.anim-ready.anim-visible:active {
    transform: none;
    box-shadow: var(--events-shadow);
  }

  .events-card:hover .events-card__media img,
  .events-card:active .events-card__media img {
    transform: none;
  }
}

/* --------------------------------------------------------------------------
   About Us
   -------------------------------------------------------------------------- */

.about-us {
  --about-us-media: 466px;
  --about-us-text-w: 812px;
  --about-us-text-h: 341px;
  --about-us-gap: 72px;
  --about-us-title-mb: 40px;
  --about-us-pt: 72px;
  --about-us-pb: 56px;
  --about-us-text-size: 16px;
  --about-us-text-lh: 22px;
  --about-us-para-gap: 16px;
  --about-us-content-gap: 28px;

  position: relative;
  z-index: 2; /* above jury bg; crest (showcase) stays higher */
  scroll-margin-top: calc(var(--header-height) + 12px);
  padding-top: var(--about-us-pt);
  padding-bottom: var(--about-us-pb);
  background: #F3F3F3;
}

.about-us .container {
  max-width: var(--home-frame);
  margin-inline: auto;
  padding-inline: clamp(16px, 3vw, 24px);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about-us .section-title {
  width: min(310px, 100%);
  min-height: 0;
  margin-bottom: var(--about-us-title-mb);
  text-align: center;
}

.about-us__layout {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--about-us-gap);
  width: min(calc(var(--about-us-media) + var(--about-us-gap) + var(--about-us-text-w)), 100%);
}

.about-us__media {
  flex: 0 0 auto;
  width: var(--about-us-media);
  max-width: 100%;
  aspect-ratio: 1 / 1;
  line-height: 0;
}

.about-us__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.about-us__content {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--about-us-content-gap);
  width: var(--about-us-text-w);
  max-width: 100%;
  min-width: 0;
}

.about-us__text {
  box-sizing: border-box;
  width: 100%;
  max-width: var(--about-us-text-w);
  min-height: var(--about-us-text-h);
  font-family: var(--font-family); /* Outfit */
  font-weight: 300;
  font-style: normal;
  font-size: var(--about-us-text-size);
  line-height: var(--about-us-text-lh);
  letter-spacing: 0;
  text-align: justify;
  text-justify: inter-word;
  color: var(--color-black);
}

.about-us__text p {
  margin: 0;
}

.about-us__text p + p {
  margin-top: var(--about-us-para-gap);
}

.about-us__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: 111px;
  height: 35px;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 4px;
  border: 2px solid transparent;
  background:
    linear-gradient(#D68352, #D68352) padding-box,
    linear-gradient(93.11deg, #D67444 0%, #FFCCA5 50%, #D67444 97.12%) border-box;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0;
  color: #FFFFFF;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.about-us__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(214, 116, 68, 0.35);
  color: #FFFFFF;
}

.about-us__btn:active {
  transform: translateY(0);
  box-shadow: 0 4px 10px rgba(214, 116, 68, 0.28);
}

/* About Us — large desktop / laptop */
@media (max-width: 1440px) {
  .about-us {
    --about-us-media: clamp(340px, 28vw, 420px);
    --about-us-text-w: min(812px, 52vw);
    --about-us-text-h: auto;
    --about-us-gap: clamp(36px, 4vw, 56px);
    --about-us-title-mb: 36px;
    --about-us-pt: 64px;
    --about-us-pb: 48px;
    --about-us-text-size: 16px;
    --about-us-text-lh: 22px;
    --about-us-para-gap: 16px;
    --about-us-content-gap: clamp(20px, 2vw, 24px);
  }
}

/* About Us — tablet landscape */
@media (max-width: 1200px) {
  .about-us {
    --about-us-media: clamp(280px, 34vw, 360px);
    --about-us-text-w: min(812px, 54vw);
    --about-us-gap: clamp(28px, 3.5vw, 40px);
    --about-us-title-mb: 32px;
    --about-us-pt: 56px;
    --about-us-pb: 44px;
    --about-us-text-size: 16px;
    --about-us-text-lh: 22px;
    --about-us-para-gap: 14px;
    --about-us-content-gap: 20px;
  }
}

/* About Us — tablet portrait / stack */
@media (max-width: 992px) {
  .about-us {
    --about-us-media: min(400px, 72vw);
    --about-us-text-w: min(812px, 100%);
    --about-us-text-h: auto;
    --about-us-gap: 32px;
    --about-us-title-mb: 28px;
    --about-us-pt: 52px;
    --about-us-pb: 40px;
    --about-us-text-size: 16px;
    --about-us-text-lh: 22px;
    --about-us-para-gap: 14px;
    --about-us-content-gap: 22px;
  }

  .about-us__layout {
    flex-direction: column;
    align-items: center;
    width: min(812px, 100%);
  }

  .about-us__media {
    flex: 0 0 auto;
  }

  .about-us__content {
    width: 100%;
  }
}

/* About Us — mobile */
@media (max-width: 768px) {
  .about-us {
    --about-us-media: min(320px, 86vw);
    --about-us-text-w: 100%;
    --about-us-text-h: auto;
    --about-us-gap: 24px;
    --about-us-title-mb: 24px;
    --about-us-pt: 48px;
    --about-us-pb: 36px;
    --about-us-text-size: 16px;
    --about-us-text-lh: 22px;
    --about-us-para-gap: 14px;
    --about-us-content-gap: 20px;
  }

  .about-us__layout {
    width: 100%;
  }

  .about-us__btn {
    width: auto;
    min-width: 111px;
    height: 36px;
    padding: 10px 16px;
  }
}

@media (max-width: 480px) {
  .about-us {
    --about-us-media: min(280px, 88vw);
    --about-us-gap: 20px;
    --about-us-title-mb: 20px;
    --about-us-pt: 40px;
    --about-us-pb: 32px;
    --about-us-text-size: 16px;
    --about-us-text-lh: 22px;
    --about-us-para-gap: 12px;
    --about-us-content-gap: 18px;
  }
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */

.site-footer {
  --footer-h: 350px;
  --footer-pad-left: 174px;
  --footer-content-w: 773px;
  --footer-content-h: 188px;
  --footer-logo-w: 281px;
  --footer-logo-h: 123px;
  --footer-links-w: 111px;
  --footer-social-w: 135px;
  --footer-col-gap: 123px;
  /* Desktop (1728): top 28 / h 520 / right -5 — scaled in media queries */
  --footer-bg-w: 560px;
  --footer-bg-h: 520px;
  --footer-bg-top: 28px;
  --footer-bg-right: -5px;

  position: relative;
  background: #F1EEE0;
  color: #000000;
  overflow: hidden;
}

.site-footer__bg {
  position: absolute;
  top: var(--footer-bg-top);
  right: var(--footer-bg-right);
  bottom: auto;
  left: auto;
  width: var(--footer-bg-w);
  height: var(--footer-bg-h);
  background: url("../assets/images/footer-background.webp") right center / contain no-repeat;
  opacity: 1;
  pointer-events: none;
  z-index: 0;
}

.site-footer .container.site-footer__inner {
  position: relative;
  z-index: 1;
  box-sizing: border-box;
  width: 100%;
  max-width: var(--home-frame);
  height: var(--footer-h);
  min-height: var(--footer-h);
  padding: 0 24px 0 var(--footer-pad-left);
  display: flex;
  align-items: center;
}

.site-footer__content {
  display: grid;
  grid-template-columns: var(--footer-logo-w) var(--footer-links-w) var(--footer-social-w);
  align-items: start;
  justify-content: start;
  column-gap: var(--footer-col-gap);
  box-sizing: border-box;
  width: var(--footer-content-w);
  max-width: 100%;
  height: var(--footer-content-h);
  padding: 0;
}

.site-footer__brand {
  width: var(--footer-logo-w);
  min-width: 0;
}

.site-footer__logo img {
  display: block;
  width: var(--footer-logo-w);
  height: var(--footer-logo-h);
  object-fit: contain;
  filter: none;
}

.site-footer__heading {
  font-family: var(--font-family);
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0;
  text-transform: none;
  color: #000000;
  white-space: nowrap;
}

.site-footer__links {
  width: var(--footer-links-w);
  min-width: 0;
  box-sizing: border-box;
}

.site-footer__links > .site-footer__heading {
  font-size: 20px;
  line-height: 16px;
  margin-bottom: 28px;
}

.site-footer__links ul {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.site-footer__links a {
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-transform: uppercase;
  color: #000000;
  white-space: nowrap;
}

.site-footer__links a:hover {
  color: var(--color-accent);
}

.site-footer__social {
  width: var(--footer-social-w);
  min-height: 60px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 14px;
}

.site-footer__social > .site-footer__heading {
  font-size: 24px;
  line-height: 16px;
  margin-bottom: 0;
}

.site-footer__icons {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  width: var(--footer-social-w);
  gap: 0;
}

.site-footer__icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  overflow: visible;
}

.site-footer__icons svg {
  width: 20px;
  height: 20px;
  fill: #000000;
  overflow: visible;
}

.site-footer__icons a:hover svg {
  fill: var(--color-accent);
}

.site-footer__bar {
  position: relative;
  z-index: 1;
  background: var(--color-white);
  padding-block: 10px;
}

.site-footer__bar p {
  font-size: 14px;
  color: var(--color-gray-700);
  text-align: center;
  padding-inline: 16px;
}

.site-footer__bar a {
  color: var(--color-gray-700);
}

.site-footer__bar a:hover {
  color: var(--color-black);
}

/* Footer — laptop */
@media (max-width: 1440px) {
  .site-footer {
    --footer-h: 320px;
    --footer-pad-left: clamp(40px, 6vw, 100px);
    --footer-content-w: fit-content;
    --footer-content-h: auto;
    --footer-logo-w: clamp(220px, 18vw, 281px);
    --footer-logo-h: auto;
    --footer-links-w: max-content;
    --footer-social-w: 135px;
    --footer-col-gap: clamp(72px, 6.5vw, 100px);
  }

  .site-footer .container.site-footer__inner {
    padding-right: clamp(24px, 3vw, 40px);
  }

  .site-footer__content {
    width: fit-content;
    max-width: 100%;
    grid-template-columns: var(--footer-logo-w) max-content var(--footer-social-w);
    column-gap: var(--footer-col-gap);
    justify-content: start;
  }

  .site-footer__logo img {
    height: auto;
    aspect-ratio: 281 / 123;
  }

  .site-footer__links > .site-footer__heading {
    font-size: clamp(16px, 1.4vw, 20px);
    margin-bottom: 20px;
  }

  .site-footer__links a {
    font-size: clamp(13px, 1.2vw, 15px);
  }

  .site-footer__social > .site-footer__heading {
    font-size: clamp(18px, 1.6vw, 22px);
  }

  .site-footer__bg {
    --footer-bg-w: clamp(440px, 38.9vw, 560px);
    --footer-bg-h: clamp(410px, 36.1vw, 520px);
    --footer-bg-top: clamp(20px, 1.95vw, 28px);
    --footer-bg-right: -5px;
  }
}

/* Footer — 1300 → 1024: keep social with the group (no right drift) */
@media (max-width: 1300px) and (min-width: 1024px) {
  .site-footer {
    --footer-h: auto;
    --footer-pad-left: clamp(32px, 4vw, 72px);
    --footer-content-w: fit-content;
    --footer-col-gap: clamp(64px, 5.5vw, 92px);
    --footer-logo-w: clamp(200px, 20vw, 250px);
    --footer-social-w: 135px;
  }

  .site-footer .container.site-footer__inner {
    height: auto;
    min-height: 300px;
    padding: 48px clamp(24px, 3vw, 40px) 48px var(--footer-pad-left);
  }

  .site-footer__content {
    width: fit-content;
    max-width: 100%;
    grid-template-columns: var(--footer-logo-w) max-content var(--footer-social-w);
    column-gap: var(--footer-col-gap);
    justify-content: start;
  }

  .site-footer__social,
  .site-footer__icons {
    width: var(--footer-social-w);
    justify-self: start;
  }

  .site-footer__bg {
    --footer-bg-w: clamp(380px, 36vw, 500px);
    --footer-bg-h: clamp(360px, 33vw, 470px);
    --footer-bg-top: clamp(18px, 1.7vw, 24px);
    --footer-bg-right: -5px;
  }
}

/* Footer — tablet landscape / small laptop */
@media (max-width: 1200px) {
  .site-footer {
    --footer-h: auto;
    --footer-pad-left: clamp(24px, 4vw, 56px);
    --footer-content-w: fit-content;
    --footer-col-gap: clamp(52px, 7.5vw, 80px);
    --footer-logo-w: clamp(180px, 20vw, 220px);
  }

  .site-footer .container.site-footer__inner {
    min-height: 0;
    height: auto;
    padding-block: 56px;
    padding-right: clamp(24px, 3vw, 40px);
  }

  .site-footer__content {
    width: fit-content;
    max-width: 100%;
    height: auto;
    grid-template-columns: var(--footer-logo-w) max-content var(--footer-social-w);
    column-gap: var(--footer-col-gap);
    justify-content: start;
  }

  .site-footer__bg {
    --footer-bg-w: clamp(340px, 40vw, 460px);
    --footer-bg-h: clamp(320px, 37vw, 430px);
    --footer-bg-top: clamp(16px, 1.6vw, 22px);
    --footer-bg-right: -5px;
  }
}

/* Footer — tablet */
@media (max-width: 992px) {
  .site-footer {
    --footer-pad-left: 24px;
    --footer-col-gap: 28px;
    --footer-logo-w: 180px;
    --footer-social-w: 120px;
  }

  .site-footer .container.site-footer__inner {
    padding: 48px 24px;
  }

  .site-footer__content {
    width: fit-content;
    max-width: 100%;
    grid-template-columns: var(--footer-logo-w) max-content var(--footer-social-w);
    column-gap: var(--footer-col-gap);
  }

  .site-footer__links > .site-footer__heading {
    font-size: 16px;
    margin-bottom: 16px;
  }

  .site-footer__links ul {
    gap: 5px;
  }

  .site-footer__links a {
    font-size: 13px;
    letter-spacing: 0.06em;
  }

  .site-footer__social > .site-footer__heading {
    font-size: 18px;
  }

  .site-footer__icons {
    width: var(--footer-social-w);
  }

  .site-footer__bg {
    --footer-bg-w: clamp(300px, 42vw, 400px);
    --footer-bg-h: clamp(280px, 39vw, 380px);
    --footer-bg-top: 16px;
    --footer-bg-right: -5px;
  }
}

/* Footer — mobile */
@media (max-width: 768px) {
  .site-footer {
    --footer-logo-w: min(220px, 70vw);
    --footer-links-w: auto;
    --footer-social-w: 135px;
  }

  .site-footer .container.site-footer__inner {
    height: auto;
    min-height: 0;
    padding: 48px 20px;
    justify-content: center;
  }

  .site-footer__content {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    row-gap: 32px;
    width: 100%;
    height: auto;
  }

  .site-footer__brand,
  .site-footer__links,
  .site-footer__social {
    width: auto;
  }

  .site-footer__logo img {
    width: var(--footer-logo-w);
    height: auto;
    margin-inline: auto;
  }

  .site-footer__links > .site-footer__heading {
    font-size: 18px;
    margin-bottom: 16px;
  }

  .site-footer__links ul {
    align-items: center;
    gap: 12px;
  }

  .site-footer__links a {
    font-size: 14px;
  }

  .site-footer__social {
    margin-inline: auto;
    align-items: center;
  }

  .site-footer__social > .site-footer__heading {
    font-size: 20px;
  }

  .site-footer__icons {
    width: 135px;
  }

  .site-footer__bg {
    --footer-bg-w: min(360px, 72vw);
    --footer-bg-h: min(340px, 68vw);
    --footer-bg-top: 20px;
    --footer-bg-right: -5px;
  }

  .site-footer__bar {
    padding-block: 12px;
  }

  .site-footer__bar p {
    font-size: 12px;
    line-height: 1.4;
  }
}

/* Footer — small mobile */
@media (max-width: 480px) {
  .site-footer .container.site-footer__inner {
    padding: 40px 16px;
  }

  .site-footer__content {
    row-gap: 28px;
  }

  .site-footer__logo img {
    width: min(200px, 72vw);
  }

  .site-footer__links > .site-footer__heading {
    font-size: 16px;
    margin-bottom: 14px;
  }

  .site-footer__links a {
    font-size: 13px;
  }

  .site-footer__social > .site-footer__heading {
    font-size: 18px;
  }

  .site-footer__bg {
    top: auto;
    bottom: 52px;
    --footer-bg-w: min(140px, 68vw);
    --footer-bg-h: min(230px, 64vw);
    --footer-bg-top: auto;
    --footer-bg-right: -5px;
    background-position: right bottom;
  }

  .site-footer__bar p {
    font-size: 11px;
  }
}

/* --------------------------------------------------------------------------
   Partners Page
   -------------------------------------------------------------------------- */

.page-banner {
  /* Figma: 1728 × 200 banner */
  --page-banner-h: 200px;
  --page-banner-vector-h: clamp(160px, 15vw, 210px);
  --page-banner-vector-shift: clamp(0px, -3.8vw, -28px);
  position: relative;
  width: 100%;
  max-width: 100%;
  height: var(--page-banner-h);
  min-height: var(--page-banner-h);
  opacity: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.page-banner__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  background: none;
}

/* Group 80.webp + #DBDBDB wash */
.page-banner__bg:not(.page-banner__bg--award) {
  background-color: #DBDBDB;
  background-image: url("../assets/images/Group%2080.webp");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  background-blend-mode: luminosity;
}

.page-banner__bg:not(.page-banner__bg--award)::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #DBDBDB;
  opacity: 0.55;
}

/* Vector — #D68352 asset, flush bottom / right */
.page-banner__bg:not(.page-banner__bg--award)::after {
  content: "";
  position: absolute;
  top: auto;
  bottom: 0;
  right: var(--page-banner-vector-shift);
  z-index: 1;
  width: calc(var(--page-banner-vector-h) * 869 / 400);
  height: var(--page-banner-vector-h);
  transform: none;
  background-color: transparent;
  background-image: url("../assets/images/Vector@2x.png");
  background-position: right bottom;
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
}

.page-banner__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--partners-frame);
  margin-inline: auto;
  padding-inline: 24px;
  text-align: center;
}

.page-banner__title {
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-dark);
}

.page-banner__bg--award {
  background-color: transparent;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)),
    url("../assets/images/hero-bg.webp");
  background-position: center top;
  background-size: cover;
}

.page-banner__bg--award::before,
.page-banner__bg--award::after {
  content: none;
}

.page-banner__bg--award + .page-banner__content .page-banner__title {
  color: var(--color-white);
}

.jury-page-banner {
  /* Shares base .page-banner 1728 × 200 layout */
  opacity: 1;
}

.jury-page-banner .page-banner__title {
  font-size: clamp(32px, 4.2vw, 52px);
}

/* Laptop — smaller vector width than desktop, shifted further right */
@media (max-width: 1440px) and (min-width: 1025px) {
  .page-banner {
    --page-banner-vector-h: clamp(100px, 9.5vw, 130px);
    --page-banner-vector-shift: clamp(-52px, -5vw, -24px);
  }
}

/* Tablet */
@media (max-width: 1024px) {
  .page-banner {
    --page-banner-h: 180px;
    --page-banner-vector-h: clamp(120px, 14vw, 160px);
    --page-banner-vector-shift: clamp(0px, -3.5vw, -22px);
  }

  .page-banner__title {
    font-size: clamp(28px, 4vw, 40px);
  }
}

/* Mobile — smaller logo, stay right, still bottom-flush */
@media (max-width: 768px) {
  .page-banner {
    --page-banner-h: 150px;
    --page-banner-vector-h: clamp(72px, 20vw, 96px);
    --page-banner-vector-shift: clamp(-24px, -5vw, -10px);
  }

  .page-banner__title {
    font-size: clamp(22px, 6vw, 32px);
    letter-spacing: 0.03em;
  }

  .page-banner__content {
    padding-inline: 16px;
  }
}

@media (max-width: 480px) {
  .page-banner {
    --page-banner-h: 132px;
    --page-banner-vector-h: 64px;
    --page-banner-vector-shift: -8px;
  }
}

.jury-detail-page {
  background: #ffffff;
  padding: 72px 24px 96px;
  line-height: 1.5;
}

.jury-detail-page__inner {
  width: 100%;
  max-width: 1268px;
  margin-inline: auto;
}

.jury-detail-page__intro {
  width: 100%;
  margin-bottom: 50px;
}

.jury-detail-page__lead {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 24px;
  line-height: 1.5;
  letter-spacing: 0;
  text-align: justify;
  color: #000000;
  margin-bottom: 12px;
}

.jury-detail-page__desc {
  font-family: var(--font-family);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0;
  text-align: justify;
  color: #161616;
}

.jury-boards-members {
  padding: 0 0 5px;
}

.jury-boards-members__frame {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 248.6687px);
  gap: 29px;
  width: fit-content;
  max-width: 100%;
  margin-inline: 0;
  margin-bottom: 0;
  overflow: visible;
  justify-content: start;
}

/* Space after first row cards → title (screenshot ~60–80px incl. card overhang) */
.jury-boards-members__title {
  width: 100%;
  max-width: 1268px;
  margin: clamp(56px, 7vw, 80px) 0 clamp(28px, 3.5vw, 40px);
  padding: 0;
  font-family: var(--font-family);
  font-weight: 600;
  font-style: normal;
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: 0;
  color: #000000;
  opacity: 1;
}

.jury-boards-members__frame--scholar {
  margin-bottom: 48px;
}

.jury-boards-member {
  position: relative;
  z-index: 1;
  width: 248.6687px;
  min-width: 0;
  overflow: visible;
  --jury-card-right-inset: clamp(10px, 1.1vw, 16px);
  --jury-card-hover-expand: clamp(10px, 1.1vw, 16px);
}

.jury-boards-member__image-wrap {
  width: 100%;
  height: 309.6264px;
  background: #FFCCA5;
  overflow: hidden;
}

.jury-boards-member__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.jury-boards-member__card {
  position: absolute;
  left: 0;
  right: auto;
  bottom: -10px;
  box-sizing: border-box;
  width: 232px;
  max-width: 100%;
  min-height: 74px;
  height: auto;
  background: #FFFFFF;
  padding: 8px 12px;
  border: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition:
    left 0.32s ease,
    width 0.32s ease,
    background-color var(--transition),
    color var(--transition);
  z-index: 2;
}

.jury-boards-member__card h3 {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.1;
  letter-spacing: 0;
  text-transform: uppercase;
  color: #161616;
  margin-bottom: 4px;
  transition: color var(--transition);
}

.jury-boards-member__card p {
  font-family: var(--font-family);
  font-weight: 300;
  font-size: 12px;
  line-height: 1.15;
  letter-spacing: 0;
  color: #404040;
  transition: color var(--transition);
}

.jury-boards-member__card p.is-nowrap {
  white-space: nowrap;
}

.jury-boards-member:hover .jury-boards-member__card {
  left: calc(-1 * var(--jury-card-hover-expand));
  width: calc(232px + var(--jury-card-hover-expand));
  right: auto;
  background: #D67444;
}

.jury-boards-member:hover .jury-boards-member__card h3,
.jury-boards-member:hover .jury-boards-member__card p {
  color: #FFFFFF;
}

/* Legacy homepage jury member styles */
.jury-detail-members {
  width: fit-content;
  max-width: 100%;
  display: grid;
  grid-template-columns: repeat(5, 196px);
  gap: 12px;
  margin-inline: auto;
  margin-bottom: 30px;
}

.jury-detail-member {
  width: 196px;
  min-width: 0;
}

.jury-detail-member__photo-wrap {
  width: 196px;
  height: 191px;
  background: #FFCCA5;
  border: 1px solid #B1B1B1;
  border-bottom: 0;
  overflow: hidden;
}

.jury-detail-member__photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.jury-detail-member__info {
  min-height: 49px;
  background: #FFFFFF;
  border: 1px solid #B1B1B1;
  border-top: 0;
  padding: 8px 10px;
  transition: background-color var(--transition), color var(--transition);
}

.jury-detail-member__info h3 {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 13px;
  line-height: 1.1;
  letter-spacing: 0;
  text-transform: uppercase;
  color: #161616;
  margin-bottom: 3px;
  transition: color var(--transition);
}

.jury-detail-member__info p {
  font-family: var(--font-family);
  font-weight: 300;
  font-size: 10px;
  line-height: 1.2;
  letter-spacing: 0;
  color: #404040;
  transition: color var(--transition);
}

.jury-detail-member:hover .jury-detail-member__info {
  background: #D67444;
}

.jury-detail-member:hover .jury-detail-member__info h3,
.jury-detail-member:hover .jury-detail-member__info p {
  color: #FFFFFF;
}

.jury-detail-policies {
  width: 100%;
  max-width: 1170px;
  margin-inline: auto;
  padding-top: 2px;
}

.jury-detail-policy + .jury-detail-policy {
  margin-top: 14px;
}

.jury-detail-policy h3 {
  font-family: var(--font-family);
  font-weight: 500;
  font-style: normal;
  font-size: 20px;
  line-height: 30px;
  letter-spacing: 0;
  text-align: justify;
  color: #161616;
  margin-bottom: 4px;
}

.jury-detail-policy p,
.jury-detail-policy li {
  font-family: var(--font-family);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0;
  text-align: justify;
  color: #161616;
}

.jury-detail-policy ul {
  list-style: disc;
  padding-left: 22px;
  margin: 4px 0;
}

.jury-detail-policy li {
  position: relative;
  padding-left: 2px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 1200px) {
  .jury-detail-page {
    padding: 56px 20px 80px;
  }

  .jury-detail-page__lead {
    font-size: clamp(20px, 2.2vw, 24px);
  }

  .jury-boards-members__frame {
    grid-template-columns: repeat(3, minmax(0, 248.6687px));
    justify-content: start;
    width: 100%;
    gap: 12px;
  }

  .jury-boards-members__title {
    font-size: clamp(18px, 2.2vw, 22px);
    margin: clamp(48px, 6vw, 64px) 0 clamp(24px, 3vw, 32px);
  }

  .jury-boards-member {
    width: 100%;
  }

  .jury-boards-member__image-wrap {
    height: auto;
    aspect-ratio: 248.6687 / 309.6264;
  }

  .jury-detail-members {
    width: 100%;
    grid-template-columns: repeat(3, minmax(180px, 1fr));
  }

  .jury-detail-member,
  .jury-detail-member__photo-wrap {
    width: 100%;
  }
}

@media (max-width: 992px) {
  .jury-boards-members__frame {
    grid-template-columns: repeat(3, minmax(0, 248.6687px));
    justify-content: start;
    gap: 12px;
  }
}

@media (max-width: 768px) {
  .jury-detail-page {
    padding: 40px 16px 56px;
  }

  .jury-detail-page__lead {
    font-size: clamp(18px, 5vw, 22px);
    line-height: 1.2;
  }

  .jury-detail-page__desc {
    font-size: 15px;
    line-height: 1.45;
  }

  .jury-boards-members__frame {
    grid-template-columns: repeat(2, minmax(0, 248.6687px));
    justify-content: start;
    gap: 10px;
    margin-bottom: 0;
  }

  .jury-boards-members__frame--scholar {
    margin-bottom: 28px;
  }

  .jury-boards-members__title {
    font-size: clamp(16px, 4.5vw, 20px);
    line-height: 1.2;
    margin: clamp(40px, 8vw, 56px) 0 24px;
    text-align: left;
  }

  .jury-boards-member__card {
    width: min(232px, 100%);
    height: auto;
    min-height: 74px;
    right: auto;
    padding: 8px 10px;
  }

  .jury-boards-member:hover .jury-boards-member__card {
    left: calc(-1 * var(--jury-card-hover-expand));
    width: min(calc(232px + var(--jury-card-hover-expand)), 100%);
    right: auto;
  }

  .jury-boards-member__card h3 {
    font-size: 14px;
  }

  .jury-boards-member__card p {
    font-size: 11px;
  }

  .jury-detail-members {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 24px;
  }

  .jury-detail-member__photo-wrap {
    height: clamp(170px, 28vw, 191px);
  }

  .jury-detail-policy h3 {
    font-size: 18px;
    line-height: 1.4;
  }

  .jury-detail-policy p,
  .jury-detail-policy li {
    font-size: 14px;
    line-height: 1.45;
  }
}

@media (max-width: 425px) {
  .jury-page-banner .page-banner__title {
    font-size: 22px;
    line-height: 1.15;
  }

  .jury-boards-members__frame {
    grid-template-columns: 1fr;
    justify-content: stretch;
    gap: 12px;
  }

  .jury-boards-members__title {
    font-size: 16px;
    margin: 36px 0 20px;
    text-align: left;
  }

  .jury-boards-member {
    width: 100%;
    padding-bottom: 62px;
    --jury-card-right-inset: clamp(8px, 2.4vw, 12px);
    --jury-card-hover-expand: clamp(8px, 2.4vw, 12px);
  }

  .jury-boards-member__card {
    width: min(232px, calc(100% - var(--jury-card-right-inset)));
    height: auto;
    min-height: 74px;
    right: auto;
    padding: 7px 9px;
    bottom: 45px;
  }

  .jury-boards-member:hover .jury-boards-member__card {
    left: calc(-1 * var(--jury-card-hover-expand));
    width: min(
      calc(232px + var(--jury-card-hover-expand)),
      calc(100% - var(--jury-card-right-inset) + var(--jury-card-hover-expand))
    );
    right: auto;
  }

  .jury-boards-member__card h3 {
    font-size: 15px;
    margin-bottom: 8px;
  }

  .jury-boards-member__card p {
    font-size: 12px;
  }

  .jury-detail-members {
    grid-template-columns: 1fr;
  }

  .jury-detail-member__photo-wrap {
    height: 191px;
  }
}

/* --------------------------------------------------------------------------
   About the Award Page
   Figma: content 992 | intro 992x217 | copy 541 | objectives 694x537
   -------------------------------------------------------------------------- */

.about-award {
  --about-w: 992px;
  --about-gap: 72px;
  --about-row-gap: 48px;
  --about-intro-border-gap: 20px;
  --about-card: 379px;
  --about-bar: 226px;
  --about-copy-w: 541px;
  --about-objectives-w: 694px;
  --about-intro-h: 217px;
  --about-row-h: 358px;
  --about-objectives-h: 542px;
  --about-decor-w: 772px;
  --about-decor-h: 634.2612915039062px;
  --about-decor-left: -186px;
  /* Figma top 370px from page — offset by header + banner (200) */
  --about-decor-top: calc(370px - var(--header-height) - 200px);
  --about-text: #202020;
  --about-divider: #B6592D;

  position: relative;
  background: #FFFFFF;
  padding-block: clamp(40px, 5vw, 72px);
  color: var(--about-text);
  overflow: visible;
}

.about-award__decor {
  position: absolute;
  top: var(--about-decor-top);
  left: var(--about-decor-left);
  width: var(--about-decor-w);
  height: var(--about-decor-h);
  pointer-events: none;
  z-index: 0;
  opacity: 0.1;
}

.about-award__decor img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: top left;
}

.about-award__inner {
  position: relative;
  z-index: 1;
  width: min(var(--about-w), calc(100% - clamp(32px, 5vw, 48px)));
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: var(--about-row-gap);
}

.about-award__intro {
  width: 100%;
  max-width: var(--about-w);
  min-height: var(--about-intro-h);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: clamp(16px, 2.2vw, 24px);
  padding-bottom: var(--about-intro-border-gap);
  border-bottom: 1px solid var(--about-divider);
}

.about-award__intro p {
  margin: 0;
  font-family: var(--font-family);
  font-weight: 500;
  font-style: normal;
  font-size: 20px;
  line-height: 1.4;
  letter-spacing: 0;
  text-align: justify;
  color: var(--about-text);
}

.about-award__row {
  display: grid;
  align-items: start;
  width: 100%;
  gap: var(--about-gap);
}

.about-award__row--festival,
.about-award__row--award {
  min-height: var(--about-row-h);
  align-items: center;
}

.about-award__row--festival {
  grid-template-columns: minmax(0, var(--about-card)) minmax(0, 1fr);
}

.about-award__row--award {
  grid-template-columns: minmax(0, 1fr) minmax(0, var(--about-card));
}

.about-award__row--objectives {
  grid-template-columns: minmax(0, var(--about-bar)) minmax(0, 1fr);
  align-items: stretch;
  min-height: var(--about-objectives-h);
  gap: var(--about-gap);
}

.about-award__media {
  flex-shrink: 0;
  width: var(--about-card);
  max-width: 100%;
  align-self: start;
  line-height: 0;
}

.about-award__media img {
  display: block;
  width: var(--about-card);
  max-width: 100%;
  height: auto;
  object-fit: contain;
  object-position: top left;
}

.about-award__row--festival .about-award__media,
.about-award__row--award .about-award__media {
  align-self: center;
}

.about-award__media--bar {
  width: var(--about-bar);
  height: auto;
  align-self: start;
}

.about-award__media--bar picture {
  display: block;
  width: 100%;
}

.about-award__media--bar img {
  display: block;
  width: var(--about-bar);
  max-width: 100%;
  height: var(--about-objectives-h);
  aspect-ratio: 226 / 542;
  object-fit: contain;
  object-position: top left;
}

.about-award__copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-self: start;
  gap: 20px;
  width: 100%;
  max-width: var(--about-copy-w);
  min-width: 0;
}

.about-award__row--festival .about-award__copy,
.about-award__row--award .about-award__copy {
  justify-content: center;
  align-self: center;
  min-height: 0;
}

.about-award__row--award .about-award__copy {
  margin-top: 2px;
}

.about-award__copy p {
  margin: 0;
  font-family: var(--font-family);
  font-weight: 300;
  font-style: normal;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0;
  text-align: justify;
  color: var(--about-text);
}

.about-award__objectives {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-self: stretch;
  gap: 20px;
  width: 100%;
  max-width: var(--about-objectives-w);
  min-height: var(--about-objectives-h);
  min-width: 0;
}

.about-award__objectives-title {
  margin: 0;
  font-family: var(--font-family);
  font-weight: 500;
  font-style: normal;
  font-size: 24px;
  line-height: 1.25;
  letter-spacing: 0;
  text-align: justify;
  color: var(--about-text);
}

.about-award__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-award__list li {
  position: relative;
  margin: 0;
  padding-left: 18px;
  font-family: var(--font-family);
  font-weight: 300;
  font-style: normal;
  font-size: 18px;
  line-height: 1.35;
  letter-spacing: 0;
  text-align: justify;
  color: var(--about-text);
}

.about-award__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--about-text);
}

@media (max-width: 1200px) {
  .about-award {
    --about-card: clamp(260px, 26vw, 340px);
    --about-bar: clamp(160px, 16vw, 200px);
    --about-gap: clamp(28px, 3.5vw, 48px);
    --about-copy-w: 541px;
    --about-objectives-w: 694px;
    --about-decor-w: min(772px, 64vw);
    --about-decor-left: clamp(-140px, -12vw, -186px);
  }
}

@media (max-width: 1100px) {
  .about-award {
    --about-card: clamp(240px, 24vw, 300px);
    --about-bar: clamp(150px, 15vw, 190px);
    --about-copy-w: 541px;
    --about-objectives-w: 694px;
    --about-gap: clamp(24px, 3vw, 40px);
    --about-row-gap: clamp(36px, 4.5vw, 48px);
    --about-intro-border-gap: clamp(16px, 2vw, 20px);
    --about-row-h: auto;
    --about-decor-w: min(772px, 68vw);
    --about-decor-h: auto;
    --about-decor-left: clamp(-120px, -12vw, -186px);
    padding-block: clamp(44px, 5vw, 56px);
  }

  .about-award__decor {
    aspect-ratio: 772 / 634.26;
  }

  .about-award__intro {
    min-height: 0;
  }

  .about-award__row--festival,
  .about-award__row--award {
    min-height: 0;
  }

  .about-award__intro p {
    font-size: clamp(17px, 1.6vw, 20px);
    line-height: 1.25;
  }

  .about-award__copy p,
  .about-award__list li {
    font-size: clamp(16px, 1.5vw, 18px);
    line-height: 1.35;
  }

  .about-award__objectives-title {
    font-size: clamp(20px, 2vw, 24px);
    line-height: 1.25;
  }

  .about-award__list {
    gap: clamp(16px, 1.8vw, 20px);
  }

  .about-award__list li {
    line-height: 1.35;
  }
}

@media (max-width: 900px) {
  .about-award {
    --about-card: min(340px, 88vw);
    --about-bar: min(200px, 48vw);
    --about-copy-w: 100%;
    --about-objectives-w: 100%;
    --about-gap: clamp(24px, 4vw, 40px);
    --about-row-gap: clamp(32px, 5vw, 40px);
    --about-intro-border-gap: clamp(14px, 2.5vw, 18px);
    --about-decor-w: min(480px, 88vw);
    --about-decor-left: clamp(-60px, -8vw, -80px);
    --about-decor-top: 0;
    padding-block: clamp(36px, 5vw, 48px);
  }

  .about-award__inner {
    width: min(var(--about-w), calc(100% - clamp(28px, 5vw, 40px)));
  }

  .about-award__intro {
    min-height: 0;
  }

  .about-award__row--festival,
  .about-award__row--award,
  .about-award__row--objectives {
    grid-template-columns: 1fr;
    min-height: 0;
    gap: clamp(24px, 4vw, 32px);
  }
  .about-award__row--award {
    align-items: stretch;
  }

  .about-award__row--festival .about-award__copy,
  .about-award__row--award .about-award__copy {
    justify-content: flex-start;
    align-self: stretch;
    margin-top: 0;
  }

  .about-award__row--award .about-award__media {
    order: -1;
  }

  .about-award__media {
    width: min(var(--about-card), 100%);
    margin-inline: auto;
  }

  .about-award__media img {
    width: 100%;
    margin-inline: auto;
  }

  .about-award__media--bar {
    width: 100%;
    max-width: 542px;
    margin-inline: auto;
  }

  .about-award__media--bar img {
    width: 100%;
    height: auto;
    aspect-ratio: 542 / 226;
    object-fit: contain;
  }

  .about-award__copy,
  .about-award__objectives {
    width: 100%;
    align-self: stretch;
    min-height: 0;
  }
}

@media (max-width: 768px) {
  .about-award {
    --about-card: min(320px, 92vw);
    --about-bar: min(160px, 44vw);
    --about-row-gap: clamp(28px, 4.5vw, 36px);
    --about-intro-border-gap: 14px;
    --about-decor-w: min(400px, 92vw);
    --about-decor-left: -48px;
  }

  .about-award__row--festival .about-award__copy,
  .about-award__row--award .about-award__copy {
    justify-content: flex-start;
  }
}

@media (max-width: 600px) {
  .about-award {
    padding-block: 32px;
    --about-row-gap: 28px;
    --about-intro-border-gap: 12px;
    --about-gap: 20px;
    --about-card: min(280px, 100%);
    --about-bar: min(120px, 36vw);
    --about-decor-w: min(300px, 96vw);
    --about-decor-left: -28px;
  }

  .about-award__inner {
    width: calc(100% - 24px);
  }

  .about-award__intro,
  .about-award__copy,
  .about-award__objectives {
    gap: 12px;
  }

  .about-award__intro p {
    font-size: 15px;
    line-height: 1.35;
  }

  .about-award__copy p,
  .about-award__list li {
    font-size: 14px;
    line-height: 1.45;
  }

  .about-award__objectives-title {
    font-size: 17px;
    line-height: 1.3;
  }

  .about-award__list {
    gap: 10px;
  }

  .about-award__list li {
    padding-left: 14px;
  }

  .about-award__media--bar {
    margin-inline: auto;
  }
}

/* --------------------------------------------------------------------------
   Award Categories Page
   Figma: intro 1025x102 | content 1170 | note 1380
   -------------------------------------------------------------------------- */

.award-categories {
  --ac-text: #161616;
  --ac-trigger-bg: #FFF3E9;
  --ac-trigger-color: #D78453;
  --ac-page-pad-x: 24px;
  --ac-page-pad-top: 72px;
  --ac-page-pad-bottom: 80px;
  --ac-section-gap: 48px;
  --ac-bar-gap: 34px;
  --ac-trigger-gap: 10px;
  --ac-accordion-gap: 10px;
  --ac-trigger-min-h: 41px;
  --ac-trigger-pad: 12px;
  --ac-content-pad: 12px 14px 14px;
  --ac-intro-fs: 32px;
  --ac-intro-lh: 1.3;
  --ac-intro-mb: 40px;
  --ac-bar-fs: 24px;
  --ac-bar-lh: 1.2;
  --ac-trigger-fs: 24px;
  --ac-trigger-lh: 1.2;
  --ac-stream-fs: 24px;
  --ac-stream-lh: 24px;
  --ac-block-title-fs: 20px;
  --ac-block-title-lh: 24px;
  --ac-body-fs: 16px;
  --ac-body-lh: 32px;
  --ac-block-gap: 20px;
  --ac-note-mt: 80px;
  --ac-note-title-fs: 24px;
  --ac-note-title-lh: 32px;
  --ac-note-body-fs: 16px;
  --ac-note-body-lh: 24px;
  --ac-chevron-size: 24px;

  background: #FFFFFF;
  padding: var(--ac-page-pad-top) 0 var(--ac-page-pad-bottom);
  color: var(--ac-text);
}

@media (max-width: 1440px) {
  .award-categories {
    --ac-intro-fs: 28px;
    --ac-stream-fs: 22px;
    --ac-stream-lh: 1.25;
  }
}

.award-categories__inner {
  width: min(var(--ac-content-w), calc(100% - var(--ac-page-pad-x) * 2));
  max-width: var(--ac-content-w);
  margin-inline: auto;
}

.award-categories__intro {
  width: min(var(--ac-intro-w), 100%);
  max-width: var(--ac-intro-w);
  margin: 0 0 var(--ac-intro-mb);
  font-family: var(--font-family);
  font-weight: 600;
  font-size: var(--ac-intro-fs);
  line-height: var(--ac-intro-lh);
  letter-spacing: 0;
  text-align: justify;
  color: var(--ac-text);
}

.award-categories__group + .award-categories__group {
  margin-top: var(--ac-section-gap);
}

.award-categories__section-bar {
  width: 100%;
  min-height: var(--ac-trigger-min-h);
  margin: 0 0 var(--ac-bar-gap);
  padding: var(--ac-trigger-pad);
  background: #D78453;
  display: flex;
  align-items: center;
}

.award-categories__section-bar h2 {
  margin: 0;
  width: 100%;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: var(--ac-bar-fs);
  line-height: var(--ac-bar-lh);
  letter-spacing: 0;
  text-transform: uppercase;
  text-align: justify;
  color: #FFFFFF;
  overflow-wrap: anywhere;
}

.ac-accordion {
  display: flex;
  flex-direction: column;
  gap: var(--ac-accordion-gap);
}

.ac-accordion__item {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.award-categories .ac-accordion__item.anim-ready {
  transition:
    transform 0.72s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.65s ease-out;
}

.ac-accordion__trigger {
  width: 100%;
  flex: 0 0 auto;
  align-self: stretch;
  min-height: var(--ac-trigger-min-h);
  height: auto;
  border: 0;
  background: var(--ac-trigger-bg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--ac-trigger-gap);
  padding: var(--ac-trigger-pad);
  cursor: pointer;
  transition:
    background-color 0.3s ease,
    box-shadow 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  min-width: 0;
}

.ac-accordion__trigger:hover {
  background: #FFE8D6;
}

.ac-accordion__trigger:focus-visible {
  outline: 2px solid #D78453;
  outline-offset: 2px;
}

.ac-accordion__item.is-open .ac-accordion__trigger {
  box-shadow: inset 0 -1px 0 rgba(215, 132, 83, 0.22);
}

.ac-accordion__title {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: var(--ac-trigger-fs);
  line-height: var(--ac-trigger-lh);
  letter-spacing: 0;
  text-align: left;
  color: var(--ac-trigger-color);
  overflow-wrap: anywhere;
  min-width: 0;
}

.ac-accordion__chevron {
  width: var(--ac-chevron-size);
  height: var(--ac-chevron-size);
  color: var(--ac-trigger-color);
  flex-shrink: 0;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.ac-accordion__item.is-open .ac-accordion__chevron {
  transform: rotate(180deg);
}

/* Height animates on content only — trigger stays compact */
.ac-accordion__content {
  display: grid;
  grid-template-rows: 0fr;
  background: #FFFFFF;
  color: var(--ac-text);
  border-bottom: 0 solid #D68352;
  opacity: 1;
  transform: none;
  transition:
    grid-template-rows 0.4s cubic-bezier(0.33, 1, 0.68, 1),
    border-bottom-width 0.25s ease;
}

.ac-accordion__item.is-open .ac-accordion__content {
  grid-template-rows: 1fr;
  border-bottom-width: 1px;
}

.ac-accordion__panel {
  overflow: hidden;
  min-height: 0;
  padding: 0;
  opacity: 0;
  transform: translateY(-6px);
  transition:
    opacity 0.28s ease 0.04s,
    transform 0.34s cubic-bezier(0.22, 1, 0.36, 1);
}

.ac-accordion__item.is-open .ac-accordion__panel {
  padding: var(--ac-content-pad);
  opacity: 1;
  transform: translateY(0);
}

.ac-accordion__item.is-initial-open .ac-accordion__content,
.ac-accordion__item.is-initial-open .ac-accordion__panel {
  transition: none;
}

.award-categories .ac-accordion__item.anim-ready.anim-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.ac-stream__title {
  margin: 0 0 8px;
  font-family: var(--font-family);
  font-weight: 600;
  font-style: normal;
  font-size: var(--ac-stream-fs);
  line-height: var(--ac-stream-lh);
  letter-spacing: 0;
  text-align: justify;
  color: var(--ac-text);
}

.ac-stream__lead {
  margin: 0 0 var(--ac-block-gap);
  font-family: var(--font-family);
  font-weight: 300;
  font-size: var(--ac-body-fs);
  line-height: var(--ac-body-lh);
  letter-spacing: 0;
  text-align: justify;
  color: var(--ac-text);
}

.ac-block + .ac-block {
  margin-top: var(--ac-block-gap);
}

.ac-block__title {
  margin: 0 0 8px;
  font-family: var(--font-family);
  font-weight: 500;
  font-style: normal;
  font-size: var(--ac-block-title-fs);
  line-height: var(--ac-block-title-lh);
  letter-spacing: 0;
  text-align: justify;
  color: var(--ac-text);
}

.ac-block__text {
  margin: 0;
  font-family: var(--font-family);
  font-weight: 300;
  font-size: var(--ac-body-fs);
  line-height: var(--ac-body-lh);
  letter-spacing: 0;
  text-align: justify;
  color: var(--ac-text);
}

.ac-block__text + .ac-block__text,
.ac-block__text + .ac-block__list {
  margin-top: 8px;
}

.ac-block__text strong {
  font-weight: 600;
  color: var(--ac-text);
}

.ac-block__list {
  margin: 8px 0 0;
  padding-left: 20px;
  list-style: disc;
}

.ac-block__list li {
  font-family: var(--font-family);
  font-weight: 300;
  font-size: var(--ac-body-fs);
  line-height: var(--ac-body-lh);
  letter-spacing: 0;
  text-align: justify;
  color: var(--ac-text);
}

.ac-block__list li strong {
  font-weight: 600;
  color: var(--ac-text);
}

.ac-block__list li + li {
  margin-top: 4px;
}

.award-categories__note {
  width: 100%;
  margin-top: var(--ac-note-mt);
  padding-inline: var(--ac-page-pad-x);
  background: transparent;
}

.award-categories__note-inner {
  width: min(var(--ac-note-w), 100%);
  max-width: var(--ac-note-w);
  margin-inline: auto;
}

.award-categories__note-title {
  margin: 0 0 12px;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: var(--ac-note-title-fs);
  line-height: var(--ac-note-title-lh);
  letter-spacing: 0;
  text-transform: uppercase;
  color: #D68352;
}

.award-categories__note-rule {
  width: 100%;
  height: 1px;
  margin: 0 0 24px;
  background: #D68352;
}

.award-categories__note-text {
  margin: 0;
  font-family: var(--font-family);
  font-weight: 300;
  font-size: var(--ac-note-body-fs);
  line-height: var(--ac-note-body-lh);
  letter-spacing: 0;
  text-align: justify;
  color: var(--ac-text);
}

@media (max-width: 1200px) {
  .award-categories {
    --ac-intro-fs: clamp(26px, 2.6vw, 32px);
    --ac-intro-lh: 1.3;
    --ac-bar-fs: clamp(21px, 2.1vw, 24px);
    --ac-bar-lh: 1.25;
    --ac-trigger-fs: clamp(21px, 2.1vw, 24px);
    --ac-trigger-lh: 1.25;
    --ac-stream-fs: clamp(20px, 2vw, 22px);
    --ac-stream-lh: 1.25;
    --ac-block-title-fs: clamp(18px, 1.75vw, 20px);
    --ac-block-title-lh: 1.25;
    --ac-body-fs: clamp(15px, 1.45vw, 16px);
    --ac-body-lh: clamp(28px, 2.7vw, 32px);
    --ac-note-title-fs: clamp(21px, 2.1vw, 24px);
    --ac-note-body-fs: clamp(15px, 1.45vw, 16px);
    --ac-note-body-lh: clamp(22px, 2.1vw, 24px);
  }
}

@media (max-width: 992px) {
  .award-categories {
    --ac-page-pad-top: 56px;
    --ac-page-pad-bottom: 64px;
    --ac-page-pad-x: 20px;
    --ac-section-gap: 48px;
    --ac-intro-mb: 32px;
    --ac-note-mt: 64px;
    --ac-intro-fs: clamp(24px, 3.2vw, 28px);
    --ac-intro-lh: 1.3;
    --ac-bar-fs: clamp(20px, 2.4vw, 22px);
    --ac-bar-lh: 1.3;
    --ac-trigger-fs: clamp(20px, 2.4vw, 22px);
    --ac-trigger-lh: 1.3;
    --ac-stream-fs: clamp(20px, 2.4vw, 22px);
    --ac-stream-lh: 1.3;
    --ac-block-title-fs: clamp(17px, 2vw, 19px);
    --ac-block-title-lh: 1.3;
    --ac-body-fs: 15px;
    --ac-body-lh: 28px;
    --ac-note-title-fs: clamp(20px, 2.4vw, 22px);
    --ac-note-body-fs: 15px;
    --ac-note-body-lh: 23px;
  }
}

@media (max-width: 768px) {
  .award-categories {
    --ac-page-pad-top: 48px;
    --ac-page-pad-bottom: 56px;
    --ac-section-gap: 40px;
    --ac-intro-mb: 28px;
    --ac-note-mt: 52px;
    --ac-intro-fs: 24px;
    --ac-intro-lh: 1.35;
    --ac-bar-fs: 20px;
    --ac-bar-lh: 1.35;
    --ac-trigger-fs: 20px;
    --ac-trigger-lh: 1.35;
    --ac-stream-fs: 20px;
    --ac-stream-lh: 1.35;
    --ac-block-title-fs: 18px;
    --ac-block-title-lh: 1.35;
    --ac-body-fs: 15px;
    --ac-body-lh: 27px;
    --ac-block-gap: 18px;
    --ac-note-title-fs: 20px;
    --ac-note-title-lh: 1.35;
    --ac-note-body-fs: 15px;
    --ac-note-body-lh: 22px;
  }

  .award-categories__section-bar h2,
  .ac-accordion__title {
    text-align: left;
  }

  .award-categories__intro {
    text-align: left;
  }

  .ac-stream__title,
  .ac-stream__lead,
  .ac-block__title,
  .ac-block__text,
  .ac-block__list li,
  .award-categories__note-text {
    text-align: left;
  }

  .award-categories__inner,
  .award-categories__note-inner {
    width: 100%;
    max-width: none;
  }
}

@media (max-width: 600px) {
  .award-categories {
    --ac-page-pad-top: 40px;
    --ac-page-pad-bottom: 48px;
    --ac-page-pad-x: 16px;
    --ac-section-gap: 36px;
    --ac-bar-gap: 28px;
    --ac-trigger-gap: 8px;
    --ac-accordion-gap: 8px;
    --ac-trigger-min-h: 38px;
    --ac-trigger-pad: 10px 12px;
    --ac-content-pad: 10px 12px 12px;
    --ac-intro-mb: 24px;
    --ac-note-mt: 40px;
    --ac-intro-fs: 22px;
    --ac-intro-lh: 1.4;
    --ac-bar-fs: 18px;
    --ac-bar-lh: 1.4;
    --ac-trigger-fs: 18px;
    --ac-trigger-lh: 1.4;
    --ac-stream-fs: 18px;
    --ac-stream-lh: 1.4;
    --ac-block-title-fs: 16px;
    --ac-block-title-lh: 1.4;
    --ac-body-fs: 14px;
    --ac-body-lh: 26px;
    --ac-block-gap: 16px;
    --ac-note-title-fs: 18px;
    --ac-note-title-lh: 1.4;
    --ac-note-body-fs: 14px;
    --ac-note-body-lh: 22px;
    --ac-chevron-size: 20px;
  }

  .award-categories__note {
    padding-inline: var(--ac-page-pad-x);
  }
}

@media (max-width: 480px) {
  .award-categories {
    --ac-page-pad-x: 14px;
    --ac-section-gap: 32px;
    --ac-intro-fs: 20px;
    --ac-intro-lh: 1.45;
    --ac-bar-fs: 16px;
    --ac-trigger-fs: 16px;
    --ac-stream-fs: 16px;
    --ac-stream-lh: 1.45;
    --ac-block-title-fs: 15px;
    --ac-block-title-lh: 1.45;
    --ac-body-fs: 13px;
    --ac-body-lh: 24px;
    --ac-note-title-fs: 16px;
    --ac-note-body-fs: 13px;
    --ac-note-body-lh: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ac-accordion__item {
    transition: none;
  }

  .ac-accordion__content,
  .ac-accordion__panel,
  .ac-accordion__chevron,
  .ac-accordion__trigger {
    transition: none;
  }
}

/* --------------------------------------------------------------------------
   Privilege of Winners Page
   -------------------------------------------------------------------------- */

.privilege-page {
  position: relative;
  background: var(--color-white);
  padding-top: 72px;
  padding-bottom: 80px;
  color: var(--privilege-text-color);
  overflow: visible;
}

.privilege-page__shell {
  position: relative;
  width: 100%;
  max-width: var(--privilege-frame);
  margin-inline: auto;
  padding-left: 0;
  padding-right: clamp(24px, 4vw, 40px);
}

.privilege-page__decor {
  position: absolute;
  left: 0;
  top: calc(72px + 38px);
  width: var(--privilege-decor-w);
  height: var(--privilege-decor-h);
  overflow: visible;
  opacity: 0.72;
  pointer-events: none;
  z-index: 2;
}

.privilege-page__decor img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: fill;
}

.privilege-page__content {
  position: relative;
  z-index: 3;
  width: min(var(--privilege-content-w), 100%);
  margin-left: clamp(24px, var(--privilege-content-left-ratio), var(--privilege-content-left));
  padding-right: clamp(16px, 3vw, 32px);
}

.privilege-page__title {
  width: min(var(--privilege-title-w), 100%);
  max-width: var(--privilege-title-w);
  min-height: var(--privilege-title-h);
  margin-bottom: 36px;
  font-family: var(--font-family);
  font-size: clamp(28px, 3.6vw, 48px);
  font-weight: 600;
  font-style: normal;
  line-height: 1.2;
  letter-spacing: 0;
  text-transform: uppercase;
  text-align: left;
  color: var(--privilege-title-color);
}

.privilege-page__list-wrap {
  width: min(var(--privilege-list-w), 100%);
  min-height: var(--privilege-list-h);
  margin-bottom: 40px;
}

.privilege-page__list-block + .privilege-page__list-block {
  margin-top: 22px;
}

.privilege-page__list-block h3 {
  font-family: var(--font-family);
  font-size: 20px;
  font-weight: 500;
  font-style: normal;
  line-height: 24px;
  letter-spacing: 0;
  text-align: justify;
  color: var(--privilege-text-color);
  margin-bottom: 10px;
}

.privilege-page__list-block ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.privilege-page__list-block li {
  font-family: var(--font-family);
  font-size: 16px;
  font-weight: 300;
  font-style: normal;
  line-height: 32px;
  letter-spacing: 0;
  text-align: justify;
  color: var(--privilege-text-color);
  position: relative;
  padding-left: 16px;
}

.privilege-page__list-block li::before {
  content: "\2022";
  position: absolute;
  left: 0;
  top: 0;
}

.privilege-table-shell {
  position: relative;
  width: min(var(--privilege-table-w), 100%);
  max-width: 100%;
}

.privilege-table-wrap {
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  /* Native scrollbar hidden — custom bar below stays always visible when needed */
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.privilege-table-wrap::-webkit-scrollbar {
  display: none;
  height: 0;
}

.privilege-table-scroll {
  display: none;
  height: 8px;
  margin-top: 10px;
  padding: 0 2px;
}

.privilege-table-shell.is-scrollable .privilege-table-scroll {
  display: block;
}

.privilege-table-scroll__track {
  position: relative;
  width: 100%;
  height: 8px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.privilege-table-scroll__thumb {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  min-width: 40px;
  width: 40%;
  border-radius: 999px;
  background: #cb8056;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.06);
}

.privilege-table-shell.is-scrollable::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 18px;
  width: 48px;
  pointer-events: none;
  z-index: 3;
  background: linear-gradient(to left, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.55) 45%, transparent 100%);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.privilege-table-shell.is-scrollable.can-scroll-right::after {
  opacity: 1;
}

.privilege-table-more {
  position: absolute;
  top: 50%;
  right: 10px;
  z-index: 4;
  display: none;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-top: -26px;
  border-radius: 999px;
  background: #cb8056;
  color: #fff;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.22);
  pointer-events: none;
  opacity: 0;
  transform: translateX(4px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.privilege-table-shell.is-scrollable .privilege-table-more {
  display: flex;
}

.privilege-table-shell.is-scrollable.can-scroll-right .privilege-table-more {
  opacity: 1;
  transform: translateX(0);
  animation: privilege-table-nudge 1.6s ease-in-out infinite;
}

.privilege-table-more__icon {
  width: 10px;
  height: 10px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg) translate(-1px, -1px);
}

@keyframes privilege-table-nudge {
  0%,
  100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(4px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .privilege-table-shell.is-scrollable.can-scroll-right .privilege-table-more {
    animation: none;
  }
}

.privilege-table {
  width: 100%;
  min-height: var(--privilege-table-h);
  border-collapse: separate;
  border-spacing: 2px;
  background: #ffffff;
}

.privilege-table th,
.privilege-table td {
  padding: 12px 14px;
  text-align: left;
  vertical-align: middle;
}

.privilege-table th {
  background: var(--color-accent);
  color: var(--color-white);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
}

.privilege-table td {
  background: #F2F2F2;
  color: var(--privilege-text-color);
  font-family: var(--font-family);
  font-size: 16px;
  font-weight: 400;
  font-style: normal;
  line-height: 1.2;
  letter-spacing: 0;
  vertical-align: middle;
}

.privilege-table td[rowspan],
.privilege-table__group {
  width: 24%;
  text-align: center;
  line-height: 1.3;
}

.privilege-table td:nth-child(2) {
  width: 42%;
}

.privilege-table td:last-child {
  width: 34%;
}

@media (min-width: 1200px) and (max-width: 1728px) {
  .privilege-page__shell {
    padding-left: 0;
    padding-right: clamp(24px, 4vw, 40px);
  }

  .privilege-page__content {
    margin-left: var(--privilege-content-left-ratio);
    width: min(var(--privilege-content-w), calc(100% - var(--privilege-content-left-ratio)));
  }

  .privilege-page__decor {
    width: var(--privilege-decor-w-ratio);
    height: auto;
    aspect-ratio: 361 / 595;
  }
}

@media (min-width: 1728px) {
  .privilege-page__shell {
    padding-left: 0;
    padding-right: clamp(24px, calc((100vw - var(--privilege-frame)) / 2), 48px);
  }

  .privilege-page__content {
    margin-left: var(--privilege-content-left);
    width: var(--privilege-content-w);
    max-width: var(--privilege-content-w);
  }

  .privilege-page__decor {
    width: var(--privilege-decor-w);
    height: var(--privilege-decor-h);
  }
}

/* --------------------------------------------------------------------------
   Nominate Page
   -------------------------------------------------------------------------- */

.nominate-page {
  background: #FFFFFF;
  padding: clamp(40px, 5vw, 72px) clamp(16px, 3vw, 24px) clamp(48px, 6vw, 96px);
}

.nominate-page__inner {
  width: 100%;
  max-width: var(--nominate-frame, 1170px);
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: clamp(40px, 5vw, 72px);
}

.nominate-form {
  width: 100%;
  min-width: 0;
}

.nominate-form__intro {
  --nominate-intro-gap: clamp(16px, 2vw, 24px);
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
}

.nominate-form__intro--submit {
  --nominate-intro-gap: clamp(24px, 3vw, 42px);
}

.nominate-form__lead {
  margin: 0 0 var(--nominate-intro-gap);
  padding: 0;
  font-family: var(--font-family);
  font-weight: 500;
  font-style: normal;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.3;
  letter-spacing: 0;
  text-align: justify;
  color: #161616;
  overflow-wrap: break-word;
}

.nominate-form__section-title {
  margin: 0;
  padding: 0;
  font-family: var(--font-family);
  font-weight: 600;
  font-style: normal;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.2;
  letter-spacing: 0;
  text-align: justify;
  color: #D68352;
  overflow-wrap: break-word;
}

.nominate-form__intro-title {
  margin: 0 0 var(--nominate-intro-gap);
  padding: 0;
  font-family: var(--font-family);
  font-weight: 500;
  font-style: normal;
  font-size: clamp(18px, 2.2vw, 24px);
  line-height: 1.25;
  letter-spacing: 0;
  text-align: justify;
  color: #161616;
  overflow-wrap: break-word;
  hyphens: auto;
}

.nominate-form__intro-text {
  margin: 0;
  font-family: var(--font-family);
  font-weight: 300;
  font-style: normal;
  font-size: clamp(14px, 1.5vw, 16px);
  line-height: 1.35;
  letter-spacing: 0;
  text-align: justify;
  color: #161616;
  overflow-wrap: break-word;
}

.nominate-form__header {
  min-height: 41px;
  background: #D68352;
  border: 1px solid #D68352;
  display: flex;
  align-items: center;
  padding: clamp(8px, 1.2vw, 10px) clamp(10px, 1.4vw, 14px);
}

.nominate-form__header h2 {
  margin: 0;
  font-family: var(--font-family);
  letter-spacing: 0;
  color: #FFFFFF;
  text-align: justify;
  overflow-wrap: anywhere;
}

.nominate-form__heading-main {
  font-weight: 600;
  font-size: clamp(16px, 1.8vw, 24px);
  line-height: 1.2;
  text-transform: uppercase;
}

.nominate-form__heading-note {
  font-weight: 400;
  font-size: clamp(13px, 1.5vw, 20px);
  line-height: 1.25;
  text-transform: none;
}

.nominate-form__steps {
  list-style: none;
  margin: clamp(20px, 3vw, 35px) 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(10px, 1.2vw, 12px);
}

.nominate-form__step {
  width: 100%;
  min-height: 62px;
  background: #FFF3E9;
  display: grid;
  grid-template-columns: minmax(64px, 88px) minmax(0, 1fr);
  align-items: stretch;
  gap: 0;
  border-top: 1px solid #D68352;
  padding: 0;
  min-width: 0;
}

.nominate-form__step-badge {
  width: 100%;
  min-height: 60px;
  height: 100%;
  background: #FFCCA5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  flex-shrink: 0;
  padding: 8px 4px;
  box-sizing: border-box;
  transition: background-color 0.12s ease, color 0.12s ease;
}

.nominate-form__step-label {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: clamp(10px, 1.1vw, 12px);
  line-height: 0.99;
  letter-spacing: 0;
  text-align: center;
  text-transform: uppercase;
  color: #000000;
  transition: color 0.12s ease;
}

.nominate-form__step-number {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 0.9;
  letter-spacing: 0;
  text-align: center;
  color: #000000;
  min-width: 0;
  min-height: 0;
  transition: color 0.12s ease;
}

.nominate-form__step-text {
  margin: 0;
  padding: clamp(10px, 1.4vw, 14px) clamp(10px, 1.5vw, 14px);
  font-family: var(--font-family);
  font-weight: 300;
  font-size: clamp(14px, 1.6vw, 20px);
  line-height: 1.35;
  letter-spacing: 0;
  text-align: justify;
  color: #161616;
  min-width: 0;
  overflow-wrap: break-word;
  align-self: center;
  transition: transform 0.12s ease;
}

/* Hover: badge → #D68352 + white text; step text lifts slightly */
.nominate-form__step:hover .nominate-form__step-badge {
  background: #D68352;
}

.nominate-form__step:hover .nominate-form__step-label,
.nominate-form__step:hover .nominate-form__step-number {
  color: #FFFFFF;
}

.nominate-form__step:hover .nominate-form__step-text {
  transform: translateY(-4px);
}

.nominate-form__step-text strong {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: inherit;
  line-height: inherit;
  letter-spacing: 0;
  color: #000000;
}

.nominate-form__action {
  margin-top: clamp(28px, 4vw, 64px);
  min-height: clamp(64px, 7vw, 76px);
  height: auto;
  background: #FFF3E9;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: clamp(10px, 1.4vw, 14px);
  padding: clamp(12px, 1.6vw, 16px);
  min-width: 0;
}

.nominate-form__action--multi {
  background: #F0F0F0;
  flex-wrap: wrap;
  height: auto;
  min-height: clamp(64px, 7vw, 76px);
}

.nominate-form__action--multi .nominate-form__button {
  width: auto;
  min-width: min(160px, 100%);
  flex: 0 1 auto;
}

.nominate-form__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  min-width: clamp(156px, 18vw, 200px);
  min-height: clamp(42px, 4.6vw, 48px);
  height: auto;
  gap: 10px;
  border-radius: 4px;
  padding: clamp(11px, 1.3vw, 14px) clamp(22px, 2.8vw, 32px);
  background: #D68352;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: clamp(15px, 1.25vw, 17px);
  line-height: 1.2;
  letter-spacing: 0.02em;
  color: #FFFFFF;
  text-decoration: none;
  border: 0;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.14s ease, box-shadow 0.14s ease, color 0.14s ease;
  white-space: nowrap;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
  box-shadow: 0 3px 12px rgba(214, 131, 82, 0.2);
}

.nominate-form__button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(93.11deg, #D67444 0%, #FFCCA5 50%, #D67444 97.12%);
  transform: translateX(-110%);
  transition: transform 0.18s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: -1;
}

.nominate-form__button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 26px rgba(214, 116, 68, 0.38);
  color: #FFFFFF;
}

.nominate-form__button:hover::before {
  transform: translateX(0);
}

.nominate-form__button:active {
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(214, 116, 68, 0.3);
}

/* Desktop Figma lock-in */
@media (min-width: 1201px) {
  .nominate-form__lead {
    font-size: 24px;
    line-height: 1.3;
  }

  .nominate-form__section-title {
    font-size: 24px;
    line-height: 1;
  }

  .nominate-form__intro-title {
    font-size: 24px;
    line-height: 20px;
  }

  .nominate-form__intro-text {
    font-size: 16px;
    line-height: 20px;
  }

  .nominate-form__step-text {
    font-size: 20px;
    line-height: 24px;
  }
}

/* Tablet / small laptop */
@media (max-width: 992px) {
  .nominate-form__step {
    grid-template-columns: 76px minmax(0, 1fr);
  }

  .nominate-form__action--multi .nominate-form__button {
    flex: 1 1 calc(50% - 8px);
    min-width: 0;
    text-align: center;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .nominate-form__intro-title,
  .nominate-form__intro-text,
  .nominate-form__lead,
  .nominate-form__section-title,
  .nominate-form__header h2,
  .nominate-form__step-text {
    text-align: left;
  }

  .nominate-form__heading-main {
    display: block;
  }

  .nominate-form__step {
    grid-template-columns: 68px minmax(0, 1fr);
    min-height: 0;
  }

  .nominate-form__step-badge {
    min-height: 100%;
    padding: 10px 4px;
  }

  .nominate-form__button {
    min-width: min(190px, 100%);
    min-height: 46px;
    font-size: 16px;
    padding: 12px 24px;
  }

  .nominate-form__action--multi .nominate-form__button {
    flex: 1 1 calc(50% - 8px);
  }
}

/* Small phones — keep side-by-side steps, full-width CTA */
@media (max-width: 480px) {
  .nominate-form__step {
    grid-template-columns: 60px minmax(0, 1fr);
  }

  .nominate-form__step-label {
    font-size: 10px;
  }

  .nominate-form__step-number {
    font-size: 22px;
  }

  .nominate-form__step-text {
    padding: 10px 10px 10px 8px;
    font-size: 14px;
    line-height: 1.4;
  }

  .nominate-form__action {
    padding: 14px;
    min-height: 0;
  }

  .nominate-form__button {
    width: 100%;
    min-width: 0;
    min-height: 48px;
    font-size: 16px;
    font-weight: 600;
    padding: 14px 18px;
    white-space: normal;
    text-align: center;
  }

  .nominate-form__action--multi .nominate-form__button {
    flex: 1 1 100%;
    width: 100%;
  }
}

/* Very small */
@media (max-width: 360px) {
  .nominate-form__step {
    grid-template-columns: 54px minmax(0, 1fr);
  }

  .nominate-form__step-number {
    font-size: 20px;
  }

  .nominate-form__intro-title {
    font-size: 16px;
  }

  .nominate-form__intro-text,
  .nominate-form__step-text {
    font-size: 13px;
  }
}

@media (hover: none) {
  .nominate-form__step:hover .nominate-form__step-text {
    transform: none;
  }

  .nominate-form__button:hover {
    transform: none;
    box-shadow: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .nominate-form__step-badge,
  .nominate-form__step-label,
  .nominate-form__step-number,
  .nominate-form__step-text,
  .nominate-form__button,
  .nominate-form__button::before {
    transition: none;
  }

  .nominate-form__step:hover .nominate-form__step-text,
  .nominate-form__button:hover {
    transform: none;
  }
}

/* --------------------------------------------------------------------------
   Submission Guideline Page
   -------------------------------------------------------------------------- */

.submission-guideline-page {
  background: #FFFFFF;
  padding: 72px 24px 96px;
}

.submission-guideline-page__inner {
  width: 100%;
  max-width: 1170px;
  margin-inline: auto;
}

.submission-guideline-page__lead {
  font-family: var(--font-family);
  font-size: 24px;
  line-height: 1.3;
  font-weight: 500;
  color: #161616;
  text-align: justify;
  margin-bottom: 40px;
}

.sg-section-title {
  min-height: 41px;
  background: #D68352;
  color: #FFFFFF;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 24px;
  line-height: 1;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  padding: 8px 14px;
  text-align: justify;
}

.sg-accordion {
  margin-top: 12px;
}

.sg-accordion__item {
  background: #FFF3E9;
}

/* Keep a clear divider between accordion items in all states */
.sg-accordion__item + .sg-accordion__item {
  border-top: 1px solid #D68352;
}

.sg-accordion__trigger {
  width: 100%;
  border: 0;
  background: #FFF3E9;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  cursor: pointer;
}

.sg-accordion__title {
  font-family: var(--font-family);
  font-size: 24px;
  font-weight: 500;
  line-height: 1.2;
  color: #D78453;
  text-align: justify;
  padding-right: 12px;
}

.sg-accordion__chevron {
  width: 24px;
  height: 24px;
  color: #D78453;
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.sg-accordion__item.is-open .sg-accordion__chevron {
  transform: rotate(180deg);
}

.sg-accordion__content {
  background: #FFFFFF;
  padding: 10px 14px 14px;
}

.sg-accordion__content p {
  margin-bottom: 10px;
  color: #161616;
  font-family: var(--font-family);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.25;
  text-align: justify;
  overflow-wrap: anywhere;
}

.sg-accordion__lead {
  margin-bottom: 14px;
  font-weight: 400;
  line-height: 1.35;
}

.sg-accordion__content p strong {
  font-size: 19px;
  font-weight: 500;
  line-height: 1;
  display: block;
  margin-bottom: 8px;
  padding-left: 28px;
  position: relative;
}

.sg-accordion__content p strong::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 18px;
  height: 1px;
  background: #161616;
  transform: translateY(-50%);
}

.sg-checklist {
  margin-top: 26px;
}

.sg-checklist__lead {
  margin: 24px 0 24px;
  font-family: var(--font-family);
  font-size: 24px;
  font-weight: 500;
  line-height: 1;
  text-align: justify;
  color: #161616;
}

.sg-checklist__list {
  list-style: none;
  margin: 0;
  padding: 0;
  border: 0;
  background: #FFFFFF;
}

.sg-checklist__item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 4px 0;
}

.sg-checklist__item input[type="checkbox"] {
  margin-top: 2px;
  width: 18px;
  height: 18px;
  appearance: none;
  border: 1px solid #161616;
  border-radius: 0;
  background: #FFFFFF;
  cursor: default;
  position: relative;
  flex-shrink: 0;
  pointer-events: none;
}

.sg-checklist__item input[type="checkbox"]:checked {
  background: #FFFFFF;
  border-color: #161616;
}

.sg-checklist__item input[type="checkbox"]:checked::after {
  content: none;
}

.sg-checklist__item label {
  font-family: var(--font-family);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.3;
  text-align: justify;
  color: #161616;
  cursor: default;
}

@media (max-width: 1200px) {
  .submission-guideline-page {
    padding: 56px 20px 80px;
  }

  .submission-guideline-page__lead {
    font-size: clamp(18px, 2vw, 24px);
    line-height: 1.2;
    margin-bottom: 28px;
  }

  .sg-section-title {
    min-height: 38px;
    font-size: clamp(18px, 2vw, 24px);
    padding: 8px 12px;
  }

  .sg-accordion__trigger {
    padding: 10px 12px;
  }

  .sg-accordion__title {
    font-size: clamp(18px, 2vw, 24px);
    line-height: 1.15;
    padding-right: 12px;
  }

  .sg-accordion__content {
    padding: 10px 12px 12px;
  }

  .sg-accordion__content p {
    font-size: clamp(15px, 1.7vw, 17px);
    line-height: 1.35;
  }

  .sg-accordion__content p strong {
    font-size: clamp(16px, 1.7vw, 20px);
  }

  .sg-checklist__lead {
    font-size: clamp(18px, 2vw, 24px);
    line-height: 1.2;
    margin: 16px 0 14px;
  }
}

@media (max-width: 992px) {
  .submission-guideline-page__inner {
    max-width: 100%;
  }

  .sg-checklist__item {
    gap: 8px;
    padding: 5px 0;
  }

  .sg-checklist__item label {
    font-size: 15px;
    line-height: 1.35;
  }
}

@media (max-width: 768px) {
  .submission-guideline-page {
    padding: 48px 16px 64px;
  }

  .submission-guideline-page__lead {
    font-size: 16px;
    line-height: 1.2;
    margin-bottom: 20px;
  }

  .sg-section-title {
    min-height: 0;
    font-size: 16px;
    padding: 8px 10px;
    line-height: 1.2;
  }

  .sg-accordion__trigger {
    padding: 9px 10px;
  }

  .sg-accordion__title {
    font-size: 16px;
    line-height: 1.2;
  }

  .sg-accordion__content {
    padding: 0 10px 12px;
  }

  .sg-accordion__content p {
    font-size: 14px;
    line-height: 1.35;
  }

  .sg-accordion__content p strong {
    font-size: 15px;
    line-height: 1.2;
    margin-bottom: 6px;
    padding-left: 20px;
  }

  .sg-accordion__content p strong::before {
    width: 12px;
  }

  .sg-checklist__lead {
    font-size: 16px;
    line-height: 1.25;
  }

  .sg-checklist__item input[type="checkbox"] {
    width: 16px;
    height: 16px;
  }

  .sg-checklist__item input[type="checkbox"]:checked::after {
    left: 3px;
    top: 0px;
  }

  .sg-checklist__item label {
    font-size: 14px;
    line-height: 1.35;
  }
}

@media (max-width: 480px) {
  .submission-guideline-page {
    padding: 40px 12px 56px;
  }

  .sg-section-title {
    font-size: 14px;
    padding: 7px 8px;
  }

  .sg-accordion__trigger {
    padding: 8px;
  }

  .sg-accordion__title {
    font-size: 14px;
    line-height: 1.25;
  }

  .sg-accordion__chevron {
    width: 14px;
    height: 14px;
  }

  .sg-accordion__content {
    padding: 0 8px 10px;
  }

  .sg-accordion__content p {
    font-size: 13px;
  }

  .sg-accordion__content p strong {
    font-size: 14px;
  }

  .sg-checklist__lead {
    font-size: 14px;
  }

  .sg-checklist__item label {
    font-size: 14px;
  }
}

/* --------------------------------------------------------------------------
   General Information Page
   Figma/SVG: content 1134 | accordion Group 37 + Group 38
   -------------------------------------------------------------------------- */

.page-banner--gi .page-banner__content {
  width: min(1134px, calc(100% - 48px));
  max-width: 1134px;
  margin-inline: auto;
  padding-inline: 0;
  text-align: center;
}

.page-banner--gi .page-banner__title {
  white-space: normal;
  overflow-wrap: anywhere;
  text-align: center;
}

.general-info {
  --gi-content-w: 1134px;
  --gi-label-w: 356px;
  --gi-gap: 32px;
  --gi-pad-y: 12px;
  --gi-pad-x: 21px;
  --gi-row-gap-top: 100px;
  --gi-row-gap-bottom: 120px;
  --gi-table-accordion-gap: 64px;
  --gi-accordion-gap: 24px;
  --gi-trigger-h: 42px;
  --gi-icon-gap: 32px;
  --gi-bg-a: #FFF2EA;
  --gi-bg-b: #F9F9F9;
  --gi-rule-bg-a: #F9F9F9;
  --gi-rule-bg-b: #FFFAF8;
  --gi-trigger-bg: #FFF3E9;
  --gi-accent: #D68352;
  --gi-chevron: #D67444;
  --gi-text: #161616;
  --gi-body-fs: 20px;
  --gi-body-lh: 145%;

  background: #FFFFFF;
  color: var(--gi-text);
  padding-block: var(--gi-row-gap-top) var(--gi-row-gap-bottom);
  overflow-x: clip;
}

@media (max-width: 1440px) {
  .general-info {
    --gi-body-fs: 17px;
    --gi-label-w: 320px;
    --gi-gap: 24px;
    --gi-pad-x: 18px;
  }
}

.general-info__inner {
  width: min(var(--gi-content-w), calc(100% - 48px));
  max-width: var(--gi-content-w);
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: var(--gi-table-accordion-gap);
  min-width: 0;
}

.gi-table {
  width: 100%;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.gi-row {
  display: grid;
  grid-template-columns: var(--gi-label-w) minmax(0, 1fr);
  gap: var(--gi-gap);
  align-items: center;
  width: 100%;
  min-height: 72px;
  padding: var(--gi-pad-y) var(--gi-pad-x);
  box-sizing: border-box;
  min-width: 0;
  transition:
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.28s ease;
}

.gi-row:nth-child(odd) {
  background: var(--gi-bg-a);
}

.gi-row:nth-child(even) {
  background: var(--gi-bg-b);
}

.gi-row:nth-child(2) { min-height: 96px; }
.gi-row:nth-child(4) { min-height: 96px; }
.gi-row:nth-child(5) { min-height: 120px; }
.gi-row:nth-child(6) { min-height: 96px; }
.gi-row:nth-child(7) { min-height: 120px; }
.gi-row:nth-child(8) { min-height: 144px; }

@media (hover: hover) and (pointer: fine) {
  .gi-row:hover {
    transform: translateX(4px);
    box-shadow: 0 6px 18px rgba(22, 22, 22, 0.06);
    z-index: 1;
  }
}

.gi-row__label,
.gi-row__value {
  margin: 0;
  font-family: var(--font-family);
  font-weight: 400;
  font-style: normal;
  font-size: var(--gi-body-fs);
  line-height: var(--gi-body-lh);
  letter-spacing: 0;
  color: var(--gi-text);
  vertical-align: middle;
  overflow-wrap: break-word;
}

.gi-row__label {
  flex-shrink: 0;
}

.gi-row__value {
  min-width: 0;
}

.general-info .gi-accordion.ac-accordion {
  gap: var(--gi-accordion-gap);
}

.general-info .gi-accordion__item.ac-accordion__item {
  width: 100%;
  min-width: 0;
}

.general-info .gi-accordion__item.anim-ready {
  transition:
    transform 0.72s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.65s ease-out;
}

.general-info .gi-accordion__trigger.ac-accordion__trigger {
  min-height: var(--gi-trigger-h);
  height: var(--gi-trigger-h);
  padding: 0 16px 0 12px;
  gap: 16px;
  background: var(--gi-trigger-bg);
  box-shadow: inset 0 -1px 0 var(--gi-accent);
  transition:
    background-color 0.3s ease,
    box-shadow 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.general-info .gi-accordion__trigger.ac-accordion__trigger:hover {
  background: #FFE8D6;
}

.general-info .gi-accordion__lead {
  display: inline-flex;
  align-items: center;
  gap: var(--gi-icon-gap);
  min-width: 0;
}

.general-info .gi-accordion__icon {
  display: block;
  width: 22px;
  height: 24px;
  object-fit: contain;
  flex-shrink: 0;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.general-info .gi-accordion__item.is-open .gi-accordion__icon {
  transform: scale(1.06);
}

.general-info .gi-accordion__item:last-child .gi-accordion__icon {
  width: 24px;
  height: 24px;
}

.general-info .gi-accordion__title.ac-accordion__title {
  font-weight: 400;
  font-size: var(--gi-body-fs);
  line-height: var(--gi-body-lh);
  letter-spacing: 0;
  color: var(--gi-accent);
  text-align: left;
  overflow-wrap: anywhere;
}

.general-info .gi-accordion__chevron.ac-accordion__chevron {
  width: 16px;
  height: 16px;
  color: var(--gi-chevron);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.general-info .gi-accordion__content.ac-accordion__content {
  background: #FFFFFF;
  padding: 0;
  border-bottom: 0;
}

.general-info .gi-accordion__item.is-open .ac-accordion__panel {
  padding: 0;
}

.gi-rule-list {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.gi-rule {
  margin: 0;
  padding: 16px var(--gi-pad-x);
  font-family: var(--font-family);
  font-weight: 400;
  font-style: normal;
  font-size: var(--gi-body-fs);
  line-height: var(--gi-body-lh);
  letter-spacing: 0;
  color: var(--gi-text);
  vertical-align: middle;
  text-align: justify;
  overflow-wrap: break-word;
}

.gi-rule:nth-child(odd) {
  background: var(--gi-rule-bg-a);
}

.gi-rule:nth-child(even) {
  background: var(--gi-rule-bg-b);
}

.gi-rule strong {
  font-weight: 600;
  color: var(--gi-text);
}

.general-info .gi-accordion__item.is-open:not(.is-initial-open) .gi-rule {
  animation: giRuleReveal 0.5s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.general-info .gi-accordion__item.is-open:not(.is-initial-open) .gi-rule:nth-child(1) { animation-delay: 0.05s; }
.general-info .gi-accordion__item.is-open:not(.is-initial-open) .gi-rule:nth-child(2) { animation-delay: 0.1s; }
.general-info .gi-accordion__item.is-open:not(.is-initial-open) .gi-rule:nth-child(3) { animation-delay: 0.15s; }
.general-info .gi-accordion__item.is-open:not(.is-initial-open) .gi-rule:nth-child(4) { animation-delay: 0.2s; }
.general-info .gi-accordion__item.is-open:not(.is-initial-open) .gi-rule:nth-child(5) { animation-delay: 0.25s; }
.general-info .gi-accordion__item.is-open:not(.is-initial-open) .gi-rule:nth-child(6) { animation-delay: 0.3s; }
.general-info .gi-accordion__item.is-open:not(.is-initial-open) .gi-rule:nth-child(7) { animation-delay: 0.35s; }
.general-info .gi-accordion__item.is-open:not(.is-initial-open) .gi-rule:nth-child(8) { animation-delay: 0.4s; }
.general-info .gi-accordion__item.is-open:not(.is-initial-open) .gi-rule:nth-child(9) { animation-delay: 0.45s; }
.general-info .gi-accordion__item.is-open:not(.is-initial-open) .gi-rule:nth-child(n + 10) { animation-delay: 0.5s; }

@keyframes giRuleReveal {
  from {
    opacity: 0;
    transform: translateX(28px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.general-info .gi-row.anim-ready {
  transition:
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.55s ease-out,
    box-shadow 0.28s ease;
}

@media (max-width: 1200px) {
  .page-banner--gi .page-banner__content,
  .general-info__inner {
    width: min(var(--gi-content-w), calc(100% - 40px));
  }

  .general-info {
    --gi-row-gap-top: clamp(56px, 7vw, 100px);
    --gi-row-gap-bottom: clamp(64px, 7vw, 120px);
    --gi-table-accordion-gap: clamp(40px, 5vw, 64px);
    --gi-label-w: min(280px, 30vw);
    --gi-body-fs: clamp(16px, 1.45vw, 17px);
    --gi-gap: 20px;
  }
}

@media (max-width: 992px) {
  .page-banner--gi .page-banner__content,
  .general-info__inner {
    width: calc(100% - 36px);
  }

  .general-info {
    --gi-label-w: min(240px, 34vw);
    --gi-pad-x: 18px;
    --gi-body-fs: 17px;
    --gi-icon-gap: 20px;
    --gi-table-accordion-gap: 48px;
  }
}

@media (max-width: 768px) {
  .page-banner--gi .page-banner__content,
  .general-info__inner {
    width: calc(100% - 32px);
  }

  .general-info {
    --gi-label-w: 100%;
    --gi-gap: 6px;
    --gi-pad-x: 16px;
    --gi-pad-y: 14px;
    --gi-accordion-gap: 14px;
    --gi-body-fs: 16px;
    --gi-row-gap-top: 48px;
    --gi-row-gap-bottom: 56px;
    --gi-table-accordion-gap: 36px;
  }

  .gi-row {
    grid-template-columns: 1fr;
    min-height: 0 !important;
    align-items: start;
    border-radius: 4px;
  }

  .gi-row + .gi-row {
    margin-top: 8px;
  }

  .gi-row__label {
    font-weight: 500;
  }

  .gi-row__label,
  .gi-row__value,
  .gi-rule {
    text-align: left;
  }

  .general-info .gi-accordion__trigger.ac-accordion__trigger {
    height: auto;
    min-height: 46px;
    padding: 12px 14px;
  }

  @media (hover: hover) and (pointer: fine) {
    .gi-row:hover {
      transform: translateY(-2px);
    }
  }
}

@media (max-width: 600px) {
  .page-banner--gi .page-banner__content,
  .general-info__inner {
    width: calc(100% - 24px);
  }

  .general-info {
    --gi-pad-x: 14px;
    --gi-icon-gap: 12px;
    --gi-body-fs: 15px;
    --gi-accordion-gap: 12px;
  }

  .general-info .gi-accordion__trigger.ac-accordion__trigger {
    min-height: 44px;
    padding: 10px 12px;
    gap: 12px;
  }

  .gi-rule {
    padding: 14px var(--gi-pad-x);
  }

  .gi-row + .gi-row {
    margin-top: 6px;
  }
}

@media (max-width: 480px) {
  .page-banner--gi .page-banner__content,
  .general-info__inner {
    width: calc(100% - 20px);
  }

  .general-info {
    --gi-pad-x: 12px;
    --gi-body-fs: 14px;
    --gi-row-gap-top: 40px;
    --gi-row-gap-bottom: 48px;
    --gi-table-accordion-gap: 28px;
  }

  .general-info .gi-accordion__icon,
  .general-info .gi-accordion__item:last-child .gi-accordion__icon {
    width: 20px;
    height: 20px;
  }

  .gi-rule {
    padding: 12px var(--gi-pad-x);
  }
}

@media (prefers-reduced-motion: reduce) {
  .gi-row,
  .general-info .gi-accordion__item.anim-ready,
  .general-info .gi-accordion__icon,
  .general-info .gi-accordion__chevron,
  .general-info .gi-accordion__trigger.ac-accordion__trigger {
    transition: none;
  }

  .general-info .gi-accordion__item.is-open:not(.is-initial-open) .gi-rule {
    animation: none;
  }

  .gi-row:hover {
    transform: none;
    box-shadow: none;
  }
}

/* --------------------------------------------------------------------------
   Privacy Policy
   -------------------------------------------------------------------------- */

.privacy-policy {
  --pp-content-w: 900px;
  --pp-text: #161616;
  --pp-muted: #404040;
  --pp-accent: #d68352;
  --pp-section-gap: 40px;

  background: #ffffff;
  color: var(--pp-text);
  padding-block: clamp(48px, 6vw, 80px) clamp(64px, 8vw, 100px);
}

.privacy-policy__inner {
  width: min(var(--pp-content-w), calc(100% - 48px));
  max-width: var(--pp-content-w);
  margin-inline: auto;
}

.privacy-policy__intro {
  margin-bottom: clamp(32px, 4vw, 48px);
  padding-bottom: clamp(24px, 3vw, 32px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.privacy-policy__lead {
  margin: 0 0 8px;
  font-size: clamp(18px, 2.2vw, 22px);
  font-weight: 500;
  line-height: 1.35;
  color: var(--pp-text);
}

.privacy-policy__meta {
  margin: 0 0 20px;
  font-size: clamp(15px, 1.8vw, 17px);
  font-weight: 500;
  color: var(--pp-muted);
}

.privacy-policy__intro > p:last-child {
  margin: 0;
  font-size: clamp(16px, 1.9vw, 18px);
  font-weight: 400;
  line-height: 1.65;
  color: var(--pp-text);
}

.privacy-policy__section {
  margin-bottom: var(--pp-section-gap);
}

.privacy-policy__section:last-child {
  margin-bottom: 0;
}

.privacy-policy__heading {
  margin: 0 0 16px;
  font-size: clamp(18px, 2.2vw, 22px);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0.01em;
  color: var(--pp-accent);
}

.privacy-policy__section p {
  margin: 0 0 16px;
  font-size: clamp(16px, 1.9vw, 18px);
  font-weight: 400;
  line-height: 1.65;
  color: var(--pp-text);
}

.privacy-policy__section p:last-child {
  margin-bottom: 0;
}

.privacy-policy__list {
  margin: 0 0 16px;
  padding-left: 1.35em;
  list-style: disc;
}

.privacy-policy__list li {
  margin-bottom: 6px;
  font-size: clamp(16px, 1.9vw, 18px);
  font-weight: 400;
  line-height: 1.65;
  color: var(--pp-text);
}

.privacy-policy__list li:last-child {
  margin-bottom: 0;
}

.privacy-policy__contact {
  margin: 16px 0 0;
  font-style: normal;
}

.privacy-policy__contact p {
  margin: 0 0 12px;
}

.privacy-policy__contact a {
  color: var(--pp-accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.privacy-policy__contact a:hover {
  color: #b86a3f;
}

.page-banner--legal .page-banner__content {
  padding-inline: clamp(24px, 4vw, 48px);
}

@media (max-width: 768px) {
  .privacy-policy {
    padding-block: 40px 56px;
  }

  .privacy-policy__inner {
    width: calc(100% - 32px);
  }

  .privacy-policy__section {
    margin-bottom: 32px;
  }
}

@media (max-width: 480px) {
  .privacy-policy__inner {
    width: calc(100% - 24px);
  }

  .privacy-policy__heading {
    margin-bottom: 12px;
  }

  .privacy-policy__section p,
  .privacy-policy__list li {
    line-height: 1.6;
  }
}

.award-page {
  padding-block: var(--section-py);
}

.award-page__inner {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: 24px;
}

.award-page__body {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: justify;
  color: var(--color-gray-900);
}

.partners-page {
  background: var(--color-white);
  width: 100%;
  padding-block: 80px;
}

.partners-page__inner {
  width: 100%;
  max-width: calc(
    var(--partners-sidebar-w) + var(--partners-section-gap) + var(--partners-list-w)
  );
  margin-inline: auto;
  padding-inline: 24px;
}

.partners-page__layout {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: var(--partners-section-gap);
  width: 100%;
  min-height: var(--partners-block-h);
  margin-inline: auto;
}

.partners-sidebar {
  flex: 0 0 var(--partners-sidebar-w);
  width: var(--partners-sidebar-w);
  max-width: 100%;
  height: var(--partners-sidebar-h);
}

.partners-sidebar__image {
  display: block;
  width: 100%;
  height: var(--partners-sidebar-h);
  object-fit: cover;
  object-position: top center;
}

.partners-list {
  flex: 0 0 var(--partners-list-w);
  width: var(--partners-list-w);
  max-width: 100%;
  min-height: var(--partners-block-h);
  display: flex;
  flex-direction: column;
  gap: var(--partners-section-gap);
}

.partner-card {
  display: flex;
  align-items: stretch;
  width: 100%;
  height: var(--partner-card-h);
  flex: 0 0 var(--partner-card-h);
  padding-inline: var(--partner-card-pad-x);
  box-sizing: border-box;
  overflow: hidden;
}

.partner-card__logo {
  flex: 0 0 var(--partner-logo-size);
  width: var(--partner-logo-size);
  height: var(--partner-logo-size);
  box-sizing: border-box;
  padding: 39px var(--partner-logo-pad-x);
  border-left: var(--partner-border-w) solid var(--color-accent);
  border-right: none;
  background: #f2f2f2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.partner-card__logo img {
  display: block;
  object-fit: contain;
}

.partner-card__logo-img--archiconnect {
  width: 262px;
  height: 32px;
  max-width: 100%;
}

.partner-card__logo-img--ifc {
  width: 262px;
  height: 46.627px;
  max-width: 100%;
}

.partner-card__logo-img--cems {
  width: 123px;
  height: 171px;
  max-width: 100%;
}

.partner-card__body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 36px 32px;
  background: var(--color-accent);
  color: var(--color-white);
}

.partner-card__title {
  width: fit-content;
  max-width: 100%;
  font-family: var(--font-family);
  font-weight: 500;
  font-style: normal;
  font-size: 24px;
  line-height: 20px;
  letter-spacing: 0;
  text-align: justify;
  vertical-align: middle;
  margin-bottom: 12px;
}

.partner-card__body p {
  font-family: var(--font-family);
  font-weight: 300;
  font-style: normal;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 0;
  text-align: justify;
  vertical-align: middle;
}

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */

@media (min-width: 1728px) {
  .site-header .container.site-header__inner,
  .showcase__intro .container,
  .showcase__band .container {
    padding-left: var(--hero-content-left);
  }

  .jury::before {
    left: calc(50% - var(--home-frame) / 2 + var(--jury-bg-left));
  }
}

@media (max-width: 1440px) and (min-width: 1024px) {
  :root {
    --nav-dropdown-font: 18px;
    --nav-dropdown-gap: 11px;
    --nav-dropdown-pad: 12px;
  }

  .site-nav__list {
    gap: clamp(20px, 2.2vw, 32px);
  }

  .site-nav__list a,
  .site-nav__trigger {
    font-size: 20px;
    letter-spacing: 0.06em;
  }

  .site-header__submit {
    min-height: 54px;
    padding: 0 30px;
    font-size: 18px;
    font-weight: 400;
  }

  .site-nav__dropdown a {
    font-size: var(--nav-dropdown-font);
  }
}

@media (max-width: 1200px) {
  /* Homepage — tablet */
  .site-header .container.site-header__inner,
  .showcase__intro .container,
  .showcase__band .container {
    padding-left: clamp(24px, 4vw, var(--hero-content-left));
  }

  .site-nav__list {
    gap: clamp(16px, 1.8vw, 26px);
  }

  .site-nav__list a,
  .site-nav__trigger {
    font-size: 18px;
    letter-spacing: 0.05em;
  }

  .site-header__inner {
    gap: clamp(28px, 4vw, 56px);
  }

  .site-header__submit {
    min-height: 50px;
    padding: 0 26px;
    font-size: 17px;
    font-weight: 400;
  }

  .site-nav__dropdown {
    --nav-dropdown-gap: 10px;
    --nav-dropdown-font: 17px;
  }

  .site-nav__dropdown a {
    font-size: var(--nav-dropdown-font);
  }
}

@media (max-width: 1023px) {
  :root {
    --crest-right-corner-from-tip: 83px;
    --showcase-pattern-tail: 19px;
    /* Tablet — keep laptop video sizing until mobile breakpoint */
    --hero-video-w: 115%;
    --hero-video-shift-x: 10%;
    --hero-video-shift-y: -5%;
    --hero-video-margin-right: -3%;
  }

  .showcase {
    padding-bottom: 0;
  }

  .showcase::after {
    display: none;
  }

  .hero {
    height: auto;
    min-height: 0;
    display: block;
    padding-inline: 0;
    background-size: cover;
    background-position: center top;
  }

  .hero__shell {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.55fr) minmax(140px, 36%);
    grid-template-rows: auto;
    align-items: center;
    column-gap: clamp(10px, 2vw, 20px);
    row-gap: 0;
    height: auto;
    min-height: 0;
    padding: clamp(40px, 6vw, 64px) 0 clamp(36px, 5vw, 56px) clamp(20px, 3.5vw, 36px);
  }

  .hero__copy {
    position: relative;
    inset: auto;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    grid-column: 1;
    grid-row: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: clamp(24px, 4vw, 36px);
    width: 100%;
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
    pointer-events: auto;
    z-index: 2;
  }

  .hero__title {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    max-width: 100%;
    min-height: 0;
    height: auto;
    font-size: clamp(0px, 3.9vw, 40px);
    line-height: 1.3;
    font-weight: 500;
  }

  .hero__partners {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    max-width: 520px;
    height: auto;
    margin-top: 0;
  }

  .hero__visual {
    position: relative;
    grid-column: 2;
    grid-row: 1;
    left: auto;
    right: 0;
    top: auto;
    bottom: auto;
    width: 100%;
    height: auto;
    max-width: none;
    min-height: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    overflow: hidden;
    align-self: center;
    justify-self: end;
  }

  .hero__logo-video {
    width: var(--hero-video-w);
    max-width: none;
    height: auto;
    max-height: none;
    margin-left: auto;
    margin-right: var(--hero-video-margin-right);
    transform: translateX(var(--hero-video-shift-x)) translateY(var(--hero-video-shift-y));
    aspect-ratio: 16 / 9;
    object-fit: contain;
    object-position: right center;
    mix-blend-mode: multiply;
  }

  .showcase {
    min-height: auto;
    overflow: visible;
  }

  .showcase::before,
  .showcase::after {
    background-size: 100% auto;
  }

  .showcase__intro {
    padding-top: clamp(48px, 7vw, 111px);
  }

  .showcase__intro-inner,
  .showcase__band-text {
    width: 100%;
    max-width: 100%;
    min-height: 0;
  }

  .showcase__band {
    margin-top: clamp(24px, 5vw, 64px);
    min-height: auto;
    padding-block: clamp(32px, 4vw, 42px);
  }

  .showcase__trophy {
    position: absolute;
    top: auto;
    left: auto;
    right: clamp(4px, 2vw, 16px);
    bottom: calc(-1 * clamp(36px, 7vw, 72px));
    width: min(42vw, 280px);
    height: auto;
    aspect-ratio: 528 / 768;
    margin: 0;
    padding: 0;
    z-index: 3;
    pointer-events: none;
  }

  .showcase__trophy-stone {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: right bottom;
  }
}

@media (max-width: 1200px) {
  .jury {
    padding-top: var(--home-title-gap);
    padding-bottom: 0;
  }

  .jury__black-bar {
    left: 50%;
    transform: translateX(-50%);
    width: min(calc(100% + 32px), 100vw);
    top: clamp(100px, 14vw, 210px);
    height: clamp(200px, 30vw, 305px);
    bottom: auto;
  }

  .jury__grid {
    --jury-grid-gap: clamp(12px, 2vw, 16px);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--jury-grid-gap);
    padding-inline: 0;
  }

  .jury-card {
    flex: 0 1 calc((100% - (2 * var(--jury-grid-gap))) / 3);
    max-width: calc((100% - (2 * var(--jury-grid-gap))) / 3);
  }

  .jury-card:nth-child(4),
  .jury-card:nth-child(5) {
    flex: 0 1 calc((100% - (2 * var(--jury-grid-gap))) / 3);
    max-width: calc((100% - (2 * var(--jury-grid-gap))) / 3);
  }

}

@media (max-width: 992px) {
  .site-nav__dropdown {
    --nav-dropdown-gap: 12px;
  }

  .showcase {
    min-height: auto;
    overflow: visible;
  }

  .showcase::before,
  .showcase::after {
    background-size: 100% auto;
  }

  .showcase__intro {
    padding-top: clamp(40px, 6vw, 72px);
  }

  .showcase__intro-inner {
    max-width: 100%;
    padding-bottom: 24px;
  }

  .showcase__band .container {
    max-width: 100%;
  }

  .showcase__band-text {
    max-width: 100%;
  }

  .showcase__trophy {
    right: clamp(4px, 2vw, 12px);
    bottom: calc(-1 * clamp(32px, 6vw, 64px));
    width: min(40vw, 240px);
    margin: 0;
    padding: 0;
  }

  .showcase__trophy-stone {
    width: 100%;
    height: 100%;
    object-position: right bottom;
  }

  .showcase__intro-inner,
  .showcase__band-text {
    max-width: 100%;
  }

  .showcase__band {
    margin-top: clamp(16px, 4vw, 32px);
    padding-block: clamp(28px, 4vw, 40px);
  }

  .showcase__text p,
  .showcase__band-text {
    font-size: clamp(14px, 3.2vw, 28px);
    line-height: 1.35;
  }

  .showcase__link {
    font-size: clamp(16px, 2.2vw, 22px);
    line-height: 1.4;
  }

  .showcase__text p {
    font-weight: 300;
    width: 80%;
  }
}

@media (max-width: 1439px) {
  .partners-page {
    padding-block: 64px;
  }

  .partners-page__inner {
    max-width: var(--partners-list-w);
  }

  .partners-page__layout {
    flex-direction: column;
    align-items: center;
    min-height: 0;
  }

  .partners-sidebar,
  .partners-list,
  .partner-card {
    width: 100%;
    max-width: var(--partners-list-w);
  }

  .partners-sidebar {
    height: auto;
  }

  .partners-sidebar__image {
    height: auto;
    max-height: 720px;
    object-fit: contain;
  }

  .partners-list {
    min-height: auto;
  }

  .privilege-page {
    padding-top: clamp(48px, 8vw, 72px);
    padding-bottom: clamp(48px, 8vw, 72px);
  }

  .privilege-page__shell {
    padding-left: 0;
    padding-right: clamp(20px, 4vw, 40px);
  }

  .privilege-page__decor {
    top: calc(clamp(48px, 8vw, 72px) + 80px);
    width: min(26vw, var(--privilege-decor-w));
    height: auto;
    aspect-ratio: 361 / 595;
    opacity: 0.55;
  }

  .privilege-page__content {
    width: 100%;
    margin-left: 0;
    padding-right: 0;
  }

  .privilege-page__title,
  .privilege-page__list-wrap,
  .privilege-table-shell,
  .privilege-table-wrap {
    width: min(var(--privilege-content-w), 100%);
    margin-inline: 0;
  }

  .privilege-page__title {
    width: min(var(--privilege-title-w), 100%);
    max-width: var(--privilege-title-w);
    min-height: 2em;
  }
}

@media (min-width: 1200px) and (max-width: 1439px) {
  .partners-page__inner {
    max-width: 1188px;
    padding-inline: 20px;
  }

  .partners-page__layout {
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    min-height: 0;
    gap: 48px;
  }

  .partners-sidebar {
    flex: 0 0 380px;
    width: 380px;
    height: 980px;
    max-width: 380px;
  }

  .partners-sidebar__image {
    width: 100%;
    height: 980px;
    max-height: none;
    object-fit: cover;
    object-position: top center;
  }

  .partners-list {
    flex: 0 0 min(760px, calc(100% - 428px));
    width: min(760px, calc(100% - 428px));
    min-height: auto;
  }

  .partner-card {
    height: 300px;
    flex: 0 0 300px;
    padding-inline: 16px;
  }

  .partner-card__logo {
    flex: 0 0 300px;
    width: 300px;
    height: 300px;
    padding: 30px 28px;
  }

  .partner-card__body {
    padding: 28px 24px;
  }

  .partner-card__title {
    font-size: clamp(20px, 2vw, 24px);
    font-weight: 500;
    line-height: 1.15;
    margin-bottom: 10px;
  }

  .partner-card__body p {
    font-size: 16px;
    font-weight: 300;
    line-height: 20px;
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .partners-page__inner {
    max-width: 980px;
    padding-inline: 20px;
  }

  .partners-page__layout {
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    min-height: 0;
    gap: 28px;
  }

  .partners-sidebar {
    flex: 0 0 280px;
    width: 280px;
    height: 820px;
    max-width: 280px;
  }

  .partners-sidebar__image {
    width: 100%;
    height: 820px;
    max-height: none;
    object-fit: cover;
    object-position: top center;
  }

  .partners-list {
    flex: 0 0 min(620px, calc(100% - 308px));
    width: min(620px, calc(100% - 308px));
    min-height: auto;
    gap: 28px;
  }

  .partner-card {
    height: 250px;
    flex: 0 0 250px;
    padding-inline: 12px;
  }

  .partner-card__logo {
    flex: 0 0 230px;
    width: 230px;
    height: 250px;
    padding: 20px 18px;
    border-left-width: 16px;
  }

  .partner-card__body {
    padding: 18px 16px;
  }

  .partner-card__title {
    font-size: clamp(18px, 2.2vw, 22px);
    font-weight: 500;
    line-height: 1.15;
    margin-bottom: 8px;
  }

  .partner-card__body p {
    font-size: clamp(14px, 1.6vw, 16px);
    font-weight: 300;
    line-height: 20px;
  }
}

@media (min-width: 1024px) and (max-width: 1728px) {
  /* Match desktop showcase layout when hero height scales down with viewport */
  /* .showcase__intro {
    padding-top: calc(
      var(--showcase-intro-top-page) - var(--header-height)
      - (var(--hero-section-h) * 100vw / var(--home-frame))
    );
  } */

  /* Laptop GIF — modest height above intro */
  .showcase__trophy {
    --trophy-h: clamp(380px, 42vw, 580px);
    --trophy-w: calc(var(--trophy-h) * 200 / 454);
    top: auto;
    bottom: calc(-1 * clamp(40px, 4.5vw, 72px));
    left: auto;
    right: max(
      clamp(20px, 3vw, 56px),
      calc((100vw - min(100vw, var(--home-frame))) / 2 + clamp(32px, 3vw, 64px))
    );
    width: var(--trophy-w);
    height: var(--trophy-h);
  }

  .showcase__trophy-stone {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: right bottom;
  }
}

@media (min-width: 1024px) and (max-width: 1200px) {
  .showcase__trophy {
    --trophy-h: clamp(340px, 40vw, 500px);
    --trophy-w: calc(var(--trophy-h) * 200 / 454);
    height: var(--trophy-h);
    width: var(--trophy-w);
  }

  .showcase__trophy-stone {
    width: 100%;
    height: 100%;
    object-position: right bottom;
  }
}

/* Laptop 1024–1440: match hero title left gutter on logo, showcase, and band */
@media (min-width: 1024px) and (max-width: 1440px) {
  :root {
    --showcase-intro-top-page: 960px;
  }

  .site-header .container.site-header__inner,
  .showcase__band .container {
    padding-left: clamp(24px, 4vw, var(--hero-content-left));
  }

  .showcase__intro .container {
    padding-left: clamp(24px, 4.5vw, var(--showcase-intro-left));
  }

  /* Fluid intro width — leave room for crest, scale with viewport */
  .showcase__intro-inner {
    width: min(993px, 58vw, 100%);
    max-width: min(993px, calc(100% - clamp(160px, 20vw, 280px)));
    min-height: auto;
  }

  .showcase__text p {
    font-size: clamp(18px, 1.55vw, 23px);
    line-height: 1.6;
  }

  .showcase__link {
    font-size: clamp(18px, 1.7vw, 25px);
    line-height: 1.4;
  }
}

/* Laptop 1201–1440: 5-col jury grid */
@media (min-width: 1201px) and (max-width: 1440px) {
  .jury-boards-members__frame {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    width: 100%;
    max-width: min(100%, 1280px);
    gap: clamp(12px, 1.6vw, 24px);
    margin-inline: 0;
    justify-content: start;
  }

  .jury-boards-member {
    width: 100%;
  }

  .jury-boards-member__image-wrap {
    height: auto;
    aspect-ratio: 248.6687 / 309.6264;
  }

  .jury .jury-boards-members__frame > .jury-boards-member:nth-child(6) {
    grid-column: 2;
  }
}

@media (min-width: 1441px) {
  .jury-boards-members__frame {
    grid-template-columns: repeat(5, 248.6687px);
    margin-inline: 0;
    justify-content: start;
  }

  .jury .jury-boards-members__frame > .jury-boards-member:nth-child(6) {
    grid-column: 2;
  }
}

@media (max-width: 1200px) {
  .jury .jury-boards-members__frame > .jury-boards-member:nth-child(6) {
    grid-column: auto;
  }
}

@media (max-width: 768px) {
  :root {
    --section-py: 56px;
    --header-height: 70px;
    --home-title-gap: clamp(32px, 5vw, 40px);
    --pattern-tile-size: clamp(56px, 14vw, 96px);
    /* Mobile — wider video, flush right (negative margin bleeds past edge), lifted slightly */
    --hero-video-w: 140%;
    --hero-video-shift-x: 4%;
    --hero-video-shift-y: -6%;
    --hero-video-margin-right: -6%;
  }

  .site-logo img {
    width: 96px;
    height: 41px;
  }

  .site-header {
    z-index: 1100;
    isolation: isolate;
  }

  .site-header__inner {
    position: relative;
    z-index: 2;
  }

  .nav-toggle {
    display: flex;
    position: relative;
    z-index: 3;
  }

  .site-header__submit {
    position: relative;
    z-index: 3;
    margin-left: auto;
    min-height: 44px;
    padding: 0 18px;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.08em;
  }

  .site-nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: auto;
    z-index: 1090;
    grid-column: auto;
    justify-self: auto;
    align-self: auto;
    width: 100%;
    max-width: none;
    height: auto;
    max-height: calc(100dvh - var(--header-height) - 16px);
    min-height: 0;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    background: transparent;
    padding: 0;
    transform: none;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease, visibility 0.2s ease;
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .site-nav__list a,
  .site-nav__trigger {
    font-family: var(--font-family);
    font-size: 16px;
    font-weight: 300;
    font-style: normal;
    line-height: 1.2;
    letter-spacing: 0;
    text-align: left;
    text-transform: uppercase;
  }

  .site-nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
    padding: 12px clamp(16px, 4vw, 24px) 20px;
    background: #be7950;
  }

  .site-nav__list a.is-active::after,
  .site-nav__list a[aria-current="page"]::after,
  .site-nav__item--dropdown.is-active .site-nav__trigger::after,
  .site-nav__item--dropdown.is-open .site-nav__trigger::after,
  .site-nav__list a::after,
  .site-nav__trigger::after {
    display: none;
  }

  .site-nav .site-nav__list > li {
    display: block;
    width: 100%;
    padding-block: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .site-nav .site-nav__list > li.site-nav__item--dropdown {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    padding-block: 12px;
  }

  .site-nav__list a {
    display: block;
    width: 100%;
    text-align: left;
  }

  .site-nav__list > li:last-child {
    border-bottom: none;
    padding-bottom: 12px;
  }

  .site-nav .site-nav__item--dropdown {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 100%;
    height: auto;
  }

  .site-nav__trigger {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    max-width: 100%;
    text-align: left;
  }

  .site-nav__item--dropdown::after {
    display: none;
  }

  .site-nav__dropdown {
    position: static;
    left: auto;
    right: auto;
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    gap: 0;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    opacity: 1;
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
    pointer-events: none;
    transform: none;
    transition: max-height var(--transition), visibility var(--transition), margin var(--transition), padding var(--transition);
    align-items: stretch;
  }

  .site-nav__dropdown > li {
    padding: 0;
  }

  .site-nav__dropdown > li:not(:last-child) {
    padding-bottom: 0;
  }

  .site-nav__dropdown > li:not(:last-child)::after {
    display: none;
  }

  .site-nav__item--dropdown.is-open .site-nav__dropdown {
    visibility: visible;
    max-height: 360px;
    margin: 8px 0 0;
    padding: 0 0 0 16px;
    pointer-events: auto;
  }

  .site-nav__item--dropdown:hover .site-nav__dropdown {
    opacity: 1;
  }

  .site-nav__dropdown a {
    display: block;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 10px 14px;
    border-radius: 0;
    font-family: var(--font-family);
    font-size: 14px;
    font-weight: 300;
    font-style: normal;
    line-height: 1.35;
    letter-spacing: 0;
    text-transform: none;
    text-align: left;
    white-space: normal;
    background: transparent;
  }

  .site-nav__dropdown > li:not(:last-child) > a {
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .site-nav__dropdown a:hover,
  .site-nav__dropdown a.is-active,
  .site-nav__dropdown a[aria-current="page"] {
    background-color: rgba(255, 255, 255, 0.1);
    font-weight: 500;
  }

  /* Hero — copy wider left, video flush to right edge */
  .hero__shell {
    display: grid;
    /* grid-template-columns: minmax(0, 1.65fr) minmax(120px, 38%); */
    grid-template-rows: auto;
    align-items: center;
    column-gap: 0;
    row-gap: 0;
    gap: 0;
    padding: clamp(28px, 5vw, 40px) 0 clamp(28px, 5vw, 40px) clamp(14px, 3.5vw, 20px);
  }

  .hero__copy {
    grid-column: 1;
    grid-row: 1;
    order: 0;
    position: relative;
    z-index: 3;
    gap: clamp(16px, 3.5vw, 24px);
    align-items: flex-start;
    justify-content: center;
    width: 98%;
    max-width: 98%;
  }

  .hero__title {
    font-size: clamp(16px, 4.2vw, 26px);
    line-height: 1.25;
    text-align: left;
    width: 100%;
  }

  /* Natural wrap on mobile — no forced line breaks */
  .hero__title-break {
    display: none;
  }

  .hero__partners {
    max-width: 100%;
    margin-inline: 0;
  }

  .hero__visual {
    grid-column: 2;
    grid-row: 1;
    order: 0;
    position: relative;
    z-index: 1;
    width: 100%;
    min-height: 0;
    height: auto;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    align-self: center;
    justify-self: end;
    overflow: hidden;
  }

  .hero__logo-video {
    width: var(--hero-video-w);
    max-width: none;
    height: auto;
    max-height: none;
    margin-left: auto;
    margin-right: var(--hero-video-margin-right);
    transform: translateX(var(--hero-video-shift-x)) translateY(var(--hero-video-shift-y));
    aspect-ratio: 16 / 9;
    object-fit: contain;
    object-position: right center;
    mix-blend-mode: multiply;
  }

  .showcase__intro {
    padding-top: clamp(32px, 6vw, 56px);
  }

  .showcase::before,
  .showcase::after {
    background-size: 100% auto;
  }

  .showcase__text p,
  .showcase__band-text {
    font-size: clamp(17px, 4.2vw, 24px);
  }

  .showcase__link {
    font-size: clamp(15px, 3.8vw, 18px);
    line-height: 1.4;
  }

  .showcase__trophy {
    right: clamp(2px, 2vw, 10px);
    bottom: calc(-1 * clamp(28px, 6vw, 52px));
    width: min(44vw, 220px);
    height: auto;
    aspect-ratio: 528 / 768;
    margin: 0;
  }

  .showcase__trophy-stone {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: right bottom;
  }

  .showcase__band {
    padding-block: clamp(24px, 5vw, 36px);
  }

  .section-title {
    font-size: clamp(24px, 5.5vw, 32px);
    margin-bottom: clamp(32px, 6vw, 48px);
  }

  .jury {
    --jury-bg-opacity: 0.22;
  }

  .jury::before {
    top: 0;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    width: min(720px, 130vw);
    height: auto;
    aspect-ratio: 1605 / 1533;
    background-size: contain;
    background-position: center top;
    opacity: var(--jury-bg-opacity);
  }

  .jury__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    justify-items: center;
  }

  .jury-card {
    flex: none;
    width: 100%;
    max-width: min(300px, 100%);
    align-items: center;
  }

  .jury-card:nth-child(4),
  .jury-card:nth-child(5) {
    flex: none;
    width: 100%;
    max-width: min(300px, 100%);
  }

  .jury-card__info {
    width: 100%;
  }

  .jury-card__photo {
    width: 100%;
    max-width: 260px;
    margin-inline: auto;
    background-size: cover;
    background-position: center top;
  }

  .jury-card:nth-child(1) .jury-card__photo {
    background-image: url("../assets/images/jury-1.webp");
  }

  .jury-card:nth-child(2) .jury-card__photo {
    background-image: url("../assets/images/jury-2.webp");
  }

  .jury-card:nth-child(3) .jury-card__photo {
    background-image: url("../assets/images/jury-3.webp");
  }

  .jury-card:nth-child(4) .jury-card__photo {
    background-image: url("../assets/images/jury-4.webp");
  }

  .jury-card:nth-child(5) .jury-card__photo {
    background-image: url("../assets/images/jury-5.webp");
  }

  .jury-card__name {
    display: block;
    width: min(190px, 100%);
    max-width: 100%;
    margin-inline: auto;
    min-height: 60px;
    padding: 8px;
    font-size: clamp(12px, 2.8vw, 14px);
    line-height: 1.15;
    text-align: center;
    white-space: normal;
    box-sizing: border-box;
  }

  .jury__black-bar {
    top: clamp(80px, 18vw, 130px);
  }

  .partners-page {
    padding-block: 48px;
  }

  .partners-sidebar__image {
    max-height: 560px;
  }

  .partner-card {
    flex-direction: column;
    height: auto;
    flex: none;
    padding-inline: 0;
  }

  .partner-card__logo {
    width: 100%;
    max-width: var(--partner-logo-size);
    height: auto;
    min-height: 220px;
    aspect-ratio: 1 / 1;
    margin-inline: auto;
  }

  .partner-card__body {
    width: 100%;
    padding: 28px 24px;
  }

  .privilege-page {
    padding-top: 40px;
    padding-bottom: 48px;
  }

  .privilege-page__decor {
    display: none;
  }

  .privilege-page__title {
    width: min(var(--privilege-title-w), 100%);
    max-width: var(--privilege-title-w);
    min-height: 2em;
    font-size: clamp(26px, 5.5vw, 36px);
    margin-bottom: 28px;
  }

  .privilege-page__list-block h3 {
    font-size: 18px;
    line-height: 24px;
  }

  .privilege-page__list-block li {
    font-size: 15px;
    line-height: 28px;
  }

  .privilege-table {
    min-height: 0;
    min-width: 640px;
  }

  .privilege-table th,
  .privilege-table td {
    font-size: 14px;
    padding: 10px 12px;
  }

  .privilege-table__group {
    white-space: normal;
    line-height: 1.3;
  }

  .privilege-table td:not(.privilege-table__group) {
    min-width: 180px;
  }

  .privilege-table td:last-child {
    min-width: 150px;
  }
}

@media (max-width: 1100px) {
  .privilege-table {
    min-width: 700px;
  }
}

@media (min-width: 768px) and (max-width: 1440px) {
  .privilege-page {
    padding-left: 0;
    padding-right: clamp(24px, 4vw, 48px);
  }

  .privilege-page__shell {
    padding-inline: 0;
  }

  .privilege-page__content {
    width: min(var(--privilege-content-w), calc(100% - var(--privilege-content-left-ratio)));
    margin-left: var(--privilege-content-left-ratio);
    padding-right: clamp(16px, 3vw, 32px);
  }

  .privilege-page__decor {
    display: block;
    top: calc(clamp(48px, 8vw, 72px) + 38px);
    width: clamp(220px, 21vw, var(--privilege-decor-w));
    height: auto;
    aspect-ratio: 361 / 595;
    opacity: 0.72;
  }
}

@media (max-width: 480px) {
  :root {
    --hero-video-w: 142%;
    --hero-video-shift-x: -14%;
    --hero-video-shift-y: -6%;
    --hero-video-margin-right: -42%;
  }

  .site-logo img {
    width: 84px;
    height: 36px;
  }

  .site-header__submit {
    min-height: 40px;
    padding: 0 16px;
    font-size: 14px;
    font-weight: 400;
  }

  .container {
    padding-inline: 16px;
  }

  .site-header .container.site-header__inner,
  .showcase__intro .container,
  .showcase__band .container {
    padding-inline: 16px;
  }

  .hero__shell {
    padding: 24px 0 32px 12px;
    grid-template-columns: minmax(0, 12.55fr) minmax(117px, 9%);
    column-gap: 0;
    gap: 0;
  }

  .hero__title {
    font-size: 13px;
    line-height: 1.33;
    text-align: left;
  }

  .hero__title-lead,
  .hero__title-break,
  .hero__title-em {
    font-size: 13px;
  }

  .hero__title-em {
    font-weight: 700;
  }

  .hero__copy {
    gap: 14px;
    align-items: flex-start;
  }

  .hero__visual {
    width: 100%;
    margin: 0;
    align-self: center;
    justify-self: end;
    align-items: center;
    overflow: hidden;
  }

  .hero__logo-video {
    width: var(--hero-video-w);
    max-width: none;
    height: auto;
    max-height: none;
    margin-left: auto;
    margin-right: var(--hero-video-margin-right);
    transform: translateX(var(--hero-video-shift-x)) translateY(var(--hero-video-shift-y));
    aspect-ratio: 16 / 9;
    object-fit: contain;
    object-position: right center;
    mix-blend-mode: multiply;
  }
  .showcase__text 
  {
    width: 90%;
  }
  .showcase__text p,
  .showcase__band-text {
    font-size: clamp(16px, 4.1vw, 20px);
  }

  .showcase__link {
    font-size: clamp(14px, 4vw, 16px);
    line-height: 1.4;
  }

  .showcase__trophy {
    right: 4px;
    bottom: calc(-1 * clamp(24px, 5vw, 44px));
    width: min(46vw, 200px);
    height: auto;
    aspect-ratio: 528 / 768;
    margin: 0;
  }

  .showcase__trophy-stone {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: right bottom;
  }

  .jury {
    --jury-bg-opacity: 0.26;
  }

  .jury::before {
    width: min(640px, 140vw);
  }

  .jury__grid {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 320px;
    margin-inline: auto;
  }

  .jury-card {
    flex: none;
    max-width: 320px;
  }

  .jury-card:nth-child(4),
  .jury-card:nth-child(5) {
    flex: none;
    width: 100%;
    max-width: 320px;
  }

  .jury-card__info {
    width: 100%;
  }

  .jury-card__photo {
    max-width: 280px;
  }

  .jury-card__name {
    display: block;
    width: min(220px, 100%);
    max-width: 100%;
    margin-inline: auto;
    min-height: 56px;
    padding: 8px;
    font-size: clamp(11px, 3.2vw, 13px);
    line-height: 1.15;
    text-align: center;
    white-space: normal;
    box-sizing: border-box;
  }

  .showcase__band {
    padding-block: 40px;
  }

  .showcase__band-text {
    font-size: clamp(18px, 4vw, 24px);
    line-height: 1.35;
  }

  .page-banner__content {
    padding-block: clamp(36px, 8vw, 44px);
    padding-inline: 16px;
  }

  .page-banner__title {
    white-space: normal;
    font-size: clamp(22px, 7vw, 30px);
    line-height: 1.15;
    word-break: break-word;
  }

  .partner-card__logo {
    min-height: 200px;
    padding: 32px 24px;
  }

  .partner-card__body {
    padding: 24px 20px;
  }

  .partner-card__body p {
    font-size: 15px;
    font-weight: 300;
    line-height: 20px;
  }

  .privilege-page__shell {
    padding-inline: 16px;
  }

  .privilege-page__title {
    width: min(var(--privilege-title-w), 100%);
    max-width: var(--privilege-title-w);
    min-height: 2em;
    font-size: clamp(22px, 6.5vw, 28px);
    line-height: 1.2;
  }

  .privilege-page__list-block h3 {
    font-size: 17px;
    line-height: 22px;
  }

  .privilege-page__list-block li {
    font-size: 14px;
    line-height: 26px;
  }
}

@media (max-width: 425px) {
  /* .showcase__text {
    width: 80%;
  } */

  .jury__black-bar {
    display: none;
  }

  .jury__grid {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 360px;
    margin-inline: auto;
    gap: 28px;
  }

  .jury-card {
    position: relative;
    flex: none;
    width: 100%;
    max-width: 360px;
    margin-inline: auto;
    isolation: isolate;
  }

  .jury-card::before {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    top: calc(min(320px, 100%) * 4 / 3 * 0.645);
    bottom: 0;
    background: var(--color-black);
    z-index: 0;
    pointer-events: none;
  }

  .jury-card__photo,
  .jury-card__info {
    position: relative;
    z-index: 1;
  }

  .jury-card:nth-child(4),
  .jury-card:nth-child(5) {
    flex: none;
    width: 100%;
    max-width: 360px;
    margin-inline: auto;
  }

  .jury-card__info {
    width: 100%;
  }

  .jury-card__photo {
    width: 100%;
    max-width: 320px;
    margin-inline: auto;
    aspect-ratio: 3 / 4;
    background-size: cover;
    background-position: center top;
  }

  .jury-card__name {
    display: block;
    width: min(240px, 100%);
    max-width: 100%;
    margin-inline: auto;
    min-height: 58px;
    padding: 8px 6px;
    font-size: clamp(12px, 3.6vw, 14px);
    line-height: 1.15;
    text-align: center;
    white-space: normal;
    box-sizing: border-box;
  }
}

