/* ══════════════════════════════════════
   Japan Retro — Washi & Vermillion
   ══════════════════════════════════════ */

:root {
  --red:     #C0392B;
  --red-dk:  #96241A;
  --gold:    #C9963A;
  --ink:     #1C110A;
  --ink-mid: #4A2E20;
  --cream:   #FAF5ED;
  --cream-dk:#F0E8D8;
  --cream-bd:#D9C9B0;
  --white:   #FFFCF7;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Poppins', sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
}

a { text-decoration: none; color: inherit; }

/* ── Decorative HR ── */
.deco-rule {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  margin-bottom: 14px;
}

.deco-rule::before,
.deco-rule::after {
  content: '';
  flex: 1;
  max-width: 40px;
  height: 1px;
  background: var(--red);
  opacity: 0.5;
}

/* ── Navbar ── */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 60px;
  position: sticky;
  top: 0;
  background: rgba(250,245,237,0.96);
  backdrop-filter: blur(10px);
  z-index: 100;
  border-bottom: 2px solid var(--red);
}

.logo {
  font-family: 'Shippori Mincho', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.5px;
}

.navbar nav {
  display: flex;
  gap: 32px;
}

.navbar nav a {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ink-mid);
  letter-spacing: 0.5px;
  position: relative;
  transition: color 0.2s;
}

.navbar nav a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width 0.25s;
}

.navbar nav a:hover { color: var(--red); }
.navbar nav a:hover::after { width: 100%; }

/* ── Hamburger ── */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 101;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}

.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero ── */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  padding: 100px 60px 90px;
  background: var(--cream);
  min-height: 90vh;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}

/* Washi paper texture overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 39px,
      rgba(192,57,43,0.06) 39px,
      rgba(192,57,43,0.06) 40px
    );
  pointer-events: none;
}

/* Large decorative kanji watermark */
.hero::after {
  content: '文';
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Shippori Mincho', serif;
  font-size: 28rem;
  color: rgba(192,57,43,0.04);
  pointer-events: none;
  line-height: 1;
  user-select: none;
}

.hero-content {
  flex: 1;
  max-width: 540px;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 6px 0;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--red);
}

.hero-content h1 {
  font-family: 'Shippori Mincho', serif;
  font-size: 3.4rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
  color: var(--ink);
}

.hero-content p {
  font-size: 1rem;
  color: var(--ink-mid);
  margin-bottom: 36px;
  max-width: 440px;
  line-height: 1.8;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.trust-avatars { display: flex; }
.trust-avatars .avatar { font-size: 1.3rem; margin-right: -4px; }

.trust-text { font-size: 0.82rem; color: var(--ink-mid); }
.trust-text strong { color: var(--ink); }

.hero-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.pill {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--red);
  background: transparent;
  border: 1px solid var(--red);
  padding: 4px 12px;
  border-radius: 0;
  letter-spacing: 0.5px;
}

/* ── Buttons ── */
.btn-primary {
  background: var(--red);
  color: #fff;
  padding: 13px 28px;
  border-radius: 0;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  display: inline-block;
  border: 2px solid var(--red);
  transition: background 0.2s, color 0.2s, transform 0.15s;
}

.btn-primary:hover {
  background: var(--red-dk);
  border-color: var(--red-dk);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--red);
  padding: 13px 28px;
  border-radius: 0;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  border: 2px solid var(--red);
  display: inline-block;
  transition: background 0.2s, color 0.2s, transform 0.15s;
}

.btn-outline:hover {
  background: var(--red);
  color: #fff;
  transform: translateY(-2px);
}

.btn-light {
  background: var(--cream);
  color: var(--ink);
  padding: 13px 28px;
  border-radius: 0;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  display: inline-block;
  border: 2px solid var(--cream-bd);
  transition: background 0.2s, transform 0.15s;
}

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

/* ── Phone Mockup ── */
.hero-visual {
  flex: 0 0 auto;
  position: relative;
  display: flex;
  justify-content: center;
  z-index: 1;
}

.phone-mockup {
  position: relative;
  background: var(--ink);
  border-radius: 44px;
  padding: 14px;
  box-shadow:
    8px 8px 0 var(--red),
    0 24px 60px rgba(28,17,10,0.2);
  width: 260px;
}

.phone-notch {
  width: 80px;
  height: 22px;
  background: #0a0604;
  border-radius: 0 0 16px 16px;
  margin: 0 auto 8px;
}

.phone-frame img {
  width: 100%;
  border-radius: 28px;
  display: block;
  aspect-ratio: 9/16;
  object-fit: cover;
}

.hero-float {
  position: absolute;
  background: var(--white);
  border: 2px solid var(--cream-bd);
  border-left: 4px solid var(--red);
  padding: 12px 18px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--ink);
  box-shadow: 4px 4px 0 var(--cream-dk);
  text-align: center;
  line-height: 1.4;
  animation: float 3s ease-in-out infinite;
}

.hero-float small {
  display: block;
  font-weight: 400;
  font-size: 0.7rem;
  color: var(--ink-mid);
}

.hero-float-1 { top: 40px; left: -60px; animation-delay: 0s; }
.hero-float-2 { bottom: 60px; right: -60px; animation-delay: 1.5s; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ── Stats ── */
.stats {
  display: flex;
  justify-content: center;
  background: var(--ink);
  padding: 48px 60px;
  flex-wrap: wrap;
  position: relative;
}

.stats::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--red);
}

.stat {
  flex: 1;
  min-width: 150px;
  text-align: center;
  padding: 20px;
  border-right: 1px solid rgba(255,255,255,0.08);
}

.stat:last-child { border-right: none; }

.stat-number {
  display: block;
  font-family: 'Shippori Mincho', serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: -0.5px;
}

.stat-label {
  display: block;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  margin-top: 6px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ── Section Commons ── */
.section-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}

.section-label.light { color: var(--gold); }

.highlight { color: var(--red); }
.highlight-light { color: var(--gold); }

.section-sub {
  font-size: 0.97rem;
  color: var(--ink-mid);
  max-width: 480px;
  margin: 0 auto 60px;
  line-height: 1.8;
}

/* ── Features ── */
.features {
  padding: 100px 60px;
  background: var(--white);
  text-align: center;
}

.features h2 {
  font-family: 'Shippori Mincho', serif;
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--ink);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2px;
  max-width: 1000px;
  margin: 0 auto;
  border: 1px solid var(--cream-bd);
}

.feature-card {
  background: var(--white);
  padding: 36px 28px;
  text-align: left;
  border: 1px solid var(--cream-bd);
  transition: background 0.22s;
  position: relative;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px;
  height: 0;
  background: var(--red);
  transition: height 0.3s;
}

.feature-card:hover { background: var(--cream); }
.feature-card:hover::before { height: 100%; }

.feature-icon {
  font-size: 1.8rem;
  margin-bottom: 20px;
  display: block;
}

.feature-card h3 {
  font-family: 'Shippori Mincho', serif;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--ink);
}

.feature-card p {
  font-size: 0.875rem;
  color: var(--ink-mid);
  line-height: 1.75;
}

/* ── How It Works ── */
.how-it-works {
  padding: 100px 60px;
  background: var(--cream);
  text-align: center;
}

.how-it-works h2 {
  font-family: 'Shippori Mincho', serif;
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--ink);
}

.steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto;
}

.step {
  flex: 1;
  min-width: 180px;
  max-width: 220px;
  text-align: center;
  padding: 20px;
}

.step-number {
  font-family: 'Shippori Mincho', serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--red);
  opacity: 0.18;
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -2px;
}

.step-content h3 {
  font-family: 'Shippori Mincho', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
}

.step-content p {
  font-size: 0.86rem;
  color: var(--ink-mid);
  line-height: 1.75;
}

.step-arrow {
  font-size: 1.4rem;
  color: var(--cream-bd);
  padding: 0 8px;
  margin-top: 28px;
  flex: 0 0 auto;
}

/* ── Apps ── */
.apps {
  padding: 100px 60px;
  background: var(--white);
  text-align: center;
}

.apps h2 {
  font-family: 'Shippori Mincho', serif;
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--ink);
}

.apps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2px;
  max-width: 860px;
  margin: 0 auto;
  border: 1px solid var(--cream-bd);
}

.app-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--cream-bd);
  padding: 28px;
  text-align: left;
  transition: background 0.2s;
}

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

.app-icon {
  width: 56px;
  height: 56px;
  border-radius: 0;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
}

.app-info h3 {
  font-family: 'Shippori Mincho', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}

.app-info p {
  font-size: 0.85rem;
  color: var(--ink-mid);
  line-height: 1.65;
  margin-bottom: 14px;
}

.app-tags { display: flex; gap: 8px; flex-wrap: wrap; }

.tag {
  font-size: 0.7rem;
  font-weight: 600;
  background: transparent;
  color: var(--red);
  padding: 3px 10px;
  border: 1px solid var(--red);
  letter-spacing: 0.5px;
}

/* ── Testimonials ── */
.testimonials {
  padding: 100px 60px;
  background: var(--cream-dk);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: '言';
  position: absolute;
  left: -40px;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Shippori Mincho', serif;
  font-size: 20rem;
  color: rgba(192,57,43,0.05);
  pointer-events: none;
  user-select: none;
  line-height: 1;
}

.testimonials h2 {
  font-family: 'Shippori Mincho', serif;
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 48px;
  color: var(--ink);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  max-width: 960px;
  margin: 0 auto;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--cream-bd);
  border-top: 3px solid var(--cream-bd);
  padding: 32px 28px;
  text-align: left;
}

.testimonial-card.featured {
  background: var(--red);
  border-color: var(--red-dk);
  border-top-color: var(--gold);
}

.testimonial-card.featured .stars { color: var(--gold); }
.testimonial-card.featured p { color: rgba(255,255,255,0.88); }
.testimonial-card.featured .reviewer strong { color: #fff; }
.testimonial-card.featured .reviewer span { color: rgba(255,255,255,0.55); }
.testimonial-card.featured .reviewer-avatar {
  background: rgba(255,255,255,0.15);
  color: #fff;
  border-color: rgba(255,255,255,0.2);
}

.stars {
  font-size: 0.95rem;
  color: var(--gold);
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial-card p {
  font-size: 0.88rem;
  color: var(--ink-mid);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}

.reviewer { display: flex; align-items: center; gap: 12px; }

.reviewer-avatar {
  width: 38px;
  height: 38px;
  border-radius: 0;
  border: 1px solid var(--cream-bd);
  background: var(--cream-dk);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Shippori Mincho', serif;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

.reviewer strong { display: block; font-size: 0.88rem; color: var(--ink); }
.reviewer span { font-size: 0.75rem; color: #999; }

/* ── Mission ── */
.mission {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  padding: 100px 60px;
  background: var(--ink);
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}

.mission::after {
  content: '道';
  position: absolute;
  right: 40px;
  bottom: -40px;
  font-family: 'Shippori Mincho', serif;
  font-size: 18rem;
  color: rgba(255,255,255,0.025);
  pointer-events: none;
  user-select: none;
  line-height: 1;
}

.mission-content {
  flex: 1;
  max-width: 500px;
  position: relative;
  z-index: 1;
}

.mission-content h2 {
  font-family: 'Shippori Mincho', serif;
  font-size: 2.4rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.2;
}

.mission-content p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 32px;
  line-height: 1.9;
}

.mission-values {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 36px;
}

.value-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
}

.value-dot {
  width: 6px;
  height: 6px;
  border-radius: 0;
  background: var(--red);
  flex-shrink: 0;
}

.mission-visual {
  flex: 0 0 auto;
  position: relative;
  z-index: 1;
}

.mission-visual img {
  width: 300px;
  border-radius: 0;
  opacity: 0.8;
  border: 1px solid rgba(255,255,255,0.08);
}

/* ── CTA Banner ── */
.cta-banner {
  background: var(--red);
  padding: 80px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 59px,
      rgba(255,255,255,0.04) 59px,
      rgba(255,255,255,0.04) 60px
    );
  pointer-events: none;
}

.cta-inner { max-width: 560px; margin: 0 auto; position: relative; z-index: 1; }

.cta-banner h2 {
  font-family: 'Shippori Mincho', serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

.cta-banner p {
  font-size: 1rem;
  color: rgba(255,255,255,0.82);
  margin-bottom: 32px;
  line-height: 1.75;
}

.cta-banner .btn-primary {
  background: var(--white);
  color: var(--red);
  border-color: var(--white);
  box-shadow: 4px 4px 0 var(--red-dk);
}

.cta-banner .btn-primary:hover {
  background: var(--cream);
  border-color: var(--cream);
}

/* ── Footer ── */
.footer {
  background: #120C07;
  color: rgba(255,255,255,0.55);
  border-top: 3px solid var(--red);
}

.footer-inner {
  display: flex;
  gap: 48px;
  padding: 64px 60px 40px;
  flex-wrap: wrap;
}

.footer-brand { flex: 2; min-width: 220px; }

.footer-brand .logo {
  font-family: 'Shippori Mincho', serif;
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 14px;
}

.footer-brand p {
  font-size: 0.84rem;
  line-height: 1.8;
  max-width: 280px;
  color: rgba(255,255,255,0.35);
  margin-bottom: 20px;
}

.footer-address { display: flex; flex-direction: column; gap: 6px; }
.footer-address span { font-size: 0.8rem; color: rgba(255,255,255,0.3); }

.footer-links {
  flex: 1;
  min-width: 130px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links h4 {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.footer-links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.35);
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 20px 60px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.2);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: rgba(255,255,255,0.2); font-size: 0.78rem; transition: color 0.2s; }
.footer-bottom-links a:hover { color: var(--gold); }

/* ── Responsive ── */
@media (max-width: 900px) {
  .step-arrow { display: none; }
  .step { max-width: 100%; }
}

@media (max-width: 768px) {
  .navbar { padding: 16px 24px; }
  .nav-toggle { display: flex; }

  .navbar nav {
    display: none;
    flex-direction: column;
    gap: 0;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: rgba(250,245,237,0.98);
    backdrop-filter: blur(12px);
    border-bottom: 2px solid var(--red);
    padding: 8px 0;
  }

  .navbar nav.open { display: flex; }

  .navbar nav a {
    padding: 13px 24px;
    font-size: 0.92rem;
    border-bottom: 1px solid var(--cream-bd);
  }

  .navbar nav a::after { display: none; }
  .navbar nav a:last-child { border-bottom: none; }

  .hero {
    flex-direction: column;
    padding: 60px 24px;
    min-height: auto;
    text-align: center;
  }

  .hero-content { max-width: 100%; }
  .hero-content h1 { font-size: 2.4rem; }
  .hero-content p { max-width: 100%; margin-left: auto; margin-right: auto; }
  .hero-trust { justify-content: center; }
  .hero-pills { justify-content: center; }
  .hero-float { display: none; }

  .stats { padding: 36px 24px; }
  .stat { min-width: 120px; }
  .stat-number { font-size: 1.8rem; }

  .features,
  .how-it-works,
  .apps,
  .testimonials { padding: 70px 24px; }

  .features h2,
  .how-it-works h2,
  .apps h2,
  .testimonials h2 { font-size: 1.9rem; }

  .mission {
    flex-direction: column;
    padding: 70px 24px;
    text-align: center;
  }

  .mission-content { max-width: 100%; }
  .mission-content h2 { font-size: 1.9rem; }
  .mission-values { align-items: center; }
  .mission-visual img { width: 220px; }

  .cta-banner { padding: 60px 24px; }
  .cta-banner h2 { font-size: 1.8rem; }

  .footer-inner { padding: 40px 24px 24px; gap: 28px; }
  .footer-bottom { padding: 16px 24px; }

  .apps-grid { grid-template-columns: 1fr; }
  .app-card { flex-direction: column; }
}

/* ══════════════════════════════════════
   Inner Pages (Privacy / EULA / Contact)
   ══════════════════════════════════════ */

/* Active nav link */
.nav-active {
  color: var(--red) !important;
}

.nav-active::after {
  width: 100% !important;
}

/* Page Hero */
.page-hero {
  background: var(--ink);
  padding: 80px 60px 72px;
  position: relative;
  overflow: hidden;
  border-bottom: 3px solid var(--red);
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 39px,
      rgba(192,57,43,0.07) 39px,
      rgba(192,57,43,0.07) 40px
    );
  pointer-events: none;
}

.page-hero::after {
  content: '文';
  position: absolute;
  right: 40px;
  bottom: -30px;
  font-family: 'Shippori Mincho', serif;
  font-size: 16rem;
  color: rgba(255,255,255,0.03);
  pointer-events: none;
  user-select: none;
  line-height: 1;
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
}

.page-hero .section-label {
  color: var(--gold);
  margin-bottom: 16px;
}

.page-hero h1 {
  font-family: 'Shippori Mincho', serif;
  font-size: 2.8rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}

.page-hero p {
  font-size: 1rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
}

/* Page Content */
.page-content {
  padding: 80px 60px 100px;
  background: var(--cream);
}

.content-wrap {
  max-width: 760px;
  margin: 0 auto;
}

.content-wrap--narrow {
  max-width: 860px;
}

.content-wrap > p {
  font-size: 0.95rem;
  color: var(--ink-mid);
  line-height: 1.85;
  margin-bottom: 16px;
}

.content-section {
  margin-top: 44px;
  padding-top: 44px;
  border-top: 1px solid var(--cream-bd);
}

.content-section h5 {
  font-family: 'Shippori Mincho', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.content-section h5::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 18px;
  background: var(--red);
  flex-shrink: 0;
}

.content-section p {
  font-size: 0.93rem;
  color: var(--ink-mid);
  line-height: 1.85;
  margin-bottom: 12px;
}

.content-section ul {
  padding-left: 0;
  list-style: none;
  margin: 12px 0 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.content-section ul li {
  font-size: 0.93rem;
  color: var(--ink-mid);
  line-height: 1.7;
  padding-left: 20px;
  position: relative;
}

.content-section ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--red);
  font-size: 0.8rem;
}

.content-section a {
  color: var(--red);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}

.content-section a:hover {
  border-color: var(--red);
}

/* Contact page */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2px;
  border: 1px solid var(--cream-bd);
  margin-bottom: 0;
}

.contact-card {
  background: var(--white);
  border: 1px solid var(--cream-bd);
  padding: 36px 28px;
  transition: background 0.2s;
}

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

.contact-card-icon {
  font-size: 1.8rem;
  margin-bottom: 16px;
}

.contact-card h3 {
  font-family: 'Shippori Mincho', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
}

.contact-card p {
  font-size: 0.875rem;
  color: var(--ink-mid);
  line-height: 1.7;
  margin-bottom: 14px;
}

.contact-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--red);
  display: block;
  word-break: break-all;
}

.contact-note {
  margin-top: 44px;
  padding-top: 44px;
  border-top: 1px solid var(--cream-bd);
}

/* Responsive inner pages */
@media (max-width: 768px) {
  .page-hero { padding: 60px 24px 52px; }
  .page-hero h1 { font-size: 2rem; }

  .page-content { padding: 52px 24px 72px; }

  .contact-grid { grid-template-columns: 1fr; }
}
