/* ===== NMMU — design tokens ===== */
:root {
  --navy: #0e3c5e;
  --navy-2: #12547f;
  --blue: #1479bd;
  --blue-mid: #2a90d1;
  --blue-pale: #7fc0ec;
  --blue-paler: #9fc8e6;
  --bg-page: #eef6fc;
  --bg-soft: #dcebf8;
  --border-soft: #cadff0;
  --border-soft-2: #d3e4f2;
  --text: #24313d;
  --text-muted: #5a6b7a;
  --text-faint: #8395a3;
  --white: #fff;
  --font-sans: 'Mulish', system-ui, -apple-system, sans-serif;
  --font-serif: 'Spectral', Georgia, serif;
  --container: 1320px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--bg-page);
  line-height: 1.72;
  font-size: 18px;
  font-weight: 400;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
.wrap { max-width: var(--container); margin: 0 auto; padding: 0 36px; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: 12px; top: -60px; background: var(--navy); color: #fff;
  padding: 10px 16px; border-radius: 4px; z-index: 200; transition: top .2s;
  text-decoration: none; font-family: var(--font-sans); font-weight: 700; font-size: 13px;
}
.skip-link:focus { top: 12px; }

/* ===== header / nav ===== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-soft-2);
}
.header-row {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 14px 32px; padding: 12px 36px;
  max-width: var(--container); margin: 0 auto;
}
.brand { text-decoration: none; display: flex; align-items: center; gap: 14px; }
.brand img { width: 46px; height: 46px; flex: 0 0 auto; }
.brand-title {
  font-family: var(--font-serif); color: var(--navy); font-size: 20px;
  font-weight: 500; letter-spacing: .005em; display: block;
}
.brand-sub {
  font-family: var(--font-sans); font-size: 9.5px; letter-spacing: .26em;
  color: var(--blue-mid); font-weight: 700; margin-top: 6px; text-transform: uppercase; display: block;
}
.nav-toggle { position: absolute; opacity: 0; pointer-events: none; }
.burger {
  display: none; align-items: center; justify-content: center;
  width: 40px; height: 40px; cursor: pointer; color: var(--navy); border-radius: 6px;
}
.burger .nmmu-x { display: none; }
.nav-toggle:checked ~ .header-row .burger .nmmu-bars,
.nav-toggle:focus-visible ~ .header-row .burger { outline: 2px solid var(--blue); }
.nav-toggle:checked ~ .header-row .burger .nmmu-bars { display: none; }
.nav-toggle:checked ~ .header-row .burger .nmmu-x { display: block; }
.main-nav ul { display: flex; flex-wrap: wrap; gap: 6px 26px; list-style: none; align-items: center; margin: 0; padding: 0; }
.main-nav a.nav-link {
  text-decoration: none; font-family: var(--font-sans); font-size: 12px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase; color: #3a4a58; transition: color .2s;
}
.main-nav a.nav-link:hover, .main-nav a.nav-link:focus-visible { color: var(--blue); }
.nav-social { display: flex; align-items: center; gap: 8px; margin-left: 2px; }
.icon-btn {
  display: inline-flex; align-items: center; justify-content: center; width: 34px; height: 34px;
  border-radius: 50%; background: var(--blue); color: #fff; text-decoration: none; transition: all .2s;
}
.icon-btn:hover, .icon-btn:focus-visible { background: var(--navy); transform: translateY(-2px); }
.lang-btn {
  text-decoration: none; font-family: var(--font-sans); font-size: 11px; font-weight: 700;
  letter-spacing: .14em; color: var(--blue); border: 1px solid var(--blue-paler); border-radius: 3px;
  padding: 6px 11px; transition: all .2s;
}
.lang-btn:hover, .lang-btn:focus-visible { background: var(--blue); color: #fff; border-color: var(--blue); }

@media (max-width: 860px) {
  .burger { display: inline-flex; }
  .main-nav {
    flex-basis: 100%; max-height: 0; overflow: hidden; transition: max-height .3s ease;
  }
  .nav-toggle:checked ~ .header-row .main-nav { max-height: 400px; }
  .main-nav ul { flex-direction: column; align-items: flex-start; gap: 14px; padding: 18px 0 6px; }
}

/* ===== hero ===== */
.hero {
  position: relative; background: var(--navy); color: #fff; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; background-size: cover; background-position: center 18%;
  filter: sepia(.7) saturate(1.9) brightness(1.1) contrast(1.02) hue-rotate(-8deg);
}
.hero-veil-1 {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(165deg, rgba(14,60,94,.5) 0%, rgba(30,100,150,.3) 55%, rgba(14,60,94,.55) 100%);
}
.hero-veil-2 {
  position: absolute; left: 0; right: 0; bottom: 0; height: 68%; pointer-events: none;
  background: linear-gradient(to top, rgba(14,60,94,.97) 0%, rgba(14,60,94,.93) 45%, rgba(15,66,104,.72) 72%, rgba(16,70,110,.28) 90%, transparent 100%);
}
.hero-frame { position: absolute; inset: 24px; border: 1px solid rgba(255,255,255,.35); pointer-events: none; }
.hero-content { position: relative; max-width: 1000px; margin: 0 auto; padding: 104px 36px 118px; text-align: center; }
.hero-content img.logo-mark { width: 190px; height: 190px; margin: 0 auto 28px; filter: drop-shadow(0 18px 34px rgba(0,0,0,.4)); }
.hero-eyebrow {
  display: inline-block; font-family: var(--font-sans); font-size: 13.5px; letter-spacing: .24em;
  text-transform: uppercase; color: #fff; font-weight: 700; margin: 0 0 28px; text-shadow: 0 2px 14px rgba(14,60,94,.5);
}
.hero-title {
  font-family: var(--font-serif); font-weight: 300; font-size: clamp(38px,6.4vw,80px);
  line-height: 1.04; color: #fff; letter-spacing: -.012em; margin: 0; text-shadow: 0 2px 24px rgba(14,60,94,.4);
}
.divider-mini { display: flex; align-items: center; justify-content: center; gap: 16px; margin: 34px 0 0; }
.divider-mini span.line { width: 52px; height: 1px; background: rgba(255,255,255,.6); }
.divider-mini span.dot { width: 7px; height: 7px; background: #fff; transform: rotate(45deg); }
.hero-motto {
  font-family: var(--font-serif); font-style: italic; font-weight: 400; font-size: clamp(19px,2.4vw,26px);
  color: #eaf4fc; margin: 26px auto 0; max-width: 640px; line-height: 1.4; text-shadow: 0 2px 16px rgba(14,60,94,.4);
}
.btn {
  text-decoration: none; font-family: var(--font-sans); font-size: 12.5px; letter-spacing: .14em;
  text-transform: uppercase; font-weight: 700; padding: 15px 34px; border-radius: 4px; display: inline-block;
  transition: all .22s; border: none; cursor: pointer;
}
.btn-light { background: #fff; color: var(--navy); box-shadow: 0 12px 26px rgba(0,0,0,.28); }
.btn-light:hover, .btn-light:focus-visible { background: #eaf4fc; }
.btn-primary { background: var(--blue); color: #fff; box-shadow: 0 12px 26px rgba(20,121,189,.24); }
.btn-primary:hover, .btn-primary:focus-visible { background: var(--navy); }
.hero-cta { margin-top: 46px; }
.scroll-hint {
  position: absolute; left: 50%; bottom: 34px; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.scroll-hint span.label {
  font-family: var(--font-sans); font-size: 9.5px; font-weight: 700; letter-spacing: .28em;
  color: rgba(255,255,255,.85); text-transform: uppercase;
}
.scroll-hint span.stem { position: relative; width: 1px; height: 44px; background: rgba(255,255,255,.25); }

/* ===== notice ===== */
.notice { background: var(--bg-soft); color: var(--text); border-bottom: 1px solid var(--border-soft); }
.notice .wrap { padding: 56px 36px; display: flex; flex-wrap: wrap; gap: 52px; }
.notice-main { flex: 1 1 440px; }
.eyebrow {
  font-family: var(--font-sans); font-size: 10.5px; font-weight: 700; letter-spacing: .24em;
  text-transform: uppercase; color: var(--blue); margin: 0 0 12px;
}
.notice-main h2 {
  font-family: var(--font-serif); font-size: 30px; font-weight: 400; color: var(--navy);
  margin: 0 0 20px; letter-spacing: -.01em;
}
.notice-main p { margin: 16px 0 0; font-size: 16.5px; line-height: 1.72; }
.notice-main p:first-of-type { margin-top: 0; font-size: 17px; line-height: 1.9; }
.notice-aside { flex: 1 1 300px; max-width: 380px; }
.alert-box {
  border-left: 3px solid var(--blue); padding: 20px 24px; background: #fff; border-radius: 0 6px 6px 0;
  font-size: 15.5px; line-height: 1.7; box-shadow: 0 8px 22px rgba(20,121,189,.1);
}
.alert-box p:first-child { margin: 0 0 8px; }
.alert-box p:last-child { margin: 0; color: var(--text); }
.notice-note { margin: 22px 0 0; font-size: 14.5px; color: var(--text-muted); line-height: 1.7; }
.link-underline { color: var(--blue); border-bottom: 1px solid var(--blue-paler); text-decoration: none; }
.link-underline:hover, .link-underline:focus-visible { color: var(--navy); }

/* ===== generic section ===== */
.section { position: relative; padding: 116px 36px; overflow: hidden; }
.section-num {
  position: absolute; top: 60px; right: -50px; font-family: var(--font-serif); font-weight: 300;
  font-size: clamp(280px,40vw,520px); line-height: .78; color: var(--blue); opacity: .06;
  letter-spacing: -.04em; pointer-events: none; user-select: none; z-index: 0;
}
.section-num.left { right: auto; left: -40px; }
.section-kicker { display: flex; align-items: center; gap: 14px; margin-bottom: 22px; position: relative; z-index: 1; }
.section-kicker .idx { font-family: var(--font-sans); font-size: 12px; font-weight: 700; letter-spacing: .2em; color: var(--blue); }
.section-kicker .rule { flex: 0 0 36px; height: 1px; background: var(--blue); opacity: .5; }
.section-kicker .label { font-family: var(--font-sans); font-size: 11.5px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--blue); }
.section-title {
  font-family: var(--font-serif); font-weight: 300; font-size: clamp(38px,5.4vw,68px);
  line-height: 1.02; color: var(--navy); letter-spacing: -.015em; margin: 0; position: relative; z-index: 1;
}
.section-title.large { font-size: clamp(34px,4.4vw,54px); line-height: 1.04; }
.section-title em, h1 em, h2 em, h3 em { font-weight: 500; color: var(--blue); font-style: normal; }

/* ===== 01 exposition ===== */
.expo-grid { position: relative; z-index: 1; display: flex; flex-wrap: wrap; gap: 66px; align-items: flex-start; }
.expo-col { flex: 1 1 360px; }
.expo-subtitle { font-family: var(--font-serif); font-style: italic; font-weight: 400; font-size: 23px; color: #3a5a72; margin: 16px 0 30px; line-height: 1.3; }
.expo-figure { margin: 0; }
.expo-figure img { border-radius: 6px; box-shadow: 0 24px 46px rgba(14,60,94,.2); width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.expo-figure figcaption {
  font-family: var(--font-sans); font-size: 11.5px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  color: var(--text-muted); margin-top: 14px; display: flex; gap: 10px; align-items: center;
}
.expo-figure figcaption .rule { width: 14px; height: 1px; background: var(--blue); }
.expo-meta-grid {
  display: grid; grid-template-columns: repeat(2,1fr); gap: 0; border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft); margin: 30px 0 0;
}
.expo-meta-grid > div { font-size: 15px; color: var(--text); padding: 16px; border-right: 1px solid var(--bg-soft); border-bottom: 1px solid var(--bg-soft); }
.expo-meta-grid > div:nth-child(2n) { border-right: none; }
.expo-meta-grid > div:nth-last-child(-n+2) { border-bottom: none; }
.expo-meta-grid .k { display: block; font-family: var(--font-sans); font-size: 10px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--blue-mid); margin-bottom: 5px; }
.price-box { background: var(--bg-soft); border-radius: 8px; padding: 24px 26px; margin: 28px 0 0; border-left: 3px solid var(--blue); }
.price-box .eyebrow { margin: 0 0 12px; }
.price-rows { display: flex; flex-direction: column; gap: 8px; font-family: var(--font-sans); font-size: 15px; color: var(--text); }
.price-rows .row { display: flex; justify-content: space-between; align-items: baseline; gap: 14px; border-bottom: 1px solid var(--border-soft); padding-bottom: 8px; }
.price-rows .row:last-child { border-bottom: none; padding-bottom: 0; }
.price-rows .row b { color: var(--blue); font-size: 17px; white-space: nowrap; }
.price-box p.note { margin: 12px 0 0; font-size: 15px; line-height: 1.68; }
.expo-text { flex: 1 1 480px; max-width: 660px; }
.expo-text p { margin: 0 0 22px; font-size: 18px; line-height: 1.78; }
.drop-cap { float: left; font-family: var(--font-serif); font-weight: 300; font-size: 100px; line-height: .76; color: var(--blue); margin: 8px 16px -4px 0; }
.hall {
  margin: 0 0 22px; border-left: 2px solid var(--blue); padding-left: 22px;
}
.hall .hall-head { display: flex; align-items: baseline; gap: 14px; margin-bottom: 6px; }
.hall .num { font-family: var(--font-serif); font-style: italic; font-size: 32px; font-weight: 400; color: var(--blue); line-height: 1; }
.hall .label { font-family: var(--font-sans); font-size: 10.5px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--blue-mid); }
.hall p { margin: 0; font-size: 17px; line-height: 1.72; }
.warning-line { margin: 0 0 20px; font-size: 17px; font-weight: 700; color: var(--blue); }

/* ===== cards grid (what's on) ===== */
.section-alt { position: relative; background: var(--bg-soft); color: var(--text); padding: 116px 0; overflow: hidden; border-top: 1px solid var(--border-soft); border-bottom: 1px solid var(--border-soft); }
.section-sub { font-family: var(--font-sans); font-size: 12px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: #3a5a72; margin: 18px 0 0; position: relative; z-index: 1; }
.cards-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(320px,1fr)); gap: 32px; margin-top: 58px; position: relative; z-index: 1; }
.card {
  background: #fff; color: var(--text); display: flex; flex-direction: column; border-radius: 8px; overflow: hidden;
  box-shadow: 0 16px 38px rgba(14,60,94,.12); transition: transform .4s cubic-bezier(.2,.7,.2,1), box-shadow .4s cubic-bezier(.2,.7,.2,1);
}
.card:hover { transform: translateY(-8px); box-shadow: 0 30px 60px rgba(14,60,94,.2); }
.card-media { aspect-ratio: 5/4; overflow: hidden; position: relative; }
.card-media img { width: 100%; height: 100%; object-fit: cover; }
.card-tag {
  position: absolute; top: 14px; left: 14px; font-family: var(--font-sans); font-size: 10px; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase; color: #fff; background: rgba(20,121,189,.92); padding: 6px 11px; border-radius: 3px;
}
.card-body { padding: 30px 30px 32px; display: flex; flex-direction: column; flex: 1; }
.card-body h3 { font-family: var(--font-serif); font-size: 29px; font-weight: 500; line-height: 1.08; color: var(--navy); margin: 0 0 14px; letter-spacing: -.01em; }
.card-body p { font-size: 16px; margin: 0 0 14px; line-height: 1.68; }
.card-facts { margin: auto 0 0; border-top: 1px solid #e0ecf7; padding-top: 18px; font-family: var(--font-sans); font-size: 14px; line-height: 1.9; color: var(--text-muted); }
.card-facts .row { display: flex; justify-content: space-between; gap: 14px; }
.card-facts .row b { color: var(--blue); }
.card-facts .row.faint { color: var(--text-faint); }

/* ===== reviews ===== */
.section-white { position: relative; background: #fff; padding: 116px 0; overflow: hidden; }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(300px,1fr)); gap: 28px; margin-top: 58px; position: relative; z-index: 1; }
.review-card { position: relative; background: var(--bg-page); border-radius: 8px; padding: 50px 34px 34px; transition: transform .4s cubic-bezier(.2,.7,.2,1), box-shadow .4s ease; }
.review-card:hover { transform: translateY(-6px); box-shadow: 0 22px 46px rgba(14,60,94,.14); }
.review-quote { position: absolute; top: -8px; left: 30px; font-family: var(--font-serif); font-style: italic; font-size: 120px; line-height: 1; color: var(--blue); opacity: .25; }
.review-card p { font-size: 17px; color: var(--text); margin: 0 0 26px; line-height: 1.66; position: relative; }
.review-author { display: flex; align-items: center; gap: 12px; border-top: 1px solid var(--border-soft-2); padding-top: 16px; }
.review-author .rule { width: 22px; height: 1px; background: var(--blue); }
.review-author span.name { font-family: var(--font-sans); font-size: 11.5px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--blue); }

/* ===== schedule ===== */
.schedule-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(300px,1fr)); gap: 28px; margin-top: 58px; position: relative; z-index: 1; }
.schedule-card { display: flex; flex-direction: column; background: #fff; border-radius: 8px; overflow: hidden; box-shadow: 0 12px 30px rgba(14,60,94,.1); transition: transform .3s ease, box-shadow .3s ease; }
.schedule-card:hover { transform: translateY(-6px); box-shadow: 0 24px 48px rgba(14,60,94,.18); }
.schedule-media { aspect-ratio: 16/9; overflow: hidden; }
.schedule-media img { width: 100%; height: 100%; object-fit: cover; }
.schedule-body { padding: 26px 28px 28px; flex: 1; }
.schedule-format { font-family: var(--font-sans); font-size: 10px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--blue-mid); margin: 0 0 8px; }
.schedule-body h3 { font-family: var(--font-serif); font-size: 24px; font-weight: 500; color: var(--navy); margin: 0 0 10px; line-height: 1.16; letter-spacing: -.01em; }
.schedule-body p { font-size: 15.5px; color: var(--text); margin: 0 0 14px; line-height: 1.62; }
.schedule-hours { font-family: var(--font-sans); font-size: 12px; font-weight: 600; letter-spacing: .04em; color: var(--blue); padding-top: 10px; border-top: 1px solid #e0ecf7; }
.section-cta { text-align: center; margin-top: 56px; position: relative; z-index: 1; }

/* ===== corporate ===== */
.section-dark { position: relative; background: linear-gradient(160deg, var(--navy) 0%, var(--navy-2) 100%); color: #eaf4fc; padding: 116px 0; overflow: hidden; }
.section-dark .section-kicker .idx, .section-dark .section-kicker .label { color: var(--blue-pale); }
.section-dark .section-kicker .rule { background: var(--blue-pale); }
.section-dark .section-title { color: #fff; }
.section-dark .section-num { color: #fff; }
.corp-grid { position: relative; z-index: 1; max-width: var(--container); margin: 0 auto; padding: 0 36px; display: flex; flex-wrap: wrap; gap: 60px; align-items: center; }
.corp-main { flex: 1 1 460px; }
.corp-main p.lead { font-size: 18px; color: #d3e6f5; max-width: 540px; margin: 22px 0 0; line-height: 1.72; }
.corp-facts { display: grid; grid-template-columns: repeat(auto-fit,minmax(150px,1fr)); gap: 0; margin-top: 34px; border-top: 1px solid rgba(127,192,236,.3); }
.corp-facts > div { padding: 18px; border-bottom: 1px solid rgba(127,192,236,.3); border-right: 1px solid rgba(127,192,236,.3); }
.corp-facts > div:last-child { border-right: none; }
.corp-facts .k { display: block; font-family: var(--font-sans); font-size: 10px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--blue-pale); margin-bottom: 6px; }
.corp-facts .v { font-size: 15.5px; color: #fff; }
.contact-card {
  flex: 1 1 320px; max-width: 440px; background: rgba(255,255,255,.07); backdrop-filter: blur(4px);
  border: 1px solid rgba(127,192,236,.28); border-radius: 10px; padding: 42px 40px; position: relative;
}
.contact-card .eyebrow { color: var(--blue-pale); margin: 0 0 18px; }
.contact-card .phone { font-family: var(--font-serif); font-style: italic; font-size: 36px; font-weight: 400; color: #fff; letter-spacing: -.01em; margin: 0 0 6px; line-height: 1.1; text-decoration: none; display: block; }
.contact-card .hours { font-family: var(--font-sans); font-size: 12px; font-weight: 600; color: #a9d1ee; letter-spacing: .06em; margin: 0 0 26px; }
.contact-card p.lead { font-size: 16px; color: #d3e6f5; margin: 0 0 26px; line-height: 1.68; }

/* ===== divider ===== */
.divider {
  background: var(--bg-page); padding: 56px 36px; display: flex; align-items: center; justify-content: center; gap: 18px;
}
.divider .line { flex: 0 1 200px; height: 1px; background: linear-gradient(to right, transparent, var(--blue-paler), transparent); }
.divider .mark { display: inline-flex; align-items: center; gap: 8px; }
.divider .mark span.dot { width: 8px; height: 8px; background: var(--blue); transform: rotate(45deg); }
.divider .mark span.dot.small { width: 5px; height: 5px; opacity: .5; }
.divider .mark span.word { font-family: var(--font-serif); font-style: italic; font-size: 22px; color: var(--blue); letter-spacing: .04em; padding: 0 6px; }

/* ===== order cta ===== */
.order-cta { position: relative; background: linear-gradient(150deg, var(--blue) 0%, #0e5a92 100%); color: #fff; text-align: center; padding: 96px 0; overflow: hidden; }
.order-cta .frame { position: absolute; inset: 22px; border: 1px solid rgba(255,255,255,.28); pointer-events: none; }
.order-cta .wrap { position: relative; }
.order-cta .kicker { font-family: var(--font-sans); font-size: 11px; font-weight: 700; letter-spacing: .26em; text-transform: uppercase; color: #cfe6f7; margin: 0 0 14px; }
.order-cta .phone { text-decoration: none; color: #fff; font-family: var(--font-serif); font-style: italic; font-size: clamp(42px,7vw,80px); font-weight: 400; margin: 12px 0; letter-spacing: -.015em; line-height: 1; display: block; }
.order-cta .sub { font-family: var(--font-sans); font-size: 12px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: #e3f1fb; margin: 14px 0 0; }

/* ===== footer ===== */
.site-footer { background: var(--navy); color: #dceaf6; padding: 84px 0 42px; }
.footer-brand { display: flex; align-items: center; gap: 18px; margin: 0 0 8px; }
.footer-brand img { width: 58px; height: 58px; flex: 0 0 auto; }
.footer-brand .title { font-family: var(--font-serif); font-size: 30px; font-weight: 400; color: #fff; letter-spacing: -.01em; margin: 0; }
.footer-brand .subtitle { font-family: var(--font-sans); font-size: 10.5px; font-weight: 700; letter-spacing: .24em; text-transform: uppercase; color: var(--blue-pale); margin: 6px 0 0; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(240px,1fr)); gap: 44px; padding-top: 44px; margin-top: 44px; border-top: 1px solid rgba(127,192,236,.24); }
.footer-grid h4 { font-family: var(--font-sans); font-size: 11px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--blue-pale); margin: 0 0 18px; }
.footer-grid p { font-size: 15.5px; margin: 0 0 12px; line-height: 1.7; color: #cfe0ee; }
.footer-grid p.small { font-size: 15px; }
.footer-grid p a { color: inherit; text-decoration: none; border-bottom: 1px solid rgba(127,192,236,.4); }
.footer-grid p a:hover, .footer-grid p a:focus-visible { color: #fff; }
.footer-grid .k { font-family: var(--font-sans); font-size: 10.5px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--blue-pale); display: block; margin-bottom: 4px; }
.footer-social { font-family: var(--font-sans); font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; margin: 18px 0 0; }
.footer-social a { color: var(--blue-pale); text-decoration: none; border-bottom: 1px solid rgba(127,192,236,.5); }
.footer-social a:hover, .footer-social a:focus-visible { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(127,192,236,.24); margin-top: 56px; padding-top: 30px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 18px; align-items: center; }
.footer-bottom p { font-size: 12.5px; color: #8fb2cd; font-family: var(--font-sans); max-width: 660px; line-height: 1.7; margin: 0; }
.footer-links { display: flex; gap: 12px; flex-wrap: wrap; }
.footer-links a {
  font-family: var(--font-sans); font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  text-decoration: none; padding: 11px 20px; border-radius: 5px; transition: all .2s;
}
.footer-links a.offer { color: var(--navy); background: var(--blue-pale); }
.footer-links a.offer:hover, .footer-links a.offer:focus-visible { background: #fff; }
.footer-links a.rules { color: var(--blue-pale); background: transparent; border: 1px solid var(--blue-pale); }
.footer-links a.rules:hover, .footer-links a.rules:focus-visible { background: var(--blue-pale); color: var(--navy); }

@media (prefers-reduced-motion: no-preference) {
  .hero-content img.logo-mark { animation: nmmuFloat 7s ease-in-out infinite; }
  .hero-bg { animation: nmmuKenBurns 34s ease-in-out infinite alternate; }
  .scroll-hint span.stem::after {
    content: ""; position: absolute; inset: 0; background: linear-gradient(to bottom, transparent, #fff, transparent);
    animation: nmmuScrollHint 2.4s ease-in-out infinite;
  }
}
@keyframes nmmuFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes nmmuKenBurns { from { transform: scale(1); } to { transform: scale(1.08); } }
@keyframes nmmuScrollHint { 0% { transform: translateY(-100%); } 100% { transform: translateY(100%); } }

@media (max-width: 640px) {
  body { font-size: 16.5px; }
  .section { padding: 72px 24px; }
  .header-row, .wrap { padding-left: 24px; padding-right: 24px; }
  .hero-content { padding: 76px 24px 88px; }
}
