/* ============================================================
   MARITIME TRANSPORT · subpage (Template A)
   Builds on styles1.css design system (tokens, nav, pill, footer,
   marquee, logo-cell). Page-specific components only here.
   ============================================================ */

/* hero · past edition, video bg, same overlay family */
.mt-hero{position:relative;min-height:82vh;display:flex;flex-direction:column;justify-content:flex-end;color:#fff;overflow:hidden;isolation:isolate;background:var(--ocean-900)}
.mt-hero video{position:absolute;inset:0;z-index:-2;width:100%;height:100%;object-fit:cover}
.mt-hero .scrim{position:absolute;inset:0;z-index:-1;background:
  radial-gradient(120% 90% at 75% 0%, rgba(10,77,140,.4) 0%, rgba(0,32,83,0) 55%),
  linear-gradient(180deg, rgba(0,22,51,.7) 0%, rgba(0,29,79,.66) 45%, rgba(0,22,51,.94) 100%)}
.mt-hero-inner{padding:170px 0 64px}
.mt-status{display:inline-flex;align-items:center;gap:9px;padding:8px 16px;border-radius:999px;font-family:var(--font-display);font-weight:700;font-size:12px;letter-spacing:.14em;text-transform:uppercase;background:rgba(166,205,231,.14);border:1px solid rgba(166,205,231,.34);color:var(--teal-300);backdrop-filter:blur(6px);margin-bottom:22px}
.mt-status .pdot{width:7px;height:7px;border-radius:50%;background:var(--gold-400)}
.mt-hero .kick{font-family:var(--font-display);font-weight:700;font-size:13px;letter-spacing:.2em;text-transform:uppercase;color:var(--gold-300);margin-bottom:16px}
.mt-hero h1{font-family:var(--font-display);font-weight:800;font-size:clamp(46px,7vw,92px);line-height:1.02;letter-spacing:-0.025em;margin:0;color:#fff}
.mt-hero .meta{margin-top:26px;display:flex;flex-wrap:wrap;gap:12px 26px;font-size:17px;font-weight:700;color:rgba(255,255,255,.92)}
.mt-hero .meta span{display:inline-flex;align-items:center;gap:10px}
.mt-hero .meta .dot{width:6px;height:6px;border-radius:50%;background:var(--gold);flex:none}
.mt-hero-ctas{margin-top:34px;display:flex;gap:14px;flex-wrap:wrap}

/* ---- Banner hero: full-width image + two CTAs ABSOLUTELY POSITIONED inside the banner (in the empty area below SMART / PORT brand text) ---- */
/* Maritime Transport nav · solid navy always, sits above the banner */
.mt-hero-banner ~ *, body{}
body{padding-top:0}
/* MT: top bar is WHITE while user is on the banner; switches to navy once scrolled past the banner */
.topbar{
  position:sticky !important;
  top:0;
  padding:14px 0 !important;
  transition:background .35s ease, box-shadow .35s ease, backdrop-filter .35s ease !important;
}
.topbar:not(.past-banner){
  background:rgba(255,255,255,.96) !important;
  backdrop-filter:blur(14px) !important;
  -webkit-backdrop-filter:blur(14px) !important;
  box-shadow:0 6px 22px rgba(0,12,38,.08) !important;
  border-bottom:1px solid rgba(0,32,83,.06);
}
.topbar.past-banner{
  background:linear-gradient(180deg, rgba(0,18,38,.96), rgba(0,18,38,.88)) !important;
  backdrop-filter:blur(14px) !important;
  -webkit-backdrop-filter:blur(14px) !important;
  box-shadow:0 6px 22px rgba(0,12,38,.45) !important;
  border-bottom:0;
}
/* Logo swap — client-flagged: the white Maritime World logo disappeared
   against the topbar's white/light "not past-banner" scroll state (report:
   "وقتی منو سفید میشه لوگو مریتایم که سفیده گم میشه"). The rules this
   replaced (`.mw-logo-white` / `.mw-logo-navy`) assumed header.php rendered
   TWO separate <img> tags and toggled which one showed — but header.php
   only ever renders a single `<img class="mw-logo" ...>` (the white SVG),
   so neither selector ever matched anything and the logo just stayed white
   on white. Rather than requiring a second (navy) logo asset that doesn't
   exist yet anywhere in the media library, the SAME white logo is recolored
   in place with a CSS filter (brightness(0) collapses it to solid black,
   then invert/sepia/saturate/hue-rotate/brightness/contrast repaints that
   black to this theme's exact --ocean-900 navy, #002053 — verified by
   simulating the browser's filter spec matrices against the target hex). */
.topbar:not(.past-banner) .brand .mw-logo{
  filter: brightness(0) saturate(100%) invert(53%) sepia(67%) saturate(1040%) hue-rotate(184deg) brightness(28%) contrast(118%);
}
/* Nav links + CTA + toggle colour in white state */
.topbar:not(.past-banner) .nav-links a{color:rgba(0,32,83,.78) !important}
.topbar:not(.past-banner) .nav-links a:hover{color:#0A346F !important}
.topbar:not(.past-banner) .nav-mobile-toggle{color:var(--ocean-900)}
.topbar:not(.past-banner) .nav-cta.pill-primary{
  background:linear-gradient(135deg,#4F86C6 0%,#1558A9 55%,#0A346F 100%) !important;
  color:#fff !important;border-color:transparent !important;
}
/* Solid/"past-banner" nav state: guard the CTA's dark text against
   Elementor's global kit stylesheet (".elementor-kit-N a"), which is more
   specific than the plain ".pill-primary" rule and gets auto-enqueued on
   pages built as WP "Page" posts (e.g. the cart page) even though those
   pages render our own custom template, not Elementor content. */
.topbar.past-banner .nav-cta.pill-primary{
  color:var(--ink-900) !important;
}
.mt-hero-banner{
  padding-top:12px !important;
  padding-bottom:0 !important;
  min-height:0 !important;
  display:block !important;
  justify-content:flex-start !important;
  background:#EEF2F5 !important;
}
.mt-banner-wrap{margin:0 !important;position:relative !important}
.mt-banner-wrap::before{ display:none !important; }
.mt-banner-img{margin:0 !important;display:block;width:100%;height:auto}
.mt-hero-strip{padding:14px 0 18px !important}
.mt-hero-banner > video, .mt-hero-banner > .scrim{display:none}

/* Banner wrapper: no feathering, banner edge-to-edge with hero box */
.mt-banner-wrap{
  position:relative;
  -webkit-mask-image:none;
          mask-image:none;
}
.mt-banner-img{
  display:block;width:100%;height:auto;background:var(--ocean-900);
}
.mt-banner-veil{display:none}

/* Side gradient pads: soft horizontal blend on the slanted brand cuts so the city/cranes photos feather into navy */
.mt-banner-wrap::before,
.mt-banner-wrap::after{ display:none !important; }

/* === HERO Option 2 refined · glass card under banner === */
.mt-glass-stage{
  position:relative;background:#fff;
  padding:0 0 72px;
  isolation:isolate;
}
.mt-glass-stage .container{position:relative;z-index:2}
.mt-glass-card{
  position:relative;
  margin-top:-78px;
  background:linear-gradient(180deg, rgba(255,255,255,.55) 0%, rgba(255,255,255,.32) 100%);
  backdrop-filter:blur(28px) saturate(1.15);
  -webkit-backdrop-filter:blur(28px) saturate(1.15);
  border:1px solid rgba(255,255,255,.45);
  border-radius:18px;
  box-shadow:
    0 1px 0 rgba(255,255,255,.6) inset,
    0 30px 60px -22px rgba(0,32,83,.4),
    0 0 0 1px rgba(0,32,83,.04);
  padding:30px 40px;
  display:flex;align-items:center;justify-content:space-between;gap:40px;
  overflow:hidden;
}
.mt-glass-card::before{
  content:"";position:absolute;inset:0;pointer-events:none;border-radius:18px;
  background:
    radial-gradient(ellipse 60% 80% at 20% 0%, rgba(255,255,255,.45) 0%, rgba(255,255,255,0) 60%),
    radial-gradient(ellipse 50% 100% at 100% 100%, rgba(21,88,169,.10) 0%, rgba(21,88,169,0) 60%);
}
.mt-glass-card > *{position:relative;z-index:1}
.mt-glass-meta{
  font-family:var(--font-display);font-weight:800;
  font-size:13px;letter-spacing:.22em;text-transform:uppercase;
  color:var(--ocean-900);
}
.mt-glass-meta .dot{display:inline-block;width:6px;height:6px;border-radius:50%;background:#1558A9;margin:0 12px 2px;vertical-align:middle}
.mt-glass-title{
  font-family:var(--font-display);font-weight:900;
  font-size:clamp(28px,3.4vw,38px);line-height:1.02;letter-spacing:-.025em;
  color:var(--ocean-900);margin-top:6px;
}
.mt-glass-date{
  font-family:var(--font-display);font-weight:700;
  font-size:14px;letter-spacing:.16em;text-transform:uppercase;
  color:#1558A9;margin-top:10px;
}
.mt-glass-cta{
  display:inline-flex;align-items:center;gap:12px;
  padding:16px 30px;border-radius:999px;
  font-family:var(--font-display);font-weight:700;font-size:14.5px;letter-spacing:.04em;
  text-decoration:none;color:#fff;white-space:nowrap;
  background:linear-gradient(135deg, #4F86C6 0%, #1558A9 55%, #0A346F 100%);
  border:1px solid rgba(255,255,255,.18);
  box-shadow:
    0 1px 0 rgba(255,255,255,.35) inset,
    0 12px 28px -10px rgba(21,88,169,.55),
    0 2px 6px rgba(0,32,83,.18);
  transition:transform .22s ease, box-shadow .22s ease, filter .22s ease;
}
.mt-glass-cta:hover{
  transform:translateY(-2px);filter:brightness(1.06);
  box-shadow:
    0 1px 0 rgba(255,255,255,.45) inset,
    0 18px 36px -10px rgba(21,88,169,.7),
    0 4px 10px rgba(0,32,83,.25);
}
.mt-glass-cta svg{width:16px;height:16px}
.mt-glass-stage + section{padding-top:48px}
@media(max-width:900px){
  .mt-glass-card{flex-direction:column;align-items:flex-start;gap:22px;padding:24px}
  .mt-glass-stage{padding-bottom:56px}
}

/* === legacy hero-strip + in-banner CTAs · hidden after Option 2 refined === */
.mt-hero-strip{display:none !important}
.mt-banner-cta{display:none !important}
  position:absolute;left:50%;bottom:6%;transform:translateX(-50%);
  z-index:5;display:flex;align-items:center;
  gap:clamp(28px, 10vw, 180px);
  white-space:nowrap;
  pointer-events:auto;
}
.mt-banner-cta .pill{box-shadow:0 14px 30px -14px rgba(0,12,38,.7), 0 0 32px rgba(228,201,122,.18)}
.mt-banner-cta .pill-ghost{background:rgba(255,255,255,.10);backdrop-filter:blur(10px);-webkit-backdrop-filter:blur(10px);border-color:rgba(255,255,255,.5)}
.mt-banner-cta .pill-ghost:hover{background:rgba(255,255,255,.18)}

/* Title strip directly under the banner: meets the banner edge without a gap, small gold hairline */
.mt-hero-strip{background:var(--ocean-900);color:#fff;padding:28px 0 52px;border-top:1px solid rgba(228,201,122,.32);position:relative}
.mt-hero-strip::before{
  content:"";position:absolute;left:50%;top:-1px;transform:translateX(-50%);
  width:120px;height:2px;background:linear-gradient(90deg,transparent,var(--gold) 50%,transparent);
  pointer-events:none;
}
.mt-hero-strip .kick{font-family:var(--font-display);font-weight:700;font-size:11.5px;letter-spacing:.22em;text-transform:uppercase;color:var(--gold-300);margin-bottom:12px}
.mt-hero-strip h1{font-family:var(--font-display);font-weight:800;font-size:clamp(34px,4.4vw,52px);margin:0;color:#fff;letter-spacing:-.025em;line-height:1.04}
.mt-hero-strip .meta{margin-top:14px;display:flex;flex-wrap:wrap;gap:8px 24px;font-size:15px;color:rgba(255,255,255,.92);font-weight:700}
.mt-hero-strip .meta span{display:inline-flex;align-items:center;gap:10px}
.mt-hero-strip .meta .dot{width:6px;height:6px;border-radius:50%;background:var(--gold);flex:none}
.mt-hero-strip + section{padding-top:var(--section-pad)}

@media(max-width:720px){
  .mt-banner-cta{
    position:relative;left:auto;bottom:auto;transform:none;
    flex-direction:column;align-items:stretch;gap:12px;
    padding:22px 24px 28px;background:var(--ocean-900);white-space:normal;
  }
  .mt-banner-cta .pill{justify-content:center}
  .mt-banner-wrap::before, .mt-banner-wrap::after{width:0}
}

/* generic section header reuse via .section-head/.eyebrow from styles1.css */
.mt-sec{padding:var(--section-pad) 0}
.mt-sec.light{background:var(--bg-page)}
.mt-sec.soft{background:var(--bg-soft)}

/* About + Why split */
/* About section · refined typography */
.mt-sec.light .section-head .eyebrow{
  font-family:var(--font-display);
  font-weight:800;font-size:13px;letter-spacing:.28em;
  text-transform:uppercase;color:var(--blue-500,#1558A9);
}
.mt-about-wrap{display:grid;grid-template-columns:1.1fr .9fr;gap:64px;align-items:center}
.mt-hook{
  font-family:var(--font-display);font-weight:900;
  font-size:clamp(36px, 5vw, 64px);
  line-height:1.02;letter-spacing:-.03em;
  color:var(--ink-900);
  text-wrap:balance;
  margin:0;
}
.mt-hook em{
  font-style:normal;
  background:linear-gradient(180deg, #1558A9 0%, #0A4D8C 50%, #001D4F 100%);
  -webkit-background-clip:text;background-clip:text;-webkit-text-fill-color:transparent;
}
.mt-about-body{margin-top:32px}
.mt-about-body p{font-size:17px;color:var(--ink-500);line-height:1.75;margin:0 0 18px;letter-spacing:.002em}
.mt-about-body p:first-of-type{
  font-size:22px;color:var(--ink-900);font-weight:400;line-height:1.5;
  border-left:3px solid var(--gold);padding-left:22px;
}
.mt-why{display:flex;flex-direction:column;gap:18px}
.mt-why-card{background:#fff;border:1px solid var(--ink-100);border-radius:18px;padding:26px;display:flex;gap:18px;align-items:flex-start}
.mt-why-ic{width:48px;height:48px;border-radius:13px;background:var(--teal-50);color:var(--teal-600);display:flex;align-items:center;justify-content:center;flex:none}
.mt-why-ic svg{width:24px;height:24px}
.mt-why-card h4{font-size:17px;color:var(--ink-900);margin:0 0 5px}
.mt-why-card p{font-size:14px;color:var(--ink-500);margin:0;line-height:1.55}
.mt-badge{display:inline-flex;align-items:center;gap:8px;margin-top:8px;padding:7px 14px;border-radius:999px;font-size:12px;font-weight:700;letter-spacing:.04em;background:var(--teal-50);color:var(--teal-600);border:1px solid var(--teal-100)}
.mt-badge svg{width:14px;height:14px}

/* Sponsors · per-event panel (Logo Normalizer, light tiles) */
.mt-sponsors{background:var(--bg-soft)}
.mt-sponsor-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:18px;margin-top:44px}
.mt-sponsor-tile{background:#fff;border:1px solid var(--ink-100);border-radius:16px;aspect-ratio:600/288;display:flex;align-items:center;justify-content:center;padding:14px 22px;box-shadow:var(--shadow-card)}
.mt-sponsor-tile img{width:100%;height:100%;object-fit:contain;display:block}

/* Speakers · cards + modal (Blok 0 components 4 & 5) */
.mt-spk-grid{display:grid;grid-template-columns:repeat(5,1fr);gap:20px;margin-top:44px}
.mt-spk{position:relative;background:#fff;border:1px solid var(--ink-100);border-radius:20px;overflow:hidden;box-shadow:var(--shadow-card);text-align:left;width:100%;display:flex;flex-direction:column;transition:transform .2s ease,box-shadow .2s ease;font-family:inherit}
.mt-spk:hover{transform:translateY(-4px);box-shadow:var(--shadow-card-hover)}
.mt-spk-photo{aspect-ratio:1/1;position:relative;overflow:hidden;background:linear-gradient(160deg,var(--teal-300),var(--teal-600))}
.mt-spk-photo img{width:100%;height:100%;object-fit:cover;filter:saturate(.8)}
.mt-spk-arrow{position:absolute;top:13px;right:13px;width:38px;height:38px;border-radius:50%;background:#fff;color:var(--teal-600);display:flex;align-items:center;justify-content:center;box-shadow:0 6px 18px -8px rgba(0,32,83,.5)}
.mt-spk-arrow svg{width:17px;height:17px}
.mt-spk-info{padding:16px 16px 18px}
.mt-spk-name{font-family:var(--font-display);font-size:16px;font-weight:800;color:var(--ink-900);line-height:1.2}
.mt-spk-role{font-size:13px;color:var(--ink-500);margin-top:5px;line-height:1.4}
/* TBA */
.mt-spk.tba{border-style:dashed;border-color:var(--teal-300);box-shadow:none;cursor:default}
.mt-spk.tba:hover{transform:none;box-shadow:none}
.mt-spk-tba-photo{aspect-ratio:1/1;display:flex;flex-direction:column;align-items:center;justify-content:center;gap:12px;color:var(--teal-500);background:repeating-linear-gradient(135deg,#fff,#fff 12px,var(--teal-50) 12px,var(--teal-50) 24px)}
.mt-spk-tba-photo svg{width:42px;height:42px;opacity:.8}
.mt-spk-tba-photo span{font-size:11px;font-weight:700;letter-spacing:.16em;text-transform:uppercase}

/* Silhouette portrait tile (no photo) · same family as index1 speaker placeholders */
.mt-spk-mono-photo{
  aspect-ratio:1/1;display:flex;align-items:flex-end;justify-content:center;
  background:linear-gradient(160deg, #7FA9D8 0%, #1558A9 60%, #002053 100%);
  position:relative;overflow:hidden;
}
.mt-spk-mono-photo::after{
  content:"";position:absolute;inset:0;pointer-events:none;
  background:linear-gradient(180deg, transparent 55%, rgba(0,12,38,.45) 100%);
}
.mt-spk-mono-silhouette{
  width:78%;height:auto;display:block;position:relative;z-index:1;
  filter:drop-shadow(0 2px 4px rgba(0,12,38,.35));
  opacity:.92;
}

/* Modal */
.mt-modal{position:fixed;inset:0;z-index:90;background:rgba(0,12,33,.62);backdrop-filter:blur(4px);opacity:0;visibility:hidden;transition:opacity .25s ease,visibility .25s ease;display:flex;align-items:center;justify-content:center;padding:28px}
.mt-modal.open{opacity:1;visibility:visible}
.mt-modal-card{position:relative;background:#fff;border-radius:22px;max-width:680px;width:100%;max-height:88vh;overflow:hidden;display:grid;grid-template-columns:280px 1fr;transform:translateY(16px) scale(.98);transition:transform .28s cubic-bezier(.2,.7,.3,1);max-height:86vh}
.mt-modal.open .mt-modal-card{transform:none}
/* Circular avatar panel. A plain light backdrop with the photo centered as a
   fixed-diameter circle — deliberately NOT sized from the image's own
   aspect ratio or from the row height. Earlier this panel was a hard-edged
   rectangular photo stretched with align-self:stretch, which distorted on
   long bios because the row grows with the bio text. Centering a
   fixed-size circle with flexbox sidesteps that completely: no matter how
   tall .mt-modal-body's text makes the row, the avatar just stays centered
   in it at the same size. */
.mt-modal-photo{position:relative;background:#F4F6FA;min-height:100%;align-self:stretch;display:flex;align-items:center;justify-content:center;padding:28px}
.mt-modal-photo img{width:200px;height:200px;border-radius:50%;object-fit:cover;filter:saturate(.9);display:block;box-shadow:0 0 0 6px #fff,0 14px 30px -14px rgba(10,34,64,.35)}
.mt-modal-body{padding:32px 34px;overflow-y:auto;min-height:0;max-height:88vh;display:flex;flex-direction:column}
.mt-modal-eyebrow{font-family:var(--font-display);font-size:12px;font-weight:700;letter-spacing:.16em;text-transform:uppercase;color:var(--teal-600)}
.mt-modal-body h3{font-family:var(--font-display);font-size:26px;font-weight:700;color:var(--ink-900);margin:10px 0 0}
.mt-modal-role{font-size:15px;color:var(--ink-500);margin-top:8px;line-height:1.5}
.mt-modal-note{font-size:14px;color:var(--ink-400);margin-top:18px;padding-top:18px;border-top:1px solid var(--ink-100)}
.mt-modal-note.has-bio{font-size:15px;line-height:1.7;color:var(--ink-500)}
.mt-modal-social{display:flex;margin-top:auto;padding-top:24px}
/* "Connect on LinkedIn" call-to-action button — was a bare 44px icon-only
   square before; now a full-width labeled pill so it reads as an action,
   not a decoration. */
.mt-modal-social a{width:100%;display:flex;align-items:center;justify-content:center;gap:10px;padding:14px 20px;border-radius:12px;background:#0A66C2;color:#fff;font-family:var(--font-display);font-weight:700;font-size:15px;transition:background .18s,transform .18s}
.mt-modal-social a:hover{background:#004182}
.mt-modal-social a:active{transform:scale(.98)}
.mt-modal-social svg{width:20px;height:20px;flex:none}
.mt-modal-close{position:absolute;top:16px;right:16px;width:36px;height:36px;border-radius:50%;background:transparent;color:var(--ink-500);display:flex;align-items:center;justify-content:center;z-index:2;transition:background .15s,color .15s}
.mt-modal-close:hover{background:rgba(0,0,0,.06);color:var(--ink-900)}
.mt-modal-close svg{width:19px;height:19px}

/* Modal silhouette view (no photo) — same fixed-diameter circle treatment
   as the real photo above, just filled with the gradient monogram mark. */
.mt-modal-mono{
  position:relative;width:200px;height:200px;border-radius:50%;overflow:hidden;
  display:flex;align-items:flex-end;justify-content:center;
  background:linear-gradient(160deg, #7FA9D8 0%, #1558A9 60%, #002053 100%);
  box-shadow:0 0 0 6px #fff,0 14px 30px -14px rgba(10,34,64,.35);
}
.mt-modal-mono::after{content:"";position:absolute;inset:0;pointer-events:none;background:linear-gradient(180deg, transparent 55%, rgba(0,12,38,.45) 100%)}
.mt-modal-mono-letters{display:none}
.mt-modal-mono-svg{width:78%;height:auto;display:block;position:relative;z-index:1;opacity:.92;filter:drop-shadow(0 2px 4px rgba(0,12,38,.35))}

/* Agenda · navy glass cards with soft bloom */
.mt-agenda-list{margin-top:44px;display:flex;flex-direction:column;gap:14px;border-top:0}
.mt-ag{
  display:grid;grid-template-columns:150px 1fr;gap:28px;
  padding:22px 26px;border-bottom:0;align-items:center;
  background:linear-gradient(165deg, #1558A9 0%, #0A4D8C 55%, #002053 100%);
  border:1px solid rgba(166,205,231,.35);
  border-top:1.5px solid rgba(228,201,122,.6);
  border-radius:16px;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.22),
    0 14px 36px -16px rgba(0,32,83,.6),
    0 0 36px rgba(21,88,169,.4);
  color:#fff;
  transition:transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.mt-ag:hover{
  transform:translateY(-2px);
  border-color:var(--gold);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.35),
    0 18px 44px -18px rgba(0,32,83,.65),
    0 0 48px rgba(228,201,122,.4);
}
.mt-ag-time{
  font-family:"Roboto Mono",ui-monospace,monospace;font-weight:500;
  font-size:22px;color:var(--gold-300);letter-spacing:.02em;
  text-shadow:0 1px 8px rgba(228,201,122,.35);
}
.mt-ag-title{font-family:var(--font-display);font-weight:800;font-size:18px;color:#fff}
.mt-ag-desc{font-size:14px;color:rgba(255,255,255,.82);margin-top:5px}

@media (max-width: 600px){
  .mt-ag{grid-template-columns:1fr;gap:6px;padding:18px 20px}
  .mt-ag-time{font-size:18px}
}

/* Venue 3-in-1 */
.mt-venue-wrap{display:grid;grid-template-columns:1fr 1fr;gap:28px;margin-top:44px;align-items:stretch}
.mt-venue-info{background:#fff;border:1px solid var(--ink-100);border-radius:22px;padding:34px;display:flex;flex-direction:column}
.mt-venue-info h3{font-family:var(--font-display);font-size:26px;color:var(--ink-900);margin:0}
.mt-venue-info .addr{font-size:15px;color:var(--ink-500);margin-top:10px;line-height:1.6}
.mt-venue-actions{margin-top:22px;display:flex;gap:12px;flex-wrap:wrap}
.mt-venue-media{border-radius:22px;overflow:hidden;border:1px solid var(--ink-100);min-height:340px;position:relative;background:var(--ocean-900)}
.mt-venue-media iframe{position:absolute;inset:0;width:100%;height:100%;border:0}
.mt-venue-photo{border-radius:22px;overflow:hidden;border:1px solid var(--ink-100);position:relative;min-height:200px;margin-top:0}
.mt-venue-photo img{width:100%;height:100%;object-fit:cover;display:block}

/* Gallery */
.mt-gallery{background:var(--bg-soft)}
.mt-aftermovie{margin-top:44px;border-radius:22px;overflow:hidden;position:relative;aspect-ratio:16/9;background:linear-gradient(150deg,var(--ocean-900),var(--ocean-950));display:flex;align-items:center;justify-content:center;border:1px solid var(--ink-100)}
.mt-aftermovie video{position:absolute;inset:0;width:100%;height:100%;object-fit:cover}
.mt-aftermovie .placeholder{position:relative;text-align:center;color:#fff;padding:24px}
.mt-aftermovie .play{width:74px;height:74px;border-radius:50%;background:rgba(255,255,255,.14);border:1px solid rgba(255,255,255,.3);display:flex;align-items:center;justify-content:center;margin:0 auto 18px;backdrop-filter:blur(6px)}
.mt-aftermovie .play svg{width:28px;height:28px;color:#fff;margin-left:4px}
.mt-aftermovie .placeholder p{font-family:var(--font-display);font-weight:700;letter-spacing:.04em;margin:0;font-size:16px}
.mt-aftermovie .placeholder small{color:var(--teal-300);font-size:12px;letter-spacing:.14em;text-transform:uppercase;font-weight:700}
.mt-grid{margin-top:20px;display:grid;grid-template-columns:repeat(4,1fr);grid-auto-flow:dense;gap:14px}
.mt-grid > *{aspect-ratio:1/1;border-radius:14px;overflow:hidden;display:block}
.mt-grid button{border:0;padding:0;background:none;cursor:pointer;position:relative}
.mt-grid img{width:100%;height:100%;object-fit:cover;transition:transform .35s ease;display:block}
.mt-grid button:hover img{transform:scale(1.05)}
/* Feature tile, 2x2, subtle gold inset */
.mt-grid > *:first-child{grid-column:span 2;grid-row:span 2;position:relative}
.mt-grid > *:first-child::after{content:"";position:absolute;inset:0;border-radius:14px;pointer-events:none;box-shadow:inset 0 0 0 2px var(--gold);z-index:2}

/* "See the rest" placeholder tile · navy gradient, gold accent */
.mt-grid-more{
  aspect-ratio:1/1;border-radius:14px;display:flex;flex-direction:column;
  align-items:center;justify-content:center;gap:10px;text-decoration:none;
  color:#fff;text-align:center;padding:24px;position:relative;overflow:hidden;
  background:linear-gradient(160deg,var(--ocean-900) 0%,var(--ocean-950) 100%);
  border:1px solid rgba(166,205,231,.22);
  transition:transform .22s ease,border-color .22s ease,box-shadow .22s ease;
}
.mt-grid-more::before{
  content:"";position:absolute;inset:0;pointer-events:none;
  background:
    radial-gradient(circle at 28% 18%, rgba(228,201,122,.16) 0%, transparent 55%),
    repeating-linear-gradient(45deg, rgba(166,205,231,.04) 0 1px, transparent 1px 18px);
}
.mt-grid-more:hover{
  transform:translateY(-3px);
  border-color:var(--gold);
  box-shadow:0 16px 36px -16px rgba(0,12,38,.7), 0 0 28px rgba(228,201,122,.28);
}
.mt-grid-more > *{position:relative;z-index:1}
.mt-grid-more-icon{
  width:54px;height:54px;border-radius:13px;display:flex;align-items:center;justify-content:center;
  background:linear-gradient(160deg, rgba(228,201,122,.32) 0%, rgba(201,162,75,.10) 100%);
  border:1px solid rgba(228,201,122,.5);
  color:#F2E2BC;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.18), 0 6px 18px -8px rgba(0,0,0,.5);
}
.mt-grid-more-icon svg{width:26px;height:26px}
.mt-grid-more-label{
  font-family:var(--font-display);font-weight:800;font-size:17px;letter-spacing:-.01em;color:#fff;
}
.mt-grid-more-sub{
  display:inline-flex;align-items:center;gap:7px;
  font-size:11.5px;font-weight:700;letter-spacing:.12em;text-transform:uppercase;
  color:var(--gold-300);
}
.mt-grid-more-sub svg{width:13px;height:13px}

/* ============================================================
   Full-gallery popup (113 photos)
   ============================================================ */
.mt-allpop{
  position:fixed;inset:0;z-index:95;background:rgba(0,12,38,.96);
  display:flex;flex-direction:column;opacity:0;visibility:hidden;
  transition:opacity .28s ease,visibility .28s ease;
}
.mt-allpop.open{opacity:1;visibility:visible}
.mt-allpop-head{
  display:flex;align-items:center;justify-content:space-between;gap:16px;
  padding:20px clamp(20px,3vw,40px);
  border-bottom:1px solid rgba(228,201,122,.25);
  background:linear-gradient(180deg, rgba(0,12,38,.92), rgba(0,18,38,.85));
  backdrop-filter:blur(10px);-webkit-backdrop-filter:blur(10px);
  color:#fff;
}
.mt-allpop-titles{display:flex;flex-direction:column;gap:4px;min-width:0}
.mt-allpop-eyebrow{font-family:var(--font-display);font-weight:700;font-size:11.5px;letter-spacing:.22em;text-transform:uppercase;color:var(--gold-300)}
.mt-allpop-title{font-family:var(--font-display);font-weight:800;font-size:clamp(18px,2vw,24px);letter-spacing:-.02em;color:#fff}
.mt-allpop-count{font-weight:400;color:rgba(255,255,255,.55);margin-left:6px}
.mt-allpop-close{
  width:44px;height:44px;border-radius:50%;display:flex;align-items:center;justify-content:center;
  background:rgba(255,255,255,.10);border:1px solid rgba(255,255,255,.2);color:#fff;cursor:pointer;
  transition:background .18s,transform .18s;
}
.mt-allpop-close:hover{background:rgba(255,255,255,.18);transform:rotate(90deg)}
.mt-allpop-close svg{width:20px;height:20px}

.mt-allpop-grid{
  flex:1;overflow-y:auto;
  padding:clamp(16px,2vw,28px);
  display:grid;grid-template-columns:repeat(auto-fill, minmax(180px, 1fr));
  gap:10px;align-content:start;outline:none;
  scrollbar-color:var(--gold) rgba(255,255,255,.08);
  scrollbar-width:thin;
}
.mt-allpop-grid::-webkit-scrollbar{width:10px}
.mt-allpop-grid::-webkit-scrollbar-track{background:rgba(255,255,255,.04)}
.mt-allpop-grid::-webkit-scrollbar-thumb{background:rgba(228,201,122,.5);border-radius:10px}

.mt-allpop-tile{
  aspect-ratio:3/2;border-radius:10px;overflow:hidden;cursor:pointer;
  border:1px solid rgba(255,255,255,.06);padding:0;background:rgba(255,255,255,.02);
  transition:transform .18s ease,border-color .18s ease,box-shadow .18s ease;
}
.mt-allpop-tile:hover{transform:translateY(-2px);border-color:var(--gold);box-shadow:0 12px 28px -14px rgba(0,0,0,.7), 0 0 18px rgba(228,201,122,.25)}
.mt-allpop-tile img{width:100%;height:100%;object-fit:cover;display:block;transition:transform .35s ease}
.mt-allpop-tile:hover img{transform:scale(1.04)}

@media(max-width:600px){
  .mt-allpop-grid{grid-template-columns:repeat(auto-fill, minmax(130px, 1fr));gap:6px}
}

/* Lightbox */
.mt-lb{position:fixed;inset:0;z-index:95;background:rgba(0,12,33,.9);display:flex;align-items:center;justify-content:center;padding:32px;opacity:0;visibility:hidden;transition:opacity .25s,visibility .25s}
.mt-lb.open{opacity:1;visibility:visible}
.mt-lb img{max-width:92%;max-height:88%;border-radius:10px;box-shadow:0 30px 80px -20px rgba(0,0,0,.7)}
.mt-lb .x{position:absolute;top:22px;right:24px;width:46px;height:46px;border-radius:50%;background:rgba(255,255,255,.12);color:#fff;display:flex;align-items:center;justify-content:center;border:1px solid rgba(255,255,255,.25)}
.mt-lb .x svg{width:22px;height:22px}
.mt-lb .nav{position:absolute;top:50%;transform:translateY(-50%);width:52px;height:52px;border-radius:50%;background:rgba(255,255,255,.12);color:#fff;display:flex;align-items:center;justify-content:center;border:1px solid rgba(255,255,255,.25)}
.mt-lb .nav.prev{left:24px}.mt-lb .nav.next{right:24px}
.mt-lb .nav svg{width:24px;height:24px}

/* responsive */
@media(max-width:1080px){
  .mt-spk-grid{grid-template-columns:repeat(3,1fr)}
  .mt-sponsor-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
}
@media(max-width:860px){
  .mt-about-wrap{grid-template-columns:1fr;gap:36px}
  .mt-venue-wrap{grid-template-columns:1fr}
  .mt-grid{grid-template-columns:repeat(3,1fr)}
}
@media(max-width:760px){
  .mt-grid{grid-template-columns:repeat(2,1fr)}
  .mt-grid > *:first-child{grid-column:span 2;grid-row:span 2}
}
@media(max-width:480px){
  .mt-grid{grid-template-columns:repeat(2,1fr)}
  .mt-grid > *:first-child{grid-column:span 2;grid-row:span 1}
}
@media(max-width:600px){
  .mt-spk-grid{grid-template-columns:repeat(2,1fr)}
  .mt-sponsor-grid{grid-template-columns:repeat(2,1fr)}
  .mt-ag{grid-template-columns:1fr;gap:6px}
  .mt-modal-card{grid-template-columns:1fr;max-width:none}
  .mt-modal{align-items:flex-end;padding:0}
  .mt-modal-card{border-radius:22px 22px 0 0;max-height:90vh;transform:translateY(100%)}
  .mt-modal.open .mt-modal-card{transform:none}
}

/* ============================================================
   3D ICONS · NO background plate. Pure SVG depth + soft bloom.
   ============================================================ */

.stage-icon,
.aud-icon,
.award-icon,
.sponsor-tile-icon,
.value-icon,
.mt-why-ic{
  background:transparent !important;
  border:0 !important;
  box-shadow:none !important;
}
.stage-icon::after,
.aud-icon::after,
.award-icon::after,
.sponsor-tile-icon::after,
.value-icon::after,
.mt-why-ic::after{ content:none !important; }

.stage-icon svg,
.aud-icon svg,
.award-icon svg,
.sponsor-tile-icon svg,
.value-icon svg,
.mt-why-ic svg{
  color:var(--gold) !important;
  stroke-width:1.5 !important;
  filter:
    drop-shadow(0 1px 0 rgba(255,255,255,.35))
    drop-shadow(0 2px 3px rgba(0,18,38,.55))
    drop-shadow(0 0 8px rgba(228,201,122,.55))
    drop-shadow(0 0 16px rgba(228,201,122,.25));
}

.awards .award-icon svg{
  color:var(--gold-300) !important;
  filter:
    drop-shadow(0 1px 0 rgba(255,255,255,.25))
    drop-shadow(0 2px 3px rgba(0,0,0,.65))
    drop-shadow(0 0 10px rgba(228,201,122,.7))
    drop-shadow(0 0 22px rgba(228,201,122,.4));
}

.pillar-dot{
  background:linear-gradient(160deg,#F2E2BC 0%,#E4C97A 40%,#C9A24B 80%,#A37E2E 100%) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.7),
    inset 0 -2px 3px rgba(0,0,0,.25),
    0 6px 14px -6px rgba(0,32,83,.55),
    0 0 18px rgba(201,162,75,.35) !important;
  color:#001D4F !important;
}

.pill .arrow,
.btn svg,
.mt-spk-arrow svg,
.prev-link svg,
.ev-link svg{
  filter:drop-shadow(0 1px 1px rgba(0,18,38,.5));
}
.pill-primary .arrow{
  filter:drop-shadow(0 1px 1px rgba(0,18,38,.55)) drop-shadow(0 0 4px rgba(228,201,122,.5));
}

.footer-contact svg,
.footer-socials svg,
.ev-loc svg,
.prev-loc svg,
.hero-meta svg,
.stat-icon{
  filter:drop-shadow(0 1px 1px rgba(0,18,38,.45)) drop-shadow(0 0 4px rgba(228,201,122,.3));
}
.footer-socials a{
  box-shadow:inset 0 1px 0 rgba(255,255,255,.12), 0 6px 12px -6px rgba(0,0,0,.5);
}
.footer-socials a:hover{
  box-shadow:inset 0 1px 0 rgba(255,255,255,.18), 0 8px 16px -6px rgba(0,0,0,.55), 0 0 16px rgba(228,201,122,.4);
}
.ev-status,
.prev-status,
.mt-status,
.mt-badge,
.tl-highlight,
.intro-tag,
.partners-eyebrow{
  filter:drop-shadow(0 1px 2px rgba(0,18,38,.18));
}

/* Nav mail link inherits topbar colour state */
.topbar:not(.past-banner) .nav-mail{color:rgba(0,32,83,.78)}
.topbar:not(.past-banner) .nav-mail:hover{color:#0A346F}

/* Nav social icons + header mini-cart button were both built assuming
   .topbar is always the dark navy background (see each file's own
   docblock comment), so their icon colour/border were hardcoded to a
   near-white rgba(255,255,255,...) that reads fine once scrolled/on a
   dark-hero page but disappears against the light .topbar:not(.past-banner)
   state (e.g. an ended event's single-event.php, unscrolled) — same fix
   pattern as .nav-mail just above. */
.topbar:not(.past-banner) .nav-social a{color:rgba(0,32,83,.78);border-color:rgba(0,32,83,.18)}
.topbar:not(.past-banner) .nav-social a:hover{background:rgba(0,32,83,.08);border-color:rgba(0,32,83,.35);color:#0A346F}
.topbar:not(.past-banner) .nav-cart-btn{color:rgba(0,32,83,.78);border-color:rgba(0,32,83,.18)}
.topbar:not(.past-banner) .nav-cart-btn:hover{background:rgba(0,32,83,.08);border-color:rgba(0,32,83,.35);color:#0A346F}
