/* ==========================================================================
   SETU BANDHAN — Landing Page Stylesheet
   Clean, conflict-free replacement for assets/css/style.css
   ========================================================================== */

/* ==========================================================================
   Design tokens
   ========================================================================== */

:root{
  --navy: #0F2E5C;
  --navy-2: #0C2750;
  --navy-section: #13326A;
  --navy-panel: #17376F;

  --gold: #D2A455;
  --gold-2: #C9A227;
  --gold-light: #E9C97A;
  --gold-pale: #FBEFC9;

  --cream: #FDF7E3;
  --bg: #F7F5F3;
  --gray-line: #DDDDDD;
  --info-bar: #DEDEDE;
  --text-body: #4C5A72;
  --white: #FFFFFF;

  --font-head: "Poppins", "Segoe UI", sans-serif;
  --font-body: "Inter", "Segoe UI", sans-serif;

  --container-w: 920px;
  --wide-container-w: 1280px;
  --page-gutter: 32px;
}


/* ==========================================================================
   Reset and global elements
   ========================================================================== */

*,
*::before,
*::after{
  box-sizing: border-box;
}

html{
  scroll-behavior: smooth;
}

body{
  margin: 0;
  overflow-x: hidden;

  font-family: var(--font-body);
  color: var(--navy);
  background-color: var(--bg);

  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img{
  display: block;
  max-width: 100%;
}

a{
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3,
h4{
  margin: 0;
  font-family: var(--font-head);
  color: var(--navy);
}

p{
  margin: 0;
}

button{
  font-family: var(--font-body);
  cursor: pointer;
}

button,
a{
  -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
a:focus-visible{
  outline: 3px solid rgba(201,162,39,.55);
  outline-offset: 3px;
}


/* ==========================================================================
   Shared layout
   ========================================================================== */

.container{
  width: 100%;
  max-width: var(--container-w);
  margin-inline: auto;
  padding-inline: var(--page-gutter);
}

section{
  padding: 64px 0;
}

.text-gold{
  color: var(--gold-2);
}

.section-eyebrow{
  display: block;
  margin-bottom: 4px;
  text-align: center;
}

.section-eyebrow .rule{
  display: block;
  width: 26px;
  height: 2px;
  margin: 0 auto 12px;
  background-color: var(--gold-2);
}

.section-eyebrow .label{
  display: block;

  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .04em;

  color: var(--gold-2);
}

.section-eyebrow.light .rule{
  background-color: var(--gold-light);
}

.section-heading{
  margin: 14px 0 20px;

  font-size: clamp(36px, 4.5vw, 70px);
  font-weight: 700;
  line-height: 1.16;
  letter-spacing: -.025em;
  text-align: center;
}

.section-desc{
  max-width: 700px;
  margin-inline: auto;

  font-size: 19px;
  line-height: 1.7;
  text-align: center;

  color: var(--text-body);
}


/* ==========================================================================
   Buttons
   ========================================================================== */

.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 46px;
  padding: 12px 26px;

  border: 0;
  border-radius: 999px;

  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;

  transition:
    transform .18s ease,
    box-shadow .18s ease,
    background-color .18s ease;
}

.btn-navy{
  color: var(--white);
  background-color: var(--navy);
}

.btn-navy:hover{
  background-color: var(--navy-2);
  box-shadow: 0 8px 18px rgba(15,46,92,.28);
  transform: translateY(-1px);
}


/* ==========================================================================
   Header
   ========================================================================== */

.site-header{
  position: sticky;
  top: 0;
  z-index: 50;

  background-color: rgba(247,245,243,.92);
  border-bottom: 1px solid rgba(15,46,92,.06);

  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.site-header .header-inner{
  width: 100%;
  max-width: var(--wide-container-w);
  margin-inline: auto;
  padding: 18px 48px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.logo{
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-icon{
  width: 74px;
  height: auto;
}

.logo-text{
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-setu{
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: .02em;
  color: var(--navy);
}

.logo-bandhan{
  margin-top: 3px;

  font-family: var(--font-head);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .28em;

  color: #D9432B;
}


/* ==========================================================================
   Hero
   ========================================================================== */

.hero{
  position: relative;
  min-height: 730px;
  padding: 72px 0 56px;
  overflow: hidden;

  display: flex;
  align-items: flex-start;

  background-color: var(--white);
}

.hero-bg{
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;

  background-image: url("../images/herobg.jpg");
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: cover;
}

.hero-content{
  position: relative;
  z-index: 1;

  width: 100%;
  max-width: 1500px;

  text-align: center;
}

.hero-title{
  font-size: clamp(46px, 5.25vw, 80px);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -.025em;
}

.hero-sub-1{
  margin-top: 36px;

  font-size: clamp(18px, 1.7vw, 26px);
  font-weight: 600;
  line-height: 1.55;

  color: var(--navy);
}

.setu-inline{
  font-family: var(--font-head);
  font-weight: 800;
  letter-spacing: .04em;
}

.hero-sub-2{
  margin-top: 24px;

  font-size: clamp(17px, 1.65vw, 25px);
  font-weight: 500;
  line-height: 1.6;

  color: #5B6B85;
}

.hero-mail{
  margin-top: 28px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;

  font-size: clamp(15px, 1.55vw, 22px);
  font-weight: 600;

  color: var(--navy);
}

.hero-mail svg{
  flex-shrink: 0;
}

.hero-mail a{
  border-bottom: 1px solid rgba(15,46,92,.35);
}

.scroll-arrow{
  width: 46px;
  height: 46px;
  margin: 34px auto 0;
  padding: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 0;
  border-radius: 50%;

  color: var(--white);
  background-color: var(--navy);
  box-shadow: 0 10px 24px rgba(15,46,92,.3);

  animation: bob 2.4s ease-in-out infinite;
}

.scroll-arrow:hover{
  background-color: var(--navy-2);
}

@keyframes bob{
  0%,
  100%{
    transform: translateY(0);
  }

  50%{
    transform: translateY(6px);
  }
}

.limited-seats{
  position: absolute;
  right: 20px;
  bottom: 20px;
  z-index: 1;

  font-size: 16px;
  font-weight: 700;
  letter-spacing: .01em;

  color: #B23A2A;
}


/* ==========================================================================
   Information bar
   ========================================================================== */

.info-bar{
  background-color: var(--navy);
  border-bottom: 1px solid #C99A3E;
}

.info-bar-inner{
  max-width: 1200px;
  padding: 22px 32px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;

  font-size: 18px;
  font-weight: 700;
  text-align: center;

  color: var(--info-bar);
}

.info-bar .divider{
  flex-shrink: 0;
  font-weight: 400;
  color: #D3A449;
}


/* ==========================================================================
   Shared carousel
   ========================================================================== */

.carousel{
  width: 100%;
  margin-top: 30px;

  display: flex;
  align-items: center;
  gap: 14px;
}

.carousel-track{
  flex: 1;
  min-width: 0;

  display: flex;
  align-items: stretch;
  gap: 20px;

  overflow-x: auto;
  padding: 6px 2px 10px;

  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;

  scrollbar-width: none;
  -ms-overflow-style: none;
}

.carousel-track::-webkit-scrollbar{
  display: none;
}

.carousel-arrow{
  flex: 0 0 38px;

  width: 38px;
  height: 38px;
  padding: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 1.5px solid rgba(15,46,92,.45);
  border-radius: 50%;

  font-size: 24px;
  line-height: 1;

  color: var(--navy);
  background-color: transparent;

  transition:
    color .2s ease,
    background-color .2s ease,
    border-color .2s ease,
    transform .2s ease;
}

.carousel-arrow:hover{
  border-color: var(--navy);
  color: var(--white);
  background-color: var(--navy);
  transform: scale(1.04);
}


/* ==========================================================================
   Awards section
   ========================================================================== */

.awards-section{
  padding: 80px 0;
  overflow: hidden;

  text-align: center;
  color: var(--white);
  background-color: var(--navy-section);
}

.awardlogo{
  display: flex;
  align-items: center;
  justify-content: center;
}
.awards-container{
  width: 100%;
  max-width: 1320px;
  margin-inline: auto;
  padding-inline: 32px;
}

.awards-section .section-heading{
  color: var(--white);
}

.awards-section .section-desc{
  max-width: 700px;
  margin-inline: auto;
  color: #C4CEE0;
}

.awards-section .category-label{
  margin: 40px 0 0;

  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;

  color: var(--white);
}


/* ==========================================================================
   Awards carousel
   ========================================================================== */

.awards-carousel{
  width: 100%;
  margin-top: 30px;

  display: flex;
  align-items: center;
  gap: 14px;
}

.awards-track{
  position: relative;

  flex: 1;
  min-width: 0;

  display: flex;
  align-items: stretch;
  gap: 20px;

  overflow-x: auto;
  overflow-y: hidden;

  padding: 6px 0 12px;

  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: 0;
  overscroll-behavior-x: contain;

  scrollbar-width: none;
  -ms-overflow-style: none;
}

.awards-track::-webkit-scrollbar{
  display: none;
}


/* ==========================================================================
   Awards carousel arrows
   ========================================================================== */

.awards-carousel .carousel-arrow{
  flex: 0 0 42px;

  width: 42px;
  height: 42px;
  padding: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 1.5px solid rgba(255,255,255,.65);
  border-radius: 50%;

  font-size: 25px;
  line-height: 1;

  color: var(--white);
  background-color: transparent;

  transition:
    color .2s ease,
    opacity .2s ease,
    transform .2s ease,
    border-color .2s ease,
    background-color .2s ease;
}

.awards-carousel .carousel-arrow:hover:not(:disabled){
  border-color: var(--white);
  background-color: rgba(255,255,255,.12);
  transform: scale(1.05);
}
/* ==========================================================================
   Awards section
   ========================================================================== */

.awards-section{
  padding: 80px 0;
  overflow: hidden;

  text-align: center;
  color: var(--white);
  background-color: var(--navy-section);
}

.awards-container{
  width: 100%;
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: 32px;
}

.awards-section .section-heading{
  color: var(--white);
}

.awards-section .section-desc{
  max-width: 700px;
  margin-inline: auto;
  color: #C4CEE0;
}

.awards-section .category-label{
  margin: 40px 0 0;

  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;

  color: var(--white);
}


/* ==========================================================================
   Awards carousel
   ========================================================================== */

.awards-carousel{
  width: 100%;
  margin-top: 30px;

  display: flex;
  align-items: center;
  gap: 14px;
}

.awards-track{
  position: relative;

  flex: 1;
  min-width: 0;

  display: flex;
  align-items: stretch;
  gap: 20px;

  padding: 6px 0 12px;

  overflow-x: auto;
  overflow-y: hidden;

  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: 0;
  overscroll-behavior-x: contain;

  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.awards-track::-webkit-scrollbar{
  display: none;
}


/* ==========================================================================
   Awards carousel arrows
   ========================================================================== */

.awards-carousel .carousel-arrow{
  flex: 0 0 42px;

  width: 42px;
  height: 42px;
  padding: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 1.5px solid rgba(255,255,255,.65);
  border-radius: 50%;

  font-size: 25px;
  line-height: 1;

  color: var(--white);
  background-color: transparent;

  transition:
    opacity .2s ease,
    transform .2s ease,
    border-color .2s ease,
    background-color .2s ease;
}

.awards-carousel .carousel-arrow:hover:not(:disabled){
  border-color: var(--white);
  background-color: rgba(255,255,255,.12);
  transform: scale(1.05);
}

.awards-carousel .carousel-arrow:disabled{
  opacity: .3;
  cursor: default;
  transform: none;
}


/* ==========================================================================
   Award cards
   Three complete cards on desktop
   ========================================================================== */

.award-card{
  position: relative;

  flex: 0 0 calc((100% - 40px) / 3);
  min-width: 0;
  height: 214px;

  padding: 30px 26px;
  overflow: hidden;

  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;

  scroll-snap-align: start;
  scroll-snap-stop: always;

  border: 1px solid rgba(232,195,97,.6);
  border-radius: 18px;

  appearance: none;
  text-align: left;
  color: var(--navy);

  background:
    radial-gradient(
      circle at 10% 12%,
      rgba(255,255,255,.96) 0%,
      rgba(255,255,255,.56) 25%,
      rgba(255,255,255,0) 56%
    ),
    linear-gradient(
      125deg,
      #FFFDF2 0%,
      #FFF4CC 52%,
      #F7D77F 100%
    );

  transition:
    transform .22s ease,
    border-color .22s ease,
    box-shadow .22s ease;
}

.award-card:hover{
  border-color: rgba(232,195,97,.95);
  box-shadow: 0 16px 34px rgba(3,15,38,.22);
  transform: translateY(-4px);
}

.award-card:focus-visible{
  outline: 3px solid var(--gold-light);
  outline-offset: 3px;
}


/* ==========================================================================
   Transparent decorative image
   ========================================================================== */

.award-card::before{
  content: "";

  position: absolute;
  top: 0;
  right: -58px;
  bottom: 0;

  width: 78%;
  height: 100%;

  background-image: url("../images/cardbg.png");
  background-repeat: no-repeat;
  background-position: right center;
  background-size: contain;

  opacity: .2;

  pointer-events: none;
  user-select: none;
}


/* ==========================================================================
   Award card content
   ========================================================================== */

.award-card-title{
  position: relative;
  z-index: 1;

  width: 68%;

  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -.025em;

  color: var(--navy);
}

.award-card-action{
  position: relative;
  z-index: 1;

  margin-top: 20px;

  display: inline-flex;
  align-items: center;
  gap: 7px;

  font-size: 12px;
  font-weight: 700;
  letter-spacing: .03em;
  text-transform: uppercase;

  color: rgba(15,46,92,.72);
}

.award-card-action span{
  font-size: 17px;
  line-height: 1;
  transition: transform .2s ease;
}

.award-card:hover .award-card-action span{
  transform: translateX(4px);
}


/* ==========================================================================
   Popup overlay
   ========================================================================== */

body.modal-open{
  overflow: hidden;
}

.award-modal{
  position: fixed;
  inset: 0;
  z-index: 1000;

  padding: 28px;

  display: flex;
  align-items: center;
  justify-content: center;

  visibility: hidden;
  opacity: 0;
  pointer-events: none;

  transition:
    opacity .24s ease,
    visibility .24s ease;
}

.award-modal.is-open{
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.award-modal-backdrop{
  position: absolute;
  inset: 0;

  background-color: rgba(4,14,33,.72);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}


/* ==========================================================================
   Popup card
   ========================================================================== */

.award-modal-dialog{
  position: relative;
  z-index: 1;

  width: min(920px, 100%);
  max-height: min(84vh, 820px);

  overflow-x: hidden;
  overflow-y: auto;

  padding: 46px 50px 48px;

  border: 1px solid rgba(210,164,85,.7);
  border-radius: 22px;

  text-align: left;
  color: var(--navy);

  background:
    radial-gradient(
      circle at 100% 0%,
      rgba(247,215,127,.55) 0%,
      rgba(247,215,127,0) 42%
    ),
    linear-gradient(
      135deg,
      #FFFDF4 0%,
      #FFF8DD 62%,
      #F8E6B0 100%
    );

  box-shadow: 0 28px 80px rgba(0,0,0,.35);

  transform: translateY(24px) scale(.98);
  transition: transform .24s ease;
}

.award-modal.is-open .award-modal-dialog{
  transform: translateY(0) scale(1);
}


/* ==========================================================================
   Popup close button
   ========================================================================== */

.award-modal-close{
  position: sticky;
  top: 0;
  z-index: 3;

  width: 42px;
  height: 42px;
  margin: -22px -26px -20px auto;
  padding: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 1px solid rgba(15,46,92,.2);
  border-radius: 50%;

  font-size: 30px;
  font-weight: 300;
  line-height: 1;

  color: var(--navy);
  background-color: rgba(255,255,255,.88);

  transition:
    color .2s ease,
    background-color .2s ease,
    transform .2s ease;
}

.award-modal-close:hover{
  color: var(--white);
  background-color: var(--navy);
  transform: rotate(90deg);
}


/* ==========================================================================
   Popup header
   ========================================================================== */

.award-modal-header{
  padding-right: 30px;
}

.award-modal-kicker{
  display: block;
  margin-bottom: 12px;

  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;

  color: var(--gold-2);
}

.award-modal-title{
  max-width: 760px;

  font-family: var(--font-head);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -.025em;

  color: var(--navy);
}

.award-modal-meta{
  width: fit-content;
  margin-top: 20px;
  padding: 11px 16px;

  border: 1px solid rgba(201,162,39,.4);
  border-radius: 8px;

  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;

  color: var(--navy);
  background-color: rgba(255,255,255,.6);
}

.award-modal-rule{
  display: block;
  width: 100%;
  height: 2px;
  margin-top: 28px;

  background: linear-gradient(
    90deg,
    var(--gold-2) 0%,
    rgba(201,162,39,.16) 100%
  );
}


/* ==========================================================================
   Popup details
   ========================================================================== */

.award-modal-body{
  padding-top: 8px;
}

.award-detail-section{
  padding: 26px 0;
  border-bottom: 1px solid rgba(15,46,92,.12);
}

.award-detail-section:last-child{
  padding-bottom: 0;
  border-bottom: 0;
}

.award-detail-heading{
  margin: 0 0 14px;

  font-family: var(--font-head);
  font-size: 21px;
  font-weight: 700;

  color: var(--navy);
}

.award-detail-intro,
.award-detail-text{
  margin: 0 0 13px;

  font-size: 15px;
  font-weight: 500;
  line-height: 1.7;

  color: #43536C;
}

.award-detail-list{
  margin: 0;
  padding: 0;

  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 11px 28px;

  list-style: none;
}

.award-detail-list li{
  position: relative;
  padding-left: 20px;

  font-size: 14px;
  font-weight: 500;
  line-height: 1.55;

  color: #43536C;
}

.award-detail-list li::before{
  content: "";

  position: absolute;
  top: .65em;
  left: 0;

  width: 7px;
  height: 7px;

  border-radius: 50%;
  background-color: var(--gold-2);
}


/* ==========================================================================
   Awards responsive
   ========================================================================== */

@media (max-width: 1000px){

  .awards-container{
    padding-inline: 24px;
  }

  .awards-track{
    gap: 18px;
  }

  .award-card{
    flex-basis: calc((100% - 18px) / 2);
    height: 200px;
    padding: 27px 23px;
  }

  .award-card::before{
    right: -52px;
    width: 80%;
  }

  .award-card-title{
    font-size: 18px;
  }
}

@media (max-width: 700px){

  .awards-section{
    padding: 64px 0;
  }

  .awards-container{
    padding-inline: 16px;
  }

  .awards-section .category-label{
    margin-top: 32px;
    font-size: 19px;
  }

  .awards-carousel{
    gap: 8px;
  }

  .awards-track{
    gap: 16px;
  }

  .award-card{
    flex-basis: 100%;
    width: 100%;
    height: 185px;
    padding: 24px 22px;
    border-radius: 16px;
  }

  .award-card::before{
    right: -48px;
    width: 82%;
  }

  .award-card-title{
    width: 70%;
    font-size: 17px;
  }

  .awards-carousel .carousel-arrow{
    flex-basis: 34px;
    width: 34px;
    height: 34px;
    font-size: 21px;
  }

  .award-modal{
    padding: 16px;
  }

  .award-modal-dialog{
    max-height: 88vh;
    padding: 38px 25px 34px;
    border-radius: 17px;
  }

  .award-modal-close{
    width: 38px;
    height: 38px;
    margin: -18px -10px -16px auto;
    font-size: 27px;
  }

  .award-modal-header{
    padding-right: 10px;
  }

  .award-modal-title{
    font-size: 28px;
  }

  .award-detail-list{
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

@media (max-width: 420px){

  .awards-container{
    padding-inline: 10px;
  }

  .awards-carousel{
    gap: 6px;
  }

  .awards-track{
    gap: 14px;
  }

  .award-card{
    height: 170px;
    padding: 21px 18px;
    border-radius: 14px;
  }

  .award-card::before{
    right: -42px;
    width: 84%;
  }

  .award-card-title{
    font-size: 15px;
  }

  .award-card-action{
    margin-top: 16px;
    font-size: 10px;
  }

  .awards-carousel .carousel-arrow{
    flex-basis: 30px;
    width: 30px;
    height: 30px;
    font-size: 19px;
  }

  .award-modal{
    padding: 10px;
  }

  .award-modal-dialog{
    max-height: 92vh;
    padding: 32px 20px 28px;
    border-radius: 14px;
  }

  .award-modal-title{
    font-size: 24px;
  }

  .award-detail-heading{
    font-size: 18px;
  }

  .award-detail-list li{
    font-size: 13px;
  }
}
.award-modal-meta{
  width: fit-content;
  margin-top: 20px;
  padding: 13px 17px;

  display: flex;
  flex-direction: column;
  gap: 7px;

  border: 1px solid rgba(201,162,39,.4);
  border-radius: 8px;

  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.45;

  color: var(--navy);
  background-color: rgba(255,255,255,.6);
}

.award-modal-meta-line{
  display: block;
}

.award-modal-meta-line + .award-modal-meta-line{
  padding-top: 7px;
  border-top: 1px solid rgba(15,46,92,.12);
}
/* ==========================================================================
   Nomination bar
   ========================================================================== */

.nomination-bar{
  width: 100%;
  padding: 34px 32px;

  background-color: var(--navy);
  border-top: 1px solid rgba(255,255,255,.1);
  border-bottom: 1px solid rgba(201,162,39,.55);
}

.nomination-bar-inner{
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.nomination-text{
  margin: 0;

  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.45;

  color: var(--white);
}

.nomination-text a{
  color: var(--gold-light);
  border-bottom: 1.5px solid var(--gold-light);

  transition:
    color .2s ease,
    border-color .2s ease;
}

.nomination-text a:hover{
  color: var(--white);
  border-color: var(--white);
}


/* ==========================================================================
   Nomination download button
   ========================================================================== */

.nomination-download{
  flex-shrink: 0;

  min-height: 52px;
  padding: 13px 26px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  border: 1.5px solid var(--gold-light);
  border-radius: 999px;

  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;

  color: var(--navy);
  background-color: var(--gold-light);

  box-shadow: 0 10px 24px rgba(0,0,0,.18);

  transition:
    color .2s ease,
    transform .2s ease,
    box-shadow .2s ease,
    background-color .2s ease;
}

.nomination-download svg{
  flex-shrink: 0;
}

.nomination-download:hover{
  color: var(--white);
  background-color: transparent;

  box-shadow: 0 12px 28px rgba(0,0,0,.25);
  transform: translateY(-2px);
}


/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 800px){

  .nomination-bar{
    padding: 30px 24px;
  }

  .nomination-bar-inner{
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .nomination-text{
    font-size: 19px;
  }
}

@media (max-width: 480px){

  .nomination-bar{
    padding: 26px 18px;
  }

  .nomination-text{
    font-size: 16px;
  }

  .nomination-download{
    width: 100%;
    max-width: 260px;
    min-height: 48px;
    padding: 12px 20px;
    font-size: 14px;
  }
}


/* ==========================================================================
   Speakers section
   ========================================================================== */

/* ==========================================================================
   Keynote speakers section
   ========================================================================== */

.keynote-section{
  position: relative;

  width: 100%;
  padding: 100px 0;

  overflow: hidden;

  text-align: center;

  background-color: var(--bg);
}

.keynote-container{
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding-inline: 30px;
}


/* ==========================================================================
   Heading
   ========================================================================== */

.keynote-section .section-eyebrow{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.keynote-section .section-eyebrow .rule{
  display: block;

  width: 40px;
  height: 2px;

  background-color: var(--navy);
}

.keynote-section .section-eyebrow .label{
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: .16em;
  text-transform: uppercase;

  color: var(--navy);
}

.keynote-section .section-heading{
  max-width: 900px;
  margin: 20px auto 24px;

  font-family: var(--font-head);
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -.035em;

  color: var(--navy);
}

.keynote-section .section-desc{
  max-width: 850px;
  margin: 0 auto 58px;

  font-size: 17px;
  font-weight: 500;
  line-height: 1.75;

  color: var(--navy);
}


/* ==========================================================================
   Carousel
   ========================================================================== */

.keynote-slider{
  position: relative;

  width: 100%;

  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) 54px;
  align-items: center;
  gap: 24px;
}

.keynote-viewport{
  width: 100%;
  min-width: 0;

  overflow: hidden;
}

.keynote-track{
  --keynote-gap: 26px;
  --visible-cards: 3;

  width: 100%;

  display: flex;
  align-items: stretch;
  gap: var(--keynote-gap);

  transform: translate3d(0, 0, 0);

  transition:
    transform .45s cubic-bezier(.22, .61, .36, 1);

  will-change: transform;
}


/* ==========================================================================
   Flip card
   ========================================================================== */

.keynote-card{
  flex: 0 0 calc(
    (
      100% -
      (
        var(--keynote-gap) *
        (var(--visible-cards) - 1)
      )
    ) /
    var(--visible-cards)
  );

  width: calc(
    (
      100% -
      (
        var(--keynote-gap) *
        (var(--visible-cards) - 1)
      )
    ) /
    var(--visible-cards)
  );

  min-width: 0;
  aspect-ratio: 3 / 4.75;

  perspective: 1200px;
}

.keynote-flip-button{
  appearance: none;

  width: 100%;
  height: 100%;
  padding: 0;

  display: block;

  border: 0;
  border-radius: 12px;
  outline: 0;

  cursor: pointer;

  font: inherit;
  text-align: left;

  color: inherit;
  background: transparent;

  perspective: 1200px;
}

.keynote-flip-inner{
  position: relative;

  display: block;

  width: 100%;
  height: 100%;

  border-radius: 12px;

  transform-style: preserve-3d;

  transition:
    transform .65s cubic-bezier(.2, .7, .2, 1);

  box-shadow:
    0 16px 38px rgba(15, 46, 92, .16);
}

.keynote-card.is-flipped .keynote-flip-inner{
  transform: rotateY(180deg);
}

.keynote-card-face{
  position: absolute;
  inset: 0;

  display: flex;
  flex-direction: column;

  width: 100%;
  height: 100%;
  overflow: hidden;

  border-radius: 12px;

  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}


/* ==========================================================================
   Front face
   ========================================================================== */

.keynote-card-front{
  background-color: var(--white);

  transform: rotateY(0deg);
}

.keynote-image{
  position: relative;

  flex: 1;
  width: 100%;
  min-height: 0;
  overflow: hidden;

  background-color: #e8ebf0;
}

.keynote-image::after{
  content: "";

  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;

  height: 24%;

  pointer-events: none;

  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(7, 29, 62, .18) 100%
  );
}

.keynote-image img{
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;

  transition: transform .45s ease;
}

.keynote-card:hover .keynote-image img{
  transform: scale(1.035);
}

.keynote-card-footer{
  flex: 0 0 82px;
  padding: 14px 12px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;

  text-align: center;

  background-color: var(--navy);
}

.keynote-name{
  display: block;

  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;

  color: var(--white);
}

.keynote-flip-hint{
  display: block;

  font-size: 10px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: .14em;
  text-transform: uppercase;

  color: rgba(255, 255, 255, .68);
}


/* ==========================================================================
   Back face
   ========================================================================== */

.keynote-card-back{
  align-items: center;
  justify-content: center;

  padding: 32px 28px;

  text-align: center;

  color: var(--white);

  background:
    radial-gradient(
      circle at top right,
      rgba(213, 173, 87, .18),
      transparent 36%
    ),
    linear-gradient(
      145deg,
      var(--navy) 0%,
      var(--navy-panel) 100%
    );

  transform: rotateY(180deg);
}

.keynote-back-content{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  width: 100%;
  height: 100%;
}

.keynote-back-label{
  margin-bottom: 18px;

  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: .18em;
  text-transform: uppercase;

  color: #d5ad57;
}

.keynote-back-name{
  max-width: 260px;

  font-family: var(--font-head);
  font-size: clamp(20px, 2vw, 27px);
  font-weight: 700;
  line-height: 1.2;
  text-align: center;

  color: var(--white);
}

.keynote-back-divider{
  display: block;

  width: 54px;
  height: 2px;
  margin: 22px auto;

  border-radius: 10px;

  background-color: #d5ad57;
}

.keynote-back-description{
  display: block;

  max-width: 290px;

  font-size: 14px;
  font-weight: 500;
  line-height: 1.7;
  text-align: center;

  color: rgba(255, 255, 255, .82);
}

.keynote-back-action{
  margin-top: auto;
  padding-top: 24px;

  font-size: 10px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: .14em;
  text-transform: uppercase;

  color: rgba(255, 255, 255, .58);
}


/* ==========================================================================
   Keyboard focus
   ========================================================================== */

.keynote-flip-button:focus-visible{
  outline: 3px solid rgba(15, 46, 92, .35);
  outline-offset: 5px;
}


/* ==========================================================================
   Carousel arrows
   ========================================================================== */

.keynote-arrow{
  appearance: none;

  width: 54px;
  height: 54px;
  padding: 0;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border: 1px solid var(--navy);
  border-radius: 50%;

  cursor: pointer;

  font-family: Arial, sans-serif;
  font-size: 38px;
  font-weight: 300;
  line-height: 1;

  color: var(--navy);
  background-color: transparent;

  transition:
    color .2s ease,
    background-color .2s ease,
    border-color .2s ease,
    opacity .2s ease;
}

.keynote-arrow span{
  display: block;
  margin-top: -4px;
}

.keynote-arrow:hover:not(:disabled){
  color: var(--white);
  border-color: var(--navy);
  background-color: var(--navy);
}

.keynote-arrow:focus-visible{
  outline: 3px solid rgba(15, 46, 92, .24);
  outline-offset: 4px;
}

.keynote-arrow:disabled{
  cursor: not-allowed;
  opacity: .25;
}


/* ==========================================================================
   Navigation dots
   ========================================================================== */

.keynote-dots{
  min-height: 14px;
  margin-top: 30px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
}

.keynote-dot{
  appearance: none;

  width: 8px;
  height: 8px;
  padding: 0;

  border: 0;
  border-radius: 50%;

  cursor: pointer;

  background-color: rgba(15, 46, 92, .24);

  transition:
    width .25s ease,
    border-radius .25s ease,
    background-color .25s ease;
}

.keynote-dot:hover{
  background-color: rgba(15, 46, 92, .55);
}

.keynote-dot.active{
  width: 24px;

  border-radius: 20px;

  background-color: var(--navy);
}

.keynote-dot:focus-visible{
  outline: 3px solid rgba(15, 46, 92, .2);
  outline-offset: 3px;
}


/* ==========================================================================
   Desktop hover flip
   ========================================================================== */

@media (hover: hover) and (pointer: fine){

  .keynote-card:hover .keynote-flip-inner{
    transform: rotateY(180deg);
  }

}


/* ==========================================================================
   Tablet — two cards
   ========================================================================== */

@media (max-width: 960px){

  .keynote-section{
    padding: 85px 0;
  }

  .keynote-slider{
    grid-template-columns: 48px minmax(0, 1fr) 48px;
    gap: 18px;
  }

  .keynote-track{
    --keynote-gap: 20px;
    --visible-cards: 2;
  }

  .keynote-card{
    aspect-ratio: 3 / 4.7;
  }

  .keynote-arrow{
    width: 48px;
    height: 48px;

    font-size: 34px;
  }

  .keynote-name{
    font-size: 15px;
  }

  .keynote-card-back{
    padding: 28px 22px;
  }

  .keynote-back-description{
    font-size: 13px;
  }

}


/* ==========================================================================
   Mobile — exactly one card
   ========================================================================== */

@media (max-width: 640px){

  .keynote-section{
    padding: 65px 0;
  }

  .keynote-container{
    padding-inline: 18px;
  }

  .keynote-section .section-heading{
    margin: 17px auto 20px;

    font-size: 36px;
    line-height: 1.14;
  }

  .keynote-section .section-heading br{
    display: none;
  }

  .keynote-section .section-desc{
    margin-bottom: 38px;

    font-size: 14px;
    line-height: 1.7;
  }

  .keynote-slider{
    grid-template-columns: 38px minmax(0, 1fr) 38px;
    gap: 9px;
  }

  .keynote-viewport{
    width: 100%;
    max-width: 100%;
    min-width: 0;

    overflow: hidden;
  }

  .keynote-track{
    --keynote-gap: 14px;
    --visible-cards: 1;

    width: 100%;
    max-width: 100%;
  }

  .keynote-card{
    flex: 0 0 100%;

    width: 100%;
    min-width: 100%;
    max-width: 100%;

    aspect-ratio: 3 / 4.65;
  }

  .keynote-arrow{
    width: 38px;
    height: 38px;

    font-size: 27px;
  }

  .keynote-card-footer{
    flex-basis: 76px;
    padding: 12px 9px;
  }

  .keynote-name{
    font-size: 14px;
  }

  .keynote-card-back{
    padding: 28px 22px;
  }

  .keynote-back-label{
    margin-bottom: 15px;
  }

  .keynote-back-name{
    font-size: 23px;
  }

  .keynote-back-divider{
    margin: 18px auto;
  }

  .keynote-back-description{
    font-size: 13px;
    line-height: 1.65;
  }

  .keynote-dots{
    margin-top: 22px;
    gap: 8px;
  }

}


/* ==========================================================================
   Small mobile
   ========================================================================== */

@media (max-width: 420px){

  .keynote-section{
    padding: 55px 0;
  }

  .keynote-container{
    padding-inline: 12px;
  }

  .keynote-section .section-eyebrow{
    gap: 9px;
  }

  .keynote-section .section-eyebrow .rule{
    width: 28px;
  }

  .keynote-section .section-eyebrow .label{
    font-size: 12px;
  }

  .keynote-section .section-heading{
    font-size: 31px;
  }

  .keynote-section .section-desc{
    font-size: 13px;
  }

  .keynote-slider{
    grid-template-columns: 34px minmax(0, 1fr) 34px;
    gap: 6px;
  }

  .keynote-arrow{
    width: 34px;
    height: 34px;

    font-size: 25px;
  }

  .keynote-card-back{
    padding: 24px 18px;
  }

  .keynote-back-name{
    font-size: 21px;
  }

  .keynote-back-description{
    font-size: 12px;
  }

}


/* ==========================================================================
   Reduced motion
   ========================================================================== */

@media (prefers-reduced-motion: reduce){

  .keynote-track,
  .keynote-flip-inner,
  .keynote-image img,
  .keynote-dot{
    transition: none;
  }

}

/* ==========================================================================
   Discussion Forum
   ========================================================================== */

.forum-section{
  position: relative;

  width: 100%;
  padding: 100px 0 0;
  overflow: hidden;

  text-align: center;

  background-color: var(--bg);
}


/* ==========================================================================
   Main heading area
   ========================================================================== */

.forum-header{
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 30px;
}

.forum-section .section-eyebrow{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.forum-section .section-eyebrow .rule{
  display: block;

  width: 40px;
  height: 2px;

  background-color: var(--navy);
}

.forum-section .section-eyebrow .label{
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: .16em;
  text-transform: uppercase;

  color: var(--navy);
}

.forum-section .section-heading{
  max-width: 900px;
  margin: 20px auto 48px;

  font-family: var(--font-head);
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -.035em;

  color: var(--navy);
}


/* ==========================================================================
   Forum tabs
   ========================================================================== */

.forum-tabs{
  position: relative;
  z-index: 3;

  width: 100%;
  margin: 0 auto;

  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 5px;
}

.forum-tab{
  appearance: none;

  min-width: 0;
  min-height: 70px;
  padding: 16px 22px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 0;
  border-radius: 10px 10px 0 0;
  outline: 0;

  cursor: pointer;

  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
  text-align: center;

  color: var(--navy);
  background-color: #e3e5e9;

  opacity: .78;

  transition:
    color .25s ease,
    background-color .25s ease,
    opacity .25s ease;
}

.forum-tab:hover{
  color: var(--navy);
  background-color: #d8dbe1;

  opacity: 1;
}

.forum-tab:focus-visible{
  position: relative;
  z-index: 2;

  box-shadow:
    0 0 0 3px var(--bg),
    0 0 0 6px rgba(30, 52, 92, .28);
}

.forum-tab.active{
  color: var(--white);
  background-color: var(--navy-section);

  opacity: 1;
}

.forum-tab.active:hover{
  color: var(--white);
  background-color: var(--navy-section);
}


/* ==========================================================================
   Dark panel area
   ========================================================================== */

.forum-panel-area{
  position: relative;

  width: 100%;
  min-height: 590px;

  color: var(--white);
  background-color: var(--navy-panel);
}

.forum-panel-container{
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 60px 40px 48px;
}


/* ==========================================================================
   Individual tab panels
   ========================================================================== */

.forum-panel{
  width: 100%;

  text-align: left;
}

.forum-panel[hidden]{
  display: none !important;
}

.forum-panel.active{
  display: block;

  animation: forumPanelFade .35s ease;
}

@keyframes forumPanelFade{
  from{
    opacity: 0;
    transform: translateY(8px);
  }

  to{
    opacity: 1;
    transform: translateY(0);
  }
}


/* ==========================================================================
   Panel title
   ========================================================================== */

.forum-panel-header{
  width: 100%;
  max-width: 1050px;
  margin-bottom: 42px;
}

.forum-panel-title{
  margin: 0;

  font-family: var(--font-head);
  font-size: clamp(30px, 3.3vw, 46px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -.025em;

  color: var(--white);
}


/* ==========================================================================
   Speakers heading
   ========================================================================== */

.forum-speakers-heading{
  margin-bottom: 8px;
  padding-bottom: 14px;

  border-bottom: 1px solid rgba(255, 255, 255, .25);

  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: .18em;
  text-transform: uppercase;

  color: #d5ad57;
}


/* ==========================================================================
   Speaker list
   ========================================================================== */

.forum-speaker-list{
  width: 100%;
}

.forum-speaker{
  width: 100%;
  min-height: 94px;
  padding: 25px 0;

  display: grid;
  grid-template-columns:
    minmax(230px, 320px)
    minmax(80px, 1fr)
    minmax(280px, 440px);
  align-items: center;
  gap: 30px;

  border-bottom: 1px solid rgba(255, 255, 255, .14);
}

.forum-speaker:last-child{
  border-bottom: 0;
}

.forum-speaker-name{
  margin: 0;

  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.35;

  color: var(--white);
}

.forum-connector{
  display: block;

  width: 100%;
  height: 1px;

  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, .62) 0%,
    rgba(255, 255, 255, .08) 100%
  );
}

.forum-speaker-role{
  margin: 0;

  font-size: 15px;
  font-weight: 500;
  line-height: 1.55;
  text-align: right;

  color: #c7d0df;
}


/* ==========================================================================
   Large tablet
   ========================================================================== */

@media (max-width: 1024px){

  .forum-section{
    padding-top: 85px;
  }

  .forum-panel-container{
    padding: 52px 32px 44px;
  }

  .forum-speaker{
    grid-template-columns:
      minmax(210px, 270px)
      minmax(50px, 1fr)
      minmax(250px, 350px);

    gap: 22px;
  }

  .forum-speaker-name{
    font-size: 18px;
  }

  .forum-speaker-role{
    font-size: 14px;
  }

}


/* ==========================================================================
   Tablet
   ========================================================================== */

@media (max-width: 820px){

  .forum-section{
    padding-top: 70px;
  }

  .forum-section .section-heading{
    margin-bottom: 38px;

    font-size: 48px;
  }

  .forum-tabs{
    gap: 4px;
  }

  .forum-tab{
    min-height: 74px;
    padding: 14px 12px;

    font-size: 13px;
  }

  .forum-panel-container{
    padding: 46px 26px 38px;
  }

  .forum-panel-header{
    margin-bottom: 34px;
  }

  .forum-panel-title{
    font-size: 32px;
  }

  .forum-speaker{
    grid-template-columns:
      minmax(190px, 240px)
      minmax(0, 1fr);

    gap: 20px;
  }

  .forum-connector{
    display: none;
  }

  .forum-speaker-role{
    text-align: right;
  }

}


/* ==========================================================================
   Mobile
   ========================================================================== */

@media (max-width: 640px){

  .forum-section{
    padding-top: 58px;
  }

  .forum-header{
    padding: 0 18px;
  }

  .forum-section .section-heading{
    margin: 16px auto 30px;

    font-size: 36px;
    line-height: 1.14;
  }

  .forum-section .section-heading br{
    display: none;
  }

  .forum-tabs{
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

  .forum-tab{
    width: 100%;
    min-height: 54px;
    padding: 13px 16px;

    border-radius: 7px;

    font-size: 13px;
  }

  .forum-tab.active{
    border-radius: 7px;
  }

  .forum-panel-area{
    min-height: 0;
    margin-top: 8px;
  }

  .forum-panel-container{
    padding: 38px 20px 30px;
  }

  .forum-panel-header{
    margin-bottom: 30px;
  }

  .forum-panel-title{
    font-size: 28px;
    line-height: 1.25;
  }

  .forum-speakers-heading{
    margin-bottom: 0;
    padding-bottom: 13px;
  }

  .forum-speaker{
    min-height: 0;
    padding: 22px 0;

    display: block;
  }

  .forum-speaker-name{
    margin-bottom: 7px;

    font-size: 17px;
  }

  .forum-speaker-role{
    font-size: 13px;
    line-height: 1.55;
    text-align: left;
  }

}


/* ==========================================================================
   Small mobile
   ========================================================================== */

@media (max-width: 420px){

  .forum-section{
    padding-top: 50px;
  }

  .forum-section .section-eyebrow{
    gap: 9px;
  }

  .forum-section .section-eyebrow .rule{
    width: 28px;
  }

  .forum-section .section-eyebrow .label{
    font-size: 12px;
  }

  .forum-section .section-heading{
    font-size: 31px;
  }

  .forum-panel-container{
    padding: 32px 16px 26px;
  }

  .forum-panel-header{
    margin-bottom: 26px;
  }

  .forum-panel-title{
    font-size: 24px;
  }

  .forum-speaker-name{
    font-size: 16px;
  }

  .forum-speaker-role{
    font-size: 12px;
  }

}


/* ==========================================================================
   Reduced-motion accessibility
   ========================================================================== */

@media (prefers-reduced-motion: reduce){

  .forum-tab{
    transition: none;
  }

  .forum-panel.active{
    animation: none;
  }

}

/* ==========================================================================
   Anniversary / 25 years
   ========================================================================== */

.anniversary-section{
  position: relative;
  min-height: 470px;

  /* More space above the section */
  margin-top: 70px;

  /* More internal space: top | sides | bottom */
  padding: 250px 0 130px;

  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;

  text-align: center;
  background-color: var(--bg);
}

.anniversary-text{
  /* More top and bottom padding */
  padding: 70px 0 110px;

  text-align: center;
  background-color: var(--bg);
}

.anniversary-watermark{
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 0;

  width: 620px;
  max-width: 75%;
  height: auto;

  object-fit: contain;
  transform: translate(-50%, -50%);
  opacity: .2;

  pointer-events: none;
  user-select: none;
}

.anniversary-content{
  position: relative;
  z-index: 1;
  width: 100%;
}

.anniversary-label{
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: .14em;

  color: var(--navy);
}

.anniversary-years{
  margin: 10px 0 4px;

  font-family: var(--font-head);
  font-size: 76px;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: .01em;

  color: transparent;
  background: linear-gradient(90deg, #E7C878 0%, #D9AD53 50%, #C99A3E 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.anniversary-sub{
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: .08em;

  color: var(--navy);
}

.tricolor-line{
  display: block;
  width: 150px;
  height: 5px;
  margin: 24px auto 0;

  border-radius: 20px;
  background: linear-gradient(90deg, #2E9B4F 0%, #E7A83C 50%, #D9432B 100%);
}

.anniversary-text .container{
  max-width: 900px;
}

.anniversary-text p{
  max-width: 820px;
  margin-inline: auto;

  font-size: 17px;
  font-weight: 500;
  line-height: 1.8;

  color: var(--navy);
}

.anniversary-text .bold-line{
  margin-top: 28px;

  font-family: var(--font-head);
  font-size: 36px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -.02em;

  color: var(--navy);
}


/* ==========================================================================
   Bottom CTA
   ========================================================================== */

.cta-footer{
  padding: 40px 42px;
  text-align: center;
  background-color: var(--navy-section);
}

.cta-footer p{
  font-family: var(--font-head);
  font-size: 30px;
  font-weight: 700;
  letter-spacing: .01em;

  color: var(--white);
}


/* ==========================================================================
   Responsive — large tablet
   ========================================================================== */

@media (max-width: 1199px){

  .awards-track{
    justify-content: flex-start;
  }

  .award-card{
    flex-basis: 310px;
    width: 310px;
    height: 195px;
    padding: 27px 23px;
  }

  .award-card::before{
    right: -52px;
    width: 79%;
  }

  .award-card p{
    font-size: 18px;
  }
}


/* ==========================================================================
   Responsive — tablet
   ========================================================================== */

@media (max-width: 900px){

  :root{
    --page-gutter: 24px;
  }

  .site-header .header-inner{
    padding: 16px 24px;
  }

  .hero{
    min-height: 600px;
    padding-top: 64px;
  }

  .hero-title{
    font-size: 52px;
  }

  .hero-sub-1{
    font-size: 20px;
  }

  .hero-sub-2{
    font-size: 18px;
  }

  .hero-mail{
    font-size: 17px;
  }

  .info-bar-inner{
    justify-content: center;
  }

  .section-heading{
    font-size: 48px;
  }

  .speakers-carousel .carousel-track{
    justify-content: flex-start;
  }

  .anniversary-section{
    min-height: 410px;
    padding: 90px 0 70px;
  }

  .anniversary-watermark{
    width: 520px;
    max-width: 82%;
  }

  .anniversary-years{
    font-size: 64px;
  }

  .anniversary-text .bold-line{
    font-size: 30px;
  }
}


/* ==========================================================================
   Responsive — mobile landscape / small tablet
   ========================================================================== */

@media (max-width: 720px){

  :root{
    --page-gutter: 20px;
  }

  section{
    padding: 54px 0;
  }

  .site-header .header-inner{
    padding: 14px 20px;
    gap: 24px;
  }

  .logo-icon{
    width: 64px;
  }

  .btn{
    min-height: 42px;
    padding: 10px 20px;
    font-size: 13px;
  }

  .hero{
    min-height: 540px;
    padding: 54px 0 48px;
  }

  .hero-title{
    font-size: 38px;
    line-height: 1.2;
  }

  .hero-title br,
  .hero-sub-1 br,
  .hero-sub-2 br{
    display: none;
  }

  .hero-sub-1{
    margin-top: 24px;
    font-size: 17px;
  }

  .hero-sub-2{
    margin-top: 18px;
    font-size: 16px;
  }

  .hero-mail{
    margin-top: 22px;
    font-size: 15px;
  }

  .limited-seats{
    right: 16px;
    bottom: 14px;
    font-size: 11px;
  }

  .info-bar-inner{
    padding: 18px 20px;
    flex-direction: column;
    gap: 8px;
    font-size: 15px;
  }

  .info-bar .divider{
    display: none;
  }

  .section-heading{
    font-size: 36px;
  }

  .section-desc{
    font-size: 16px;
  }

  .awards-section{
    padding: 64px 0;
  }

  .awards-container{
    padding-inline: 20px;
  }

  .awards-carousel{
    gap: 9px;
  }

  .awards-track{
    justify-content: flex-start;
    gap: 16px;
  }

  .awards-carousel .carousel-arrow{
    flex-basis: 36px;
    width: 36px;
    height: 36px;
    font-size: 22px;
  }

  .award-card{
    flex-basis: 280px;
    width: 280px;
    height: 176px;
    padding: 23px 20px;
    border-radius: 16px;
  }

  .award-card::before{
    right: -46px;
    width: 80%;
  }

  .award-card p{
    width: 67%;
    font-size: 16px;
  }

  .carousel{
    gap: 10px;
  }

  .carousel-track{
    gap: 16px;
  }

  .speaker-card{
    flex-basis: 190px;
  }

  .tabs{
    flex-wrap: wrap;
  }

  .tab{
    flex: 1 1 180px;
  }

  .forum-box{
    padding-inline: 20px;
  }

  .forum-row{
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 8px;
  }

  .forum-name{
    flex-basis: 100%;
    width: 100%;
    font-size: 14px;
  }

  .forum-divider{
    display: none;
  }

  .forum-role{
    flex-basis: 100%;
    text-align: left;
    font-size: 12px;
  }

  .anniversary-section{
    min-height: 350px;
    padding: 75px 0 60px;
  }

  .anniversary-watermark{
    width: 420px;
    max-width: 88%;
  }

  .anniversary-label{
    font-size: 15px;
  }

  .anniversary-years{
    font-size: 52px;
  }

  .anniversary-sub{
    font-size: 17px;
  }

  .tricolor-line{
    width: 125px;
    height: 4px;
    margin-top: 20px;
  }

  .anniversary-text{
    padding: 25px 0 60px;
  }

  .anniversary-text p{
    font-size: 15px;
  }

  .anniversary-text .bold-line{
    margin-top: 22px;
    font-size: 25px;
  }

  .cta-footer{
    padding: 32px 24px;
  }

  .cta-footer p{
    font-size: 24px;
  }
}


/* ==========================================================================
   Responsive — mobile
   ========================================================================== */

@media (max-width: 480px){

  :root{
    --page-gutter: 16px;
  }

  .site-header .header-inner{
    padding: 12px 16px;
    gap: 16px;
  }

  .logo-icon{
    width: 58px;
  }

  .btn{
    min-height: 39px;
    padding: 9px 16px;
    font-size: 12px;
  }

  .hero{
    min-height: 500px;
    padding: 46px 0 44px;
  }

  .hero-title{
    font-size: 31px;
  }

  .hero-sub-1{
    font-size: 15px;
  }

  .hero-sub-2{
    font-size: 14px;
  }

  .hero-mail{
    max-width: 290px;
    font-size: 13px;
    line-height: 1.5;
  }

  .scroll-arrow{
    width: 42px;
    height: 42px;
    margin-top: 26px;
  }

  .section-heading{
    font-size: 30px;
  }

  .section-desc{
    font-size: 15px;
  }

  .awards-container{
    padding-inline: 12px;
  }

  .awards-section .category-label{
    font-size: 18px;
  }

  .awards-carousel{
    gap: 6px;
  }

  .awards-track{
    gap: 14px;
  }

  .awards-carousel .carousel-arrow{
    flex-basis: 31px;
    width: 31px;
    height: 31px;
    font-size: 20px;
  }

  .award-card{
    flex-basis: 240px;
    width: 240px;
    height: 151px;
    padding: 19px 17px;
    border-radius: 14px;
  }

  .award-card::before{
    right: -40px;
    width: 82%;
  }

  .award-card p{
    width: 68%;
    font-size: 14px;
  }

  .speaker-card{
    flex-basis: 160px;
  }

  .carousel-arrow{
    flex-basis: 32px;
    width: 32px;
    height: 32px;
    font-size: 21px;
  }

  .tab{
    flex-basis: 100%;
  }

  .anniversary-section{
    min-height: 300px;
    padding: 65px 0 50px;
  }

  .anniversary-watermark{
    width: 320px;
    max-width: 94%;
  }

  .anniversary-label{
    font-size: 13px;
  }

  .anniversary-years{
    margin-top: 8px;
    font-size: 42px;
  }

  .anniversary-sub{
    font-size: 14px;
  }

  .tricolor-line{
    width: 105px;
    height: 4px;
    margin-top: 17px;
  }

  .anniversary-text{
    padding: 20px 0 50px;
  }

  .anniversary-text p{
    font-size: 14px;
    line-height: 1.7;
  }

  .anniversary-text .bold-line{
    font-size: 21px;
    line-height: 1.35;
  }

  .cta-footer{
    padding: 28px 18px;
  }

  .cta-footer p{
    font-size: 21px;
  }
}


/* ==========================================================================
   Reduced motion
   ========================================================================== */

@media (prefers-reduced-motion: reduce){

  html{
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after{
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}