/* MedReach™ by i2m2 — LP Stylesheet */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Noto+Serif+JP:wght@400;700&family=Noto+Sans+JP:wght@300;400;500;700&display=swap');

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

:root {
  --bg-0: #0a0a0a;
  --bg-1: #111111;
  --bg-2: #1a1a1a;
  --text: #f0f0f0;
  --text-mute: #999999;
  --text-dim: #666666;
  --line: #222222;
  --line-strong: #333333;
  --gold-1: #b8860b;
  --gold-2: #d4a843;
  --gold-3: #e8c860;
  --gold-grad: linear-gradient(135deg, #b8860b, #d4a843 50%, #e8c860);
  --font-en: 'Playfair Display', serif;
  --font-jp-serif: 'Noto Serif JP', serif;
  --font-jp-sans: 'Noto Sans JP', sans-serif;
  --container: 1240px;
  --section-pad: 140px;
}
@media (max-width: 1024px) { :root { --section-pad: 100px; } }
@media (max-width: 768px) { :root { --section-pad: 80px; } }

html { scroll-behavior: smooth; }
body { font-family: var(--font-jp-sans); font-size: 15px; line-height: 1.8; color: var(--text); background: var(--bg-0); -webkit-font-smoothing: antialiased; overflow-x: hidden; }
a { color: inherit; text-decoration: none; transition: color 0.3s ease; }
img { max-width: 100%; height: auto; display: block; }
button { font-family: inherit; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 40px; }
@media (max-width: 768px) { .container { padding: 0 24px; } }

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-0); }
::-webkit-scrollbar-thumb { background: var(--line-strong); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold-1); }

/* Selection */
::selection { background: rgba(184,134,11,0.3); color: var(--text); }

/* Gold text gradient */
.gold-text { background: var(--gold-grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* Section base */
.section { padding: var(--section-pad) 0; }
.section--dark { background: var(--bg-0); }
.section--gray { background: var(--bg-1); }
.section-title { font-family: var(--font-en); font-size: clamp(40px, 5vw, 64px); font-weight: 400; color: var(--text); margin-bottom: 16px; letter-spacing: -0.01em; }
.section-subtitle { font-family: var(--font-jp-serif); font-size: 16px; color: var(--text-mute); margin-bottom: 64px; letter-spacing: 0.05em; }

/* ============ HEADER ============ */
.header { position: fixed; top: 32px; left: 0; right: 0; z-index: 1000; transition: all 0.4s ease; }
.header.scrolled { top: 0; background: rgba(10,10,10,0.85); backdrop-filter: blur(14px); border-bottom: 1px solid var(--line); }
.header-inner { max-width: var(--container); margin: 0 auto; padding: 0 40px; display: flex; align-items: center; justify-content: space-between; height: 64px; }
.header-logo { display: flex; align-items: baseline; gap: 0; }
.header-logo .logo-main { font-family: var(--font-en); font-size: 22px; font-weight: 700; letter-spacing: 0.02em; }
.header-logo .logo-sub { font-family: var(--font-en); font-size: 11px; font-weight: 400; color: var(--text-mute); letter-spacing: 0.08em; margin-left: 10px; position: relative; padding-left: 12px; }
.header-logo .logo-sub::before { content: ''; position: absolute; left: 0; top: 50%; width: 1px; height: 14px; transform: translateY(-50%); background: var(--line-strong); }
.header-nav { display: flex; align-items: center; gap: 32px; }
.header-nav a { font-size: 12px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-mute); transition: color 0.3s; }
.header-nav a:hover { color: var(--text); }
.header-nav a.nav-cta { border: 1px solid var(--gold-1); padding: 8px 20px; border-radius: 2px; color: var(--gold-2); }
.header-nav a.nav-cta:hover { background: var(--gold-1); color: #fff; }
.hamburger { display: none; width: 28px; height: 20px; position: relative; cursor: pointer; }
.hamburger span { display: block; position: absolute; width: 100%; height: 1.5px; background: var(--text); transition: 0.3s; }
.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 9px; }
.hamburger span:nth-child(3) { top: 18px; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg); top: 9px; }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg); top: 9px; }

@media (max-width: 768px) {
  .header { top: 0; }
  .header-inner { padding: 0 24px; }
  .hamburger { display: block; z-index: 1001; }
  .header-nav { position: fixed; top: 0; right: -100%; width: 80%; max-width: 320px; height: 100vh; background: rgba(10,10,10,0.97); backdrop-filter: blur(14px); flex-direction: column; justify-content: center; gap: 40px; transition: right 0.4s ease; z-index: 1000; padding: 40px; }
  .header-nav.open { right: 0; }
  .header-nav a { font-size: 16px; }
  .header-logo .logo-sub { display: none; }
}

/* ============ HERO ============ */
.hero { position: relative; height: 100vh; min-height: 760px; display: flex; align-items: center; overflow: hidden; background: var(--bg-0); }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.9; animation: heroPan 24s ease-in-out infinite alternate; }
.hero-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(10,10,10,0.92), rgba(10,10,10,0.6)); animation: gradientShift 12s ease infinite; }
@keyframes gradientShift { 0%,100% { background: linear-gradient(135deg, rgba(10,10,10,0.92), rgba(10,10,10,0.6)); } 50% { background: linear-gradient(225deg, rgba(10,10,10,0.88), rgba(10,10,10,0.65)); } }
@keyframes heroPan { 0% { transform: scale(1.05) translateX(0); } 100% { transform: scale(1.1) translateX(-2%); } }

.hero-content { position: relative; z-index: 1; max-width: var(--container); margin: 0 auto; padding: 0 40px; width: 100%; display: flex; align-items: center; justify-content: space-between; }
.hero-left { max-width: 640px; }
.hero-title { font-family: var(--font-en); font-size: clamp(48px, 7vw, 88px); line-height: 1.05; margin-bottom: 24px; }
.hero-title .line { display: block; opacity: 0; transform: translateY(30px); animation: fadeInUp 0.8s ease forwards; will-change: opacity, transform; }
.hero-title .line:nth-child(2) { animation-delay: 0.3s; }
.hero-title .line:nth-child(3) { animation-delay: 0.6s; }
.hero-title em { font-style: italic; background: var(--gold-grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-sub { font-family: var(--font-jp-serif); font-size: 18px; color: var(--text-mute); margin-bottom: 20px; opacity: 0; animation: fadeInUp 0.8s ease 0.9s forwards; }
.hero-divider { width: 60px; height: 1px; background: var(--gold-grad); margin-bottom: 20px; opacity: 0; animation: fadeInUp 0.6s ease 1.1s forwards; }
.hero-desc { font-size: 14px; line-height: 2; color: var(--text-mute); margin-bottom: 40px; opacity: 0; animation: fadeInUp 0.8s ease 1.2s forwards; }
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; opacity: 0; animation: fadeInUp 0.8s ease 1.4s forwards; }
.hero-right { font-family: var(--font-en); font-style: italic; font-size: clamp(80px, 12vw, 160px); color: var(--text); opacity: 0; line-height: 1; animation: fadeInRight 1.2s ease 0.8s forwards; }
@keyframes fadeInRight { to { opacity: 0.22; transform: translateX(0); } from { opacity: 0; transform: translateX(30px); } }
@media (max-width: 1024px) { .hero-right { display: none; } }
@media (max-width: 768px) { .hero-content { padding: 0 24px; } .hero-left { max-width: 100%; } }

.scroll-indicator { position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); text-align: center; z-index: 1; opacity: 0; animation: fadeInUp 0.8s ease 2s forwards; }
.scroll-indicator span { font-size: 10px; letter-spacing: 0.3em; color: var(--text-dim); text-transform: uppercase; display: block; }
.scroll-indicator::after { content: ''; display: block; width: 1px; height: 40px; background: var(--gold-1); margin: 12px auto 0; animation: scrollDot 2s ease-in-out infinite; }
@keyframes scrollDot { 0% { opacity: 0; transform: scaleY(0); transform-origin: top; } 50% { opacity: 1; transform: scaleY(1); } 100% { opacity: 0; transform: scaleY(0); transform-origin: bottom; } }

@keyframes fadeInUp { to { opacity: 1; transform: translateY(0); } }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; padding: 16px 36px; font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; border-radius: 2px; font-weight: 500; transition: all 0.3s ease; cursor: pointer; border: none; text-decoration: none; font-family: var(--font-jp-sans); }
.btn-primary { background: var(--gold-grad); color: #111; box-shadow: 0 0 40px rgba(184,134,11,0.35); }
.btn-primary:hover { box-shadow: 0 0 50px rgba(184,134,11,0.6); transform: translateY(-2px); }
.btn-ghost { border: 1px solid var(--gold-1); color: var(--gold-2); background: transparent; }
.btn-ghost:hover { background: rgba(184,134,11,0.1); }

/* ============ COUNTERS ============ */
.counters { background: var(--bg-1); padding: 80px 0; position: relative; overflow: hidden; }
.counters::before, .counters::after { content: ''; position: absolute; left: 0; right: 0; height: 1px; background: var(--gold-grad); }
.counters::before { top: 0; }
.counters::after { bottom: 0; }
.counters-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; text-align: center; }
.counter-item .counter-value { font-family: var(--font-en); font-size: clamp(44px, 5vw, 68px); font-weight: 700; background: var(--gold-grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.counter-item .counter-label { font-size: 13px; color: var(--text-mute); margin-top: 8px; }
@media (max-width: 768px) { .counters-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; } }

/* ============ PROBLEMS ============ */
.problems-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.problem-card { background: var(--bg-2); padding: 48px 40px; border-left: 3px solid var(--gold-1); border-radius: 2px; transition: all 0.3s ease; }
.problem-card:hover { transform: translateY(-4px); background: #1f1f1f; border-left-color: var(--gold-3); }
.problem-card .num { font-family: var(--font-en); font-style: italic; font-size: 48px; opacity: 0.35; color: var(--gold-2); margin-bottom: 16px; line-height: 1; }
.problem-card p { font-family: var(--font-jp-serif); font-size: 18px; line-height: 1.8; }
@media (max-width: 768px) { .problems-grid { grid-template-columns: 1fr; } .problem-card { padding: 32px 24px; } }

/* ============ SOLUTION TABS ============ */
.tabs-nav { display: flex; gap: 0; border-bottom: 1px solid var(--line); margin-bottom: 48px; overflow-x: auto; }
.tab-btn { padding: 16px 32px; font-size: 13px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-mute); background: none; border: none; cursor: pointer; position: relative; transition: color 0.3s; white-space: nowrap; }
.tab-btn::after { content: ''; position: absolute; bottom: -1px; left: 0; right: 0; height: 2px; background: var(--gold-grad); transform: scaleX(0); transition: transform 0.4s ease; }
.tab-btn.active { color: var(--gold-2); }
.tab-btn.active::after { transform: scaleX(1); }
.tab-content { display: none; animation: tabFade 0.4s ease; }
.tab-content.active { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
@keyframes tabFade { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }
.tab-text h3 { font-family: var(--font-jp-serif); font-size: 24px; margin-bottom: 16px; }
.tab-text p { color: var(--text-mute); line-height: 2; }
.tab-points li { padding: 12px 0; padding-left: 24px; position: relative; color: var(--text-mute); border-bottom: 1px solid var(--line); }
.tab-points li::before { content: ''; position: absolute; left: 0; top: 50%; width: 6px; height: 6px; border-radius: 50%; background: var(--gold-2); transform: translateY(-50%); }
@media (max-width: 1024px) { .tab-content.active { grid-template-columns: 1fr; } }

/* ============ WHY (5 Reasons) ============ */
.why-item { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; margin-bottom: 100px; }
.why-item:last-child { margin-bottom: 0; }
.why-item:nth-child(even) { direction: rtl; }
.why-item:nth-child(even) > * { direction: ltr; }
.why-num { font-family: var(--font-en); font-style: italic; font-size: 96px; line-height: 1; background: var(--gold-grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin-bottom: 16px; }
.why-title { font-family: var(--font-jp-serif); font-size: 32px; margin-bottom: 16px; line-height: 1.4; }
.why-desc { color: var(--text-mute); line-height: 2; }
.why-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 16px; }
.why-tags span { border: 1px solid var(--gold-1); color: var(--gold-2); font-size: 11px; padding: 4px 12px; border-radius: 999px; letter-spacing: 0.05em; }
.why-img { position: relative; max-width: 480px; aspect-ratio: 1/1; border-radius: 2px; overflow: hidden; box-shadow: 0 30px 60px rgba(0,0,0,0.45); }
.why-img img { width: 100%; height: 100%; object-fit: cover; }
.why-img::before { content: ''; position: absolute; inset: 0; border: 1px solid rgba(184,134,11,0.25); border-radius: 2px; z-index: 1; pointer-events: none; }
.why-img::after { content: ''; position: absolute; inset: 16px; border: 1px solid rgba(184,134,11,0.35); border-radius: 2px; z-index: 1; pointer-events: none; }
@media (max-width: 1024px) { .why-item { grid-template-columns: 1fr; gap: 32px; } .why-item:nth-child(even) { direction: ltr; } .why-img { max-width: 100%; } .why-num { font-size: 64px; } }

/* ============ PRICING ============ */
.pricing-table { max-width: 800px; margin: 0 auto; border: 1px solid var(--line); border-radius: 2px; overflow: hidden; }
.pricing-row { display: grid; grid-template-columns: 240px 1fr; border-bottom: 1px solid var(--line); }
.pricing-row:last-child { border-bottom: none; }
.pricing-row.header { background: linear-gradient(135deg, rgba(184,134,11,0.15), rgba(184,134,11,0.05)); }
.pricing-key { padding: 20px 24px; font-size: 14px; font-weight: 500; border-right: 1px solid var(--line); display: flex; align-items: center; }
.pricing-val { padding: 20px 24px; font-size: 14px; color: var(--text-mute); display: flex; align-items: center; }
.pricing-note { margin-top: 32px; padding: 24px; border-left: 3px solid var(--gold-1); background: var(--bg-2); border-radius: 2px; font-size: 13px; color: var(--text-mute); line-height: 1.8; }
@media (max-width: 768px) { .pricing-row { grid-template-columns: 1fr; } .pricing-key { border-right: none; border-bottom: 1px solid var(--line); padding: 12px 24px; } .pricing-val { padding: 12px 24px; } }

/* ============ FLOW ============ */
.flow-grid { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr; gap: 24px; align-items: start; }
.flow-step { text-align: center; }
.flow-step .step-num { font-family: var(--font-en); font-size: 13px; letter-spacing: 0.15em; background: var(--gold-grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin-bottom: 12px; }
.flow-step h4 { font-family: var(--font-jp-serif); font-size: 18px; margin-bottom: 12px; }
.flow-step p { font-size: 13px; color: var(--text-mute); line-height: 1.8; }
.flow-arrow { font-size: 24px; color: var(--gold-2); align-self: center; margin-top: 20px; }
@media (max-width: 1024px) { .flow-grid { grid-template-columns: 1fr; gap: 40px; } .flow-arrow { transform: rotate(90deg); justify-self: center; margin-top: 0; } }

/* ============ RESULTS CARDS ============ */
.results-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.result-card { background: var(--bg-2); border-radius: 2px; overflow: hidden; transition: all 0.3s ease; position: relative; text-decoration: none; display: block; }
.result-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--gold-grad); }
.result-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(0,0,0,0.5), 0 0 0 1px rgba(184,134,11,0.3); }
.result-card:hover .result-img img { transform: scale(1.06); }
.result-img { aspect-ratio: 16/10; overflow: hidden; }
.result-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.result-body { padding: 28px; }
.result-cat { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-2); margin-bottom: 12px; }
.result-body h3 { font-family: var(--font-jp-serif); font-size: 17px; font-weight: 700; margin-bottom: 12px; line-height: 1.6; }
.result-body p { font-size: 13px; color: var(--text-mute); line-height: 1.8; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.result-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 16px; }
.result-tags span { font-size: 10px; padding: 3px 8px; border: 1px solid var(--line-strong); border-radius: 999px; color: var(--text-dim); }
@media (max-width: 1024px) { .results-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) { .results-grid { grid-template-columns: 1fr; } }

/* ============ COLUMN CARDS ============ */
.column-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.column-card { background: var(--bg-2); padding: 32px; border-radius: 2px; border: 1px solid var(--line); transition: all 0.3s ease; display: block; }
.column-card:hover { transform: translateY(-4px); border-color: rgba(184,134,11,0.3); }
.column-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.column-meta .cat { font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold-2); border: 1px solid var(--gold-1); padding: 2px 8px; border-radius: 999px; }
.column-meta .date { font-family: var(--font-en); font-size: 12px; color: var(--text-dim); }
.column-card h3 { font-family: var(--font-jp-serif); font-size: 17px; font-weight: 700; line-height: 1.6; margin-bottom: 12px; }
.column-card p { font-size: 13px; color: var(--text-mute); line-height: 1.8; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.column-card .read-more { display: inline-block; margin-top: 16px; font-size: 12px; color: var(--gold-2); letter-spacing: 0.05em; }
@media (max-width: 1024px) { .column-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) { .column-grid { grid-template-columns: 1fr; } }

/* ============ NEWS LIST ============ */
.news-list { max-width: 900px; margin: 0 auto; }
.news-row { display: flex; align-items: center; gap: 24px; padding: 20px 16px; border-bottom: 1px solid var(--line); transition: all 0.3s ease; }
.news-row:hover { background: rgba(184,134,11,0.04); padding-left: 28px; }
.news-row .news-date { font-family: var(--font-en); font-size: 14px; color: var(--gold-2); min-width: 100px; }
.news-row .news-cat { font-size: 10px; letter-spacing: 0.12em; padding: 3px 10px; border: 1px solid var(--line-strong); border-radius: 999px; color: var(--text-dim); white-space: nowrap; }
.news-row .news-title { font-size: 14px; color: var(--text); flex: 1; }
@media (max-width: 768px) { .news-row { flex-wrap: wrap; gap: 8px; } .news-row .news-title { width: 100%; } }

/* ============ BIG CTA ============ */
.big-cta { position: relative; padding: var(--section-pad) 0; overflow: hidden; text-align: center; }
.big-cta-bg { position: absolute; inset: 0; z-index: 0; }
.big-cta-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.7; animation: heroPan 30s ease-in-out infinite alternate; }
.big-cta-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(10,10,10,0.85), rgba(10,10,10,0.6)); animation: gradientShift 12s ease infinite; }
.big-cta-content { position: relative; z-index: 1; }
.big-cta h2 { font-family: var(--font-en); font-size: clamp(40px, 6vw, 72px); background: var(--gold-grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin-bottom: 16px; }
.big-cta .sub { font-family: var(--font-jp-serif); font-size: 18px; color: var(--text-mute); margin-bottom: 24px; }
.big-cta .desc { font-size: 14px; color: var(--text-mute); max-width: 560px; margin: 0 auto 40px; line-height: 2; }
.btn-glow { animation: glowPulse 3s ease-in-out infinite; }
@keyframes glowPulse { 0%,100% { box-shadow: 0 0 40px rgba(184,134,11,0.35); } 50% { box-shadow: 0 0 60px rgba(184,134,11,0.6); } }

/* ============ CONTACT FORM ============ */
.contact-form-wrap { max-width: 680px; margin: 0 auto; background: var(--bg-2); border: 1px solid var(--line); border-radius: 2px; padding: 64px 48px; position: relative; }
.contact-form-wrap::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--gold-grad); }
.form-group { margin-bottom: 24px; }
.form-group label { display: block; font-size: 13px; margin-bottom: 8px; color: var(--text-mute); }
.form-group label .required { color: var(--gold-2); font-size: 11px; margin-left: 4px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 14px 16px; background: var(--bg-0); border: 1px solid var(--line-strong); border-radius: 2px; color: var(--text); font-size: 14px; font-family: var(--font-jp-sans); transition: border-color 0.3s; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--gold-1); }
.form-group textarea { height: 120px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 768px) { .form-row { grid-template-columns: 1fr; } .contact-form-wrap { padding: 40px 24px; } }
.form-check { display: flex; align-items: flex-start; gap: 10px; margin: 24px 0; }
.form-check input[type="checkbox"] { width: 18px; height: 18px; accent-color: var(--gold-1); margin-top: 2px; }
.form-check label { font-size: 13px; color: var(--text-mute); line-height: 1.6; }
.form-success { display: none; text-align: center; padding: 40px; }
.form-success.show { display: block; }
.form-success h3 { font-family: var(--font-jp-serif); font-size: 22px; margin-bottom: 12px; color: var(--gold-2); }

/* ============ FOOTER ============ */
.footer { background: var(--bg-0); padding: 80px 0 32px; position: relative; }
.footer::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: var(--gold-grad); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand .footer-logo { font-family: var(--font-en); font-size: 24px; font-weight: 700; margin-bottom: 12px; }
.footer-brand p { font-size: 13px; color: var(--text-mute); line-height: 1.8; }
.footer-links h4 { font-size: 12px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold-2); margin-bottom: 16px; }
.footer-links a { display: block; font-size: 13px; color: var(--text-mute); margin-bottom: 10px; transition: color 0.3s; }
.footer-links a:hover { color: var(--text); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 32px; border-top: 1px solid var(--line); font-size: 12px; color: var(--text-dim); }
.footer-bottom a { color: var(--text-dim); margin-left: 24px; transition: color 0.3s; }
.footer-bottom a:hover { color: var(--text); }
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr; gap: 32px; } .footer-bottom { flex-direction: column; gap: 12px; text-align: center; } }

/* ============ SECTION LINK ============ */
.section-link { display: inline-block; margin-top: 48px; font-size: 13px; color: var(--gold-2); letter-spacing: 0.05em; transition: all 0.3s; border-bottom: 1px solid transparent; padding-bottom: 2px; }
.section-link:hover { color: var(--gold-3); transform: translateX(4px); border-bottom-color: var(--gold-3); }

/* Gold line separator */
.gold-line { width: 60px; height: 1px; background: var(--gold-grad); margin: 16px auto 24px; opacity: 0.8; }

/* Section title center */
.text-center { text-align: center; }
.text-center .section-subtitle { margin-bottom: 48px; }

/* ============ FADE IN ============ */
.fade-in { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease, transform 0.8s ease; will-change: opacity, transform; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in[data-delay] { transition-delay: 0ms; }
