/* ============================================================
   RISE WEALTH FINANCIAL PLANNING — DESIGN SYSTEM
   Direction: Dark luxury × Private bank × Beginner warmth
   参考: United BM Wealth の余白感・信頼感・高級感
   ============================================================ */

/* ===== TOKENS ===== */
:root {
  /* Brand Colors */
  --navy-950: #04091a;
  --navy-900: #070f22;
  --navy-800: #0b1530;
  --navy-700: #0f1e42;
  --navy-600: #152554;
  --gold-600: #b8902a;
  --gold-500: #c9a84c;
  --gold-400: #dfc06e;
  --gold-300: #efd898;
  --gold-200: #f7edcc;
  --ivory: #f5f1e8;
  --ivory-soft: #faf8f3;
  --white: #ffffff;

  /* Semantic */
  --bg-dark: var(--navy-900);
  --bg-light: var(--ivory-soft);
  --text-primary-dark: var(--ivory);
  --text-muted-dark: rgba(245,241,232,0.56);
  --text-primary-light: #0f1e42;
  --text-muted-light: rgba(15,30,66,0.54);
  --border-gold: rgba(201,168,76,0.22);
  --border-light: rgba(15,30,66,0.1);

  /* Typography */
  --font-display: 'Cormorant Garamond', 'Hiragino Mincho ProN', 'Yu Mincho', Georgia, serif;
  --font-body: 'Noto Sans JP', 'Hiragino Sans', 'Yu Gothic', sans-serif;

  /* Spacing */
  --section-y: clamp(88px, 12vw, 148px);
  --section-x: clamp(24px, 6vw, 80px);
  --max-w: 1280px;

  /* Shadow */
  --shadow-gold: 0 0 60px rgba(201,168,76,0.08);
  --shadow-dark: 0 32px 80px rgba(0,0,0,0.5);
  --shadow-card: 0 8px 32px rgba(0,0,0,0.14);

  /* Transition */
  --ease: cubic-bezier(0.25, 0.8, 0.25, 1);
  --t: 220ms;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--bg-dark);
  color: var(--text-primary-dark);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font: inherit; border: none; background: none; }
ul, ol { list-style: none; }

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  padding: 0 var(--section-x);
  background: transparent;
  transition: background var(--t) var(--ease), border-color var(--t) var(--ease);
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  background: rgba(4, 9, 26, 0.96);
  border-bottom-color: var(--border-gold);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.site-logo__img {
  height: 46px;
  width: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.8vw, 40px);
}

.site-nav a {
  color: rgba(245,241,232,0.64);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color var(--t);
  white-space: nowrap;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] { color: var(--gold-400); }

.site-nav__line {
  border: 1px solid var(--border-gold) !important;
  border-radius: 2px;
  padding: 9px 20px !important;
  color: var(--gold-400) !important;
  font-size: 0.78rem !important;
  letter-spacing: 0.1em !important;
  transition: background var(--t), border-color var(--t) !important;
}

.site-nav__line:hover {
  background: rgba(201,168,76,0.1) !important;
  border-color: var(--gold-400) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 40px;
  height: 40px;
  padding: 6px;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--ivory);
  transition: transform var(--t), opacity var(--t);
}

/* ===== SHARED UTILS ===== */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--gold-500);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

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

.h-display {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.site-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 54px;
  padding: 0 32px;
  border-radius: 2px;
  font-family: var(--font-body);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-align: center;
  white-space: nowrap;
  transition: transform var(--t) var(--ease), filter var(--t), box-shadow var(--t);
}

.site-button:hover { transform: translateY(-2px); }

.site-button--primary {
  background: linear-gradient(135deg, var(--gold-600), var(--gold-400));
  color: var(--navy-900);
  box-shadow: 0 12px 30px rgba(201,168,76,0.24);
}

.site-button--primary:hover {
  filter: brightness(1.06);
  box-shadow: 0 18px 40px rgba(201,168,76,0.32);
}

.site-button--ghost {
  border: 1px solid rgba(245,241,232,0.22);
  color: var(--ivory);
}

.site-button--ghost:hover {
  border-color: rgba(245,241,232,0.5);
}

.site-button--line {
  background: linear-gradient(135deg, var(--gold-600), var(--gold-400));
  color: var(--navy-900);
  box-shadow: 0 12px 30px rgba(201,168,76,0.24);
}

.site-button--line:hover {
  filter: brightness(1.06);
  box-shadow: 0 18px 40px rgba(201,168,76,0.32);
}

/* Fade-in animation */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

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

/* 背景装飾 */
.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero__bg-grad {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 65% 0%, rgba(201,168,76,0.11) 0%, transparent 62%),
    radial-gradient(ellipse 45% 40% at 5% 90%, rgba(15,30,66,0.9) 0%, transparent 55%),
    linear-gradient(160deg, var(--navy-950) 0%, #080f22 55%, #0d1830 100%);
}

/* グリッドライン装飾 */
.hero__bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 80%);
}

/* ゴールドライン縦 */
.hero__bg-line {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 42%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(201,168,76,0.18) 30%, rgba(201,168,76,0.18) 70%, transparent);
}

.hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 120px var(--section-x) var(--section-y);
  display: grid;
  grid-template-columns: 1fr 420px;
  align-items: center;
  gap: clamp(40px, 7vw, 100px);
}

.hero__content .section-label { margin-bottom: 28px; }

.hero__title {
  font-size: clamp(2.8rem, 7vw, 5.6rem);
  color: var(--ivory);
  max-width: 640px;
}

.hero__title em {
  display: block;
  font-style: normal;
  color: var(--gold-400);
  font-size: 0.62em;
  margin-top: 12px;
  line-height: 1.4;
}

.hero__lead {
  margin-top: 28px;
  color: var(--text-muted-dark);
  font-size: clamp(0.93rem, 1.8vw, 1.05rem);
  line-height: 2;
  max-width: 500px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 40px;
}

.hero__sub {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(245,241,232,0.42);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
}

.hero__sub svg { flex-shrink: 0; opacity: 0.6; }

.hero__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 36px;
}

.hero__tag {
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 1px;
  color: rgba(245,241,232,0.52);
  padding: 6px 14px;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
}

/* Hero visual card */
.hero__visual { position: relative; z-index: 1; }

.hero__card {
  border: 1px solid var(--border-gold);
  border-radius: 4px;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.01) 100%),
    rgba(7,15,34,0.9);
  padding: clamp(28px, 4vw, 44px);
  box-shadow: var(--shadow-dark), var(--shadow-gold);
  position: relative;
  overflow: hidden;
}

.hero__card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-500), transparent);
  opacity: 0.5;
}

.hero__card-label {
  color: var(--gold-500);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  margin-bottom: 28px;
}

/* Hero flow */
.hero__flow {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.hero__flow-item {
  display: grid;
  grid-template-columns: 36px 1fr;
  align-items: center;
  gap: 16px;
  padding: 14px 18px;
  border: 1px solid var(--border-gold);
  border-radius: 3px;
  background: rgba(255,255,255,0.03);
  transition: background var(--t), border-color var(--t);
  position: relative;
}

.hero__flow-item:hover {
  background: rgba(201,168,76,0.06);
  border-color: rgba(201,168,76,0.4);
}

.hero__flow-item--last {
  border-color: rgba(201,168,76,0.4);
  background: rgba(201,168,76,0.07);
}

.hero__flow-num {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: rgba(201,168,76,0.45);
  line-height: 1;
  text-align: center;
  flex-shrink: 0;
}

.hero__flow-body {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.hero__flow-name {
  color: var(--ivory);
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0.02em;
}

.hero__flow-desc {
  color: var(--text-muted-dark);
  font-size: 0.72rem;
  letter-spacing: 0.03em;
}

.hero__flow-arrow {
  display: flex;
  justify-content: center;
  padding: 4px 0;
  color: rgba(201,168,76,0.3);
}

.hero__card-divider {
  height: 1px;
  background: var(--border-gold);
  margin: 20px 0;
}

.hero__card-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.hero__card-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(245,241,232,0.56);
  font-size: 0.78rem;
}

.hero__card-item::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold-500);
  opacity: 0.7;
  flex-shrink: 0;
}

/* スクロール誘導 */
.hero__scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(245,241,232,0.3);
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, rgba(201,168,76,0.4), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 0.8; transform: scaleY(1.2); }
}

/* ============================================================
   MARQUEE（参考サイトのスクロールテキスト）
   ============================================================ */
.marquee-wrap {
  overflow: hidden;
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
  padding: 18px 0;
  background: rgba(201,168,76,0.03);
}

.marquee-track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: marquee 28s linear infinite;
}

.marquee-text {
  display: flex;
  align-items: center;
  gap: 40px;
  padding-right: 40px;
  color: rgba(201,168,76,0.38);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  white-space: nowrap;
}

.marquee-text span {
  color: var(--gold-600);
  font-size: 0.6rem;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================================
   CONCERN
   ============================================================ */
.concern-section {
  background: var(--ivory-soft);
  padding: var(--section-y) var(--section-x);
}

.concern-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 8vw, 120px);
  align-items: center;
}

.concern-left .section-label { color: var(--gold-600); }
.concern-left .section-label::before { background: var(--gold-600); }

.concern-left h2 {
  font-size: clamp(2rem, 5vw, 3.8rem);
  color: var(--navy-900);
  line-height: 1.2;
  margin-top: 0;
}

.concern-right {
  border-left: 1px solid rgba(201,168,76,0.4);
  padding-left: clamp(28px, 5vw, 56px);
}

.concern-main {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.8vw, 2rem);
  color: var(--navy-800);
  line-height: 1.65;
  font-weight: 400;
  margin-bottom: 24px;
}

.concern-sub {
  color: var(--text-muted-light);
  line-height: 2;
  font-size: 0.96rem;
  margin-bottom: 32px;
}

.concern-tagline {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy-800);
  letter-spacing: 0.08em;
}

.concern-tagline::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--gold-500);
}

/* ============================================================
   DIAGNOSIS LEAD
   ============================================================ */
.diagnosis-lead {
  background: var(--navy-900);
  padding: var(--section-y) var(--section-x);
  position: relative;
  overflow: hidden;
}

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

.diagnosis-lead__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.diagnosis-lead__head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}

.diagnosis-lead__head h2 {
  font-size: clamp(2rem, 5vw, 3.6rem);
  color: var(--ivory);
  margin-top: 0;
}

.diagnosis-lead__head p {
  margin-top: 20px;
  color: var(--text-muted-dark);
  line-height: 1.9;
  font-size: 0.96rem;
}

.type-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border-gold);
  border: 1px solid var(--border-gold);
  border-radius: 4px;
  overflow: hidden;
}

.type-card {
  background: var(--navy-800);
  padding: clamp(28px, 4vw, 48px);
  transition: background var(--t);
}

.type-card:hover { background: var(--navy-700); }

.type-card__num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 600;
  line-height: 1;
  color: rgba(201,168,76,0.18);
  margin-bottom: 20px;
}

.type-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--ivory);
  margin-bottom: 14px;
  line-height: 1.3;
}

.type-card h3 small {
  font-size: 0.75em;
  color: var(--text-muted-dark);
  font-weight: 400;
}

.type-card p {
  color: var(--text-muted-dark);
  font-size: 0.88rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.type-card__bar {
  height: 2px;
  background: rgba(201,168,76,0.12);
  border-radius: 999px;
  overflow: hidden;
}

.type-card__bar span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--gold-600), var(--gold-400));
}

.diagnosis-lead__cta {
  text-align: center;
  margin-top: 52px;
}

.diagnosis-lead__cta p {
  margin-top: 14px;
  color: var(--text-muted-dark);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
}

/* ============================================================
   PLANNING
   ============================================================ */
.planning-section {
  background: var(--ivory-soft);
  padding: var(--section-y) var(--section-x);
}

.planning-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.planning-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 6vw, 80px);
  margin-bottom: 64px;
  align-items: end;
}

.planning-head .section-label { color: var(--gold-600); }
.planning-head .section-label::before { background: var(--gold-600); }

.planning-head h2 {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  color: var(--navy-900);
  margin-top: 0;
}

.planning-head p {
  color: var(--text-muted-light);
  line-height: 1.9;
  font-size: 0.95rem;
  align-self: end;
}

.planning-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.planning-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 3px;
  padding: clamp(24px, 3.5vw, 36px);
  transition: border-color var(--t), transform var(--t), box-shadow var(--t);
  position: relative;
  overflow: hidden;
}

.planning-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-600), var(--gold-400));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t) var(--ease);
}

.planning-card:hover {
  border-color: rgba(201,168,76,0.3);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(15,30,66,0.1);
}

.planning-card:hover::after { transform: scaleX(1); }

.planning-card__icon {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(201,168,76,0.24);
  border-radius: 2px;
  background: rgba(201,168,76,0.05);
  margin-bottom: 20px;
}

.planning-card__icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--gold-600);
}

.planning-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--navy-900);
  margin-bottom: 10px;
}

.planning-card p {
  color: var(--text-muted-light);
  font-size: 0.88rem;
  line-height: 1.85;
}

/* ============================================================
   COLUMN
   ============================================================ */
.column-section {
  background: var(--navy-900);
  padding: var(--section-y) var(--section-x);
  position: relative;
}

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

.column-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.column-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 52px;
  flex-wrap: wrap;
}

.column-head h2 {
  font-size: clamp(1.9rem, 4vw, 3rem);
  color: var(--ivory);
  margin-top: 0;
}

.column-head p {
  color: var(--text-muted-dark);
  font-size: 0.9rem;
  line-height: 1.9;
  max-width: 360px;
  text-align: right;
}

.column-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  min-height: 200px;
}

.column-loading {
  grid-column: 1/-1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 60px 0;
}

.column-loading__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold-500);
  opacity: 0.3;
  animation: dotPulse 1.2s ease-in-out infinite;
}

.column-loading__dot:nth-child(2) { animation-delay: 0.2s; }
.column-loading__dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes dotPulse {
  0%, 100% { opacity: 0.2; transform: scale(0.8); }
  50% { opacity: 0.7; transform: scale(1.2); }
}

.column-card {
  border: 1px solid var(--border-gold);
  border-radius: 3px;
  background: var(--navy-800);
  overflow: hidden;
  transition: transform var(--t), border-color var(--t), box-shadow var(--t);
}

.column-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201,168,76,0.45);
  box-shadow: var(--shadow-gold);
}

.column-card__thumb {
  height: 168px;
  overflow: hidden;
  background: var(--navy-700);
  position: relative;
}

.column-card__thumb--empty {
  background:
    radial-gradient(ellipse at 30% 50%, rgba(201,168,76,0.08), transparent 60%),
    linear-gradient(135deg, var(--navy-700), var(--navy-800));
}

.column-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.column-card:hover .column-card__thumb img { transform: scale(1.05); }

.column-card__body { padding: 24px; }

.column-card__tag {
  color: var(--gold-500);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.column-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ivory);
  line-height: 1.55;
  margin-bottom: 18px;
}

.column-card__link {
  color: var(--gold-500);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: color var(--t);
}

.column-card__link:hover { color: var(--gold-300); }

.column-more {
  text-align: center;
  margin-top: 44px;
}

/* ============================================================
   PROFILE
   ============================================================ */
.profile-section {
  background: var(--ivory-soft);
  padding: var(--section-y) var(--section-x);
}

.profile-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: clamp(48px, 8vw, 100px);
  align-items: start;
}

.profile-card {
  border: 1px solid rgba(201,168,76,0.24);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-dark);
  background: var(--navy-900);
  position: sticky;
  top: 96px;
}

.profile-card__photo {
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
}

.profile-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.6s ease;
}

.profile-card:hover .profile-card__photo img { transform: scale(1.03); }

.profile-card__info {
  padding: 26px 28px;
  border-top: 1px solid var(--border-gold);
  background:
    radial-gradient(ellipse at 20% 0%, rgba(201,168,76,0.1), transparent 55%),
    var(--navy-900);
}

.profile-card__role {
  color: var(--gold-400);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.profile-card__name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--ivory);
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}

.profile-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.profile-card__tags span {
  border: 1px solid var(--border-gold);
  border-radius: 1px;
  color: var(--text-muted-dark);
  padding: 4px 12px;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
}

.profile-content .section-label { color: var(--gold-600); }
.profile-content .section-label::before { background: var(--gold-600); }

.profile-content h2 {
  font-size: clamp(1.9rem, 4vw, 3rem);
  color: var(--navy-900);
  margin-bottom: 28px;
  margin-top: 0;
}

.profile-bio {
  color: var(--text-muted-light);
  line-height: 2;
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.profile-strengths {
  margin-top: 36px;
  border-top: 1px solid var(--border-light);
  padding-top: 32px;
  display: grid;
  gap: 14px;
}

.profile-strengths li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: var(--text-muted-light);
  font-size: 0.93rem;
  line-height: 1.6;
}

.profile-strengths li::before {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--gold-500);
  margin-top: 11px;
  flex-shrink: 0;
}

/* ============================================================
   LINE CTA
   ============================================================ */
.line-section {
  background: var(--navy-950);
  padding: var(--section-y) var(--section-x);
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

.line-section__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(201,168,76,0.1), transparent 60%);
  pointer-events: none;
}

.line-section__inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
}

.line-section .section-label {
  justify-content: center;
  margin-bottom: 24px;
}

.line-section .section-label::before { display: none; }

.line-section h2 {
  font-size: clamp(2rem, 5vw, 3.8rem);
  color: var(--ivory);
  margin-bottom: 24px;
}

.line-section p {
  color: var(--text-muted-dark);
  line-height: 2;
  font-size: 0.96rem;
  margin-bottom: 44px;
}

.line-section__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--navy-950);
  border-top: 1px solid var(--border-gold);
  padding: 40px var(--section-x);
}

.site-footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.site-footer__brand {
  display: flex;
  align-items: center;
  gap: 20px;
}

.site-footer__logo { height: 34px; width: auto; opacity: 0.7; }

.site-footer__copy {
  color: rgba(245,241,232,0.28);
  font-size: 0.76rem;
  letter-spacing: 0.04em;
}

.site-footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 28px;
}

.site-footer__nav a {
  color: rgba(245,241,232,0.38);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  transition: color var(--t);
}

.site-footer__nav a:hover { color: var(--gold-400); }

/* ============================================================
   MOBILE CTA
   ============================================================ */
.mobile-cta { display: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1fr;
  }
  .hero__visual { max-width: 440px; }
  .concern-inner { grid-template-columns: 1fr; }
  .planning-head { grid-template-columns: 1fr; }
  .planning-head p { text-align: left; }
  .profile-inner {
    grid-template-columns: 1fr;
  }
  .profile-card {
    position: static;
    max-width: 400px;
  }
}

@media (max-width: 768px) {
  .hamburger { display: flex; }

  .site-nav {
    position: fixed;
    top: 76px; left: 0; right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: rgba(4,9,26,0.98);
    border-bottom: 1px solid var(--border-gold);
    padding: 0 var(--section-x);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
  }

  .site-nav.is-open {
    max-height: 400px;
    padding: 20px var(--section-x);
  }

  .site-nav a {
    width: 100%;
    padding: 14px 0;
    border-bottom: 1px solid rgba(201,168,76,0.08);
    font-size: 0.9rem;
  }

  .site-nav__line {
    border: none !important;
    padding: 14px 0 !important;
    border-radius: 0 !important;
  }

  .type-grid { grid-template-columns: 1fr; gap: 1px; }
  .planning-grid { grid-template-columns: 1fr; }
  .column-grid { grid-template-columns: 1fr; }

  .concern-right { border-left: none; padding-left: 0; border-top: 1px solid rgba(201,168,76,0.3); padding-top: 32px; }

  .column-head { flex-direction: column; align-items: flex-start; }
  .column-head p { text-align: left; max-width: 100%; }

  .hero__scroll { display: none; }

  .mobile-cta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 150;
    padding: 10px 12px;
    background: rgba(4,9,26,0.96);
    border-top: 1px solid var(--border-gold);
    backdrop-filter: blur(16px);
  }

  .mobile-cta a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 46px;
    border-radius: 2px;
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-decoration: none;
  }

  .mobile-cta a:first-child {
    border: 1px solid var(--border-gold);
    color: var(--ivory);
  }

  .mobile-cta a:last-child {
    background: linear-gradient(135deg, var(--gold-600), var(--gold-400));
    color: var(--navy-900);
  }

  .site-footer { padding-bottom: 80px; }

  .line-section__actions { flex-direction: column; align-items: center; }
  .line-section__actions .site-button { width: 100%; max-width: 360px; }
}

@media (max-width: 480px) {
  .hero__actions { flex-direction: column; align-items: stretch; }
  .site-button { width: 100%; }
  .site-footer__inner { flex-direction: column; align-items: flex-start; }
}
