/*
 * ヨルアートスクール LP スタイルシート
 * ファイル名: yoru-art-school-lp.css
 * テーマフォルダに配置してください
 */

/* ===== RESET & BASE ===== */
.yoru-lp *,
.yoru-lp *::before,
.yoru-lp *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #0e0c0a;
  --parchment: #f5f0e8;
  --warm-white: #faf8f4;
  --gold: #b8925a;
  --gold-light: #d4a96a;
  --charcoal: #2a2520;
  --mid-gray: #6b6259;
  --light-gray: #c8bfb2;
  --section-bg: #1a1612;
}

html { scroll-behavior: smooth; }

.yoru-lp {
  font-family: 'Noto Serif JP', serif;
  background: var(--ink);
  color: var(--parchment);
  overflow-x: hidden;
}

/* ===== FIXED CTA ===== */
.yoru-lp .fixed-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  animation: pulse-glow 3s ease-in-out infinite;
}
.yoru-lp .fixed-cta a {
  display: block;
  background: var(--gold);
  color: var(--ink);
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  padding: 14px 22px;
  text-decoration: none;
  border-radius: 2px;
  box-shadow: 0 4px 24px rgba(184,146,90,0.4);
  transition: all 0.3s ease;
}
.yoru-lp .fixed-cta a:hover {
  background: var(--gold-light);
  box-shadow: 0 6px 32px rgba(184,146,90,0.6);
  transform: translateY(-2px);
}
@keyframes pulse-glow {
  0%, 100% { filter: drop-shadow(0 0 0 rgba(184,146,90,0)); }
  50%       { filter: drop-shadow(0 0 8px rgba(184,146,90,0.5)); }
}

/* ===== HERO ===== */
.yoru-lp .hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 80px 40px;
}
.yoru-lp .hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 70% 50%, rgba(184,146,90,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 20%, rgba(139,74,43,0.08) 0%, transparent 60%);
}
.yoru-lp .hero-noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  background-size: 200px;
  opacity: 0.4;
  pointer-events: none;
}
.yoru-lp .hero-inner {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
}
.yoru-lp .hero-eyebrow {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 14px;
  letter-spacing: 0.3em;
  color: var(--gold);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 1s 0.2s forwards;
}
.yoru-lp .hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(42px, 7vw, 88px);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: 0.02em;
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 1s 0.4s forwards;
}
.yoru-lp .hero-title em {
  font-style: italic;
  color: var(--gold-light);
}
.yoru-lp .hero-subtitle {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: clamp(13px, 1.8vw, 16px);
  font-weight: 300;
  line-height: 2;
  color: var(--light-gray);
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeUp 1s 0.6s forwards;
}
.yoru-lp .hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeUp 1s 0.7s forwards;
}
.yoru-lp .badge {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.1em;
  padding: 6px 14px;
  border: 1px solid rgba(184,146,90,0.4);
  color: var(--gold);
  background: rgba(184,146,90,0.06);
  border-radius: 1px;
}
.yoru-lp .hero-cta-wrap {
  opacity: 0;
  animation: fadeUp 1s 0.9s forwards;
}
.yoru-lp .btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--ink);
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.12em;
  padding: 18px 44px;
  text-decoration: none;
  border-radius: 2px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.yoru-lp .btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}
.yoru-lp .btn-primary:hover::after { transform: translateX(100%); }
.yoru-lp .btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(184,146,90,0.4);
}
.yoru-lp .hero-limit {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 11px;
  color: var(--mid-gray);
  margin-top: 12px;
  letter-spacing: 0.08em;
}
.yoru-lp .hero-divider {
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(184,146,90,0.3), transparent);
}
.yoru-lp .hero-deco {
  position: absolute;
  right: -20px;
  bottom: 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(120px, 20vw, 280px);
  font-weight: 300;
  color: rgba(184,146,90,0.04);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.05em;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ===== COMMON ===== */
.yoru-lp section { position: relative; }
.yoru-lp .section-label {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 12px;
  letter-spacing: 0.4em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.yoru-lp .section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: 0.02em;
  margin-bottom: 24px;
}
.yoru-lp .container {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 40px;
}
.yoru-lp .section-pad { padding: 100px 0; }

/* ===== BEFORE/AFTER ===== */
.yoru-lp .ba-section {
  background: var(--section-bg);
  border-top: 1px solid rgba(184,146,90,0.15);
  border-bottom: 1px solid rgba(184,146,90,0.15);
}
.yoru-lp .ba-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin: 40px 0;
  border: 1px solid rgba(184,146,90,0.2);
}
.yoru-lp .ba-col { padding: 40px 36px; }
.yoru-lp .ba-col.before { background: rgba(0,0,0,0.3); }
.yoru-lp .ba-col.after  { background: rgba(184,146,90,0.05); }
.yoru-lp .ba-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  letter-spacing: 0.3em;
  color: var(--mid-gray);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.yoru-lp .ba-label.after-label { color: var(--gold); }
.yoru-lp .ba-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: currentColor;
  opacity: 0.3;
}
.yoru-lp .ba-list { list-style: none; }
.yoru-lp .ba-list li {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--light-gray);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  gap: 10px;
}
.yoru-lp .ba-list.after-list li { color: var(--parchment); }
.yoru-lp .ba-list li::before { content: '—'; color: var(--mid-gray); font-size: 12px; flex-shrink: 0; }
.yoru-lp .ba-list.after-list li::before { content: '✓'; color: var(--gold); font-family: sans-serif; }

/* ===== EXAMPLES ===== */
.yoru-lp .examples-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.yoru-lp .example-card {
  border: 1px solid rgba(184,146,90,0.15);
  background: rgba(184,146,90,0.03);
  overflow: hidden;
  transition: border-color 0.3s;
}
.yoru-lp .example-card:hover { border-color: rgba(184,146,90,0.4); }
.yoru-lp .example-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.yoru-lp .example-img {
  aspect-ratio: 4/5;
  position: relative;
  overflow: hidden;
  background: var(--charcoal);
}
.yoru-lp .example-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.yoru-lp .img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1e1a16 0%, #2a2218 100%);
}
.yoru-lp .img-placeholder span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  letter-spacing: 0.2em;
  color: rgba(184,146,90,0.3);
}
.yoru-lp .example-img-label {
  position: absolute;
  bottom: 8px;
  left: 8px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 9px;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.5);
  background: rgba(0,0,0,0.5);
  padding: 2px 6px;
}
.yoru-lp .example-info { padding: 20px; }
.yoru-lp .example-meta {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 10px;
}
.yoru-lp .example-comment {
  font-family: 'Noto Serif JP', serif;
  font-size: 12px;
  line-height: 1.9;
  color: var(--light-gray);
  font-weight: 300;
}
.yoru-lp .example-comment::before {
  content: '講師コメント ';
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 9px;
  letter-spacing: 0.1em;
  color: var(--mid-gray);
  display: block;
  margin-bottom: 4px;
}

/* ===== FEATURES ===== */
.yoru-lp .features-section { padding: 100px 0; }
.yoru-lp .features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 60px;
  border: 1px solid rgba(184,146,90,0.15);
}
.yoru-lp .feature-card {
  padding: 48px 36px;
  background: rgba(184,146,90,0.02);
  border-right: 1px solid rgba(184,146,90,0.1);
  transition: background 0.3s;
}
.yoru-lp .feature-card:last-child { border-right: none; }
.yoru-lp .feature-card:hover { background: rgba(184,146,90,0.06); }
.yoru-lp .feature-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 300;
  color: rgba(184,146,90,0.25);
  line-height: 1;
  margin-bottom: 20px;
}
.yoru-lp .feature-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 16px;
  font-weight: 500;
  color: var(--parchment);
  margin-bottom: 12px;
  line-height: 1.6;
}
.yoru-lp .feature-desc {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 13px;
  font-weight: 300;
  line-height: 2;
  color: var(--mid-gray);
}
.yoru-lp .feature-sub {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(184,146,90,0.1);
}
.yoru-lp .feature-sub-item {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 11px;
  font-weight: 300;
  color: var(--gold);
  letter-spacing: 0.05em;
  margin-top: 6px;
}

/* ===== PRICING ===== */
.yoru-lp .pricing-section {
  background: var(--section-bg);
  border-top: 1px solid rgba(184,146,90,0.15);
  border-bottom: 1px solid rgba(184,146,90,0.15);
  padding: 100px 0;
}
.yoru-lp .pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}
.yoru-lp .price-card {
  border: 1px solid rgba(184,146,90,0.2);
  padding: 40px 32px;
  position: relative;
  transition: all 0.3s;
}
.yoru-lp .price-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.yoru-lp .price-card.featured {
  border-color: var(--gold);
  background: rgba(184,146,90,0.06);
}
.yoru-lp .price-card.featured::before {
  content: 'おすすめ';
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--ink);
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  padding: 4px 16px;
}
.yoru-lp .price-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  letter-spacing: 0.25em;
  color: var(--gold);
  margin-bottom: 20px;
}
.yoru-lp .price-amount {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 300;
  color: var(--parchment);
  line-height: 1;
  margin-bottom: 4px;
}
.yoru-lp .price-amount span {
  font-size: 18px;
  margin-left: 4px;
  color: var(--light-gray);
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 300;
}
.yoru-lp .price-detail {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 12px;
  font-weight: 300;
  color: var(--mid-gray);
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(184,146,90,0.1);
  line-height: 1.8;
}
.yoru-lp .price-includes { list-style: none; }
.yoru-lp .price-includes li {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 12px;
  font-weight: 300;
  color: var(--light-gray);
  padding: 6px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.yoru-lp .price-includes li::before { content: '—'; color: var(--gold); font-size: 10px; }
.yoru-lp .price-note {
  text-align: center;
  margin-top: 32px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 12px;
  font-weight: 300;
  color: var(--mid-gray);
}

/* ===== FLOW ===== */
.yoru-lp .flow-section { padding: 100px 0; }
.yoru-lp .flow-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 60px;
  position: relative;
}
.yoru-lp .flow-steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(12.5% + 12px);
  right: calc(12.5% + 12px);
  height: 1px;
  background: linear-gradient(90deg, var(--gold), rgba(184,146,90,0.2), var(--gold), rgba(184,146,90,0.2));
}
.yoru-lp .flow-step { text-align: center; padding: 0 20px; }
.yoru-lp .flow-circle {
  width: 72px;
  height: 72px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  background: var(--ink);
  position: relative;
  z-index: 1;
  transition: all 0.3s;
}
.yoru-lp .flow-step:hover .flow-circle {
  background: rgba(184,146,90,0.1);
  box-shadow: 0 0 24px rgba(184,146,90,0.3);
}
.yoru-lp .flow-circle-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 300;
  color: var(--gold);
}
.yoru-lp .flow-step-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--parchment);
  margin-bottom: 8px;
}
.yoru-lp .flow-step-desc {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 11px;
  font-weight: 300;
  color: var(--mid-gray);
  line-height: 1.8;
}

/* ===== INSTRUCTOR ===== */
.yoru-lp .instructor-section {
  background: var(--section-bg);
  border-top: 1px solid rgba(184,146,90,0.15);
  padding: 100px 0;
}
.yoru-lp .instructor-inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
  margin-top: 60px;
}
.yoru-lp .instructor-photo {
  aspect-ratio: 3/4;
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}
.yoru-lp .instructor-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.yoru-lp .photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, #2a2218 0%, #1a1410 100%);
}
.yoru-lp .photo-icon {
  width: 80px; height: 80px;
  border: 1px solid rgba(184,146,90,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(184,146,90,0.3);
  font-size: 32px;
}
.yoru-lp .photo-note {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 12px 16px;
  background: rgba(0,0,0,0.6);
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 10px;
  color: var(--mid-gray);
  letter-spacing: 0.1em;
  text-align: center;
}
.yoru-lp .instructor-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 300;
  color: var(--parchment);
  margin-bottom: 8px;
}
.yoru-lp .instructor-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 32px;
}
.yoru-lp .instructor-achievements {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 40px;
}
.yoru-lp .achievement {
  border: 1px solid rgba(184,146,90,0.12);
  padding: 16px 18px;
  background: rgba(184,146,90,0.03);
}
.yoru-lp .achievement-label {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 9px;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 6px;
}
.yoru-lp .achievement-value {
  font-family: 'Noto Serif JP', serif;
  font-size: 13px;
  color: var(--parchment);
  line-height: 1.6;
}
.yoru-lp .instructor-quote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 300;
  color: var(--gold-light);
  line-height: 1.8;
  padding: 24px 0;
  border-top: 1px solid rgba(184,146,90,0.2);
  border-bottom: 1px solid rgba(184,146,90,0.2);
}

/* ===== EXHIBITION ===== */
.yoru-lp .exhibition-section { padding: 100px 0; }
.yoru-lp .exhibition-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}
.yoru-lp .exhibition-card {
  border: 1px solid rgba(184,146,90,0.12);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
}
.yoru-lp .exhibition-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 2px;
  height: 0;
  background: var(--gold);
  transition: height 0.4s ease;
}
.yoru-lp .exhibition-card:hover::before { height: 100%; }
.yoru-lp .exhibition-card:hover { border-color: rgba(184,146,90,0.3); }
.yoru-lp .exhibition-icon { font-size: 28px; margin-bottom: 20px; display: block; }
.yoru-lp .exhibition-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--parchment);
  margin-bottom: 10px;
}
.yoru-lp .exhibition-desc {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 12px;
  font-weight: 300;
  color: var(--mid-gray);
  line-height: 2;
}

/* ===== FAQ ===== */
.yoru-lp .faq-section {
  background: var(--section-bg);
  border-top: 1px solid rgba(184,146,90,0.15);
  padding: 100px 0;
}
.yoru-lp .faq-list { margin-top: 60px; }
.yoru-lp .faq-item { border-bottom: 1px solid rgba(184,146,90,0.12); overflow: hidden; }
.yoru-lp .faq-q {
  padding: 24px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  user-select: none;
}
.yoru-lp .faq-q-text {
  font-family: 'Noto Serif JP', serif;
  font-size: 15px;
  font-weight: 400;
  color: var(--parchment);
  line-height: 1.6;
}
.yoru-lp .faq-icon {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.3s;
  width: 24px;
  text-align: center;
}
.yoru-lp .faq-item.open .faq-icon { transform: rotate(45deg); }
.yoru-lp .faq-a {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: var(--mid-gray);
  line-height: 2.2;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding-bottom 0.3s;
}
.yoru-lp .faq-item.open .faq-a { max-height: 300px; padding-bottom: 24px; }

/* ===== CLOSING ===== */
.yoru-lp .closing-section {
  padding: 120px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.yoru-lp .closing-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(184,146,90,0.08) 0%, transparent 70%);
}
.yoru-lp .closing-vacancy {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(184,146,90,0.3);
  padding: 10px 24px;
  margin-bottom: 40px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--gold);
}
.yoru-lp .vacancy-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
  animation: blink 1.5s ease-in-out infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.2; }
}
.yoru-lp .closing-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 300;
  line-height: 1.4;
  margin-bottom: 20px;
  position: relative;
}
.yoru-lp .closing-sub {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: var(--mid-gray);
  margin-bottom: 48px;
  line-height: 2;
}

/* ===== FOOTER ===== */
.yoru-footer {
  border-top: 1px solid rgba(184,146,90,0.1);
  padding: 40px;
  text-align: center;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 11px;
  font-weight: 300;
  color: var(--mid-gray);
  letter-spacing: 0.1em;
  background: var(--ink);
}

/* ===== SCROLL REVEAL ===== */
.yoru-lp .reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.yoru-lp .reveal.visible { opacity: 1; transform: translateY(0); }
.yoru-lp .reveal-delay-1 { transition-delay: 0.1s; }
.yoru-lp .reveal-delay-2 { transition-delay: 0.2s; }
.yoru-lp .reveal-delay-3 { transition-delay: 0.3s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .yoru-lp .hero { padding: 80px 24px; }
  .yoru-lp .container { padding: 0 24px; }
  .yoru-lp .ba-grid { grid-template-columns: 1fr; }
  .yoru-lp .examples-grid { grid-template-columns: 1fr; }
  .yoru-lp .features-grid { grid-template-columns: 1fr; }
  .yoru-lp .pricing-grid { grid-template-columns: 1fr; }
  .yoru-lp .flow-steps { grid-template-columns: 1fr 1fr; }
  .yoru-lp .flow-steps::before { display: none; }
  .yoru-lp .instructor-inner { grid-template-columns: 1fr; gap: 40px; }
  .yoru-lp .instructor-achievements { grid-template-columns: 1fr; }
  .yoru-lp .exhibition-grid { grid-template-columns: 1fr; }
  .yoru-lp .hero-deco { display: none; }
}
