/* ==================================================
     GLOBAL PAGE CONTAINER
  ================================================== */

.page-container {
  width: 100%;
}

.page-container .container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding-left: 28px;
  padding-right: 28px;
}

@media (max-width: 991px) {
  .page-container .container {
    padding-left: 24px;
    padding-right: 24px;
  }
}

@media (max-width: 575px) {
  .page-container .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

/* ==========================================
     PAGE TOP SPACING
  ========================================== */

.page-padding {
  padding-top: 88px;
}

@media (max-width: 1024px) {
  .page-padding {
    padding-top: 68px;
  }
}

@media (max-width: 480px) {
  .page-padding {
    padding-top: 64px;
  }
}

/*START  HEADER + SLIDER*/
:root {
  --bg: #08110d;
  --bg-soft: #0f1a15;
  --white: #ffffff;
  --text: #eef3ef;
  --muted: rgba(255, 255, 255, 0.72);
  --line: rgba(255, 255, 255, 0.1);
  --gold: #d9b36a;
  --gold-strong: #f0cf8f;
  --emerald: #1f6f5b;
  --emerald-soft: #2b8a70;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  --radius: 20px;
  --container: 1240px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background: radial-gradient(
      circle at top left,
      rgba(217, 179, 106, 0.08),
      transparent 30%
    ),
    radial-gradient(
      circle at top right,
      rgba(31, 111, 91, 0.12),
      transparent 28%
    ),
    linear-gradient(180deg, #07100c 0%, #0b1511 100%);
  color: var(--text);
  overflow-x: hidden;
}

/* START HEADER */
a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(5, 12, 10, 0.65);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/*START BRAND*/
.brand{
    display:flex;
    align-items:center;
    gap:14px;
}

.brand-logo{
    width:44px;
    height:58px;
    object-fit:contain;
}

.brand-text{
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.brand-title{
    font-family:"Cormorant Garamond", serif;
    font-size:30px;
    font-weight:700;
    color:#fff;
    line-height:1;
    margin-bottom:2px;

}

.brand-presented{
    margin-top:3px;
    display:flex;
    align-items:center;
    gap:5px;
    line-height:1;
    font-size:13px;
}

.presented-label{
    color:#bdbdbd;
    text-transform:uppercase;
    letter-spacing:.18em;
    font-size: 12px;
}

.presented-link{
    color:#d8b062;
    font-weight:600;
    letter-spacing:.05em;
    text-transform:none;
    transition:.25s ease;
}

.presented-link:hover{
    color:#f0cf8f;
    text-decoration:none;
}

/*END BRAND*/

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav a {
  position: relative;
  font-size: 15px;
  font-weight: 500;
  color: var(--muted);
  transition: 0.3s ease;
}

.nav a:hover {
  color: var(--white);
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--emerald-soft));
  transition: width 0.3s ease;
  border-radius: 999px;
}

.nav a:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.btn {
  border: 0;
  outline: 0;
  cursor: pointer;
  border-radius: 999px;
  padding: 13px 22px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-outline {
  color: var(--white);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.btn-outline:hover {
  border-color: rgba(217, 179, 106, 0.5);
  color: var(--gold-strong);
}

.btn-primary {
  color: #101010;
  background: linear-gradient(135deg, var(--gold-strong), var(--gold));
  box-shadow: 0 12px 28px rgba(217, 179, 106, 0.28);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(217, 179, 106, 0.34);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
  font-size: 20px;
  cursor: pointer;
}

/* ==========================================
   RESPONSIVE BRAND
========================================== */

/* Large Desktop */
@media (min-width:1400px){

    .brand-logo{
        width:48px;
        height:64px;
    }

    .brand-title{
        font-size:33px;
    }
}

/* Laptop */
@media (max-width:1200px){

    .header-inner{
        min-height:80px;
    }

    .brand{
        gap:12px;
    }

    .brand-logo{
        width:40px;
        height:54px;
    }

    .brand-title{
        font-size:27px;
        line-height:1;
    }

    .brand-presented{
        display:flex;
        align-items:baseline;
        gap:5px;
        margin-top:2px;
    }

    .presented-label{
        font-size:11px;
        letter-spacing:.14em;
        line-height:1;
    }

    .presented-link{
        font-size:12px;
        line-height:1;
    }
}

/* Tablet */
@media (max-width:992px){

    .header-inner{
        min-height:76px;
    }

    .brand{
        gap:10px;
    }

    .brand-logo{
        width:36px;
        height:48px;
    }

    .brand-title{
        font-size:23px;
        line-height:1;
    }

    .brand-presented{
        display:flex;
        align-items:baseline;
        gap:4px;
        margin-top:2px;
    }

    .presented-label{
        font-size:9px;
        letter-spacing:.10em;
        line-height:1;
    }

    .presented-link{
        font-size:11px;
        line-height:1;
    }
}

/* Mobile */
@media (max-width:768px){

    .header-inner{
        min-height:74px;
        gap:12px;
    }

    .brand{
        gap:8px;
        flex:1;
        min-width:0;
    }

    .brand-logo{
        width:28px;
        height:40px;
        flex-shrink:0;
    }

    .brand-title{
        font-size:19px;
        line-height:1;
    }

    .brand-presented{
        display:flex;
        align-items:baseline;
        gap:3px;
        margin-top:2px;
    }

    .presented-label{
        font-size:7px;
        letter-spacing:.08em;
        line-height:1;
    }

    .presented-link{
        font-size:9px;
        line-height:1;
    }
}

/* Small phones */
@media (max-width:480px){

    .brand-logo{
        width:24px;
        height:34px;
    }

    .brand-title{
        font-size:17px;
        line-height:1;
    }

    .brand-presented{
        display:flex;
        align-items:baseline;
        gap:2px;
        margin-top:1px;
    }

    .presented-label{
        font-size:6px;
        letter-spacing:.06em;
        line-height:1;
    }

    .presented-link{
        font-size:8px;
        line-height:1;
    }
}

/* iPad Mini & Galaxy Fold fine-tuning */
@media (min-width:700px) and (max-width:900px){

    .brand-logo{
        width:34px;
        height:46px;
    }

    .brand-title{
        font-size:21px;
    }

    .presented-label{
        font-size:8px;
        letter-spacing:.08em;
    }

    .presented-link{
        font-size:9px;
    }
}
/*END HEADER*/

/* ==========================================
       HERO / SLIDER
    ========================================== */

.hero {
  position: relative;
  padding-top: 110px;
  overflow: hidden;
  background: #08110d;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.05) 0%,
    rgba(0, 0, 0, 0.15) 100%
  );
  pointer-events: none;
}

.hero-bg {
  position: relative;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 2;

  display: flex;
  align-items: center;
}

.hero-copy {
  max-width: 680px;
}

/* ==========================================
       DESKTOP
    ========================================== */

@media (min-width: 1025px) {
  .hero {
    min-height: 100vh;
    min-height: 100svh;
  }

  .hero-bg {
    position: absolute;
    inset: 0;
  }

  .hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
  }

  .hero-grid {
    width: 100%;
  }
}

/* ==========================================
       TABLET
    ========================================== */

@media (max-width: 992px) {
  .hero {
    padding-top: 90px;
  }
}

/* ==========================================
       MOBILE
    ========================================== */

@media (max-width: 768px) {
  .hero {
    padding-top: 72px;
    min-height: auto;
  }

  .hero-bg {
    position: relative;
  }

  .hero-bg img {
    width: 100%;
    height: auto;
    object-fit: unset;
  }

  .hero-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

    display: flex;
    align-items: flex-end;
    justify-content: center;

    padding: 24px 20px;
    text-align: center;
  }

  .hero-copy {
    max-width: 100%;
  }
}

/* ==========================================
       SMALL MOBILE
    ========================================== */

@media (max-width: 480px) {
  .hero {
    padding-top: 72px;
  }

  .hero-grid {
    padding: 20px 16px;
  }
}
/*END HERO*/

/* =========================
         SMALL MOBILE
         ========================= */
@media (max-width: 1024px) {
  .container {
    width: min(100% - 16px, var(--container));
  }

  .site-header {
    background: rgba(5, 12, 10, 0.88);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
  }

  .header-inner {
    min-height: 68px;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: nowrap;
  }

  .brand {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1 1 auto;
    min-width: 0;
    overflow: hidden;
  }

  .brand-logo {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
  }

  .brand-text {
    display: flex;
    flex-direction: column;
    min-width: 0;
    flex: 1 1 auto;
    overflow: hidden;
  }

  .brand-text span:first-child {
    font-size: clamp(7px, 1.8vw, 9px);
    letter-spacing: 0.08em;
    line-height: 1.1;
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .brand-text span:last-child {
    font-size: clamp(16px, 4.2vw, 22px);
    line-height: 0.95;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .nav {
    display: none;
  }

  .header-actions {
    display: flex;
    align-items: center;
    margin-left: 0;
    flex: 0 0 auto;
  }

  .header-actions .btn-outline {
    display: none;
  }

  .header-actions .btn-primary {
    padding: 8px 14px;
    font-size: 11px;
    white-space: nowrap;
    border-radius: 999px;
    flex-shrink: 0;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .header-inner {
    min-height: 64px;
    gap: 6px;
  }

  .brand {
    gap: 6px;
  }

  .brand-logo {
    width: 30px;
    height: 30px;
    flex: 0 0 30px;
  }

  .brand-text span:first-child {
    /*font-size: clamp(6px, 1.7vw, 8px);*/
    letter-spacing: 0.06em;
  }

  .brand-text span:last-child {
    /*font-size: clamp(14px, 4vw, 18px);*/
  }

  .header-actions .btn-primary {
    padding: 7px 12px;
    font-size: 10px;
  }

  .menu-toggle {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    font-size: 16px;
  }
}

/*mobile nav CSS too*/
@media (max-width: 1024px) {
  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 12px 20px 18px;
    background: rgba(5, 12, 10, 0.96);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .nav.show {
    display: flex;
  }

  .nav a {
    width: 100%;
    padding: 14px 0;
    font-size: 15px;
    color: var(--white);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .nav a:last-child {
    border-bottom: none;
  }

  .nav a::after {
    display: none;
  }
}
/*END  HEADER + SLIDER*/

/* ==========================================
       ABOUT SECTION - BETTER SPACING
       More left/right breathing room on all devices
    ========================================== */
.about-section {
  position: relative;
  padding: 90px 0;
  background: radial-gradient(
      circle at top left,
      rgba(217, 179, 106, 0.08),
      transparent 30%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(31, 111, 91, 0.1),
      transparent 30%
    ),
    linear-gradient(180deg, #0a1410 0%, #0d1813 100%);
  overflow: hidden;
}

/* desktop layout */
.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
}

/* text area */
.about-content {
  width: 100%;
  max-width: 580px;
}

/* tag */
.section-tag {
  display: inline-block;
  margin-bottom: 18px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(217, 179, 106, 0.12);
  border: 1px solid rgba(217, 179, 106, 0.22);
  color: var(--gold-strong);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

/* heading */
.about-content h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 20px;
}

/* paragraph */
.about-content p {
  font-size: 16px;
  line-height: 1.9;
  color: var(--muted);
  margin-bottom: 16px;
}

/* cards */
.about-highlights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 30px;
}

.highlight-card {
  padding: 24px 22px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.highlight-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  color: var(--gold-strong);
  margin-bottom: 10px;
}

.highlight-card p {
  margin-bottom: 0;
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
}

/* =========================
       TABLET
    ========================= */
/*    @media (max-width: 991px) {
      .about-section {
        padding: 80px 0;
      }

      .about-grid {
        grid-template-columns: 1fr;
        gap: 36px;
      }

      .about-content {
        max-width: 100%;
      }

    }*/

@media (max-width: 991px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .about-content,
  .about-visual {
    width: 100%;
    max-width: 100%;
  }
}

/* =========================
       MOBILE
    ========================= */
@media (max-width: 767px) {
  .about-section {
    padding: 70px 0;
  }

  .about-content h2 {
    font-size: 1.9rem;
    line-height: 1.12;
  }

  .about-content p {
    font-size: 15px;
    line-height: 1.85;
  }

  .about-highlights {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .highlight-card {
    padding: 22px 18px;
  }
}

/* =========================
       SMALL MOBILE
    ========================= */
@media (max-width: 575px) {
  .about-section {
    padding: 20px 0;
  }

  .section-tag {
    font-size: 11px;
    padding: 7px 12px;
    letter-spacing: 0.12em;
  }

  .about-content h2 {
    font-size: 1.55rem;
    line-height: 1.14;
    margin-bottom: 18px;
  }

  .about-content p {
    font-size: 14px;
    line-height: 1.9;
  }

  .highlight-card {
    padding: 20px 16px;
    border-radius: 18px;
  }

  .highlight-card h3 {
    font-size: 19px;
  }
}

/* ==========================================
   ABOUT VISUAL PANEL
   Use this instead of the About image
    ========================================== */
.about-visual {
  /*position: relative;*/
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  /*padding: 28px;*/
  /*border-radius: 28px;*/
  /*      background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
        linear-gradient(135deg, rgba(217, 179, 106, 0.08), rgba(31, 111, 91, 0.10));*/
  /*border: 1px solid rgba(255, 255, 255, 0.08);*/
  /*box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);*/
  /*overflow: hidden;*/
}

/* soft glow */
.about-visual::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(217, 179, 106, 0.12);
  filter: blur(60px);
  pointer-events: none;
}

/* single stat card */
.about-stat {
  position: relative;
  z-index: 1;
  padding: 24px 20px;
  border-radius: 20px;
  background: rgba(7, 16, 12, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

/* stat number */
.about-stat h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.2rem;
  line-height: 1;
  color: var(--gold-strong);
  margin-bottom: 10px;
}

/* stat label */
.about-stat p {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
}

/* featured full width card */
.about-stat-wide {
  grid-column: 1 / -1;
  padding: 28px 24px;
}

/* title inside wide card */
.about-stat-wide h4 {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 12px;
}

/* text inside wide card */
.about-stat-wide p {
  margin: 0;
  font-size: 15px;
  line-height: 1.85;
  color: var(--muted);
}

/* tablet */
@media (max-width: 991px) {
  .about-visual {
    padding: 0;
    gap: 16px;
    width: 100%;
  }
}
/* mobile */
@media (max-width: 767px) {
  .about-visual {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 0;
    border-radius: 0;
    width: 100%;
  }
  .about-stat {
    padding: 20px 18px;
  }

  .about-stat h3 {
    font-size: 2rem;
  }

  .about-stat-wide h4 {
    font-size: 1.8rem;
  }
}

/* small mobile */
@media (max-width: 575px) {
  .about-visual {
    padding: 0;
    gap: 14px;
    border-radius: 0;
    width: 100%;
  }

  .about-stat {
    padding: 18px 16px;
    border-radius: 16px;
  }

  .about-stat h3 {
    font-size: 1.7rem;
  }

  .about-stat p,
  .about-stat-wide p {
    font-size: 14px;
  }

  .about-stat-wide h4 {
    font-size: 1.55rem;
  }
}

/* ==========================================
     SECTION HEADING
  ========================================== */
.section-heading {
  max-width: 760px;
  margin: 0 auto 42px;
}

.section-heading.center {
  text-align: center;
}

.section-heading h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 16px;
}

.section-heading p {
  font-size: 16px;
  line-height: 1.85;
  color: var(--muted);
}

/* ==========================================
   WINNERS SECTION
========================================== */
.winners-section {
  position: relative;
  padding: 95px 0;
  background: radial-gradient(
      circle at top left,
      rgba(217, 179, 106, 0.06),
      transparent 30%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(31, 111, 91, 0.1),
      transparent 30%
    ),
    linear-gradient(180deg, #08110d 0%, #0d1813 100%);
  overflow: hidden;
}

.winner-slider {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding-bottom: 34px;
}

/* invisible hover zones for prev/next */
/*.winner-slider::before,
.winner-slider::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 70px;
  width: 90px;
  z-index: 4;
}*/
.winner-slider {
  position: relative;
  overflow: hidden;
}

.winner-track {
  display: flex;
  cursor: grab;
}

.winner-track:active {
  cursor: grabbing;
}
.winner-dots {
  position: relative;
  z-index: 20;
}

.winner-dot {
  position: relative;
  z-index: 21;
  cursor: pointer;
}

.winner-slider::before {
  left: 0;
}

.winner-slider::after {
  right: 0;
}

.winner-track {
  display: flex;
  gap: 28px;
  transition: transform 0.55s ease;
  will-change: transform;
}

.winner-card {
  flex: 0 0 calc((100% - 84px) / 4);
  min-width: calc((100% - 84px) / 4);
  /*  background: linear-gradient(180deg, rgba(18, 31, 25, 0.98) 0%, rgba(17, 28, 23, 0.98) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
*/
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition: transform 0.35s ease, box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.winner-card:hover {
  transform: translateY(-6px);
  border-color: rgba(217, 179, 106, 0.24);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.34),
    0 0 0 1px rgba(217, 179, 106, 0.07);
}

.winner-photo {
  position: relative;
  height: 400px; /* taller so crown stays visible */
  overflow: hidden;
  background: #122019;
}

.winner-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top; /* shows more crown/head */
  transition: transform 0.7s ease;
}

.winner-card:hover .winner-photo img {
  transform: scale(1.035);
}

.winner-photo::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 32%;
  background: linear-gradient(to top, rgba(8, 17, 13, 0.3), transparent);
  pointer-events: none;
}

.winner-content {
  padding: 22px 20px 26px;
  text-align: center;
  background: linear-gradient(
    180deg,
    rgba(16, 28, 22, 0.96) 0%,
    rgba(14, 24, 19, 1) 100%
  );
}

.winner-year {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  padding: 10px 18px;
  min-height: 40px;
  border-radius: 999px;
  background: linear-gradient(
    180deg,
    rgba(217, 179, 106, 0.14) 0%,
    rgba(217, 179, 106, 0.08) 100%
  );
  border: 1px solid rgba(217, 179, 106, 0.28);
  color: #f3cf8a;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.2;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.winner-content h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  line-height: 1.02;
  color: #f8f6f1;
  margin: 0;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.18);
}

/* improved dots */
.winner-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 26px;
}

.winner-dot {
  width: 11px;
  height: 11px;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
  cursor: pointer;
  transition: all 0.28s ease, transform 0.28s ease;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.winner-dot:hover {
  background: rgba(217, 179, 106, 0.55);
  transform: scale(1.08);
}

.winner-dot.active {
  width: 32px;
  height: 11px;
  background: linear-gradient(90deg, #d9b36a 0%, #f0cf8f 100%);
  box-shadow: 0 4px 12px rgba(217, 179, 106, 0.28),
    0 0 0 1px rgba(217, 179, 106, 0.1);
  transform: none;
}

/* ==========================================
   LARGE TABLET
========================================== */
@media (max-width: 1199px) {
  .winner-track {
    gap: 24px;
  }

  .winner-card {
    flex: 0 0 calc((100% - 48px) / 3);
    min-width: calc((100% - 48px) / 3);
  }

  .winner-photo {
    height: 420px;
  }

  .winner-content h3 {
    font-size: 2.15rem;
  }
}

/* ==========================================
   TABLET
========================================== */
@media (max-width: 991px) {
  .winners-section {
    padding: 80px 0;
  }

  .winner-slider::before,
  .winner-slider::after {
    width: 60px;
    bottom: 62px;
  }

  .winner-track {
    gap: 20px;
  }

  .winner-card {
    flex: 0 0 calc((100% - 20px) / 2);
    min-width: calc((100% - 20px) / 2);
    border-radius: 28px;
  }

  .winner-photo {
    height: 460px;
  }

  .winner-content {
    padding: 20px 18px 24px;
  }

  .winner-content h3 {
    font-size: 2rem;
  }
}

/* ==========================================
   MOBILE
========================================== */
@media (max-width: 767px) {
  .winners-section {
    padding: 68px 0;
  }

  .winner-slider {
    padding-bottom: 18px;
  }

  .winner-slider::before,
  .winner-slider::after {
    display: none;
  }

  .winner-track {
    gap: 16px;
  }

  .winner-card {
    flex: 0 0 100%;
    min-width: 100%;
    border-radius: 24px;
  }

  .winner-photo {
    height: 500px;
  }

  .winner-content {
    padding: 18px 16px 22px;
  }

  .winner-year {
    margin-bottom: 12px;
    padding: 8px 14px;
    font-size: 10px;
    letter-spacing: 0.08em;
  }

  .winner-content h3 {
    font-size: 1.8rem;
  }

  .winner-dots {
    gap: 9px;
    margin-top: 20px;
  }

  .winner-dot {
    width: 9px;
    height: 9px;
  }

  .winner-dot.active {
    width: 26px;
    height: 9px;
  }
}

/* ==========================================
   SMALL MOBILE
========================================== */
@media (max-width: 480px) {
  .winner-photo {
    height: 430px;
  }

  .winner-content h3 {
    font-size: 1.65rem;
  }
}

/* ==========================================
   TITLEHOLDER FEATURE SECTION
   Miss Eco Australia / Miss International Australia
========================================== */

.titleholder-section {
  padding: 95px 0;
  background: radial-gradient(
      circle at top left,
      rgba(217, 179, 106, 0.06),
      transparent 30%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(31, 111, 91, 0.1),
      transparent 30%
    ),
    linear-gradient(180deg, #0b1511 0%, #08110d 100%);
}

.titleholder-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.titleholder-image {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
}

.titleholder-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: 0.5s ease;
}

.titleholder-image:hover img {
  transform: scale(1.03);
}

.titleholder-content .section-tag {
  margin-bottom: 16px;
}

.titleholder-content h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.3rem, 4vw, 3.5rem);
  line-height: 1.05;
  margin-bottom: 20px;
  color: #fff;
}

.titleholder-content p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.9;
  margin-bottom: 16px;
}

.titleholder-content .btn-primary {
  margin-top: 12px;
}

/* reverse layout */
.titleholder-section.reverse .titleholder-grid {
  direction: rtl;
}

.titleholder-section.reverse .titleholder-content {
  direction: ltr;
}

.titleholder-section.reverse .titleholder-image {
  direction: ltr;
}

/* ==========================================
   TABLET
========================================== */

@media (max-width: 991px) {
  .titleholder-section {
    padding: 80px 0;
  }

  .titleholder-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .titleholder-image img {
    height: 620px;
  }
}

/* ==========================================
   MOBILE
========================================== */

@media (max-width: 767px) {
  .titleholder-section {
    padding: 70px 0;
  }

  .titleholder-image img {
    height: 500px;
  }

  .titleholder-content h2 {
    font-size: 2rem;
  }

  .titleholder-content p {
    font-size: 15px;
  }
}

/* ==========================================
   SMALL MOBILE
========================================== */

@media (max-width: 575px) {
  .titleholder-section {
    padding: 60px 0;
  }

  .titleholder-image {
    border-radius: 24px;
  }

  .titleholder-image img {
    height: 220px;
  }

  .titleholder-content h2 {
    font-size: 1.7rem;
  }
}

/* ==========================================
   FAQ SECTION
========================================== */

.faq-section {
  padding: 95px 0;
  background: linear-gradient(180deg, #08110d 0%, #0f1a15 100%);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 22px 24px;
  background: none;
  border: none;
  color: #fff;
  text-align: left;
  cursor: pointer;
  font-size: 17px;
  font-weight: 600;
}

.faq-answer {
  display: none;
  padding: 0 24px 24px;
  color: var(--muted);
  line-height: 1.9;
}

.faq-item.active .faq-answer {
  display: block;
}

/* MOBILE */

@media (max-width: 767px) {
  .faq-section {
    padding: 70px 0;
  }

  .faq-question {
    padding: 18px;
    font-size: 15px;
  }

  .faq-answer {
    padding: 0 18px 18px;
    font-size: 14px;
  }
}

@media (max-width: 575px) {
  .faq-section {
    padding: 60px 0;
  }
}

/* ==========================================
   FOOTER
========================================== */

.site-footer {
  padding: 40px 0;
  background: #06100c;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.site-footer .container {
  text-align: center;
}

.footer-social {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}

.footer-social a {
  color: var(--muted);
  font-size: 14px;
  transition: 0.3s ease;
}

.footer-social a:hover {
  color: var(--gold-strong);
}

.footer-bottom {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  line-height: 1.8;
}

/* MOBILE */
@media (max-width: 767px) {
  .site-footer {
    padding: 30px 0;
  }

  .footer-social {
    gap: 14px;
  }

  .footer-social a {
    font-size: 13px;
  }

  .footer-bottom {
    font-size: 13px;
  }
}

/*==================================================
ABOUT
==================================================*/

.about-page {
  padding-top: 120px;
  background: radial-gradient(
      circle at top left,
      rgba(217, 179, 106, 0.08),
      transparent 35%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(31, 111, 91, 0.1),
      transparent 35%
    ),
    linear-gradient(180deg, #08110d 0%, #0f1a15 100%);
}

/*------------------------------------
Hero
------------------------------------*/

/*==================================================
ABOUT HERO
==================================================*/

.about-hero {
  position: relative;
  overflow: hidden;
  padding: 50px 0 70px;
  text-align: center;

  background: radial-gradient(
      circle at top left,
      rgba(217, 179, 106, 0.18),
      transparent 35%
    ),
    radial-gradient(
      circle at top right,
      rgba(31, 111, 91, 0.16),
      transparent 35%
    ),
    linear-gradient(135deg, #08110d 0%, #102219 45%, #173128 100%);
}

/* Decorative Glow */

.about-hero::before {
  content: "";
  position: absolute;
  width: 700px;
  height: 700px;
  left: -260px;
  top: -260px;

  background: radial-gradient(
    circle,
    rgba(217, 179, 106, 0.15),
    transparent 70%
  );
}

/* Bottom Curve */

.about-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 120px;

  background: radial-gradient(
    130% 120px at 50% 0,
    transparent 60%,
    #08110d 61%
  );
}

/*=========================
Glass Card
=========================*/

.hero-content {
  position: relative;
  z-index: 5;
  width: 100%;
  /*max-width: 1120px; /* same visual width as content below */*/
  margin: 0 auto;

  padding: 60px 90px;

  border-radius: 30px;

  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  border: 1px solid rgba(255, 255, 255, 0.08);

  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

/*=========================
Typography
=========================*/

.about-hero h1 {
  font-family: "Cormorant Garamond", serif;

  font-size: 55px;

  color: #fff;

  line-height: 1.1;

  margin: 18px 0 25px;
}

.about-hero p {
  /*max-width: 760px;*/
  margin: auto;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  line-height: 2;
}


/*=========================
Floating Circles
=========================*/

.hero-circle {
  position: absolute;

  border-radius: 50%;

  filter: blur(2px);

  opacity: 0.18;
}

.circle-1 {
  width: 180px;
  height: 180px;

  background: #d9b36a;

  top: 80px;
  left: 8%;
}

.circle-2 {
  width: 120px;
  height: 120px;

  background: #1f6f5b;

  bottom: 100px;
  right: 8%;
}

.circle-3 {
  width: 55px;
  height: 55px;

  background: #fff;

  top: 120px;
  right: 22%;

  opacity: 0.08;
}

/*=========================
Responsive
=========================*/

@media (max-width: 768px) {
  .hero-content {
    padding: 35px 25px;
  }

  .about-hero {
    padding: 70px 0 60px;
  }

  .about-hero h1 {
    font-size: 2.7rem;
  }

  .about-hero p {
    font-size: 16px;

    line-height: 1.9;
  }

  .circle-1 {
    width: 120px;
    height: 120px;
  }

  .circle-2 {
    width: 90px;
    height: 90px;
  }

  .circle-3 {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero-content {
    padding: 28px 20px;

    border-radius: 22px;
  }

  .about-hero {
    padding: 60px 0 50px;
  }

  .about-hero h1 {
    font-size: 2.3rem;
  }

  .about-hero p {
    font-size: 15px;
  }
}

/*------------------------------------
Content
------------------------------------*/

.about-block {
  padding: 50px 0;
}

.about-grid-page {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.about-image {
  overflow: hidden;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.about-image img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  transition: 0.5s;
}

.about-image:hover img {
  transform: scale(1.04);
}

.about-text h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 3rem;
  color: #fff;
  margin-bottom: 20px;
}

.about-text p {
  color: var(--muted);
  line-height: 2;
  margin-bottom: 18px;
}

/*------------------------------------
Mission Vision
------------------------------------*/

.mv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.mv-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 35px;
  transition: 0.35s;
}

.mv-card:hover {
  transform: translateY(-8px);
  border-color: rgba(217, 179, 106, 0.25);
}

.mv-card h3 {
  font-family: "Cormorant Garamond", serif;
  color: var(--gold-strong);
  font-size: 2rem;
  margin-bottom: 16px;
}

.mv-card p,
.mv-card li {
  color: var(--muted);
  line-height: 1.9;
}

.mv-card ul {
  padding-left: 18px;
}

/*------------------------------------
Statistics
------------------------------------*/

.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 70px;
}

.about-stat-box {
  text-align: center;
  padding: 35px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.about-stat-box h2 {
  font-family: "Cormorant Garamond", serif;
  color: var(--gold-strong);
  font-size: 3rem;
}

.about-stat-box p {
  color: var(--muted);
}

/*------------------------------------
Map
------------------------------------*/

.location-section {
  padding: 90px 0;
}

.location-grid {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 40px;
  align-items: stretch;
}

.location-card {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 35px;
}

.location-card h2 {
  font-family: "Cormorant Garamond", serif;
  color: #fff;
  margin-bottom: 18px;
}

.location-card p {
  color: var(--muted);
  line-height: 1.9;
  margin-bottom: 14px;
}

.location-map {
  overflow: hidden;
  border-radius: 24px;
}

.location-map iframe {
  width: 100%;
  height: 100%;
  min-height: 500px;
  border: 0;
}

/*------------------------------------
Responsive
------------------------------------*/

@media (max-width: 991px) {
  .about-grid-page {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .mv-grid {
    grid-template-columns: 1fr;
  }

  .about-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .location-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .about-image img {
    height: 450px;
  }

  .location-card {
    padding: 30px;
  }

  .location-map iframe {
    min-height: 420px;
  }
}

@media (max-width: 575px) {
  .about-page {
    padding-top: 90px;
  }

  .about-block {
    padding: 60px 0;
  }

  .about-hero {
    padding: 60px 0;
  }

  .about-hero p {
    font-size: 15px;
  }

  .about-stats {
    grid-template-columns: 1fr;
  }

  .about-text h2 {
    font-size: 2.1rem;
  }

  .about-image img {
    height: 300px;
  }

  .location-grid {
    gap: 18px;
  }

  .location-card {
    padding: 22px 18px;
    border-radius: 18px;
  }

  .location-card h2 {
    font-size: 1.8rem;
  }

  .location-card p {
    font-size: 14px;
    line-height: 1.8;
    word-break: break-word;
  }

  .location-map {
    border-radius: 18px;
  }

  .location-map iframe {
    min-height: 320px;
  }
}
@media (max-width: 360px) {
  .location-card {
    padding: 18px 16px;
  }

  .location-card h2 {
    font-size: 1.5rem;
  }

  .location-card p {
    font-size: 13px;
  }

  .location-map iframe {
    min-height: 260px;
  }
}

/*====================================
ABOUT FEATURE CARDS
====================================*/

.about-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 35px;
}

.feature-card {
  padding: 26px 22px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  transition: 0.35s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(217, 179, 106, 0.28);
}

.feature-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 26px;
  background: rgba(217, 179, 106, 0.12);
  border: 1px solid rgba(217, 179, 106, 0.25);
}

.feature-card h3 {
  font-family: "Cormorant Garamond", serif;
  color: #fff;
  font-size: 1.55rem;
  margin-bottom: 6px;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

@media (max-width: 767px) {
  .about-features {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* ==========================
   GALLERY SECTION
========================== */

.gallery-section {
  padding: 50px 0 70px;
  min-height: 85vh;
  display: flex;
  align-items: center;
}

.gallery-years {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  margin: 45px 0 60px;
}

/* Buttons */

.gallery-year {
  padding: 14px 34px;

  border-radius: 50px;

  border: 1px solid rgba(201, 170, 91, 0.35);

  background: rgba(12, 28, 18, 0.95);

  color: #d6b56b;

  font-size: 15px;

  font-weight: 600;

  cursor: pointer;

  transition: 0.35s;

  backdrop-filter: blur(12px);

  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.gallery-year:hover {
  transform: translateY(-4px);

  background: #c9aa5b;

  color: #0f2415;
}

.gallery-year.active {
  background: linear-gradient(135deg, #c9aa5b, #e7ca7d);

  color: #0f2415;

  border-color: #c9aa5b;

  box-shadow: 0 15px 35px rgba(201, 170, 91, 0.35);
}

/* Masonry */

.gallery-grid {
  column-count: 3;

  column-gap: 22px;
}

.gallery-item {
  position: relative;

  overflow: hidden;

  border-radius: 18px;

  margin-bottom: 22px;

  break-inside: avoid;

  cursor: pointer;

  background: #eee;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.gallery-item img {
  width: 100%;

  display: block;

  object-fit: cover;

  transition: 0.6s;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item.tall img {
    width: 100%;
    height: 520px;
    object-fit: cover;
}

.gallery-item.wide img {
    width: 100%;
    height: 300px; /* Change to your preferred height */
    object-fit: cover;
    aspect-ratio: 16 / 9;
}

.gallery-item:not(.tall):not(.wide) img {
  aspect-ratio: 4/5;
}

/* Overlay */

.gallery-overlay {
  position: absolute;

  inset: 0;

  display: flex;

  align-items: flex-end;

  padding: 24px;

  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.82),
    rgba(0, 0, 0, 0.18),
    transparent
  );
}

/* Badge always visible */

.gallery-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 7px 16px;

  margin-bottom: 14px;

  border-radius: 50px;

  background: rgba(255, 255, 255, 0.95);

  color: #0f2415;

  font-size: 11px;

  font-weight: 700;

  letter-spacing: 1.2px;

  text-transform: uppercase;

  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}

/* Title */

.gallery-overlay h3 {
  color: #fff;

  font-size: 25px;

  line-height: 1.2;

  margin-bottom: 8px;

  font-weight: 700;
}

/* Subtitle */

.gallery-overlay span:last-child {
  display: block;

  color: #ddd;

  font-size: 14px;

  letter-spacing: 0.5px;
}

/* Hover */

.gallery-item:hover {
  transform: translateY(-5px);

  transition: 0.35s;

  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.18);
}

.gallery-item.hide {
  display: none;
}

/* Responsive */

@media (max-width: 1200px) {
  .gallery-grid {
    column-count: 3;
  }
}

@media (max-width: 900px) {
  .gallery-grid {
    column-count: 2;
  }
}

@media (max-width: 600px) {
  .gallery-grid {
    column-count: 1;
  }

  .gallery-year {
    width: 100%;
  }

  .gallery-overlay {
    padding: 18px;
  }

  .gallery-overlay h3 {
    font-size: 20px;
  }
}

/*=========================================
QUEEN PROFILE
=========================================*/

.queen-profile-section {
  position: relative;
    padding: 50px 0 70px;
  overflow: hidden;

  background: radial-gradient(
      circle at top left,
      rgba(217, 179, 106, 0.1),
      transparent 30%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(53, 116, 83, 0.12),
      transparent 45%
    ),
    linear-gradient(180deg, #07110d 0%, #0b1612 45%, #0d1915 100%);
}

.queen-profile-section::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  left: -220px;
  top: -220px;
  background: radial-gradient(
    circle,
    rgba(217, 179, 106, 0.1),
    transparent 70%
  );
  pointer-events: none;
}

.queen-profile-section::after {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  right: -280px;
  bottom: -280px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.03),
    transparent 75%
  );
  pointer-events: none;
}

/*=========================================
GRID
=========================================*/

.queen-profile-grid {
  position: relative;
  z-index: 2;

  display: grid;
  grid-template-columns: 520px 1fr;
  gap: 90px;
  align-items: start;
}

/*=========================================
IMAGE GALLERY
=========================================*/

.queen-gallery {
  position: sticky;
  top: 110px;

  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.queen-gallery img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  border-radius: 26px;

  border: 1px solid rgba(255, 255, 255, 0.08);

  background: #111;

  transition: 0.45s ease;

  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.queen-gallery img:first-child {
  grid-column: 1 / 3;
  height: 760px;
}

.queen-gallery img:hover {
  transform: translateY(-10px) scale(1.025);

  border-color: rgba(217, 179, 106, 0.45);

  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.45),
    0 0 35px rgba(217, 179, 106, 0.08);
}

/*=========================================
CONTENT
=========================================*/

.queen-content {
  position: relative;
}

.queen-year {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 12px 24px;

  border-radius: 100px;

  background: rgba(217, 179, 106, 0.1);

  border: 1px solid rgba(217, 179, 106, 0.22);

  color: #f4d48f;

  text-transform: uppercase;
  letter-spacing: 3px;

  font-size: 12px;
  font-weight: 700;

  backdrop-filter: blur(8px);
}

.queen-year::before {
  content: "👑";
  font-size: 15px;
}

.queen-content h2 {
  margin: 24px 0 12px;

  font-family: "Cormorant Garamond", serif;
  font-size: 68px;
  line-height: 1;

  color: #fff;

  font-weight: 600;

  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.3);
}

.queen-content h4 {
  display: inline-block;

  margin-bottom: 35px;

  color: #d9b36a;

  font-size: 26px;

  font-weight: 500;

  padding-bottom: 14px;

  border-bottom: 1px solid rgba(217, 179, 106, 0.25);
}

.queen-content p {
  color: rgba(255, 255, 255, 0.8);

  font-size: 17px;

  line-height: 2.05;

  margin-bottom: 22px;

  text-align: justify;
}

.queen-content strong {
  color: #fff;
  font-weight: 600;
}

/*=========================================
RESPONSIVE
=========================================*/

@media (max-width: 1200px) {
  .queen-profile-grid {
    grid-template-columns: 440px 1fr;
    gap: 60px;
  }

  .queen-content h2 {
    font-size: 58px;
  }
}

@media (max-width: 991px) {
  .queen-profile-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .queen-gallery {
    position: relative;
    top: auto;

    order: 1;
  }

  .queen-content {
    order: 2;
  }

  .queen-content h2 {
    font-size: 52px;
  }

  .queen-gallery img:first-child {
    height: 100%;
  }
}

@media (max-width: 640px) {
  .queen-gallery {
    grid-template-columns: 1fr;
  }

  .queen-gallery img:first-child {
    grid-column: auto;
    height: 560px;
  }

  .queen-gallery img {
    height: 100%;
  }

  .queen-content h2 {
    font-size: 42px;
  }

  .queen-content h4 {
    font-size: 22px;
  }

  .queen-content p {
    text-align: left;
    font-size: 16px;
    line-height: 1.9;
  }
}

/*=========================================
LUXURY HERO CARD
=========================================*/

.queen-hero-card {
  position: relative;
  margin: 0 auto 80px;
  padding: 45px 40px;
  text-align: center;
  overflow: hidden;

  border-radius: 34px;

  background: radial-gradient(
      circle at top left,
      rgba(217, 179, 106, 0.18),
      transparent 28%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(217, 179, 106, 0.08),
      transparent 30%
    ),
    linear-gradient(145deg, #102119, #0a1510);

  /* Luxury Silver Border */
  border: 1px solid rgba(255, 255, 255, 0.12);

  outline: 1px solid rgba(255, 255, 255, 0.06);
  outline-offset: -12px;

  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);

  transition: all 0.4s ease;
}

/* Decorative Leaves */

.queen-hero-card::before,
.queen-hero-card::after {
  content: "❦";
  position: absolute;
  font-size: 140px;
  color: rgba(255, 255, 255, 0.04);
  line-height: 1;
  pointer-events: none;
}

.queen-hero-card::before {
  left: -10px;
  bottom: -20px;
  transform: rotate(-18deg);
}

.queen-hero-card::after {
  right: -10px;
  top: -20px;
  transform: rotate(160deg);
}

/* Section Tag */

.queen-hero-card .section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 12px 28px;

  border-radius: 100px;

  background: rgba(217, 179, 106, 0.1);

  border: 1px solid rgba(255, 255, 255, 0.14);

  color: #f4d48f;

  text-transform: uppercase;
  letter-spacing: 4px;

  font-size: 12px;
  font-weight: 700;

  backdrop-filter: blur(10px);
}

/* Heading */

.queen-hero-card h2 {
  margin: 28px 0 18px;

  font-family: "Cormorant Garamond", serif;
  font-size: 72px;
  font-weight: 600;
  line-height: 1.1;

  color: #fff;

  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

/* Divider */

.hero-divider {
  display: flex;
  align-items: center;
  justify-content: center;

  gap: 18px;

  margin-bottom: 25px;

  color: #d9b36a;

  font-size: 18px;
}

.hero-divider span {
  width: 120px;
  height: 1px;

  background: linear-gradient(
    to right,
    transparent,
    rgba(255, 255, 255, 0.45),
    rgba(217, 179, 106, 0.65),
    rgba(255, 255, 255, 0.45),
    transparent
  );
}

/* Paragraph */

.queen-hero-card p {
  max-width: 700px;
  margin: auto;

  color: rgba(255, 255, 255, 0.82);

  font-size: 18px;
  line-height: 2;
}

/* Hover */

.queen-hero-card:hover {
  border-color: rgba(255, 255, 255, 0.25);
  outline-color: rgba(255, 255, 255, 0.1);

  transform: translateY(-3px);

  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.55),
    0 0 35px rgba(255, 255, 255, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

/* Responsive */

@media (max-width: 991px) {
  .queen-hero-card {
    padding: 40px 30px;
  }

  .queen-hero-card h2 {
    font-size: 56px;
  }

  .hero-divider span {
    width: 80px;
  }
}

@media (max-width: 600px) {
  .queen-hero-card {
    padding: 35px 22px;
    border-radius: 28px;
  }

  .queen-hero-card h2 {
    font-size: 42px;
  }

  .queen-hero-card p {
    font-size: 16px;
    line-height: 1.8;
  }

  .hero-divider span {
    width: 50px;
  }

  .queen-hero-card::before,
  .queen-hero-card::after {
    font-size: 90px;
  }
}

/* ==========================================
   CATEGORY SECTION
========================================== */
.category-section{
    position: relative;
    margin: 0;
    padding: 50px 0 70px;
    background: transparent;
}

 /*==================================== CATEGORY HEADER CARD ====================================*/
.category-header-card {
  position: relative;
  width: 100%;
  margin: 0 0 60px;
  padding: 70px 65px;
  overflow: hidden;
  text-align: center;
  border-radius: 34px;
  background: radial-gradient(
      circle at top left,
      rgba(217, 179, 106, 0.16),
      transparent 35%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(31, 111, 91, 0.14),
      transparent 40%
    ),
    linear-gradient(145deg, rgba(18, 32, 25, 0.96), rgba(10, 20, 15, 0.96));
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition: 0.45s ease;
} /* Inner Luxury Border */
.category-header-card::before {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  pointer-events: none;
} /* Gold Glow */
.category-header-card::after {
  content: "";
  position: absolute;
  width: 450px;
  height: 450px;
  left: -180px;
  top: -180px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(217, 179, 106, 0.12),
    transparent 72%
  );
  pointer-events: none;
} /* Decorative Corner */
.category-header-card .corner {
  position: absolute;
  width: 120px;
  height: 120px;
  border: 2px solid rgba(217, 179, 106, 0.22);
  pointer-events: none;
}
.category-header-card .corner.top-left {
  top: 22px;
  left: 22px;
  border-right: none;
  border-bottom: none;
  border-radius: 30px 0 0 0;
}
.category-header-card .corner.bottom-right {
  bottom: 22px;
  right: 22px;
  border-left: none;
  border-top: none;
  border-radius: 0 0 30px 0;
} /* Tag */
.category-header-card .section-tag {
  margin-bottom: 20px;
} /* Heading */
.category-header-card h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.8rem, 5vw, 4.4rem);
  color: #fff;
  line-height: 1.05;
  margin-bottom: 20px;
} /* Divider */
.category-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 28px;
  color: var(--gold-strong);
  font-size: 20px;
}
.category-divider span {
  width: 130px;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(217, 179, 106, 0.9),
    transparent
  );
} /* Paragraph */
.category-header-card p {
  max-width: 760px;
  margin: auto;
  color: rgba(255, 255, 255, 0.82);
  font-size: 17px;
  line-height: 2;
} /* Hover */
.category-header-card:hover {
  transform: translateY(-6px);
  border-color: rgba(217, 179, 106, 0.25);
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.55),
    0 0 40px rgba(217, 179, 106, 0.08);
} /* Tablet */
@media (max-width: 991px) {
  .category-header-card {
    padding: 55px 40px;
  }
} /* Mobile */
@media (max-width: 768px) {
  .category-header-card {
    padding: 40px 24px;
    border-radius: 24px;
  }
  .category-divider span {
    width: 60px;
  }
  .category-header-card h2 {
    font-size: 2.3rem;
  }
  .category-header-card p {
    font-size: 15px;
    line-height: 1.8;
  }
}

/* ==========================================
   CATEGORY GRID
========================================== */

.category-grid{
    display:grid;
    grid-template-columns:repeat(2, 1fr);
    gap:30px;
    margin-top:50px;
}

/* ==========================================
   CATEGORY GRID
========================================== */

.category-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
    margin-top:50px;
}

/* ==========================================
   CATEGORY GRID
========================================== */

.category-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:35px;
    margin-top:60px;
}

/* ==========================================
   CATEGORY CARD
========================================== */

.category-card{
    display:flex;
    align-items:center;
    justify-content:center;

    height:450px;
    padding:40px;

    background:#000;
    border:1px solid rgba(212,175,55,.25);
    border-radius:28px;
    overflow:hidden;

    text-decoration:none;
}

/* ==========================================
   LOGO
========================================== */

.category-logo{
    width:100%;
    height:100%;
    object-fit:contain;
    object-position:center;
    display:block;
}

/* ==========================================
   RESPONSIVE
========================================== */

@media (max-width:991px){

    .category-grid{
        grid-template-columns:1fr;
    }

    .category-card{
        height:420px;
        padding:30px;
    }

}

@media (max-width:576px){

    .category-card{
        height:320px;
        padding:20px;
    }

}
/*=========================================
GALLERY HEADING
=========================================*/

.gallery-heading{
    max-width:900px;
    margin:0 auto 70px;
    text-align:center;
}

.gallery-heading .section-tag{
    margin-bottom:22px;
}

.gallery-heading h2{
    font-family:"Cormorant Garamond", serif;
    font-size:clamp(3rem,5vw,4.8rem);
    line-height:1.05;
    color:#fff;
    margin-bottom:18px;
    letter-spacing:.5px;
}

.gallery-heading h2 span{
    display:block;
    color:var(--gold-strong);
    font-size:.62em;
    font-weight:500;
    margin-top:8px;
    letter-spacing:2px;
    text-transform:uppercase;
}

.gallery-divider{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:18px;
    margin:26px 0 30px;
    color:var(--gold-strong);
    font-size:18px;
}

.gallery-divider span{
    width:120px;
    height:1px;
    background:linear-gradient(
        to right,
        transparent,
        rgba(217,179,106,.9),
        transparent
    );
}

.gallery-heading p{
    max-width:760px;
    margin:auto;
    color:rgba(255,255,255,.78);
    font-size:17px;
    line-height:2;
}

@media(max-width:768px){

    .gallery-heading{
        margin-bottom:50px;
    }

    .gallery-heading h2{
        font-size:2.4rem;
    }

    .gallery-heading h2 span{
        letter-spacing:1px;
    }

    .gallery-divider span{
        width:55px;
    }

    .gallery-heading p{
        font-size:15px;
        line-height:1.8;
    }

}

/*=========================================
QUEENS SECTION
=========================================*/

.queens-section{
    padding:60px 0 80px;
}

/*=========================================
CARD
=========================================*/

.queen-card{
    display:flex;
    align-items:center;
    gap:60px;

    margin-bottom:50px;
    padding:45px;

    background:linear-gradient(180deg,#0f1a15,#0b1511);
    border:1px solid rgba(212,175,55,.12);
    border-radius:28px;

    box-shadow:0 20px 60px rgba(0,0,0,.25);
}
/*=========================================
PHOTO
=========================================*/

.queen-photo {
  width: 380px;
  flex-shrink: 0;
}

.queen-photo img {
  width: 100%;
  height: 620px;
  object-fit: cover;
  object-position: top center;
  display: block;

  border-radius: 24px;

  border: 1px solid rgba(212, 175, 55, 0.15);

  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
}

/*=========================================
INFO
=========================================*/

.queen-info {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.queen-year {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;

  padding: 12px 24px;

  margin-bottom: 22px;

  border-radius: 999px;

  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.2);

  color: #d4af37;

  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.queen-info h2 {
  margin-bottom: 28px;

  font-family: "Cormorant Garamond", serif;

  color: #fff;

  font-size: 64px;

  line-height: 1;
}

.queen-info h2::after {
  content: "";

  display: block;

  width: 130px;
  height: 2px;

  margin-top: 22px;

  background: linear-gradient(to right, #d4af37, transparent);
}

/*=========================================
BIOGRAPHY PANEL
=========================================*/

.queen-info{
    flex:1;

    display:flex;
    flex-direction:column;

    height:620px;      /* same as image height */
}

/*=========================================
BIOGRAPHY
=========================================*/

.queen-bio{

    flex:1;            /* fills remaining space */
    overflow-y:auto;
    margin-bottom:28px;
    padding:28px;
    background:rgba(255,255,255,.03);
    border:1px solid rgba(212,175,55,.12);
    border-radius:22px;
    color:#d8d8d8;
    font-size:17px;
    line-height:2;
    scrollbar-width:thin;
    scrollbar-color:#d4af37 transparent;
}
/* Chrome */

.queen-bio::-webkit-scrollbar {
  width: 8px;
}

.queen-bio::-webkit-scrollbar-track {
  background: transparent;
}

.queen-bio::-webkit-scrollbar-thumb {
  background: #d4af37;

  border-radius: 30px;
}

.queen-bio::-webkit-scrollbar-thumb:hover {
  background: #e7c76b;
}

/*=========================================
BUTTON
=========================================*/

.read-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  align-self: flex-start;

  padding: 16px 38px;

  border-radius: 999px;

  border: 1px solid #d4af37;

  color: #d4af37;

  font-weight: 600;

  text-decoration: none;

  transition: 0.35s;
}

.read-btn:hover {
  background: #d4af37;

  color: #08110d;

  transform: translateY(-3px);

  box-shadow: 0 15px 35px rgba(212, 175, 55, 0.3);
}

/*=========================================
TABLET
=========================================*/

@media (max-width: 991px) {
  .queen-card {
    flex-direction: column;

    gap: 30px;

    padding: 30px;

    text-align: center;
  }

  .queen-photo {
    width: 100%;
    max-width: 420px;
  }

  .queen-photo img {
    height: auto;
    max-height: 650px;
  }

  .queen-year {
    align-self: center;
  }

  .queen-info h2 {
    font-size: 48px;
  }

  .queen-info h2::after {
    margin: 20px auto 0;
  }

  .queen-bio {
    text-align: left;

    max-height: 260px;
  }

  .read-btn {
    align-self: center;
  }
}

/*=========================================
MOBILE
=========================================*/

@media (max-width: 576px) {
  .queens-section {
    padding: 20px 0 40px;
  }

  .queen-card {
    padding: 18px;

    gap: 22px;

    border-radius: 22px;
  }

  .queen-photo {
    width: 100%;
  }

  .queen-photo img {
    height: auto;

    border-radius: 18px;
  }

  .queen-year {
    width: 100%;

    justify-content: center;

    font-size: 11px;

    letter-spacing: 2px;

    padding: 10px;
  }

  .queen-info h2 {
    font-size: 38px;

    margin-bottom: 20px;
  }

  .queen-bio {
    max-height: 220px;

    padding: 18px;

    font-size: 15px;

    line-height: 1.8;
  }

  .read-btn {
    width: 100%;

    padding: 15px;
  }
}

/*=========================================
SECTION HEADING
=========================================*/

.section-heading {
  max-width: 850px;

  margin: 0 auto 70px;

  text-align: center;
}

.section-tag {
  display: inline-block;

  padding: 10px 24px;

  border-radius: 999px;

  background: rgba(212, 175, 55, 0.08);

  border: 1px solid rgba(212, 175, 55, 0.25);

  color: #d4af37;

  font-size: 12px;

  font-weight: 700;

  letter-spacing: 4px;

  text-transform: uppercase;
}

.section-heading h2 {
  margin: 28px 0 18px;

  color: #fff;

  font-family: "Cormorant Garamond", serif;

  font-size: 58px;

  line-height: 1.08;
}

.section-heading h2 span {
  display: block;

  margin-top: 10px;

  color: #d4af37;

  font-size: 38px;

  font-style: italic;

  font-weight: 400;
}

.section-divider {
  display: flex;

  justify-content: center;

  align-items: center;

  gap: 18px;

  margin: 30px 0;
}

.section-divider span {
  width: 90px;

  height: 1px;

  background: linear-gradient(to right, transparent, #d4af37, transparent);
}

.section-divider i {
  color: #d4af37;

  font-style: normal;

  font-size: 18px;
}

.section-heading p {
  max-width: 720px;

  margin: auto;

  color: #bfc7c2;

  font-size: 17px;

  line-height: 1.9;
}

/*=========================================
SECTION RESPONSIVE
=========================================*/

@media (max-width: 991px) {
  .section-heading h2 {
    font-size: 46px;
  }

  .section-heading h2 span {
    font-size: 30px;
  }
}

@media (max-width: 576px) {
  .section-heading {
    margin-bottom: 40px;
  }

  .section-heading h2 {
    font-size: 34px;
  }

  .section-heading h2 span {
    font-size: 22px;
  }

  .section-divider span {
    width: 50px;
  }

  .section-heading p {
    font-size: 15px;
  }
}

/*=========================
CONTACT SECTION
=========================*/

.contact-section {
  padding: 52px 0;
}

.contact-card {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 45px;

  padding: 45px;

  border-radius: 30px;

  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.04),
    rgba(255, 255, 255, 0.02)
  );

  border: 1px solid rgba(255, 255, 255, 0.08);

  backdrop-filter: blur(18px);

  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.28);
}

/*=========================
LEFT
=========================*/

.contact-info h3 {
  font-family: "Cormorant Garamond", serif;

  color: #fff;

  font-size: 40px;

  margin-bottom: 20px;
}

.contact-info p {
  color: rgba(255, 255, 255, 0.75);

  line-height: 1.9;

  margin-bottom: 35px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 28px;
}

.contact-item i {
  width: 64px;
  height: 64px;
  min-width: 64px; /* Prevent shrinking */
  min-height: 64px;
  flex: 0 0 64px; /* <-- This fixes the oblong shape */

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  font-size: 22px;

  color: #d4af37;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.contact-item strong {
  display: block;

  color: #fff;

  margin-bottom: 6px;
}

.contact-item span {
  color: #bfc7c2;

  line-height: 1.7;
}

/*=========================
FORM
=========================*/

.form-row {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 18px;
}

.form-group {
  margin-bottom: 18px;
}

.form-control {
  width: 100%;

  padding: 16px 20px;

  border-radius: 16px;

  border: 1px solid rgba(255, 255, 255, 0.08);

  background: rgba(255, 255, 255, 0.04);

  color: #fff;

  font-size: 15px;

  transition: 0.35s;
}

.form-control::placeholder {
  color: #a7b2ad;
}

.form-control:focus {
  outline: none;

  border-color: #d4af37;

  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.12);
}

textarea.form-control {
  resize: vertical;

  min-height: 180px;
}

.contact-btn {
  padding: 16px 38px;

  border: none;

  border-radius: 999px;

  cursor: pointer;

  font-weight: 700;

  color: #08110d;

  background: linear-gradient(135deg, #d4af37, #f0cf8f);

  transition: 0.35s;
}

.contact-btn:hover {
  transform: translateY(-3px);

  box-shadow: 0 18px 40px rgba(212, 175, 55, 0.35);
}

.contact-btn:disabled {
    cursor: not-allowed;
    opacity: .65;
    transform: none;
    box-shadow: none;
    background: linear-gradient(135deg, #b99d47, #cfb06c);
    color: rgba(8, 17, 13, 0.75);
}

.contact-btn:disabled:hover {
    transform: none;
    box-shadow: none;
}

/*=========================
RESPONSIVE
=========================*/

@media (max-width: 991px) {
  .contact-card {
    grid-template-columns: 1fr;

    padding: 35px;
  }
}

@media (max-width: 576px) {
  .contact-section {
    padding: 50px 0;
  }

  .contact-card {
    padding: 22px;

    gap: 30px;

    border-radius: 22px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-info h3 {
    font-size: 32px;
  }

  .contact-btn {
    width: 100%;
  }
}


.page-back{
    margin-bottom:30px;
}

.back-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:12px 22px;
    border-radius:999px;
    text-decoration:none;
    color:#fff;
    font-weight:600;
    font-size:.95rem;

    background:rgba(255,255,255,.08);
    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);

    border:1px solid rgba(255,255,255,.18);

    box-shadow:
        0 10px 35px rgba(0,0,0,.18),
        inset 0 1px 0 rgba(255,255,255,.15);

    transition:all .35s ease;
}

.back-btn svg{
    width:18px;
    height:18px;
    transition:transform .35s ease;
}

.back-btn:hover{
    color:#fff;
    transform:translateY(-3px);
    background:linear-gradient(
        135deg,
        rgba(140,215,255,.18),
        rgba(255,255,255,.12)
    );
    border-color:rgba(255,255,255,.35);
    box-shadow:
        0 18px 45px rgba(0,0,0,.25),
        0 0 25px rgba(123,195,255,.18);
}

.back-btn:hover svg{
    transform:translateX(-4px);
}

.back-btn:active{
    transform:translateY(-1px);
}

 /* Popup  SWAL*/ 
    .swal2-popup{
        width:420px;
        border-radius:24px;
        padding:2rem 2rem 1.8rem;
    }

    /* Success Icon */
    .swal2-icon{
        margin:0 auto 1rem !important;
        transform:scale(.82);
    }

    /* Title */
    .swal2-title{
        margin:0 !important;
        padding:0 !important;
        font-size:2rem;
        font-weight:700;
        line-height:1.3;
        color:#2f3b4a;
    }

    /* Description */
    .swal2-html-container{
        margin:.75rem 0 1.5rem !important;
        padding:0 !important;
        font-size:16px;
        color:#6b7280;
        line-height:1.6;
    }

    /* Button */
    .swal2-confirm{
        min-width:120px;
        height:54px;
        border-radius:999px !important;
        background:#7d6a52 !important;
        font-size:17px;
        font-weight:600;
        box-shadow:none !important;
    }

    .swal2-actions{
        margin-top:0 !important;
    }

    /*==================================================
CANDIDATE PROFILE
==================================================*/

.profile-section {
  padding: 55px 0;
}

.profile-wrapper {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/*==================================
HEADER
==================================*/

.profile-header {
  text-align: center;

  margin-bottom: 10px;
}

.profile-header h1 {
  font-family: "Cormorant Garamond", serif;

  color: #fff;

  font-size: 52px;

  margin-bottom: 15px;
}

.profile-header p {
  max-width: 850px;

  margin: auto;

  color: rgba(255, 255, 255, 0.72);

  line-height: 1.9;
}

/*==================================
SECTION CARD
==================================*/

.profile-card {
  padding: 40px;

  border-radius: 30px;

  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.05),
    rgba(255, 255, 255, 0.02)
  );

  border: 1px solid rgba(255, 255, 255, 0.08);

  backdrop-filter: blur(18px);

  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.28);
}

.profile-card h2 {
  display: flex;

  align-items: center;

  gap: 15px;

  font-family: "Cormorant Garamond", serif;

  font-size: 34px;

  color: #fff;

  margin-bottom: 30px;
}

.profile-card h2::before {
  content: "";

  width: 8px;

  height: 34px;

  border-radius: 50px;

  background: #d4af37;
}

/*==================================
GRID
==================================*/

.profile-grid {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 22px;
}

.profile-grid-3 {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 22px;
}

.profile-grid-4 {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 20px;
}

.form-group {
  display: flex;

  flex-direction: column;
}

.form-group label {
  color: #fff;

  margin-bottom: 10px;

  font-weight: 600;

  font-size: 14px;
}

.form-group small {
  color: #9aa7a0;

  margin-top: 6px;
}

/*==================================
INPUTS
==================================*/

.profile-control {
  width: 100%;

  padding: 16px 20px;

  border-radius: 16px;

  background: rgba(255, 255, 255, 0.04);

  border: 1px solid rgba(255, 255, 255, 0.08);

  color: #fff;

  font-size: 15px;

  transition: 0.35s;
}

.profile-control::placeholder {
  color: #93a29a;
}

.profile-control:focus {
  outline: none;

  border-color: #d4af37;

  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}

textarea.profile-control {
  resize: vertical;

  min-height: 170px;
}

/*==================================
TITLE CHOICE
==================================*/

.title-selection {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 18px;
}

.title-selection label {
  cursor: pointer;

  border-radius: 18px;

  padding: 22px;

  text-align: center;

  color: #fff;

  background: rgba(255, 255, 255, 0.04);

  border: 1px solid rgba(255, 255, 255, 0.08);

  transition: 0.35s;
}

.title-selection label:hover {
  border-color: #d4af37;

  transform: translateY(-4px);
}

.title-selection input {
  display: none;
}

.title-selection input:checked + span {
  color: #d4af37;

  font-weight: 700;
}

/*==================================
MEASUREMENTS
==================================*/

.measure-box {
  display: flex;

  gap: 12px;

  align-items: center;
}

.measure-box .profile-control {
  flex: 1;
}

.measure-unit {
  color: #bfc7c2;

  font-size: 14px;
}

/*==================================
CHECKBOX
==================================*/

.check-list {
  display: flex;

  flex-direction: column;

  gap: 18px;
}

.check-list label {
  display: flex;

  gap: 15px;

  align-items: flex-start;

  color: #d6ded8;

  line-height: 1.7;

  cursor: pointer;
}

.check-list input {
  margin-top: 5px;

  transform: scale(1.2);

  accent-color: #d4af37;
}

/*==================================
RADIO
==================================*/

.radio-group {
  display: flex;

  gap: 30px;

  flex-wrap: wrap;
}

.radio-group label {
  display: flex;

  align-items: center;

  gap: 10px;

  color: #fff;

  cursor: pointer;
}

.radio-group input {
  accent-color: #d4af37;
}

/*==================================
SIGNATURE
==================================*/

.signature-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 20px;
}

/*==================================
BUTTON
==================================*/

.profile-submit {
  padding: 18px 45px;

  border: none;

  border-radius: 999px;

  font-size: 16px;

  font-weight: 700;

  cursor: pointer;

  color: #08110d;

  background: linear-gradient(135deg, #d4af37, #f2cf8a);

  transition: 0.35s;
}

.profile-submit:hover {
  transform: translateY(-3px);

  box-shadow: 0 20px 45px rgba(212, 175, 55, 0.35);
}

/*==================================
RESPONSIVE
==================================*/

@media (max-width: 991px) {
  .profile-grid,
  .profile-grid-3,
  .profile-grid-4,
  .signature-grid,
  .title-selection {
    grid-template-columns: 1fr;
  }

  .profile-card {
    padding: 30px;
  }

  .profile-header h1 {
    font-size: 42px;
  }
}

@media (max-width: 576px) {
  .profile-section {
    padding: 45px 0;
  }

  .profile-card {
    padding: 22px;

    border-radius: 22px;
  }

  .profile-card h2 {
    font-size: 28px;
  }

  .profile-header h1 {
    font-size: 34px;
  }

  .profile-submit {
    width: 100%;
  }

  .measure-box {
    flex-direction: column;

    align-items: stretch;
  }
}


/*==================================================
CURRENT WINNER
==================================================*/

.current-winner-section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
  background: radial-gradient(
      circle at top left,
      rgba(217, 179, 106, 0.1),
      transparent 32%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(31, 111, 91, 0.12),
      transparent 36%
    ),
    linear-gradient(180deg, #08110d 0%, #0d1813 100%);
}

.current-winner-section::before {
  content: "";

  position: absolute;

  width: 500px;
  height: 500px;

  top: -220px;
  left: -220px;

  border-radius: 50%;

  background: rgba(217, 179, 106, 0.08);

  filter: blur(70px);
}

.current-winner-card {
  display: grid;

  grid-template-columns: 480px 1fr;

  gap: 70px;

  align-items: center;

  padding: 40px;

  border-radius: 34px;

  background: rgba(255, 255, 255, 0.04);

  border: 1px solid rgba(255, 255, 255, 0.08);

  backdrop-filter: blur(14px);

  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.35);
}

.winner-image {
  overflow: hidden;

  border-radius: 28px;
}

.winner-image img {
  width: 100%;

  height: 620px;

  object-fit: cover;

  transition: 0.5s;
}

.current-winner-card:hover .winner-image img {
  transform: scale(1.05);
}

.winner-tag {
  display: inline-flex;

  align-items: center;

  gap: 8px;

  padding: 10px 22px;

  border-radius: 50px;

  background: rgba(217, 179, 106, 0.12);

  border: 1px solid rgba(217, 179, 106, 0.28);

  color: #e6c67c;

  font-size: 12px;

  font-weight: 700;

  letter-spacing: 0.18em;

  margin-bottom: 20px;

  text-transform: uppercase;
}

.winner-details h2 {
  font-family: "Cormorant Garamond", serif;

  font-size: 58px;

  line-height: 1.05;

  color: #fff;

  margin-bottom: 18px;
}

.winner-details h3 {
  font-family: "Cormorant Garamond", serif;

  font-size: 34px;

  color: #d9b36a;

  margin-bottom: 24px;
}

.winner-details p {
  font-size: 17px;

  line-height: 2;

  color: rgba(255, 255, 255, 0.78);

  margin-bottom: 35px;
}

.winner-details .btn {
  padding: 14px 34px;
}

/* Default Desktop CSS */
@media (max-width:1199px){

    .current-winner-card{
        grid-template-columns:380px 1fr;
        gap:40px;
        padding:30px;
    }

    .winner-image img{
        height:520px;
    }

    .winner-details h2{
        font-size:46px;
        line-height:1.08;
    }

    .winner-details h3{
        font-size:28px;
    }

    .winner-details p{
        font-size:15px;
        line-height:1.8;
    }

}

/*=====================================
TABLET
=====================================*/

@media (max-width: 991px) {
  .current-winner-section {
    padding: 80px 0;
  }

  .current-winner-card {
    grid-template-columns: 1fr;

    gap: 40px;

    padding: 30px;
  }

  .winner-image img {
    height: 650px;
  }

  .winner-details h2 {
    font-size: 46px;
  }
}

/*=====================================
MOBILE
=====================================*/
@media (max-width: 767px) {
  .current-winner-section {
    padding: 65px 0;
  }

  .current-winner-card {
    padding: 22px;
    border-radius: 24px;
  }

  .winner-image {
    border-radius: 20px;
  }

  .winner-image img {
    height: 480px;
  }

  .winner-details {
    text-align: left;   /* Changed from center */
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Keeps everything left */
  }

  .winner-tag {
    font-size: 10px;
    letter-spacing: 0.12em;
    padding: 8px 16px;
    margin-bottom: 18px;
  }

  .winner-details h2 {
    font-size: 34px;
    text-align: left;
  }

  .winner-details h3 {
    font-size: 28px;
    text-align: left;
  }

  .winner-details p {
    font-size: 15px;
    line-height: 1.9;
    text-align: left;
    margin-bottom: 30px;
  }

  .winner-details .btn {
    align-self: flex-start;
  }
}

/*=====================================
SMALL MOBILE
=====================================*/
@media (max-width: 480px) {
  .winner-image img {
    height: 380px;
  }

  .winner-details h2 {
    font-size: 30px;
  }

  .winner-details h3 {
    font-size: 24px;
  }

  .winner-details p {
    font-size: 14px;
  }
}

/*==================================================
INSTAGRAM SECTION
==================================================*/

.instagram-section{
    position:relative;
    width:100%;
    padding-top:50px;
    overflow:hidden;
    background:#08110e; /* Solid dark background */
}

/* Remove decorative glow effects */
.instagram-section::before,
.instagram-section::after{
    display:none;
}

.instagram-section::after{
    content:"";
    position:absolute;
    right:-180px;
    bottom:-180px;
    width:450px;
    height:450px;
    border-radius:50%;
    background:rgba(31,111,91,.10);
    filter:blur(130px);
}

.instagram-section .section-heading{
    position:relative;
    z-index:2;
    margin-bottom:45px;
}

/*==========================
GRID
==========================*/

.instagram-grid{
    position:relative;
    z-index:2;

    width:100%;
    max-width:none;
    margin:0;
    padding:0;

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:0;
}

/*==========================
CARD
==========================*/

.instagram-card{
    position:relative;
    margin:0;
    padding:0;
    overflow:hidden;

    height:420px;

    background:none;
    border:none;
    border-radius:0;
    box-shadow:none;
}

/* Remove Hover */

.instagram-card:hover{
    transform:none;
    box-shadow:none;
    border:none;
}

/*==========================
INSTAGRAM EMBED
==========================*/

.instagram-card blockquote.instagram-media{
    margin:0 !important;
    padding:0 !important;

    width:100% !important;
    min-width:100% !important;
    max-width:100% !important;

    border:none !important;
    border-radius:0 !important;
    background:transparent !important;

    overflow:hidden !important;
}

.instagram-card iframe{
    display:block;

    width:100% !important;

    height:560px !important;

    margin:0 0 -140px 0 !important;

    border:none !important;
}

/*==========================
RESPONSIVE
==========================*/

@media (max-width:1400px){

    .instagram-grid{
        grid-template-columns:repeat(3,1fr);
    }

}

@media (max-width:992px){

    .instagram-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .instagram-card{
        height:420px;
    }

}

@media (max-width:768px){

    .instagram-section{
        padding:60px 0;
    }

    .instagram-grid{
        grid-template-columns:1fr;
    }

    .instagram-card{
        height:500px;
    }

    .instagram-card iframe{
        height:640px !important;
        margin-bottom:-140px !important;
    }

}

@media (max-width:480px){

    .instagram-section{
        padding:50px 0;
    }

    .instagram-card{
        height:480px;
    }

    .instagram-card iframe{
        height:620px !important;
        margin-bottom:-140px !important;
    }

}
.instagram-card{
    height:340px;      /* crop the top */
    overflow:hidden;
}

.instagram-card iframe{
    height:520px !important;
    margin-top:-70px !important;   /* hides the header */
    margin-bottom:-110px !important;
}
/*==================================================
SPONSORS SECTION
==================================================*/

.sponsors-section{
    position:relative;
    width:100%;
    overflow:hidden;
    padding:40px 0;

    background:
        radial-gradient(circle at top left,
            rgba(217,179,106,.06),
            transparent 35%),
        radial-gradient(circle at bottom right,
            rgba(217,179,106,.05),
            transparent 45%),
        linear-gradient(180deg,#07110d 0%,#0b1712 50%,#08110e 100%);
}

.sponsors-section::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:1px;

    background:linear-gradient(
        90deg,
        transparent,
        rgba(217,179,106,.15),
        rgba(217,179,106,.45),
        rgba(217,179,106,.15),
        transparent
    );

    pointer-events:none;
}

.sponsors-section .container{
    width:100%;
    max-width:1400px;
    margin:auto;
    padding:0 20px;
}

.sponsors-section .section-heading{
    margin-bottom:45px;
}

/*==================================================
SLIDER
==================================================*/

.sponsors-slider{
    width:100%;
    overflow-x:auto;
    overflow-y:hidden;

    cursor:grab;
    user-select:none;
    scroll-behavior:smooth;

    scrollbar-width:none;
    -ms-overflow-style:none;
}

.sponsors-slider::-webkit-scrollbar{
    display:none;
}

.sponsors-slider:active{
    cursor:grabbing;
}

.sponsors-track{
    display:flex;
    align-items:stretch;
    gap:24px;
    width:max-content;
    padding:10px 5px;
}

/*==================================================
PREMIUM CARD
==================================================*/

.sponsor-item{

    position:relative;
    overflow:hidden;

    flex:0 0 260px;
    width:260px;
    height:170px;

    display:flex;
    align-items:center;
    justify-content:center;

    padding:28px;
    text-decoration:none;

    border-radius:22px;

    border:1px solid rgba(217,179,106,.18);
/*
    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,.07),
            rgba(255,255,255,.02)
        );*/

    backdrop-filter:blur(16px);
    -webkit-backdrop-filter:blur(16px);

    box-shadow:
        0 10px 30px rgba(0,0,0,.35);

    transition:
        transform .35s ease,
        box-shadow .35s ease,
        border-color .35s ease,
        background .35s ease;
}

/* Gold glow */

.sponsor-item::before{

    content:"";
    position:absolute;
    inset:0;

    background:
        radial-gradient(circle at top,
            rgba(217,179,106,.18),
            transparent 65%);

    opacity:.7;

    pointer-events:none;
}

/* Animated border */

.sponsor-item::after{

    content:"";
    position:absolute;
    inset:0;

    border-radius:22px;
    padding:1px;

    background:
        linear-gradient(
            135deg,
            rgba(217,179,106,.45),
            transparent 35%,
            transparent 65%,
            rgba(217,179,106,.30)
        );

    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);

    -webkit-mask-composite:xor;
    mask-composite:exclude;

    pointer-events:none;
}

.sponsor-item:hover{

    transform:translateY(-10px);

    border-color:rgba(217,179,106,.45);

    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,.10),
            rgba(255,255,255,.03)
        );

    box-shadow:
        0 22px 45px rgba(0,0,0,.45),
        0 0 35px rgba(217,179,106,.10);
}

/*==================================================
LOGO
==================================================*/

.sponsor-item img{

    position:relative;
    z-index:2;

    width:100%;
    height:100%;

    object-fit:contain;
    object-position:center;

    max-width:170px;
    max-height:80px;

    display:block;

    transition:
        transform .35s ease,
        filter .35s ease;
}

.sponsor-item:hover img{
    transform:scale(1.08);
}

/* White logos */

.sponsor-item img.logo-white{

    filter:
        brightness(0)
        invert(1)
        contrast(1.08);
}

.sponsor-item:hover img.logo-white{

    filter:
        brightness(0)
        invert(1)
        contrast(1.15)
        drop-shadow(0 0 12px rgba(255,255,255,.25));
}

/*==================================================
TABLET
==================================================*/

@media (max-width:991px){

    .sponsors-slider{
        padding:0 15px;
    }

    .sponsors-track{
        gap:18px;
    }

    .sponsor-item{

        flex:0 0 220px;
        width:220px;
        height:145px;

        padding:22px;
    }

    .sponsor-item img{

        max-width:150px;
        max-height:70px;
    }

}

/*==================================================
MOBILE
==================================================*/

@media (max-width:767px){

    .sponsors-section{
        padding:30px 0;
    }

    .sponsors-slider{
        padding:0 12px;
    }

    .sponsors-track{
        gap:14px;
    }

    .sponsor-item{

        flex:0 0 45vw;
        width:45vw;
        height:120px;

        padding:18px;

        border-radius:18px;
    }

    .sponsor-item::after{
        border-radius:18px;
    }

    .sponsor-item img{

        max-width:120px;
        max-height:60px;
    }

}

/*==================================================
SMALL PHONES
==================================================*/

@media (max-width:480px){

    .sponsors-track{
        gap:12px;
    }

    .sponsor-item{

        flex:0 0 42vw;
        width:42vw;
        height:110px;

        padding:15px;
    }

    .sponsor-item img{

        max-width:110px;
        max-height:55px;
    }

}

/*======================================================
CAMPAIGN SECTION
======================================================*/

.campaign-section{
    position:relative;
    padding:90px 0;
    overflow:hidden;

    background:
    radial-gradient(circle at top left,
    rgba(217,179,106,.08),
    transparent 35%),

    radial-gradient(circle at bottom right,
    rgba(31,111,91,.10),
    transparent 35%),

    linear-gradient(180deg,#08110d 0%,#0f1a15 100%);
}

.campaign-card{
    position:relative;
        width:100%;
    max-width:100%;
    margin:0 auto;
    text-align:center;
    margin:0 auto;
    padding:70px 70px;

    border-radius:32px;

    background:
    linear-gradient(180deg,
    rgba(255,255,255,.045),
    rgba(255,255,255,.02));

    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(14px);

    box-shadow:
    0 30px 80px rgba(0,0,0,.35),
    inset 0 1px 0 rgba(255,255,255,.05);
}

.campaign-card::before{
    content:"";
    position:absolute;
    inset:14px;
    border-radius:22px;
    border:1px solid rgba(255,255,255,.05);
    pointer-events:none;
}

.campaign-badge{
    display:inline-flex;
    align-items:center;
    gap:8px;

    padding:10px 18px;

    border-radius:999px;

    background:rgba(217,179,106,.10);

    border:1px solid rgba(217,179,106,.22);

    color:var(--gold-strong);

    font-size:12px;
    font-weight:700;

    letter-spacing:.14em;
    text-transform:uppercase;
}

.campaign-card h2{
    margin:28px 0 18px;

    font-family:"Cormorant Garamond",serif;

    font-size:clamp(2.5rem,4vw,3.4rem);

    line-height:1.08;

    color:#fff;
}

.campaign-card h2 span{
    display:block;
    color:var(--gold-strong);
}

.campaign-divider{
    display:flex;
    align-items:center;
    justify-content:center;

    gap:18px;

    margin:28px 0 34px;

    color:var(--gold);
}

.campaign-divider span{
    width:90px;
    height:1px;

    background:
    linear-gradient(to right,
    transparent,
    rgba(217,179,106,.75),
    transparent);
}

/* Intro */

.campaign-intro{
    max-width:760px;
    margin:0 auto 48px;
    text-align:center;
}

.campaign-intro p{
    margin-bottom:18px;

    font-size:16px;
    line-height:1.9;

    color:var(--muted);
}

.campaign-intro strong{
    color:#fff;
    font-weight:600;
}

/* Features */

.campaign-features{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:24px;

    margin-bottom:55px;
}

.campaign-column{

    padding:34px 30px;

    border-radius:24px;

    background:rgba(255,255,255,.035);

    border:1px solid rgba(255,255,255,.08);

    transition:.35s;
}

.campaign-column:hover{
    transform:translateY(-6px);

    border-color:rgba(217,179,106,.22);

    box-shadow:0 18px 45px rgba(0,0,0,.20);
}

.campaign-icon{
    width:72px;
    height:72px;

    display:flex;
    align-items:center;
    justify-content:center;

    margin:0 auto 22px; /* centers the icon */

    border-radius:50%;

    background:rgba(217,179,106,.10);
    border:1px solid rgba(217,179,106,.22);

    font-size:30px;
}

.campaign-column h3{

    margin-bottom:12px;

    font-family:"Cormorant Garamond",serif;

    font-size:30px;

    color:#fff;
}

.campaign-column p{

    font-size:15px;

    line-height:1.85;

    color:var(--muted);
}

/* Bottom */

.campaign-bottom{
    text-align:center;
    border-top:1px solid rgba(255,255,255,.08);
    padding-top:42px;
}

.campaign-bottom h3{

    margin-bottom:18px;

    font-family:"Cormorant Garamond",serif;

    font-size:2.2rem;

    color:#fff;
}

.campaign-bottom p{

    max-width:700px;

    margin:0 auto 22px;

    font-size:16px;

    line-height:1.9;

    color:var(--muted);
}

/*======================================================
TEXT LINK (NOT BUTTON)
======================================================*/

.campaign-action{
    margin-top:18px;
}

.campaign-link{

    display:inline-flex;
    align-items:center;
    gap:10px;

    font-size:18px;
    font-weight:600;

    color:var(--gold-strong);

    text-decoration:none;

    transition:.3s;
}

.campaign-link::after{

    content:"→";

    transition:.3s;
}

.campaign-link:hover{

    color:#fff;
}

.campaign-link:hover::after{

    transform:translateX(6px);
}

/*======================================================
TABLET
======================================================*/

@media(max-width:991px){

.campaign-section{
    padding:80px 0;
}

.campaign-card{
    padding:55px 40px;
}

.campaign-features{
    grid-template-columns:1fr;
    gap:20px;
}

.campaign-card h2{
    font-size:2.6rem;
}

.campaign-column h3{
    font-size:27px;
}

}

/*======================================================
MOBILE
======================================================*/

@media(max-width:767px){

.campaign-section{
    padding:65px 0;
}

.campaign-card{

    padding:38px 24px;

    border-radius:24px;
}

.campaign-badge{
    font-size:10px;
    letter-spacing:.12em;
}

.campaign-card h2{

    font-size:2rem;

    line-height:1.1;

    margin:20px 0 14px;
}

.campaign-divider{
    margin:20px 0 26px;
}

.campaign-divider span{
    width:45px;
}

.campaign-intro{
    margin-bottom:35px;
}

.campaign-intro p{

    font-size:15px;

    line-height:1.8;
}

.campaign-column{

    padding:24px 20px;
}

.campaign-column h3{
    font-size:24px;
}

.campaign-column p{

    font-size:14px;
}

.campaign-bottom{
    padding-top:34px;
}

.campaign-bottom h3{

    font-size:1.8rem;
}

.campaign-bottom p{

    font-size:15px;
}

.campaign-link{

    font-size:17px;
}

}

/*======================================================
SMALL MOBILE
======================================================*/

@media(max-width:480px){

.campaign-card{

    padding:30px 18px;
}

.campaign-card h2{

    font-size:1.75rem;
}

.campaign-bottom h3{

    font-size:1.55rem;
}

.campaign-column h3{

    font-size:22px;
}

.campaign-link{

    font-size:16px;
}

}






/*==================================================
FINALISTS SECTION
==================================================*/

.finalists-section {
  position: relative;
  padding: 95px 0;
  overflow: hidden;
  background: radial-gradient(
      circle at top right,
      rgba(217, 179, 106, 0.08),
      transparent 32%
    ),
    radial-gradient(
      circle at bottom left,
      rgba(31, 111, 91, 0.1),
      transparent 36%
    ),
    linear-gradient(180deg, #0d1813 0%, #08110d 100%);
}

/*==================================
GRID — flexbox so leftover rows center
==================================*/

.finalist-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
  margin-top: 10px;
}

/*==================================
CARD — poster already has all text baked in
==================================*/

.finalist-card {
  position: relative;
  display: block;
  flex: 0 0 calc((100% - 56px) / 3); /* 3 columns, 2 gaps of 28px */
  border-radius: 24px;
  overflow: hidden;
  line-height: 0;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.3);
  transition: transform 0.35s ease, box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.finalist-card img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.6s ease;
}

.finalist-card:hover {
  transform: translateY(-8px);
  border-color: rgba(217, 179, 106, 0.32);
  box-shadow: 0 28px 65px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(217, 179, 106, 0.08);
}

.finalist-card:hover img {
  transform: scale(1.04);
}

/*==================================
BOTTOM CTA
==================================*/

.finalists-bottom {
  text-align: center;
  margin-top: 50px;
}

/*==================================================
RESPONSIVE — matches site breakpoint scale
==================================================*/

/* Large desktop */
@media (min-width: 1400px) {
  .finalist-grid {
    gap: 32px;
  }

  .finalist-card {
    flex: 0 0 calc((100% - 64px) / 3);
  }
}

/* Small laptop / large tablet */
@media (max-width: 1199px) {
  .finalists-section {
    padding: 85px 0;
  }

  .finalist-grid {
    gap: 22px;
  }

  .finalist-card {
    flex: 0 0 calc((100% - 44px) / 3);
  }
}

/* Tablet — 2 columns */
@media (max-width: 991px) {
  .finalists-section {
    padding: 80px 0;
  }

  .finalist-grid {
    gap: 20px;
  }

  .finalist-card {
    flex: 0 0 calc((100% - 20px) / 2);
    border-radius: 20px;
  }
}

/* Mobile — 2 columns */
@media (max-width: 767px) {
  .finalists-section {
    padding: 65px 0;
  }

  .finalist-grid {
    gap: 14px;
  }

  .finalist-card {
    flex: 0 0 calc((100% - 14px) / 2);
    border-radius: 18px;
  }

  .finalists-bottom {
    margin-top: 34px;
  }
}

/* Small mobile — 1 column */
@media (max-width: 480px) {
  .finalists-section {
    padding: 55px 0;
  }

  .finalist-grid {
    gap: 16px;
  }

  .finalist-card {
    flex: 0 0 100%;
    border-radius: 16px;
  }
}

/* Extra small phones */
@media (max-width: 360px) {
  .finalist-grid {
    gap: 12px;
  }
}