/** Hash Configs **/
@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@200;300;400;500;600;700;800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Handlee&display=swap");

/** CSS Variables for Branding **/
:root {
  /* Spacing */
  --xs: 1%;
  --sm: 2.5%;
  --md: 5%;
  --lg: 7.5%;
  --xl: 10%;
  --px-xs: 1%;
  --px-sm: 2.5%;
  --px-md: 5%;
  --px-lg: 7.5%;
  --px-xl: 10%;

  /* Brand Colors */
  --gradient-start: #fbf9ee;
  --gradient-end: #ffdd57;
  --accent-primary: #faad1a;
  --accent-secondary: #fecc07;
  --text-dark: #824200;
  --text-light: #915225;
  --bg-light: #fbf9ee;

  /* Typography */
  --font-serif: "DM Serif Display", serif;
  --font-sans: "Inter", sans-serif;

  /* Effects */
  --shadow: 0 14px 40px rgba(0, 0, 0, 0.1);
  --scroll-speed: 1s;

  /* Nav lines */
  --line-width: 25px;
  --line-height: 4px;
  --gap: 10px;
  --visible-lines: 3;

  /* Z-index layers */
  --z-header: 10;
  --z-nav-lines: 100;
  --z-menu-toggle: 1200;
  --z-menu-overlay: 1100;
  --z-profile-overlay: 2000;
  --z-partner-overlay: 2000;
}

/** Hash Configs Ends **/

/** Base Styles **/
html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: var(--font-sans);
  background: #fbf9ee;
  overflow: hidden;
  scroll-behavior: smooth;
  user-select: none;
  -webkit-user-select: none;
}

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-tap-highlight-color: transparent;
}

/** Page Grid **/
.pageGrid {
  min-height: 100vh;
  overflow: hidden;
}

/** Header **/
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2vw 4vw;
  padding-bottom: 0;
  box-sizing: border-box;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-header);
  transform: translateY(-100%);
  transition: transform 0.4s ease, all 0.5s ease;
}

body.show-header .site-header {
  transform: translateY(0);
}

.logo-img {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 55px;
  height: 55px;
}

/** Menu Toggle Button **/
.menu-toggle {
  position: relative;
  z-index: var(--z-menu-toggle);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.menu-toggle i {
  color: #fff;
  font-size: 25px;
}

/** Menu Overlay **/
.menu-overlay {
  position: fixed;
  inset: 0;
  display: flex;
  overflow: hidden;
  background: transparent;
  pointer-events: none;
  z-index: var(--z-menu-overlay);
  transition: background 0.35s ease;
}

.menu-overlay.active {
  pointer-events: auto;
}

/** Menu Close Button **/
.menu-close-btn {
  position: absolute;
  top: 26px;
  right: 26px;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  background: #fff;
  border: 1px solid #eadfcd;
  border-radius: 50%;
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: transform 0.2s ease;
  opacity: 0;
  pointer-events: none;
  z-index: 9999;
}

.menu-close-btn i {
  font-size: 28px;
  color: #7a4b19;
}

.menu-overlay.active .menu-close-btn {
  opacity: 1;
  pointer-events: auto;
}

/** Left Panel **/
.menu-left {
  width: 40%;
  height: 100%;
  background: #f6efdf;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateX(-100%);
  transition: transform 0.7s ease;
  overflow: hidden;
}

.menu-overlay.active .menu-left {
  transform: translateX(0);
}

.menu-left nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  row-gap: 2.4rem;
  text-align: center;
}

.menu-left a {
  text-decoration: none;
  font-family: var(--font-serif);
  font-size: 4.8rem;
  line-height: 5.6rem;
  font-weight: bold;
  color: #824200;
  display: block;
  transition: 0.25s color, 0.25s transform;
}

.menu-left a:hover {
  color: #502d10;
  transform: translateX(4px);
}

/** Right Panel **/
.menu-right {
  width: 60%;
  height: 100%;
  background: #fff;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 2.5%;
  transform: translateX(100%);
  transition: transform 0.7s cubic-bezier(0.76, 0, 0.24, 1);
  box-shadow: -4px 0 18px rgba(0, 0, 0, 0.08);
  -webkit-overflow-scrolling: touch;
}

.menu-overlay.active .menu-right {
  transform: translateX(0);
}

.menu-right::-webkit-scrollbar {
  width: 8px;
}

.menu-right::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.menu-right::-webkit-scrollbar-thumb {
  background: #cca75f;
  border-radius: 10px;
}

.menu-right::-webkit-scrollbar-thumb:hover {
  background: #9e7348;
}

.menu-right h2 {
  font-size: 3.4rem;
  line-height: 4.2rem;
  color: #824200;
  margin-bottom: 1.6rem;
}

/** Award Sections in Menu **/
.award-category {
  margin-bottom: 2.4rem;
}

.menu-cat {
  font-weight: bold;
  color: #9e7348;
  text-transform: uppercase;
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

.menu-awardee-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 8px;
}

.menu-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px;
  border: 1px dashed #f0e4cf;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.menu-item:hover {
  background: #f8f2e4;
}

.menu-item img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
  flex-shrink: 0;
}

.menu-item p.awardee-name {
  font-size: 1.6rem;
  line-height: 2.4rem;
  font-weight: 600;
  color: #824200;
  margin: 0;
  line-height: 1.2;
}

.menu-item h5.awardee-category {
  font-size: 1.2rem;
  line-height: 2rem;
  font-weight: 400;
  color: #ccab8e;
  margin: 2px 0 0;
}

/** Profile Overlay **/
.profile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  z-index: var(--z-profile-overlay);
}

.profile-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.close-btn {
  position: absolute;
  top: 26px;
  right: 26px;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  background: #fff;
  border: 1px solid #eadfcd;
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  z-index: 9999;
  transition: transform 0.2s ease;
}

.close-btn:hover {
  transform: scale(1.1);
}

.close-btn i {
  font-size: 28px;
  color: #7a4b19;
}

.profile-card {
  width: 100%;
  height: 100vh;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 80px;
  padding: 0 80px;
}

.profile-info {
  display: flex;
  flex-direction: column;
  justify-items: center;
  flex: 1;
  row-gap: 1.2rem;
  max-height: 70vh;
  overflow-y: auto;
}

.profile-info::-webkit-scrollbar {
  width: 8px;
}

.profile-info::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.profile-info::-webkit-scrollbar-thumb {
  background: #d5cbb9;
  border-radius: 4px;
  transition: background 0.3s ease;
  opacity: 0.5;
}

.profile-info::-webkit-scrollbar-thumb:hover {
  background: #c0a88f;
}

.badge {
  display: inline-block;
  color: #7a4b19;
  border-radius: 20px;
  font-size: 1.4rem;
  font-weight: 600;
}

h2#profileName {
  font-family: var(--font-serif);
  font-size: 3.6rem;
  line-height: 4.4rem;
}

#profileCopy {
  line-height: 1.6;
  color: var(--text-light);
  white-space: pre-line;
}

.profile-overlay .inner.n0-i2 {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.inner-custom.n1-i1 {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 10px;
}

.profile-photo {
  width: 100%;
  height: 280px;
  border-radius: 22px;
  background: #ddd center / cover no-repeat;
  background-position: top center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  position: relative;
  cursor: pointer;
}

.profile-photo::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: #fecc07;
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.profile-photo:hover::after {
  background: #ffd930;
}

.profile-photo::before {
  content: "▶";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-45%, -50%);
  font-size: 30px;
  color: #ffffff;
  z-index: 1;
  pointer-events: none;
}

.profile-side-image {
  width: 100%;
  height: 280px;
  border-radius: 22px;
  background: #ddd;
  object-fit: cover;
  object-position: top center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.profile-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 10px;
}

.profile-gallery-item {
  width: 100%;
  height: 200px;
  border-radius: 16px;
  background: #ddd;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.profile-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/** Lightbox **/

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 10000;
  cursor: default;
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

/* Navigation container */
.lightbox-nav {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 10001;
}

/* Arrow divs */
.lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  pointer-events: auto !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  z-index: 10002;
  user-select: none;
}

.lightbox-arrow:hover {
  background: white;
  transform: translateY(-50%) scale(1.05);
}

.lightbox-arrow:active {
  transform: translateY(-50%) scale(0.95);
}

.lightbox-arrow.prev {
  left: 30px;
}

.lightbox-arrow.next {
  right: 30px;
}

.lightbox-arrow i {
  font-size: 28px;
  color: #333;
}

/* Disabled state */
.lightbox-arrow.disabled {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none !important;
}

.lightbox-arrow.disabled:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-50%) scale(1);
}

/* Counter */
.lightbox-counter {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 1.4rem;
  font-weight: 600;
  z-index: 10002;
  pointer-events: none;
}

/* Close button */
.lightbox-close-btn {
  position: absolute;
  top: 26px;
  right: 26px;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  background: #fff;
  border: 1px solid #eadfcd;
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  pointer-events: auto !important;
  z-index: 10003;
  transition: transform 0.2s ease;
}

.lightbox-close-btn:hover {
  transform: scale(1.05);
}

.lightbox-close-btn i {
  font-size: 24px;
  color: #333;
}

/* Lightbox image */
.lightbox-img {
  max-width: 85%;
  max-height: 85%;
  object-fit: contain;
  border-radius: 16px;
  background-color: #d0d0d0;
  pointer-events: none;
  z-index: 9999;
}

/** Main Container **/
.main-container {
  display: flex;
  flex-wrap: nowrap;
  height: 100vh;
  width: 100vw;
  will-change: transform;
  position: relative;
  transition: transform var(--scroll-speed) cubic-bezier(0.76, 0, 0.24, 1);
}

.main-container.animating {
  user-select: none;
  pointer-events: none;
}

.main-container.animating .section-nav-lines-wrapper {
  pointer-events: auto;
}

/** Sections **/
.section {
  flex: 0 0 100vw;
  width: 100vw;
  height: 100vh;
  box-sizing: border-box;
  padding: 0 10vw;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  opacity: 0;
  transform: scale(0.98);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.section.active {
  opacity: 1;
  transform: scale(1);
}

/** Section Backgrounds **/
.hero {
  background: linear-gradient(135deg, #fbf9ed, #fee47e);
}

.about,
.judges,
.awardees {
  background-color: white;
}

.about-2,
.partners {
  background-color: #fbf9ee;
}

.closing-section {
  text-align: center;
  background-image: url(../img/close-bg.webp);
  background-size: 30% 50%;
  background-size: 450px 450px;
  background-position: center;
  background-repeat: no-repeat;
}

/** Grid Container **/
.grid-container {
  display: grid;
  width: 100%;
  max-width: 1600px;
  align-items: center;
}

/** Typography **/
h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

h1,
h2,
h3 {
  font-family: var(--font-serif);
  color: var(--text-dark);
}

:root {
  --fs-h1-fluid: calc(36px + (36 * (100vw - 320px) / 1120));
  --fs-h1: clamp(34px, var(--fs-h1-fluid), 80px);
}

h1 {
  font-size: var(--fs-h1);
  line-height: calc(var(--fs-h1) * 1.1);
}

h2 {
  font-size: 2.4rem;
  line-height: 3.2rem;
}

h3 {
  font-size: 1.8rem;
  line-height: 2.6rem;
}

h4 {
  font-size: 1.4rem;
  line-height: 2.2rem;
  color: var(--text-light);
  font-weight: 400;
}

p {
  font-size: 1.6rem;
  line-height: 2.4rem;
  max-width: 50ch;
  color: var(--text-light);
}

a {
  font-size: 1.6rem;
  line-height: 2.4rem;
  text-decoration: none;
}

img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
}

.next-line {
  display: block;
}

.uppercase {
  text-transform: uppercase;
  line-height: 1.3rem;
}

/** HERO Section **/
.hero .logo {
  font-size: 1rem;
  font-weight: 600;
}

.text-content {
  display: grid;
  row-gap: 1.2rem;
}

.image-block img {
  width: 80%;
}

.cta-buttons {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.cta-buttons a {
  color: var(--text-dark);
  display: inline-block;
  text-align: center;
  padding: 2% 5%;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}

/* .cta-buttons a:hover {
  background-color: var(--text-dark);
  color: white;
  border: 2px solid transparent;
} */

/* @media (hover: hover) {
  .cta-buttons a:hover {
    background-color: var(--text-dark);
    color: white;
    border: 2px solid transparent;
  }
} */

.cta-button-1 {
  background-color: var(--accent-secondary);
  border: 2px solid var(--accent-secondary);
}

.cta-button-2 {
  border: 2px solid var(--text-dark);
}

/** ABOUT Section **/
.about .award-types {
  display: grid;
  row-gap: 2.4rem;
}

.award-type {
  display: grid;
  row-gap: 0.8rem;
}

.award-type a {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  color: var(--accent-primary);
}

.award-type p {
  font-size: 1.4rem;
  line-height: 2.2rem;
}

.straight-line {
  border: none;
  border-top: 1px solid var(--accent-secondary);
}

.about-2 p.tagline {
  max-width: 72ch;
  text-align: center;
}

/** JUDGES Section **/
.judge-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.judge-img-block {
  width: 20%;
}

.judge-info {
  margin-top: 1%;
}

/** GALLERY Section (M5) **/
.gallery-section {
  padding: 0;
  overflow: hidden;
}

.gallery-layout {
  display: grid;
  grid-template-columns: 530px 1fr;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}

.gallery-nav {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 14rem;
  border-right: 1px solid #e7decf;
  height: 100vh;
  background: #f9f6f0;
  position: sticky;
  top: 0;
}

.nav-subtitle {
  color: var(--text-dark);
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 3.6rem;
  line-height: 4.4rem;
  margin-bottom: 1rem;
}

.gallery-nav p {
  font-size: 1.6rem;
  color: var(--text-light);
  font-family: var(--font-sans);
  line-height: 2.4rem;
  margin-bottom: 2rem;
  max-width: 80%;
}

.gallery-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  padding: 0;
  margin: 0;
  gap: 1.5rem;
}

.gallery-nav li {
  position: relative;
  margin-bottom: 0;
}

.gallery-nav li::before {
  content: "";
  position: absolute;
  left: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 0;
  background: var(--accent-primary);
  border-radius: 2px;
  transition: height 0.3s ease;
}

.gallery-nav li.active::before {
  height: 60%;
}

.gallery-nav a {
  text-decoration: none;
  font-size: 2.5rem;
  color: #cbb8a0;
  font-family: var(--font-serif);
  transition: all 0.3s ease;
  display: block;
  line-height: 4rem;
  position: relative;
}

.gallery-nav a.active,
.gallery-nav a:hover,
.gallery-nav li.active a {
  color: var(--text-dark);
  transform: translateX(8px);
}

.gallery-grid-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: minmax(170px, auto);
  gap: 15px;
  padding: 5rem 4rem;
  padding-bottom: 10rem;
  overflow-y: auto;
  height: 100vh;
  align-content: start;
  scroll-behavior: smooth;
}

.gallery-grid-container::-webkit-scrollbar {
  width: 8px;
}

.gallery-grid-container::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.gallery-grid-container::-webkit-scrollbar-thumb {
  background: #d5cbb9;
  border-radius: 4px;
  transition: background 0.3s ease;
}

.gallery-grid-container::-webkit-scrollbar-thumb:hover {
  background: #c0a88f;
}

.gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f0f0f0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.gallery-item.small {
  grid-row: span 1;
  grid-column: span 1;
  min-height: 170px;
}

.gallery-item.medium {
  grid-row: span 2;
  grid-column: span 1;
  min-height: 355px;
}

.gallery-item.large {
  grid-row: span 3;
  grid-column: span 1;
  min-height: 540px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item.active-city {
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  transform: scale(1.02);
  z-index: 2;
}

.gallery-item.inactive-city {
  opacity: 0.4;
}

/** Carousel Wrapper for Mobile **/
.gallery-carousel-wrapper {
  position: relative;
  overflow: hidden;
}

.carousel-indicators {
  position: relative;
  bottom: 0;
  left: 50%;
  margin-top: 10px;
  transform: translateX(-50%);
  display: flex;
  overflow: hidden;
  width: calc(30px * 3 + 15px * 2);
  height: 4px;
}

.carousel-line-track {
  display: flex;
  gap: 15px;
  transition: transform 0.35s ease;
}

.carousel-line {
  width: 30px;
  height: 4px;
  background: var(--text-light);
  opacity: 0.4;
  border-radius: 2px;
  flex-shrink: 0;
  transition: 0.25s ease;
}

.carousel-line.active {
  background: var(--text-dark);
  opacity: 1;
}

/** AWARDEES Section **/
.awardees {
  padding: 0;
  overflow: hidden;
}

.awardees-layout {
  display: grid;
  grid-template-columns: 450px 1fr;
  height: 100vh;
  width: 100%;
}

.awardees-nav {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 14rem;
  border-right: 1px solid #e7decf;
  background: #f9f6f0;
  position: sticky;
  top: 0;
  height: 100vh;
}

.awardees-nav-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.awardees-nav .nav-title {
  font-size: 1.6rem;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.awardees-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.awardees-nav a {
  display: block;
  font-family: var(--font-serif);
  font-size: 3.6rem;
  line-height: 4.4rem;
  text-decoration: none;
  color: #cbb8a0;
  transition: all 0.3s ease;
  position: relative;
}

.awardees-nav a.active,
.awardees-nav a:hover {
  color: var(--text-dark);
  transform: translateX(8px);
}

.awardees-nav a.active::before {
  content: "";
  position: absolute;
  left: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 60%;
  background: var(--accent-primary);
  border-radius: 2px;
}

.awardees-scroll-container {
  height: 100vh;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 5rem 4rem;
  padding-bottom: 10rem;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

.awardees-scroll-container::-webkit-scrollbar {
  width: 8px;
}

.awardees-scroll-container::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.awardees-scroll-container::-webkit-scrollbar-thumb {
  background: #d5cbb9;
  border-radius: 4px;
  transition: background 0.3s ease;
}

.awardees-scroll-container::-webkit-scrollbar-thumb:hover {
  background: #c0a88f;
}

.awardee-category-group {
  margin-bottom: 6rem;
  scroll-margin-top: 2rem;
}

.awardee-category-group:last-child {
  margin-bottom: 2rem;
}

.category-heading {
  font-size: 3.6rem;
  line-height: 4.4rem;
  font-family: var(--font-serif);
  color: var(--text-dark);
  margin-bottom: 2.5rem;
}

.awardee-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 2rem;
}

.awardee-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(145, 82, 37, 0.08);
  cursor: pointer;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  background: white;
}

.awardee-card:hover {
  box-shadow: 0 12px 32px rgba(145, 82, 37, 0.15);
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.awardee-card-image {
  position: relative;
  height: 80vh;
  max-height: 500px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.awardee-card-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent 50%);
}

.awardee-card-image:hover img {
  transform: scale(1.05);
}

.awardee-card-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 5%;
  color: #fff;
  z-index: 2;
  text-align: left;
}

.awardee-card-info p {
  font-size: 1.6rem;
  line-height: 2.4rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  max-width: none;
}

.awardee-nav {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 20px;
}

.nav-line {
  width: var(--line-width);
  height: var(--line-height);
  background-color: #ccb8a6;
  transition: all 0.3s ease;
  cursor: pointer;
  opacity: 0.5;
  border-radius: 2px;
}

.nav-line.active {
  background-color: #71431a;
  opacity: 1;
  transform: scaleY(1.2);
}

/** CLOSING Section **/
.closing-section h1 {
  font-size: 5rem;
  line-height: 5.8rem;
}

.closing-section .straight-line {
  width: 55%;
  border-top: 2px solid #cca75f;
}

.closing-section p.tagline {
  max-width: 65ch;
}

/** Section Navigation Lines **/
.section-nav-lines-wrapper {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: flex-start;
  align-items: center;
  overflow: hidden;
  width: calc(
    var(--line-width) * var(--visible-lines) + var(--gap) *
      (var(--visible-lines) - 1)
  );
  height: var(--line-height);
  z-index: var(--z-nav-lines);
  padding: 2px;
  transition: opacity 0.3s ease;
  pointer-events: auto;
}

.section-nav-lines-track {
  display: flex;
  gap: var(--gap);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.section-nav-line {
  width: var(--line-width);
  height: var(--line-height);
  background-color: #ccb8a6;
  transition: all 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
  opacity: 0.5;
  border-radius: 2px;
  flex-shrink: 0;
}

.section-nav-line.active {
  background-color: #71431a;
  opacity: 1;
  transform: scaleY(1.2);
}

/** Partner Overlay **/
.partner-overlay {
  position: fixed;
  width: 100%;
  height: 100vh;
  z-index: var(--z-partner-overlay);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.partner-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.partner-overlay .overlay-content {
  position: relative;
  background: #fff;
  width: 100%;
  height: 100vh;
  display: grid;
  justify-content: center;
  align-items: center;
  place-content: center;
  padding: 4vw 10vw;
  overflow: hidden;
}

.partner-overlay .overlay-content::-webkit-scrollbar {
  width: 8px;
}

.partner-overlay .overlay-content::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.partner-overlay .overlay-content::-webkit-scrollbar-thumb {
  background: #cca75f;
  border-radius: 10px;
}

.partner-overlay .overlay-content::-webkit-scrollbar-thumb:hover {
  background: #9e7348;
}

.partner-close {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  background: #fff;
  border: 1px solid #eadfcd;
  border-radius: 50%;
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: transform 0.2s ease;
  z-index: 10;
}

.partner-close i {
  font-size: 28px;
  color: #7a4b19;
}

.partner-logo {
  max-width: 200px;
  height: auto;
  object-fit: contain;
  margin-bottom: 1rem;
}

.video-wrapper {
  position: relative;
  display: flex;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
}

.video-wrapper img {
  width: 100%;
  display: block;
  object-fit: cover;
  border-radius: 10px;
}

.video-play-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: #fff;
  background: rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.video-wrapper:hover .video-play-icon {
  background: rgba(0, 0, 0, 0.5);
}

.video-play-icon i {
  transform: scale(1);
  transition: transform 0.3s ease;
  color: white;
  background-color: #71431a;
  border-radius: 50%;
  padding: 10px;
}

.side-image {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

#partnerGallery {
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
}

#partnerGallery img {
  width: 23%;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
}

/** Scroll Sections **/
.vertical-scroll-section {
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}

.vertical-scroll-section .awardees-scroll-container {
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}

.horizontal-scroll-section .scroll-images {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  display: flex;
  gap: 20px;
}

/** Responsive Design **/

@media (min-width: 1440px) {
  /* Add styles as needed */
}

/* Small laptop screen (≤1024px) */
@media (max-width: 1024px) {
  .hero,
  .about,
  .about-2,
  .judges,
  .closing-section {
    padding: 0 5vw;
  }

  .hero .grid-container,
  .about .grid-container,
  .about-2 .grid-container,
  .judges .grid-container {
    column-gap: 20px;
  }

  .scroll-images {
    height: 50vh;
  }

  .scroll-image {
    flex: 0 0 calc((100% - 1.2rem) / 1.5);
  }

  .menu-left {
    width: 35%;
  }

  .menu-right {
    width: 65%;
  }

  .profile-card {
    gap: 60px;
    padding: 0 60px;
  }

  .profile-photo,
  .profile-side-image {
    height: 220px;
    border-radius: 18px;
  }

  .profile-photo::after {
    width: 50px;
    height: 50px;
  }

  .profile-photo::before {
    font-size: 26px;
  }

  h2#profileName {
    font-size: 3rem;
    line-height: 3.6rem;
  }

  .badge {
    font-size: 1.5rem;
  }

  .close-btn {
    top: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
  }

  .close-btn i {
    font-size: 26px;
  }

  .gallery-layout {
    grid-template-columns: 350px 1fr;
  }

  .gallery-nav {
    padding-left: 3rem;
  }

  .nav-subtitle {
    font-size: 2.8rem;
    line-height: 3.6rem;
  }

  .gallery-nav a {
    font-size: 2rem;
    line-height: 3.2rem;
  }

  .gallery-nav p {
    font-size: 1.4rem;
    line-height: 2.2rem;
  }

  .gallery-grid-container {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: minmax(150px, auto);
  }

  .gallery-item.small {
    min-height: 150px;
  }

  .gallery-item.medium {
    min-height: 315px;
  }

  .gallery-item.large {
    min-height: 480px;
  }

  .awardees-layout {
    grid-template-columns: 320px 1fr;
  }

  .awardees-nav {
    padding-left: 3rem;
  }

  .awardees-nav a {
    font-size: 2.4rem;
    line-height: 3.2rem;
  }

  .awardee-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
  }

  .partner-overlay .overlay-content {
    padding: 2rem;
  }

  .partner-logo {
    max-width: 150px;
  }

  #partnerGallery img {
    width: calc(55% - 6px);
  }
}

/* @media (max-width: 768px) { */
@media (max-width: 768px) {
  html {
    overflow-y: auto;
    overflow-x: hidden;
    scroll-behavior: smooth;
    height: auto;
  }

  body {
    overflow-y: auto;
    overflow-x: hidden;
    height: auto;
  }

  .mobile-layout {
    overflow-y: auto;
    overflow-x: hidden;
  }

  .mobile-layout .main-container {
    flex-direction: column;
    height: auto;
    transform: none;
    width: 100%;
  }

  .mobile-layout .section {
    flex: none;
    width: 100%;
    height: auto;
    min-height: 100vh;
    opacity: 1;
    transform: none;
  }

  .mobile-layout .section-nav-lines-wrapper {
    display: none;
  }

  .mobile-layout .awardees-layout {
    grid-template-columns: 1fr;
    height: auto;
  }

  .mobile-layout .awardees-nav {
    position: relative;
    height: auto;
    padding: 2rem;
    border-right: none;
    border-bottom: 1px solid #e7decf;
  }

  .mobile-layout .awardees-nav ul {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .mobile-layout .awardees-nav a {
    font-size: 1.8rem;
    line-height: 2.2rem;
  }

  .mobile-layout .awardees-nav a.active::before {
    display: none;
  }
}

/* @media (max-width: 577px) { */
@media (max-width: 768px) {
  .mobile-stack-mode .section {
    position: relative;
    z-index: 1;
    transform-origin: top center;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1),
      opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform, opacity;
  }

  .mobile-stack-mode .section:nth-child(1) {
    z-index: 100;
  }

  .mobile-stack-mode .section:nth-child(2) {
    z-index: 99;
  }

  .mobile-stack-mode .section:nth-child(3) {
    z-index: 98;
  }

  .mobile-stack-mode .section:nth-child(4) {
    z-index: 97;
  }

  .mobile-stack-mode .section:nth-child(5) {
    z-index: 96;
  }

  .mobile-stack-mode .section:nth-child(6) {
    z-index: 95;
  }

  .mobile-stack-mode .section:nth-child(7) {
    z-index: 94;
  }

  .mobile-stack-mode .section:nth-child(8) {
    z-index: 93;
  }

  .mobile-stack-mode .section {
    position: sticky;
    top: 0;
  }

  .mobile-stack-mode .section.stack-visible {
    transform: translateY(0) scale(1);
    opacity: 1;
  }

  .mobile-stack-mode .section {
    box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.1);
  }

  .mobile-stack-mode .section:not(:first-child) {
    margin-top: -1px;
  }

  .mobile-stack-mode .section {
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    perspective: 1000px;
    -webkit-perspective: 1000px;
  }
}

/* Hide nav lines on desktop */
/* @media (min-width: 578px) { */
@media (min-width: 769px) {
  .awardee-nav {
    opacity: 0;
    pointer-events: none;
  }
}

@media (max-width: 768px) {
  .section .grid-container {
    text-align: center;
    justify-items: center;
  }

  p {
    max-width: 60ch;
  }

  .site-header {
    transform: unset;
    align-items: center;
    padding: 0 2rem;
    padding-bottom: 0;
    height: 90px;
    background-color: #fcf5d6;
  }

  .site-header {
    transform: translateY(0) !important;
  }

  body.show-header .site-header {
    transform: translateY(0) !important;
  }

  .logo-img {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 55px;
    height: 55px;
  }

  .menu-toggle {
    width: 40px;
    height: 40px;
  }

  .menu-toggle i {
    font-size: 20px;
  }

  .profile-card {
    flex-direction: column;
    gap: 0;
    padding: 20px 16px 20px;
    align-items: flex-start;
    text-align: left;
    overflow-y: auto;
    height: 100vh;
    justify-content: flex-start;
  }

  .profile-overlay .inner.n0-i2 {
    flex: unset;
    width: 100%;
    margin-top: 0;
    gap: 10px;
    margin-right: unset;
  }

  .profile-photo,
  .profile-side-image {
    width: 100%;
    height: 40vh;
    border-radius: 14px;
  }

  .profile-photo::after {
    width: 48px;
    height: 48px;
  }

  .profile-photo::before {
    font-size: 22px;
  }

  h2#profileName {
    font-size: 2.2rem;
    line-height: 2.8rem;
    text-align: left;
  }

  .badge {
    font-size: 1.3rem;
    text-align: left;
    margin-top: 20px;
  }

  .close-btn {
    top: 14px;
    right: 14px;
    width: 42px;
    height: 42px;
  }

  .close-btn i {
    font-size: 22px;
  }

  .profile-gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .profile-gallery-item {
    height: 40vh;
    border-radius: 10px;
  }

  #profileCopy {
    font-size: 1.3rem;
    line-height: 1.5;
    text-align: left;
  }

  .profile-info {
    max-height: unset;
    overflow-y: unset;
    flex: unset;
    width: 100%;
    margin-bottom: 20px;
  }

  p#profilecopy {
    max-width: 80ch;
  }

  .scroll-image {
    flex: 0 0 80%;
    min-width: 250px;
  }

  .menu-right {
    display: none !important;
    visibility: hidden;
    opacity: 0;
    transform: translateX(100%) !important;
  }

  .menu-overlay.active .menu-right {
    display: none !important;
  }

  .menu-left {
    width: 100%;
    transform: translateX(100%);
  }

  .menu-overlay.active .menu-left {
    transform: translateX(0);
  }

  .menu-left a {
    font-size: 3rem;
    line-height: 3.8rem;
  }

  .menu-left nav ul {
    text-align: center;
  }

  .menu-close-btn {
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
  }

  .gallery-layout {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
    height: auto;
  }

  .gallery-nav {
    height: auto;
    padding: 1.5rem;
    padding-top: 0;
    border-right: none;
    border-bottom: unset;
    position: relative;
    top: auto;
    row-gap: 1.2rem;
  }

  .gallery-nav ul {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
  }

  .gallery-nav li {
    padding-left: 0;
  }

  .gallery-nav li::before {
    display: none;
  }

  .gallery-nav a {
    font-size: 1.8rem;
    line-height: 2.6rem;
    padding: 0.4rem 0.8rem;
  }

  .gallery-nav a.active,
  .gallery-nav a:hover,
  .gallery-nav li.active a {
    transform: translateY(-2px);
  }

  .nav-subtitle {
    font-size: 3.8rem;
    line-height: 4.6rem;
    text-align: center;
    color: var(--text-dark);
    font-weight: 700;
    margin: unset;
  }

  .gallery-nav p {
    text-align: center;
    max-width: 100%;
    font-size: 1.4rem;
    line-height: 2.2rem;
    margin: unset;
  }

  .gallery-grid-container {
    display: flex !important;
    overflow-x: auto !important;
    grid-template-columns: unset !important;
    grid-auto-rows: unset !important;
    gap: 15px !important;
    padding: 1rem 0 !important;
    height: calc(100% - 50px) !important;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: none;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
    align-content: unset !important;
  }

  .gallery-grid-container::-webkit-scrollbar {
    display: none;
  }

  .gallery-grid-container.grabbing {
    cursor: grabbing;
    user-select: none;
  }

  .gallery-item {
    flex: 0 0 calc((100% - (15px * 0.25)) / 1.25) !important;
    min-height: 150px !important;
    scroll-snap-align: center;
    box-sizing: border-box;
    user-select: none;
    -webkit-user-select: none;
    overflow: hidden;
    cursor: pointer;
    grid-row: span 1 !important;
    grid-column: span 1 !important;
    height: auto !important;
  }

  .gallery-item:hover {
    transform: unset;
    box-shadow: unset;
  }

  .gallery-item:hover img {
    transform: scale(1);
  }

  .gallery-carousel-wrapper {
    height: 80vh;
    padding: unset;
  }

  .carousel-indicators {
    margin-top: 20px;
  }

  .awardees-layout {
    grid-template-columns: 1fr;
  }

  .awardees-nav {
    display: none;
  }

  .awardees-scroll-container {
    padding: 5rem 2rem;
  }

  .awardee-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .awardee-card {
    height: 375px;
  }

  .section {
    scroll-snap-stop: normal !important;
    padding: 5rem 2rem;
    align-items: unset;
    text-align: center;
  }

  .hero {
    padding-top: 11.5rem;
  }

  .partners,
  .about-2,
  .closing-section {
    align-items: center;
  }

  .closing-section {
    background-size: 250px 300px;
  }

  .hero .text-content {
    text-align: center;
  }

  .hero .grid-container .image-block {
    grid-row: 1;
  }

  .cta-buttons {
    margin-top: 1%;
    gap: 1rem;
    justify-content: center;
    align-items: center;
  }

  .cta-buttons a {
    padding: 10px;
    font-size: 1.4rem;
    line-height: 2.2rem;
  }

  .grid-container {
    gap: 5rem;
    align-items: unset !important;
  }

  .about .award-types {
    row-gap: 1.6rem;
  }

  .text-content {
    display: grid;
    row-gap: 0.8rem;
  }

  .judges .text-content,
  .partners .text-content {
    text-align: center;
  }

  .judges .text-content .next-line,
  .partners .text-content .next-line {
    display: inline;
  }

  .judge-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .judge-info {
    text-align: center;
  }

  .judge-img-block {
    width: 40%;
  }

  #partnerGallery img {
    width: calc(23% - 6px);
  }

  .partner-cards {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  }

  .inner-custom.n1-i1 {
    gap: 10px;
  }

  .lightbox-img {
    max-width: 80%;
    max-height: 80%;
    border-radius: 12px;
  }

  .lightbox-close-btn {
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
  }

  .lightbox-close-btn i {
    font-size: 22px;
  }

  .mobile-horizontal-group .awardee-grid {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 1rem;
    padding: 0.5rem 1rem;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    /* Improved touch handling */
  }

  .mobile-horizontal-group .awardee-grid::-webkit-scrollbar {
    display: none;
  }

  .mobile-horizontal-group .awardee-card {
    flex: 0 0 70vw;
    scroll-snap-align: start;
    /* Ensure cards are clickable */
    cursor: pointer;
  }

  .mobile-horizontal-group .awardee-card * {
    pointer-events: none;
    /* Let the card handle events */
  }

  .mobile-horizontal-group .awardee-card {
    pointer-events: auto;
  }

  .awardee-grid.dragging {
    cursor: grabbing;
    scroll-behavior: auto;
  }

  .awardee-grid.dragging .awardee-card {
    pointer-events: none;
    /* Disable card clicks during drag */
  }

  .section-nav-lines-wrapper {
    display: none;
  }

  .main-container.animating {
    user-select: auto;
    pointer-events: auto;
  }

  .awardee-card-image {
    background-position: top center;
  }

  .awardee-card-image-tablet {
    background-position: center;
  }

  .lightbox-arrow {
    width: 50px;
    height: 50px;
  }

  .lightbox-arrow i {
    font-size: 24px;
  }

  .lightbox-arrow.prev {
    left: 15px;
  }

  .lightbox-arrow.next {
    right: 15px;
  }

  .lightbox-counter {
    bottom: 20px;
  }

  .lightbox-close-btn {
    top: 15px;
    right: 15px;
    width: 44px;
    height: 44px;
  }
}

/* Mobile screen (≤577px) */
@media (max-width: 577px) {
  .site-header {
    transform: unset;
    align-items: center;
    height: 70px;
    padding: 0 2rem;
    background-color: #fcf5d6;
  }

  .menu-left nav ul {
    text-align: center;
  }

  .section {
    scroll-snap-stop: normal !important;
    padding: 5rem 2rem;
    align-items: unset;
    text-align: center;
  }

  #m1,
  #m2,
  #m4,
  #m5,
  #m6 {
    padding: 8.5rem 2rem;
  }

  .hero {
    padding-top: 11.5rem;
  }

  .partners {
    align-items: center;
  }

  .awardees-scroll-container {
    /* padding: 5rem 2rem; */
    padding: unset;
  }

  .about-2,
  .closing-section {
    align-items: center;
  }

  .hero .text-content {
    text-align: center;
  }

  .hero .grid-container .image-block {
    grid-row: 1;
  }

  .cta-buttons {
    margin-top: 1%;
    gap: 1rem;
    justify-content: center;
    align-items: center;
  }

  .cta-buttons a {
    padding: 10px;
    font-size: 1.4rem;
    line-height: 2.2rem;
  }

  .grid-container {
    gap: 5rem;
  }

  .about .award-types {
    row-gap: 1.6rem;
  }

  .text-content {
    display: grid;
    row-gap: 0.8rem;
  }

  .judges .text-content {
    text-align: center;
  }

  .judges .text-content .next-line,
  .partners .text-content .next-line {
    display: inline;
  }

  .judge-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .judge-info {
    text-align: center;
  }

  .judge-img-block {
    width: 40%;
  }

  #partnerGallery img {
    width: calc(23% - 6px);
  }

  .partner-cards {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  }

  .close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
  }

  .grid-container {
    align-items: unset !important;
  }

  .menu-left {
    transform: translateX(100%);
  }

  .profile-card {
    flex-direction: column;
    gap: 0;
    /* padding: 60px 16px 20px; */
    padding: 60px 16px 60px;
    overflow-y: auto;

    height: 100vh;
    align-items: flex-start;
    justify-content: flex-start;
  }

  .profile-info {
    flex: unset;
    width: 100%;
    margin-bottom: 20px;
  }

  h2#profileName {
    font-size: 2.2rem;
    line-height: 2.8rem;
  }

  .badge {
    font-size: 1.3rem;
    margin-top: 20px;
  }

  #profileCopy {
    font-size: 1.3rem;
    line-height: 1.5;
  }

  .profile-overlay .inner.n0-i2 {
    flex: unset;
    width: 100%;
    margin-top: 0;
    gap: 10px;
  }

  .inner-custom.n1-i1 {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .profile-photo {
    max-width: unset;
    height: 40vh;
    border-radius: 14px;
  }

  .profile-photo::after {
    width: 48px;
    height: 48px;
  }

  .profile-photo::before {
    font-size: 22px;
  }

  .profile-side-image {
    max-width: unset;
    height: unset;
    border-radius: 14px;
  }

  .profile-gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .profile-gallery-item {
    height: 120px;
    border-radius: 10px;
  }

  .close-btn {
    top: 14px;
    right: 14px;
    width: 42px;
    height: 42px;
  }

  .close-btn i {
    font-size: 22px;
  }

  .lightbox-img {
    max-width: 90%;
    max-height: 80%;
    border-radius: 12px;
  }

  .lightbox-close-btn {
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
  }

  .lightbox-close-btn i {
    font-size: 22px;
  }

  .gallery-nav {
    padding: unset;
    padding-bottom: 1.2rem;
  }

  .nav-subtitle {
    font-size: 3.8rem;
    line-height: 4.6rem;
    color: var(--text-dark);
    font-weight: 700;
  }

  .gallery-nav a {
    font-size: 1.6rem;
    line-height: 2rem;
    padding: 0.4rem 0.8rem;
  }

  .gallery-carousel-wrapper {
    height: 60vh;
  }

  .gallery-item {
    min-height: 150px !important;
    flex: 0 0 calc((100% - (15px * 0.25)) / 1.25) !important;
  }

  .gallery-lightbox .lightbox-img {
    width: 95%;
    height: 80%;
  }

  .closing-section {
    background-size: 250px 300px;
  }

  .mobile-horizontal-group .awardee-grid {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 1rem;
    padding: 0.5rem 1rem;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .mobile-horizontal-group .awardee-grid::-webkit-scrollbar {
    display: none;
  }

  .mobile-horizontal-group .awardee-card {
    flex: 0 0 70vw;
    scroll-snap-align: start;
  }

  .mobile-horizontal-group .awardee-card,
  .mobile-horizontal-group .awardee-card * {
    user-select: none;
    -webkit-user-select: none;
    -webkit-user-drag: none;
  }

  .awardee-grid.dragging {
    cursor: grabbing;
    scroll-behavior: auto;
  }

  .section-nav-lines-wrapper {
    display: none;
  }

  .main-container.animating {
    user-select: auto;
    pointer-events: auto;
  }

  .overlay-open,
  .lightbox-open {
    overflow: hidden !important;
  }

  .menu-active {
    overflow: hidden !important;
  }

  .lightbox-arrow {
    width: 40px;
    height: 40px;
  }

  .lightbox-arrow i {
    font-size: 20px;
  }

  .lightbox-arrow.prev {
    left: 10px;
  }

  .lightbox-arrow.next {
    right: 10px;
  }

  .lightbox-close-btn {
    width: 40px;
    height: 40px;
  }

  .lightbox-close-btn i {
    font-size: 20px;
  }
}

.page-screen {
  overflow: auto !important;
}

.page-screen .pageGrid {
  grid-template-rows: auto;
}

.page-screen .main-container {
  height: auto;
}

.video-wrapper {
  width: 100%;
  max-width: 300px;
  aspect-ratio: 9 / 16;
  max-height: 90vh;
  border-radius: 25px;
  overflow: hidden;
  background: #000;
}

.video-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 25px;
  object-fit: cover; /* make video fill horizontally */
}

.intro-screen {
  background-image: url("../img/intro-screen-bg.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.intro-screen .award-image-block {
  width: 60%;
}

.intro-screen i {
  line-height: unset;
  margin-left: 5px;
}

@media (max-width: 768px) {
  .section {
    min-height: 100vh;
  }
  .intro-screen {
    min-height: 100vh;
    padding: 4vw;
  }
}
