/* ============================================
   Section-specific styles
   ============================================ */

/* CTA row layout */
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: stretch;
}
.cta-row .btn {
  flex: 1 1 240px;
  padding: 16px 24px;
  min-height: 64px;
}
.cta-row .cta-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.2;
}
.cta-row .cta-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  opacity: 0.75;
}
.cta-row strong {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.cta-row .btn-tel strong { font-family: var(--font-en); font-style: normal; font-size: 19px; }

/* ============================================
   HERO V1 — brochure style
   ============================================ */
.hero { position: relative; padding: 32px 24px 80px; min-height: 90vh; overflow: hidden; }
.hero-bg-ornament { position: absolute; inset: 0; pointer-events: none; }
.ornament-line { position: absolute; background: var(--green-pale); }
.ornament-line-1 { top: 0; right: 8%; width: 1px; height: 60%; }
.ornament-line-2 { bottom: 0; left: 12%; width: 60%; height: 1px; }
.corner-mark { position: absolute; font-family: var(--font-mono); color: var(--line-soft); font-size: 16px; }
.corner-mark.tl { top: 24px; left: 24px; }
.corner-mark.tr { top: 24px; right: 24px; }
.corner-mark.bl { bottom: 24px; left: 24px; }
.corner-mark.br { bottom: 24px; right: 24px; }

.hero-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
  padding-top: 40px;
}
.hero-copy { animation-delay: 0.1s; }
.hero-brand { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 32px; }
.brand-spark { color: var(--green-primary); width: 28px; height: 28px; margin-top: 4px; }
.hero-tag { display: block; color: var(--green-deep); font-size: 13px; letter-spacing: 0.16em; margin-bottom: 4px; }
.hero-tag.light { color: rgba(255,255,255,0.85); }
.hero-pretitle { margin: 0; color: var(--ink-soft); font-size: 14px; font-family: var(--font-serif); letter-spacing: 0.08em; }

.hero-title {
  font-size: clamp(28px, 4.2vw, 48px);
  line-height: 1.4;
  margin: 0 0 20px;
  letter-spacing: 0.01em;
  color: var(--ink);
}
.hero-title span { display: block; white-space: nowrap; }
.hero-title .accent-q { color: var(--accent-orange); font-style: normal; font-family: var(--font-en); font-size: 1.1em; padding-left: 4px; }
.hero-title.light { color: #fff; }

.hero-subtitle {
  font-size: clamp(15px, 1.6vw, 19px);
  color: var(--ink-soft);
  margin-bottom: 36px;
  line-height: 1.9;
}
.hero-subtitle.light { color: rgba(255,255,255,0.92); }

.hero-bullets { list-style: none; padding: 0; margin: 0 0 36px; display: grid; gap: 12px; }
.hero-bullets li { display: flex; gap: 10px; align-items: flex-start; font-size: 15px; color: var(--ink-soft); }
.hero-bullets svg { width: 20px; height: 20px; color: var(--green-primary); flex-shrink: 0; margin-top: 3px; }

.hero-cta-note { margin: 16px 0 0; font-size: 13px; color: var(--ink-mute); }
.hero-cta-note strong { color: var(--accent-orange); font-weight: 700; }

.hero-portrait { position: relative; }
.hero-img-main {
  aspect-ratio: 4 / 5;
  border-radius: 8px;
  border: 8px solid var(--paper);
  box-shadow: var(--shadow-card);
  font-size: 12px;
  color: var(--green-deep);
}
.hero-badge {
  position: absolute;
  bottom: -32px;
  left: -32px;
  background: var(--green-pale);
  border: 1px solid var(--green-light);
  border-radius: 12px;
  padding: 16px 20px;
  max-width: 280px;
  display: flex;
  gap: 12px;
  box-shadow: var(--shadow-soft);
  transform: rotate(-1.5deg);
}
.hero-badge svg { width: 24px; height: 24px; color: var(--green-deep); flex-shrink: 0; margin-top: 4px; }
.hero-badge small { display: block; font-size: 11px; color: var(--ink-soft); line-height: 1.6; }
.hero-badge strong { display: block; font-family: var(--font-serif); font-size: 16px; color: var(--green-deep); margin: 2px 0; }

.hero-tape {
  position: absolute;
  top: -16px;
  right: 16px;
  background: var(--accent-orange);
  color: #fff;
  padding: 6px 18px;
  font-size: 11px;
  letter-spacing: 0.12em;
  transform: rotate(3deg);
  box-shadow: var(--shadow-soft);
}

/* ============================================
   HERO V2 — full-bleed
   ============================================ */
.hero-v2 { padding: 0; min-height: 90vh; }
.hero-v2-bg { position: absolute; inset: 0; }
.hero-fullbleed { width: 100%; height: 100%; border: none; }
.hero-v2-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(45,55,30,0.55) 0%, rgba(45,55,30,0.25) 100%);
}
.hero-v2-content {
  position: relative;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 120px 24px 80px;
  z-index: 2;
  color: #fff;
  max-width: 720px;
}
.hero-v2 .hero-cta { margin-top: 32px; }

/* ============================================
   HERO V3 — vertical text
   ============================================ */
.hero-v3 { padding: 60px 24px 80px; }
.hero-v3-grid {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 56px;
  align-items: start;
}
.hero-v3-vertical { display: flex; justify-content: center; }
.vertical-title {
  writing-mode: vertical-rl;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.8;
  letter-spacing: 0.15em;
  color: var(--ink);
  margin: 0;
  padding: 0 12px;
  border-right: 1px solid var(--line-dot);
  max-height: 600px;
}
.hero-v3-lead {
  font-size: clamp(20px, 2.4vw, 28px);
  line-height: 1.8;
  color: var(--ink-soft);
  margin: 16px 0 32px;
}
.hero-v3-portrait {
  aspect-ratio: 16 / 10;
  margin-bottom: 24px;
  border-radius: 4px;
}
.hero-v3-quote {
  background: var(--green-mist);
  padding: 20px 24px;
  border-left: 3px solid var(--green-primary);
  font-size: 15px;
  margin: 0 0 24px;
  color: var(--ink-soft);
}

/* ============================================
   EMPATHY
   ============================================ */
.section-empathy { background: var(--paper); }
.empathy-head { text-align: center; margin-bottom: 48px; }
.empathy-head .eyebrow { justify-content: center; }
.empathy-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 880px;
  margin: 0 auto;
}
.empathy-card {
  background: var(--cream);
  border: 1px dashed var(--line-dot);
  padding: 24px;
  border-radius: 4px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.empathy-num {
  font-size: 28px;
  color: var(--accent-orange);
  font-weight: 600;
  line-height: 1;
}
.empathy-card p { margin: 0; font-size: 17px; line-height: 1.7; color: var(--ink); }

.empathy-bridge { text-align: center; margin-top: 64px; }
.bridge-divider { width: 1px; height: 56px; background: var(--line-dot); margin: 0 auto 24px; }
.bridge-text { font-size: clamp(18px, 2.4vw, 26px); color: var(--ink); margin: 0; line-height: 1.8; }
.bridge-text strong { color: var(--green-deep); border-bottom: 2px solid var(--accent-orange); padding-bottom: 2px; }

/* ============================================
   WHAT IS
   ============================================ */
.section-whatis { background: var(--cream); }
.whatis-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.whatis-def {
  font-size: 18px;
  color: var(--green-deep);
  margin: 8px 0 24px;
  padding: 12px 0;
  border-top: 1px solid var(--line-dot);
  border-bottom: 1px solid var(--line-dot);
}
.whatis-body { color: var(--ink-soft); margin-bottom: 16px; line-height: 1.9; }
.whatis-body strong { color: var(--ink); border-bottom: 1px solid var(--green-light); }

.whatis-stats { display: flex; gap: 32px; margin-top: 32px; flex-wrap: wrap; }
.stat { display: flex; flex-direction: column; }
.stat-num {
  font-size: 36px;
  line-height: 1;
  height: 36px;
  display: flex;
  align-items: flex-end;
  color: var(--green-primary);
  font-weight: 600;
}
.stat-num-jp { font-size: 28px; font-style: normal; letter-spacing: 0.04em; }
.stat-num small { font-size: 14px; color: var(--ink-mute); margin-left: 4px; }
.stat-label { font-size: 12px; color: var(--ink-mute); margin-top: 4px; }

.whatis-visual { position: relative; display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: auto auto; gap: 12px; }
.whatis-img-1 { grid-column: 1 / 3; aspect-ratio: 16 / 10; border-radius: 4px; }
.whatis-img-2 { aspect-ratio: 4 / 3; border-radius: 4px; }
.whatis-callout {
  display: flex; gap: 12px; align-items: flex-start;
  background: var(--green-mist);
  border: 1px solid var(--green-light);
  border-radius: 8px;
  padding: 16px;
  align-self: center;
}
.whatis-callout svg { color: var(--green-deep); width: 24px; height: 24px; flex-shrink: 0; margin-top: 4px; }
.whatis-callout p { margin: 0; font-size: 14px; line-height: 1.6; color: var(--green-deep); }
.whatis-callout small { color: var(--ink-soft); }

/* ============================================
   COURSES
   ============================================ */
.section-courses { background: var(--paper); }
.courses-head { text-align: center; margin-bottom: 56px; }
.courses-head .eyebrow { justify-content: center; }
.courses-head .section-sub { margin-left: auto; margin-right: auto; }

.courses-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 880px;
  margin: 0 auto;
}
.course-card {
  background: var(--cream);
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  padding: 28px;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.course-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.course-card.featured {
  background: var(--green-mist);
  border-color: var(--green-primary);
  border-width: 2px;
}
.course-ribbon {
  position: absolute;
  top: -10px; right: 20px;
  background: var(--accent-orange);
  color: #fff;
  padding: 4px 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  border-radius: 999px;
  box-shadow: var(--shadow-soft);
}
.course-tag { font-size: 12px; color: var(--green-deep); letter-spacing: 0.18em; }
.course-title { font-size: 22px; line-height: 1.5; margin: 8px 0 12px; }
.course-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; margin-bottom: 16px; }
.course-target { font-size: 12px; color: var(--ink-mute); }
.course-img { aspect-ratio: 4 / 3; border-radius: 6px; margin-bottom: 16px; }
.course-desc { font-size: 13.5px; color: var(--ink-soft); line-height: 1.85; margin: 0 0 16px; }
.course-points { list-style: none; padding: 0; margin: 0 0 24px; display: grid; gap: 8px; }
.course-points li { display: flex; gap: 8px; align-items: center; font-size: 13px; color: var(--ink); }
.course-points svg { width: 16px; height: 16px; color: var(--green-primary); }
.course-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 600;
  color: var(--green-deep);
  border-bottom: 1px solid var(--green-light);
  padding-bottom: 2px;
}
.course-link svg { width: 16px; height: 16px; transition: transform 0.2s; }
.course-link:hover svg { transform: translateX(4px); }

.courses-urgency {
  margin-top: 48px;
  background: var(--green-mist);
  border: 1px dashed var(--green-primary);
  padding: 24px 28px;
  border-radius: 8px;
  display: flex;
  gap: 16px;
  align-items: center;
}
.courses-urgency > svg { color: var(--accent-orange); width: 28px; height: 28px; flex-shrink: 0; }
.courses-urgency strong { display: block; color: var(--ink); font-size: 16px; }
.courses-urgency p { margin: 4px 0 0; font-size: 13px; color: var(--ink-soft); }
.courses-urgency > div { flex: 1; }

/* ============================================
   VOICE
   ============================================ */
.section-voice { background: var(--cream); }
.voice-head { text-align: center; margin-bottom: 56px; }
.voice-head .eyebrow { justify-content: center; }
.voice-head .section-sub { margin: 0 auto; }
.voice-list { display: grid; gap: 32px; }
.voice-card {
  background: var(--paper);
  border-radius: 12px;
  padding: 28px;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 32px;
  border: 1px solid var(--line-soft);
}
.voice-card:nth-child(even) { grid-template-columns: 1fr 280px; }
.voice-card:nth-child(even) .voice-card-img { order: 2; }

.voice-card-img { position: relative; }
.voice-img { aspect-ratio: 4 / 5; border-radius: 8px; }
.voice-stat {
  position: absolute;
  bottom: -12px; right: -12px;
  background: var(--green-primary);
  color: #fff;
  padding: 12px 16px;
  border-radius: 999px;
  text-align: center;
  box-shadow: var(--shadow-soft);
}
.voice-stat-v { font-size: 22px; font-weight: 600; line-height: 1; display: block; }
.voice-stat-l { font-size: 10px; opacity: 0.9; letter-spacing: 0.06em; }

.voice-card-meta { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; margin-bottom: 8px; }
.voice-profile { font-size: 12px; color: var(--ink-mute); }
.voice-name { font-size: 14px; color: var(--green-deep); margin: 4px 0 8px; font-weight: 500; }
.voice-title { font-size: clamp(20px, 2.2vw, 26px); margin: 0 0 16px; line-height: 1.5; color: var(--ink); display: flex; gap: 8px; align-items: flex-start; }
.quote-mark { width: 28px; height: 28px; color: var(--green-light); flex-shrink: 0; margin-top: 4px; }
.voice-body { font-size: 14px; line-height: 1.95; color: var(--ink-soft); margin: 0; }
.voice-disclaimer {
  margin: 32px 0 0;
  font-size: 11px;
  color: var(--ink-mute);
  text-align: center;
  line-height: 1.7;
}

/* ============================================
   DIRECTOR
   ============================================ */
.section-director { background: var(--paper); }
.director-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.director-visual { position: relative; }
.director-img-main { aspect-ratio: 4 / 5; border-radius: 4px; }
.director-card {
  position: absolute;
  bottom: -32px; right: -24px;
  background: var(--paper);
  border: 1px dashed var(--line-dot);
  padding: 20px 24px;
  border-radius: 4px;
  max-width: 320px;
  box-shadow: var(--shadow-card);
}
.director-card .en { color: var(--green-deep); font-size: 12px; letter-spacing: 0.12em; }
.director-quote { font-size: 17px; line-height: 1.8; color: var(--ink); margin: 8px 0 0; }

.director-list { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 24px; }
.director-list li { display: flex; gap: 16px; }
.director-num {
  font-size: 28px;
  color: var(--accent-orange);
  font-weight: 600;
  line-height: 1;
  flex-shrink: 0;
}
.director-list h4 { margin: 0 0 8px; font-size: 18px; color: var(--ink); }
.director-list p { margin: 0; font-size: 14px; color: var(--ink-soft); line-height: 1.85; }

/* ============================================
   FAQ
   ============================================ */
.section-faq { background: var(--cream); }
.faq-container { max-width: 820px; }
.faq-head { text-align: center; margin-bottom: 40px; }
.faq-head .eyebrow { justify-content: center; }
.faq-list { display: grid; gap: 12px; }
.faq-item { background: var(--paper); border: 1px solid var(--line-soft); border-radius: 8px; overflow: hidden; }
.faq-item.open { border-color: var(--green-primary); }
.faq-q {
  width: 100%;
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 18px 20px;
  text-align: left;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
}
.faq-q-mark { color: var(--green-primary); font-size: 18px; flex-shrink: 0; }
.faq-q-text { flex: 1; }
.faq-q-toggle {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--green-mist);
  color: var(--green-deep);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.faq-q-toggle svg { width: 16px; height: 16px; }
.faq-q-toggle .i-toggle-open { display: none; }
.faq-q-toggle .i-toggle-closed { display: block; }
.faq-item.open .faq-q-toggle .i-toggle-open { display: block; }
.faq-item.open .faq-q-toggle .i-toggle-closed { display: none; }
.faq-a-wrap {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.32s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.faq-item.open .faq-a-wrap { max-height: 600px; }
.faq-a {
  display: flex;
  gap: 14px;
  padding: 0 20px 20px 20px;
  align-items: flex-start;
}
.faq-a-mark { color: var(--accent-orange); font-size: 18px; flex-shrink: 0; }
.faq-a p { margin: 0; font-size: 14px; line-height: 1.85; color: var(--ink-soft); }

/* ============================================
   FINAL CTA
   ============================================ */
.section-finalcta { background: var(--paper); }
.finalcta-card {
  background: var(--green-mist);
  border: 1px dashed var(--green-primary);
  border-radius: 16px;
  padding: 64px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.finalcta-ornament { display: flex; justify-content: center; margin-bottom: 16px; }
.finalcta-ornament svg { width: 36px; height: 36px; color: var(--green-deep); }
.eyebrow.center { justify-content: center; }
.section-title.center { text-align: center; max-width: 720px; margin-left: auto; margin-right: auto; }
.finalcta-sub { color: var(--ink-soft); font-size: 16px; margin: 0 auto 40px; max-width: 540px; line-height: 1.85; }

.finalcta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 720px;
  margin: 0 auto 32px;
}
.finalcta-channel {
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.finalcta-channel:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.channel-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 8px;
}
.channel-icon svg { width: 26px; height: 26px; }
.tel-channel .channel-icon { background: var(--green-pale); color: var(--green-deep); }
.line-channel .channel-icon { background: var(--line-green); color: #fff; }
.channel-title { font-size: 18px; margin: 0; }
.channel-num {
  font-family: var(--font-en);
  font-size: 22px;
  font-weight: 600;
  color: var(--ink);
  margin: 8px 0 4px;
}
.line-channel .channel-num { color: var(--line-green); }
.channel-note { font-size: 11px; color: var(--ink-mute); margin-bottom: 12px; }
.channel-arrow {
  font-size: 13px;
  font-weight: 600;
  color: var(--green-deep);
  border-top: 1px dashed var(--line-dot);
  padding-top: 12px;
  width: 100%;
}
.line-channel .channel-arrow { color: var(--line-green); }

.finalcta-foot { display: flex; gap: 8px; justify-content: center; align-items: center; color: var(--ink-mute); font-size: 13px; }
.finalcta-foot svg { width: 16px; height: 16px; color: var(--accent-orange); }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--ink);
  color: rgba(255,255,255,0.85);
  padding: 64px 24px 32px;
}
.footer .container { max-width: var(--max-w); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 48px; margin-bottom: 32px; }
.footer-logo { display: flex; gap: 12px; align-items: flex-start; }
.footer-logo svg { width: 32px; height: 32px; color: var(--green-light); flex-shrink: 0; margin-top: 2px; }
.footer-en { color: var(--green-light); font-size: 13px; letter-spacing: 0.12em; margin: 0; }
.footer-logo h3 { color: #fff; font-size: 20px; margin: 4px 0; }
.footer-logo small { color: rgba(255,255,255,0.6); font-size: 12px; }
.footer-tag { color: rgba(255,255,255,0.7); font-size: 14px; margin: 24px 0 16px; }
.footer-affiliation .brochure-tag { background: transparent; color: var(--green-light); border-color: var(--green-light); }
.footer-affiliation .brochure-tag::before, .footer-affiliation .brochure-tag::after { background: var(--green-light); }

.footer-h4 { display: flex; gap: 8px; align-items: center; color: #fff; font-size: 15px; margin: 0 0 12px; }
.footer-h4 svg { width: 18px; height: 18px; color: var(--green-light); }
.footer-addr { font-size: 13px; line-height: 1.8; color: rgba(255,255,255,0.7); margin: 0 0 16px; }
.footer-map { aspect-ratio: 16 / 10; opacity: 0.6; }

.footer-tel {
  display: inline-flex; gap: 10px; align-items: center;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 12px 16px;
  border-radius: 8px;
  margin-bottom: 8px;
  font-family: var(--font-en);
  font-size: 19px;
  font-weight: 600;
  color: #fff;
}
.footer-tel svg { width: 18px; height: 18px; color: var(--green-light); }
.footer-hours { display: block; font-size: 11px; color: rgba(255,255,255,0.5); margin-bottom: 16px; }
.footer-line-btn {
  display: inline-flex; gap: 8px; align-items: center;
  background: var(--line-green); color: #fff;
  padding: 12px 18px;
  border-radius: 8px;
  font-size: 14px; font-weight: 600;
}
.footer-line-btn svg { width: 18px; height: 18px; }

.footer hr { margin: 32px 0 16px; border-top-color: rgba(255,255,255,0.12); }
.footer-foot { display: flex; justify-content: center; flex-wrap: wrap; gap: 16px; color: rgba(255,255,255,0.45); font-size: 11px; text-align: center; }

/* ============================================
   Mobile
   ============================================ */
.sp-only { display: none; }

@media (max-width: 900px) {
  .hero-grid, .whatis-grid, .director-grid, .hero-v3-grid {
    grid-template-columns: 1fr; gap: 40px;
  }
  .hero-v3-vertical { display: none; }
  .courses-grid { grid-template-columns: 1fr; }
  .voice-card, .voice-card:nth-child(even) { grid-template-columns: 1fr; gap: 20px; }
  .voice-card:nth-child(even) .voice-card-img { order: 0; }
  .voice-img { max-width: 320px; margin: 0 auto; }
  .empathy-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .director-card { position: static; margin-top: 16px; max-width: none; }
  .courses-urgency { flex-direction: column; align-items: flex-start; }
  .finalcta-grid { grid-template-columns: 1fr; }
  .finalcta-card { padding: 40px 24px; }
  .sp-only { display: inline; }

  /* ============================================
     Mobile Hero — compact circular portrait + text
     ============================================ */
  .hero.hero-v1 {
    padding: 32px 24px 64px;
    min-height: auto;
    position: relative;
  }
  .hero.hero-v1 .hero-grid { padding-top: 0; gap: 0; }
  .hero.hero-v1 .hero-portrait {
    position: absolute;
    top: 88px;
    right: 8px;
    width: 170px;
    height: 170px;
    margin: 0;
    z-index: 0;
  }
  .hero.hero-v1 .hero-copy { position: relative; z-index: 1; }
  .hero.hero-v1 .hero-img-main {
    aspect-ratio: 1;
    width: 170px;
    height: 170px;
    border-radius: 6px;
    border: 4px solid var(--paper);
    box-shadow: var(--shadow-card);
    transform: rotate(4deg);
  }
  .hero.hero-v1 .hero-img-main::after {
    font-size: 9px;
    padding: 2px 6px;
    max-width: 92%;
  }
  .hero.hero-v1 .hero-badge,
  .hero.hero-v1 .hero-tape { display: none; }
  .hero.hero-v1 .hero-brand {
    margin-bottom: 28px;
  }
  .hero.hero-v1 .hero-title { margin-bottom: 20px; }
  .hero.hero-v1 .hero-subtitle { margin-bottom: 36px; }
  .hero.hero-v1 .hero-bullets { margin-bottom: 40px; }
  .hero.hero-v1 .hero-bullets li + li { margin-top: 4px; }
  .hero.hero-v1 .hero-cta-note { margin-top: 20px; }
}
