/* ===================================================================
   Newporttokyo — Corporate Site
   Base: White & Dark Gray  /  Accent: subtle Gold
   =================================================================== */

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

:root {
  --ink:        #1a1a1a;   /* ダークグレイ（主） */
  --ink-soft:   #2a2a2a;
  --gray:       #6b6660;   /* 本文補助 */
  --line:       #e5e2dd;   /* 罫線 */
  --paper:      #ffffff;   /* 白（主） */
  --paper-soft: #f7f5f2;   /* オフホワイト */
  --gold:       #b89a5a;   /* アクセント */
  --gold-soft:  #d4b87a;
  --coral:      #e08a5a;   /* 西海岸の夕陽アクセント */
  --sunset:     linear-gradient(120deg, #d4b87a 0%, #e08a5a 55%, #d97b6a 100%);

  --max:   1160px;
  --gut:   24px;
  --radius: 4px;

  --serif: 'Cormorant Garamond', 'Noto Sans JP', serif;
  --sans:  'Noto Sans JP', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.85;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gut);
}

.pc-only { display: inline; }

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.25s ease;
}
.btn-primary {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.btn-primary:hover {
  background: var(--ink-soft);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn-ghost:hover {
  border-color: var(--ink);
}
.btn-block { width: 100%; }

/* ===================== HEADER / NAV ===================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.88);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.brand {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
}
.brand span { color: var(--gold); }

.header-right { display: flex; align-items: center; gap: 28px; }
.nav { display: flex; align-items: center; gap: 36px; }

/* 言語切替 JP / EN */
.lang-switch {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}
.lang-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--sans);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  color: var(--gray);
  padding: 4px 2px;
  transition: color 0.2s ease;
}
.lang-btn:hover { color: var(--ink); }
.lang-btn.is-active { color: var(--ink); font-weight: 500; }
.lang-sep { color: var(--line); font-size: 0.8rem; }
.nav-link {
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--ink);
  position: relative;
  padding: 4px 0;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.25s ease;
}
.nav-link:hover::after { width: 100%; }
.nav-cta {
  padding: 8px 22px;
  border: 1px solid var(--ink);
  border-radius: var(--radius);
}
.nav-cta::after { display: none; }
.nav-cta:hover { background: var(--ink); color: var(--paper); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--ink);
  transition: all 0.3s ease;
}
.nav-toggle.is-active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.is-active span:nth-child(2) { opacity: 0; }
.nav-toggle.is-active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ===================== SECTION BASE ===================== */
.section { padding: 120px 0; }
.section-head { max-width: 640px; margin-bottom: 64px; }
.section-eyebrow {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}
.section-title {
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--ink);
  margin-bottom: 20px;
}
/* 西海岸の夕陽グラデーションのアクセントバー */
.services .section-title::after,
.about .section-title::after {
  content: "";
  display: block;
  width: 56px;
  height: 3px;
  margin-top: 20px;
  background: var(--sunset);
  border-radius: 2px;
}
.section-desc {
  font-size: 1rem;
  color: var(--gray);
}

/* ===================== HERO ===================== */
.hero {
  position: relative;
  background: var(--ink);
  color: var(--paper);
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 82% 38%, rgba(224,138,90,0.18), transparent 42%),
    radial-gradient(circle at 70% 60%, rgba(184,154,90,0.12), transparent 48%),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.025) 0 1px, transparent 1px 80px);
  pointer-events: none;
}
.hero-inner { position: relative; padding: 100px 24px; }
.hero-eyebrow {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  letter-spacing: 0.14em;
  color: var(--gold-soft);
  margin-bottom: 24px;
}
.hero-title {
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: 0.04em;
  margin-bottom: 28px;
}
.hero-lead {
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(255,255,255,0.72);
  max-width: 560px;
  margin-bottom: 44px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; }
.hero .btn-primary {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--paper);
}
.hero .btn-primary:hover { background: var(--paper-soft); }
.hero .btn-ghost {
  color: var(--paper);
  border-color: rgba(255,255,255,0.3);
}
.hero .btn-ghost:hover { border-color: var(--paper); }

.hero-scroll {
  position: absolute;
  left: 50%; bottom: 28px;
  transform: translateX(-50%);
  width: 1px; height: 48px;
  background: rgba(255,255,255,0.25);
  overflow: hidden;
}
.hero-scroll span {
  position: absolute;
  top: -48px; left: 0;
  width: 1px; height: 48px;
  background: var(--gold-soft);
  animation: scrolldown 2s ease-in-out infinite;
}
@keyframes scrolldown {
  0%   { transform: translateY(0); }
  100% { transform: translateY(96px); }
}

/* ===================== SERVICES ===================== */
.services { background: var(--paper); }
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(195px, 1fr));
  gap: 16px;
}
.service-card {
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px 28px;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.service-card:hover {
  background: var(--paper-soft);
  border-color: var(--gold-soft);
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.07);
}
.service-arrow {
  margin-top: auto;
  padding-top: 20px;
  font-size: 1.1rem;
  color: var(--coral);
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.service-card:hover .service-arrow { opacity: 1; transform: translateX(0); }
.service-num {
  font-family: var(--serif);
  font-size: 0.95rem;
  color: var(--gold);
  letter-spacing: 0.1em;
}
.service-name {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  margin: 16px 0 4px;
}
.service-jp {
  font-size: 0.85rem;
  color: var(--gray);
  letter-spacing: 0.08em;
  margin-bottom: 18px;
}
.service-text {
  font-size: 0.92rem;
  color: var(--ink-soft);
}

/* ===================== ABOUT ===================== */
.about { background: var(--paper-soft); }
.about-inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 64px;
  align-items: start;
}
.about-paragraph {
  font-size: 1rem;
  color: var(--ink-soft);
  margin-bottom: 20px;
}
.about-points {
  list-style: none;
  margin-top: 28px;
  border-top: 1px solid var(--line);
}
.about-points li {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.95rem;
  color: var(--ink-soft);
}
.about-points strong {
  display: inline-block;
  min-width: 4.5em;
  margin-right: 16px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 0.1em;
}
.about-statement {
  background: var(--ink);
  color: var(--paper);
  padding: 56px 40px;
  border-radius: var(--radius);
}
.about-statement blockquote {
  font-family: var(--serif);
  font-size: 1.9rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
.about-statement cite {
  display: block;
  margin-top: 24px;
  font-family: var(--sans);
  font-size: 0.8rem;
  font-style: normal;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: var(--gold-soft);
}

/* About 右カラム：西海岸の写真 ＋ ステートメント */
.about-visual { display: flex; flex-direction: column; gap: 24px; }
.about-photo {
  position: relative;
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0,0,0,0.16);
}
.about-photo img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.about-photo:hover img { transform: scale(1.05); }
.about-photo figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 28px 20px 14px;
  font-size: 0.74rem;
  letter-spacing: 0.06em;
  color: #fff;
  background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
}

/* ===================== WEST COAST BAND ===================== */
.wc-band {
  position: relative;
  min-height: 460px;
  display: flex;
  align-items: center;
  background: url("newport-coast.jpg") center 40% / cover no-repeat fixed;
  color: var(--paper);
}
.wc-band-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(110deg, rgba(20,18,16,0.82) 0%, rgba(20,18,16,0.45) 50%, rgba(20,18,16,0.25) 100%);
}
.wc-band-inner { position: relative; padding: 96px 24px; }
.wc-band-eyebrow {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  letter-spacing: 0.16em;
  color: var(--gold-soft);
  margin-bottom: 20px;
}
.wc-band-title {
  font-size: clamp(1.9rem, 4.4vw, 3rem);
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.04em;
  margin-bottom: 22px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.35);
}
.wc-band-text {
  font-size: 1.02rem;
  font-weight: 300;
  color: rgba(255,255,255,0.86);
  max-width: 560px;
}

/* 「詳しく見る」系ボタン共通 */
.founder-more { margin-top: 36px; }

/* ===================== FOUNDER ===================== */
.founder { background: var(--paper); }
.founder-inner {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 64px;
  align-items: center;
}
.founder-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--paper-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.founder-photo-fallback {
  position: absolute;
  inset: 0;
  display: none;          /* img 読み込み失敗時に onerror で flex 表示 */
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  letter-spacing: 0.3em;
  font-size: 0.8rem;
  color: var(--gray);
}
.founder-name {
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}
.founder-name-en {
  display: inline-block;
  margin-left: 16px;
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--gray);
  letter-spacing: 0.08em;
}
.founder-role {
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}
.founder-paragraph {
  font-size: 1rem;
  color: var(--ink-soft);
  margin-bottom: 18px;
}

/* 経歴（北米ビジネス経験） */
.founder-career {
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.founder-career-title {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.founder-career-list { list-style: none; }
.founder-career-list li {
  position: relative;
  padding: 10px 0 10px 22px;
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.8;
}
.founder-career-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 18px;
  width: 7px; height: 7px;
  border: 1px solid var(--gold);
  transform: rotate(45deg);
}

/* ===================== CONTACT ===================== */
.contact { background: var(--paper-soft); }
.contact-head { max-width: 640px; margin-bottom: 56px; }
.contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 56px;
  align-items: start;
}
.field { margin-bottom: 22px; }
.field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
  color: var(--ink);
}
.field label span { color: var(--gold); }
.field input,
.field textarea {
  width: 100%;
  padding: 13px 16px;
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color 0.2s ease;
}
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.field textarea { resize: vertical; }

/* スパム対策のおとり項目は画面から隠す */
.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
}

/* 送信ボタンの無効化中スタイル */
#submitBtn:disabled { opacity: 0.6; cursor: default; }

/* 送信結果メッセージ */
.form-status {
  margin-top: 16px;
  font-size: 0.88rem;
  letter-spacing: 0.02em;
  min-height: 1.2em;
}
.form-status.is-sending { color: var(--gray); }
.form-status.is-success { color: #2f7d4f; }
.form-status.is-error   { color: #b4452f; }

.contact-info {
  background: var(--ink);
  color: var(--paper);
  padding: 44px 36px;
  border-radius: var(--radius);
}
.contact-info-title {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.contact-list > div { margin-bottom: 22px; }
.contact-list dt {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 4px;
}
.contact-list dd {
  font-size: 0.98rem;
  font-weight: 300;
  color: rgba(255,255,255,0.85);
}
.contact-list dd a:hover { color: var(--gold-soft); }

/* ===================== FOOTER ===================== */
.site-footer {
  background: var(--ink);
  color: var(--paper);
  padding: 56px 0;
  text-align: center;
}
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 14px; }
.brand-footer { color: var(--paper); }
.footer-tagline {
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
}
.footer-copy {
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.35);
}

/* ===================================================================
   SUBPAGE — Services 詳細ページ
   =================================================================== */
.services-more { text-align: center; margin-top: 48px; }

/* ページ上部ヒーロー */
.page-hero {
  padding: 150px 0 72px;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.breadcrumb {
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: var(--gray);
  margin-bottom: 28px;
}
.breadcrumb a { color: var(--gray); transition: color 0.2s ease; }
.breadcrumb a:hover { color: var(--ink); }
.breadcrumb span { margin: 0 8px; color: var(--line); }
.breadcrumb span:last-child { margin: 0; color: var(--ink); }
.page-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-bottom: 24px;
}
.page-lead {
  font-size: 1.05rem;
  color: var(--ink-soft);
  max-width: 760px;
  line-height: 2;
}

/* 各サービス詳細ブロック */
.service-detail {
  padding: 88px 0;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}
.service-detail.alt { background: var(--paper-soft); }
.service-detail-inner {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 56px;
  align-items: start;
}
.service-detail-head { position: relative; }
.service-detail-name {
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  margin: 14px 0 6px;
}
.service-detail-lead {
  font-size: 1.05rem;
  color: var(--ink-soft);
  line-height: 2;
  margin-bottom: 36px;
}
.offer-block { border-top: 1px solid var(--line); padding-top: 28px; }
.offer-title {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.offer-list { list-style: none; }
.offer-list li {
  position: relative;
  padding: 12px 0 12px 26px;
  font-size: 0.98rem;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--line);
}
.offer-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 21px;
  width: 8px; height: 8px;
  border: 1px solid var(--gold);
  transform: rotate(45deg);
}

/* 下部CTA */
.page-cta {
  background: var(--ink);
  color: var(--paper);
  padding: 96px 0;
  text-align: center;
}
.page-cta-title {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-bottom: 18px;
}
.page-cta-text {
  font-size: 1rem;
  color: rgba(255,255,255,0.72);
  margin-bottom: 36px;
}
.page-cta .btn-primary {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--paper);
}
.page-cta .btn-primary:hover { background: var(--paper-soft); }

@media (max-width: 900px) {
  .service-detail-inner { grid-template-columns: 1fr; gap: 32px; }
  .service-detail { padding: 64px 0; }
}
@media (max-width: 640px) {
  .page-hero { padding: 120px 0 56px; }
  .service-detail-name { font-size: 2rem; }
}

/* ===================================================================
   RESPONSIVE — Tablet
   =================================================================== */
@media (max-width: 900px) {
  .section { padding: 88px 0; }
  .section-head { margin-bottom: 48px; }

  .about-inner,
  .founder-inner,
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }

  .founder-visual { max-width: 360px; }

  /* モバイル/タブレットでは固定背景を無効化（描画負荷・ズレ対策） */
  .wc-band { background-attachment: scroll; min-height: 380px; }
  .about-photo img { height: 260px; }
}

/* ===================================================================
   RESPONSIVE — Mobile
   =================================================================== */
@media (max-width: 640px) {
  :root { --gut: 20px; }

  .pc-only { display: none; }

  /* モバイルナビ */
  .nav {
    position: fixed;
    top: 72px; right: 0;
    width: min(78vw, 320px);
    height: calc(100vh - 72px);
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 32px 28px;
    background: var(--paper);
    border-left: 1px solid var(--line);
    transform: translateX(100%);
    transition: transform 0.3s ease;
  }
  .nav.is-open { transform: translateX(0); }
  .nav-link { width: 100%; padding: 14px 0; font-size: 1rem; }
  .nav-cta {
    margin-top: 12px;
    width: 100%;
    text-align: center;
    padding: 14px;
  }
  .nav-toggle { display: flex; }

  /* モバイルでは言語切替とハンバーガーを近づける */
  .header-right { gap: 14px; }

  .hero { min-height: 80vh; }
  .hero-inner { padding: 72px 20px; }
  .hero-actions .btn { flex: 1; }

  .section-title { font-size: 1.6rem; }

  .service-card { padding: 36px 28px; }

  .about-statement { padding: 40px 28px; }
  .about-statement blockquote { font-size: 1.5rem; }

  .founder-name { font-size: 1.35rem; }
  .founder-name-en { display: block; margin: 6px 0 0; }

  .contact-info { padding: 36px 28px; }
}

/* ===================================================================
   FOUNDER PAGE（代表ページ）
   =================================================================== */
.fp-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: flex-end;
  background: url("newport-street.jpg") center 45% / cover no-repeat;
  color: var(--paper);
}
.fp-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,14,13,0.92) 0%, rgba(15,14,13,0.45) 45%, rgba(15,14,13,0.30) 100%);
}
.fp-hero-inner { position: relative; width: 100%; padding: 150px 24px 64px; }
.breadcrumb.light { color: rgba(255,255,255,0.7); }
.breadcrumb.light a { color: rgba(255,255,255,0.7); }
.breadcrumb.light a:hover { color: #fff; }
.breadcrumb.light span { color: rgba(255,255,255,0.45); }
.breadcrumb.light span:last-child { color: rgba(255,255,255,0.85); }
.fp-hero-eyebrow {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  letter-spacing: 0.16em;
  color: var(--gold-soft);
  margin-bottom: 14px;
}
.fp-hero-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-bottom: 26px;
  text-shadow: 0 2px 18px rgba(0,0,0,0.3);
}
.fp-hero-name {
  font-size: 1.7rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}
.fp-name-en {
  display: inline-block;
  margin-left: 16px;
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 400;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.08em;
}
.fp-hero-role {
  font-size: 0.82rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-soft);
}
.fp-body { background: var(--paper); }
.fp-band { min-height: 360px; }

@media (max-width: 640px) {
  .fp-hero { min-height: 62vh; }
  .fp-hero-inner { padding: 116px 20px 44px; }
  .fp-hero-name { font-size: 1.4rem; }
  .fp-name-en { display: block; margin: 6px 0 0; }
}
