/* ============================================
   re:Grande — Ear Jewelry Page
   Inherits color palette from style.css
   Heavy use of motion / parallax / reveal
   ============================================ */

/* ---------- Reveal animation (page-specific overrides) ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s ease, transform .9s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ---------- Active nav state ---------- */
.nav a.is-active { color: var(--color-accent); position: relative; }
.nav a.is-active::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -4px;
  height: 2px; background: var(--color-accent);
  animation: ej-navUnderline .6s ease both;
}
@keyframes ej-navUnderline { from { transform: scaleX(0); transform-origin: left; } to { transform: scaleX(1); } }

/* ============================================
   HERO — Photo Wall (Ivory)
   ============================================ */
.ej-hero {
  position: relative;
  min-height: 100vh;
  padding: 0;
  background: var(--color-bg);
  overflow: hidden;
}
.ej-hero-bg-text {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-en);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(180px, 26vw, 420px);
  line-height: 0.85;
  color: rgba(79, 184, 201, 0.10);
  pointer-events: none;
  letter-spacing: -0.02em;
  white-space: nowrap;
  z-index: 1;
}
.ej-hero-grid {
  position: relative;
  z-index: 2;
  max-width: 1300px;
  margin: 0 auto;
  padding: 130px 5vw 80px;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(8, 40px);
  gap: 14px;
  height: 100vh;
  min-height: 720px;
}
.ej-hero-photo {
  overflow: hidden;
  border-radius: 3px;
  box-shadow: 0 30px 60px -25px rgba(46, 42, 38, 0.3);
  position: relative;
  opacity: 0;
  animation: ej-photoIn 1s cubic-bezier(.2,.7,.2,1) both;
}
.ej-hero-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1.2s ease;
}
.ej-hero-photo:hover img { transform: scale(1.06); }
.ej-hero-p1 { grid-column: 1/4;  grid-row: 1/5; animation-delay: .1s; }
.ej-hero-p2 { grid-column: 10/13; grid-row: 1/4; animation-delay: .25s; }
.ej-hero-p3 { grid-column: 1/4;  grid-row: 5/9; animation-delay: .55s; }
.ej-hero-p4 { grid-column: 10/13; grid-row: 5/9; animation-delay: .7s; }
@keyframes ej-photoIn {
  from { opacity: 0; transform: translateY(30px) scale(.95); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.ej-hero-text {
  grid-column: 4/10;
  grid-row: 2/8;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 50px 40px;
  position: relative;
  z-index: 3;
  background: rgba(244, 236, 216, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 4px;
  margin: 0 18px;
}
.ej-hero-kicker {
  font-family: var(--font-en);
  letter-spacing: 0.5em;
  font-size: 11px;
  text-transform: uppercase;
  color: var(--color-accent-dark);
  margin: 0 0 32px;
  animation: ej-fadeUp 1s ease .4s both;
}
.ej-hero-title {
  font-family: var(--font-jp-serif);
  font-weight: 300;
  color: var(--color-text);
  font-size: clamp(28px, 4.6vw, 64px);
  line-height: 1.5;
  letter-spacing: 0.08em;
  margin: 0 0 32px;
}
.ej-title-line {
  display: block;
  opacity: 0;
  transform: translateY(30px);
  filter: blur(8px);
  animation: ej-titleIn 1.1s cubic-bezier(.2,.7,.2,1) both,
             ej-titleFloat 5s ease-in-out infinite;
}
.ej-title-line-1 { animation-delay: .55s, 1.7s; }
.ej-title-line-2 { animation-delay: .85s, 2.0s; }
.ej-title-line-3 { animation-delay: 1.15s, 2.3s; }
@keyframes ej-titleIn {
  0%   { opacity: 0; transform: translateY(30px); filter: blur(8px); }
  60%  { opacity: 1; filter: blur(0); }
  100% { opacity: 1; transform: translateY(0); filter: blur(0); }
}
@keyframes ej-titleFloat {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-5px); }
}
.ej-hero-title .accent {
  font-family: var(--font-en);
  font-style: italic;
  font-weight: 400;
  display: inline-block;
  position: relative;
  background: linear-gradient(120deg,
    var(--color-accent) 0%,
    var(--color-accent-dark) 30%,
    #7DD3DF 50%,
    var(--color-accent-dark) 70%,
    var(--color-accent) 100%);
  background-size: 220% 100%;
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
          color: transparent;
  animation: ej-accentShimmer 5s linear infinite;
}
.ej-hero-title .accent::after {
  content: '';
  position: absolute;
  left: 0; bottom: -10px;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-accent-dark));
  transform: scaleX(0);
  transform-origin: left;
  animation: ej-accentUnderline 1.4s ease 1.7s forwards;
}
@keyframes ej-accentShimmer {
  0%   { background-position: 220% 0; }
  100% { background-position: -220% 0; }
}
@keyframes ej-accentUnderline {
  to { transform: scaleX(1); }
}
.ej-hero-lead {
  font-size: 13px;
  line-height: 2;
  letter-spacing: 0.08em;
  color: var(--color-text-soft);
  margin: 0 0 40px;
  max-width: 320px;
  animation: ej-fadeUp 1.2s ease .7s both;
}
.ej-hero-cta {
  display: inline-block;
  padding: 16px 38px;
  background: var(--color-accent);
  color: #fff;
  font-family: var(--font-en);
  letter-spacing: 0.18em;
  font-size: 13px;
  border-radius: 2px;
  transition: all .3s ease;
  animation: ej-fadeUp 1.3s ease .85s both;
}
.ej-hero-cta:hover {
  background: var(--color-text);
  color: var(--color-bg);
  transform: translateY(-2px);
  box-shadow: 0 16px 32px -10px rgba(46, 42, 38, .35);
}
@keyframes ej-fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Scroll indicator */
.ej-scroll {
  position: absolute;
  left: 50%; bottom: 24px;
  transform: translateX(-50%);
  font-family: var(--font-en);
  letter-spacing: 0.5em;
  font-size: 10px;
  text-transform: uppercase;
  color: var(--color-text-soft);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  z-index: 5;
  animation: ej-fadeUp 1s ease 1.2s both;
}
.ej-scroll::after {
  content: '';
  width: 1px; height: 36px;
  background: var(--color-text-soft);
  animation: ej-scrollLine 2s ease-in-out infinite;
}
@keyframes ej-scrollLine {
  0%,100% { transform: scaleY(.4); transform-origin: top; }
  50%     { transform: scaleY(1); transform-origin: top; }
}

@media (max-width: 860px) {
  .ej-hero-grid {
    grid-template-rows: repeat(6, 40px);
    height: auto;
    min-height: 580px;
    padding: 110px 5vw 60px;
  }
  .ej-hero-p1 { grid-column: 1/8;  grid-row: 1/3; }
  .ej-hero-p2 { grid-column: 8/13; grid-row: 1/3; }
  .ej-hero-text { grid-column: 1/13; grid-row: 3/5; padding: 30px 20px; }
  .ej-hero-p3 { grid-column: 1/8;  grid-row: 5/7; }
  .ej-hero-p4 { grid-column: 8/13; grid-row: 5/7; }
  .ej-hero-bg-text { font-size: clamp(120px, 32vw, 240px); }
}

/* ============================================
   Section common
   ============================================ */
.ej-section {
  padding: var(--section-py) 0;
  position: relative;
  overflow: hidden;
}
.ej-section .section-en {
  font-family: var(--font-en);
  font-size: 13px;
  letter-spacing: 0.5em;
  color: var(--color-accent-dark);
  text-transform: uppercase;
  text-align: center;
  margin: 0 0 14px;
}
.ej-section .section-title {
  font-family: var(--font-jp-serif);
  font-weight: 300;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.5;
  letter-spacing: 0.1em;
  text-align: center;
  margin: 0 0 48px;
}
.ej-section .accent {
  color: var(--color-accent);
  font-style: italic;
  font-family: var(--font-en);
  font-weight: 500;
}

/* ============================================
   WHAT IS
   ============================================ */
.ej-what { background: var(--color-surface); }
.ej-blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.ej-blob-1 {
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(224,242,245,.7), transparent 65%);
  animation: ej-blobDrift 12s ease-in-out infinite;
}
.ej-blob-2 {
  bottom: -150px; left: -100px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(235,224,198,.5), transparent 65%);
  animation: ej-blobDrift 14s ease-in-out infinite reverse;
}
@keyframes ej-blobDrift {
  0%,100% { transform: translate(0,0) scale(1); }
  50%     { transform: translate(30px, -20px) scale(1.05); }
}
.ej-what .container { position: relative; z-index: 1; }
.ej-what-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
  margin-top: 30px;
}
.ej-what-text p {
  font-size: 15px;
  line-height: 2.2;
  color: var(--color-text-soft);
  margin: 0 0 28px;
  letter-spacing: 0.06em;
}
.ej-num {
  font-family: var(--font-en);
  font-style: italic;
  font-size: 1.6em;
  color: var(--color-accent);
  font-weight: 500;
  margin: 0 4px;
}
.ej-what-tag {
  padding-top: 28px;
  border-top: 1px solid var(--color-border);
  font-family: var(--font-jp-serif);
  font-size: 16px !important;
  color: var(--color-text) !important;
  line-height: 2 !important;
}
.ej-what-visual {
  position: relative;
  max-width: 440px;
  justify-self: end;
  width: 100%;
  aspect-ratio: 4/5;
}
.ej-what-photo {
  width: 100%; height: 100%;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 40px 80px -30px rgba(46,42,38,.4);
}
.ej-what-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1.4s ease;
}
.ej-what-visual:hover .ej-what-photo img { transform: scale(1.06); }
.ej-what-badge {
  position: absolute;
  bottom: 28px; left: -32px;
  background: #fff;
  padding: 18px 26px;
  border-radius: 2px;
  display: flex;
  align-items: center;
  gap: 18px;
  box-shadow: 0 24px 50px -18px rgba(46,42,38,.3);
  border-left: 3px solid var(--color-accent);
  transition: transform .5s ease;
}
.ej-what-visual:hover .ej-what-badge {
  transform: translateY(-4px);
}
.ej-what-badge-num {
  font-family: var(--font-en);
  font-style: italic;
  font-size: 38px;
  font-weight: 500;
  color: var(--color-accent);
  line-height: 1;
}
.ej-what-badge-num sup {
  font-size: 18px;
  top: -.5em;
  margin-left: 2px;
}
.ej-what-badge-label {
  font-family: var(--font-en);
  font-size: 9.5px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-text-soft);
  line-height: 1.7;
}
@media (max-width: 860px) {
  .ej-what-grid { grid-template-columns: 1fr; gap: 60px; }
  .ej-what-visual { justify-self: center; }
  .ej-what-badge { left: 0; top: -20px; }
}

/* ============================================
   EFFECTS
   ============================================ */
.ej-effects {
  background: var(--color-bg);
}
.ej-effects-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 60px;
}
.ej-effect-card {
  background: var(--color-surface);
  padding: 50px 28px 40px;
  border-radius: 4px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform .5s ease, box-shadow .5s ease;
  border: 1px solid var(--color-border);
}
.ej-effect-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 0;
  background: linear-gradient(180deg, var(--color-accent) 0%, transparent 100%);
  opacity: 0.06;
  transition: height .5s ease;
}
.ej-effect-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px -25px rgba(46,42,38,.25);
}
.ej-effect-card:hover::before { height: 100%; }
.ej-effect-icon {
  width: 64px; height: 64px;
  margin: 0 auto 24px;
  color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.ej-effect-icon svg { width: 100%; height: 100%; }
.ej-effect-card h3 {
  font-family: var(--font-jp-serif);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.1em;
  margin: 0 0 14px;
  position: relative;
  z-index: 1;
}
.ej-effect-card p {
  font-size: 13px;
  line-height: 1.9;
  color: var(--color-text-soft);
  margin: 0;
  letter-spacing: 0.04em;
  position: relative;
  z-index: 1;
}
@media (max-width: 860px) {
  .ej-effects-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .ej-effects-grid { grid-template-columns: 1fr; gap: 18px; }
}

/* ============================================
   PHOTO MARQUEE
   ============================================ */
.ej-marquee {
  overflow: hidden;
  padding: 0;
  background: var(--color-bg);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  position: relative;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}
.ej-marquee-track {
  display: flex;
  width: max-content;
  animation: ej-marqueeScroll 40s linear infinite;
}
.ej-marquee-track:hover { animation-play-state: paused; }
.ej-marquee-group {
  display: flex;
  flex: 0 0 auto;
  gap: 14px;
  padding: 22px 7px;
}
.ej-marquee-group img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 4px;
  transition: transform .5s ease, filter .5s ease;
  filter: saturate(.95);
}
.ej-marquee-group img:hover {
  transform: scale(1.05);
  filter: saturate(1.15);
}
@keyframes ej-marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (max-width: 720px) {
  .ej-marquee-group img { width: 150px; height: 150px; }
  .ej-marquee-track { animation-duration: 32s; }
}

/* ============================================
   MAGLEIN
   ============================================ */
.ej-maglein { background: var(--color-surface); }
.ej-maglein-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
}
.ej-maglein-text .section-en { text-align: left; margin-bottom: 18px; }
.ej-maglein-text .section-title { text-align: left; margin-bottom: 32px; }
.ej-maglein-text .section-body {
  font-size: 14px;
  line-height: 2.2;
  color: var(--color-text-soft);
  margin-bottom: 36px;
  letter-spacing: 0.05em;
}
.ej-maglein-text strong { color: var(--color-accent-dark); font-weight: 500; }
.ej-maglein-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}
.ej-maglein-features li {
  font-size: 14px;
  letter-spacing: 0.06em;
  display: flex;
  align-items: baseline;
  gap: 12px;
  line-height: 1.7;
}
.ej-maglein-features small {
  font-size: 11px;
  color: var(--color-text-soft);
  margin-left: 6px;
}
.ej-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--color-accent);
  color: #fff;
  font-size: 11px;
  flex: 0 0 auto;
  position: relative;
  top: 4px;
}
.ej-maglein-visual {
  position: relative;
  max-width: 440px;
  width: 100%;
  aspect-ratio: 1;
  justify-self: center;
}
.ej-maglein-photo {
  width: 100%; height: 100%;
  overflow: hidden;
  border-radius: 50%;
  box-shadow: 0 40px 80px -30px rgba(46,42,38,.4);
}
.ej-maglein-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ej-maglein-stamp {
  position: absolute;
  bottom: 30px; right: -20px;
  background: var(--color-accent);
  color: #fff;
  width: 130px; height: 130px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 20px 40px -15px rgba(79,184,201,.5);
  animation: ej-stampPulse 3s ease-in-out infinite;
}
.ej-stamp-en {
  font-family: var(--font-en);
  font-style: italic;
  font-size: 14px;
  letter-spacing: 0.1em;
  line-height: 1.2;
}
.ej-stamp-jp {
  font-family: var(--font-jp-serif);
  font-size: 9px;
  letter-spacing: 0.1em;
  margin-top: 6px;
  opacity: .9;
}
@keyframes ej-stampPulse {
  0%,100% { transform: scale(1); }
  50%     { transform: scale(1.05); }
}
@media (max-width: 860px) {
  .ej-maglein-grid { grid-template-columns: 1fr; gap: 60px; }
  .ej-maglein-text .section-en, .ej-maglein-text .section-title { text-align: center; }
  .ej-maglein-features { max-width: 360px; margin: 0 auto; }
}

/* ============================================
   KIDS JEWELRY
   ============================================ */
.ej-kids {
  background: var(--color-bg);
  position: relative;
  overflow: hidden;
}
.ej-kids-blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.ej-kids-blob-1 {
  top: -100px; left: -80px;
  width: 460px; height: 460px;
  background: radial-gradient(circle, rgba(254, 215, 226, 0.4), transparent 65%);
  animation: ej-blobDrift 13s ease-in-out infinite;
}
.ej-kids-blob-2 {
  bottom: -120px; right: -60px;
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(224, 242, 245, 0.55), transparent 65%);
  animation: ej-blobDrift 15s ease-in-out infinite reverse;
}
.ej-kids .container { position: relative; z-index: 1; }
.ej-kids-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
  margin-top: 30px;
}
.ej-kids-visual {
  position: relative;
  max-width: 440px;
  width: 100%;
  aspect-ratio: 4/5;
  justify-self: start;
}
.ej-kids-photo {
  width: 100%; height: 100%;
  overflow: hidden;
  border-radius: 200px 8px 8px 200px;
  box-shadow: 0 40px 80px -30px rgba(46, 42, 38, 0.4);
  position: relative;
}
.ej-kids-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1.6s ease;
}
.ej-kids-visual:hover .ej-kids-photo img { transform: scale(1.05); }
.ej-kids-badge {
  position: absolute;
  bottom: 24px; right: -24px;
  background: #fff;
  padding: 16px 22px;
  border-radius: 999px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 20px 40px -15px rgba(46, 42, 38, 0.25);
  border: 2px solid var(--color-accent);
  animation: ej-kidsBadgeBounce 3s ease-in-out infinite;
}
@keyframes ej-kidsBadgeBounce {
  0%, 100% { transform: translateY(0) rotate(-3deg); }
  50%      { transform: translateY(-6px) rotate(2deg); }
}
.ej-kids-badge-en {
  font-family: var(--font-en);
  font-style: italic;
  font-size: 14px;
  letter-spacing: 0.1em;
  color: var(--color-accent-dark);
  font-weight: 500;
}
.ej-kids-badge-jp {
  font-family: var(--font-jp-serif);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--color-text);
  margin-top: 2px;
}
.ej-kids-deco {
  position: absolute;
  font-family: var(--font-en);
  color: var(--color-accent);
  pointer-events: none;
  animation: ej-twinkle 2.4s ease-in-out infinite;
}
.ej-kids-deco-1 { top: 8%; right: -14px; font-size: 22px; animation-delay: 0s; }
.ej-kids-deco-2 { top: 50%; left: -22px; font-size: 18px; animation-delay: 0.6s; color: var(--color-accent-dark); }
.ej-kids-deco-3 { bottom: 24%; right: 6%; font-size: 16px; animation-delay: 1.2s; }
@keyframes ej-twinkle {
  0%, 100% { transform: scale(0.7) rotate(0); opacity: 0.4; }
  50%      { transform: scale(1.2) rotate(15deg); opacity: 1; }
}
.ej-kids-text { padding-left: 20px; }
.ej-kids-text .section-en { text-align: left; margin: 0 0 14px; }
.ej-kids-text .section-title { text-align: left; margin: 0 0 28px; }
.ej-kids-lead {
  font-size: 15px;
  line-height: 2.1;
  color: var(--color-text-soft);
  margin: 0 0 36px;
  letter-spacing: 0.06em;
}
.ej-kids-features {
  list-style: none;
  padding: 0;
  margin: 0 0 40px;
  display: grid;
  gap: 14px;
}
.ej-kids-features li {
  font-size: 14px;
  letter-spacing: 0.05em;
  display: flex;
  align-items: baseline;
  gap: 12px;
  line-height: 1.7;
  color: var(--color-text);
}
.ej-kids-features strong {
  color: var(--color-accent-dark);
  font-weight: 500;
}
.ej-kids-price {
  margin-top: 36px;
}
.ej-kids-price-tag {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  background: var(--color-surface);
  padding: 22px 40px;
  border-radius: 4px;
  border: 1px dashed var(--color-accent);
  position: relative;
}
.ej-kids-price-tag::before, .ej-kids-price-tag::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 14px; height: 14px;
  background: var(--color-bg);
  border-radius: 50%;
  transform: translateY(-50%);
}
.ej-kids-price-tag::before { left: -7px; }
.ej-kids-price-tag::after  { right: -7px; }
.ej-kids-price-label {
  font-family: var(--font-en);
  font-style: italic;
  font-size: 13px;
  color: var(--color-accent-dark);
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}
.ej-kids-price-amount {
  font-family: var(--font-en);
  font-size: 36px;
  color: var(--color-text);
  font-weight: 500;
  line-height: 1;
  margin-bottom: 6px;
}
.ej-kids-price-note {
  font-family: var(--font-jp-serif);
  font-size: 11px;
  color: var(--color-text-soft);
  letter-spacing: 0.05em;
}
@media (max-width: 860px) {
  .ej-kids-grid { grid-template-columns: 1fr; gap: 60px; }
  .ej-kids-visual { justify-self: center; }
  .ej-kids-text { padding-left: 0; text-align: center; }
  .ej-kids-text .section-en, .ej-kids-text .section-title { text-align: center; }
  .ej-kids-features { max-width: 360px; margin-left: auto; margin-right: auto; }
}

/* ============================================
   MENU
   ============================================ */
.ej-menu { background: var(--color-bg); }
.ej-menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 50px;
}
.ej-menu-card {
  background: var(--color-surface);
  padding: 50px 36px 42px;
  border-radius: 4px;
  text-align: center;
  position: relative;
  border: 1px solid var(--color-border);
  transition: transform .5s ease, box-shadow .5s ease, border-color .5s ease;
}
.ej-menu-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 40px 70px -30px rgba(46,42,38,.3);
  border-color: rgba(79,184,201,.4);
}
.ej-menu-featured {
  background: linear-gradient(180deg, #fff 0%, var(--color-surface) 100%);
  border: 1px solid rgba(79,184,201,.4);
  transform: translateY(-12px);
}
.ej-menu-featured:hover { transform: translateY(-22px); }
.ej-menu-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--color-accent);
  color: #fff;
  font-family: var(--font-en);
  font-size: 11px;
  letter-spacing: 0.25em;
  padding: 6px 18px;
  border-radius: 999px;
  text-transform: uppercase;
  box-shadow: 0 8px 20px -8px rgba(79,184,201,.5);
}
.ej-menu-cat {
  font-family: var(--font-en);
  font-style: italic;
  font-size: 14px;
  color: var(--color-accent-dark);
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}
.ej-menu-card h3 {
  font-family: var(--font-jp-serif);
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.1em;
  margin: 0 0 18px;
}
.ej-menu-desc {
  font-size: 13px;
  color: var(--color-text-soft);
  line-height: 1.9;
  letter-spacing: 0.05em;
  margin: 0 0 28px;
  min-height: 50px;
}
.ej-menu-price em {
  font-family: var(--font-en);
  font-style: normal;
  font-size: 32px;
  color: var(--color-text);
  letter-spacing: 0.04em;
  font-weight: 500;
  display: inline-block;
  padding-top: 16px;
  border-top: 1px solid var(--color-border);
}
.ej-bonus {
  margin: 70px auto 0;
  max-width: 560px;
  background: var(--color-surface);
  border: 1px dashed var(--color-accent);
  border-radius: 4px;
  padding: 28px 36px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.ej-bonus-icon {
  font-size: 32px;
  color: var(--color-accent);
  line-height: 1;
}
.ej-bonus-title {
  font-family: var(--font-jp-serif);
  font-size: 15px;
  letter-spacing: 0.1em;
  color: var(--color-text);
  margin: 0 0 4px;
}
.ej-bonus-text p {
  font-size: 13px;
  color: var(--color-text-soft);
  margin: 0;
  letter-spacing: 0.05em;
}
.ej-bonus-text strong { color: var(--color-accent-dark); font-weight: 500; }
@media (max-width: 860px) {
  .ej-menu-grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
  .ej-menu-featured { transform: translateY(0); }
  .ej-menu-featured:hover { transform: translateY(-10px); }
}

/* ============================================
   PROCESS
   ============================================ */
.ej-process { background: var(--color-surface); }
.ej-process-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 60px;
  position: relative;
}
.ej-process-list::before {
  content: '';
  position: absolute;
  top: 32px; left: 8%; right: 8%;
  height: 1px;
  background: repeating-linear-gradient(90deg, var(--color-accent) 0 4px, transparent 4px 10px);
  z-index: 0;
}
.ej-step {
  text-align: center;
  position: relative;
  padding-top: 70px;
}
.ej-step-num {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--color-bg);
  border: 1px solid var(--color-accent);
  color: var(--color-accent);
  font-family: var(--font-en);
  font-style: italic;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.05em;
  z-index: 1;
  transition: all .4s ease;
}
.ej-step:hover .ej-step-num {
  background: var(--color-accent);
  color: #fff;
  transform: translateX(-50%) scale(1.1);
}
.ej-step h3 {
  font-family: var(--font-jp-serif);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.1em;
  margin: 0 0 14px;
}
.ej-step p {
  font-size: 13px;
  line-height: 1.9;
  color: var(--color-text-soft);
  margin: 0;
  letter-spacing: 0.04em;
}
@media (max-width: 860px) {
  .ej-process-list { grid-template-columns: 1fr 1fr; }
  .ej-process-list::before { display: none; }
}
@media (max-width: 480px) {
  .ej-process-list { grid-template-columns: 1fr; }
}

/* ============================================
   NOTES
   ============================================ */
.ej-notes { background: var(--color-bg); padding: 80px 0; }
.ej-notes-box {
  max-width: 760px;
  margin: 0 auto;
  background: var(--color-surface);
  border-left: 3px solid var(--color-accent);
  padding: 50px 56px;
  border-radius: 2px;
  box-shadow: 0 30px 60px -30px rgba(46,42,38,.2);
}
.ej-notes-box .section-en { text-align: left; margin: 0 0 14px; }
.ej-notes-title {
  font-family: var(--font-jp-serif);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.1em;
  margin: 0 0 28px;
  color: var(--color-text);
}
.ej-notes-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}
.ej-notes-list li {
  font-size: 13px;
  line-height: 1.9;
  color: var(--color-text-soft);
  letter-spacing: 0.04em;
  padding-left: 22px;
  position: relative;
}
.ej-notes-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 11px;
  width: 8px; height: 1px;
  background: var(--color-accent);
}
@media (max-width: 720px) {
  .ej-notes-box { padding: 36px 28px; }
}

/* ============================================
   CTA
   ============================================ */
.ej-cta {
  padding: 130px 32px;
  text-align: center;
  background:
    radial-gradient(ellipse at 30% 30%, rgba(79,184,201,.15) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 70%, rgba(244,236,216,.6) 0%, transparent 60%),
    var(--color-surface);
  position: relative;
  overflow: hidden;
}
.ej-cta::before, .ej-cta::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(79,184,201,.18), transparent 70%);
}
.ej-cta::before { top: -80px; left: 5%; width: 280px; height: 280px; animation: ej-blobDrift 10s ease-in-out infinite; }
.ej-cta::after { bottom: -120px; right: 5%; width: 360px; height: 360px; animation: ej-blobDrift 13s ease-in-out infinite reverse; }
.ej-cta-inner { position: relative; z-index: 1; }
.ej-cta-title {
  font-family: var(--font-jp-serif);
  font-weight: 300;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.5;
  letter-spacing: 0.12em;
  margin: 16px 0 24px;
}
.ej-cta-lead {
  font-size: 14px;
  color: var(--color-text-soft);
  letter-spacing: 0.08em;
  line-height: 2;
  margin: 0 0 40px;
}
.ej-cta-btn { font-size: 14px; letter-spacing: 0.18em; }
