/* ============================================================
   WAKABA KINDERGARTEN — Light Editorial Redesign
   Concept: "Pale Leaf" — Cream base + Electric Lime + Forest
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,600&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,300&family=Noto+Sans+JP:wght@300;400;500;700&family=Noto+Serif+JP:wght@300;400;700&family=Space+Mono:ital,wght@0,400;0,700;1,400&display=swap');

/* ─────── Design Tokens ─────── */
:root {
  --bg:        #FAFAF6;
  --bg-2:      #F2EEE6;
  --bg-3:      #E8E3D8;
  --dark:      #141F12;
  --dark-2:    #1D2B1B;
  --lime:      #8EC41C;
  --lime-viv:  #BCEF2C;
  --gold:      #C8840C;
  --coral:     #DC5030;
  --text:      #1A1916;
  --text-dim:  rgba(26,25,22,0.58);
  --text-faint:rgba(26,25,22,0.28);
  --line:      rgba(26,25,22,0.1);
  --white:     #FFFFFF;

  --f-disp:    'Cormorant Garamond', 'Noto Serif JP', serif;
  --f-sans:    'DM Sans', 'Noto Sans JP', sans-serif;
  --f-jp:      'Noto Sans JP', sans-serif;
  --f-jp-ser:  'Noto Serif JP', serif;
  --f-mono:    'Space Mono', monospace;

  --nav-h:     72px;
  --px:        clamp(20px, 5vw, 80px);
  --sec:       clamp(80px, 10vw, 160px);

  --ease-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-io:   cubic-bezier(0.65, 0, 0.35, 1);
  --ease-spr:  cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ─────── Reset ─────── */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;font-size:16px;-webkit-font-smoothing:antialiased}
body{
  font-family:var(--f-jp);
  background:var(--bg);
  color:var(--text);
  line-height:1.8;
  overflow-x:hidden;
  cursor:none;
}
@media(hover:none){body{cursor:auto}}
img{display:block;max-width:100%;height:auto}
a{color:inherit;text-decoration:none}
button{border:none;background:none;cursor:none;font:inherit;color:inherit}
ul,ol{list-style:none}

/* ─────── Custom Cursor ─────── */
#cursor{
  position:fixed;top:0;left:0;
  pointer-events:none;z-index:9999;
}
#cursor-dot{
  position:fixed;
  width:6px;height:6px;
  background:var(--lime);
  border-radius:50%;
  transform:translate(-50%,-50%);
  transition:width .25s var(--ease-spr),height .25s var(--ease-spr),background .25s;
  will-change:left,top;
}
#cursor-ring{
  position:fixed;
  width:36px;height:36px;
  border:1.5px solid var(--lime);
  border-radius:50%;
  opacity:.5;
  transform:translate(-50%,-50%);
  transition:width .4s var(--ease-expo),height .4s var(--ease-expo),opacity .3s,border-color .3s;
  will-change:left,top;
}
body.is-hovering #cursor-dot{width:48px;height:48px;background:var(--lime);opacity:.15}
body.is-hovering #cursor-ring{opacity:0}

/* ─────── Preloader ─────── */
#preloader{
  position:fixed;inset:0;
  z-index:10000;
  background:var(--bg);
  display:flex;flex-direction:column;
  align-items:center;justify-content:center;gap:40px;
  transition:opacity .9s var(--ease-expo),visibility .9s;
}
#preloader.hidden{opacity:0;visibility:hidden;pointer-events:none}
.pre-logo{
  font-family:var(--f-disp);
  font-size:clamp(2.5rem,6vw,5rem);
  font-weight:300;
  color:var(--text);
  letter-spacing:.06em;
  display:flex;gap:.04em;overflow:hidden;
}
.pre-logo .ch{
  display:inline-block;
  transform:translateY(110%);
  opacity:0;
  animation:charUp .8s var(--ease-expo) forwards;
}
.pre-logo .ch:nth-child(1){animation-delay:.05s}
.pre-logo .ch:nth-child(2){animation-delay:.11s}
.pre-logo .ch:nth-child(3){animation-delay:.17s}
.pre-logo .ch:nth-child(4){animation-delay:.23s}
.pre-logo .ch:nth-child(5){animation-delay:.29s}
.pre-logo .ch:nth-child(6){animation-delay:.35s}
.pre-logo .ch:nth-child(7){animation-delay:.41s}
.pre-logo .ch:nth-child(8){animation-delay:.47s}
.pre-bar{
  width:180px;height:1px;
  background:var(--line);
  position:relative;overflow:hidden;
}
.pre-bar::after{
  content:'';
  position:absolute;top:0;left:0;
  width:0;height:100%;
  background:var(--lime);
  animation:barFill 2s var(--ease-expo) .2s forwards;
}
@keyframes charUp{to{transform:translateY(0);opacity:1}}
@keyframes barFill{to{width:100%}}

/* ─────── Scroll Progress ─────── */
#scroll-bar{
  position:fixed;top:0;left:0;
  height:2px;width:0%;
  background:var(--lime);
  z-index:9998;
  transition:width .08s linear;
}

/* ─────── Navigation ─────── */
.site-nav{
  position:fixed;top:0;left:0;right:0;
  height:var(--nav-h);
  z-index:1000;
  display:flex;align-items:center;
  padding:0 var(--px);
  justify-content:space-between;
  transition:background .5s,backdrop-filter .5s,box-shadow .5s;
}
.site-nav.solid{
  background:rgba(250,250,246,.92);
  backdrop-filter:blur(20px) saturate(180%);
  -webkit-backdrop-filter:blur(20px) saturate(180%);
  box-shadow:0 1px 0 var(--line);
}
.nav-logo{
  display:flex;flex-direction:column;gap:2px;
  z-index:1002;
}
.nav-logo__main{
  font-family:var(--f-jp-ser);
  font-size:clamp(.95rem,1.4vw,1.15rem);
  font-weight:700;
  color:rgba(255,255,255,0.92);
  letter-spacing:.1em;
  line-height:1;
  transition:color .3s;
}
.site-nav.solid .nav-logo__main { color:var(--text); }
.nav-logo__sub{
  font-family:var(--f-mono);
  font-size:.52rem;
  letter-spacing:.22em;
  color:var(--lime-viv);
  line-height:1;
}
.site-nav.solid .nav-logo__sub { color:var(--lime); }
.nav-links{
  display:flex;align-items:center;
  gap:clamp(16px,2.5vw,40px);
}
.nav-links a{
  font-family:var(--f-jp);
  font-size:.78rem;
  font-weight:500;
  letter-spacing:.07em;
  color:rgba(255,255,255,0.75);
  position:relative;
  padding-bottom:2px;
  transition:color .3s;
}
.site-nav.solid .nav-links a { color:var(--text-dim); }
.nav-links a::after{
  content:'';
  position:absolute;bottom:0;left:0;
  width:0;height:1px;
  background:var(--lime);
  transition:width .4s var(--ease-expo);
}
.nav-links a:hover{color:var(--text)}
.nav-links a:hover::after{width:100%}
.nav-cta{
  display:inline-flex;align-items:center;gap:8px;
  padding:9px 22px;
  background:var(--lime-viv);
  color:var(--dark) !important;
  border-radius:100px;
  font-size:.78rem !important;
  font-weight:700 !important;
  letter-spacing:.1em;
  transition:background .3s,transform .3s var(--ease-spr) !important;
}
.site-nav.solid .nav-cta { background:var(--lime); }
.nav-cta::after{display:none !important}
.nav-cta:hover{background:#d4f430;transform:scale(1.05)}

/* Hamburger */
.nav-burger{
  display:none;
  flex-direction:column;gap:5px;
  width:32px;height:32px;
  justify-content:center;
  z-index:1002;
}
.nav-burger span{
  display:block;height:1.5px;
  background:var(--text);border-radius:2px;
  transition:transform .4s var(--ease-expo),opacity .3s,width .4s var(--ease-expo);
}
.nav-burger span:nth-child(1){width:28px}
.nav-burger span:nth-child(2){width:18px}
.nav-burger span:nth-child(3){width:22px}
.nav-open .nav-burger span:nth-child(1){transform:translateY(6.5px) rotate(45deg);width:26px}
.nav-open .nav-burger span:nth-child(2){opacity:0}
.nav-open .nav-burger span:nth-child(3){transform:translateY(-6.5px) rotate(-45deg);width:26px}

/* Mobile Overlay */
.nav-overlay{
  position:fixed;inset:0;
  z-index:1001;
  background:var(--bg-2);
  display:flex;flex-direction:column;
  justify-content:center;
  padding:calc(var(--nav-h) + 20px) var(--px) 60px;
  clip-path:circle(0 at calc(100% - 52px) 36px);
  transition:clip-path .7s var(--ease-expo);
  pointer-events:none;
}
.nav-overlay.open{
  clip-path:circle(180% at calc(100% - 52px) 36px);
  pointer-events:all;
}
.nav-overlay a{
  font-family:var(--f-disp);
  font-size:clamp(2.2rem,7vw,5rem);
  font-weight:300;
  color:var(--text);
  line-height:1.1;
  padding:14px 0;
  border-bottom:1px solid var(--line);
  display:flex;align-items:center;gap:16px;
  transform:translateX(-30px);
  opacity:0;
  transition:transform .6s var(--ease-expo),opacity .6s,color .3s;
  letter-spacing:.02em;
}
.nav-overlay.open a{transform:none;opacity:1}
.nav-overlay.open a:nth-child(1){transition-delay:.04s}
.nav-overlay.open a:nth-child(2){transition-delay:.09s}
.nav-overlay.open a:nth-child(3){transition-delay:.14s}
.nav-overlay.open a:nth-child(4){transition-delay:.19s}
.nav-overlay.open a:nth-child(5){transition-delay:.24s}
.nav-overlay.open a:nth-child(6){transition-delay:.29s}
.nav-overlay.open a:nth-child(7){transition-delay:.34s}
.nav-overlay a:hover{color:var(--lime)}
.nav-num{
  font-family:var(--f-mono);
  font-size:.6rem;
  letter-spacing:.2em;
  color:var(--text-faint);
  font-weight:400;
}
.nav-overlay__info{
  margin-top:40px;
  font-family:var(--f-mono);
  font-size:.65rem;
  letter-spacing:.15em;
  color:var(--text-faint);
  line-height:2;
}

/* ─────── Common Reveal ─────── */
.reveal{
  opacity:0;
  transform:translateY(44px);
  transition:opacity .9s var(--ease-expo),transform .9s var(--ease-expo);
}
.reveal.in{opacity:1;transform:none}
.d1{transition-delay:.08s} .d2{transition-delay:.16s}
.d3{transition-delay:.24s} .d4{transition-delay:.32s}
.d5{transition-delay:.40s} .d6{transition-delay:.48s}

.reveal-x{
  opacity:0;
  clip-path:inset(0 100% 0 0);
  transition:opacity 1s var(--ease-expo),clip-path 1s var(--ease-expo);
}
.reveal-x.in{opacity:1;clip-path:inset(0 0% 0 0)}

/* ─────── Section Base ─────── */
.sec{padding:var(--sec) var(--px)}
.sec--bg2{background:var(--bg-2)}
.sec--bg3{background:var(--bg-3)}

.eyebrow{
  display:flex;align-items:center;gap:12px;
  font-family:var(--f-mono);
  font-size:.65rem;
  letter-spacing:.28em;
  text-transform:uppercase;
  color:var(--lime);
  margin-bottom:20px;
}
.eyebrow::before{
  content:'';
  width:32px;height:1px;
  background:var(--lime);
  flex-shrink:0;
}

.disp-heading{
  font-family:var(--f-disp);
  font-size:clamp(2.8rem,6vw,7rem);
  font-weight:300;
  line-height:1.05;
  letter-spacing:-.03em;
  color:var(--text);
}
.disp-heading em{font-style:italic;color:var(--lime)}

.ja-heading{
  font-family:var(--f-jp-ser);
  font-size:clamp(1.6rem,3vw,3rem);
  font-weight:300;
  line-height:1.4;
  color:var(--text);
}

.body-text{
  font-size:clamp(.88rem,1.1vw,1rem);
  line-height:2.1;
  color:var(--text-dim);
  max-width:58ch;
}

/* ─────── Hero ─────── */
.hero{
  position:relative;
  height:100svh;min-height:620px;
  overflow:hidden;
  display:flex;align-items:flex-end;
  padding-bottom:clamp(60px,8vw,120px);
  padding-left:var(--px);
  padding-right:var(--px);
}
.hero-bg{
  position:absolute;inset:0;z-index:0;
}
.hero-bg img{
  width:100%;height:100%;
  object-fit:cover;
  transform:scale(1.06);
  transition:transform 10s ease-out;
  filter:brightness(.35) saturate(1.2);
}
.hero-overlay{
  position:absolute;inset:0;
  background:linear-gradient(to bottom,
    rgba(15,25,17,.3) 0%,
    rgba(15,25,17,.15) 50%,
    rgba(15,25,17,.85) 100%
  );
}
.hero-content{
  position:relative;z-index:1;
  width:100%;
  display:grid;
  grid-template-columns:1fr auto;
  align-items:flex-end;
  gap:40px;
}
.hero-label{
  font-family:var(--f-mono);
  font-size:.62rem;
  letter-spacing:.3em;
  color:var(--lime);
  text-transform:uppercase;
  margin-bottom:20px;
  display:flex;align-items:center;gap:10px;
  opacity:0;
  animation:fadeIn .8s var(--ease-expo) 2.2s forwards;
}
.hero-label::before{content:'';width:24px;height:1px;background:var(--lime)}
.hero-title{
  font-family:var(--f-disp);
  font-size:clamp(5rem,13vw,14rem);
  font-weight:300;
  line-height:.92;
  letter-spacing:-.04em;
  color:var(--text);
  display:flex;flex-direction:column;
}
.hero-title .line{overflow:hidden}
.hero-title .line span{
  display:block;
  transform:translateY(110%);
  will-change:transform;
}
.hero-title .line:nth-child(1) span{animation:lineUp .9s var(--ease-expo) 1.8s forwards}
.hero-title .line:nth-child(2) span{animation:lineUp .9s var(--ease-expo) 1.95s forwards}
.hero-sub{
  font-family:var(--f-jp-ser);
  font-size:clamp(1rem,2vw,1.9rem);
  font-weight:300;
  letter-spacing:.18em;
  color:rgba(237,233,223,.65);
  margin-top:16px;
  overflow:hidden;
}
.hero-sub span{
  display:block;
  transform:translateY(100%);
  animation:lineUp .8s var(--ease-expo) 2.1s forwards;
}
.hero-right{
  display:flex;flex-direction:column;
  align-items:flex-end;gap:24px;
  padding-bottom:8px;
  opacity:0;
  animation:fadeIn .8s var(--ease-expo) 2.4s forwards;
}
.hero-desc{
  font-family:var(--f-jp);
  font-size:.8rem;
  line-height:2;
  color:rgba(237,233,223,.55);
  max-width:230px;
  text-align:right;
}
.hero-btn{
  display:inline-flex;align-items:center;gap:10px;
  padding:13px 28px;
  background:var(--lime-viv);
  color:var(--dark);
  border-radius:100px;
  font-family:var(--f-jp);
  font-size:.82rem;
  font-weight:700;
  letter-spacing:.08em;
  transition:background .3s,transform .3s var(--ease-spr),gap .3s;
}
.hero-btn:hover{background:#d4f430;transform:scale(1.06);gap:16px}
.hero-btn .arr{font-size:1.1em}

.hero-scroll{
  position:absolute;
  bottom:36px;left:50%;
  transform:translateX(-50%);
  z-index:1;
  display:flex;flex-direction:column;
  align-items:center;gap:8px;
  font-family:var(--f-mono);
  font-size:.55rem;
  letter-spacing:.22em;
  color:rgba(237,233,223,.35);
  text-transform:uppercase;
  opacity:0;
  animation:fadeIn .8s var(--ease-expo) 2.6s forwards;
}
.hero-scroll-line{
  width:1px;height:44px;
  background:rgba(237,233,223,.2);
  overflow:hidden;position:relative;
}
.hero-scroll-line::after{
  content:'';
  position:absolute;top:-100%;left:0;
  width:100%;height:100%;
  background:var(--lime);
  animation:scrollDown 2s var(--ease-io) infinite;
}

@keyframes lineUp{to{transform:translateY(0)}}
@keyframes fadeIn{to{opacity:1}}
@keyframes scrollDown{to{top:200%}}

/* ─────── Marquee ─────── */
.marquee-wrap{
  background:var(--lime);
  overflow:hidden;
  padding:14px 0;
}
.marquee-track{
  display:flex;gap:0;
  animation:marquee 20s linear infinite;
  white-space:nowrap;
}
.marquee-track:hover{animation-play-state:paused}
.marquee-item{
  display:flex;align-items:center;gap:16px;
  padding:0 32px;
  font-family:var(--f-mono);
  font-size:.68rem;
  letter-spacing:.2em;
  text-transform:uppercase;
  color:var(--bg);
  flex-shrink:0;
}
.marquee-sep{color:var(--bg-2);font-size:1.2em}
@keyframes marquee{from{transform:translateX(0)}to{transform:translateX(-50%)}}

/* ─────── About Strip ─────── */
.about-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  min-height:680px;
}
.about-left{
  background:var(--bg-2);
  padding:var(--sec) var(--px);
  display:flex;flex-direction:column;
  justify-content:space-between;
  position:relative;overflow:hidden;
}
.about-year{
  font-family:var(--f-disp);
  font-size:clamp(8rem,16vw,18rem);
  font-weight:300;
  color:rgba(196,240,66,.07);
  line-height:1;
  position:absolute;
  bottom:-30px;left:-10px;
  letter-spacing:-.05em;
  user-select:none;
  pointer-events:none;
}
.about-content{position:relative;z-index:1}
.about-tag{
  display:inline-block;
  padding:6px 14px;
  border:1px solid var(--lime);
  border-radius:100px;
  font-family:var(--f-mono);
  font-size:.6rem;
  letter-spacing:.2em;
  color:var(--lime);
  text-transform:uppercase;
  margin-bottom:32px;
}
.about-right{
  position:relative;overflow:hidden;
}
.about-right img{
  width:100%;height:100%;
  object-fit:cover;
  transition:transform .8s var(--ease-expo);
  filter:brightness(.85) saturate(1.1);
}
.about-right:hover img{transform:scale(1.04)}
.about-img-label{
  position:absolute;
  bottom:24px;right:24px;
  font-family:var(--f-mono);
  font-size:.58rem;
  letter-spacing:.18em;
  color:rgba(255,255,255,.5);
  text-transform:uppercase;
}

/* ─────── Values ─────── */
.values-header{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
  align-items:end;
  padding-bottom:clamp(48px,6vw,80px);
  border-bottom:1px solid var(--line);
  margin-bottom:4px;
}
.values-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:2px;
  background:var(--line);
}
.val-card{
  background:var(--bg-2);
  padding:clamp(28px,4vw,52px) clamp(20px,3vw,36px);
  display:flex;flex-direction:column;gap:18px;
  position:relative;overflow:hidden;
  transition:background .4s;
}
.val-card::before{
  content:'';
  position:absolute;inset:0;
  background:var(--lime);
  transform:scaleY(0);
  transform-origin:bottom;
  transition:transform .55s var(--ease-expo);
}
.val-card:hover::before{transform:scaleY(1)}
.val-card__n{
  font-family:var(--f-mono);
  font-size:.6rem;letter-spacing:.22em;
  color:var(--lime);
  position:relative;z-index:1;
  transition:color .4s;
}
.val-card__icon{
  font-size:2.2rem;line-height:1;
  position:relative;z-index:1;
}
.val-card__title{
  font-family:var(--f-jp-ser);
  font-size:clamp(1.3rem,2vw,1.75rem);
  font-weight:400;line-height:1.3;
  position:relative;z-index:1;
  transition:color .4s;
}
.val-card__body{
  font-size:.84rem;line-height:1.95;
  color:var(--text-dim);
  position:relative;z-index:1;
  transition:color .4s;
}
.val-card:hover .val-card__n{color:var(--bg)}
.val-card:hover .val-card__title{color:var(--bg)}
.val-card:hover .val-card__body{color:rgba(15,25,17,.75)}

/* ─────── Philosophy ─────── */
.philosophy{
  padding:var(--sec) var(--px);
  background:var(--bg-3);
  position:relative;overflow:hidden;
}
.philosophy-bg{
  position:absolute;
  top:50%;left:50%;
  transform:translate(-50%,-50%);
  font-family:var(--f-disp);
  font-size:clamp(10rem,22vw,32rem);
  font-weight:300;
  color:rgba(196,240,66,.04);
  white-space:nowrap;
  pointer-events:none;user-select:none;
  letter-spacing:-.04em;
}
.philosophy-inner{
  position:relative;z-index:1;
  max-width:860px;margin:0 auto;text-align:center;
}
.philosophy-quote{
  font-family:var(--f-disp);
  font-size:clamp(1.7rem,4vw,4.2rem);
  font-weight:300;
  line-height:1.55;
  color:var(--text);
  letter-spacing:.01em;
  margin-bottom:40px;
}
.philosophy-quote em{color:var(--lime);font-style:italic}
.philosophy-attr{
  font-family:var(--f-mono);
  font-size:.62rem;
  letter-spacing:.22em;
  color:var(--text-faint);
  text-transform:uppercase;
}

/* ─────── Stats Row ─────── */
.stats-row{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  background:var(--lime);
}
.stat{
  padding:clamp(40px,5vw,72px) clamp(20px,3vw,40px);
  text-align:center;
  border-right:1px solid rgba(15,25,17,.15);
}
.stat:last-child{border-right:none}
.stat__num{
  font-family:var(--f-disp);
  font-size:clamp(3rem,6vw,6.5rem);
  font-weight:300;
  color:var(--bg);
  line-height:1;
  letter-spacing:-.04em;
  margin-bottom:8px;
}
.stat__unit{font-size:.4em;vertical-align:super;font-weight:400}
.stat__label{
  font-family:var(--f-jp);
  font-size:.78rem;
  color:rgba(15,25,17,.6);
  letter-spacing:.08em;
}

/* ─────── News / Blog ─────── */
.news-wrap{padding:var(--sec) var(--px)}
.news-header{
  display:flex;align-items:flex-end;
  justify-content:space-between;
  padding-bottom:24px;
  border-bottom:1px solid var(--line);
  margin-bottom:clamp(32px,4vw,56px);
}
.all-link{
  font-family:var(--f-mono);
  font-size:.65rem;
  letter-spacing:.2em;
  color:var(--lime);
  display:flex;align-items:center;gap:8px;
  transition:gap .3s;
  text-transform:uppercase;
}
.all-link:hover{gap:16px}
.all-link::after{content:'→'}

.news-grid{
  display:grid;
  grid-template-columns:7fr 5fr;
  grid-template-rows:auto auto;
  gap:2px;
  background:var(--line);
}
.news-card{
  background:var(--bg-2);
  display:block;overflow:hidden;
}
.news-card--lg{grid-row:1/3}
.nc-img{overflow:hidden;position:relative}
.news-card--lg .nc-img{height:440px}
.news-card:not(.news-card--lg) .nc-img{height:210px}
.nc-img img{
  width:100%;height:100%;
  object-fit:cover;
  transition:transform .7s var(--ease-expo);
  filter:brightness(.8) saturate(1.1);
}
.news-card:hover .nc-img img{transform:scale(1.06)}
.nc-body{padding:clamp(16px,2.5vw,32px)}
.nc-cat{
  display:inline-block;
  font-family:var(--f-mono);
  font-size:.58rem;
  letter-spacing:.2em;
  text-transform:uppercase;
  color:var(--lime);
  border:1px solid rgba(196,240,66,.3);
  padding:3px 10px;border-radius:100px;
  margin-bottom:12px;
}
.nc-title{
  font-family:var(--f-jp-ser);
  font-size:clamp(.95rem,1.4vw,1.2rem);
  font-weight:400;
  line-height:1.65;
  color:var(--text);
  margin-bottom:10px;
  transition:color .3s;
}
.news-card:hover .nc-title{color:var(--lime)}
.nc-date{
  font-family:var(--f-mono);
  font-size:.58rem;
  letter-spacing:.12em;
  color:var(--text-faint);
}

/* ─────── Support ─────── */
.support-wrap{padding:var(--sec) var(--px);background:var(--bg-2)}
.support-grid{
  display:grid;grid-template-columns:1fr 1fr;
  gap:20px;margin-top:clamp(36px,5vw,64px);
}
.sup-card{
  background:var(--bg-3);
  border-radius:16px;
  overflow:hidden;
  display:block;
  transition:transform .4s var(--ease-expo),box-shadow .4s;
}
.sup-card:hover{transform:translateY(-10px);box-shadow:0 32px 80px rgba(0,0,0,.4)}
.sup-img{height:260px;overflow:hidden}
.sup-img img{width:100%;height:100%;object-fit:cover;filter:brightness(.75);transition:transform .6s var(--ease-expo)}
.sup-card:hover .sup-img img{transform:scale(1.06);filter:brightness(.9)}
.sup-body{padding:clamp(20px,3vw,36px)}
.sup-tag{
  font-family:var(--f-mono);
  font-size:.58rem;letter-spacing:.22em;
  color:var(--lime);text-transform:uppercase;
  margin-bottom:12px;
}
.sup-title{
  font-family:var(--f-jp-ser);
  font-size:clamp(1.2rem,1.8vw,1.6rem);
  font-weight:400;line-height:1.4;
  margin-bottom:12px;
  color:var(--text);
}
.sup-text{
  font-size:.84rem;line-height:1.95;
  color:var(--text-dim);
}

/* ─────── CTA Band ─────── */
.cta-band{
  padding:var(--sec) var(--px);
  background:var(--bg);
  display:grid;
  grid-template-columns:1fr auto;
  gap:40px;align-items:center;
  border-top:1px solid var(--line);
}
.cta-band__text{
  font-family:var(--f-disp);
  font-size:clamp(2rem,5vw,5.5rem);
  font-weight:300;
  line-height:1.1;
  letter-spacing:-.03em;
  color:var(--text);
}
.cta-band__text em{font-style:italic;color:var(--lime)}
.cta-circle{
  display:inline-flex;
  align-items:center;justify-content:center;
  width:clamp(130px,13vw,190px);
  height:clamp(130px,13vw,190px);
  border-radius:50%;
  border:1.5px solid var(--line);
  color:var(--text);
  font-family:var(--f-jp);
  font-size:clamp(.7rem,.9vw,.85rem);
  font-weight:600;
  letter-spacing:.1em;
  text-align:center;
  line-height:1.6;
  flex-shrink:0;
  transition:background .4s,border-color .4s,color .4s,transform .4s var(--ease-spr);
}
.cta-circle:hover{
  background:var(--lime);
  border-color:var(--lime);
  color:var(--bg);
  transform:scale(1.1) rotate(-6deg);
}

/* ─────── Footer ─────── */
.site-footer{
  background:var(--bg-2);
  padding:clamp(60px,8vw,120px) var(--px) 0;
  border-top:1px solid var(--line);
}
.footer-grid{
  display:grid;
  grid-template-columns:1.4fr 1fr 1fr;
  gap:48px;
  padding-bottom:clamp(48px,6vw,80px);
  border-bottom:1px solid var(--line);
}
.footer-brand__logo{
  font-family:var(--f-disp);
  font-size:clamp(2rem,3.5vw,3.8rem);
  font-weight:300;
  line-height:1.15;
  letter-spacing:-.02em;
  color:var(--text);
  margin-bottom:6px;
}
.footer-brand__en{
  font-family:var(--f-mono);
  font-size:.58rem;
  letter-spacing:.22em;
  color:var(--lime);
  text-transform:uppercase;
  margin-bottom:20px;
}
.footer-brand__desc{
  font-size:.82rem;
  line-height:1.9;
  color:var(--text-faint);
}
.footer-col__ttl{
  font-family:var(--f-mono);
  font-size:.58rem;
  letter-spacing:.22em;
  text-transform:uppercase;
  color:var(--text-faint);
  margin-bottom:20px;
}
.footer-col__links{
  display:flex;flex-direction:column;gap:10px;
}
.footer-col__links a{
  font-size:.82rem;
  color:var(--text-dim);
  transition:color .3s;
  display:flex;align-items:center;gap:8px;
}
.footer-col__links a::before{content:'—';color:var(--text-faint);font-size:.7em}
.footer-col__links a:hover{color:var(--lime)}
.footer-addr{
  font-size:.82rem;
  line-height:2;
  color:var(--text-dim);
}
.footer-addr a{color:var(--text-dim);transition:color .3s}
.footer-addr a:hover{color:var(--lime)}
.footer-bottom{
  display:flex;align-items:center;
  justify-content:space-between;
  padding:28px 0;
}
.footer-copy{
  font-family:var(--f-mono);
  font-size:.58rem;
  letter-spacing:.15em;
  color:var(--text-faint);
}
.footer-top-btn{
  font-family:var(--f-mono);
  font-size:.58rem;
  letter-spacing:.18em;
  color:var(--text-faint);
  display:flex;align-items:center;gap:8px;
  text-transform:uppercase;
  transition:color .3s;
}
.footer-top-btn:hover{color:var(--lime)}
.footer-top-btn::before{content:'↑'}

/* ─────── Inner Page Hero ─────── */
.pg-hero{
  min-height:460px;
  background:var(--bg-2);
  padding:calc(var(--nav-h) + clamp(48px,6vw,100px)) var(--px) clamp(48px,6vw,100px);
  position:relative;overflow:hidden;
  display:flex;flex-direction:column;justify-content:flex-end;
}
.pg-hero-bg{
  position:absolute;inset:0;z-index:0;
}
.pg-hero-bg img{
  width:100%;height:100%;
  object-fit:cover;
  opacity:.2;
  filter:saturate(1.3);
}
.pg-hero-content{position:relative;z-index:1}
.pg-num{
  position:absolute;
  bottom:-24px;right:var(--px);
  font-family:var(--f-disp);
  font-size:clamp(8rem,20vw,22rem);
  font-weight:300;
  color:rgba(196,240,66,.05);
  line-height:1;
  letter-spacing:-.05em;
  user-select:none;pointer-events:none;
}
.pg-hero__ey{
  display:flex;align-items:center;gap:12px;
  font-family:var(--f-mono);
  font-size:.62rem;letter-spacing:.25em;
  color:var(--lime);text-transform:uppercase;
  margin-bottom:16px;
}
.pg-hero__ey::before{content:'';width:28px;height:1px;background:var(--lime)}
.pg-hero__title{
  font-family:var(--f-disp);
  font-size:clamp(3rem,8vw,9rem);
  font-weight:300;
  line-height:1;letter-spacing:-.04em;
  color:var(--text);
}
.pg-hero__title em{font-style:italic;color:var(--lime)}
.pg-hero__ja{
  font-family:var(--f-jp-ser);
  font-size:clamp(.95rem,2vw,1.5rem);
  font-weight:300;letter-spacing:.15em;
  color:var(--text-dim);
  margin-top:14px;
}

/* ─────── Content Layout ─────── */
.two-col{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:clamp(40px,6vw,100px);
  align-items:center;
}
.two-col--flip{direction:rtl}
.two-col--flip>*{direction:ltr}

.ct-img{
  position:relative;overflow:hidden;border-radius:12px;
}
.ct-img img{
  width:100%;
  aspect-ratio:4/3;
  object-fit:cover;
  filter:brightness(.85) saturate(1.1);
  transition:transform .7s var(--ease-expo);
}
.ct-img:hover img{transform:scale(1.04)}

.ct-text{display:flex;flex-direction:column;gap:22px}
.ct-text__h{
  font-family:var(--f-jp-ser);
  font-size:clamp(1.5rem,3vw,2.6rem);
  font-weight:400;
  line-height:1.4;
  color:var(--text);
}
.ct-text__p{
  font-size:clamp(.87rem,1.1vw,1rem);
  line-height:2.1;
  color:var(--text-dim);
}

/* ─────── Table ─────── */
.styled-table{
  width:100%;border-collapse:collapse;
  font-size:.88rem;
}
.styled-table th,.styled-table td{
  padding:16px 20px;
  text-align:left;
  border-bottom:1px solid var(--line);
}
.styled-table th{
  font-family:var(--f-mono);
  font-size:.58rem;letter-spacing:.18em;
  text-transform:uppercase;
  color:var(--text-faint);
  background:var(--bg-3);
}
.styled-table td{color:var(--text-dim)}
.styled-table tr:hover td{background:var(--bg-3)}

/* ─────── Accordion ─────── */
.acc{border-top:1px solid var(--line)}
.acc-item{border-bottom:1px solid var(--line)}
.acc-q{
  display:flex;align-items:center;
  justify-content:space-between;
  padding:22px 0;width:100%;text-align:left;
  font-family:var(--f-jp-ser);
  font-size:clamp(.95rem,1.4vw,1.1rem);
  font-weight:400;color:var(--text);
  transition:color .3s;
}
.acc-q:hover{color:var(--lime)}
.acc-icon{
  width:26px;height:26px;border-radius:50%;
  border:1.5px solid var(--line);
  display:flex;align-items:center;justify-content:center;
  flex-shrink:0;font-size:.9rem;
  color:var(--text-dim);
  transition:background .3s,border-color .3s,transform .4s var(--ease-spr);
}
.acc-item.open .acc-icon{
  background:var(--lime);border-color:var(--lime);
  color:var(--bg);transform:rotate(45deg);
}
.acc-a{
  max-height:0;overflow:hidden;
  transition:max-height .55s var(--ease-expo);
}
.acc-item.open .acc-a{max-height:600px}
.acc-a-inner{
  padding-bottom:22px;
  font-size:.88rem;line-height:2.1;
  color:var(--text-dim);
}

/* ─────── Timeline ─────── */
.timeline{
  position:relative;
  padding-left:72px;
  display:flex;flex-direction:column;
}
.timeline::before{
  content:'';
  position:absolute;top:0;bottom:0;
  left:28px;width:1px;
  background:var(--line);
}
.tl-item{
  position:relative;
  padding:24px 0 24px 40px;
  border-bottom:1px solid var(--line);
  display:grid;
  grid-template-columns:90px 1fr;
  gap:28px;
  align-items:start;
}
.tl-item::before{
  content:'';
  position:absolute;
  left:-43px;top:30px;
  width:10px;height:10px;
  border-radius:50%;
  border:2px solid var(--lime);
  background:var(--bg);
}
.tl-time{
  font-family:var(--f-mono);
  font-size:clamp(1.1rem,1.8vw,1.6rem);
  font-weight:700;
  color:var(--lime);
  letter-spacing:-.02em;
  white-space:nowrap;
  padding-top:2px;
}
.tl-title{
  font-family:var(--f-jp-ser);
  font-size:clamp(.95rem,1.3vw,1.1rem);
  font-weight:400;
  margin-bottom:6px;
  color:var(--text);
}
.tl-body{
  font-size:.83rem;line-height:1.95;
  color:var(--text-dim);
}

/* ─────── Contact Form ─────── */
.contact-form{
  display:flex;flex-direction:column;
  gap:22px;max-width:660px;
}
.form-group{display:flex;flex-direction:column;gap:8px}
.form-group label{
  font-family:var(--f-mono);
  font-size:.6rem;letter-spacing:.2em;
  text-transform:uppercase;
  color:var(--text-faint);
}
.form-group input,.form-group textarea,.form-group select{
  width:100%;
  padding:15px 18px;
  background:var(--bg-3);
  border:1.5px solid var(--line);
  border-radius:8px;
  font-family:var(--f-jp);
  font-size:.92rem;
  color:var(--text);
  outline:none;
  transition:border-color .3s,box-shadow .3s;
}
.form-group input::placeholder,.form-group textarea::placeholder{color:var(--text-faint)}
.form-group input:focus,.form-group textarea:focus,.form-group select:focus{
  border-color:var(--lime);
  box-shadow:0 0 0 4px rgba(196,240,66,.08);
}
.form-group textarea{min-height:160px;resize:vertical}
.form-group select{cursor:pointer;appearance:none;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none'%3E%3Cpath d='M2 4l4 4 4-4' stroke='%23C4F042' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat:no-repeat;background-position:right 16px center;
}
.form-submit{
  display:inline-flex;align-items:center;gap:12px;
  padding:16px 36px;
  background:var(--lime);
  color:var(--bg);
  border-radius:100px;
  font-family:var(--f-jp);
  font-size:.88rem;font-weight:700;
  letter-spacing:.1em;align-self:flex-start;
  transition:background .3s,transform .3s var(--ease-spr),gap .3s;
}
.form-submit:hover{background:#d6ff5a;transform:scale(1.04);gap:20px}

/* ─────── Blog Grid ─────── */
.blog-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:2px;background:var(--line);
}
.blog-card{background:var(--bg-2);display:block;overflow:hidden}
.bc-img{height:220px;overflow:hidden}
.bc-img img{
  width:100%;height:100%;
  object-fit:cover;
  filter:brightness(.8);
  transition:transform .6s var(--ease-expo),filter .6s;
}
.blog-card:hover .bc-img img{transform:scale(1.06);filter:brightness(.95)}
.bc-body{padding:22px}
.bc-cat{
  font-family:var(--f-mono);
  font-size:.56rem;letter-spacing:.2em;
  color:var(--lime);text-transform:uppercase;margin-bottom:10px;
}
.bc-title{
  font-family:var(--f-jp-ser);
  font-size:.95rem;font-weight:400;
  line-height:1.65;margin-bottom:8px;
  color:var(--text);transition:color .3s;
}
.blog-card:hover .bc-title{color:var(--lime)}
.bc-date{
  font-family:var(--f-mono);
  font-size:.58rem;letter-spacing:.12em;
  color:var(--text-faint);
}

/* ─────── Map ─────── */
.map-wrap{border-radius:12px;overflow:hidden;height:400px}
.map-wrap iframe{width:100%;height:100%;border:0;filter:brightness(.8) saturate(.9)}

/* ─────── Breadcrumb ─────── */
.breadcrumb{
  display:flex;align-items:center;gap:8px;
  font-family:var(--f-mono);
  font-size:.6rem;letter-spacing:.12em;
  color:var(--text-faint);
  margin-bottom:40px;
  padding-top:clamp(8px,2vw,16px);
}
.breadcrumb a{transition:color .3s}
.breadcrumb a:hover{color:var(--lime)}
.breadcrumb__sep{opacity:.35}

/* ─────── Responsive ─────── */
@media (max-width:1024px){
  .nav-links{display:none}
  .nav-burger{display:flex}

  .about-grid{grid-template-columns:1fr;min-height:auto}
  .about-right{height:360px}

  .values-header{grid-template-columns:1fr}
  .values-grid{grid-template-columns:1fr 1fr}

  .stats-row{grid-template-columns:repeat(2,1fr)}
  .stat:nth-child(2){border-right:none}
  .stat:nth-child(1),.stat:nth-child(2){border-bottom:1px solid rgba(15,25,17,.15)}

  .news-grid{grid-template-columns:1fr}
  .news-card--lg{grid-row:auto}

  .two-col{grid-template-columns:1fr}
  .two-col--flip{direction:ltr}

  .blog-grid{grid-template-columns:1fr 1fr}
  .support-grid{grid-template-columns:1fr}

  .cta-band{grid-template-columns:1fr;text-align:center;justify-items:center}

  .footer-grid{grid-template-columns:1fr 1fr}
}

@media (max-width:640px){
  :root{--px:20px}
  .hero-content{grid-template-columns:1fr}
  .hero-right{display:none}
  .values-grid{grid-template-columns:1fr}
  .stats-row{grid-template-columns:1fr 1fr}
  .footer-grid{grid-template-columns:1fr}
  .footer-bottom{flex-direction:column;gap:12px;text-align:center}
  .blog-grid{grid-template-columns:1fr}
  .timeline{padding-left:40px}
  .timeline::before{left:12px}
  .tl-item::before{left:-28px}
  .tl-item{grid-template-columns:70px 1fr;gap:16px;padding-left:20px}
  .hero-scroll{display:none}
  .pg-hero__title{font-size:clamp(2.5rem,7vw,5rem)}
}

@media (max-width:400px){
  .stats-row{grid-template-columns:1fr}
  .stat{border-right:none !important;border-bottom:1px solid rgba(15,25,17,.15) !important}
}

/* ─────── Utility ─────── */
.lime{color:var(--lime)}
.gold{color:var(--gold)}
.dim{color:var(--text-dim)}
.mono{font-family:var(--f-mono)}
.mt-sm{margin-top:16px}
.mt-md{margin-top:32px}
.mt-lg{margin-top:64px}
.max-prose{max-width:62ch}
.text-center{text-align:center}

/* ─────── Light Theme Overrides ─────── */

/* Cursor - dark on light bg */
#cursor-dot { background:var(--lime); }
#cursor-ring { border-color:var(--dark); }
body.is-hovering #cursor-dot { background:var(--lime); }

/* Preloader - light */
#preloader { background:var(--bg); }
.pre-logo { color:var(--dark); }

/* Nav overlay - keep dark */
.nav-overlay { background:var(--dark); }

/* Nav burger lines - dark initially (over hero), handled by nav state */
.nav-burger span { background:rgba(255,255,255,0.9); }
.site-nav.solid .nav-burger span { background:var(--text); }

/* About section - light */
.about-left { background:var(--bg-2); }
.about-year { color:rgba(26,25,22,0.06); }
.about-tag { border-color:var(--lime); color:var(--lime); }
.about-img-label { color:rgba(255,255,255,0.55); }

/* Values section */
.val-card { background:var(--white); border:1px solid var(--line); }
.val-card::before { background:var(--dark); }
.val-card__n { color:var(--lime); }
.val-card__title { color:var(--text); }
.val-card__body { color:var(--text-dim); }
.val-card:hover .val-card__n { color:var(--lime-viv); }
.val-card:hover .val-card__title { color:var(--white); }
.val-card:hover .val-card__body { color:rgba(255,255,255,0.7); }
.values-grid { background:var(--line); }

/* Philosophy - keep dark for contrast */
.philosophy { background:var(--dark); }
.philosophy-bg { color:rgba(142,196,28,0.05); }
.philosophy-quote { color:var(--white); }
.philosophy-quote em { color:var(--lime-viv); }
.philosophy-attr { color:rgba(255,255,255,0.3); }

/* Stats - dark bg with lime text */
.stats-row { background:var(--dark); }
.stat { background:rgba(255,255,255,0.03); border-color:rgba(255,255,255,0.07); }
.stat__num { color:var(--lime-viv); }
.stat__label { color:rgba(255,255,255,0.5); }

/* News section */
.news-wrap { background:var(--bg); }
.news-grid { background:var(--line); }
.news-card { background:var(--white); }
.nc-img img { filter:brightness(.92) saturate(1.1); }
.news-card:hover .nc-img img { filter:brightness(.98); }
.nc-cat { color:var(--lime); border-color:rgba(142,196,28,0.4); }
.nc-title { color:var(--text); }
.news-card:hover .nc-title { color:var(--lime); }
.nc-date { color:var(--text-faint); }

/* Support section */
.support-wrap { background:var(--bg-2); }
.sup-card { background:var(--white); }
.sup-card:hover { box-shadow:0 24px 60px rgba(26,25,22,0.1); }
.sup-img img { filter:brightness(.9); }
.sup-card:hover .sup-img img { filter:brightness(.97); }
.sup-tag { color:var(--lime); }
.sup-title { color:var(--text); }
.sup-text { color:var(--text-dim); }

/* CTA band */
.cta-band { background:var(--dark); border-color:rgba(255,255,255,0.07); }
.cta-band__text { color:var(--white); }
.cta-band__text em { color:var(--lime-viv); }
.cta-circle {
  border-color:rgba(255,255,255,0.15);
  color:var(--white);
}
.cta-circle:hover {
  background:var(--lime-viv);
  border-color:var(--lime-viv);
  color:var(--dark);
}

/* Footer - keep dark */
.site-footer { background:var(--dark); border-color:rgba(255,255,255,0.08); }
.footer-grid { border-color:rgba(255,255,255,0.08); }
.footer-brand__logo { color:var(--white); }
.footer-brand__en { color:var(--lime-viv); }
.footer-brand__desc { color:rgba(255,255,255,0.4); }
.footer-col__ttl { color:rgba(255,255,255,0.3); }
.footer-col__links a { color:rgba(255,255,255,0.55); }
.footer-col__links a::before { color:rgba(255,255,255,0.2); }
.footer-col__links a:hover { color:var(--lime-viv); }
.footer-addr { color:rgba(255,255,255,0.5); }
.footer-addr a { color:rgba(255,255,255,0.5); }
.footer-addr a:hover { color:var(--lime-viv); }
.footer-copy { color:rgba(255,255,255,0.2); }
.footer-top-btn { color:rgba(255,255,255,0.3); }
.footer-top-btn:hover { color:var(--lime-viv); }

/* Page hero backgrounds */
.pg-hero { background:var(--dark-2); }

/* Inner page content */
.sec--bg2 { background:var(--bg-2); }
.sec--bg3 { background:var(--bg-3); }

/* Tables */
.styled-table th { background:var(--bg-2); color:var(--text-faint); }
.styled-table td { color:var(--text-dim); }
.styled-table tr:hover td { background:var(--bg-2); }

/* Accordion */
.acc { border-color:var(--line); }
.acc-item { border-color:var(--line); }
.acc-q { color:var(--text); }
.acc-q:hover { color:var(--lime); }
.acc-icon { border-color:var(--line); color:var(--text-dim); }
.acc-item.open .acc-icon { background:var(--lime); border-color:var(--lime); color:var(--dark); }
.acc-a-inner { color:var(--text-dim); }

/* Timeline */
.timeline::before { background:var(--line); }
.tl-item { border-color:var(--line); }
.tl-item::before { border-color:var(--lime); background:var(--bg); }
.tl-time { color:var(--lime); }
.tl-title { color:var(--text); }
.tl-body { color:var(--text-dim); }

/* Contact form */
.form-group label { color:var(--text-faint); }
.form-group input,.form-group textarea,.form-group select {
  background:var(--white);
  border-color:var(--line);
  color:var(--text);
}
.form-group input:focus,.form-group textarea:focus,.form-group select:focus {
  border-color:var(--lime);
  box-shadow:0 0 0 4px rgba(142,196,28,0.1);
}
.form-submit { background:var(--dark); color:var(--white); }
.form-submit:hover { background:var(--lime); color:var(--dark); }

/* Blog grid */
.blog-grid { background:var(--line); }
.blog-card { background:var(--white); }
.bc-img img { filter:brightness(.9); }
.blog-card:hover .bc-img img { filter:brightness(.98); }
.bc-cat { color:var(--lime); }
.bc-title { color:var(--text); }
.blog-card:hover .bc-title { color:var(--lime); }
.bc-date { color:var(--text-faint); }

/* Breadcrumb */
.breadcrumb a:hover { color:var(--lime); }

/* All-link */
.all-link { color:var(--lime); }

/* Eyebrow */
.eyebrow { color:var(--lime); }
.eyebrow::before { background:var(--lime); }

/* Disp heading on light */
.disp-heading { color:var(--text); }
.disp-heading em { color:var(--lime); }
.ja-heading { color:var(--text); }
.body-text { color:var(--text-dim); }

/* Section headings etc. */
.ct-text__h { color:var(--text); }
.ct-text__p { color:var(--text-dim); }

/* Hero stays dark - no override needed */
/* Map filter adjust for light theme */
.map-wrap iframe { filter:none; }

/* Border radius on stats */
@media (max-width:400px){
  .stat { border-bottom:1px solid rgba(255,255,255,0.07) !important; }
}
