/* =========================================================
   MINI LIVE 2026 Custom CSS
   Code-first refresh base
========================================================= */

/* =========================================================
   MINI Official Webfonts

   Expected path:
   /wp-content/themes/kleo-child/fonts/mini-serif/
========================================================= */

@font-face {
  font-family: "MINI Serif";
  src:
    url("../fonts/mini-serif/MINISerif-Regular.woff2") format("woff2"),
    url("../fonts/mini-serif/MINISerif-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "MINI Serif";
  src:
    url("../fonts/mini-serif/MINISerif-Bold.woff2") format("woff2"),
    url("../fonts/mini-serif/MINISerif-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "MINI Serif Headline";
  src:
    url("../fonts/mini-serif/MINISerif-Headline.woff2") format("woff2"),
    url("../fonts/mini-serif/MINISerif-Headline.woff") format("woff");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

/* =========================================================
   Variables
========================================================= */

:root {
  --ml-black: #000000;
  --ml-white: #ffffff;

  --ml-green: #084a2d;
  --ml-green-deep: #032315;
  --ml-green-soft: #0b6b3a;

  --ml-red: #e30613;
  --ml-light: #f4f4ef;
  --ml-light-2: #fafaf7;
  --ml-gray: #777777;
  --ml-dark-gray: #222222;
  --ml-border: #e2e2dc;

  --ml-font-serif: "MINI Serif", "M PLUS 1p", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  --ml-font-headline: "MINI Serif Headline", "MINI Serif", "M PLUS 1p", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
}

/* =========================================================
   Base
========================================================= */

.ml2026 {
  background: var(--ml-white);
  color: var(--ml-black);
  font-family: var(--ml-font-serif);
  overflow: hidden;
}

.ml2026 *,
.ml2026 *::before,
.ml2026 *::after,
.ml2026-site-footer *,
.ml2026-site-footer *::before,
.ml2026-site-footer *::after {
  box-sizing: border-box;
}

.ml2026 a,
.ml2026-site-footer a {
  color: inherit;
}

.ml2026-container {
  width: min(980px, calc(100% - 48px));
  margin: 0 auto;
}

.ml2026 h1,
.ml2026 h2,
.ml2026 h3,
.ml2026-coming__title,
.ml2026-hero__title,
.ml2026-site-footer h2 {
  font-family: var(--ml-font-headline);
}

/* =========================================================
   TEMPORARY COMING SOON
========================================================= */

.ml2026-coming {
  min-height: calc(100vh - 86px);
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 50% 35%, rgba(255,255,255,.15) 0%, rgba(255,255,255,0) 30%),
    linear-gradient(135deg, #061f14 0%, #0b6b3a 52%, #03130c 100%);
  color: var(--ml-white);
  text-align: center;
  padding: 90px 20px;
  position: relative;
  overflow: hidden;
}

.ml2026-coming::before,
.ml2026-coming::after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 50%;
  pointer-events: none;
}

.ml2026-coming::before {
  top: -180px;
  left: -160px;
}

.ml2026-coming::after {
  right: -200px;
  bottom: -220px;
}

.ml2026-coming__inner {
  position: relative;
  z-index: 2;
  width: min(920px, 100%);
  margin: 0 auto;
}

.ml2026-coming__eyebrow {
  margin: 0 0 22px;
  font-size: 13px;
  letter-spacing: .24em;
  font-weight: 700;
  text-transform: uppercase;
}

.ml2026-coming__title {
  margin: 0;
  font-size: clamp(68px, 12vw, 150px);
  line-height: .82;
  font-weight: 900;
  letter-spacing: -.06em;
}

.ml2026-coming__lead {
  margin: 36px auto 0;
  max-width: 720px;
  font-size: clamp(16px, 2vw, 22px);
  line-height: 2;
  font-weight: 700;
}

.ml2026-coming__notice {
  margin: 34px auto 0;
  padding: 18px 24px;
  max-width: 680px;
  border: 1px solid rgba(255,255,255,.28);
  background: rgba(0,0,0,.18);
  backdrop-filter: blur(8px);
}

.ml2026-coming__notice p {
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
}

.ml2026-coming__links {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 34px;
  flex-wrap: wrap;
}

.ml2026-coming__links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  min-height: 48px;
  padding: 0 26px;
  border: 1px solid rgba(255,255,255,.75);
  color: var(--ml-white);
  text-decoration: none;
  font-size: 13px;
  line-height: 1;
  letter-spacing: .12em;
  font-weight: 700;
  transition: background .25s ease, color .25s ease, transform .25s ease;
}

.ml2026-coming__links a:hover {
  background: var(--ml-white);
  color: var(--ml-black);
  transform: translateY(-2px);
}

/* =========================================================
   RELEASED / PREVIEW HERO
========================================================= */

.ml2026-hero {
  min-height: 720px;
  display: flex;
  align-items: center;
  background:
    linear-gradient(rgba(0,0,0,.18), rgba(0,0,0,.30)),
    radial-gradient(circle at 50% 42%, #0c6a3f 0%, #084a2d 42%, #032315 100%);
  color: var(--ml-white);
  text-align: center;
  padding: 92px 20px 104px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,.18);
}

.ml2026-hero::before {
  content: "";
  position: absolute;
  inset: 26px;
  border: 1px solid rgba(255,255,255,.13);
  pointer-events: none;
}

.ml2026-hero::after {
  content: "";
  position: absolute;
  width: min(620px, 78vw);
  height: min(620px, 78vw);
  left: 50%;
  top: 48%;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
  pointer-events: none;
}

.ml2026-hero__inner {
  position: relative;
  z-index: 2;
  width: min(980px, 100%);
  margin: 0 auto;
}

.ml2026-eyebrow,
.ml2026-kicker {
  margin: 0 0 18px;
  font-size: 12px;
  line-height: 1;
  letter-spacing: .18em;
  font-weight: 700;
  text-transform: uppercase;
}

.ml2026-hero .ml2026-eyebrow {
  color: rgba(255,255,255,.9);
  margin-bottom: 18px;
}

.ml2026-hero__title {
  margin: 0 auto;
  max-width: 780px;
  font-size: clamp(58px, 7.7vw, 108px);
  line-height: .88;
  font-weight: 900;
  letter-spacing: -.055em;
  text-wrap: balance;
}

.ml2026-hero__title span {
  display: block;
  margin-top: .16em;
  padding-top: .11em;
  border-top: 2px solid rgba(255,255,255,.92);
  font-size: .44em;
  line-height: 1;
  letter-spacing: -.025em;
}

.ml2026-hero__lead {
  margin: 30px auto 0;
  max-width: 640px;
  font-size: clamp(15px, 1.35vw, 18px);
  line-height: 2;
  font-weight: 700;
}

.ml2026-hero__date {
  margin: 34px 0 0;
  font-size: clamp(28px, 4vw, 58px);
  line-height: 1;
  font-weight: 700;
  letter-spacing: .04em;
}

.ml2026-hero__place {
  margin: 12px 0 0;
  font-size: clamp(18px, 2.4vw, 32px);
  line-height: 1.4;
  font-weight: 700;
}

/* =========================================================
   Sections
========================================================= */

.ml2026-section {
  padding: 104px 0;
}

.ml2026-section--light {
  background: var(--ml-light);
}

.ml2026-section--dark {
  background: var(--ml-black);
  color: var(--ml-white);
}

.ml2026-section h2 {
  margin: 0 0 28px;
  max-width: 820px;
  font-size: clamp(36px, 4.2vw, 64px);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -.055em;
  text-wrap: balance;
}

.ml2026-section h3 {
  margin: 0 0 16px;
  font-size: 22px;
  line-height: 1.35;
  font-weight: 900;
}

.ml2026-section p {
  max-width: 780px;
  margin: 0 0 18px;
  font-size: 16px;
  line-height: 2.05;
  font-weight: 400;
}

.ml2026-kicker {
  color: var(--ml-green-soft);
  margin-bottom: 18px;
}

.ml2026-section--dark .ml2026-kicker {
  color: var(--ml-white);
}

/* =========================================================
   Event Info
========================================================= */

.ml2026-info {
  display: grid;
  gap: 1px;
  background: var(--ml-border);
  margin-top: 36px;
}

.ml2026-info__row {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 24px;
  background: var(--ml-white);
  padding: 22px 26px;
}

.ml2026-info__row span {
  color: var(--ml-gray);
  font-size: 13px;
  font-weight: 700;
}

.ml2026-info__row strong {
  color: var(--ml-black);
  font-size: 17px;
  line-height: 1.6;
  font-weight: 700;
}

/* =========================================================
   News
========================================================= */

.ml2026-news {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 38px;
}

.ml2026-news-card {
  display: flex;
  flex-direction: column;
  min-height: 190px;
  padding: 28px;
  border: 1px solid var(--ml-border);
  background: var(--ml-white);
  color: var(--ml-black);
  text-decoration: none;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.ml2026-news-card:hover {
  transform: translateY(-5px);
  border-color: var(--ml-black);
  box-shadow: 0 18px 34px rgba(0,0,0,.08);
  color: var(--ml-black);
}

.ml2026-news-card__date {
  display: block;
  margin-bottom: 18px;
  color: var(--ml-gray);
  font-size: 12px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: .04em;
}

.ml2026-news-card h3 {
  margin: 0 0 14px;
  font-size: 20px;
  line-height: 1.42;
  font-weight: 900;
  letter-spacing: -.025em;
}

.ml2026-news-card p {
  margin: auto 0 0;
  font-size: 13px;
  line-height: 1.8;
  color: #444;
}

/* =========================================================
   Buttons / Links
========================================================= */

.ml2026-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.ml2026-btns--center {
  justify-content: center;
}

.ml2026-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 210px;
  min-height: 54px;
  padding: 0 28px;
  border: 1px solid var(--ml-black);
  background: var(--ml-black);
  color: var(--ml-white) !important;
  text-decoration: none !important;
  font-size: 13px;
  line-height: 1;
  letter-spacing: .1em;
  font-weight: 700;
  white-space: nowrap;
  transition: background .25s ease, color .25s ease, transform .25s ease, border-color .25s ease;
}

.ml2026-btn:hover {
  background: var(--ml-white);
  color: var(--ml-black) !important;
  transform: translateY(-2px);
}

.ml2026-btn--white {
  border-color: var(--ml-white);
  background: var(--ml-white);
  color: var(--ml-black) !important;
}

.ml2026-btn--white:hover {
  background: transparent;
  color: var(--ml-white) !important;
}

.ml2026-section--dark .ml2026-btn {
  border-color: var(--ml-white);
  background: var(--ml-white);
  color: var(--ml-black) !important;
}

.ml2026-section--dark .ml2026-btn:hover {
  background: var(--ml-black);
  color: var(--ml-white) !important;
}

/* =========================================================
   MINI LIVE Custom Footer
========================================================= */

.ml2026-site-footer {
  position: relative;
  background:
    radial-gradient(circle at 12% 0%, rgba(11, 107, 58, .38) 0%, rgba(11, 107, 58, 0) 30%),
    radial-gradient(circle at 88% 16%, rgba(255,255,255,.06) 0%, rgba(255,255,255,0) 22%),
    linear-gradient(135deg, #03130c 0%, #071c13 44%, #000000 100%);
  color: var(--ml-white);
  padding: 92px 0 42px;
  overflow: hidden;
  font-family: var(--ml-font-serif);
}

.ml2026-site-footer::before {
  content: "";
  position: absolute;
  width: 560px;
  height: 560px;
  right: -220px;
  top: -260px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 50%;
  pointer-events: none;
}

.ml2026-site-footer::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: rgba(255,255,255,.18);
}

.ml2026-site-footer__inner {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

/* Footer brand area */

.ml2026-site-footer__brand {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 48px;
  align-items: end;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,.18);
}

.ml2026-site-footer__brand--simple {
  align-items: center;
}

.ml2026-site-footer__brand--simple > div {
  min-width: 0;
}

.ml2026-site-footer__eyebrow {
  grid-column: 1 / -1;
  margin: 0 0 -22px;
  font-size: 12px;
  line-height: 1;
  letter-spacing: .22em;
  font-weight: 700;
  text-transform: uppercase;
  color: rgba(255,255,255,.72);
}

.ml2026-site-footer__brand--simple .ml2026-site-footer__eyebrow {
  grid-column: auto;
  margin: 0 0 18px;
}

.ml2026-site-footer__title {
  margin: 0;
  font-family: var(--ml-font-headline);
  font-size: clamp(42px, 5.7vw, 88px);
  line-height: .92;
  letter-spacing: -.055em;
  font-weight: 900;
  color: var(--ml-white);
}

.ml2026-site-footer__brand--simple .ml2026-site-footer__title {
  font-size: clamp(48px, 7vw, 104px);
}

.ml2026-site-footer__title span {
  display: block;
  margin-top: .12em;
  font-size: .44em;
  line-height: 1;
  letter-spacing: -.02em;
}

.ml2026-site-footer__lead {
  margin: 0;
  max-width: 470px;
  font-size: 15px;
  line-height: 2;
  font-weight: 700;
  color: rgba(255,255,255,.82);
}

/* Footer grid */

.ml2026-site-footer__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.35fr 1fr;
  gap: 42px;
  padding: 54px 0 52px;
}

.ml2026-site-footer__label {
  margin: 0 0 20px;
  font-size: 11px;
  line-height: 1;
  letter-spacing: .18em;
  font-weight: 700;
  color: rgba(255,255,255,.52);
}

.ml2026-site-footer__nav {
  display: grid;
  gap: 13px;
}

.ml2026-site-footer__nav a,
.ml2026-site-footer__sns a,
.ml2026-site-footer__bottom a {
  color: var(--ml-white);
  text-decoration: none;
  font-size: 14px;
  line-height: 1.45;
  font-weight: 700;
  transition: opacity .25s ease, transform .25s ease, background .25s ease, color .25s ease;
}

.ml2026-site-footer__nav a:hover,
.ml2026-site-footer__bottom a:hover {
  opacity: .62;
}

.ml2026-site-footer__text p {
  margin: 0 0 18px;
  font-size: 14px;
  line-height: 1.9;
  color: rgba(255,255,255,.78);
}

.ml2026-site-footer__sns {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.ml2026-site-footer__sns a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(255,255,255,.32);
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: .04em;
}

.ml2026-site-footer__sns a:hover {
  background: var(--ml-white);
  color: var(--ml-black);
}

.ml2026-site-footer__note {
  margin: 18px 0 0;
  font-size: 12px;
  line-height: 1.8;
  color: rgba(255,255,255,.45);
}

.ml2026-site-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 26px;
  border-top: 1px solid rgba(255,255,255,.18);
}

.ml2026-site-footer__bottom p,
.ml2026-site-footer__bottom a {
  margin: 0;
  font-size: 12px;
  line-height: 1;
  letter-spacing: .08em;
  color: rgba(255,255,255,.68);
}

/* =========================================================
   Responsive
========================================================= */

@media (max-width: 1180px) {
  .ml2026-hero {
    min-height: 680px;
  }
}

@media (max-width: 980px) {
  .ml2026-news {
    grid-template-columns: 1fr 1fr;
  }

  .ml2026-site-footer__brand {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .ml2026-site-footer__eyebrow {
    margin-bottom: 0;
  }

  .ml2026-site-footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .ml2026-container {
    width: min(100% - 32px, 980px);
  }

  .ml2026-coming {
    min-height: calc(100vh - 70px);
    padding: 72px 20px;
  }

  .ml2026-coming::before,
  .ml2026-coming::after {
    width: 360px;
    height: 360px;
  }

  .ml2026-coming__notice {
    padding: 16px;
  }

  .ml2026-coming__links {
    flex-direction: column;
    align-items: center;
  }

  .ml2026-coming__links a {
    width: min(260px, 100%);
  }

  .ml2026-hero {
    min-height: 620px;
    padding: 74px 20px 82px;
  }

  .ml2026-hero::before {
    inset: 16px;
  }

  .ml2026-hero::after {
    width: 420px;
    height: 420px;
  }

  .ml2026-hero__title {
    font-size: clamp(48px, 15vw, 72px);
  }

  .ml2026-hero__lead {
    margin-top: 28px;
    font-size: 15px;
  }

  .ml2026-section {
    padding: 72px 0;
  }

  .ml2026-section h2 {
    font-size: clamp(34px, 10vw, 48px);
  }

  .ml2026-section p {
    font-size: 15px;
    line-height: 1.95;
  }

  .ml2026-info__row {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 20px;
  }

  .ml2026-news {
    grid-template-columns: 1fr;
  }

  .ml2026-btns {
    flex-direction: column;
  }

  .ml2026-btn {
    width: 100%;
  }

  .ml2026-site-footer {
    padding: 72px 0 34px;
  }

  .ml2026-site-footer__inner {
    width: min(100% - 32px, 1180px);
  }

  .ml2026-site-footer__brand {
    padding-bottom: 42px;
  }

  .ml2026-site-footer__brand--simple .ml2026-site-footer__title {
    font-size: clamp(48px, 15vw, 76px);
  }

  .ml2026-site-footer__lead {
    font-size: 14px;
  }

  .ml2026-site-footer__grid {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 42px 0;
  }

  .ml2026-site-footer__bottom {
    flex-direction: column;
  }
}
/* =========================================================
   MINI LIVE Header Refresh
   Kleo header visual modernization
========================================================= */

/* Header base */
#header,
#header .kleo-main-header,
.kleo-main-header {
  font-family: var(--ml-font-serif);
}

/* Main header bar */
#header .kleo-main-header {
  background: rgba(255, 255, 255, .94) !important;
  border-bottom: 1px solid rgba(0, 0, 0, .08);
  box-shadow: 0 10px 34px rgba(0, 0, 0, .045);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

/* Header height / alignment */
#header .kleo-main-header .container,
#header .kleo-main-header .navbar,
#header .kleo-main-header .navbar-header,
#header .kleo-main-header .navbar-collapse {
  min-height: 78px;
}

/* Logo area */
#header .navbar-header {
  display: flex;
  align-items: center;
}

#header .navbar-brand,
#header .logo {
  display: inline-flex;
  align-items: center;
  min-height: 78px;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

#header .navbar-brand img,
#header .logo img {
  max-height: 46px;
  width: auto;
}

/* Navigation layout */
#header .navbar-nav {
  display: flex;
  align-items: center;
}

#header .navbar-nav > li > a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 78px;
  padding: 0 15px !important;
  color: #111 !important;
  font-family: var(--ml-font-serif);
  font-size: 13px;
  line-height: 1;
  letter-spacing: .08em;
  font-weight: 700;
  text-transform: uppercase;
  transition: color .25s ease;
}

/* Modern underline hover */
#header .navbar-nav > li > a::after {
  content: "";
  position: absolute;
  left: 15px;
  right: 15px;
  bottom: 22px;
  height: 2px;
  background: var(--ml-green-soft);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .25s ease;
}

#header .navbar-nav > li > a:hover,
#header .navbar-nav > li.current-menu-item > a,
#header .navbar-nav > li.current_page_item > a,
#header .navbar-nav > li.active > a {
  color: var(--ml-green-soft) !important;
}

#header .navbar-nav > li > a:hover::after,
#header .navbar-nav > li.current-menu-item > a::after,
#header .navbar-nav > li.current_page_item > a::after,
#header .navbar-nav > li.active > a::after {
  transform: scaleX(1);
}

/* Dropdown menu */
#header .dropdown-menu,
#header .kleo-main-header .dropdown-menu {
  border: 1px solid rgba(0, 0, 0, .08) !important;
  border-radius: 0;
  box-shadow: 0 18px 38px rgba(0, 0, 0, .12);
  padding: 12px 0;
}

#header .dropdown-menu li a {
  padding: 12px 20px !important;
  font-size: 13px;
  line-height: 1.4;
  font-weight: 700;
  color: #111 !important;
}

#header .dropdown-menu li a:hover {
  background: var(--ml-light) !important;
  color: var(--ml-green-soft) !important;
}

/* Sticky header */
#header .is-sticky .kleo-main-header {
  background: rgba(255, 255, 255, .96) !important;
  box-shadow: 0 12px 34px rgba(0, 0, 0, .07);
}

/* Mobile toggle */
#header .navbar-toggle,
#header .kleo-mobile-switch {
  border: 1px solid rgba(0, 0, 0, .12) !important;
  background: transparent !important;
  border-radius: 999px;
  width: 44px;
  height: 44px;
  margin-top: 17px;
  margin-bottom: 17px;
}

#header .navbar-toggle .icon-bar {
  background: #111 !important;
}

/* Hide old heavy visual effects if theme adds them */
#header .kleo-main-header:before,
#header .kleo-main-header:after {
  pointer-events: none;
}

/* Header on front page: slightly more premium */
body.home #header .kleo-main-header,
body.front-page #header .kleo-main-header {
  background: rgba(255, 255, 255, .92) !important;
}

/* Breadcrumb cleanup under header */
.main-title.alternate-color,
.breadcrumb-area {
  font-family: var(--ml-font-serif);
}

.main-title.alternate-color {
  background: var(--ml-light);
  border-bottom: 1px solid var(--ml-border);
}

/* =========================================================
   Mobile Header
========================================================= */

@media (max-width: 991px) {
  #header .kleo-main-header .container,
  #header .kleo-main-header .navbar,
  #header .kleo-main-header .navbar-header {
    min-height: 70px;
  }

  #header .navbar-brand,
  #header .logo {
    min-height: 70px;
  }

  #header .navbar-brand img,
  #header .logo img {
    max-height: 40px;
  }

  #header .navbar-collapse {
    background: #fff;
    border-top: 1px solid rgba(0, 0, 0, .08);
    box-shadow: 0 18px 30px rgba(0, 0, 0, .08);
  }

  #header .navbar-nav {
    display: block;
    padding: 12px 0;
    margin: 0;
  }

  #header .navbar-nav > li > a {
    display: flex;
    min-height: 48px;
    padding: 0 20px !important;
    font-size: 13px;
    letter-spacing: .08em;
  }

  #header .navbar-nav > li > a::after {
    display: none;
  }

  #header .dropdown-menu {
    box-shadow: none;
    border: none !important;
    padding: 0;
  }

  #header .dropdown-menu li a {
    padding-left: 32px !important;
  }
}

@media (max-width: 480px) {
  #header .navbar-brand img,
  #header .logo img {
    max-height: 36px;
  }
}
/* Hide only the empty circular element before the logo */
#header .kleo-main-header .navbar-header > *:first-child:not(.navbar-brand):not(.logo) {
  display: none !important;
}
/* =========================================================
   ABOUT Page
========================================================= */

.ml2026-about {
  background: var(--ml-white);
}

/* ABOUT hero */

.ml2026-about-hero {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 50% 45%, rgba(255,255,255,.12) 0%, rgba(255,255,255,0) 30%),
    linear-gradient(135deg, #061f14 0%, #0b6b3a 52%, #03130c 100%);
  color: var(--ml-white);
  text-align: center;
  padding: 96px 20px;
  overflow: hidden;
}

.ml2026-about-hero::before {
  content: "";
  position: absolute;
  width: min(620px, 78vw);
  height: min(620px, 78vw);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
  pointer-events: none;
}

.ml2026-about-hero::after {
  content: "";
  position: absolute;
  inset: 26px;
  border: 1px solid rgba(255,255,255,.13);
  pointer-events: none;
}

.ml2026-about-hero__inner {
  position: relative;
  z-index: 2;
  width: min(980px, 100%);
  margin: 0 auto;
}

.ml2026-about-hero__title {
  margin: 0;
  font-family: var(--ml-font-headline);
  font-size: clamp(64px, 9vw, 132px);
  line-height: .86;
  letter-spacing: -.06em;
  font-weight: 900;
}

.ml2026-about-hero__lead {
  max-width: 760px;
  margin: 34px auto 0;
  font-size: clamp(16px, 1.6vw, 21px);
  line-height: 2;
  font-weight: 700;
}

/* ABOUT intro */

.ml2026-about-intro .ml2026-container,
.ml2026-about-meeting .ml2026-container,
.ml2026-about-cta .ml2026-container {
  width: min(980px, calc(100% - 48px));
}

/* Committee logos */

.ml2026-about-logos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 42px;
}

.ml2026-about-logo-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 160px;
  padding: 34px;
  background: var(--ml-white);
  border: 1px solid var(--ml-border);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.ml2026-about-logo-card:hover {
  transform: translateY(-5px);
  border-color: var(--ml-black);
  box-shadow: 0 18px 34px rgba(0,0,0,.08);
}

.ml2026-about-logo-card img {
  display: block;
  max-width: 100%;
  max-height: 86px;
  width: auto;
  height: auto;
  object-fit: contain;
}

/* Meeting section */

.ml2026-about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  margin-top: 36px;
}

.ml2026-about-split p {
  margin-bottom: 20px;
}

/* Values */

.ml2026-about-values {
  position: relative;
  overflow: hidden;
}

.ml2026-about-values::before {
  content: "";
  position: absolute;
  width: 560px;
  height: 560px;
  right: -220px;
  top: -260px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 50%;
  pointer-events: none;
}

.ml2026-about-value-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 42px;
}

.ml2026-about-value-card {
  min-height: 250px;
  padding: 30px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.045);
}

.ml2026-about-value-card span {
  display: block;
  margin-bottom: 38px;
  font-size: 12px;
  line-height: 1;
  letter-spacing: .18em;
  color: rgba(255,255,255,.55);
  font-weight: 700;
}

.ml2026-about-value-card h3 {
  margin: 0 0 16px;
  font-family: var(--ml-font-headline);
  font-size: 34px;
  line-height: 1;
  letter-spacing: -.04em;
  color: var(--ml-white);
}

.ml2026-about-value-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.9;
  color: rgba(255,255,255,.78);
}

/* CTA */

.ml2026-about-cta {
  background: var(--ml-light-2);
}

/* Responsive ABOUT */

@media (max-width: 980px) {
  .ml2026-about-logos,
  .ml2026-about-value-grid {
    grid-template-columns: 1fr;
  }

  .ml2026-about-split {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .ml2026-about-logo-card {
    min-height: 140px;
  }
}

@media (max-width: 768px) {
  .ml2026-about-hero {
    min-height: 560px;
    padding: 78px 20px;
  }

  .ml2026-about-hero::after {
    inset: 16px;
  }

  .ml2026-about-hero__title {
    font-size: clamp(54px, 17vw, 82px);
  }

  .ml2026-about-hero__lead {
    font-size: 15px;
  }

  .ml2026-about-intro .ml2026-container,
  .ml2026-about-meeting .ml2026-container,
  .ml2026-about-cta .ml2026-container {
    width: min(100% - 32px, 980px);
  }

  .ml2026-about-logo-card {
    padding: 28px;
  }

  .ml2026-about-logo-card img {
    max-height: 76px;
  }

  .ml2026-about-value-card {
    min-height: auto;
  }
}
/* =========================================================
   ABOUT Archive CTA visibility fix
========================================================= */

.ml2026-about-cta.ml2026-section--dark {
  position: relative;
  background:
    radial-gradient(circle at 88% 18%, rgba(11, 107, 58, .34) 0%, rgba(11, 107, 58, 0) 30%),
    linear-gradient(135deg, #03130c 0%, #071c13 48%, #000000 100%) !important;
  color: var(--ml-white) !important;
  overflow: hidden;
}

.ml2026-about-cta.ml2026-section--dark::before {
  content: "";
  position: absolute;
  width: 560px;
  height: 560px;
  right: -220px;
  top: -260px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 50%;
  pointer-events: none;
}

.ml2026-about-cta.ml2026-section--dark .ml2026-container {
  position: relative;
  z-index: 2;
}

.ml2026-about-cta.ml2026-section--dark h2,
.ml2026-about-cta.ml2026-section--dark p,
.ml2026-about-cta.ml2026-section--dark .ml2026-kicker {
  color: var(--ml-white) !important;
}

.ml2026-about-cta.ml2026-section--dark .ml2026-kicker {
  opacity: .72;
}

.ml2026-about-cta.ml2026-section--dark p {
  color: rgba(255,255,255,.78) !important;
}

.ml2026-about-cta.ml2026-section--dark .ml2026-btn {
  border-color: var(--ml-white);
  background: var(--ml-white);
  color: var(--ml-black) !important;
}

.ml2026-about-cta.ml2026-section--dark .ml2026-btn:hover {
  background: transparent;
  color: var(--ml-white) !important;
}
/* =========================================================
   GALLERY Page
========================================================= */

.ml2026-gallery {
  background: var(--ml-white);
}

/* Gallery hero */

.ml2026-gallery-hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 50% 45%, rgba(255,255,255,.12) 0%, rgba(255,255,255,0) 30%),
    linear-gradient(135deg, #061f14 0%, #0b6b3a 52%, #03130c 100%);
  color: var(--ml-white);
  text-align: center;
  padding: 96px 20px;
  overflow: hidden;
}

.ml2026-gallery-hero::before {
  content: "";
  position: absolute;
  width: min(620px, 78vw);
  height: min(620px, 78vw);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
  pointer-events: none;
}

.ml2026-gallery-hero::after {
  content: "";
  position: absolute;
  inset: 26px;
  border: 1px solid rgba(255,255,255,.13);
  pointer-events: none;
}

.ml2026-gallery-hero__inner {
  position: relative;
  z-index: 2;
  width: min(980px, 100%);
  margin: 0 auto;
}

.ml2026-gallery-hero__title {
  margin: 0;
  font-family: var(--ml-font-headline);
  font-size: clamp(78px, 12vw, 170px);
  line-height: .82;
  letter-spacing: -.065em;
  font-weight: 900;
}

.ml2026-gallery-hero__lead {
  max-width: 760px;
  margin: 34px auto 0;
  font-size: clamp(16px, 1.6vw, 21px);
  line-height: 2;
  font-weight: 700;
}

/* Movie */

.ml2026-gallery-video {
  position: relative;
  width: 100%;
  margin-top: 42px;
  aspect-ratio: 16 / 9;
  background: var(--ml-black);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,.12);
}

.ml2026-gallery-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Featured */

.ml2026-gallery-featured__grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 56px;
  align-items: center;
}

.ml2026-gallery-featured__visual {
  min-height: 420px;
}

.ml2026-gallery-featured__placeholder {
  position: relative;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 34px;
  background:
    radial-gradient(circle at 70% 20%, rgba(255,255,255,.14) 0%, rgba(255,255,255,0) 28%),
    linear-gradient(135deg, #061f14 0%, #0b6b3a 52%, #03130c 100%);
  color: var(--ml-white);
  overflow: hidden;
}

.ml2026-gallery-featured__placeholder::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: -160px;
  top: -160px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
}

.ml2026-gallery-featured__placeholder span {
  position: relative;
  z-index: 2;
  display: block;
  margin-bottom: 10px;
  font-family: var(--ml-font-headline);
  font-size: clamp(72px, 8vw, 120px);
  line-height: .82;
  letter-spacing: -.06em;
  font-weight: 900;
}

.ml2026-gallery-featured__placeholder strong {
  position: relative;
  z-index: 2;
  font-size: 13px;
  line-height: 1;
  letter-spacing: .18em;
  font-weight: 700;
}

.ml2026-btn--disabled {
  pointer-events: none;
  opacity: .45;
}

/* Archive cards */

.ml2026-gallery-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 42px;
}

.ml2026-gallery-card {
  display: block;
  background: var(--ml-white);
  color: var(--ml-black);
  text-decoration: none;
  border: 1px solid var(--ml-border);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.ml2026-gallery-card:hover {
  transform: translateY(-6px);
  border-color: var(--ml-black);
  box-shadow: 0 22px 42px rgba(0,0,0,.09);
  color: var(--ml-black);
}

.ml2026-gallery-card__image {
  position: relative;
  aspect-ratio: 4 / 3;
  background: var(--ml-light);
  overflow: hidden;
}

.ml2026-gallery-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}

.ml2026-gallery-card:hover .ml2026-gallery-card__image img {
  transform: scale(1.045);
}

.ml2026-gallery-card__image--empty {
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 70% 20%, rgba(255,255,255,.14) 0%, rgba(255,255,255,0) 28%),
    linear-gradient(135deg, #061f14 0%, #0b6b3a 52%, #03130c 100%);
  color: var(--ml-white);
}

.ml2026-gallery-card__image--empty span {
  font-family: var(--ml-font-headline);
  font-size: clamp(54px, 7vw, 92px);
  line-height: 1;
  letter-spacing: -.06em;
  font-weight: 900;
}

.ml2026-gallery-card__body {
  padding: 26px;
}

.ml2026-gallery-card__body span {
  display: block;
  margin-bottom: 16px;
  color: var(--ml-green-soft);
  font-size: 11px;
  line-height: 1;
  letter-spacing: .18em;
  font-weight: 700;
}

.ml2026-gallery-card__body h3 {
  margin: 0 0 12px;
  font-family: var(--ml-font-headline);
  font-size: 30px;
  line-height: 1;
  letter-spacing: -.04em;
}

.ml2026-gallery-card__body p {
  margin: 0;
  color: #444;
  font-size: 14px;
  line-height: 1.8;
}

/* Responsive gallery */

@media (max-width: 980px) {
  .ml2026-gallery-featured__grid,
  .ml2026-gallery-cards {
    grid-template-columns: 1fr;
  }

  .ml2026-gallery-featured__visual,
  .ml2026-gallery-featured__placeholder {
    min-height: 360px;
  }
}

@media (max-width: 768px) {
  .ml2026-gallery-hero {
    min-height: 540px;
    padding: 78px 20px;
  }

  .ml2026-gallery-hero::after {
    inset: 16px;
  }

  .ml2026-gallery-hero__title {
    font-size: clamp(62px, 19vw, 96px);
  }

  .ml2026-gallery-hero__lead {
    font-size: 15px;
  }

  .ml2026-gallery-featured__visual,
  .ml2026-gallery-featured__placeholder {
    min-height: 320px;
  }

  .ml2026-gallery-card__body {
    padding: 22px;
  }
}
/* =========================================================
   Year Gallery Pages
========================================================= */

.ml2026-year-gallery {
  background: var(--ml-white);
}

/* Hero */

.ml2026-year-gallery-hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 50% 45%, rgba(255,255,255,.12) 0%, rgba(255,255,255,0) 30%),
    linear-gradient(135deg, #061f14 0%, #0b6b3a 52%, #03130c 100%);
  color: var(--ml-white);
  text-align: center;
  padding: 96px 20px;
  overflow: hidden;
}

.ml2026-year-gallery-hero::before {
  content: "";
  position: absolute;
  width: min(620px, 78vw);
  height: min(620px, 78vw);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
  pointer-events: none;
}

.ml2026-year-gallery-hero::after {
  content: "";
  position: absolute;
  inset: 26px;
  border: 1px solid rgba(255,255,255,.13);
  pointer-events: none;
}

.ml2026-year-gallery-hero__inner {
  position: relative;
  z-index: 2;
  width: min(980px, 100%);
  margin: 0 auto;
}

.ml2026-year-gallery-hero__title {
  margin: 0;
  font-family: var(--ml-font-headline);
  font-size: clamp(76px, 11vw, 160px);
  line-height: .82;
  letter-spacing: -.065em;
  font-weight: 900;
}

.ml2026-year-gallery-hero__lead {
  max-width: 760px;
  margin: 34px auto 0;
  font-size: clamp(16px, 1.6vw, 21px);
  line-height: 2;
  font-weight: 700;
}

/* Photo grid */

.ml2026-photo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 42px;
}

.ml2026-photo-item {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  padding: 0;
  border: 0;
  background: var(--ml-light);
  cursor: pointer;
  overflow: hidden;
}

.ml2026-photo-item:nth-child(10n + 1),
.ml2026-photo-item:nth-child(10n + 6) {
  grid-column: span 2;
  grid-row: span 2;
}

.ml2026-photo-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease, filter .45s ease;
}

.ml2026-photo-item::after {
  content: "VIEW";
  position: absolute;
  left: 14px;
  bottom: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 12px;
  background: rgba(0,0,0,.78);
  color: var(--ml-white);
  font-size: 11px;
  line-height: 1;
  letter-spacing: .12em;
  font-weight: 700;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .25s ease, transform .25s ease;
}

.ml2026-photo-item:hover img {
  transform: scale(1.055);
  filter: brightness(.82);
}

.ml2026-photo-item:hover::after {
  opacity: 1;
  transform: translateY(0);
}

/* Compact archive cards on year pages */

.ml2026-gallery-cards--compact .ml2026-gallery-card__image {
  aspect-ratio: 16 / 9;
}

/* Lightbox */

.ml2026-lightbox {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 48px;
  background: rgba(0,0,0,.88);
}

.ml2026-lightbox[aria-hidden="false"] {
  display: flex;
}

.ml2026-lightbox__image {
  display: block;
  max-width: min(1200px, 100%);
  max-height: 86vh;
  width: auto;
  height: auto;
  object-fit: contain;
  box-shadow: 0 30px 70px rgba(0,0,0,.35);
}

.ml2026-lightbox__close {
  position: fixed;
  right: 28px;
  top: 24px;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255,255,255,.38);
  background: rgba(0,0,0,.2);
  color: var(--ml-white);
  font-size: 36px;
  line-height: 1;
  cursor: pointer;
  transition: background .25s ease, color .25s ease;
}

.ml2026-lightbox__close:hover {
  background: var(--ml-white);
  color: var(--ml-black);
}

body.ml2026-lightbox-open {
  overflow: hidden;
}

/* Responsive year gallery */

@media (max-width: 980px) {
  .ml2026-photo-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .ml2026-photo-item:nth-child(10n + 1),
  .ml2026-photo-item:nth-child(10n + 6) {
    grid-column: span 1;
    grid-row: span 1;
  }

  .ml2026-photo-item:nth-child(7n + 1) {
    grid-column: span 2;
    grid-row: span 2;
  }
}

@media (max-width: 768px) {
  .ml2026-year-gallery-hero {
    min-height: 540px;
    padding: 78px 20px;
  }

  .ml2026-year-gallery-hero::after {
    inset: 16px;
  }

  .ml2026-year-gallery-hero__title {
    font-size: clamp(62px, 19vw, 96px);
  }

  .ml2026-year-gallery-hero__lead {
    font-size: 15px;
  }

  .ml2026-photo-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .ml2026-photo-item:nth-child(7n + 1) {
    grid-column: span 2;
    grid-row: span 2;
  }

  .ml2026-lightbox {
    padding: 20px;
  }

  .ml2026-lightbox__close {
    right: 16px;
    top: 16px;
    width: 44px;
    height: 44px;
    font-size: 32px;
  }
}
.ml2026-photo-count {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  margin: 12px 0 0;
  background: var(--ml-black);
  color: var(--ml-white);
  font-size: 12px;
  line-height: 1;
  letter-spacing: .12em;
  font-weight: 700;
}