:root {
  --navy-deep: #0a1e38;
  --navy: #142b4c;
  --navy-light: #1f3d63;
  --gold: #b8956a;
  --gold-light: #d4b896;
  --gold-dark: #8b6f4e;
  --ivory: #faf7f0;
  --cream: #ede5d4;
  --paper: #f5f1e8;
  --ink: #1a1a1a;
  --ink-soft: #3a3a3a;
  --ink-light: #5a5a5a;
  --line: rgba(184, 149, 106, 0.25);
  --line-strong: rgba(184, 149, 106, 0.5);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Shippori Mincho', 'Noto Serif JP', serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.95;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 48px;
}

.container-narrow {
  max-width: 920px;
  margin: 0 auto;
  padding: 0 48px;
}

/* ============ HEADER ============ */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: rgba(10, 30, 56, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 100;
  padding: 22px 0;
  border-bottom: 1px solid rgba(184, 149, 106, 0.15);
  transition: padding 0.3s;
}

.nav-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  color: var(--ivory);
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-decoration: none;
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.logo .plus {
  color: var(--gold);
  font-style: italic;
}

.logo-tag {
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--gold-light);
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  text-transform: uppercase;
  margin-left: 6px;
}

.nav-links {
  display: flex;
  gap: 38px;
  list-style: none;
}

.nav-links a {
  color: var(--ivory);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.15em;
  transition: color 0.4s;
  position: relative;
  padding: 4px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.4s ease;
}

.nav-links a:hover { color: var(--gold-light); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--gold-light); }
.nav-links a.active::after { width: 100%; }

.nav-cta {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold-light);
  padding: 10px 24px;
  font-size: 12px;
  letter-spacing: 0.2em;
  cursor: pointer;
  transition: all 0.4s;
  font-family: 'Shippori Mincho', serif;
  text-decoration: none;
}

.nav-cta:hover {
  background: var(--gold);
  color: var(--ivory);
}

/* ============ PAGE HERO ============ */
.page-hero {
  background: var(--navy-deep);
  color: var(--ivory);
  padding: 220px 0 160px;
  position: relative;
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  align-items: center;
}

.page-hero-tree {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  opacity: 0.3;
  pointer-events: none;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold) 50%, transparent);
}

.page-hero .container {
  position: relative;
  z-index: 1;
  width: 100%;
}

.breadcrumb {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 13px;
  letter-spacing: 0.25em;
  color: var(--gold-light);
  margin-bottom: 56px;
}

.breadcrumb a {
  color: var(--gold-light);
  text-decoration: none;
  transition: color 0.3s;
}

.breadcrumb a:hover { color: var(--ivory); }
.breadcrumb .sep { margin: 0 12px; color: var(--gold); }

.page-hero h1 {
  font-family: 'Shippori Mincho', serif;
  font-size: clamp(34px, 5vw, 64px);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.04em;
  margin-bottom: 56px;
}

.page-hero h1 .accent {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--gold-light);
  font-weight: 400;
}

.hero-subline {
  font-size: 17px;
  line-height: 2.4;
  color: rgba(248, 244, 237, 0.85);
  max-width: 620px;
}

.page-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-family: 'Cormorant Garamond', serif;
  color: var(--gold-light);
  letter-spacing: 0.4em;
  font-size: 12px;
  margin-bottom: 40px;
  text-transform: uppercase;
}

.page-hero-tag::before, .page-hero-tag::after {
  content: '';
  display: inline-block;
  width: 40px; height: 1px;
  background: var(--gold);
}

/* ============ SECTION BASE ============ */
section.content {
  padding: 140px 0;
  position: relative;
}

.sec-label {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: 'Cormorant Garamond', serif;
  color: var(--gold-dark);
  letter-spacing: 0.4em;
  font-size: 12px;
  margin-bottom: 28px;
  text-transform: uppercase;
}

.sec-label::before {
  content: '';
  width: 40px; height: 1px;
  background: var(--gold);
}

.sec-num {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 14px;
  color: var(--gold);
  margin-left: 4px;
}

.sec-title {
  font-family: 'Shippori Mincho', serif;
  font-size: clamp(28px, 3.6vw, 46px);
  font-weight: 500;
  line-height: 1.5;
  color: var(--navy-deep);
  margin-bottom: 36px;
  letter-spacing: 0.03em;
}

.sec-title .en-sub {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.4em;
  color: var(--gold-dark);
  letter-spacing: 0.3em;
  font-style: italic;
  margin-top: 16px;
  font-weight: 300;
  text-transform: uppercase;
}

.sec-lead {
  font-size: 17px;
  line-height: 2.3;
  color: var(--ink-soft);
  max-width: 760px;
  margin-bottom: 64px;
}

/* ============ CONVICTIONS ============ */
.convictions {
  background: var(--ivory);
}

.conviction-list {
  margin-top: 72px;
}

.conviction-divider {
  text-align: center;
  margin: 64px 0;
  font-family: 'Cormorant Garamond', serif;
  color: var(--gold);
  font-size: 16px;
  letter-spacing: 0.5em;
}

.conviction-item {
  max-width: 800px;
  margin: 0 auto;
}

.conviction-num {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 64px;
  font-weight: 300;
  color: var(--gold);
  text-align: center;
  margin-bottom: 16px;
  line-height: 1;
}

.conviction-label {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--gold-dark);
  font-size: 14px;
  letter-spacing: 0.3em;
  text-align: center;
  margin-bottom: 36px;
  text-transform: uppercase;
}

.conviction-title {
  font-family: 'Shippori Mincho', serif;
  font-size: clamp(22px, 2.4vw, 30px);
  color: var(--navy-deep);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-align: center;
  margin-bottom: 32px;
  line-height: 1.7;
}

.conviction-body p {
  font-size: 16px;
  line-height: 2.3;
  color: var(--ink-soft);
  margin-bottom: 20px;
}

.conviction-body p:last-child { margin-bottom: 0; }

/* ============ FOUNDER MESSAGE ============ */
.founder-message {
  background: var(--paper);
  position: relative;
}

.founder-message::before {
  content: '"';
  position: absolute;
  top: 80px; left: 60px;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 320px;
  color: var(--cream);
  font-weight: 300;
  line-height: 1;
  pointer-events: none;
  z-index: 0;
}

.founder-message .container { position: relative; z-index: 1; }

.message-body {
  max-width: 760px;
  margin: 0 auto;
  margin-top: 48px;
}

.message-body p {
  font-size: 17px;
  line-height: 2.4;
  color: var(--ink-soft);
  margin-bottom: 28px;
  text-indent: 1em;
}

.message-body p:first-child { text-indent: 0; }

.message-signature {
  margin-top: 56px;
  text-align: right;
  border-top: 1px solid var(--line);
  padding-top: 32px;
}

.message-signature .sig-en {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--gold-dark);
  font-size: 14px;
  letter-spacing: 0.2em;
  margin-bottom: 8px;
}

.message-signature .sig-name {
  font-family: 'Shippori Mincho', serif;
  font-size: 18px;
  color: var(--navy-deep);
  font-weight: 600;
}

.message-signature .sig-title {
  font-size: 13px;
  color: var(--ink-light);
  margin-top: 4px;
}

/* ============ PROFILE ============ */
.profile {
  background: var(--ivory);
}

.profile-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  margin-top: 72px;
  align-items: start;
}

.profile-photo {
  position: relative;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--navy-light) 0%, var(--navy-deep) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-strong);
  overflow: hidden;
}

.profile-photo::before {
  content: '';
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(184, 149, 106, 0.3);
  pointer-events: none;
  z-index: 2;
}

.profile-photo-placeholder {
  color: var(--gold-light);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 14px;
  letter-spacing: 0.3em;
  text-align: center;
  text-transform: uppercase;
}

.profile-photo svg {
  width: 60%;
  opacity: 0.4;
  margin-bottom: 24px;
}

.profile-info {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.profile-row {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 32px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
  align-items: start;
}

.profile-row:last-child { border-bottom: 1px solid var(--line); }

.profile-label {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--gold-dark);
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding-top: 4px;
}

.profile-value {
  font-size: 15px;
  line-height: 1.95;
  color: var(--ink);
}

.profile-value ul {
  list-style: none;
  padding: 0;
}

.profile-value li {
  padding-left: 16px;
  position: relative;
  margin-bottom: 4px;
}

.profile-value li::before {
  content: '◇';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 10px;
}

.personal-note {
  margin-top: 56px;
  padding: 36px 40px;
  background: var(--paper);
  border-left: 3px solid var(--gold);
}

.personal-note h4 {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--gold-dark);
  font-size: 13px;
  letter-spacing: 0.3em;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.personal-note p {
  font-size: 15px;
  line-height: 2;
  color: var(--ink-soft);
  font-style: italic;
}

/* ============ NOT-DOING ============ */
.not-doing {
  background: var(--navy-deep);
  color: var(--ivory);
  position: relative;
}

.not-doing::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold) 50%, transparent);
}

.not-doing .sec-title { color: var(--ivory); }
.not-doing .sec-label { color: var(--gold-light); }
.not-doing .sec-lead { color: rgba(248, 244, 237, 0.82); }

.not-doing-list {
  margin-top: 72px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.not-doing-item {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 36px;
  padding: 36px 0;
  border-top: 1px solid rgba(184, 149, 106, 0.15);
  align-items: start;
  transition: padding 0.4s, background 0.4s;
}

.not-doing-item:last-child { border-bottom: 1px solid rgba(184, 149, 106, 0.15); }

.not-doing-item:hover {
  padding-left: 16px;
  background: rgba(184, 149, 106, 0.04);
}

.not-doing-num {
  font-family: 'Shippori Mincho', serif;
  font-size: 32px;
  color: var(--gold);
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.1em;
}

.not-doing-content h3 {
  font-family: 'Shippori Mincho', serif;
  font-size: 20px;
  color: var(--ivory);
  margin-bottom: 16px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.not-doing-content p {
  font-size: 15px;
  line-height: 2;
  color: rgba(248, 244, 237, 0.78);
  max-width: 720px;
}

/* ============ COMPANY INFO ============ */
.company {
  background: var(--paper);
}

.company-table {
  margin-top: 72px;
  border-top: 1px solid var(--line);
}

.company-row {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 48px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.company-label {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--gold-dark);
  font-size: 13px;
  letter-spacing: 0.25em;
  padding-top: 4px;
  text-transform: uppercase;
}

.company-value {
  font-size: 15px;
  line-height: 1.95;
  color: var(--ink);
}

.company-value ul {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px 24px;
}

.company-value li {
  padding-left: 16px;
  position: relative;
}

.company-value li::before {
  content: '◇';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 10px;
}

.company-value a {
  color: var(--gold-dark);
  text-decoration: none;
  border-bottom: 1px solid var(--gold);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  letter-spacing: 0.1em;
}

/* ============ CLOSING ============ */
.closing {
  background: var(--navy-deep);
  color: var(--ivory);
  position: relative;
  overflow: hidden;
}

.closing::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(184, 149, 106, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(184, 149, 106, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

.closing .container { position: relative; z-index: 1; }
.closing .sec-title { color: var(--ivory); }
.closing .sec-label { color: var(--gold-light); }

.closing-content {
  max-width: 760px;
}

.closing-content p {
  font-size: 17px;
  line-height: 2.3;
  color: rgba(248, 244, 237, 0.85);
  margin-bottom: 28px;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  margin-top: 56px;
  flex-wrap: wrap;
}

.cta-btn {
  flex: 1;
  min-width: 220px;
  padding: 22px 36px;
  text-align: center;
  font-size: 14px;
  letter-spacing: 0.2em;
  text-decoration: none;
  border: 1px solid var(--gold);
  color: var(--gold-light);
  background: transparent;
  transition: all 0.4s;
  font-family: 'Shippori Mincho', serif;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.cta-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: translateY(100%);
  transition: transform 0.5s ease;
  z-index: 0;
}

.cta-btn:hover::before { transform: translateY(0); }

.cta-btn span {
  position: relative;
  z-index: 1;
  transition: color 0.3s;
}

.cta-btn:hover span { color: var(--ivory); }

.cta-btn.primary {
  background: var(--gold);
  color: var(--ivory);
}
.cta-btn.primary::before { background: var(--gold-dark); }

.closing-footer-msg {
  margin-top: 80px;
  text-align: center;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--gold-light);
  font-size: 16px;
  letter-spacing: 0.15em;
  opacity: 0.85;
}

/* ============ FOOTER ============ */
footer {
  background: #050f1d;
  color: rgba(248, 244, 237, 0.7);
  padding: 96px 0 48px;
  border-top: 1px solid rgba(184, 149, 106, 0.15);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
  gap: 56px;
  margin-bottom: 80px;
}

.footer-brand .logo { margin-bottom: 28px; }
.footer-brand p {
  font-size: 13px;
  line-height: 2;
  color: rgba(248, 244, 237, 0.5);
}

.footer-col h4 {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 0.25em;
  margin-bottom: 24px;
  text-transform: uppercase;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(184, 149, 106, 0.2);
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 14px; }
.footer-col a {
  color: rgba(248, 244, 237, 0.65);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.05em;
  transition: color 0.3s;
}
.footer-col a:hover { color: var(--gold-light); }

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(184, 149, 106, 0.15);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 12px;
  letter-spacing: 0.15em;
  color: rgba(248, 244, 237, 0.4);
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s, transform 1s;
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .container, .container-narrow { padding: 0 28px; }
  .nav-links { display: none; }
  section.content { padding: 80px 0; }
  .page-hero { padding: 140px 0 80px; min-height: auto; }
  .page-hero-tree { width: 300px; height: 300px; }

  .profile-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .profile-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .company-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .company-value ul { grid-template-columns: 1fr; }

  .not-doing-item {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .not-doing-num { text-align: left; font-size: 24px; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .cta-buttons { flex-direction: column; }
  .cta-btn { width: 100%; }
  .founder-message::before { font-size: 200px; left: 20px; }
}

.demo-banner {
  position: fixed;
  bottom: 20px; right: 20px;
  background: var(--navy-deep);
  color: var(--gold-light);
  padding: 12px 20px;
  font-size: 11px;
  letter-spacing: 0.2em;
  z-index: 1000;
  border: 1px solid var(--gold);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
}