
:root{
  --ink:#0b1b2b; --muted:#5a6b7c; --card:#fff; --soft:#f4f7fb;
  --accent:#ff9b2f; --accent2:#24c38a; --accent3:#3aa7ff;
  --shadow:0 10px 30px rgba(0,0,0,.12); --radius:18px; --max:1120px;
}
*{box-sizing:border-box}
html, body { overflow-x:hidden; }
body{margin:0;font-family:system-ui,-apple-system,"Segoe UI",Roboto,"Noto Sans JP","Hiragino Kaku Gothic ProN","Meiryo",sans-serif;color:var(--ink);
  background:linear-gradient(180deg,#f8fbff 0%, #ffffff 60%);}
a{color:inherit}
.container{max-width:var(--max);margin:0 auto;padding:0 18px}

/* Header */
header{position:sticky;top:0;z-index:50;background:rgba(255,255,255,.86);backdrop-filter:blur(10px);
  border-bottom:1px solid rgba(0,0,0,.06);}
.nav{display:flex;align-items:center;justify-content:space-between;gap:14px;padding:10px 0}
.brand{display:flex;align-items:center;gap:10px;font-weight:900;letter-spacing:.02em}
.brand img{height:34px;width:auto;display:block}
.dot{width:12px;height:12px;border-radius:999px;background:linear-gradient(135deg,var(--accent),var(--accent3));
  box-shadow:0 6px 16px rgba(58,167,255,.25)}
nav ul{list-style:none;display:flex;gap:10px;margin:0;padding:0;align-items:center;flex-wrap:nowrap}
nav a{text-decoration:none;color:var(--muted);font-weight:800;font-size:14px;padding:8px 10px;border-radius:999px;white-space:nowrap}
nav a:hover{background:rgba(58,167,255,.10);color:var(--ink)}

/* Buttons */
.btn{display:inline-flex;align-items:center;justify-content:center;gap:10px;padding:12px 16px;border-radius:999px;font-weight:900;
  text-decoration:none;border:1px solid rgba(0,0,0,.10);box-shadow:0 10px 20px rgba(0,0,0,.06);background:#fff;white-space:nowrap}
.btn.primary{background:linear-gradient(135deg,var(--accent),#ffcc66);border:none}
.btn.primary:hover{filter:saturate(1.05) brightness(1.02)}
.btn.ghost{background:rgba(255,255,255,.6)}

/* Sections */
section{padding:54px 0}
.section-head{display:flex;align-items:flex-end;justify-content:space-between;gap:18px;margin-bottom:18px}
.section-head h2{margin:0;font-size:clamp(22px,2.2vw,32px)}
.section-head p{margin:0;color:var(--muted);max-width:70ch}
hr.soft{border:none;border-top:1px solid rgba(0,0,0,.07);margin:0}

/* Cards / grids */
.grid3{display:grid;grid-template-columns:repeat(3,1fr);gap:16px}
.grid2{display:grid;grid-template-columns:repeat(2,1fr);gap:16px}
.card{background:var(--card);border-radius:var(--radius);box-shadow:var(--shadow);border:1px solid rgba(0,0,0,.06);overflow:hidden}
.card .pad{padding:16px}
.card h3{margin:0 0 8px;font-size:18px}
.card p{margin:0;color:var(--muted);line-height:1.65}
.tag{display:inline-flex;gap:8px;align-items:center;padding:6px 10px;border-radius:999px;
  background:rgba(36,195,138,.12);border:1px solid rgba(36,195,138,.20);font-weight:900;font-size:12px;color:#0d5b44}
.card-link{display:block;text-decoration:none}
.card-link:focus-visible{outline:3px solid rgba(58,167,255,.55);outline-offset:4px;border-radius:var(--radius)}
.img-cover{width:100%;height:190px;object-fit:cover;display:block}

/* HERO: Full-width (no container padding) + no top/bottom crop */
.hero{
  width:100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background:#e8eef6; /* side letterbox only */
}
.hero img{
  width:100%;
  height:min(78vh, 780px); /* up to ~1.5x */
  min-height:380px;
  object-fit:contain; /* no cropping */
  object-position:center;
  display:block;
  background:#e8eef6;
}

/* Phrase */
.phrase-wrap{padding:18px 0 0}
.phrase{width:min(1100px,94vw);margin:0 auto;display:block}

/* News bar */
.news{
  display:flex;align-items:center;gap:12px;
  padding:14px 16px;border-radius:16px;
  background:linear-gradient(135deg, rgba(58,167,255,.10), rgba(36,195,138,.10));
  border:1px solid rgba(0,0,0,.06);
}
.badge{
  display:inline-flex;align-items:center;justify-content:center;
  padding:6px 10px;border-radius:999px;
  background:#0b1b2b;color:#fff;font-weight:900;font-size:12px;letter-spacing:.06em;
}
.news p{margin:0;color:var(--ink);font-weight:800}
.news small{color:var(--muted);font-weight:700}

/* Footer */
footer{background:#0b1220;color:#d7e3f3;padding:34px 0}
.small{color:rgba(215,227,243,.78);font-size:14px;line-height:1.7}
.foot{display:grid;grid-template-columns:1.2fr .8fr;gap:18px;align-items:start}

@media (max-width:980px){
  .grid3{grid-template-columns:1fr}
  .grid2{grid-template-columns:1fr}
  nav ul{flex-wrap:wrap}
  .hero img{height:min(70vh, 780px);min-height:420px}
  section{padding:46px 0}
  .brand img{height:30px}
}


/* Header brand: keep on one line */
.brand{white-space:nowrap;}
.brand span{white-space:nowrap;}
.brand{font-size:15px;}
@media (max-width:980px){.brand{font-size:14px;}}

/* Fallback: some themes add max-width or padding to images inside content */
.hero.alignfull img{ max-width:none !important; }

/* If your theme still leaves side gaps, enable this (kept commented by default)
.entry-content{ padding-left:0 !important; padding-right:0 !important; }
*/

/* ===== Responsive (mobile/tablet) ===== */
/* Tablet */
@media (max-width: 1024px){
  .container{ padding: 0 14px; }
  section{ padding: 44px 0; }
  .phrase-wrap{ padding: 12px 0 0; }
  .phrase{ width: min(1100px, 96vw); }
}

/* Mobile: make everything edge-to-edge for hero and reduce vertical whitespace */
@media (max-width: 600px){
  .container{ padding: 0 12px; }
  section{ padding: 36px 0; }
  .nav{ padding: 8px 0; }
  .brand img{ height: 28px; }
  .brand{ font-size: 14px; }
  /* nav is controlled by hamburger */
  .btn{ padding: 10px 12px; font-size: 13px; }
  .hero.alignfull{ background:#ffffff; }
  .hero.alignfull img{
    width: 100%;
    height: auto;
    max-height: none;      /* IMPORTANT: remove cap to avoid big blank area */
  }
  .phrase-wrap{ padding: 10px 0 0; }
  .phrase{ width: 100vw; margin-left: calc(50% - 50vw); margin-right: calc(50% - 50vw); }
}

/* ===== Hamburger menu ===== */
.burger{
  display:none;
  width:44px;height:44px;
  border-radius:12px;
  border:1px solid rgba(0,0,0,.10);
  background:#fff;
  box-shadow:0 10px 20px rgba(0,0,0,.06);
  align-items:center;justify-content:center;
}
.burger-lines{
  width:20px;height:2px;background:var(--ink);
  position:relative;display:block;border-radius:2px;
}
.burger-lines::before,.burger-lines::after{
  content:"";position:absolute;left:0;width:20px;height:2px;background:var(--ink);border-radius:2px;
}
.burger-lines::before{top:-7px}
.burger-lines::after{top:7px}

body.nav-open .burger-lines{background:transparent}
body.nav-open .burger-lines::before{top:0;transform:rotate(45deg)}
body.nav-open .burger-lines::after{top:0;transform:rotate(-45deg)}

/* Mobile nav dropdown */
@media (max-width: 600px){
  .burger{display:inline-flex;}
  .site-nav{display:none; position:absolute; left:0; right:0; top:100%;
    background:rgba(255,255,255,.96); backdrop-filter:blur(10px);
    border-bottom:1px solid rgba(0,0,0,.06);
    padding:10px 12px;
  }
  body.nav-open .site-nav{display:block;}
  .site-nav ul{
    display:flex !important;
    flex-direction:column;
    gap:6px;
    align-items:stretch;
    margin:0; padding:0;
  }
  .site-nav a{display:block; padding:12px 12px; border-radius:12px; font-size:14px;}
}

/* ===== Fun event vibe ===== */
.btn.small{
  padding:10px 12px;
  font-size:13px;
  box-shadow:none;
  background:rgba(255,255,255,.7);
}

/* Floating bubbles background behind sections */
.fun-bg{ position:relative; overflow:hidden; }
.fun-bg::before,
.fun-bg::after{
  content:"";
  position:absolute;
  inset:-40px;
  background:
    radial-gradient(circle at 10% 20%, rgba(58,167,255,.18) 0 14px, transparent 15px),
    radial-gradient(circle at 30% 60%, rgba(36,195,138,.16) 0 18px, transparent 19px),
    radial-gradient(circle at 70% 30%, rgba(255,155,47,.16) 0 16px, transparent 17px),
    radial-gradient(circle at 85% 70%, rgba(58,167,255,.14) 0 22px, transparent 23px),
    radial-gradient(circle at 55% 85%, rgba(36,195,138,.12) 0 20px, transparent 21px);
  animation: drift 18s linear infinite;
  pointer-events:none;
  opacity:.9;
}
.fun-bg::after{ animation-duration:26s; opacity:.55; }
@keyframes drift{
  0%{ transform: translate3d(0,0,0) scale(1); }
  50%{ transform: translate3d(30px,-20px,0) scale(1.02); }
  100%{ transform: translate3d(0,0,0) scale(1); }
}

/* Cards pop a bit */
.card{ transform: translateZ(0); transition: transform .25s ease, box-shadow .25s ease; }
.card:hover{ transform: translateY(-4px); box-shadow:0 14px 40px rgba(0,0,0,.14); }

/* Gentle entrance animation (JS adds .inview) */
.reveal{ opacity:0; transform: translateY(14px); transition: opacity .7s ease, transform .7s ease; }
.reveal.inview{ opacity:1; transform: translateY(0); }

/* Wavy divider */
.wave-divider{
  width:100%;
  height:28px;
  background:
    radial-gradient(closest-side at 12px 14px, rgba(58,167,255,.20) 98%, transparent 100%) 0 0/24px 28px repeat-x;
  opacity:.7;
}

/* ===== Header color theme ===== */
header{
  background: linear-gradient(90deg, rgba(58,167,255,.22), rgba(36,195,138,.18), rgba(255,155,47,.18));
  backdrop-filter: blur(10px);
}
nav a{ color: rgba(11,27,43,.86); }
nav a:hover{ background: rgba(255,255,255,.55); }
.btn.primary{ box-shadow: 0 12px 26px rgba(255,155,47,.25); }

/* === Force white hero background fix === */
body{
  background:#ffffff;
}

.wp-site-blocks,
main,
.hero,
.hero.alignfull{
  background:#ffffff !important;
}

.hero.alignfull img{
  display:block;
  width:100%;
  height:auto;
  margin:0 auto;
}

/* ===== PRO LP polish ===== */

/* Hero: full-bleed, image full width (no side gaps) */
.hero.alignfull{
  background:#ffffff !important;
}
.hero.alignfull img{
  max-width:none !important;   /* allow true full width */
}

/* Water theme subtle animated ripples behind content */
.water-theme{
  position:relative;
}
.water-theme::before{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  background:
    radial-gradient(circle at 20% 15%, rgba(58,167,255,.08), transparent 35%),
    radial-gradient(circle at 80% 30%, rgba(36,195,138,.06), transparent 38%),
    radial-gradient(circle at 55% 85%, rgba(58,167,255,.05), transparent 42%);
  opacity:.9;
  z-index:-1;
}
.ripples{
  position:absolute;
  inset:-60px -40px;
  pointer-events:none;
  background:
    radial-gradient(circle at 10% 30%, rgba(58,167,255,.12) 0 2px, transparent 3px),
    radial-gradient(circle at 60% 55%, rgba(36,195,138,.10) 0 2px, transparent 3px),
    radial-gradient(circle at 85% 20%, rgba(255,155,47,.10) 0 2px, transparent 3px);
  filter: blur(.2px);
  opacity:.75;
  animation: rippleMove 22s ease-in-out infinite;
}
@keyframes rippleMove{
  0%{ transform: translate3d(0,0,0) rotate(0deg); }
  50%{ transform: translate3d(18px,-10px,0) rotate(1deg); }
  100%{ transform: translate3d(0,0,0) rotate(0deg); }
}

/* CTA strip */
.cta-strip{
  padding:26px 0 0;
}
.cta-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:18px 18px;
  border-radius:22px;
  border:1px solid rgba(0,0,0,.06);
  background: linear-gradient(135deg, rgba(58,167,255,.10), rgba(36,195,138,.08), rgba(255,155,47,.08));
  box-shadow: 0 14px 40px rgba(0,0,0,.10);
}
.cta-text h2{ margin:0; font-size:clamp(18px,2.2vw,26px); }
.cta-text p{ margin:6px 0 0; color:rgba(11,27,43,.75); font-weight:700; }
.cta-actions{ display:flex; gap:10px; flex-wrap:wrap; justify-content:flex-end; }

/* Pulse animation for main CTA */
.cta-pulse{
  position:relative;
}
.cta-pulse::after{
  content:"";
  position:absolute;
  inset:-6px;
  border-radius:999px;
  border:2px solid rgba(255,155,47,.35);
  opacity:0;
  animation:pulse 2.2s ease-out infinite;
}
@keyframes pulse{
  0%{ transform:scale(.95); opacity:.0; }
  15%{ opacity:.9; }
  100%{ transform:scale(1.15); opacity:0; }
}

/* Section headings add playful underline */
.section-head h2{
  position:relative;
  display:inline-block;
}
.section-head h2::after{
  content:"";
  display:block;
  height:10px;
  margin-top:-8px;
  border-radius:999px;
  background: linear-gradient(90deg, rgba(255,155,47,.55), rgba(58,167,255,.55), rgba(36,195,138,.55));
  opacity:.55;
}

/* Improve footer readability */
footer{ margin-top:20px; }

@media (max-width: 980px){
  .cta-inner{ flex-direction:column; align-items:flex-start; }
  .cta-actions{ width:100%; justify-content:flex-start; }
}
@media (max-width: 600px){
  .cta-strip{ padding:18px 0 0; }
  .cta-inner{ padding:16px 14px; border-radius:18px; }
}

.section-head p{ color: rgba(11,27,43,.72); font-weight:700; }

/* Apply cards */
.apply-grid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap:14px;
}
.apply-card{
  display:block;
  padding:16px 16px;
  border-radius:22px;
  border:1px solid rgba(0,0,0,.08);
  background:rgba(255,255,255,.85);
  box-shadow:0 12px 30px rgba(0,0,0,.10);
  text-decoration:none;
  color:var(--ink);
  position:relative;
  overflow:hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}
.apply-card:hover{ transform: translateY(-4px); box-shadow:0 16px 44px rgba(0,0,0,.14); }
.apply-card--primary{
  border:2px solid rgba(255,155,47,.35);
  background: linear-gradient(135deg, rgba(255,155,47,.14), rgba(58,167,255,.10), rgba(36,195,138,.08));
}
.apply-tag{
  display:inline-block;
  font-weight:900;
  font-size:12px;
  padding:6px 10px;
  border-radius:999px;
  background:rgba(11,27,43,.08);
}
.apply-card--primary .apply-tag{
  background:rgba(255,155,47,.22);
}
.apply-title{
  margin-top:10px;
  font-size:18px;
  font-weight:900;
}
.apply-desc{
  margin-top:6px;
  color:rgba(11,27,43,.72);
  font-weight:800;
  line-height:1.5;
}
.apply-cta{
  margin-top:12px;
  font-weight:900;
  color:rgba(11,27,43,.86);
}
@media (max-width: 800px){
  .apply-grid{ grid-template-columns: 1fr; }
}


/* Guideline section layout fix */
.guideline-section{
  padding:32px 0;
}

.guideline-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}

.guideline-text h2{
  margin-bottom:6px;
}

.guideline-text p{
  max-width:560px;
  line-height:1.7;
  font-weight:700;
  color:rgba(11,27,43,.75);
}

.guideline-action{
  flex-shrink:0;
}

@media (max-width: 800px){
  .guideline-inner{
    flex-direction:column;
    align-items:flex-start;
  }
}

/* Card image hover zoom (fun, subtle) */
.card img.img-cover{
  transition: transform .35s ease;
}
.card:hover img.img-cover{
  transform: scale(1.06);
}

/* Bigger labels for apply cards */
.apply-tag{
  font-size:13px;
  padding:7px 12px;
}

/* ===== Event info bar ===== */
.event-bar{
  padding:18px 0 6px;
}
.event-bar-inner{
  display:grid;
  grid-template-columns: 1.1fr 2.2fr 1.7fr;
  gap:12px;
  padding:14px 14px;
  border-radius:22px;
  border:1px solid rgba(0,0,0,.06);
  background: linear-gradient(135deg, rgba(58,167,255,.10), rgba(36,195,138,.08), rgba(255,155,47,.08));
  box-shadow: 0 14px 40px rgba(0,0,0,.10);
}
.event-item{
  padding:10px 10px;
  border-radius:18px;
  background:rgba(255,255,255,.70);
}
.event-k{
  font-weight:900;
  font-size:12px;
  letter-spacing:.06em;
  color:rgba(11,27,43,.70);
}
.event-v{
  margin-top:6px;
  font-weight:900;
  font-size:14px;
  line-height:1.55;
  color:rgba(11,27,43,.88);
}
.event-sub{
  display:block;
  margin-top:6px;
  font-weight:800;
  font-size:12px;
  color:rgba(11,27,43,.68);
}
@media (max-width: 980px){
  .event-bar-inner{ grid-template-columns: 1fr; }
  .event-item{ padding:12px 12px; }
  .event-v{ font-size:14px; }
}

/* stronger event bar visual */
.event-bar-inner{
  background: linear-gradient(135deg,#2aa7ff,#34d399,#ff9b2f);
  padding:18px 20px;
  border-radius:26px;
  box-shadow:0 18px 50px rgba(0,0,0,.18);
}

.event-item{
  background:rgba(255,255,255,.92);
  border-radius:16px;
  padding:14px 16px;
}

.event-k{
  font-size:13px;
  font-weight:900;
  color:#0b1b2b;
}

.event-v{
  font-size:16px;
  font-weight:900;
  color:#0b1b2b;
}

.event-sub{
  font-size:13px;
  color:#334155;
}

@media (max-width:980px){
  .event-v{
    font-size:15px;
  }
}


/* ===== Sponsor page cards ===== */

.pill-item{
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  text-align:center;
  min-height:80px;
  padding:14px;
  font-size:16px;
  font-weight:700;
}

.pill-item img{
  height:44px;
  width:auto;
  max-width:100%;
  object-fit:contain;
  display:block;
  margin:0 auto 6px;
}

.pill-item span{
  display:block;
}

.special-supporter .pill-item{
  background:linear-gradient(135deg,#fff7e6,#ffe3b3);
  border:1px solid #ffc76b;
  box-shadow:0 8px 20px rgba(255,155,47,.25);
  font-size:18px;
  font-weight:800;
  min-height:95px;
  position:relative;
  overflow:hidden;
}

.special-supporter .pill-item::after{
  content:"";
  position:absolute;
  top:0;
  left:-60%;
  width:40%;
  height:100%;
  background:linear-gradient(120deg, transparent, rgba(255,255,255,.6), transparent);
  animation:sponsorShine 5s infinite;
}

@keyframes sponsorShine{
  0%{left:-60%;}
  100%{left:120%;}
}

@media (max-width:600px){
  .pill-item{
    font-size:14px;
    min-height:70px;
  }

  .special-supporter .pill-item{
    font-size:16px;
    min-height:85px;
  }
}


/* Header brand clickable */
.brand{
  text-decoration:none;
  color:inherit;
}

/* Sponsor grid slight premium feel */
.sponsor-grid .pill-item{
  background:linear-gradient(180deg,#ffffff 0%, #fbfdff 100%);
  border:1px solid rgba(58,167,255,.18);
  box-shadow:0 8px 18px rgba(58,167,255,.08);
}
.sponsor-grid .pill-item:hover{
  transform:translateY(-2px);
  box-shadow:0 12px 24px rgba(58,167,255,.12);
}

/* Link cards on partners page */
.link-list{
  background:linear-gradient(180deg,#ffffff 0%, #fbfdff 100%);
  border:1px solid rgba(58,167,255,.16);
}


/* clickable brand */
.brand{
  text-decoration:none;
  color:inherit;
}

/* sponsor companies: subtle premium framing */
.sponsor-grid .pill-item{
  background:linear-gradient(180deg,#ffffff 0%, #fbfdff 100%);
  border:1px solid rgba(58,167,255,.18);
  box-shadow:0 8px 18px rgba(58,167,255,.08);
}
.sponsor-grid .pill-item:hover{
  transform:translateY(-2px);
  box-shadow:0 12px 24px rgba(58,167,255,.12);
}


/* Safe mobile polish */
@media (max-width: 600px){
  .hero img{
    min-height: 0 !important;
    height: auto !important;
    max-height: 58vh;
    object-fit: contain;
  }
  .phrase{
    width:min(100vw, 1600px);
  }
  .section-head h2{
    font-size: clamp(20px, 6vw, 28px);
  }
  .news{
    padding: 12px 14px;
  }
}

.brand{ text-decoration:none; color:inherit; }


/* Mobile heading / wrapping fixes */
.section-head h2,
.card h3,
.apply-title,
.guideline-text h2{
  word-break: keep-all;
  overflow-wrap: normal;
  line-break: strict;
}

@media (max-width: 600px){
  .section-head{
    display:block;
  }
  .section-head > div{
    width:100%;
  }
  .section-head h2{
    font-size: clamp(18px, 7vw, 30px);
    line-height: 1.35;
    white-space: normal;
  }
  .section-head p{
    margin-top: 8px;
    max-width: 100%;
  }
  .apply-grid{
    grid-template-columns: 1fr !important;
  }
  .apply-card{
    padding: 16px 14px;
  }
  .apply-title{
    font-size: 16px;
    line-height: 1.45;
  }
  .apply-desc{
    font-size: 14px;
    line-height: 1.7;
  }
  .guideline-inner{
    display:block;
  }
  .guideline-text h2{
    font-size: clamp(20px, 7vw, 28px);
    line-height: 1.35;
  }
}


/* LINE section */
.line-card{
  display:grid;
  grid-template-columns:1.5fr .9fr;
  gap:20px;
  align-items:center;
  background:linear-gradient(135deg, rgba(6,199,85,.10), rgba(58,167,255,.10));
  border:1px solid rgba(0,0,0,.06);
  border-radius:24px;
  padding:24px;
  box-shadow:var(--shadow);
}
.line-copy h2{margin:10px 0 12px;font-size:clamp(24px,2.5vw,36px)}
.line-copy p{margin:0;color:var(--muted);line-height:1.75}
.line-points{margin:16px 0 0;padding-left:1.2em;color:var(--ink);font-weight:800;line-height:1.8}
.line-note{font-size:13px;margin-top:14px !important}
.line-qr-wrap{display:flex;justify-content:center}
.line-qr{
  width:min(100%,260px);
  display:block;
  border-radius:18px;
  background:#fff;
  padding:12px;
  border:1px solid rgba(0,0,0,.08);
  box-shadow:0 12px 24px rgba(0,0,0,.10);
}
@media (max-width: 800px){
  .line-card{grid-template-columns:1fr;padding:20px}
  .line-copy h2{font-size:28px}
  .line-points{margin-top:12px}
}

/* ===== LINE CTA updates ===== */
.line-actions{margin-top:14px;display:flex;gap:12px;flex-wrap:wrap}
.line-btn{
  background:#06c755;
  color:#fff;
  border:none;
  box-shadow:0 12px 28px rgba(6,199,85,.24);
}
.line-btn:hover{filter:brightness(1.02) saturate(1.02)}
.line-note{margin-top:12px}
.line-qr{
  max-width:320px;
  width:100%;
  height:auto;
  display:block;
  border-radius:24px;
  box-shadow:0 14px 30px rgba(0,0,0,.10);
}

/* ===== mobile nav stability fix ===== */
header{z-index:120;}
.nav{position:relative;}
.burger{position:relative;z-index:130;cursor:pointer}
.site-nav{z-index:125;}
@media (max-width: 600px){
  .site-nav{box-shadow:0 18px 38px rgba(0,0,0,.14)}
  .site-nav a{position:relative;z-index:126}
}
