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

:root {
  --ink: #1a1208;
  --gold: #b8860b;
  --gold-light: #d4a843;
  --gold-pale: #f5ecd4;
  --teal: #1a5c5c;
  --teal-light: #2a8a8a;
  --teal-pale: #e8f4f4;
  --cream: #faf7f2;
  --warm-gray: #6b6355;
  --border: #e2d5b8;
  --white: #ffffff;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Noto Sans JP', sans-serif;
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
}

/* ─── HERO ─── */
.lp-hero {
  min-height: 100vh;
  background: var(--ink);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.lp-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(184,134,11,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 50% 80% at 20% 80%, rgba(26,92,92,0.25) 0%, transparent 50%);
}

.lp-hero::after {
  content: '?????';
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(200px, 25vw, 380px);
  color: rgba(184,134,11,0.07);
  line-height: 1;
  pointer-events: none;
  letter-spacing: -0.02em;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 48px 80px;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 80px;
  align-items: center;
  width: 100%;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--gold-light);
  text-transform: uppercase;
  margin-bottom: 28px;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold-light);
}

.hero-title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.5;
  letter-spacing: 0.02em;
  margin-bottom: 12px;
}

.hero-title strong {
  font-weight: 700;
  color: var(--gold-light);
  display: block;
}

.hero-title em {
  font-style: normal;
  color: var(--teal-light);
}

.hero-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(18px, 2vw, 24px);
  color: rgba(255,255,255,0.55);
  margin-bottom: 40px;
  font-style: italic;
  line-height: 1.6;
}

.hero-cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 36px;
  background: var(--gold);
  color: var(--white);
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}

.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 32px;
  background: transparent;
  color: var(--white);
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.35);
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.6);
}

/* Hero Right Card */
.hero-card-panel {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(184,134,11,0.25);
  backdrop-filter: blur(10px);
  padding: 36px;
}

.hero-card-panel h3 {
  font-family: 'Noto Serif JP', serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 6px;
  letter-spacing: 0.05em;
}

.hero-card-panel .sub {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}

.sector-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.sector-item {
  display: block;
  padding: 14px 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  text-decoration: none;
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}

.sector-item::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px;
  background: var(--gold);
  transform: scaleY(0);
  transition: transform 0.25s ease;
}

.sector-item:hover::before { transform: scaleY(1); }
.sector-item:hover { background: rgba(184,134,11,0.08); border-color: rgba(184,134,11,0.3); }

.sector-item h4 {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 3px;
}

.sector-item p {
  font-size: 10px;
  color: rgba(255,255,255,0.4);
}

.hero-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin: 20px 0;
}

.hero-notice {
  font-size: 10px;
  color: rgba(255,255,255,0.3);
  line-height: 1.7;
}

/* ─── SCROLL INDICATOR ─── */
.scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 10;
}

.scroll-hint span {
  font-size: 10px;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.3);
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(184,134,11,0.6), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.1); }
}

/* ─── SECTION BASE ─── */
.lp-section {
  padding: 100px 48px;
  max-width: 1200px;
  margin: 0 auto;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.section-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold);
}

.section-heading {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 300;
  line-height: 1.5;
  color: var(--ink);
  margin-bottom: 16px;
}

.section-heading strong {
  font-weight: 700;
  color: var(--teal);
}

.section-lead {
  font-size: 15px;
  line-height: 1.9;
  color: var(--warm-gray);
  max-width: 600px;
}

/* ─── OPPORTUNITY STRIP ─── */
.opportunity-strip {
  background: var(--teal);
  padding: 80px 48px;
  position: relative;
  overflow: hidden;
}

.opportunity-strip::before {
  content: '';
  position: absolute;
  right: -100px;
  top: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(184,134,11,0.08);
}

.opportunity-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1px;
  background: rgba(255,255,255,0.1);
}

.opp-item {
  background: var(--teal);
  padding: 48px 40px;
  position: relative;
}

.opp-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 72px;
  font-weight: 300;
  color: rgba(184,134,11,0.3);
  line-height: 1;
  margin-bottom: 16px;
}

.opp-item h3 {
  font-family: 'Noto Serif JP', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
}

.opp-item p {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
}

/* ─── CASE STUDIES ─── */
.cases-wrapper {
  background: var(--white);
  padding: 100px 48px;
}

.cases-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.case-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  margin-top: 60px;
}

.case-card {
  background: var(--white);
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.case-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--gold), var(--teal));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.case-card:hover::after { transform: scaleX(1); }
.case-card:hover { transform: translateY(-4px); box-shadow: 0 20px 60px rgba(0,0,0,0.08); }

.case-icon {
  font-size: 48px;
  margin-bottom: 24px;
  display: block;
}

.case-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--gold);
  text-transform: uppercase;
  background: var(--gold-pale);
  padding: 4px 10px;
  margin-bottom: 16px;
}

.case-card h3 {
  font-family: 'Noto Serif JP', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 12px;
  line-height: 1.5;
}

.case-card p {
  font-size: 13px;
  color: var(--warm-gray);
  line-height: 1.9;
  margin-bottom: 24px;
}

.case-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.case-points li {
  font-size: 12px;
  color: var(--teal);
  padding-left: 16px;
  position: relative;
  line-height: 1.6;
}

.case-points li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 11px;
}

/* ─── WHY US ─── */
.why-section {
  background: var(--ink);
  padding: 100px 48px;
}

.why-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 60px;
}

.why-left .big-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.6;
  font-style: italic;
  border-left: 2px solid var(--gold);
  padding-left: 32px;
  margin-bottom: 32px;
}

.why-left .big-quote strong {
  color: var(--gold-light);
  font-style: normal;
  font-weight: 600;
}

.why-points {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.why-point {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 20px;
  align-items: start;
  padding: 24px;
  border: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.02);
  transition: all 0.3s ease;
}

.why-point:hover {
  border-color: rgba(184,134,11,0.3);
  background: rgba(184,134,11,0.04);
}

.why-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}

.why-point h4 {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}

.why-point p {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
}

/* ─── SNS / LINE CTA ─── */
.sns-section {
  background: var(--cream);
  padding: 100px 48px;
}

.sns-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.sns-cards {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  margin-top: 60px;
}

.sns-card {
  padding: 40px 36px;
  border: 1px solid var(--border);
  background: var(--white);
  position: relative;
  transition: all 0.3s ease;
}

.sns-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(184,134,11,0.1);
}

.sns-card.featured {
  background: var(--teal);
  border-color: var(--teal);
  grid-column: span 1;
}

.sns-logo {
  font-size: 36px;
  margin-bottom: 20px;
  display: block;
}

.sns-card h3 {
  font-family: 'Noto Serif JP', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 12px;
}

.sns-card.featured h3 { color: var(--white); }

.sns-card p {
  font-size: 13px;
  color: var(--warm-gray);
  line-height: 1.8;
  margin-bottom: 24px;
}

.sns-card.featured p { color: rgba(255,255,255,0.7); }

.sns-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 6px 14px;
  background: var(--gold-pale);
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.sns-card.featured .sns-badge {
  background: rgba(184,134,11,0.3);
  color: var(--gold-light);
}

.sns-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--teal);
  text-decoration: none;
  letter-spacing: 0.05em;
  border-bottom: 1px solid var(--teal);
  padding-bottom: 2px;
  transition: gap 0.2s ease;
}

.sns-link:hover { gap: 10px; }
.sns-card.featured .sns-link { color: var(--gold-light); border-color: var(--gold-light); }

.line-price-tag {
  position: absolute;
  top: 24px;
  right: 24px;
  background: var(--gold);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  letter-spacing: 0.05em;
}

/* ─── NEWS ─── */
.news-section-lp {
  background: var(--white);
  padding: 100px 48px;
}

.news-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.news-grid-lp {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  margin-top: 60px;
}

.news-card-lp {
  background: var(--white);
  padding: 36px 32px;
  transition: all 0.25s ease;
}

.news-card-lp:hover { background: var(--cream); }

.news-card-lp a {
  text-decoration: none;
  color: inherit;
}

.news-date-lp {
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 12px;
  display: block;
}

.news-card-lp h3 {
  font-family: 'Noto Serif JP', serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.7;
  margin-bottom: 10px;
}

.news-card-lp p {
  font-size: 12px;
  color: var(--warm-gray);
  line-height: 1.8;
  margin-bottom: 16px;
}

.news-read-more {
  font-size: 11px;
  font-weight: 700;
  color: var(--teal);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ─── REPORT ─── */
.report-section {
  background: linear-gradient(135deg, var(--teal) 0%, #0d3d3d 100%);
  padding: 100px 48px;
  position: relative;
  overflow: hidden;
}

.report-section::before {
  content: 'REPORT';
  position: absolute;
  right: -20px;
  bottom: -40px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 180px;
  color: rgba(255,255,255,0.03);
  font-weight: 700;
  letter-spacing: -0.05em;
}

.report-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.report-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  margin-top: 60px;
}

.report-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 36px 32px;
  transition: all 0.3s ease;
}

.report-card:hover {
  background: rgba(184,134,11,0.1);
  border-color: rgba(184,134,11,0.4);
}

.report-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 56px;
  font-weight: 300;
  color: rgba(184,134,11,0.5);
  line-height: 1;
  margin-bottom: 16px;
}

.report-card h3 {
  font-family: 'Noto Serif JP', serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
}

.report-card p {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.8;
}

/* ─── CONTACT ─── */
.contact-section {
  background: var(--cream);
  padding: 100px 48px;
}

.contact-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  margin-top: 60px;
  align-items: start;
}

.contact-info h3 {
  font-family: 'Noto Serif JP', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 20px;
}

.contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
}

.contact-list li {
  font-size: 14px;
  color: var(--warm-gray);
  padding-left: 20px;
  position: relative;
  line-height: 1.7;
}

.contact-list li::before {
  content: '◆';
  position: absolute;
  left: 0;
  font-size: 8px;
  color: var(--gold);
  top: 5px;
}

.contact-callout {
  background: var(--ink);
  color: var(--white);
  padding: 24px 28px;
  position: relative;
  overflow: hidden;
}

.contact-callout::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--gold);
}

.contact-callout strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 8px;
  letter-spacing: 0.05em;
}

.contact-callout p {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
}

.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 48px 44px;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--teal);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.form-input {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border);
  background: var(--cream);
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s ease;
}

.form-input:focus {
  border-color: var(--teal);
  background: var(--white);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b6355' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}

.form-note {
  font-size: 11px;
  color: var(--warm-gray);
  line-height: 1.7;
  margin-top: 12px;
}

/* ─── FOOTER STRIP ─── */
.lp-footer-strip {
  background: var(--ink);
  padding: 24px 48px;
  text-align: center;
}

.lp-footer-strip p {
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.05em;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; padding: 56px 24px 60px; }
  .hero-card-panel { display: none; }
  .lp-section { padding: 60px 24px; }
  .opportunity-inner { grid-template-columns: 1fr; }
  .case-cards { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .sns-cards { grid-template-columns: 1fr; }
  .news-grid-lp { grid-template-columns: 1fr; }
  .report-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .cases-wrapper, .why-section, .sns-section, .news-section-lp, .report-section, .contact-section { padding: 60px 24px; }
  .opportunity-strip { padding: 60px 24px; }
}

/* ─── FADE IN ANIMATION ─── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── MISSION SECTION ── */
.mission-section {
  background: linear-gradient(135deg, #0a1628 0%, #0d2137 50%, #0a1628 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.mission-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
}
.mission-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 32px;
}
.mission-top {
  text-align: center;
  margin-bottom: 64px;
}
.mission-body {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 56px;
  align-items: start;
  margin-bottom: 72px;
}
@media (max-width: 768px) {
  .mission-body { grid-template-columns: 1fr; gap: 32px; }
}
.mission-quote-block {
  background: rgba(255,255,255,0.03);
  border-left: 4px solid var(--gold);
  border-radius: 0 12px 12px 0;
  padding: 40px 32px;
  position: relative;
}
.mission-quote-block::before {
  content: '\201C';
  font-size: 120px;
  color: var(--gold);
  opacity: 0.15;
  position: absolute;
  top: -20px;
  left: 16px;
  font-family: Georgia, serif;
  line-height: 1;
}
.mission-quote {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.8;
  margin: 0;
  position: relative;
  z-index: 1;
}
.mission-text-block p {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  line-height: 2;
  margin-bottom: 20px;
}
.mission-text-block p:last-child { margin-bottom: 0; }
.mission-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 768px) {
  .mission-pillars { grid-template-columns: 1fr; }
}
.mission-pillar {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
  transition: border-color .3s, transform .3s;
}
.mission-pillar:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}
.mission-pillar-icon {
  font-size: 36px;
  margin-bottom: 16px;
}
.mission-pillar h4 {
  font-family: 'Noto Serif JP', serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 12px;
}
.mission-pillar p {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
  margin: 0;
}