/* ============================================
   Find Your Japan — Custom Styles
   全クラスに je- プレフィックスを使用
   SWELLのスタイルとの競合を避けるため
============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Cormorant+Garamond:ital,wght@0,300;0,400;1,300;1,400&family=Noto+Serif+JP:wght@300;400;600&family=Inter:wght@300;400;500&family=Josefin+Sans:wght@300;400;600&display=swap');

/* ── DESIGN TOKENS ── */
:root {
  --je-sumi: #16120e;
  --je-washi: #f8f4ee;
  --je-cream: #fdfaf5;
  --je-aka: #b5322a;
  --je-kin: #c49a3c;
  --je-mocha: #7a6e62;
  --je-sand: #e8e0d2;
  --je-pale: #f2ece2;
  --je-navy: #1c2a3a;
  --je-font-d: 'Playfair Display', Georgia, serif;
  --je-font-s: 'Cormorant Garamond', Georgia, serif;
  --je-font-j: 'Noto Serif JP', serif;
  --je-font-u: 'Josefin Sans', sans-serif;
  --je-font-b: 'Inter', sans-serif;
  --je-max-w: 1240px;
  --je-pad: 44px;
}

/* ── RESET（front-page内のみ） ── */
.je-wrap *, .je-hero-cinema *, .je-icon-strip *,
.je-ticker *, .je-essentials *, .je-dest-strip *,
.je-qbanner *, .je-footer * {
  box-sizing: border-box;
}

/* ── UTILITIES ── */
.je-wrap {
  max-width: var(--je-max-w);
  margin: 0 auto;
  padding: 0 var(--je-pad);
}
.je-cat-label {
  display: inline-block;
  font-family: var(--je-font-u);
  font-size: 9px; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--je-aka); margin-bottom: 10px;
}
.je-btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--je-font-u); font-size: 10px; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase;
  padding: 12px 28px; transition: all .25s; cursor: pointer;
  text-decoration: none;
}
.je-btn::after { content: '→'; font-size: 13px; }
.je-btn-dark { background: var(--je-sumi); color: var(--je-washi); }
.je-btn-dark:hover { background: var(--je-aka); color: var(--je-washi); }
.je-btn-red { background: var(--je-aka); color: #fff; }
.je-btn-red:hover { background: #962920; color: #fff; }
.je-btn-outline { border: 1.5px solid rgba(255,255,255,.7); color: #fff; }
.je-btn-outline:hover { background: rgba(255,255,255,.15); }

/* ── TOP BAR ── */
.je-topbar {
  background: var(--je-sumi);
  display: flex; justify-content: space-between; align-items: center;
  padding: 8px var(--je-pad);
  font-family: var(--je-font-u); font-size: 10px;
  letter-spacing: .14em; color: #777;
}
.je-topbar a { color: #888; text-decoration: none; transition: color .2s; }
.je-topbar a:hover { color: var(--je-washi); }
.je-tb-l { display: flex; gap: 22px; }
.je-tb-r { display: flex; gap: 14px; align-items: center; }
.je-lang { display: flex; border: 1px solid #333; overflow: hidden; }
.je-lang span { padding: 3px 10px; cursor: pointer; transition: all .2s; font-size: 9px; }
.je-lang span.on { background: var(--je-aka); color: #fff; }

/* ── HEADER ── */
.je-header {
  background: var(--je-washi);
  border-bottom: 1px solid var(--je-sand);
  position: sticky; top: 0; z-index: 200;
  box-shadow: 0 2px 18px rgba(22,18,14,.07);
}
.je-hdr {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 var(--je-pad); height: 70px;
  max-width: var(--je-max-w); margin: 0 auto;
}
.je-logo { text-decoration: none; }
.je-logo-main {
  font-family: var(--je-font-d); font-size: 22px; font-weight: 700;
  letter-spacing: .04em; line-height: 1; color: var(--je-sumi);
}
.je-logo-main span { color: var(--je-aka); }
.je-logo-sub {
  font-family: var(--je-font-u); font-size: 8px;
  letter-spacing: .28em; color: var(--je-mocha);
  text-transform: uppercase; margin-top: 3px; display: block;
}
.je-hsearch {
  display: flex; align-items: center;
  border: 1px solid var(--je-sand); background: #fff;
  padding: 8px 15px; gap: 8px; width: 230px;
}
.je-hsearch input {
  border: none; outline: none; background: transparent;
  font-family: var(--je-font-u); font-size: 11px;
  color: var(--je-sumi); width: 100%;
}
.je-hsearch input::placeholder { color: #bbb; }
.je-hright { display: flex; gap: 16px; align-items: center; }
.je-hsoc { display: flex; gap: 13px; }
.je-hsoc a { font-size: 14px; color: var(--je-mocha); text-decoration: none; transition: color .2s; }
.je-hsoc a:hover { color: var(--je-aka); }
.je-sub-btn {
  background: var(--je-aka); color: #fff; text-decoration: none;
  font-family: var(--je-font-u); font-size: 10px; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  padding: 9px 20px; transition: background .2s; white-space: nowrap;
}
.je-sub-btn:hover { background: #962920; color: #fff; }

/* ── NAVIGATION ── */
.je-mnav { background: var(--je-sumi); border-bottom: 3px solid var(--je-aka); }
.je-mnav-inner {
  display: flex; padding: 0 var(--je-pad);
  overflow-x: auto; scrollbar-width: none;
  max-width: var(--je-max-w); margin: 0 auto;
}
.je-mnav-inner::-webkit-scrollbar { display: none; }
.je-mnav-inner a {
  font-family: var(--je-font-u); font-size: 10px; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  color: #999; white-space: nowrap; text-decoration: none;
  padding: 13px 16px;
  border-bottom: 3px solid transparent; margin-bottom: -3px;
  transition: all .2s;
}
.je-mnav-inner a:hover, .je-mnav-inner a.on {
  color: #fff; border-bottom-color: var(--je-aka);
}
.je-nsep { color: #2e2e2e; padding: 0 4px; display: flex; align-items: center; }

/* ── CINEMATIC HERO ── */
.je-hero-cinema {
  position: relative; height: 90vh;
  min-height: 580px; max-height: 880px;
  overflow: hidden; display: flex; align-items: flex-end;
  background: var(--je-sumi);
}
.je-slides { position: absolute; inset: 0; }
.je-slide {
  position: absolute; inset: 0;
  background: center/cover no-repeat;
  opacity: 0; transition: opacity 1.4s ease;
}
.je-slide.on { opacity: 1; }
.je-hero-vignette {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(to bottom, rgba(22,18,14,.25) 0%, rgba(22,18,14,0) 35%, rgba(22,18,14,.6) 70%, rgba(22,18,14,.95) 100%),
    linear-gradient(to right, rgba(22,18,14,.4) 0%, transparent 45%);
}
.je-hero-kanji {
  position: absolute; right: var(--je-pad); top: 50%; transform: translateY(-50%);
  z-index: 2; writing-mode: vertical-rl;
  font-family: var(--je-font-j);
  font-size: clamp(60px, 8vw, 110px); font-weight: 600;
  color: rgba(255,255,255,.06); letter-spacing: .1em;
  pointer-events: none; user-select: none;
}
.je-hero-body {
  position: relative; z-index: 3; width: 100%;
  padding: 0 var(--je-pad) 60px;
  color: var(--je-washi);
  display: grid; grid-template-columns: 1fr 380px; gap: 48px; align-items: end;
}
.je-hb-left .je-cat-label { color: var(--je-kin); font-size: 10px; margin-bottom: 16px; }
.je-hero-title {
  font-family: var(--je-font-d);
  font-size: clamp(32px, 4.5vw, 66px); font-weight: 700;
  line-height: 1.07; margin-bottom: 18px;
  text-shadow: 0 3px 30px rgba(0,0,0,.35);
}
.je-hero-title em {
  display: block; font-style: italic; font-size: .5em;
  color: var(--je-kin); font-family: var(--je-font-s);
  letter-spacing: .07em; margin-bottom: 10px;
}
.je-hero-excerpt {
  font-size: 15px; color: rgba(248,244,238,.76);
  line-height: 1.85; max-width: 520px; margin-bottom: 24px;
}
.je-hero-meta {
  font-family: var(--je-font-u); font-size: 10px;
  letter-spacing: .15em; color: #aaa; margin-bottom: 26px;
}
.je-hero-dots { display: flex; gap: 8px; margin-top: 22px; }
.je-hdot {
  width: 26px; height: 3px;
  background: rgba(255,255,255,.25); cursor: pointer; transition: all .35s;
}
.je-hdot.on { background: var(--je-aka); width: 42px; }

/* Hero right panel */
.je-hb-right {
  display: flex; flex-direction: column;
  background: rgba(16,12,8,.72); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.09);
  border-bottom: 3px solid var(--je-aka);
}
.je-hsub {
  display: grid; grid-template-columns: 88px 1fr;
  border-bottom: 1px solid rgba(255,255,255,.07);
  overflow: hidden; cursor: pointer; transition: background .25s;
  text-decoration: none;
}
.je-hsub:last-child { border-bottom: none; }
.je-hsub:hover { background: rgba(255,255,255,.07); }
.je-hsub-img { height: 88px; background: center/cover no-repeat; }
.je-hsub-body { padding: 12px 14px; display: flex; flex-direction: column; justify-content: center; }
.je-hsub-cat {
  font-family: var(--je-font-u); font-size: 8px;
  letter-spacing: .2em; text-transform: uppercase; color: var(--je-kin); margin-bottom: 4px;
}
.je-hsub-title {
  font-family: var(--je-font-d); font-size: 13px;
  line-height: 1.3; color: var(--je-washi);
}

/* ── ICON VISUAL STRIP ── */
.je-icon-strip {
  display: grid; grid-template-columns: repeat(6, 1fr);
  height: 260px; border-bottom: 3px solid var(--je-aka);
}
.je-is-item { position: relative; overflow: hidden; cursor: pointer; text-decoration: none; }
.je-is-bg {
  position: absolute; inset: 0; background: center/cover no-repeat;
  transition: transform .7s ease; filter: brightness(.45) saturate(.8);
}
.je-is-item:hover .je-is-bg { transform: scale(1.12); filter: brightness(.65) saturate(1.1); }
.je-is-item::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(22,18,14,.85) 0%, rgba(22,18,14,.1) 55%, transparent 100%);
  pointer-events: none;
}
.je-is-item::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--je-aka); transform: scaleX(0);
  transform-origin: left; transition: transform .35s ease; z-index: 3;
}
.je-is-item:hover::before { transform: scaleX(1); }
.je-is-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 16px 14px; z-index: 2; text-align: center;
}
.je-is-icon { font-size: 28px; display: block; margin-bottom: 6px; }
.je-is-name { font-family: var(--je-font-d); font-size: 13px; font-weight: 600; color: #fff; display: block; margin-bottom: 2px; }
.je-is-jp { font-family: var(--je-font-j); font-size: 9px; letter-spacing: .2em; color: rgba(255,255,255,.5); }

/* ── TICKER ── */
.je-ticker { background: var(--je-aka); overflow: hidden; padding: 10px 0; white-space: nowrap; }
.je-t-label {
  display: inline-block; background: var(--je-sumi); color: var(--je-kin);
  padding: 0 18px; font-family: var(--je-font-u); font-size: 9px; font-weight: 600;
  letter-spacing: .25em; text-transform: uppercase; line-height: 22px; margin-right: 20px;
}
.je-t-track { display: inline-block; animation: je-roll 44s linear infinite; }
.je-t-track span {
  font-family: var(--je-font-u); font-size: 10px;
  letter-spacing: .16em; color: rgba(255,255,255,.9); margin: 0 28px;
}
.je-t-track span::before { content: '◆ '; font-size: 7px; opacity: .7; }
@keyframes je-roll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── SECTION HEADS ── */
.je-sec-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 30px; padding-bottom: 13px;
  border-bottom: 1px solid var(--je-sand); position: relative;
}
.je-sec-head::before {
  content: ''; position: absolute; bottom: -1px; left: 0;
  width: 44px; height: 2px; background: var(--je-aka);
}
.je-sec-head h2 { font-family: var(--je-font-d); font-size: 25px; font-weight: 600; line-height: 1; }
.je-sec-head h2 small {
  display: block; font-family: var(--je-font-j); font-size: 10px;
  font-weight: 300; letter-spacing: .24em; color: var(--je-mocha); margin-bottom: 5px;
}
.je-sec-head a {
  font-family: var(--je-font-u); font-size: 10px; letter-spacing: .18em;
  text-transform: uppercase; color: var(--je-aka);
  border-bottom: 1px solid var(--je-aka); padding-bottom: 1px;
  text-decoration: none; transition: opacity .2s;
}
.je-sec-head a:hover { opacity: .6; }

/* ── CONTENT LAYOUT ── */
.je-content-wrap {
  display: grid; grid-template-columns: 1fr 330px;
  gap: 60px; padding: 56px 0 80px;
}

/* ── CARDS ── */
.je-card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.je-card-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.je-card { cursor: pointer; }
.je-card:hover .je-cthumb { transform: scale(1.05); }
.je-card:hover .je-card-title { color: var(--je-aka); }
.je-cimg { overflow: hidden; aspect-ratio: 4/3; margin-bottom: 13px; position: relative; }
.je-cimg-wide { aspect-ratio: 16/9; }
.je-cthumb {
  width: 100%; height: 100%; background: center/cover no-repeat;
  transition: transform .5s ease;
}
.je-cbadge {
  position: absolute; top: 11px; left: 11px;
  background: var(--je-sumi); color: var(--je-washi);
  font-family: var(--je-font-u); font-size: 8px; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase; padding: 4px 10px;
}
.je-card-title {
  font-family: var(--je-font-d); font-size: 17px;
  line-height: 1.3; margin-bottom: 7px; transition: color .2s;
}
.je-card-excerpt { font-size: 12.5px; color: var(--je-mocha); line-height: 1.8; }
.je-card-meta {
  font-family: var(--je-font-u); font-size: 9.5px; letter-spacing: .1em;
  color: var(--je-sand); margin-top: 10px; padding-top: 10px;
  border-top: 1px solid var(--je-sand);
}

/* Wide card */
.je-card-wide {
  grid-column: span 3; display: grid; grid-template-columns: 1fr 1fr;
  border: 1px solid var(--je-sand); overflow: hidden; cursor: pointer;
  transition: box-shadow .3s;
}
.je-card-wide:hover { box-shadow: 0 8px 36px rgba(22,18,14,.11); }
.je-card-wide:hover .je-cthumb { transform: scale(1.04); }
.je-card-wide:hover .je-card-title { color: var(--je-aka); }
.je-card-wide .je-cimg { aspect-ratio: auto; height: 100%; margin: 0; }
.je-cwbody {
  padding: 42px 38px; background: var(--je-pale);
  display: flex; flex-direction: column; justify-content: center;
}
.je-cwbody .je-card-title { font-size: 24px; margin-bottom: 12px; }
.je-cwbody .je-card-excerpt { font-size: 14px; margin-bottom: 22px; }

/* Category pills */
.je-cpills { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 32px; }
.je-cpill {
  font-family: var(--je-font-u); font-size: 9px; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase;
  padding: 6px 13px; border: 1px solid var(--je-sand);
  color: var(--je-mocha); cursor: pointer; transition: all .2s;
  text-decoration: none;
}
.je-cpill:hover { background: var(--je-sumi); color: var(--je-washi); border-color: var(--je-sumi); }
.je-cpill.on { background: var(--je-aka); color: #fff; border-color: var(--je-aka); }

/* ── SIDEBAR ── */
.je-widget { margin-bottom: 44px; }
.je-widget-title { font-family: var(--je-font-d); font-size: 18px; font-weight: 600; margin-bottom: 4px; }
.je-widget-title small {
  display: block; font-family: var(--je-font-j); font-size: 9px;
  font-weight: 300; letter-spacing: .2em; color: var(--je-mocha); margin-bottom: 3px;
}
.je-wrule { height: 1px; background: var(--je-sand); position: relative; margin-bottom: 18px; }
.je-wrule::before {
  content: ''; position: absolute; left: 0; top: -1px;
  width: 28px; height: 2px; background: var(--je-aka);
}
.je-rank-item {
  display: grid; grid-template-columns: 24px 66px 1fr; gap: 11px;
  align-items: center; padding: 11px 0;
  border-bottom: 1px solid var(--je-sand); cursor: pointer; text-decoration: none;
}
.je-rank-item:last-child { border-bottom: none; }
.je-rank-item:hover .je-rank-title { color: var(--je-aka); }
.je-rank-num {
  font-family: var(--je-font-s); font-size: 23px; font-weight: 300;
  color: var(--je-sand); text-align: center; line-height: 1;
}
.je-rank-item.r1 .je-rank-num { color: var(--je-kin); }
.je-rthumb { width: 66px; height: 66px; background: center/cover no-repeat; }
.je-rank-cat {
  font-family: var(--je-font-u); font-size: 8px;
  letter-spacing: .14em; color: var(--je-aka); text-transform: uppercase; margin-bottom: 3px;
}
.je-rank-title { font-family: var(--je-font-d); font-size: 12.5px; line-height: 1.4; transition: color .2s; color: var(--je-sumi); }

/* Newsletter */
.je-newsletter { background: var(--je-sumi); color: var(--je-washi); padding: 26px 22px; }
.je-newsletter .je-widget-title { color: var(--je-washi); }
.je-newsletter .je-widget-title small { color: #666; }
.je-nl-intro { font-size: 12px; color: #666; line-height: 1.8; margin-bottom: 16px; }
.je-nl-input {
  width: 100%; padding: 10px 12px;
  background: #1a1612; border: 1px solid #2a2a2a;
  color: var(--je-washi); font-size: 12px; outline: none; margin-bottom: 8px;
}
.je-nl-input::placeholder { color: #3a3a3a; }
.je-nl-btn {
  width: 100%; background: var(--je-aka); color: #fff; border: none; padding: 11px;
  font-family: var(--je-font-u); font-size: 10px; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase; cursor: pointer;
}
.je-nl-btn:hover { background: #962920; }
.je-nl-note { font-size: 10px; color: #3a3a3a; margin-top: 8px; text-align: center; }

/* Tags */
.je-tag-cloud { display: flex; flex-wrap: wrap; gap: 6px; }
.je-tag {
  font-family: var(--je-font-u); font-size: 9px; font-weight: 600;
  letter-spacing: .13em; text-transform: uppercase;
  padding: 5px 11px; border: 1px solid var(--je-sand);
  color: var(--je-mocha); cursor: pointer; transition: all .2s; text-decoration: none;
}
.je-tag:hover { background: var(--je-sumi); color: var(--je-washi); border-color: var(--je-sumi); }
.je-tag.hi { background: var(--je-pale); }

/* ── JAPAN ESSENTIALS ── */
.je-essentials { background: var(--je-pale); padding: 56px 0; border-top: 1px solid var(--je-sand); }
.je-ess-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 2px; margin-top: 32px; }
.je-ess-item {
  background: var(--je-washi); padding: 24px 16px 18px;
  text-align: center; cursor: pointer; text-decoration: none;
  border-bottom: 3px solid transparent; transition: all .25s;
  display: flex; flex-direction: column; align-items: center;
}
.je-ess-item:hover {
  border-bottom-color: var(--je-aka);
  background: #fff; box-shadow: 0 4px 20px rgba(22,18,14,.08);
}
.je-ess-icon { font-size: 28px; margin-bottom: 9px; display: block; transition: transform .3s; }
.je-ess-item:hover .je-ess-icon { transform: scale(1.14); }
.je-ess-name {
  font-family: var(--je-font-u); font-size: 9px; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase; color: var(--je-sumi); margin-bottom: 3px;
}
.je-ess-count { font-size: 10px; color: var(--je-mocha); }

/* ── CATEGORY SHOWCASE ── */
.je-dest-strip { background: var(--je-sumi); padding: 60px 0; }
.je-dest-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 170px); gap: 3px;
}
.je-dt { position: relative; overflow: hidden; cursor: pointer; text-decoration: none; }
.je-dt.tall { grid-row: span 2; }
.je-dt.wide { grid-column: span 2; }
.je-dt-bg {
  position: absolute; inset: 0; background: center/cover no-repeat;
  transition: transform .6s ease; filter: brightness(.45) saturate(.8);
}
.je-dt:hover .je-dt-bg { transform: scale(1.09); filter: brightness(.6) saturate(1); }
.je-dt-body {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  justify-content: flex-end; padding: 16px 18px;
}
.je-dt-en { font-family: var(--je-font-d); font-size: 15px; font-weight: 600; color: #fff; margin-bottom: 2px; }
.je-dt.tall .je-dt-en { font-size: 22px; }
.je-dt.wide .je-dt-en { font-size: 20px; }
.je-dt-jp { font-family: var(--je-font-j); font-size: 10px; letter-spacing: .18em; color: rgba(255,255,255,.5); }
.je-dt-count {
  position: absolute; top: 11px; right: 11px;
  font-family: var(--je-font-u); font-size: 8px; letter-spacing: .14em;
  color: rgba(255,255,255,.45); background: rgba(0,0,0,.3); padding: 3px 8px;
}

/* ── QUOTE BANNER ── */
.je-qbanner { background: var(--je-navy); color: var(--je-washi); padding: 52px var(--je-pad); text-align: center; }
.je-qtext {
  font-family: var(--je-font-d); font-size: clamp(18px, 2.8vw, 33px);
  font-style: italic; line-height: 1.4; max-width: 720px; margin: 0 auto 14px;
}
.je-qjp { font-family: var(--je-font-j); font-size: 12px; letter-spacing: .24em; color: var(--je-kin); margin-bottom: 16px; }
.je-qattr { font-family: var(--je-font-u); font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: #555; }

/* ── FOOTER ── */
.je-footer { background: var(--je-sumi); color: var(--je-washi); padding: 60px 0 28px; }
.je-footer-grid {
  display: grid; grid-template-columns: 2.2fr 1fr 1fr 1.1fr;
  gap: 50px; padding-bottom: 44px; border-bottom: 1px solid #222; margin-bottom: 24px;
}
.je-fb .je-logo-main { color: var(--je-washi); font-size: 20px; margin-bottom: 4px; display: block; }
.je-fb .je-logo-sub { color: #444; display: block; margin-bottom: 16px; }
.je-fb p { font-size: 12px; color: #555; line-height: 1.9; max-width: 290px; }
.je-fsoc { display: flex; gap: 9px; margin-top: 18px; }
.je-fsi {
  width: 34px; height: 34px; border: 1px solid #2a2a2a;
  display: flex; align-items: center; justify-content: center;
  color: #666; font-size: 13px; cursor: pointer; transition: all .2s; text-decoration: none;
}
.je-fsi:hover { background: var(--je-aka); border-color: var(--je-aka); color: #fff; }
.je-fcol h4 {
  font-family: var(--je-font-u); font-size: 10px; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase; color: var(--je-kin);
  margin-bottom: 16px; padding-bottom: 9px; border-bottom: 1px solid #1e1e1e;
}
.je-fcol ul { list-style: none; padding: 0; }
.je-fcol ul li { font-size: 12px; color: #666; margin-bottom: 9px; cursor: pointer; transition: color .2s; }
.je-fcol ul li:hover, .je-fcol ul li a:hover { color: var(--je-washi); }
.je-fcol ul li a { color: #666; text-decoration: none; }
.je-fbot {
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--je-font-u); font-size: 10px; letter-spacing: .1em; color: #333;
}
.je-flinks { display: flex; gap: 16px; }
.je-flinks a, .je-flinks span { color: #333; text-decoration: none; cursor: pointer; transition: color .2s; }
.je-flinks a:hover, .je-flinks span:hover { color: #666; }

/* ── ANIMATIONS ── */
@keyframes je-fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
.je-hb-left > * { animation: je-fadeUp .75s ease both; }
.je-hb-left > *:nth-child(1) { animation-delay: .08s; }
.je-hb-left > *:nth-child(2) { animation-delay: .22s; }
.je-hb-left > *:nth-child(3) { animation-delay: .38s; }
.je-hb-left > *:nth-child(4) { animation-delay: .52s; }
.je-hb-left > *:nth-child(5) { animation-delay: .64s; }

/* ── RESPONSIVE ── */
@media (max-width: 1000px) {
  .je-hero-body { grid-template-columns: 1fr; }
  .je-hb-right { display: none; }
  .je-icon-strip { grid-template-columns: repeat(3, 1fr); height: auto; }
  .je-is-item { height: 160px; }
  .je-content-wrap { grid-template-columns: 1fr; gap: 40px; }
  .je-dest-grid { grid-template-columns: repeat(2, 1fr); }
  .je-ess-grid { grid-template-columns: repeat(3, 1fr); }
  .je-footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 680px) {
  :root { --je-pad: 18px; }
  .je-card-grid { grid-template-columns: 1fr 1fr; }
  .je-card-wide { grid-template-columns: 1fr; }
  .je-card-wide .je-cimg { height: 200px; }
  .je-topbar { display: none; }
  .je-ess-grid { grid-template-columns: repeat(2, 1fr); }
  .je-hsearch { display: none; }
  .je-icon-strip { grid-template-columns: repeat(2, 1fr); }
}
