/* ============================================================
   BE PROTEAN LP — Dark Theme
   ベース: /Users/yuya/.cursor/be-protean/docs/lp.html のデザイン
   ============================================================ */

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background-color: #0D0D0D;
  color: #F0EDE8;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 15px;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

@media (min-width: 768px) { body { font-size: 16px; } }

/* ===== COLORS ===== */
.text-accent  { color: #C9A84C; }
.text-danger  { color: #9B3A3A; }
.bg-gray      { background-color: #141414; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3 { font-family: 'Cormorant Garamond', serif; }

.section-tag {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #C9A84C;
  margin-bottom: 12px;
}

.section-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: 0.04em;
  color: #F0EDE8;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 0.9rem;
  color: #A09A92;
  margin-bottom: 8px;
}

.section-sub-text {
  font-size: 0.92rem;
  color: #A09A92;
  line-height: 1.9;
  margin-top: 8px;
}

.section-lead {
  font-size: 0.95rem;
  color: #A09A92;
  line-height: 2;
  margin-bottom: 20px;
}

/* ===== LAYOUT ===== */
.container {
  width: 100%;
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 20px;
}

@media (min-width: 768px) { .container { padding: 0 32px; } }

.section { padding: 72px 0; }
@media (min-width: 768px) { .section { padding: 108px 0; } }

.section-header {
  text-align: center;
  margin-bottom: 52px;
}

/* ===== ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

@keyframes poyopoyo {
  0%   { transform: scale(1); }
  30%  { transform: scale(1.04, 0.97); }
  60%  { transform: scale(0.97, 1.04); }
  80%  { transform: scale(1.02, 0.99); }
  100% { transform: scale(1); }
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: #0D0D0D; }
::-webkit-scrollbar-thumb { background: #2A2A2A; }
::selection { background: #C9A84C33; color: #F0EDE8; }

/* ===== QUOTE BOX ===== */
.quote-box {
  border-left: 3px solid #C9A84C;
  background: #141414;
  padding: 24px 24px 24px 28px;
  border-radius: 0 4px 4px 0;
  margin-top: 32px;
}

.quote-box blockquote p {
  font-size: 0.95rem;
  line-height: 2;
  color: #F0EDE8;
}

.quote-italic {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.9;
}

.quote-author {
  margin-top: 14px;
  font-size: 0.8rem;
  color: #A09A92;
  letter-spacing: 0.08em;
}

/* ============================================================
   NAV
   ============================================================ */
.nav-fixed {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: rgba(13, 13, 13, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid #1A1A1A;
}

.nav-inner {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 20px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

@media (min-width: 768px) { .nav-inner { padding: 0 32px; } }

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: #F0EDE8;
  flex-shrink: 0;
}

.nav-links {
  display: none;
  gap: 28px;
}

@media (min-width: 768px) { .nav-links { display: flex; } }

.nav-link-item {
  font-size: 0.82rem;
  color: #A09A92;
  text-decoration: none;
  letter-spacing: 0.06em;
  transition: color 0.2s;
}

.nav-link-item:hover { color: #C9A84C; }

.nav-cta-wrap { flex-shrink: 0; }

.nav-cta-btn {
  display: inline-block;
  background: #C9A84C;
  color: #0D0D0D;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  padding: 9px 18px;
  border-radius: 3px;
  text-decoration: none;
  transition: background 0.2s;
}

.nav-cta-btn:hover { background: #D4B560; }

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

@media (min-width: 768px) { .hamburger { display: none; } }

.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: #F0EDE8;
  transition: transform 0.3s, opacity 0.3s;
}

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

.mobile-menu {
  display: none;
  flex-direction: column;
  background: #0D0D0D;
  border-top: 1px solid #1A1A1A;
  padding: 8px 0 16px;
}

.mobile-menu.active { display: flex; }

.mobile-menu-link {
  padding: 14px 24px;
  color: #A09A92;
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  border-bottom: 1px solid #1A1A1A;
  transition: color 0.2s;
}

.mobile-menu-link:hover { color: #C9A84C; }

.mobile-menu-cta {
  margin: 12px 24px 0;
  background: #C9A84C;
  color: #0D0D0D;
  font-weight: 700;
  text-align: center;
  border-radius: 3px;
  border-bottom: none;
}

/* ============================================================
   HERO
   ============================================================ */
.hero-section {
  min-height: 100svh;
  padding-top: 60px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background-color: #0D0D0D;
  background-image: url('img/bg-abstract.jpg');
  background-size: cover;
  background-position: center 60%;
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(13, 13, 13, 0.82);
  pointer-events: none;
}

.hero-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(#2A2A2A0F 1px, transparent 1px),
    linear-gradient(90deg, #2A2A2A0F 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding-top: 48px;
  padding-bottom: 80px;
}

@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr 400px;
    gap: 64px;
    align-items: center;
  }
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  color: #A09A92;
  letter-spacing: 0.1em;
  margin-bottom: 28px;
}

.hero-badge-line {
  display: inline-block;
  width: 28px;
  height: 1px;
  background: #C9A84C;
  flex-shrink: 0;
}

.hero-stats-row {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero-stat-label {
  font-size: 0.68rem;
  color: #A09A92;
  letter-spacing: 0.08em;
}

.hero-stat-num {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #C9A84C;
  line-height: 1;
}

.hero-stat-unit { font-size: 1.1rem; }

.hero-stat-sub {
  font-size: 0.72rem;
  color: #A09A92;
}

.hero-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 5vw, 3.6rem);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0.04em;
  color: #F0EDE8;
  margin-bottom: 20px;
  white-space: nowrap;
}

.hero-sub {
  font-size: 0.95rem;
  color: #A09A92;
  line-height: 2;
  margin-bottom: 28px;
}

.hero-voice-quote {
  margin: 24px 0 0;
  padding: 14px 18px;
  border-left: 3px solid #C8A96E;
  background: rgba(200, 169, 110, 0.06);
  border-radius: 0 4px 4px 0;
}

.hero-voice-quote-text {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1rem;
  line-height: 1.75;
  color: #F0EDE8;
  margin: 0 0 6px;
}

.hero-voice-quote-cite {
  font-size: 0.75rem;
  color: #A09A92;
  letter-spacing: 0.06em;
  font-style: normal;
}

.hero-logos { margin-top: 32px; }

.hero-logos-label {
  font-size: 0.72rem;
  color: #A09A92;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}

.hero-logos-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-logo-item {
  background: #1A1A1A;
  border: 1px solid #2A2A2A;
  color: #A09A92;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  padding: 6px 14px;
  border-radius: 2px;
}

.hero-form-wrap { width: 100%; }

.hero-form-card {
  background: #141414;
  border: 1px solid #C9A84C44;
  border-radius: 4px;
  padding: 28px 24px;
}

@media (min-width: 768px) { .hero-form-card { padding: 36px 32px; } }

.hero-form-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.6;
  color: #F0EDE8;
  margin-bottom: 24px;
  text-align: center;
}

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

.form-group label {
  display: block;
  font-size: 0.72rem;
  color: #C9A84C;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.form-group input {
  width: 100%;
  background: #0D0D0D;
  border: 1px solid #2A2A2A;
  color: #F0EDE8;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.9rem;
  padding: 12px 14px;
  border-radius: 3px;
  outline: none;
  transition: border-color 0.2s;
}

.form-group input:focus { border-color: #C9A84C66; }
.form-group input::placeholder { color: #3A3A3A; }

.form-submit-btn {
  width: 100%;
  background: #C9A84C;
  color: #0D0D0D;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  padding: 16px 24px;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 8px;
  animation: poyopoyo 2.4s ease infinite;
  transition: background 0.2s;
}

.form-submit-btn:hover { background: #D4B560; animation: none; }

.btn-arrow { font-size: 0.85rem; }

.hero-form-sub-link {
  display: block;
  text-align: center;
  margin-top: 14px;
  font-size: 0.82rem;
  color: #C9A84C;
  text-decoration: none;
  border: 1px solid #C9A84C44;
  padding: 12px;
  border-radius: 3px;
  transition: background 0.2s;
}

.hero-form-sub-link:hover { background: #C9A84C11; }

.hero-form-note {
  text-align: center;
  font-size: 0.72rem;
  color: #A09A92;
  margin-top: 10px;
}

/* ============================================================
   CHECKLIST
   ============================================================ */
.checklist-wrap { margin-bottom: 32px; }
.checklist { list-style: none; }

.checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid #1E1E1E;
}

.checklist-item:last-child { border-bottom: none; }

.checklist-icon {
  font-size: 0.9rem;
  flex-shrink: 0;
  margin-top: 3px;
}

.checklist-icon.warn  { color: #9B3A3A; }
.checklist-icon.check { color: #C9A84C; }

.checklist-item strong {
  font-size: 0.95rem;
  color: #F0EDE8;
  font-weight: 600;
  display: block;
  margin-bottom: 4px;
}

.checklist-detail {
  font-size: 0.85rem;
  color: #A09A92;
  line-height: 1.8;
}

/* ============================================================
   FEAR
   ============================================================ */
.fear-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 36px;
}

@media (min-width: 640px) { .fear-cards { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .fear-cards { grid-template-columns: 1fr 1fr 1fr; } }

.fear-card {
  background: #0D0000;
  border: 1px solid #3A1A1A;
  border-radius: 4px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.fear-card-icon { font-size: 1.4rem; color: #9B3A3A; }
.fear-card-title { font-weight: 700; font-size: 0.95rem; color: #F0EDE8; line-height: 1.6; }
.fear-card-desc  { font-size: 0.85rem; color: #A09A92; line-height: 1.85; }

.fear-note {
  text-align: center;
  font-size: 0.95rem;
  line-height: 2;
  color: #A09A92;
}

/* ============================================================
   CTA BANNER (mid-page)
   ============================================================ */
.cta-banner {
  background: #141414;
  border-top: 1px solid #2A2A2A;
  border-bottom: 1px solid #2A2A2A;
  padding: 48px 0;
}

.cta-banner-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

@media (min-width: 768px) {
  .cta-banner-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.cta-banner-text {
  font-size: 1rem;
  color: #F0EDE8;
  line-height: 1.8;
  font-weight: 500;
}

.cta-banner-btn {
  display: inline-block;
  background: #C9A84C;
  color: #0D0D0D;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  padding: 14px 28px;
  border-radius: 3px;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.2s;
}

.cta-banner-btn:hover { background: #D4B560; }

/* ============================================================
   MANIFESTO SECTION
   ============================================================ */
.manifesto-section {
  padding: 88px 0 96px;
  background: #0D0D0D;
  border-top: 1px solid #1E1E1E;
}

.manifesto-inner {
  text-align: center;
}

.manifesto-label {
  display: block;
  font-size: 0.6rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #C9A84C;
  margin-bottom: 32px;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
}

.manifesto-line {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 5vw, 3rem);
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0.05em;
  color: #F0EDE8;
  display: block;
}

.manifesto-line--gold {
  color: #C9A84C;
  margin-top: 0.1em;
}

@media (min-width: 768px) {
  .manifesto-section { padding: 112px 0 120px; }
}

/* ============================================================
   STORY
   ============================================================ */
.story-content {
  max-width: 680px;
  margin: 0 auto;
}

.story-lead {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  font-style: italic;
  line-height: 1.9;
  color: #F0EDE8;
  margin-bottom: 24px;
}

.story-body {
  font-size: 0.95rem;
  color: #A09A92;
  line-height: 2;
  margin-bottom: 16px;
}

.story-highlight {
  font-size: 1rem;
  color: #F0EDE8;
  line-height: 2;
  margin: 24px 0;
}

/* ============================================================
   PROFILE
   ============================================================ */
.profile-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 768px) {
  .profile-grid {
    grid-template-columns: 280px 1fr;
    gap: 56px;
    align-items: start;
  }
}

.profile-photo img {
  width: 100%;
  max-width: 280px;
  border-radius: 4px;
  filter: grayscale(10%);
  display: block;
}

.profile-services {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.service-pill {
  display: inline-block;
  background: #1A1A1A;
  border: 1px solid #C9A84C44;
  color: #C9A84C;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  padding: 5px 14px;
  border-radius: 20px;
}

.profile-career {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 28px;
}

.profile-career-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.profile-career-marker {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #C9A84C;
  flex-shrink: 0;
  margin-top: 8px;
}

.profile-career-title {
  font-size: 0.92rem;
  font-weight: 700;
  color: #F0EDE8;
  margin-bottom: 4px;
}

.profile-career-desc {
  font-size: 0.84rem;
  color: #A09A92;
  line-height: 1.8;
}

.profile-quals {
  background: #141414;
  border: 1px solid #2A2A2A;
  border-radius: 4px;
  padding: 20px;
  margin-bottom: 24px;
}

.profile-quals-label {
  font-size: 0.68rem;
  color: #A09A92;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.profile-quals-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.profile-qual-item {
  font-size: 0.84rem;
  color: #A09A92;
  padding: 8px 12px;
  background: #0D0D0D;
  border-radius: 3px;
}

.profile-qual-item.accent {
  color: #C9A84C;
  background: #1A1500;
  border: 1px solid #C9A84C33;
}

.profile-career-consul {
  background: #141414;
  border: 1px solid #2A2A2A;
  border-radius: 4px;
  padding: 20px;
}

.profile-consul-badge {
  display: inline-block;
  background: #1A1500;
  border: 1px solid #C9A84C55;
  color: #C9A84C;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  padding: 4px 12px;
  border-radius: 2px;
  margin-bottom: 12px;
}

.profile-consul-text {
  font-size: 0.92rem;
  color: #F0EDE8;
  line-height: 1.9;
  margin-bottom: 8px;
}

.profile-consul-desc {
  font-size: 0.84rem;
  color: #A09A92;
  line-height: 1.9;
}

/* ============================================================
   RESULTS
   ============================================================ */
.results-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 640px) { .results-cards { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .results-cards { grid-template-columns: 1fr 1fr 1fr; } }

.result-card {
  background: #141414;
  border: 1px solid #2A2A2A;
  border-radius: 4px;
  overflow: hidden;
  padding: 24px 20px;
}

.result-card-top {
  height: 3px;
  margin: -24px -20px 20px;
}

.result-card-top.gold  { background: #C9A84C; }
.result-card-top.blue  { background: #4A7B8C; }
.result-card-top.brown { background: #8C6A4A; }

.result-card-label {
  font-size: 0.72rem;
  color: #A09A92;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}

.result-card-num {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.9rem;
  font-weight: 700;
  color: #F0EDE8;
  line-height: 1.2;
  margin-bottom: 12px;
}

.result-card-desc {
  font-size: 0.84rem;
  color: #A09A92;
  line-height: 1.85;
}

/* ============================================================
   COMPARISON
   ============================================================ */
.comparison-table-wrap {
  overflow-x: auto;
  margin-bottom: 32px;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 580px;
}

.comparison-table th,
.comparison-table td {
  padding: 14px 16px;
  text-align: center;
  font-size: 0.84rem;
  line-height: 1.7;
  vertical-align: middle;
}

.comp-th-label { background: transparent; border: none; }

.comp-th-normal {
  background: #141414;
  color: #A09A92;
  border: 1px solid #2A2A2A;
  font-size: 0.8rem;
  font-weight: 500;
}

.comp-th-accent {
  background: #1A1500;
  color: #C9A84C;
  border: 1px solid #C9A84C44;
  font-size: 0.8rem;
  font-weight: 700;
}

.comp-td-label {
  text-align: left;
  color: #A09A92;
  font-size: 0.82rem;
  border-bottom: 1px solid #1E1E1E;
  padding-left: 0;
}

.comp-td-normal {
  background: #0D0D0D;
  color: #A09A92;
  border: 1px solid #1E1E1E;
}

.comp-td-accent {
  background: #141400;
  color: #F0EDE8;
  border: 1px solid #C9A84C33;
  font-weight: 500;
}

.comp-td-accent.highlight { color: #C9A84C; }

/* ============================================================
   BEFORE / AFTER
   ============================================================ */
.ba-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 640px) { .ba-grid { grid-template-columns: 1fr 1fr; } }

.ba-card {
  border-radius: 4px;
  padding: 28px 24px;
}

.ba-before { background: #0D0000; border: 1px solid #3A1A1A; }
.ba-after  { background: #001A0D; border: 1px solid #1A3A2A; }

.ba-label {
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 16px;
}

.ba-before .ba-label { color: #9B3A3A; }
.ba-after  .ba-label { color: #3A7D5E; }

.ba-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ba-item {
  font-size: 0.9rem;
  color: #A09A92;
  line-height: 1.7;
  padding-left: 14px;
  border-left: 2px solid;
}

.ba-before .ba-item { border-color: #9B3A3A44; }
.ba-after  .ba-item { border-color: #3A7D5E44; }

/* ============================================================
   SERVICE
   ============================================================ */
.service-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 32px;
}

@media (min-width: 900px) {
  .service-cards { grid-template-columns: repeat(4, 1fr); }
}

.service-card {
  background: #141414;
  border: 1px solid #2A2A2A;
  border-radius: 4px;
  overflow: hidden;
}

.service-card-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 12px 16px;
  color: #0D0D0D;
}

.service-card-title.accent-bg { background: #C9A84C; }

.service-card-list {
  list-style: none;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-card-list li {
  font-size: 0.82rem;
  color: #A09A92;
  padding-left: 10px;
  border-left: 1px solid #2A2A2A;
}

.service-note {
  background: #141414;
  border: 1px solid #2A2A2A;
  border-radius: 4px;
  padding: 28px 24px;
  text-align: center;
}

.service-note-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 500;
  color: #F0EDE8;
  line-height: 1.6;
  margin-bottom: 14px;
}

.service-note-desc {
  font-size: 0.9rem;
  color: #A09A92;
  line-height: 1.9;
}

/* ============================================================
   NEWSLETTER
   ============================================================ */
.newsletter-card {
  background: #141414;
  border: 1px solid #C9A84C33;
  border-radius: 4px;
  padding: 40px 32px;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.newsletter-desc {
  font-size: 0.92rem;
  color: #A09A92;
  line-height: 1.9;
  margin: 16px 0 28px;
}

.newsletter-form { width: 100%; }

.newsletter-form-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (min-width: 640px) {
  .newsletter-form-row { flex-direction: row; gap: 10px; }
}

.nl-input {
  flex: 1;
  background: #0D0D0D;
  border: 1px solid #2A2A2A;
  color: #F0EDE8;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.9rem;
  padding: 13px 16px;
  border-radius: 3px;
  outline: none;
  transition: border-color 0.2s;
}

.nl-input:focus { border-color: #C9A84C66; }
.nl-input::placeholder { color: #3A3A3A; }

.nl-submit-btn {
  background: #C9A84C;
  color: #0D0D0D;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  padding: 13px 20px;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}

.nl-submit-btn:hover { background: #D4B560; }

.nl-msg { margin-top: 12px; font-size: 0.85rem; text-align: center; }
.nl-msg.success { color: #3A7D5E; }
.nl-msg.error   { color: #9B3A3A; }

.newsletter-form-note {
  font-size: 0.72rem;
  color: #A09A92;
  margin-top: 10px;
}

.newsletter-form-sub {
  font-size: 0.84rem;
  color: #A09A92;
  line-height: 1.9;
  margin-top: 20px;
}

/* ============================================================
   WHO IS THIS FOR
   ============================================================ */
.who-list { max-width: 680px; margin: 0 auto 32px; }

/* ============================================================
   VOICE
   ============================================================ */
.voice-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.voice-card {
  background: #141414;
  border: 1px solid #2A2A2A;
  border-radius: 4px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* メイン featured カード */
.voice-card--featured {
  border-color: #4A4A3A;
  padding: 36px 32px;
}

.voice-card--featured .voice-card-text {
  font-size: 1.2rem;
  line-height: 2;
}

/* サブカード 横並び */
.voice-sub-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.voice-card--sub {
  padding: 18px 16px;
  gap: 10px;
}

.voice-card--sub .voice-card-text {
  font-size: 0.88rem;
  line-height: 1.75;
}

@media (max-width: 600px) {
  .voice-sub-cards { grid-template-columns: 1fr; }
  .voice-card--featured { padding: 28px 20px; }
  .voice-card--featured .voice-card-text { font-size: 1.05rem; }
}

.voice-card-text {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1rem;
  line-height: 1.85;
  color: #F0EDE8;
  flex: 1;
}

.voice-card-author {
  font-size: 0.78rem;
  color: #A09A92;
  letter-spacing: 0.06em;
  border-top: 1px solid #2A2A2A;
  padding-top: 12px;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-wrap {
  max-width: 680px;
  margin: 0 auto;
}

.faq-item { border-bottom: 1px solid #2A2A2A; }

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 20px 0;
  cursor: pointer;
  background: transparent;
  border: none;
  color: #F0EDE8;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  text-align: left;
  gap: 12px;
  -webkit-tap-highlight-color: transparent;
}

.faq-q span { flex: 1; }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  color: #A09A92;
  font-size: 0.9rem;
  line-height: 1.9;
}

.faq-a.open { max-height: 500px; padding-bottom: 20px; }

.faq-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: #C9A84C;
  transition: transform 0.3s;
}

.faq-icon.open { transform: rotate(45deg); }

/* ============================================================
   PM CREDIBILITY
   ============================================================ */
.pm-proof-inner { max-width: 680px; }

.pm-voices {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 28px 0;
}

.pm-voice-item {
  background: #141414;
  border: 1px solid #2A2A2A;
  border-left: 3px solid #C9A84C;
  border-radius: 4px;
  padding: 16px 20px;
}

.pm-voice-text {
  font-size: 0.9rem;
  color: #A09A92;
  line-height: 1.9;
  font-style: italic;
}
.pm-voice-text::before { content: '「'; }
.pm-voice-text::after  { content: '」'; }

.pm-proof-body {
  font-size: 0.95rem;
  color: #F0EDE8;
  line-height: 2.1;
  margin-bottom: 12px;
}

.pm-proof-body-muted {
  font-size: 0.88rem;
  color: #A09A92;
  line-height: 2;
  margin-bottom: 32px;
}

.pm-stats-row {
  display: flex;
  align-items: center;
  background: #141414;
  border: 1px solid #2A2A2A;
  border-radius: 4px;
  padding: 20px 24px;
  flex-wrap: wrap;
  gap: 16px;
}

.pm-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
  min-width: 140px;
}

.pm-stat-sep {
  width: 1px;
  height: 40px;
  background: #2A2A2A;
  flex-shrink: 0;
}

.pm-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  color: #C9A84C;
  line-height: 1.2;
}

.pm-stat-unit {
  font-size: 0.85rem;
}

.pm-stat-label {
  font-size: 0.68rem;
  color: #A09A92;
  letter-spacing: 0.04em;
  line-height: 1.6;
}

@media (max-width: 640px) {
  .pm-stat-sep { display: none; }
  .pm-stats-row { flex-direction: column; gap: 16px; }
}

/* ============================================================
   BRAND
   ============================================================ */
.brand-content { max-width: 680px; }

.brand-vision {
  border-left: 2px solid #C9A84C;
  padding: 20px 24px;
  margin-bottom: 32px;
  background: rgba(201, 168, 76, 0.04);
}

.brand-vision-label {
  font-size: 0.65rem;
  color: #C9A84C;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.brand-vision-main {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  color: #F0EDE8;
  line-height: 1.7;
  margin-bottom: 16px;
}

.brand-vision-body {
  font-size: 0.88rem;
  color: #A09A92;
  line-height: 2.1;
  margin-bottom: 16px;
}

.brand-vision-question {
  font-size: 0.88rem;
  color: #F0EDE8;
  line-height: 2;
  font-style: italic;
  border-top: 1px solid #2A2A2A;
  padding-top: 14px;
  margin-top: 4px;
}

.brand-body {
  font-size: 0.95rem;
  color: #F0EDE8;
  line-height: 2;
  margin-bottom: 12px;
}

.brand-body-muted {
  font-size: 0.9rem;
  color: #A09A92;
  line-height: 2;
  margin-bottom: 24px;
}

.brand-origin {
  background: #141414;
  border: 1px solid #2A2A2A;
  border-radius: 4px;
  padding: 24px;
  margin-top: 24px;
}

.brand-origin-label {
  font-size: 0.65rem;
  color: #C9A84C;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.brand-origin-text {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1rem;
  line-height: 1.9;
  color: #A09A92;
  margin-bottom: 14px;
}

.brand-origin-body {
  font-size: 0.9rem;
  color: #F0EDE8;
  line-height: 2;
}

/* ============================================================
   CLOSING CTA
   ============================================================ */
.cta-closing {
  background-color: #0D0D0D;
  background-image: url('img/bg-work.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 96px 0;
}

.cta-closing::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(13, 13, 13, 0.88);
}

.cta-closing .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

@media (min-width: 768px) {
  .cta-closing .container {
    grid-template-columns: 1fr 360px;
    align-items: start;
  }
}

.cta-closing-desc {
  font-size: 0.95rem;
  color: #A09A92;
  line-height: 2;
  margin: 16px 0 8px;
}

.cta-closing-body {
  font-size: 0.9rem;
  color: #A09A92;
  line-height: 2;
  margin-bottom: 32px;
}

.cta-closing-btns {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
}

@media (min-width: 480px) {
  .cta-closing-btns { flex-direction: row; flex-wrap: wrap; }
}

.cta-primary-btn {
  display: inline-block;
  background: #C9A84C;
  color: #0D0D0D;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.06em;
  padding: 16px 28px;
  border-radius: 3px;
  text-decoration: none;
  animation: poyopoyo 2.4s ease infinite;
  transition: background 0.2s;
}

.cta-primary-btn:hover { background: #D4B560; animation: none; }

.cta-secondary-btn {
  display: inline-block;
  border: 1px solid #C9A84C55;
  color: #C9A84C;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  padding: 15px 24px;
  border-radius: 3px;
  text-decoration: none;
  transition: background 0.2s;
}

.cta-secondary-btn:hover { background: #C9A84C11; }

.cta-closing-note {
  font-size: 0.75rem;
  color: #A09A92;
  margin-top: 8px;
}

.cta-closing-photo {
  width: 100%;
  border-radius: 4px;
  margin-bottom: 20px;
  filter: grayscale(20%);
}

/* ============================================================
   PRIVACY POLICY
   ============================================================ */
.pp-section {
  padding-top: 100px;
  padding-bottom: 80px;
  min-height: 100vh;
}

@media (min-width: 768px) {
  .pp-section { padding-top: 120px; padding-bottom: 100px; }
}

.pp-breadcrumb {
  font-size: 0.75rem;
  color: #A09A92;
  letter-spacing: 0.04em;
  margin-bottom: 32px;
}

.pp-breadcrumb a {
  color: #A09A92;
  text-decoration: none;
  transition: color 0.2s;
}

.pp-breadcrumb a:hover { color: #C9A84C; }

.pp-breadcrumb span { margin: 0 6px; }

.pp-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 500;
  letter-spacing: 0.06em;
  color: #F0EDE8;
  margin-bottom: 12px;
  padding-bottom: 20px;
  border-bottom: 1px solid #1A1A1A;
}

.pp-body {
  margin-top: 40px;
  max-width: 760px;
}

.pp-intro {
  font-size: 0.9rem;
  color: #A09A92;
  line-height: 2;
  margin-bottom: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid #1A1A1A;
}

.pp-block {
  margin-bottom: 40px;
  padding-bottom: 36px;
  border-bottom: 1px solid #1A1A1A;
}

.pp-block:last-child {
  border-bottom: none;
}

.pp-heading {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #C9A84C;
  margin-bottom: 14px;
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.pp-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #C9A84C;
}

.pp-block p {
  font-size: 0.88rem;
  color: #A09A92;
  line-height: 2;
  margin-bottom: 10px;
}

.pp-block p:last-child { margin-bottom: 0; }

.pp-sub {
  font-size: 0.85rem;
  color: #7A7470;
  margin-bottom: 10px !important;
}

.pp-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pp-list li {
  font-size: 0.86rem;
  color: #A09A92;
  line-height: 1.9;
  padding-left: 20px;
  position: relative;
}

.pp-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 6px;
  height: 1px;
  background: #C9A84C;
}

.pp-contact {
  background: #141414;
  border: 1px solid #1A1A1A;
  border-radius: 4px;
  padding: 18px 22px;
  margin-top: 16px;
}

.pp-contact p {
  font-size: 0.86rem;
  color: #A09A92;
  margin-bottom: 4px !important;
  line-height: 1.8;
}

.pp-contact-label {
  font-size: 0.78rem !important;
  color: #5A5450 !important;
  margin-bottom: 8px !important;
}

.pp-link {
  color: #C9A84C;
  text-decoration: none;
  transition: opacity 0.2s;
}

.pp-link:hover { opacity: 0.75; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer-main {
  background: #0D0D0D;
  border-top: 1px solid #1A1A1A;
  padding: 48px 0 36px;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: #F0EDE8;
  margin-bottom: 4px;
}

.footer-desc {
  font-size: 0.8rem;
  color: #A09A92;
  line-height: 1.8;
}

.footer-links { display: flex; gap: 20px; }

.footer-link-item {
  font-size: 0.75rem;
  color: #A09A92;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-link-item:hover { color: #C9A84C; }

.footer-copy {
  font-size: 0.72rem;
  color: #3A3A3A;
  margin-top: 4px;
}

/* ============================================================
   FLOATING CTA
   ============================================================ */
.float-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 100;
  padding: 12px 20px 20px;
  background: linear-gradient(to top, #0D0D0D 60%, rgba(13,13,13,0) 100%);
  transform: translateY(0);
  transition: transform 0.35s ease, opacity 0.35s ease;
  opacity: 1;
}

.float-cta.hidden { transform: translateY(110%); opacity: 0; }

.float-cta-btn {
  display: block;
  background: #C9A84C;
  color: #0D0D0D;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  padding: 16px 24px;
  border-radius: 3px;
  text-decoration: none;
  text-align: center;
  max-width: 480px;
  margin: 0 auto;
  transition: background 0.2s;
}

.float-cta-btn:hover { background: #D4B560; }

/* ============================================================
   MOBILE
   ============================================================ */
@media (max-width: 767px) {
  .section-heading { text-align: center; }
  .section-header  { text-align: center; }
  .hero-badge { justify-content: center; }
  .brand-content { max-width: 100%; }
  .quote-box blockquote p { text-align: left; }
  .checklist-item, .faq-q span, .faq-a, td, th { text-align: left; }
}

.sp-only { display: inline; }
@media (min-width: 768px) { .sp-only { display: none; } }
