/*
Theme Name: Manda Estate
Theme URI: https://mannda-est.com/
Author: Antigravity
Description: まんだエステート株式会社 公式WEBサイト カスタムテーマ
Version: 1.0.1
Requires at least: 6.0
Tested up to: 7.0
License: Private
Text Domain: manda-estate
*/

:root {
  --color-primary: #1a2e4a;
  --color-secondary: #0A192F;
  --color-accent: #c8a96e;
  --color-text-main: #1a2e4a;
  --color-text-light: #5a6a80;
  --color-bg-main: #FFFFFF;
  --color-bg-gray: #F8F9FA;
  --color-surface: #f9fafb;
  --color-border: #e2e8f0;

  --font-sans: 'Jost', 'Noto Sans JP', ui-sans-serif, system-ui, -apple-system, sans-serif;
  --font-serif: 'Playfair Display', 'Noto Serif JP', ui-serif, Georgia, serif;
  --font-mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, monospace;

  --max-width: 1280px;
  --header-height: auto;
}

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

body {
  font-family: var(--font-sans);
  color: var(--color-primary);
  background: var(--color-bg-main);
  line-height: 1.85;
  font-size: 16px;
  letter-spacing: 0.03em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-sans);
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 0.8em;
  color: var(--color-primary);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.3s ease, opacity 0.3s ease;
}

a:hover {
  opacity: 0.8;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
}
@media (min-width: 768px) {
  .container { padding: 0 64px; }
}

/* =========================================
   Buttons
   ========================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-bg-main);
}

.btn-primary:hover {
  background-color: var(--color-secondary);
  opacity: 1;
}

/* =========================================
   Header (Sticky & Glassmorphism)
   ========================================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 1000;
  padding: 28px 0;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 64px;
}

.site-logo a {
  display: flex;
  align-items: center;
}

.site-logo img {
  height: 40px;
  width: auto;
  display: block;
  object-fit: contain;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}
.site-logo .logo-white { display: block; }
.site-logo .logo-color { display: none; }
.site-header.is-scrolled .site-logo .logo-white { display: none; }
.site-header.is-scrolled .site-logo .logo-color { display: block; }

.admin-bar #site-header { top: 32px; }
@media screen and (max-width: 782px) {
  .admin-bar #site-header { top: 46px; }
}

.header-right {
  display: flex;
  align-items: center;
  gap: 32px;
}

.menu-toggle {
  display: none;
}

/* =========================================
   WordPress Block Editor & Typography Refinements
   ========================================= */
.entry-content,
.page-content,
.site-main {
  font-size: 17px;
  line-height: 1.9;
  color: var(--color-text-main);
}

.entry-content p,
.page-content p,
.site-main p {
  margin-bottom: 1.8em; /* 段落間に十分なスペース */
}

/* 見出しのスタイル強化（記事コンテンツ内のみ） */
.entry-content h2,
.page-content h2 {
  font-size: clamp(24px, 3.5vw, 32px);
  border-bottom: 2px solid var(--color-border);
  padding-bottom: 16px;
  margin-top: 2.5em;
  margin-bottom: 1.2em;
  position: relative;
}

.entry-content h2::after,
.page-content h2::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-accent) 0%, #ecd7a5 100%);
  border-radius: 2px;
}

.entry-content h3,
.page-content h3 {
  font-size: 22px;
  padding-left: 14px;
  border-left: 4px solid var(--color-accent);
  margin-top: 2em;
  margin-bottom: 1em;
}

.entry-content h4,
.page-content h4 {
  font-size: 19px;
  margin-top: 1.8em;
  margin-bottom: 0.8em;
}

/* リスト要素の強化 */
.entry-content ul,
.entry-content ol,
.page-content ul,
.page-content ol {
  margin-bottom: 1.8em;
  padding-left: 24px;
}

.entry-content li,
.page-content li,
.site-main li {
  margin-bottom: 0.6em;
  font-size: 17px;
}

/* テーブル要素の強化（スマホでのスクロール対応） */
.table-responsive,
.wp-block-table {
  width: 100%;
  overflow-x: auto;
  margin-bottom: 2.5em;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.02);
}

table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  border: 1px solid var(--color-border);
  font-size: 16px;
}

th, td {
  padding: 18px 24px;
  border-bottom: 1px solid var(--color-border);
}

th {
  background-color: var(--color-bg-gray);
  color: var(--color-primary);
  font-weight: 600;
  width: 30%;
  min-width: 150px;
}

td {
  color: var(--color-text-main);
  line-height: 1.7;
}

tr:last-child th,
tr:last-child td {
  border-bottom: none;
}

/* 引用 */
blockquote {
  margin: 2em 0;
  padding: 24px 32px;
  border-left: 4px solid var(--color-accent);
  background-color: var(--color-bg-gray);
  font-style: italic;
  border-radius: 0 8px 8px 0;
}

blockquote p {
  margin-bottom: 0 !important;
}

/* =========================================
   About Page Specific Styles
   ========================================= */
.page-header-about {
  position: relative;
  padding: 120px 0 80px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  color: #fff;
  text-align: center;
  margin-bottom: 80px;
  overflow: hidden;
}

.page-header-about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../images/business_sales.png') no-repeat center center;
  background-size: cover;
  opacity: 0.15;
  mix-blend-mode: overlay;
}

.page-header-about h1 {
  color: #fff;
  font-size: 42px;
  font-weight: 300;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
  font-family: var(--font-sans);
}

.page-header-about .subtitle {
  color: var(--color-accent);
  font-size: 16px;
  letter-spacing: 0.2em;
  font-weight: 500;
  text-transform: uppercase;
}

/* セクションデザイン */
.about-section {
  padding: 80px 0;
  border-bottom: 1px solid var(--color-border);
}

.about-section.profile-section {
  padding-top: 140px;
}

.about-section:last-of-type {
  border-bottom: none;
}

.section-title-wrapper {
  text-align: center;
  margin-bottom: 60px;
}

.section-title-en {
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--color-accent);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 8px;
}

.section-title-jp {
  font-size: clamp(28px, 4vw, 36px); /* レスポンシブでダイナミックに変化 */
  color: var(--color-primary);
  font-weight: 700;
  position: relative;
  display: inline-block;
  padding-bottom: 20px;
  letter-spacing: 0.05em;
}

.section-title-jp::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px; /* 幅を広げて上品に */
  height: 3px; /* 少し太くして存在感を出す */
  background: linear-gradient(90deg, var(--color-accent) 0%, #ecd7a5 100%); /* 美しいゴールドのグラデーション */
  border-radius: 2px;
}

/* ミッションセクション */
.mission-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.mission-lead {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 32px;
  line-height: 1.6;
}

.mission-text {
  font-size: 17px;
  color: var(--color-text-light);
  line-height: 2.0;
  margin-bottom: 48px;
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.mission-card {
  background-color: var(--color-bg-gray);
  padding: 40px 32px;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(0,0,0,0.02);
}

.mission-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.05);
}

.mission-card-num {
  font-family: var(--font-sans);
  font-size: 36px;
  font-weight: 300;
  color: var(--color-accent);
  line-height: 1;
  margin-bottom: 16px;
}

.mission-card-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 16px;
}

.mission-card-desc {
  font-size: 15px;
  color: var(--color-text-light);
  line-height: 1.7;
  text-align: justify;
}

/* 代表メッセージ */
.message-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

.message-content h3 {
  font-size: 24px;
  color: var(--color-primary);
  margin-bottom: 24px;
  line-height: 1.5;
  border: none;
  padding: 0;
}

.message-content p {
  font-size: 17px;
  line-height: 1.95;
  color: var(--color-text-main);
  margin-bottom: 24px;
}

.message-signature {
  margin-top: 40px;
  text-align: right;
  border-top: 1px solid var(--color-border);
  padding-top: 20px;
}

.message-signature .role {
  font-size: 13px;
  color: var(--color-text-light);
  letter-spacing: 0.1em;
}

.message-signature .name {
  font-size: 22px;
  font-weight: 700;
  color: var(--color-primary);
  margin-top: 4px;
}

.message-image {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.message-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.message-wrapper:hover .message-image img {
  transform: scale(1.05);
}

/* 会社情報テーブル */
.profile-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.profile-table {
  box-shadow: 0 4px 20px rgba(0,0,0,0.02);
}

/* スタッフ紹介 */
.staff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.staff-card {
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--color-border);
}

.staff-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.staff-photo-wrapper {
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
  background-color: var(--color-bg-gray);
  position: relative;
}

.staff-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: filter 0.6s ease, transform 0.6s ease;
}

.staff-card:hover .staff-photo {
  filter: grayscale(0%);
  transform: scale(1.04);
}

.staff-info {
  padding: 24px;
}

.staff-role {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.2em;
  color: var(--color-accent);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.staff-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 12px;
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.staff-name-en {
  font-family: var(--font-sans);
  font-size: 12px;
  color: var(--color-text-light);
  font-weight: 400;
}

.staff-bio {
  font-size: 15px;
  color: var(--color-text-light);
  line-height: 1.6;
}

/* =========================================
   Responsive Styling (Media Queries)
   ========================================= */
@media (max-width: 1024px) {
  .mission-grid {
    gap: 20px;
  }
  .message-wrapper {
    gap: 40px;
  }
  .staff-grid {
    gap: 24px;
  }
}

@media (max-width: 768px) {
  body {
    font-size: 16px;
  }
  .container {
    padding: 0 32px;
  }
  .page-header-about {
    padding: 100px 0 60px;
    margin-bottom: 50px;
  }
  .page-header-about h1 {
    font-size: 32px;
  }
  .about-section {
    padding: 50px 0;
  }
  .section-title-jp {
    font-size: 26px;
  }
  .mission-lead {
    font-size: 20px;
  }
  .mission-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .mission-card {
    padding: 32px 24px;
  }
  .message-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .message-image {
    order: -1;
    max-width: 400px;
    margin: 0 auto;
  }
  .profile-table th {
    width: 35%;
    padding: 14px 18px;
  }
  .profile-table td {
    padding: 14px 18px;
  }
  .staff-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
    gap: 32px;
  }
}

/* =========================================
   Header - Scroll State (is-scrolled)
   ========================================= */
.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid #e5e7eb;
  padding: 16px 0;
}

.site-header.is-scrolled .site-logo img {
  height: 40px;
}

.site-header.is-scrolled .nav-link {
  color: var(--color-primary);
}

.site-header.is-scrolled .nav-link:hover .nav-link-text,
.site-header.is-scrolled .nav-link:hover .nav-link-hover {
  color: var(--color-accent);
}

.site-header.is-scrolled .nav-arrow {
  color: var(--color-primary);
}

.site-header.is-scrolled .header-cta {
  background-color: var(--color-primary) !important;
  color: #ffffff !important;
  border-color: var(--color-primary) !important;
}

.site-header.is-scrolled .header-cta:hover {
  background-color: var(--color-accent) !important;
  border-color: var(--color-accent) !important;
  color: #ffffff !important;
}

.site-header.is-scrolled .mobile-menu-btn {
  color: var(--color-primary);
}

/* =========================================
   Desktop Nav (matches React Navbar.tsx)
   ========================================= */
.desktop-nav {
  display: none;
  align-items: center;
  gap: 32px;
}
@media (min-width: 768px) {
  .desktop-nav { display: flex; }
}
@media (min-width: 1024px) {
  .desktop-nav { gap: 40px; }
}

.nav-item {
  position: relative;
  padding: 16px 0;
}

.nav-item.has-mega-menu {
  position: static; /* 画面いっぱいに展開するため */
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  transition: color 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.nav-link-text {
  display: block;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.nav-link-hover {
  position: absolute;
  top: 100%;
  left: 0;
  display: block;
  color: #ffffff;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.nav-link:hover .nav-link-text {
  transform: translateY(-100%);
}
.nav-link:hover .nav-link-hover {
  transform: translateY(-100%);
}

.site-header.is-scrolled .nav-link-hover {
  color: var(--color-accent);
}

.nav-arrow {
  width: 12px;
  height: 12px;
  opacity: 0.5;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  color: #ffffff;
}

.nav-item:hover .nav-arrow,
.nav-item.is-dropdown-open .nav-arrow {
  transform: rotate(90deg);
}

/* =========================================
   通常のドロップダウン (ABOUT等で使用)
   ========================================= */
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(16px);
  padding-top: 16px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  min-width: 180px;
  z-index: 100;
}

.nav-item:hover .nav-dropdown,
.nav-item.is-dropdown-open .nav-dropdown {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.nav-dropdown-inner {
  display: flex;
  flex-direction: column;
  background: rgba(26, 46, 74, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  padding: 16px;
  gap: 12px;
}

.nav-dropdown-link {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 6px 12px;
  border-radius: 4px;
  text-align: center;
}

.nav-dropdown-link:hover {
  color: var(--color-accent);
  background: rgba(255, 255, 255, 0.05);
  opacity: 1;
}

/* =========================================
   極上のメガドロップダウン (Mega Dropdown)
   ========================================= */
.mega-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: rgba(26, 46, 74, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 100;
  padding-top: 16px;
  padding-bottom: 40px;
}

.mega-dropdown::before {
  content: '';
  display: block;
  height: 16px;
}

.nav-item:hover .mega-dropdown,
.nav-item.is-dropdown-open .mega-dropdown {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.mega-dropdown-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 64px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.mega-card {
  display: flex;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  color: #ffffff;
  text-decoration: none;
}

.mega-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--color-accent);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  transform: translateY(-4px);
  opacity: 1;
}

.mega-card-image-wrap {
  width: 40%;
  position: relative;
  overflow: hidden;
  min-height: 200px;
}

.mega-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.mega-card:hover .mega-card-img {
  transform: scale(1.08);
}

.mega-card-body {
  width: 60%;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.mega-card-badge {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--color-accent);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.mega-card-title {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
  letter-spacing: 0.05em;
}

.mega-card-desc {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
  font-weight: 300;
}

.mega-card-cv-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
  width: fit-content;
}

.mega-card-cv-btn .arrow {
  margin-left: 6px;
  transition: transform 0.3s ease;
}

.mega-card:hover .mega-card-cv-btn .arrow {
  transform: translateX(4px);
}

/* Brands & CTA Colors */
.btn-line {
  background-color: #06C755;
  color: #ffffff;
  border: none;
}
.btn-line:hover {
  background-color: #05b34c;
  opacity: 1;
}

.btn-gold {
  background-color: var(--color-accent);
  color: #ffffff;
  border: none;
}
.btn-gold:hover {
  background-color: #bfa063;
  opacity: 1;
}

.mega-card-cv-btn.btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  background: transparent;
  font-size: 11px;
  padding: 10px 16px;
  white-space: nowrap;
}
.mega-card-cv-btn.btn-outline:hover {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
}

/* Header CTA button */
.header-cta {
  white-space: nowrap;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  padding: 16px 32px !important;
  border-radius: 0 !important;
  background-color: #ffffff !important;
  color: var(--color-primary) !important;
  border: 1px solid #ffffff !important;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1) !important;
  margin-left: 16px;
}

.header-cta:hover {
  background-color: transparent !important;
  color: #ffffff !important;
  border-color: #ffffff !important;
}

/* Mobile menu button (hamburger) */
.mobile-menu-btn {
  display: block;
  background: none;
  border: none;
  cursor: pointer;
  color: #ffffff;
  padding: 0;
  line-height: 0;
  transition: color 0.3s ease;
}
@media (min-width: 768px) {
  .mobile-menu-btn { display: none; }
}

/* =========================================
   Mobile Overlay Menu (right-slide, matches React)
   ========================================= */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--color-primary);
  z-index: 2000;
  transform: translateX(100%);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  overflow: hidden;
  will-change: transform;
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .mobile-menu { display: none !important; }
}

.mobile-menu.is-open {
  transform: translateX(0);
}

.mobile-menu-top {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  position: sticky;
  top: 0;
  background: rgba(26,46,74,0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 10;
}

.mobile-menu-close {
  background: none;
  border: none;
  cursor: pointer;
  color: #ffffff;
  padding: 0;
  line-height: 0;
  transition: color 0.3s ease;
}
.mobile-menu-close:hover {
  color: var(--color-accent);
}

.mobile-menu-body {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 32px 48px;
  gap: 8px;
  flex-grow: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.mobile-nav-item {
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding: 24px 0;
}

.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.mobile-nav-link {
  font-family: var(--font-sans);
  font-size: 20px;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.9);
  text-transform: uppercase;
  transition: color 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex-grow: 1;
}
.mobile-nav-link:hover {
  color: #ffffff;
  opacity: 1;
}

.mobile-nav-link-sub {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.05em;
  font-weight: 400;
  text-transform: none;
}

.mobile-submenu-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 12px;
  margin-right: -12px;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-submenu-toggle:focus {
  outline: none;
}

.mobile-nav-arrow {
  color: rgba(255,255,255,0.3);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  width: 20px;
  height: 20px;
}

.mobile-submenu-toggle.is-active .mobile-nav-arrow {
  transform: rotate(90deg);
  color: var(--color-accent);
}

.mobile-nav-submenu {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition: grid-template-rows 0.45s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.3s ease;
}
.mobile-nav-submenu.is-expanded {
  grid-template-rows: 1fr;
  opacity: 1;
  margin-top: 24px;
}

.mobile-nav-submenu-inner {
  overflow: hidden;
  min-height: 0;
  display: flex;
  flex-direction: column;
  padding-left: 20px;
  border-left: 2px solid rgba(255,255,255,0.05);
  gap: 28px;
  padding-top: 12px;
  padding-bottom: 12px;
}

.mobile-sublink-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-nav-sublink {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 0.05em;
  transition: color 0.3s ease;
}
.mobile-nav-sublink:hover {
  color: var(--color-accent);
  opacity: 1;
}

.mobile-sublink-desc {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.5;
  font-weight: 300;
}

.mobile-quick-cv {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  margin-top: 8px;
  text-align: center;
  width: 100%;
  max-width: 320px;
  transition: all 0.3s ease;
}

.mobile-quick-cv.btn-line {
  background-color: #06C755;
  color: #ffffff;
}

.mobile-quick-cv.btn-gold {
  background-color: var(--color-accent);
  color: #ffffff;
}

.mobile-quick-cv.btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  background: transparent;
}

/* Mobile Sticky Bottom CTA in Menu */
.mobile-menu-cta-wrap {
  flex-shrink: 0;
  background: rgba(26, 46, 74, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 100;
}

.btn-mobile-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-mobile-cta.btn-line {
  background: linear-gradient(135deg, #06C755 0%, #05b34c 100%);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(6, 199, 85, 0.3);
}

.btn-mobile-cta.btn-gold {
  background: linear-gradient(135deg, var(--color-accent) 0%, #bfa063 100%);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(200, 169, 110, 0.3);
}

/* =========================================
   Header: Responsive overrides
   ========================================= */
@media (max-width: 767px) {
  .header-inner {
    padding: 0 32px;
  }
  .site-logo img {
    height: 32px;
  }
  .site-header {
    padding: 24px 0;
  }
}

/* =========================================
   Scroll Reveal Animation
   ========================================= */
.js-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1.2s cubic-bezier(0.22, 1, 0.36, 1), transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}
.js-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Hero entrance animation */
@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.animate-in {
  animation: heroFadeIn 1.4s cubic-bezier(0.22, 1, 0.36, 1) both;
}

/* =========================================
   Shared Section Components
   ========================================= */
.accent-line {
  display: inline-block;
  width: 48px;
  height: 1px;
  background-color: var(--color-primary);
  vertical-align: middle;
}
.accent-line--white {
  background-color: #fff;
}

.section-eyebrow {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 32px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--color-primary);
}
.section-eyebrow--light {
  color: #fff;
}

.section-heading {
  font-family: var(--font-sans);
  font-size: 48px;
  font-weight: 300;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--color-primary);
  margin-bottom: 0;
}
@media (min-width: 768px) { .section-heading { font-size: 72px; } }
@media (min-width: 1024px) { .section-heading { font-size: 100px; } }
.section-heading--light {
  color: #fff;
}
.heading-dot {
  color: var(--color-accent);
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--color-border);
  padding: 16px 32px;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-primary);
  transition: border-color 0.3s ease, color 0.3s ease;
}
.btn-outline:hover {
  border-color: var(--color-primary);
  opacity: 1;
}

/* =========================================
   Hero Section
   ========================================= */
.hero-section {
  position: relative;
  height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--color-primary);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

@keyframes kenburns {
  0%   { transform: scale(1)    translate(0, 0); }
  100% { transform: scale(1.08) translate(-1%, 1%); }
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: kenburns 20s ease-out alternate infinite;
  transform-origin: center center;
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 46, 74, 0.3);
  mix-blend-mode: multiply;
}

.hero-overlay-grad {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--color-primary) 0%, rgba(26,46,74,0.2) 50%, transparent 100%);
}

.hero-grid-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 4rem 4rem;
  mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, #000 10%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, #000 10%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 10;
  width: 100%;
  padding-top: 48px;
}
.hero-content > * {
  max-width: 896px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-bottom: 64px;
  animation-delay: 0s;
}

.hero-line {
  display: block;
  width: 80px;
  height: 1px;
  background: rgba(255,255,255,0.4);
}

.hero-eyebrow-text {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
}

.hero-title-wrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 64px;
  overflow: hidden;
}

.hero-title-1 {
  font-family: var(--font-sans);
  font-size: 60px;
  font-weight: 300;
  letter-spacing: -0.04em;
  line-height: 1;
  color: #fff;
  margin-bottom: 0;
}
@media (min-width: 768px) { .hero-title-1 { font-size: 96px; } }
@media (min-width: 1024px) { .hero-title-1 { font-size: 120px; } }

.hero-title-2-wrap {
  margin-left: 0;
}
@media (min-width: 768px) { .hero-title-2-wrap { margin-left: 96px; } }

.hero-title-2 {
  display: block;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 60px;
  font-weight: 300;
  letter-spacing: -0.04em;
  line-height: 0.95;
  color: rgba(255,255,255,0.9);
}
@media (min-width: 768px) { .hero-title-2 { font-size: 96px; } }
@media (min-width: 1024px) { .hero-title-2 { font-size: 120px; } }

.hero-bottom {
  margin-top: 80px;
}

.hero-desc {
  font-family: var(--font-sans);
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.08em;
  line-height: 2.2;
  font-weight: 300;
  max-width: 560px;
  margin-bottom: 0;
}
  color: #fff;
  transition: color 0.3s ease;
  white-space: nowrap;
  opacity: 1;
}
@media (max-width: 767px) {
  .hero-bottom {
    margin-top: 48px;
  }
  .hero-desc {
    font-size: 13px;
    max-width: 100%;
  }
}

/* =========================================
   Features Section
   ========================================= */
.features-section {
  padding: 160px 0;
  background: var(--color-primary);
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) { .features-section { padding: 224px 0; } }

.features-grid-deco {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 4rem 4rem;
  mask-image: linear-gradient(to left, #000 10%, transparent 100%);
  -webkit-mask-image: linear-gradient(to left, #000 10%, transparent 100%);
  pointer-events: none;
}

.features-header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 128px; /* Reactモックの mb-32 md:mb-40 */
  gap: 64px;
}
@media (min-width: 768px) {
  .features-header { margin-bottom: 160px; }
}

.features-desc {
  font-family: var(--font-sans);
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  max-width: 400px;
  line-height: 2.5;
  letter-spacing: 0.05em;
  font-weight: 300;
  padding-bottom: 16px;
  margin-bottom: 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255,255,255,0.2);
}

.feature-card {
  padding: 80px 48px 64px 48px;
  border-right: 1px solid rgba(255,255,255,0.2);
  transition: background 0.3s ease;
  position: relative;
}
.feature-card:last-child {
  border-right: none;
}

.feature-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 80px;
}

.feature-num {
  font-family: var(--font-sans);
  font-size: 72px;
  font-weight: 400;
  color: rgba(255,255,255,0.25);
  letter-spacing: -0.04em;
  line-height: 1;
  transition: color 0.7s ease, transform 0.7s ease;
  display: block;
}
.feature-card:hover .feature-num {
  color: var(--color-accent);
  transform: translateY(-8px);
}

.feature-arrow {
  font-size: 28px;
  color: var(--color-accent);
  opacity: 0;
  transform: translateX(-16px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  padding-top: 8px;
}
.feature-card:hover .feature-arrow {
  opacity: 1;
  transform: translateX(0);
}

.feature-title {
  font-family: var(--font-sans);
  font-size: 28px;
  font-weight: 500;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.35;
  margin-bottom: 16px;
}

.feature-sub {
  display: block;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 40px;
}

.feature-desc {
  font-family: var(--font-sans);
  font-size: 13px;
  line-height: 2.5;
  color: rgba(255,255,255,0.6);
  font-weight: 300;
  margin-bottom: 0;
}

@media (max-width: 1024px) {
  .features-header { flex-direction: column; align-items: flex-start; margin-bottom: 80px; }
  .features-grid { grid-template-columns: 1fr; }
  .feature-card { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.2); padding: 48px 24px; }
  .feature-card:last-child { border-bottom: none; }
  .features-section { padding: 100px 0; }
}

/* =========================================
   Business / Domains Section
   ========================================= */
.business-section {
  padding: 160px 0;
  background: #fff;
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) { .business-section { padding: 224px 0; } }

.business-deco {
  position: absolute;
  top: 80px;
  left: 0;
  font-family: var(--font-sans);
  font-size: clamp(120px, 20vw, 300px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  color: rgba(13, 27, 62, 0.025); /* 透過度を極限まで薄くし、極めて上品に重なるように調整 */
  pointer-events: none;
  white-space: nowrap;
  z-index: 1;
}

.business-header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 128px; /* Reactモックの mb-32 md:mb-40 に準拠 */
  padding-bottom: 64px;
  gap: 32px;
}
@media (min-width: 768px) {
  .business-header { margin-bottom: 160px; }
}

.business-view-all {
  display: none;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-primary);
  padding: 10px 20px;
  border: 1px solid rgba(26, 46, 74, 0.25);
  border-radius: 2px;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  white-space: nowrap;
}
.business-view-all:hover {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
  opacity: 1;
}
@media (min-width: 768px) {
  .business-view-all { display: flex; }
}

.view-all-line {
  display: none; /* ボタン化により不要 */
}

.business-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.business-card {
  display: flex;
  flex-direction: column;
  padding: 80px 56px 96px 56px;
  position: relative;
  transition: background 0.7s ease;
  cursor: pointer;
  color: inherit;
}
.business-card:hover {
  background: var(--color-surface);
  opacity: 1;
}

.business-card-top {
  display: flex;
  align-items: baseline;
  gap: 24px;
  margin-bottom: 48px;
}

.business-num {
  font-family: var(--font-sans);
  font-size: 15px;
  color: #ccc;
  transition: color 0.3s ease;
}
.business-card:hover .business-num {
  color: var(--color-accent);
}

.business-sub {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: rgba(100,100,100,0.5);
}

.business-arrow {
  margin-left: auto;
  font-size: 20px;
  color: var(--color-primary);
  opacity: 0;
  transform: translateX(-16px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.business-card:hover .business-arrow {
  opacity: 1;
  transform: translateX(0);
}

.business-title {
  font-family: var(--font-sans);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 300;
  letter-spacing: -0.02em;
  color: var(--color-primary);
  margin-bottom: 48px;
}

.business-img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  margin-bottom: 40px;
}

.business-img-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,46,74,0.05);
  mix-blend-mode: multiply;
  z-index: 1;
  transition: background 0.7s ease;
}
.business-card:hover .business-img-overlay {
  background: transparent;
}

.business-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(80%);
  opacity: 0.8;
  transform: scale(1.05);
  transition: filter 1.5s ease, opacity 0.7s ease, transform 1.5s ease;
}
.business-card:hover .business-img {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1);
}

.business-desc {
  font-family: var(--font-sans);
  font-size: 13px;
  line-height: 2.5;
  color: rgba(100,100,100,0.7);
  font-weight: 300;
  max-width: 320px;
  margin-bottom: 24px;
}

.business-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  color: var(--color-primary);
  letter-spacing: 0.04em;
  padding: 10px 0;
  border-bottom: 1px solid var(--color-primary);
  transition: color 0.3s ease, border-color 0.3s ease, gap 0.3s ease;
  margin-top: auto;
}

.business-more .arrow {
  transition: transform 0.3s ease;
}

.business-card:hover .business-more {
  color: var(--color-accent);
  border-color: var(--color-accent);
}

.business-card:hover .business-more .arrow {
  transform: translateX(4px);
}

.business-mobile-link {
  margin-top: 64px;
  text-align: center;
}
@media (min-width: 768px) {
  .business-mobile-link { display: none; }
}

@media (max-width: 1024px) {
  .business-grid { grid-template-columns: 1fr; }
  .business-card { padding: 48px 24px; }
  .business-section { padding: 100px 0; }
  .business-header { flex-direction: column; align-items: flex-start; margin-bottom: 40px; padding-bottom: 40px; }
}

/* =========================================
   Stats Section
   ========================================= */
.stats-section {
  padding: 160px 0;
  background: var(--color-primary);
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) { .stats-section { padding: 192px 0; } }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 64px 16px;
  cursor: default;
}

.stat-value {
  display: block;
  font-family: var(--font-sans);
  font-size: 60px;
  font-weight: 500;
  letter-spacing: -0.04em;
  color: rgba(255,255,255,0.9);
  margin-bottom: 24px;
  line-height: 1;
  transition: color 0.5s ease;
}
@media (min-width: 768px) { .stat-value { font-size: 72px; } }
@media (min-width: 1024px) { .stat-value { font-size: 96px; } }
.stat-item:hover .stat-value {
  color: var(--color-accent);
}

.stat-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 12px;
}

.stat-sub {
  display: block;
  font-family: var(--font-sans);
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.1em;
  font-weight: 300;
}

@media (max-width: 768px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { padding: 40px 16px; }
  .stats-section { padding: 80px 0; }
}

/* =========================================
   News (Home)
   ========================================= */
.news-home-section {
  padding: 160px 0;
  background: #fff;
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) { .news-home-section { padding: 224px 0; } }

.news-home-deco {
  position: absolute;
  top: 80px;
  right: 0;
  font-family: var(--font-sans);
  font-size: clamp(100px, 18vw, 300px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  color: rgba(13, 27, 62, 0.02); /* 透過度を調整 */
  pointer-events: none;
  white-space: nowrap;
  z-index: 1;
}

.news-home-header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 128px; /* Reactモックの mb-32 md:mb-40 に準拠 */
  gap: 32px;
}
@media (min-width: 768px) {
  .news-home-header { margin-bottom: 160px; }
}

.news-home-list {
  border-top: none;
}

.news-home-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 40px 24px; /* モバイル用の余白 */
  border-bottom: 1px solid #f3f4f6;
  margin: 0;
  transition: border-color 0.5s cubic-bezier(0.22, 1, 0.36, 1), background 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  color: inherit;
}

@media (min-width: 768px) {
  .news-home-item {
    padding: 56px 48px;
    margin: 0 -48px;
  }
}

.news-home-item:hover {
  border-bottom-color: var(--color-accent);
  background: var(--color-surface);
  opacity: 1;
}

.news-home-meta {
  display: flex;
  align-items: center;
  gap: 40px;
  min-width: 280px;
  flex-shrink: 0;
}

.news-home-date {
  font-family: var(--font-sans);
  font-size: 14px;
  color: rgba(100,100,100,0.6);
  letter-spacing: 0.1em;
  transition: color 0.3s ease;
}
.news-home-item:hover .news-home-date {
  color: var(--color-primary);
}

.news-home-cat {
  font-family: var(--font-sans);
  font-size: 10px;
  border: 1px solid #e5e7eb;
  border-radius: 0px; /* 完全にシャープな四角形に統一 */
  color: rgba(100,100,100,0.7);
  padding: 6px 16px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: border-color 0.4s cubic-bezier(0.22, 1, 0.36, 1), color 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.news-home-item:hover .news-home-cat {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.news-home-title-wrap {
  flex: 1;
  padding-left: 48px;
}

.news-home-title {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 300;
  color: var(--color-primary);
  line-height: 2.2;
  letter-spacing: 0.05em;
  margin-bottom: 0;
  border: none;
  padding: 0;
  transition: color 0.3s ease;
}
@media (min-width: 768px) { .news-home-title { font-size: 15px; } }
}
.news-home-item:hover .news-home-title {
  color: var(--color-accent);
}

@media (max-width: 768px) {
  .news-home-section { padding: 80px 0; }
  .news-home-header { flex-direction: column; align-items: flex-start; margin-bottom: 48px; }
  .news-home-item { flex-direction: column; align-items: flex-start; margin: 0; padding: 32px 0; gap: 16px; }
  .news-home-meta { min-width: unset; }
  .news-home-title-wrap { padding-left: 0; }
}

/* =========================================
   Contact CTA Section
   ========================================= */
.contact-cta-section {
  padding: 128px 0;
  background: #fcfcfc;
  color: var(--color-primary);
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) { .contact-cta-section { padding: 192px 0; } }

.contact-cta-geo {
  position: absolute;
  top: 0;
  right: 0;
  width: 66%;
  height: 100%;
  background: var(--color-surface);
  clip-path: polygon(100% 0, 0 100%, 100% 100%);
  opacity: 0.5;
  pointer-events: none;
}

.contact-cta-inner {
  display: flex;
  flex-direction: row;
  gap: 128px;
  align-items: stretch;
}

.contact-cta-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-cta-title {
  font-family: var(--font-sans);
  font-size: 48px;
  font-weight: 300;
  letter-spacing: -0.04em;
  line-height: 1.1;
  color: var(--color-primary);
  margin-bottom: 48px;
}
@media (min-width: 768px) { .contact-cta-title { font-size: 72px; } }
@media (min-width: 1024px) { .contact-cta-title { font-size: 100px; } }
.contact-cta-title em {
  font-family: var(--font-serif); /* Playfair Display */
  font-style: italic;
  font-weight: 400;
  color: var(--color-accent);
  padding-right: 16px;
  letter-spacing: normal;
}

.contact-cta-desc {
  font-family: var(--font-sans);
  font-size: 14px;
  color: rgba(100,100,100,0.7);
  line-height: 2.5;
  letter-spacing: 0.05em;
  font-weight: 300;
  max-width: 400px;
  margin-bottom: 64px;
}

.contact-cta-contacts {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.contact-cta-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-cta-label {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(100,100,100,0.5);
}

.contact-cta-value {
  font-family: var(--font-sans);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 300;
  letter-spacing: -0.02em;
  color: var(--color-primary);
  transition: color 0.3s ease;
}
.contact-cta-value:hover {
  color: var(--color-accent);
  opacity: 1;
}

.contact-cta-email {
  font-size: clamp(18px, 2vw, 28px);
}

.contact-cta-note {
  font-family: var(--font-mono);
  font-size: 12px;
  color: rgba(100,100,100,0.5);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.contact-cta-right {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  position: relative;
}

.contact-cta-card {
  display: flex;
  flex-direction: column;
  padding: 40px 32px; /* モバイル用の少しタイトな余白 */
  background: #fff;
  border: 1px solid #f3f4f6;
  box-shadow: 0 30px 60px rgba(0,0,0,0.02);
  transition: box-shadow 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  color: inherit;
}

@media (min-width: 768px) {
  .contact-cta-card {
    padding: 48px 64px;
  }
}

.contact-cta-card:hover {
  box-shadow: 0 40px 80px rgba(0,0,0,0.06);
  transform: translateY(-8px);
  opacity: 1;
}

/* PCサイズ(1024px以上)でのみ互い違いの洗練されたカード配置を有効化 (レスポンシブ崩れ防止) */
@media (min-width: 1024px) {
  .contact-cta-card--1 {
    transform: translateX(48px);
  }
  .contact-cta-card--1:hover {
    transform: translateX(48px) translateY(-8px);
  }
  .contact-cta-card--2 {
    transform: translateX(-48px) translateY(-48px);
    margin-top: 0;
  }
  .contact-cta-card--2:hover {
    transform: translateX(-48px) translateY(-56px);
  }
}

.contact-cta-card-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #f3f4f6;
  border-radius: 50%;
  margin-bottom: 64px;
  color: rgba(100,100,100,0.5);
  transition: border-color 0.3s ease, color 0.3s ease;
}
.contact-cta-card:hover .contact-cta-card-icon {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.contact-cta-card-title {
  font-family: var(--font-sans);
  font-size: 24px;
  font-weight: 500;
  color: var(--color-primary);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  border: none;
  padding: 0;
  transition: color 0.3s ease;
}
.contact-cta-card:hover .contact-cta-card-title {
  color: var(--color-accent);
}

.contact-cta-card-sub {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(100,100,100,0.5);
  margin-bottom: 32px;
}

.contact-cta-card-desc {
  font-family: var(--font-sans);
  font-size: 13px;
  line-height: 2.5;
  color: rgba(100,100,100,0.7);
  font-weight: 300;
  margin-bottom: 64px;
  flex: 1;
}

.contact-cta-card-link {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-top: auto;
  transition: color 0.3s ease;
}
.contact-cta-card:hover .contact-cta-card-link {
  color: var(--color-accent);
}
.contact-cta-card-link svg {
  transition: transform 0.5s ease;
}
.contact-cta-card:hover .contact-cta-card-link svg {
  transform: translateX(8px);
}

@media (max-width: 1024px) {
  .contact-cta-inner { flex-direction: column; gap: 64px; }
  .contact-cta-card--1 { transform: none; }
  .contact-cta-card--1:hover { transform: translateY(-8px); }
  .contact-cta-card--2 { transform: none; }
  .contact-cta-card--2:hover { transform: translateY(-8px); }
  .contact-cta-section { padding: 80px 0; }
}

@media (max-width: 768px) {
  .contact-cta-card { padding: 40px 32px; }
}

/* =========================================
   Page Hero (PageHeader component)
   ========================================= */
.page-hero {
  position: relative;
  padding: 160px 0 96px;
  background: var(--color-primary);
  overflow: hidden;
}
@media (min-width: 768px) {
  .page-hero { padding: 224px 0 128px; }
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
  filter: grayscale(100%);
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,46,74,0.8);
  mix-blend-mode: multiply;
  z-index: 1;
}

.page-hero-content {
  position: relative;
  z-index: 10;
}

.page-hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 24px;
}

.page-hero-sub {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.page-hero-title {
  font-family: var(--font-sans);
  font-size: 48px;
  font-weight: 300;
  letter-spacing: -0.04em;
  line-height: 1;
  color: #fff;
  margin-bottom: 0;
}
@media (min-width: 768px) { .page-hero-title { font-size: 72px; } }
@media (min-width: 1024px) { .page-hero-title { font-size: 80px; } }

.page-hero-dot {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--color-accent);
}

/* =========================================
   Interior Section (サブページ共通)
   ========================================= */
.interior-section {
  padding: 96px 0;
  background: var(--color-surface);
}
@media (min-width: 768px) { .interior-section { padding: 128px 0; } }
@media (min-width: 1024px) { .interior-section { padding: 160px 0; } }

.interior-inner {
  max-width: 1024px;
}

.interior-lead {
  margin-bottom: 96px;
}
@media (min-width: 768px) { .interior-lead { margin-bottom: 128px; } }

.interior-heading {
  font-family: var(--font-sans);
  font-size: 30px;
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.3;
  color: var(--color-primary);
  margin-bottom: 48px;
  border: none;
  padding: 0;
}
@media (min-width: 768px) { .interior-heading { font-size: 48px; margin-bottom: 64px; } }
.interior-heading::after { display: none; }

.interior-text {
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 2.5;
  color: rgba(100,100,100,0.8);
  font-weight: 300;
  letter-spacing: 0.02em;
  margin-bottom: 48px;
}

/* Personal page: service cards */
.service-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px 64px;
}

.service-card {
  background: #fff;
  border: 1px solid #f3f4f6;
  padding: 40px;
  transition: box-shadow 0.5s ease, transform 0.5s ease;
}
.service-card:hover {
  box-shadow: 0 20px 60px rgba(0,0,0,0.06);
  transform: translateY(-4px);
}

.service-card-num {
  width: 48px;
  height: 48px;
  background: var(--color-surface);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  color: var(--color-accent);
}

.service-card-title {
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 500;
  color: var(--color-primary);
  margin-bottom: 16px;
  border: none;
  padding: 0;
}
.service-card-title::before { display: none; }

.service-card-desc {
  font-family: var(--font-sans);
  font-size: 13px;
  line-height: 2;
  color: rgba(100,100,100,0.7);
  font-weight: 300;
}

@media (max-width: 768px) {
  .service-cards { grid-template-columns: 1fr; }
}

/* Investor page: service list */
.investor-services {
  display: flex;
  flex-direction: column;
}

.investor-service-item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 40px;
  padding: 56px 0;
  border-top: 1px solid var(--color-border);
}
.investor-service-item:last-child {
  border-bottom: 1px solid var(--color-border);
}

.investor-num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 48px;
  color: rgba(200,200,200,0.6);
  line-height: 1;
  flex-shrink: 0;
  min-width: 64px;
}

.investor-service-body {
  flex: 1;
}

.investor-service-title {
  font-family: var(--font-sans);
  font-size: 22px;
  font-weight: 500;
  color: var(--color-primary);
  margin-bottom: 16px;
  border: none;
  padding: 0;
}
.investor-service-title::before { display: none; }

.investor-service-desc {
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 2;
  color: rgba(100,100,100,0.7);
  font-weight: 300;
}

/* Services page: services grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 64px 96px;
  padding: 0;
}

.services-item {
  display: block;
  cursor: pointer;
  color: inherit;
  transition: opacity 0.3s ease;
}
.services-item:hover {
  opacity: 1;
}

.services-img-wrap {
  overflow: hidden;
  margin-bottom: 48px;
  aspect-ratio: 4/3;
}

.services-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
  filter: grayscale(30%);
}
.services-item:hover .services-img {
  transform: scale(1.05);
  filter: grayscale(0%);
}

.services-item-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.services-num {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.3em;
  color: var(--color-accent);
  text-transform: uppercase;
}

.services-item-title {
  font-family: var(--font-sans);
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--color-primary);
  margin-bottom: 20px;
  transition: color 0.3s ease;
  border: none;
  padding: 0;
}
.services-item:hover .services-item-title {
  color: var(--color-accent);
}
.services-item-title::after { display: none; }

.services-item-en {
  font-size: 13px;
  font-family: var(--font-sans);
  color: rgba(100,100,100,0.5);
  font-weight: 400;
  margin-left: 8px;
}

.services-item-desc {
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 2.2;
  color: rgba(100,100,100,0.7);
  font-weight: 300;
}

@media (max-width: 768px) {
  .services-grid { grid-template-columns: 1fr; gap: 48px; }
}

/* Company/About page */
.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 64px;
  padding: 48px;
}

.company-profile {
  border-top: 1px solid var(--color-border);
  max-width: 880px;
}

.company-profile-row {
  display: flex;
  flex-direction: row;
  border-bottom: 1px solid var(--color-border);
  padding: 28px 0;
}

.company-profile-label {
  width: 220px;
  flex-shrink: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 700;
  color: var(--color-primary);
}

.company-profile-value {
  flex: 1;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.95;
  color: var(--color-primary);
  font-weight: 500;
}

@media (max-width: 768px) {
  .company-profile-row { flex-direction: column; gap: 8px; }
  .company-profile-label { width: 100%; }
  .about-values { grid-template-columns: 1fr; }
}

.about-value-card {
  background: #fff;
  border: 1px solid #f3f4f6;
  padding: 48px;
}



/* =========================================
   Staff (New Design)
   ========================================= */
.staff-new-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

.staff-new-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  cursor: default;
}

.staff-new-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(26, 46, 74, 0.06);
  border-color: var(--color-accent);
}

.staff-new-card:hover .staff-new-photo {
  filter: grayscale(0%);
  transform: scale(1.04);
}

.staff-new-photo-wrap {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--color-bg-gray);
  margin-bottom: 0 !important;
}

.staff-new-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: filter 0.6s ease, transform 0.6s ease;
}

.staff-new-info {
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.staff-new-role {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 8px;
}

.staff-new-name {
  font-family: var(--font-sans);
  font-size: 20px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 16px;
  border: none;
  padding: 0;
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.staff-new-name::after { display: none; }

.staff-new-name-en {
  font-family: var(--font-sans);
  font-size: 12px;
  color: var(--color-text-light);
  font-weight: 400;
}

.staff-new-bio {
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 1.85;
  color: var(--color-text-light);
  font-weight: 400;
  flex-grow: 1;
}

@media (max-width: 768px) {
  .staff-new-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
}

/* ── Cases Card Image Placeholder ── */
.case-card-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-bg-gray);
}
.case-card-placeholder-logo {
  width: auto;
  height: auto;
  max-width: 64px;
  max-height: 44px;
  opacity: 0.35;
  object-fit: contain;
}

/* ── Staff / CEO Photo Placeholder ── */
.staff-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, #1a2e4a 0%, #0f1c2e 100%);
}

.ab-message-placeholder {
  width: 100%;
  aspect-ratio: 2/3;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, #1a2e4a 0%, #0f1c2e 100%);
}

.staff-placeholder-logo {
  width: 48%;
  max-width: 110px;
  opacity: 0.45;
}

/* =========================================
   News Archive
   ========================================= */
.news-archive-inner {
  max-width: 900px;
}

.news-filter {
  display: flex;
  gap: 16px;
  margin-bottom: 64px;
  flex-wrap: wrap;
}

.news-filter-btn {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 12px 24px;
  border: 1px solid var(--color-border);
  color: rgba(100,100,100,0.6);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}
.news-filter-btn:hover,
.news-filter-btn.is-active {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
  opacity: 1;
}

.news-archive-list {
  border-top: 1px solid var(--color-border);
}

.news-archive-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 48px 0;
  border-bottom: 1px solid var(--color-border);
  transition: border-color 0.5s ease;
  color: inherit;
}
.news-archive-item:hover {
  border-bottom-color: var(--color-accent);
  opacity: 1;
}

.news-archive-meta {
  display: flex;
  align-items: center;
  gap: 32px;
  min-width: 240px;
  flex-shrink: 0;
}

.news-archive-title-wrap {
  flex: 1;
  padding-left: 32px;
}

.news-archive-title {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 300;
  color: var(--color-primary);
  line-height: 1.8;
  margin-bottom: 0;
  border: none;
  padding: 0;
  transition: color 0.3s ease;
}
.news-archive-title::after { display: none; }
.news-archive-item:hover .news-archive-title {
  color: var(--color-accent);
}

.news-archive-empty {
  padding: 64px 0;
  text-align: center;
  color: rgba(100,100,100,0.5);
  font-family: var(--font-sans);
}

.news-pagination {
  margin-top: 64px;
  display: flex;
  justify-content: center;
}

.news-pagination .nav-links {
  display: flex;
  gap: 8px;
  align-items: center;
}

.news-pagination .page-numbers {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-border);
  font-family: var(--font-sans);
  font-size: 13px;
  color: rgba(100,100,100,0.6);
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}
.news-pagination .page-numbers:hover,
.news-pagination .page-numbers.current {
  border-color: var(--color-primary);
  background: var(--color-primary);
  color: #fff;
  opacity: 1;
}

@media (max-width: 768px) {
  .news-archive-item { flex-direction: column; align-items: flex-start; gap: 12px; }
  .news-archive-meta { min-width: unset; }
  .news-archive-title-wrap { padding-left: 0; }
  .interior-section { padding: 64px 0 80px; }
}

/* =========================================
   Footer (New Design)
   ========================================= */
.site-footer {
  background: var(--color-primary);
  color: rgba(255,255,255,0.5);
  position: relative;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.footer-inner {
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: 5fr 1fr 3fr 3fr;
  gap: 48px;
  padding-top: 128px;
  padding-bottom: 128px;
}

.footer-brand {
  padding-right: 48px;
}

.footer-logo {
  margin-bottom: 40px;
}

.footer-logo img {
  height: 56px;
  width: auto;
}

.footer-logo-text {
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #fff;
}

.footer-tagline {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 300;
  line-height: 2.5;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.6);
  max-width: 380px;
  margin-bottom: 48px;
  text-transform: none;
}

.footer-address {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 300;
  line-height: 2.5;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.05em;
  font-style: normal;
  text-transform: none;
}

.footer-license {
  margin-top: 24px;
  font-family: var(--font-sans);
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.1em;
}

.footer-divider-col {
  border-right: 1px solid rgba(255,255,255,0.05);
}

.footer-nav-col {
  padding-left: 48px;
}

.footer-nav-heading {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  margin-bottom: 40px;
}

.footer-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0;
  margin: 0;
}

.footer-nav-list li {
  margin-bottom: 32px;
}

.footer-nav-list li a {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.1em;
  text-transform: none;
  transition: color 0.3s ease, transform 0.3s ease;
  display: inline-block;
}
.footer-nav-list li a:hover {
  color: var(--color-accent);
  transform: translateX(8px);
  opacity: 1;
}

.footer-nav-list li.footer-sub a {
  opacity: 0.6;
}

.footer-nav-list li.footer-spacer {
  margin-top: 16px;
}

.footer-bottom {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding-top: 48px;
  padding-bottom: 64px;
  border-top: 1px solid rgba(255,255,255,0.1);
  opacity: 0.6;
  gap: 32px;
}

.footer-copy {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: inherit;
  margin-bottom: 0;
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 48px;
}

.footer-bottom-links a {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s ease;
}
.footer-bottom-links a:hover {
  color: #fff;
  opacity: 1;
}

.footer-totop {
  position: absolute;
  right: 32px;
  bottom: 48px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.2);
  background: none;
  color: #fff;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.footer-totop:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 48px; }
  .footer-divider-col { display: none; }
  .footer-nav-col { padding-left: 0; }
}

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; padding-top: 64px; padding-bottom: 64px; gap: 48px; }
  .footer-brand { padding-right: 0; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .footer-copy { letter-spacing: 0.08em; }
  .footer-totop { right: 24px; bottom: 24px; }
}


/* =============================================
   Contact Page
   ============================================= */
.contact-page-inner {
  max-width: 860px;
}

.contact-form-wrapper {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  padding: 56px 64px;
}
@media (min-width: 768px) { .contact-form-wrapper { padding: 72px 80px; } }

@media (max-width: 768px) {
  .contact-form-wrapper {
    padding: 32px 24px;
  }
}

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

.form-group label {
  display: block;
  margin-bottom: 10px;
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--color-dark);
}

.form-group label .required {
  color: #c53030;
  font-size: 11px;
  margin-left: 8px;
  background: #fff5f5;
  border: 1px solid #feb2b2;
  padding: 2px 7px;
  border-radius: 3px;
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #d1d5db;
  border-radius: 4px;
  font-family: inherit;
  font-size: 0.9375rem;
  color: var(--color-dark);
  background: var(--color-surface);
  transition: border-color 0.25s;
  box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--color-primary);
  outline: none;
  background: #fff;
}

.form-group textarea {
  resize: vertical;
  min-height: 160px;
}

.form-submit {
  text-align: center;
  margin-top: 36px;
}

.response-message {
  margin-top: 16px;
  padding: 12px 16px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.9rem;
}

.response-message.success {
  background: #f0fff4;
  color: #276749;
  border: 1px solid #9ae6b4;
}

.response-message.error {
  background: #fff5f5;
  color: #9b2c2c;
  border: 1px solid #feb2b2;
}

/* Step Indicator */
.contact-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 40px;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}

.contact-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid #d1d5db;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 600;
  color: #9ca3af;
  background: #fff;
  transition: all 0.3s ease;
}

.step-label {
  font-size: 0.8125rem;
  font-weight: 500;
  color: #9ca3af;
  transition: color 0.3s ease;
}

.contact-step.is-active .step-number {
  border-color: var(--color-primary);
  background: var(--color-primary);
  color: #fff;
}

.contact-step.is-active .step-label {
  color: var(--color-primary);
  font-weight: 600;
}

.contact-step.is-done .step-number {
  border-color: var(--color-accent);
  background: var(--color-accent);
  color: #fff;
}

.contact-step.is-done .step-label {
  color: var(--color-accent);
}

.step-line {
  flex: 1;
  height: 2px;
  background: #d1d5db;
  min-width: 48px;
  margin: 0 12px;
  margin-bottom: 28px;
  transition: background 0.3s ease;
}

.step-line.is-done {
  background: var(--color-accent);
}

/* Step Panels */
.contact-step-panel {
  display: none;
}

.contact-step-panel.is-active {
  display: block;
}

/* Field Errors */
.field-error {
  display: none;
  color: #c53030;
  font-size: 0.8125rem;
  margin-top: 6px;
  font-weight: 500;
}

.form-group.has-error input,
.form-group.has-error textarea {
  border-color: #c53030;
}

/* Confirm Panel */
.confirm-lead {
  text-align: center;
  font-size: 0.9375rem;
  color: var(--color-text-light);
  margin-bottom: 32px;
}

.confirm-list {
  margin: 0;
  padding: 0;
}

.confirm-list dt {
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--color-text-light);
  padding: 16px 0 6px;
  border-top: 1px solid #e5e7eb;
}

.confirm-list dt:first-child {
  border-top: none;
  padding-top: 0;
}

.confirm-list dd {
  margin: 0;
  padding: 0 0 16px;
  font-size: 1rem;
  color: var(--color-text-main);
  line-height: 1.7;
}

.confirm-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
}

.btn-outline {
  display: inline-block;
  padding: 14px 40px;
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
  background: transparent;
  border-radius: 4px;
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
}

.btn-outline:hover {
  background: var(--color-primary);
  color: #fff;
}

@media (max-width: 480px) {
  .contact-steps {
    margin-bottom: 28px;
  }
  .step-number {
    width: 34px;
    height: 34px;
    font-size: 0.8125rem;
  }
  .step-label {
    font-size: 0.75rem;
  }
  .step-line {
    min-width: 32px;
    margin: 0 8px;
    margin-bottom: 24px;
  }
  .confirm-actions {
    flex-direction: column;
    gap: 12px;
  }
  .confirm-actions .btn {
    width: 100%;
  }
  .confirm-actions .btn-outline {
    width: 100%;
    text-align: center;
  }
}

/* =============================================
   Cases Page — List
   ============================================= */
.cases-section {
  padding: 96px 0 144px;
}
.cases-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}
@media (min-width: 768px) {
  .cases-container { padding: 0 64px; }
}

/* Header */
.cases-header {
  max-width: 768px;
  margin-bottom: 96px;
}
.cases-header-label {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 32px;
}
.cases-header-line {
  width: 48px;
  height: 1px;
  background: var(--color-primary);
  display: block;
}
.cases-header-mono {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--color-primary);
}
.cases-header-title {
  font-family: var(--font-sans);
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 300;
  letter-spacing: -0.02em;
  color: var(--color-primary);
  line-height: 1.3;
  margin: 0 0 32px;
}
.cases-header-desc {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 300;
  color: #6b7280;
  line-height: 2.2;
  letter-spacing: 0.05em;
  margin: 0;
}
@media (min-width: 768px) {
  .cases-header-desc { font-size: 16px; }
}

/* Filter Tabs */
.cases-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 32px;
  margin-bottom: 80px;
}
.cases-filter::-webkit-scrollbar { display: none; }

.cases-filter-btn {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 12px 24px;
  border: 1px solid var(--color-border);
  background: transparent;
  color: rgba(100,100,100,0.6);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}
.cases-filter-btn:hover,
.cases-filter-btn.is-active {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
  opacity: 1;
}

/* Grid */
.cases-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
@media (min-width: 1024px) {
  .cases-grid { grid-template-columns: repeat(2, 1fr); gap: 64px; }
}

/* Card */
.case-card {
  background: #fff;
  border: 1px solid #f3f4f6;
  box-shadow: 0 30px 80px rgba(0,0,0,0.02);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.7s ease;
  overflow: hidden;
}
.case-card:hover {
  box-shadow: 0 40px 100px rgba(10,34,64,0.06);
  border-color: rgba(183,141,87,0.2);
}
.case-card.is-hidden {
  display: none;
}
@keyframes caseCardIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.case-card.is-visible {
  animation: caseCardIn 0.6s ease forwards;
}

/* Card Image */
.case-card-img {
  position: relative;
  aspect-ratio: 16 / 10;
  width: 100%;
  overflow: hidden;
  background: #f3f4f6;
}
.case-card-img-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,34,64,0.05);
  mix-blend-mode: multiply;
  z-index: 1;
  transition: background 0.7s ease;
}
.case-card:hover .case-card-img-overlay {
  background: transparent;
}
.case-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
  transition: all 1.5s cubic-bezier(0.22,1,0.36,1);
}
.case-card:hover .case-card-img img {
  transform: scale(1);
}
.case-card-badge {
  position: absolute;
  top: 24px;
  left: 24px;
  z-index: 2;
  background: var(--color-primary);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 8px 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Card Content */
.case-card-content {
  padding: 32px;
  flex: 1;
}
@media (min-width: 768px) {
  .case-card-content { padding: 48px; }
}

.case-card-specs-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  margin-bottom: 24px;
}
.case-card-spec {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: #9ca3af;
}
.case-card-spec-icon {
  flex-shrink: 0;
}
.case-card-spec-icon.accent {
  color: var(--color-accent);
}
.case-card-spec-dot {
  width: 6px;
  height: 6px;
  background: #e5e7eb;
  border-radius: 50%;
}

.case-card-title {
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 300;
  letter-spacing: -0.02em;
  color: var(--color-primary);
  line-height: 1.4;
  margin: 0 0 24px;
  transition: color 0.5s ease;
}
@media (min-width: 768px) {
  .case-card-title { font-size: 20px; }
}
.case-card:hover .case-card-title {
  color: var(--color-accent);
}

.case-card-desc {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 300;
  color: #6b7280;
  line-height: 2;
  letter-spacing: 0.03em;
  margin: 0;
}

/* Card CTA */
.case-card-cta {
  padding: 16px 32px 40px;
  border-top: 1px solid #f9fafb;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 768px) {
  .case-card-cta { padding: 16px 48px 40px; }
}
.case-card-tag-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--color-surface);
  color: #9ca3af;
  padding: 8px 16px;
}
.case-card-link {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.3s ease;
}
.case-card-link:hover {
  color: var(--color-accent);
}
.case-card-link svg {
  transition: transform 0.5s ease;
}
.case-card-link:hover svg {
  transform: translateX(8px);
}

/* =============================================
   Cases Page — Detail
   ============================================= */
.case-detail-section {
  padding: 96px 0 160px;
}
@media (min-width: 768px) { .case-detail-section { padding: 128px 0 192px; } }
.case-detail-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}
@media (min-width: 768px) {
  .case-detail-container { padding: 0 64px; }
}

/* Back Link */
.case-detail-back {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: #9ca3af;
  text-decoration: none;
  margin-bottom: 64px;
  transition: color 0.3s ease;
}
.case-detail-back:hover {
  color: var(--color-primary);
}
.case-detail-back:hover svg {
  transform: translateX(-4px);
}
.case-detail-back svg {
  transition: transform 0.3s ease;
}

/* 2-column layout */
.case-detail-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
  align-items: start;
}
@media (min-width: 1024px) {
  .case-detail-layout {
    grid-template-columns: 2fr 1fr;
    gap: 96px;
  }
}

/* Title Area */
.case-detail-title-area {
  margin-bottom: 80px;
}
.case-detail-category-badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  background: var(--color-primary);
  color: #fff;
  padding: 8px 16px;
  margin-bottom: 32px;
}
.case-detail-title {
  font-family: var(--font-sans);
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  font-weight: 300;
  letter-spacing: -0.02em;
  color: var(--color-primary);
  line-height: 1.4;
  margin: 0;
}

/* Story Cards */
.case-detail-stories {
  display: flex;
  flex-direction: column;
  gap: 80px;
  margin-bottom: 96px;
}
.case-detail-story {
  background: #fff;
  border: 1px solid #f3f4f6;
  padding: 32px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.01);
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) {
  .case-detail-story { padding: 48px; }
}
.case-detail-story::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
}
.case-detail-story--challenge::before { background: var(--color-accent); }
.case-detail-story--solution::before  { background: var(--color-primary); }
.case-detail-story--result::before    { background: #16a34a; }

.case-detail-story-heading {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--color-primary);
  margin: 0 0 24px;
}
.story-icon.accent  { color: var(--color-accent); }
.story-icon.primary { color: var(--color-primary); }
.story-icon.green   { color: #16a34a; }

.case-detail-story-text {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 300;
  color: #4b5563;
  line-height: 2.2;
  letter-spacing: 0.03em;
  margin: 0;
}
@media (min-width: 768px) {
  .case-detail-story-text { font-size: 16px; }
}

/* Gallery */
.case-detail-gallery {
  margin-bottom: 96px;
}
.case-detail-gallery-label {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 32px;
}
.case-detail-gallery-title {
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: var(--color-primary);
  text-transform: uppercase;
  margin: 0;
}
.case-detail-gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 768px) {
  .case-detail-gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
.case-detail-gallery-item {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #f9fafb;
  border: 1px solid #f3f4f6;
}
.case-detail-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.case-detail-gallery-item:hover img {
  transform: scale(1.05);
}

/* Gallery Lightbox trigger */
.case-gallery-link {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  cursor: zoom-in;
}
.case-gallery-zoom {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10, 34, 64, 0.3);
  color: #fff;
  opacity: 0;
  transition: opacity 0.25s;
}
.case-gallery-link:hover .case-gallery-zoom { opacity: 1; }

/* Lightbox */
.clb {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
}
.clb--open { opacity: 1; pointer-events: all; }
.clb-bg {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  cursor: pointer;
}
.clb-wrap {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 92vw;
}
.clb-img {
  max-width: 80vw;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.6);
  display: block;
}
.clb-prev, .clb-next {
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 36px;
  line-height: 1;
  cursor: pointer;
  padding: 12px 18px;
  border-radius: 6px;
  transition: background 0.18s;
}
.clb-prev:hover, .clb-next:hover { background: rgba(255, 255, 255, 0.25); }
.clb-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: background 0.18s;
}
.clb-close:hover { background: rgba(255, 255, 255, 0.35); }
.clb-counter {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
  letter-spacing: 0.1em;
  font-family: var(--font-mono, monospace);
  pointer-events: none;
}

/* Sidebar */
.case-detail-sidebar {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
@media (min-width: 1024px) {
  .case-detail-sidebar {
    position: sticky;
    top: 112px;
  }
}

/* Specs Box */
.case-detail-specs-box {
  background: #fff;
  border: 1px solid #f3f4f6;
  padding: 32px;
  box-shadow: 0 40px 100px rgba(0,0,0,0.03);
}
@media (min-width: 768px) {
  .case-detail-specs-box { padding: 40px; }
}
.case-detail-specs-heading {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-primary);
  border-bottom: 1px solid #f3f4f6;
  padding-bottom: 24px;
  margin: 0 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.case-detail-specs-heading .accent { color: var(--color-accent); }

.case-detail-specs-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 0;
  padding: 0;
}
.case-detail-spec-item {
  border-bottom: 1px solid #fafafa;
  padding-bottom: 20px;
}
.case-detail-spec-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.case-detail-spec-item dt {
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #9ca3af;
  margin-bottom: 8px;
}
.case-detail-spec-item dd {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 300;
  color: var(--color-primary);
  line-height: 1.6;
  margin: 0;
}

/* CTA Box */
.case-detail-cta-box {
  background: var(--color-primary);
  color: #fff;
  padding: 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(10,34,64,0.1);
}
@media (min-width: 768px) {
  .case-detail-cta-box { padding: 40px; }
}
.case-detail-cta-pattern {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
              linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 2rem 2rem;
  opacity: 0.5;
  z-index: 0;
}
.case-detail-cta-inner {
  position: relative;
  z-index: 1;
}
.case-detail-cta-title {
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 300;
  letter-spacing: 0.1em;
  margin: 0 0 24px;
  color: #fff;
}
.case-detail-cta-text {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.05em;
  line-height: 1.8;
  margin: 0 0 24px;
}
.case-detail-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 16px;
  border: 1px solid #fff;
  background: transparent;
  color: #fff;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  gap: 16px;
  transition: all 0.5s ease;
}
.case-detail-cta-btn:hover {
  border-color: var(--color-accent);
  background: var(--color-accent);
}

/* Related Cases */
.case-detail-related {
  margin-top: 160px;
  border-top: 1px solid #f3f4f6;
  padding-top: 96px;
}
.case-detail-related-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 64px;
}
.case-detail-related-label {
  display: flex;
  align-items: center;
  gap: 24px;
}
.case-detail-related-title {
  font-family: var(--font-sans);
  font-size: 20px;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: var(--color-primary);
  text-transform: uppercase;
  margin: 0;
}
.case-detail-related-all {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.3s ease;
}
.case-detail-related-all:hover {
  color: var(--color-accent);
}

.case-detail-related-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 768px) {
  .case-detail-related-grid { grid-template-columns: repeat(2, 1fr); gap: 48px; }
}
.case-detail-related-card {
  display: block;
  background: #fff;
  border: 1px solid #f3f4f6;
  padding: 32px;
  text-decoration: none;
  transition: box-shadow 0.7s ease;
}
.case-detail-related-card:hover {
  box-shadow: 0 30px 80px rgba(10,34,64,0.05);
}
.case-detail-related-img {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #f9fafb;
  margin-bottom: 24px;
}
.case-detail-related-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.case-detail-related-card:hover .case-detail-related-img img {
  transform: scale(1.05);
}
.case-detail-related-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: #9ca3af;
  margin-bottom: 16px;
}
.case-detail-related-meta .accent {
  color: var(--color-accent);
}
.case-detail-related-card-title {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 300;
  color: var(--color-primary);
  line-height: 1.4;
  margin: 0;
  transition: color 0.3s ease;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.case-detail-related-card:hover .case-detail-related-card-title {
  color: var(--color-accent);
}

/* =============================================
   Mobile Responsive — Comprehensive
   ============================================= */

/* --- Hero --- */
@media (max-width: 767px) {
  .hero-eyebrow-text { font-size: 10px; }
}

/* --- Features --- */
@media (max-width: 768px) {
  .features-header { margin-bottom: 48px; }
  .feature-num { font-size: 48px; }
  .feature-card { padding: 40px 20px; }
  .feature-card-top { margin-bottom: 48px; }
  .feature-title { font-size: 24px; }
  .feature-desc { font-size: 13px; line-height: 2.2; }
  .features-section { padding: 80px 0; }
}

/* --- Business / Domains --- */
@media (max-width: 768px) {
  .business-deco { font-size: clamp(80px, 24vw, 140px); top: 40px; }
  .business-section { padding: 80px 0; }
  .business-title { font-size: clamp(20px, 5vw, 28px); margin-bottom: 24px; }
  .business-desc { max-width: 100%; }
  .business-header { gap: 16px; margin-bottom: 32px; padding-bottom: 32px; }
}

/* --- Stats --- */
@media (max-width: 480px) {
  .stat-num { font-size: clamp(48px, 14vw, 72px); }
  .stat-label { font-size: 10px; }
}

/* --- News (home) --- */
@media (max-width: 768px) {
  .news-home-section { padding: 80px 0; }
  .news-home-header { flex-direction: column; align-items: flex-start; margin-bottom: 48px; gap: 16px; }
  .news-home-deco { font-size: clamp(80px, 22vw, 140px); top: 40px; }
  .news-home-date { font-size: 12px; }
  .news-home-cat { font-size: 11px; padding: 3px 10px; }
  .news-home-title { font-size: 14px; }
  .news-home-item { padding: 20px 0; flex-wrap: wrap; gap: 8px; }
  .news-home-meta { min-width: 100%; }
}

/* --- Contact CTA --- */
@media (max-width: 768px) {
  .contact-cta-section { padding: 80px 0; }
  .contact-cta-inner { flex-direction: column; gap: 24px; }
  .contact-cta-left { min-width: 0; }
  .contact-cta-cards { gap: 16px; }
  .contact-cta-card--1,
  .contact-cta-card--2 { width: 100%; }
  .cta-phone { font-size: clamp(28px, 8vw, 40px); }
}

/* --- Page Hero --- */
@media (max-width: 767px) {
  .page-hero { min-height: 280px; }
  .page-hero-eyebrow { margin-bottom: 16px; }
}

/* --- Interior / Sub-page content --- */
@media (max-width: 768px) {
  .interior-text { font-size: 14px; }

  /* About: value cards */
  .about-values { grid-template-columns: 1fr; gap: 16px; }

  /* Staff cards */
  .staff-new-grid { grid-template-columns: 1fr; gap: 24px; }

  /* Cases - already handled in main cases CSS */

  /* Services */
  .services-grid { grid-template-columns: 1fr; gap: 24px; }

  /* Investor */
  .investor-services { gap: 32px; }

  /* Personal */
  .service-cards { grid-template-columns: 1fr; gap: 16px; }
}

/* --- Company profile table --- */
@media (max-width: 640px) {
  .company-profile-row { flex-direction: column; gap: 4px; padding: 16px 0; }
  .company-profile-label { min-width: 0; font-size: 11px; }
  .company-profile-value { font-size: 14px; }
}

/* --- News Archive --- */
@media (max-width: 768px) {
  .news-archive-item { flex-direction: column; gap: 8px; padding: 20px 0; }
  .news-archive-meta { flex-direction: row; }
  .news-filter { gap: 8px; flex-wrap: wrap; }
  .news-filter-btn { font-size: 11px; padding: 6px 14px; }
}

/* --- Footer --- */
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-brand { max-width: 100%; }
  .footer-nav-col h4 { margin-bottom: 12px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 12px; }
  .footer-bottom-links { flex-wrap: wrap; gap: 12px; }
  .footer-totop { right: 16px; bottom: 16px; }
}

/* --- Navigation: mobile override cleanup (now handled by .mobile-menu-btn / .desktop-nav) --- */

/* --- Container padding on mobile --- */
@media (max-width: 640px) {
  .container { padding-left: 20px; padding-right: 20px; }
}

/* --- Section heading mobile --- */
@media (max-width: 767px) {
  .section-eyebrow { font-size: 10px; letter-spacing: 0.3em; }
}


/* ==========================================================================
   Premium Subpage Components (Personal, Investor, Services, About)
   ========================================================================== */

/* --- 1. PERSONAL (Rent & Buy Section) --- */
.personal-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
  margin-bottom: 80px;
}

.personal-column {
  background: var(--color-bg-gray);
  padding: 56px 48px;
  border-radius: 12px;
  border: 1px solid var(--color-border);
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  display: flex;
  flex-direction: column;
}

.personal-column:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(26, 46, 74, 0.05);
  border-color: var(--color-accent);
}

.personal-badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.25em;
  color: var(--color-accent);
  text-transform: uppercase;
  margin-bottom: 16px;
  font-weight: 600;
}

.personal-column-title {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--color-primary);
}

.personal-column-desc {
  color: var(--color-text-light);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 32px;
}

/* --- Fee Comparison Table --- */
.fee-comparison-section {
  margin-top: 64px;
  margin-bottom: 80px;
}

.fee-table-wrap {
  margin: 48px 0 32px;
}

.fee-table {
  width: 100%;
  border: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  border-radius: 8px;
  overflow: hidden;
  border-collapse: collapse;
  table-layout: fixed;
}

.fee-table th {
  background: var(--color-primary);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  padding: 18px 28px;
  text-align: left;
}
.fee-table th:first-child { width: 20%; }
.fee-table th:nth-child(2) { width: 38%; }
.fee-table th:nth-child(3) { width: 42%; }

.fee-table th.manda-accent-col,
.fee-table td.manda-accent-col {
  background: #fdfaf2;
  border-left: 2px solid var(--color-accent);
  border-right: 2px solid var(--color-accent);
}

.fee-table tr:first-child th.manda-accent-col {
  background: var(--color-accent);
  color: var(--color-primary);
}

.fee-table td {
  font-size: 14px;
  padding: 24px 28px;
  border-bottom: 1px solid var(--color-border);
  vertical-align: middle;
  line-height: 1.7;
}

.fee-highlight {
  font-size: 16px;
  font-weight: 700;
  color: #d43f3f;
}

.fee-highlight-manda {
  font-size: 17px;
  font-weight: 700;
  color: var(--color-primary);
}

/* --- LINE Smart Step Roadmap --- */
.roadmap-section {
  padding: 96px 0;
  background: #fafbfe;
  border-radius: 16px;
  margin-bottom: 80px;
}

.roadmap-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 48px;
  position: relative;
}

.roadmap-grid::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--color-border) 0%, var(--color-accent) 50%, var(--color-border) 100%);
  z-index: 1;
}

.roadmap-step {
  text-align: center;
  position: relative;
  z-index: 2;
}

.roadmap-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}

.roadmap-circle svg {
  color: var(--color-primary);
  width: 28px;
  height: 28px;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.roadmap-step:hover .roadmap-circle {
  border-color: var(--color-accent);
  background: var(--color-primary);
  transform: scale(1.1);
  box-shadow: 0 10px 20px rgba(26, 46, 74, 0.1);
}

.roadmap-step:hover .roadmap-circle svg {
  color: var(--color-accent);
  transform: rotate(360deg);
}

.roadmap-num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--color-accent);
  font-weight: 600;
  display: block;
  margin-bottom: 8px;
}

.roadmap-title {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--color-primary);
  line-height: 1.5;
}

.roadmap-desc {
  font-size: 13px;
  color: var(--color-text-light);
  line-height: 1.8;
}

/* --- 2. INVESTMENT (Consulting Workflow & Simulation) --- */
.investor-workflow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-bottom: 80px;
}

.investor-step-card {
  background: #fff;
  border: 1px solid var(--color-border);
  padding: 40px 32px;
  border-radius: 8px;
  position: relative;
  transition: all 0.3s ease;
}

.investor-step-card:hover {
  border-color: var(--color-accent);
  box-shadow: 0 10px 25px rgba(26, 46, 74, 0.04);
}

.investor-step-card::after {
  content: '➔';
  position: absolute;
  top: 50%;
  right: -16px;
  transform: translateY(-50%);
  color: var(--color-accent);
  font-size: 20px;
  z-index: 10;
}

.investor-step-card:last-child::after {
  display: none;
}

.investor-step-num {
  font-family: var(--font-mono);
  font-size: 24px;
  font-weight: 300;
  color: var(--color-accent);
  line-height: 1;
  margin-bottom: 16px;
  margin-bottom: 16px;
  display: block;
}

.investor-step-title {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--color-primary);
  line-height: 1.5;
}

.investor-step-desc {
  font-size: 13px;
  color: var(--color-text-light);
  line-height: 1.8;
}

/* Value Up Simulation Card */
.sim-section {
  margin-top: 80px;
  margin-bottom: 96px;
}

.sim-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 32px;
}

.sim-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}

.sim-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--color-accent);
}

.sim-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 20px;
  margin-bottom: 24px;
  margin-bottom: 24px;
}

.sim-tag {
  background: rgba(200, 169, 110, 0.1);
  color: var(--color-accent);
  padding: 5px 14px;
  border-radius: 4px;
  font-size: 11px;
  white-space: nowrap;
  flex-shrink: 0;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.sim-case-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.4;
}

.sim-body {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.sim-data-col {
  flex: 1;
}

.sim-arrow {
  color: var(--color-accent);
  font-size: 28px;
  animation: pulseArrow 2s infinite;
}

.sim-label {
  font-size: 12px;
  color: var(--color-text-light);
  margin-bottom: 4px;
  display: block;
}

.sim-val {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-primary);
  display: block;
}

.sim-val--after {
  font-size: 24px;
  color: #2e7d32;
}

@keyframes pulseArrow {
  0% { transform: translateX(0); opacity: 0.6; }
  50% { transform: translateX(6px); opacity: 1; }
  100% { transform: translateX(0); opacity: 0.6; }
}

/* --- 3. SERVICES (Direct Links & Glow Hover) --- */
.services-item {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background: #fff;
  transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.services-item:hover {
  transform: translateY(-6px);
  border-color: var(--color-accent);
  box-shadow: 0 20px 40px rgba(200, 169, 110, 0.08);
}

.service-case-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--color-accent);
  letter-spacing: 0.15em;
  font-weight: 600;
  margin-top: 32px;
  transition: gap 0.3s ease;
}

.services-item:hover .service-case-link {
  color: var(--color-primary);
  gap: 14px;
}

/* --- 4. ABOUT (Timeline & Redesigned Values) --- */
.about-values-redesign {
  display: flex;
  flex-direction: column;
  margin-top: 64px;
}

.value-card-new {
  display: flex;
  align-items: center;
  gap: 56px;
  padding: 52px 0;
  background: transparent;
  border: none;
  border-top: 1px solid rgba(200, 169, 110, 0.15);
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
  transition: background 0.3s ease;
}

.value-card-new:last-child {
  border-bottom: 1px solid rgba(200, 169, 110, 0.15);
}

.value-card-new:hover {
  transform: none;
  background: rgba(200, 169, 110, 0.025);
  box-shadow: none;
  border-color: rgba(200, 169, 110, 0.15);
}

.value-card-num-new {
  font-family: var(--font-serif);
  font-size: 88px;
  font-weight: 700;
  line-height: 1;
  color: rgba(200, 169, 110, 0.14);
  position: static;
  flex-shrink: 0;
  width: 100px;
  text-align: right;
  transition: color 0.4s ease;
}

.value-card-new:hover .value-card-num-new {
  color: rgba(200, 169, 110, 0.28);
  transform: none;
}

.value-card-content {
  position: static;
  z-index: auto;
  display: grid;
  grid-template-columns: 80px 1fr;
  grid-template-rows: auto auto;
  column-gap: 40px;
  align-items: center;
  flex: 1;
}

.value-card-icon-wrap {
  grid-column: 1;
  grid-row: 1 / 3;
  align-self: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(200, 169, 110, 0.08) 0%, rgba(200, 169, 110, 0.02) 100%);
  border: 1px solid rgba(200, 169, 110, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
  transition: all 0.5s cubic-bezier(0.25, 1, 0.33, 1);
  color: var(--color-accent);
}

.value-card-icon {
  width: 30px;
  height: 30px;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.33, 1);
}

.value-card-new:hover .value-card-icon-wrap {
  background: linear-gradient(135deg, rgba(200, 169, 110, 0.15) 0%, rgba(200, 169, 110, 0.05) 100%);
  border-color: rgba(200, 169, 110, 0.5);
  box-shadow: 0 8px 20px -6px rgba(200, 169, 110, 0.2);
}

.value-card-new:hover .value-card-icon {
  transform: scale(1.08) rotate(2deg);
}

.value-card-title-new {
  grid-column: 2;
  grid-row: 1;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--color-primary);
  display: inline-block;
  position: relative;
  padding-bottom: 12px;
  text-align: left;
}

.value-card-title-new::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 1.5px;
  background-color: var(--color-accent);
  transition: width 0.5s cubic-bezier(0.25, 1, 0.33, 1);
}

.value-card-new:hover .value-card-title-new::after {
  width: 56px;
}

.value-card-desc-new {
  grid-column: 2;
  grid-row: 2;
  font-size: 15px;
  color: var(--color-text-light);
  line-height: 1.9;
  text-align: left;
  max-width: 640px;
}

/* --- Timeline Component --- */
.timeline-section {
  padding: 80px 0;
  border-bottom: 1px solid var(--color-border);
}

.timeline-wrap {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 0;
}

.timeline-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: var(--color-border);
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  width: 50%;
  padding: 20px 40px;
  box-sizing: border-box;
}

.timeline-item--left {
  left: 0;
  text-align: right;
}

.timeline-item--right {
  left: 50%;
  text-align: left;
}

.timeline-badge {
  position: absolute;
  top: 26px;
  width: 14px;
  height: 14px;
  background: #fff;
  border: 3px solid var(--color-accent);
  border-radius: 50%;
  z-index: 10;
}

.timeline-item--left .timeline-badge {
  right: -10px;
}

.timeline-item--right .timeline-badge {
  left: -10px;
}

.timeline-year {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: 8px;
  display: block;
}

.timeline-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 8px;
}

.timeline-desc {
  font-size: 14px;
  color: var(--color-text-light);
  line-height: 1.6;
}

/* --- Responsive Adjustments for New Components --- */
@media (max-width: 1024px) {
  .roadmap-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
  .roadmap-grid::before {
    display: none;
  }
  
  .investor-workflow {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
  .investor-step-card::after {
    display: none;
  }
}

@media (max-width: 768px) {
  .personal-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .personal-column {
    padding: 36px 24px;
  }
  
  .roadmap-section {
    padding: 48px 16px;
  }
  
  .roadmap-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .fee-table th, 
  .fee-table td {
    padding: 12px 14px;
    font-size: 13px;
  }
  
  .investor-workflow {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .sim-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .sim-card {
    padding: 30px 24px;
  }
  
  .about-values-redesign {
    margin-top: 40px;
  }

  .value-card-new {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    padding: 36px 0;
  }

  .value-card-num-new {
    font-size: 64px;
    width: auto;
  }

  .value-card-content {
    grid-template-columns: 56px 1fr;
    column-gap: 24px;
    width: 100%;
  }

  .value-card-icon-wrap {
    width: 56px;
    height: 56px;
  }

  .value-card-title-new {
    font-size: 20px;
  }

  .value-card-desc-new {
    font-size: 14px;
    max-width: 100%;
  }
  
  .timeline-wrap::before {
    left: 20px;
  }
  
  .timeline-item {
    width: 100%;
    left: 0 !important;
    text-align: left !important;
    padding: 20px 0 20px 48px;
  }
  
  .timeline-badge {
    left: 10px !important;
  }
}

/* =========================================
   Single Post Detail
   ========================================= */
.single-detail-section {
  padding: 96px 0 160px;
  background: var(--color-surface);
}
@media (min-width: 768px) { .single-detail-section { padding: 128px 0 192px; } }

.single-detail-inner {
  max-width: 820px;
  margin: 0 auto;
}

.single-back-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.3em;
  color: rgba(100,100,100,0.5);
  margin-bottom: 48px;
  transition: color 0.3s ease;
}
.single-back-link:hover {
  color: var(--color-primary);
  opacity: 1;
}
.single-back-link:hover svg {
  transform: translateX(-4px);
}
.single-back-link svg {
  transition: transform 0.3s ease;
}

.single-card {
  background: #fff;
  border: 1px solid #f3f4f6;
  padding: 40px 32px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.02);
}
@media (min-width: 768px) { .single-card { padding: 64px; } }

.single-meta {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  padding-bottom: 24px;
  border-bottom: 1px solid #f3f4f6;
  margin-bottom: 32px;
}

.single-date {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.15em;
  color: rgba(100,100,100,0.5);
}
.single-date svg { color: var(--color-accent); }

.single-cat {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.15em;
  color: rgba(100,100,100,0.5);
}
.single-cat svg { color: var(--color-accent); }

.single-cat-badge {
  border: 1px solid #e5e7eb;
  color: rgba(100,100,100,0.6);
  padding: 4px 14px;
  font-size: 11px;
  letter-spacing: 0.15em;
}

.single-title {
  font-family: var(--font-sans);
  font-size: 24px;
  font-weight: 300;
  letter-spacing: -0.01em;
  line-height: 1.7;
  color: var(--color-primary);
  margin-bottom: 40px;
  border: none;
  padding: 0;
}
@media (min-width: 768px) { .single-title { font-size: 28px; margin-bottom: 48px; } }
.single-title::after { display: none; }

.single-featured-img {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--color-bg-gray);
  margin-bottom: 48px;
}
@media (min-width: 768px) { .single-featured-img { margin-bottom: 64px; } }
.single-featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.single-body {
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 2.2;
  color: rgba(75,85,99,0.9);
  font-weight: 300;
  letter-spacing: 0.02em;
}
.single-body p {
  margin-bottom: 2em;
}
.single-body h2 {
  font-size: 22px;
  font-weight: 600;
  color: var(--color-primary);
  margin-top: 3em;
  margin-bottom: 1em;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--color-border);
  position: relative;
}
.single-body h2::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 60px;
  height: 2px;
  background: var(--color-accent);
}
.single-body h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-primary);
  margin-top: 2.5em;
  margin-bottom: 0.8em;
  padding-left: 14px;
  border-left: 3px solid var(--color-accent);
}
.single-body ul,
.single-body ol {
  margin-bottom: 1.8em;
  padding-left: 24px;
}
.single-body li {
  margin-bottom: 0.5em;
  font-size: 15px;
}
.single-body img {
  border-radius: 4px;
  margin: 2em 0;
}
.single-body blockquote {
  border-left: 3px solid var(--color-accent);
  padding: 16px 24px;
  margin: 2em 0;
  background: var(--color-bg-gray);
  color: rgba(75,85,99,0.8);
  font-style: italic;
}

.single-share {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #f3f4f6;
  margin-top: 64px;
  padding-top: 24px;
}

.single-share-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(100,100,100,0.4);
}

.single-share-icons {
  display: flex;
  align-items: center;
  gap: 20px;
}
.single-share-icons a {
  color: rgba(100,100,100,0.4);
  transition: color 0.3s ease;
}
.single-share-icons a:hover {
  color: var(--color-accent);
  opacity: 1;
}

.single-post-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 64px;
}
@media (max-width: 640px) {
  .single-post-nav { grid-template-columns: 1fr; }
}

.single-post-nav-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 24px;
  background: #fff;
  border: 1px solid #f3f4f6;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.single-post-nav-item:hover {
  border-color: var(--color-accent);
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
  opacity: 1;
}

.single-post-nav-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.single-post-nav-next .single-post-nav-label {
  justify-content: flex-end;
}
.single-post-nav-next {
  text-align: right;
}

.single-post-nav-title {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 400;
  color: var(--color-primary);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ==========================================================================
   PERSONAL PAGE — ps-* namespace
   ========================================================================== */

/* Anchor navigation */
.ps-anchor-nav {
  position: sticky;
  top: 72px;
  z-index: 100;
  background: #fff;
  border-bottom: 2px solid var(--color-border);
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0;
}

.ps-anchor-link {
  display: inline-flex;
  align-items: center;
  padding: 22px 64px;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-text-light);
  text-decoration: none;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.ps-anchor-link:hover {
  color: var(--color-primary);
  background: var(--color-surface);
}

.ps-anchor-link.is-active {
  color: var(--color-primary);
  border-bottom-color: var(--color-accent);
  background: var(--color-surface);
}

/* Section base */
.ps-section {
  padding: 96px 0;
  background: var(--color-surface);
}

.ps-section--light {
  background: #fff;
}

.ps-section--dark {
  background: var(--color-primary);
  color: #fff;
}

/* Lead section */
.ps-lead {
  max-width: 860px;
  margin: 0 auto 80px;
  text-align: center;
}

.ps-lead-heading {
  font-family: var(--font-sans);
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 300;
  color: var(--color-primary);
  line-height: 1.6;
  margin-bottom: 28px;
  letter-spacing: 0.02em;
}

.ps-lead-text {
  font-size: 15px;
  line-height: 2.2;
  color: var(--color-text-light);
  font-weight: 300;
}

/* Rent section */
.ps-rent-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-bottom: 80px;
}

.ps-rent-content {}

.ps-rent-label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-accent);
  display: block;
  margin-bottom: 24px;
}

.ps-rent-heading {
  font-family: var(--font-sans);
  font-size: clamp(30px, 3.5vw, 48px);
  font-weight: 300;
  color: var(--color-primary);
  line-height: 1.3;
  margin-bottom: 28px;
  letter-spacing: 0.01em;
}

.ps-rent-body {
  font-size: 15px;
  line-height: 2.2;
  color: var(--color-text-light);
  font-weight: 300;
  margin-bottom: 40px;
}

.ps-rent-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ps-rent-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--color-primary);
  font-weight: 500;
}

.ps-rent-feature::before {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--color-accent);
  flex-shrink: 0;
}

/* Metrics panel (rent side) */
.ps-metrics-panel {
  background: var(--color-primary);
  padding: 56px 48px;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.ps-metric-item {
  border-bottom: 1px solid rgba(255,255,255,0.12);
  padding-bottom: 40px;
}

.ps-metric-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.ps-metric-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-accent);
  display: block;
  margin-bottom: 12px;
}

.ps-metric-number {
  font-family: var(--font-sans);
  font-size: clamp(52px, 5.5vw, 80px);
  font-weight: 200;
  font-style: normal;
  color: #fff;
  line-height: 1;
  display: block;
  letter-spacing: -0.02em;
}

.ps-metric-unit {
  font-family: var(--font-sans);
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  margin-top: 10px;
  display: block;
  font-weight: 300;
  line-height: 1.7;
}

/* Buy section (dark) */
.ps-buy-inner {
  max-width: 860px;
  margin: 0 auto;
}

.ps-buy-label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-accent);
  display: block;
  margin-bottom: 24px;
}

.ps-buy-heading {
  font-family: var(--font-sans);
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 300;
  color: #fff;
  line-height: 1.5;
  margin-bottom: 28px;
  letter-spacing: 0.02em;
}

.ps-buy-body {
  font-size: 15px;
  line-height: 2.2;
  color: rgba(255,255,255,0.65);
  font-weight: 300;
  margin-bottom: 64px;
  max-width: 680px;
}

.ps-buy-pillars {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.ps-buy-pillar {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  align-items: start;
  padding: 40px 0;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.ps-buy-pillar:last-child {
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.ps-buy-num {
  font-family: var(--font-serif);
  font-size: 48px;
  font-weight: 400;
  font-style: italic;
  color: rgba(200,169,110,0.35);
  line-height: 1;
  padding-top: 6px;
}

.ps-buy-pillar-title {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
  letter-spacing: 0.01em;
}

.ps-buy-pillar-desc {
  font-size: 14px;
  line-height: 2;
  color: rgba(255,255,255,0.6);
  font-weight: 300;
}

/* Fee table (redesigned) */
.ps-fee-section {
  padding: 96px 0;
  background: #fff;
}

.ps-fee-heading {
  text-align: center;
  margin-bottom: 56px;
}

.ps-fee-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-accent);
  display: block;
  margin-bottom: 16px;
}

.ps-fee-title {
  font-family: var(--font-sans);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 300;
  color: var(--color-primary);
  margin-bottom: 20px;
  letter-spacing: 0.02em;
  line-height: 1.5;
}

.ps-fee-subtitle {
  font-size: 14px;
  color: var(--color-text-light);
  line-height: 1.8;
  max-width: 640px;
  margin: 0 auto;
}

.ps-fee-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 4px;
  border: 1px solid var(--color-border);
}

@media (max-width: 767px) {
  .ps-fee-table {
    min-width: 700px;
    table-layout: auto;
  }
}

.ps-fee-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.ps-fee-table thead tr,
.ps-fee-table thead th {
  background: var(--color-primary) !important;
  background-color: var(--color-primary) !important;
}

.ps-fee-table th {
  padding: 22px 28px;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.95) !important;
  text-align: center;
  width: auto !important;
  min-width: 0 !important;
}

.ps-fee-table th.ps-fee-th--accent {
  color: var(--color-accent) !important;
  border-left: 2px solid rgba(200,169,110,0.5);
}

.ps-fee-table td {
  padding: 22px 28px;
  font-size: 14px;
  color: var(--color-text-light);
  border-bottom: 1px solid var(--color-border);
  vertical-align: middle;
  line-height: 1.7;
  text-align: center;
}

.ps-fee-table tr:last-child td {
  border-bottom: none;
}

.ps-fee-table td:first-child {
  font-weight: 600;
  color: var(--color-primary);
}

.ps-fee-table td.ps-fee-td--accent {
  background: #fdfaf2;
  border-left: 2px solid var(--color-accent);
  color: var(--color-primary);
  font-weight: 500;
}

.ps-fee-highlight {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 500;
  font-style: normal;
  color: #c0392b;
}

.ps-fee-highlight--manda {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 600;
  font-style: normal;
  color: var(--color-primary);
}

.ps-fee-highlight--manda .sp-note { display: inline; }

@media (max-width: 767px) {
  .ps-fee-highlight--manda .sp-note {
    display: block;
    font-size: 13px;
    font-weight: 400;
    margin-top: 4px;
  }
}

.ps-fee-note {
  margin-top: 16px;
  font-size: 12px;
  color: var(--color-text-light);
  text-align: center;
}

/* Roadmap (LINE steps) */
.ps-roadmap-section {
  padding: 96px 0;
  background: var(--color-surface);
}

.ps-roadmap-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
  gap: 0;
  margin-top: 64px;
}

.ps-roadmap-grid::before {
  content: '';
  position: absolute;
  top: 32px;
  left: calc(12.5% + 16px);
  right: calc(12.5% + 16px);
  height: 1px;
  background: var(--color-accent);
  opacity: 0.4;
}

.ps-roadmap-step {
  padding: 0 24px;
  text-align: center;
}

.ps-roadmap-num {
  display: inline-flex;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 1px solid var(--color-accent);
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--color-accent);
  background: #fff;
  position: relative;
  z-index: 1;
  margin-bottom: 28px;
}

.ps-roadmap-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 12px;
  line-height: 1.5;
}

.ps-roadmap-desc {
  font-size: 13px;
  color: var(--color-text-light);
  line-height: 1.9;
  font-weight: 300;
}

/* Section heading shared */
.ps-section-heading {
  text-align: center;
  margin-bottom: 64px;
}

.ps-section-en {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-accent);
  display: block;
  margin-bottom: 16px;
}

.ps-section-jp {
  font-family: var(--font-sans);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 300;
  color: var(--color-primary);
  line-height: 1.6;
  letter-spacing: 0.02em;
}

.ps-section--dark .ps-section-jp {
  color: #fff;
}

/* BUY flow steps */
.ps-buy-flow {
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.ps-buy-flow-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-accent);
  display: block;
  margin-bottom: 32px;
}

.ps-buy-flow-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
}

.ps-buy-flow-steps::before {
  content: '';
  position: absolute;
  top: 20px;
  left: calc(10% + 8px);
  right: calc(10% + 8px);
  height: 1px;
  background: rgba(200,169,110,0.3);
}

.ps-buy-flow-step {
  text-align: center;
  padding: 0 8px;
}

.ps-buy-flow-dot {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(200,169,110,0.5);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--color-accent);
  background: var(--color-primary);
  position: relative;
  z-index: 1;
  margin-bottom: 16px;
}

.ps-buy-flow-title {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
  margin-bottom: 8px;
}

.ps-buy-flow-desc {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  line-height: 1.7;
}

/* BUY key points grid */
.ps-buy-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
}

.ps-buy-point {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  padding: 24px 28px;
}

.ps-buy-point-num {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--color-accent);
  display: block;
  margin-bottom: 10px;
}

.ps-buy-point-title {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.5;
}

.ps-buy-point-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
  font-weight: 300;
}

/* Responsive — personal */
@media (max-width: 767px) {
  .ps-anchor-link {
    padding: 14px 20px;
    font-size: 10px;
    letter-spacing: 0.15em;
  }
  .ps-rent-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .ps-metrics-panel {
    padding: 40px 28px;
  }
  .ps-buy-pillar {
    grid-template-columns: 56px 1fr;
    gap: 20px;
  }
  .ps-buy-num {
    font-size: 36px;
  }
  .ps-roadmap-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .ps-roadmap-grid::before {
    display: none;
  }
  .ps-buy-flow-steps {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .ps-buy-flow-steps::before {
    display: none;
  }
  .ps-buy-points {
    grid-template-columns: 1fr;
  }
  .ps-anchor-link {
    padding: 18px 28px;
    font-size: 12px;
  }
}

/* ==========================================================================
   INVESTOR PAGE — iv-* namespace
   ========================================================================== */

/* Lead */
.iv-lead {
  max-width: 860px;
  margin: 0 auto 0;
  padding: 96px 0 80px;
}

.iv-lead-heading {
  font-family: var(--font-sans);
  font-size: clamp(22px, 2.6vw, 32px);
  font-weight: 500;
  color: var(--color-primary);
  line-height: 1.7;
  margin-bottom: 16px;
  letter-spacing: 0.04em;
}

.iv-lead-sub {
  font-family: var(--font-sans);
  font-size: clamp(16px, 1.8vw, 20px);
  font-weight: 400;
  color: var(--color-text);
  line-height: 1.6;
  margin-bottom: 32px;
  letter-spacing: 0.02em;
}

.iv-lead-text {
  font-size: 15px;
  line-height: 2.2;
  color: var(--color-text);
  font-weight: 400;
}

/* Timeline (dark section) */
.iv-timeline-section {
  background: var(--color-primary);
  padding: 96px 0;
}

.iv-timeline-section .ps-section-en {
  color: rgba(200,169,110,0.8);
}

.iv-timeline-section .ps-section-jp,
.iv-kpi-section .ps-section-jp,
.iv-cases-section .ps-section-jp,
.rent-adv-section .ps-section-jp,
.buy-features-section .ps-section-jp {
  color: #fff;
}

.iv-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
  margin-top: 64px;
}

.iv-timeline::before {
  display: none;
}

.iv-timeline-step {
  padding: 0 28px;
  text-align: center;
}

.iv-step-num {
  display: inline-flex;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 1px solid rgba(200,169,110,0.5);
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--color-accent);
  background: var(--color-primary);
  position: relative;
  z-index: 1;
  margin-bottom: 32px;
  transition: background 0.25s, border-color 0.25s;
}

.iv-timeline-step:hover .iv-step-num {
  background: rgba(200,169,110,0.12);
  border-color: var(--color-accent);
}

.iv-step-title {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.5;
}

.iv-step-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.9;
  font-weight: 300;
}

/* KPI metrics */
.iv-kpi-section {
  padding: 96px 0;
  background: #fff;
}

.iv-kpi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  overflow: hidden;
  margin-top: 64px;
}

.iv-kpi-item {
  padding: 56px 48px;
  border-right: 1px solid var(--color-border);
  text-align: center;
}

.iv-kpi-item:last-child {
  border-right: none;
}

.iv-kpi-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-accent);
  display: block;
  margin-bottom: 20px;
}

.iv-kpi-number {
  font-family: var(--font-sans);
  font-size: clamp(52px, 6vw, 80px);
  font-weight: 200;
  font-style: normal;
  color: var(--color-primary);
  line-height: 1;
  display: block;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.iv-kpi-desc {
  font-size: 13px;
  color: var(--color-text-light);
  line-height: 1.8;
  font-weight: 300;
}

/* Case studies */
.iv-cases-section {
  padding: 96px 0;
  background: var(--color-surface);
}

.iv-cases-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 64px;
}

.iv-case-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  overflow: hidden;
}

.iv-case-header {
  padding: 36px 40px 28px;
  border-bottom: 1px solid var(--color-border);
}

.iv-case-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-accent);
  display: block;
  margin-bottom: 12px;
}

.iv-case-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.4;
  margin-bottom: 12px;
}

.iv-case-desc {
  font-size: 13px;
  color: var(--color-text-light);
  line-height: 1.8;
  font-weight: 300;
}

.iv-case-body {
  padding: 36px 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.iv-case-metric {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
}

.iv-case-metric-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-text-light);
  display: block;
  margin-bottom: 8px;
}

.iv-case-before {
  text-align: right;
}

.iv-case-after {
  text-align: left;
}

.iv-case-val {
  font-family: var(--font-sans);
  font-size: 28px;
  font-weight: 300;
  font-style: normal;
  color: var(--color-text-light);
  line-height: 1.2;
}

.iv-case-val--after {
  color: var(--color-primary);
  font-size: 32px;
  font-weight: 400;
}

.iv-case-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  font-size: 18px;
  flex-shrink: 0;
}

.iv-case-metric-divider {
  height: 1px;
  background: var(--color-border);
}

/* ==========================================================================
   INVESTOR WORKFLOW — vertical process list
   ========================================================================== */

.iv-workflow-list {
  margin-top: 64px;
  position: relative;
  display: flex;
  flex-direction: column;
}

.iv-workflow-list::before {
  display: none;
}

.iv-workflow-item {
  display: grid;
  grid-template-columns: 104px 1fr;
  gap: 48px;
  padding: 48px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  align-items: start;
}

.iv-workflow-item:first-child { padding-top: 0; }
.iv-workflow-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.iv-workflow-num {
  font-family: var(--font-sans);
  font-size: 56px;
  font-weight: 200;
  color: rgba(200,169,110,0.5);
  line-height: 1;
  text-align: center;
  position: relative;
  z-index: 1;
  padding-top: 4px;
  letter-spacing: -0.02em;
}

.iv-workflow-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-accent);
  display: block;
  margin-bottom: 10px;
}

.iv-workflow-title {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
  line-height: 1.4;
  letter-spacing: 0.01em;
}

.iv-workflow-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 2;
  font-weight: 300;
  max-width: 700px;
}

.iv-workflow-keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.iv-workflow-keyword {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(200,169,110,0.7);
  border: 1px solid rgba(200,169,110,0.25);
  border-radius: 2px;
  padding: 4px 10px;
}

/* Responsive — investor */
@media (max-width: 767px) {
  .iv-kpi-grid {
    grid-template-columns: 1fr;
  }
  .iv-kpi-item {
    border-right: none;
    border-bottom: 1px solid var(--color-border);
  }
  .iv-kpi-item:last-child {
    border-bottom: none;
  }
  .iv-cases-grid {
    grid-template-columns: 1fr;
  }
  .iv-case-metric {
    gap: 8px;
  }
  .iv-workflow-list::before {
    display: none;
  }
  .iv-workflow-item {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 36px 0;
  }
  .iv-workflow-num {
    font-size: 40px;
    text-align: left;
  }
}

/* ==========================================================================
   リニューアル ＆ 新規開発追加スタイル (Services & System Development)
   ========================================================================== */

/* アンカーリンクのスクロール位置調整 (ヘッダー被り防止) */
#rent, #buy, #primary main section[id] {
  scroll-margin-top: 120px;
}

/* 事業紹介（Services）インタラクティブ・ホバーカード強化 */
.services-item {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--color-border);
  background: #ffffff;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.services-item:hover {
  transform: translateY(-8px);
  border-color: var(--color-accent);
  box-shadow: 0 20px 40px rgba(26, 46, 74, 0.08);
}

.services-img-wrap {
  position: relative;
  overflow: hidden;
  margin-bottom: 0 !important;
  aspect-ratio: 16/10;
}

.services-img {
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.services-item:hover .services-img {
  transform: scale(1.06);
}

/* カード内部コンテンツの余白調整 */
.services-item-body {
  padding: 40px 32px 32px 32px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.services-item-desc {
  margin-bottom: 24px;
  flex-grow: 1;
}

/* ゴールドアクセントラインのホバー伸長 */
.services-item .accent-line {
  position: relative;
  width: 32px;
  height: 2px;
  background: var(--color-accent);
  display: inline-block;
  transition: width 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.services-item:hover .accent-line {
  width: 64px;
}

/* サービス矢印リンクのホバー演出 */
.service-case-link {
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-accent);
  margin-top: auto;
  transition: all 0.3s ease;
  gap: 4px;
}

.services-item:hover .service-case-link {
  color: var(--color-primary);
}

.service-case-link svg {
  transition: transform 0.3s ease;
}

.services-item:hover .service-case-link svg {
  transform: translateX(4px);
}

/* 収益不動産（Investor）KPI の強化 */
.iv-kpi-number {
  background: linear-gradient(135deg, var(--color-accent) 0%, #edd39a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
  font-size: clamp(36px, 6vw, 64px);
  letter-spacing: -0.02em;
}

.iv-case-card {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.iv-case-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(26, 46, 74, 0.06);
  border-color: var(--color-accent);
}

/* =========================================
   System Development Page Styles
   ========================================= */
.sys-lead {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.sys-lead-heading {
  font-size: clamp(28px, 4.5vw, 42px);
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.4;
  margin-bottom: 32px;
}

.sys-lead-text {
  font-size: 17px;
  color: var(--color-text-light);
  line-height: 2.0;
}

/* Metrics */
.sys-metrics-section {
  padding: 80px 0;
  background-color: var(--color-bg-gray);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.sys-metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 48px;
}

.sys-metric-item {
  text-align: center;
  padding: 24px;
}

.sys-metric-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent);
  display: block;
  margin-bottom: 12px;
}

.sys-metric-number {
  font-family: var(--font-sans);
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--color-primary);
  display: block;
  margin-bottom: 12px;
}

.sys-metric-unit {
  font-size: 13px;
  color: var(--color-text-light);
  display: block;
  font-weight: 300;
}

/* Solutions */
.sys-solutions-section {
  padding: 100px 0;
  background-color: var(--color-secondary);
  color: #ffffff;
}

.sys-solutions-section h3,
.sys-solutions-section h4 {
  color: #ffffff;
}

.sys-solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 64px;
}

.sys-solution-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 48px 40px;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.sys-solution-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--color-accent);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.sys-sol-num {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 300;
  color: var(--color-accent);
  margin-bottom: 24px;
}

.sys-sol-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 20px;
}

.sys-sol-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin-bottom: 32px;
  font-weight: 300;
}

.sys-sol-features {
  margin-top: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.sys-sol-tag {
  font-size: 11px;
  padding: 4px 10px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 2px;
  color: var(--color-accent);
  font-weight: 500;
}

/* Process Timeline */
.sys-process-section {
  padding: 100px 0;
  background-color: #ffffff;
}

.sys-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 64px;
  position: relative;
}

.sys-timeline-step {
  position: relative;
  background: var(--color-bg-gray);
  padding: 32px 24px;
  border-radius: 4px;
  border: 1px solid var(--color-border);
}

.sys-step-header {
  margin-bottom: 16px;
}

.sys-step-no {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--color-accent);
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
}

.sys-step-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.4;
}

.sys-step-desc {
  font-size: 13px;
  color: var(--color-text-light);
  line-height: 1.7;
  font-weight: 300;
}

/* Callout Box */
.sys-cases-callout {
  margin-top: 80px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  color: #ffffff;
  padding: 60px 40px;
  border-radius: 4px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(26, 46, 74, 0.15);
}

.sys-callout-title {
  color: #ffffff;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
}

.sys-callout-desc {
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  max-width: 600px;
  margin: 0 auto 32px;
  font-weight: 300;
  line-height: 1.8;
}

.sys-callout-btn {
  display: inline-flex;
  align-items: center;
  background: var(--color-accent);
  color: var(--color-primary);
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 4px;
  transition: all 0.3s ease;
  font-size: 14px;
}

.sys-callout-btn:hover {
  background: #ecd7a5;
  color: var(--color-secondary);
  box-shadow: 0 8px 20px rgba(200, 169, 110, 0.4);
}

/* Responsive — system development */
@media (max-width: 1024px) {
  .sys-solutions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .sys-timeline {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}

@media (max-width: 767px) {
  .sys-metrics-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .sys-solutions-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .sys-timeline {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .sys-cases-callout {
    padding: 40px 24px;
  }
  .sys-callout-title {
    font-size: 20px;
  }
}

/* ページヘッダーの横線をゴールドにして視認性と高級感を劇的に向上 */
.page-hero-eyebrow .accent-line {
  background-color: var(--color-accent) !important;
  height: 2px;
}

/* 会社紹介（About）スタッフカードのイコールハイト化 ＆ プレミアム余白調整 */
.staff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.staff-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.staff-photo-wrapper {
  margin-bottom: 0 !important;
}

.staff-info {
  padding: 36px 28px 32px 28px !important;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.staff-name {
  font-weight: 700 !important;
}

.staff-bio {
  font-size: 14px !important;
  line-height: 1.85 !important;
  color: var(--color-text-light) !important;
  font-weight: 400 !important;
  flex-grow: 1;
}

/* 会社紹介（About）会社概要テーブルの可読性調整 */
.profile-table th {
  font-weight: 700 !important;
  color: var(--color-primary) !important;
  font-size: 16px !important;
}

.profile-table td {
  line-height: 2.0 !important;
  font-weight: 500 !important;
  color: var(--color-primary) !important;
  font-size: 16px !important;
}

/* ==========================================================================
   新設 ＆ リニューアルサービスページスタイル (Rent, Buy, Investor CVs)
   ========================================================================== */

/* --- スマート賃貸 (Rent Page) 用スタイル --- */
.rent-adv-section {
  padding: 100px 0;
  background-color: var(--color-surface);
}

.rent-adv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 64px;
}

.rent-adv-card {
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 48px 36px;
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.rent-adv-card:hover {
  transform: translateY(-8px);
  border-color: var(--color-accent);
  box-shadow: 0 16px 32px rgba(26, 46, 74, 0.06);
}

.rent-adv-icon-wrap {
  width: 64px;
  height: 64px;
  background: var(--color-bg-gray);
  color: var(--color-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  transition: all 0.3s ease;
}

.rent-adv-card:hover .rent-adv-icon-wrap {
  background: var(--color-accent);
  color: #ffffff;
}

.rent-adv-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 16px;
}

.rent-adv-desc {
  font-size: 14px;
  line-height: 1.85;
  color: var(--color-text-light);
  font-weight: 400;
}

/* LINE登録用の超強力なCVエリア */
.rent-cv-section {
  padding: 120px 0;
  background: linear-gradient(135deg, #0A192F 0%, #1a2e4a 100%);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.rent-cv-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(6, 199, 85, 0.1) 0%, rgba(0,0,0,0) 70%);
  z-index: 1;
  pointer-events: none;
}

.rent-cv-inner {
  position: relative;
  z-index: 10;
  max-width: 900px;
  margin: 0 auto;
}

.rent-cv-content {
  text-align: center;
}

.rent-cv-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: #06C755;
  background: rgba(6, 199, 85, 0.08);
  padding: 6px 16px;
  border-radius: 50px;
  display: inline-block;
  margin-bottom: 24px;
}

.rent-cv-title {
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 700;
  line-height: 1.4;
  color: #ffffff;
  margin-bottom: 20px;
}

.rent-cv-desc {
  font-size: 15px;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.8);
  max-width: 720px;
  margin: 0 auto 48px;
  font-weight: 300;
}

.rent-cv-action-area {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 48px;
}

.rent-line-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #06C755;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  padding: 18px 36px;
  border-radius: 50px;
  box-shadow: 0 8px 25px rgba(6, 199, 85, 0.35);
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  gap: 12px;
}

.rent-line-btn:hover {
  background: #05b04b;
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(6, 199, 85, 0.45);
  color: #ffffff;
  opacity: 1;
}

.rent-line-icon {
  flex-shrink: 0;
}

.rent-qr-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.rent-qr-img {
  width: 100px;
  height: 100px;
  border: 4px solid #ffffff;
  border-radius: 4px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  object-fit: contain;
}

.rent-qr-label {
  font-size: 11px;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 400;
}

/* --- スマート売買 (Buy Page) 用スタイル --- */
.buy-features-section {
  padding: 100px 0;
  background-color: var(--color-secondary);
  color: #ffffff;
}

.buy-features-section h3,
.buy-features-section h4 {
  color: #ffffff;
}

.buy-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 64px;
}

.buy-feature-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  padding: 48px 40px;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.buy-feature-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--color-accent);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.buy-feat-no {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--color-accent);
  letter-spacing: 0.15em;
  display: block;
  margin-bottom: 20px;
  font-weight: 600;
}

.buy-feat-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 16px;
}

.buy-feat-desc {
  font-size: 14px;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 300;
}

/* 購入フロー */
.buy-flow-section {
  padding: 100px 0;
  background-color: #ffffff;
}

.buy-flow-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 64px;
}

.buy-flow-card {
  background: var(--color-bg-gray);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  padding: 32px 20px;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

.buy-flow-card:hover {
  border-color: var(--color-accent);
  background: #ffffff;
  box-shadow: 0 10px 25px rgba(26, 46, 74, 0.04);
}

.buy-flow-step-num {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 300;
  color: var(--color-accent);
  margin-bottom: 16px;
  line-height: 1;
}

.buy-flow-step-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.4;
  margin-bottom: 12px;
}

.buy-flow-step-desc {
  font-size: 12.5px;
  line-height: 1.7;
  color: var(--color-text-light);
  font-weight: 400;
}

/* 売買用のお問合せCV */
.buy-cv-section {
  padding: 120px 0;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  color: #ffffff;
  text-align: center;
}

.buy-cv-inner {
  max-width: 900px;
  margin: 0 auto;
}

.buy-cv-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--color-accent);
  background: rgba(200, 169, 110, 0.08);
  padding: 6px 16px;
  border-radius: 50px;
  display: inline-block;
  margin-bottom: 24px;
}

.buy-cv-title {
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 700;
  line-height: 1.4;
  color: #ffffff;
  margin-bottom: 20px;
}

.buy-cv-desc {
  font-size: 15px;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.8);
  max-width: 720px;
  margin: 0 auto 48px;
  font-weight: 300;
}

.buy-consult-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-accent);
  color: var(--color-primary);
  font-size: 16px;
  font-weight: 700;
  padding: 18px 40px;
  border-radius: 4px;
  box-shadow: 0 8px 25px rgba(200, 169, 110, 0.25);
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.buy-consult-btn:hover {
  background: #ecd7a5;
  color: var(--color-secondary);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(200, 169, 110, 0.35);
  opacity: 1;
}

.buy-consult-btn-note {
  display: none;
}

@media (max-width: 767px) {
  .buy-consult-btn {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0;
    font-size: 14px;
    padding: 16px 24px;
    text-align: center;
  }
  .buy-consult-btn-note {
    display: block;
    width: 100%;
    order: 10;
    font-size: 11px;
    font-weight: 400;
    opacity: 0.7;
    letter-spacing: 0.03em;
    margin-top: 4px;
  }
}

/* --- 収益不動産コンサル (Investor Page) 専用CV --- */
.investor-cv-section {
  padding: 120px 0;
  background: linear-gradient(135deg, #0A192F 0%, var(--color-primary) 100%);
  color: #ffffff;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.investor-cv-inner {
  max-width: 900px;
  margin: 0 auto;
}

.investor-cv-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--color-accent);
  background: rgba(200, 169, 110, 0.08);
  padding: 6px 16px;
  border-radius: 50px;
  display: inline-block;
  margin-bottom: 24px;
}

.investor-cv-title {
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 700;
  line-height: 1.4;
  color: #ffffff;
  margin-bottom: 20px;
}

.investor-cv-desc {
  font-size: 15px;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.8);
  max-width: 720px;
  margin: 0 auto 48px;
  font-weight: 300;
}

.investor-consult-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-accent);
  color: var(--color-primary);
  font-size: 16px;
  font-weight: 700;
  padding: 18px 40px;
  border-radius: 4px;
  box-shadow: 0 8px 25px rgba(200, 169, 110, 0.25);
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.investor-consult-btn:hover {
  background: #ecd7a5;
  color: var(--color-secondary);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(200, 169, 110, 0.35);
  opacity: 1;
}

/* Responsive (Media Queries) for new styles */
@media (max-width: 1024px) {
  .rent-adv-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .buy-flow-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
}

@media (max-width: 768px) {
  .rent-adv-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .buy-features-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .buy-flow-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .rent-cv-action-area {
    flex-direction: column;
    gap: 32px;
  }
}


/* =============================================
   IMMERSIVE EXPERIENCE — Ken Burns Hero
   ============================================= */
@keyframes kenBurns {
  0%   { transform: scale(1)   translate(0, 0); }
  50%  { transform: scale(1.08) translate(-1%, -0.5%); }
  100% { transform: scale(1.03) translate(0.5%, 0.3%); }
}

.hero-bg-img {
  animation: kenBurns 25s ease-in-out infinite alternate;
  will-change: transform;
}

/* =============================================
   IMMERSIVE — Scroll Cue (Hero bottom)
   ============================================= */
.hero-scroll-cue {
  position: absolute;
  bottom: 48px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 20;
}

.hero-scroll-cue-text {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

.hero-scroll-cue-line {
  display: block;
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
  animation: scrollCuePulse 2s ease-in-out infinite;
}

@keyframes scrollCuePulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50%      { opacity: 1;   transform: scaleY(1.3); }
}

@media (max-width: 767px) {
  .hero-scroll-cue {
    bottom: 32px;
  }
  .hero-scroll-cue-line {
    height: 36px;
  }
}


/* =============================================
   IMMERSIVE — Scroll Progress Bar
   ============================================= */
.scroll-progress {
  position: fixed;
  top: 0;
  right: 0;
  width: 3px;
  height: 100vh;
  z-index: 9999;
  pointer-events: none;
  background: rgba(255,255,255,0.05);
}

.scroll-progress-bar {
  width: 100%;
  height: 0%;
  background: linear-gradient(to bottom, var(--color-accent), #ecd7a5);
  border-radius: 0 0 2px 2px;
  transition: height 0.1s linear;
  will-change: height;
}

/* CSS Scroll-Driven Animation version of progress bar */
@supports ((animation-timeline: scroll()) and (animation-range: 0% 100%)) {
  @keyframes scrollProgressFill {
    from { height: 0%; }
    to   { height: 100%; }
  }
  .scroll-progress-bar {
    animation: scrollProgressFill linear both;
    animation-timeline: scroll(root);
    transition: none;
  }
}


/* =============================================
   IMMERSIVE — Hero Parallax Fade on Scroll
   ============================================= */
@supports ((animation-timeline: scroll()) and (animation-range: 0% 100%)) {
  @keyframes heroParallaxFade {
    from { opacity: 1;   transform: translateY(0); }
    to   { opacity: 0;   transform: translateY(-80px); }
  }

  .hero-content {
    animation: heroParallaxFade linear both;
    animation-timeline: scroll(root);
    animation-range: 0vh 60vh;
  }

  .hero-scroll-cue {
    animation: heroParallaxFade linear both;
    animation-timeline: scroll(root);
    animation-range: 0vh 30vh;
  }

  @keyframes heroBgZoom {
    from { transform: scale(1); filter: brightness(1); }
    to   { transform: scale(1.15); filter: brightness(0.4); }
  }

  .hero-bg {
    animation: heroBgZoom linear both;
    animation-timeline: scroll(root);
    animation-range: 0vh 100vh;
  }

  /* Disable Ken Burns when scroll-driven is active — prevents conflict */
  .hero-bg-img {
    animation: kenBurns 25s ease-in-out infinite alternate;
  }
}


/* Removed Section Overlap Transitions due to visual bug */


/* =============================================
   IMMERSIVE — Rich Scroll Reveal (enhanced js-reveal)
   ============================================= */

/* Scroll-driven entry animations for supported browsers */
@supports ((animation-timeline: view()) and (animation-range: entry)) {
  @keyframes revealSlideUp {
    from { opacity: 0; transform: translateY(60px) scale(0.96); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
  }

  /* Feature cards — staggered slide-up */
  .feature-card {
    animation: revealSlideUp auto linear backwards;
    animation-timeline: view();
    animation-range: entry 0% entry 100%;
  }

  /* Business cards — slide up with slight horizontal offset */
  @keyframes revealSlideLeft {
    from { opacity: 0; transform: translateX(-40px) translateY(30px); }
    to   { opacity: 1; transform: translateX(0) translateY(0); }
  }
  @keyframes revealSlideRight {
    from { opacity: 0; transform: translateX(40px) translateY(30px); }
    to   { opacity: 1; transform: translateX(0) translateY(0); }
  }

  .business-card:nth-child(odd) {
    animation: revealSlideLeft auto linear backwards;
    animation-timeline: view();
    animation-range: entry 0% entry 100%;
  }
  .business-card:nth-child(even) {
    animation: revealSlideRight auto linear backwards;
    animation-timeline: view();
    animation-range: entry 0% entry 100%;
  }

  /* Stat items — scale up reveal */
  @keyframes revealScaleUp {
    from { opacity: 0; transform: scale(0.8); }
    to   { opacity: 1; transform: scale(1); }
  }

  .stat-item {
    animation: revealScaleUp auto linear backwards;
    animation-timeline: view();
    animation-range: entry 0% entry 100%;
  }

  /* News items — slide from left */
  .news-home-item {
    animation: revealSlideLeft auto linear backwards;
    animation-timeline: view();
    animation-range: entry 0% entry 80%;
  }

  /* Contact CTA cards — scale and fade */
  .contact-cta-card {
    animation: revealScaleUp auto linear backwards;
    animation-timeline: view();
    animation-range: entry 0% entry 100%;
  }

  /* Override the existing js-reveal for these elements in supported browsers */
  .feature-card.js-reveal,
  .business-card.js-reveal,
  .stat-item.js-reveal,
  .news-home-item.js-reveal,
  .contact-cta-card.js-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}


/* =============================================
   IMMERSIVE — Micro-interactions
   ============================================= */

/* Button shine sweep on hover */
.btn-primary,
.header-cta,
.mega-card-cv-btn,
.btn-mobile-cta,
.mobile-quick-cv,
.btn-outline,
.contact-cta-card-link {
  position: relative;
  overflow: hidden;
}

.btn-primary::after,
.header-cta::after,
.mega-card-cv-btn::after,
.btn-mobile-cta::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255,255,255,0.15) 50%,
    transparent 100%
  );
  transition: none;
  pointer-events: none;
}

.btn-primary:hover::after,
.header-cta:hover::after,
.mega-card-cv-btn:hover::after,
.btn-mobile-cta:hover::after {
  animation: shineSweep 0.6s ease-out forwards;
}

@keyframes shineSweep {
  from { left: -100%; }
  to   { left: 200%; }
}

/* Feature card hover — subtle background glow */
.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at center bottom, rgba(200,169,110,0.06) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.7s ease;
  pointer-events: none;
}

.feature-card:hover::before {
  opacity: 1;
}

/* Business card image — enhanced parallax on hover */
.business-img-wrap {
  transform: translateZ(0);
}

.business-card:hover .business-img {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.08);
}


/* =============================================
   IMMERSIVE — Stats counter animation enhancement
   ============================================= */
.stat-value[data-count-to] {
  font-variant-numeric: tabular-nums;
}


/* =============================================
   IMMERSIVE — Accessibility: prefers-reduced-motion
   ============================================= */
@media (prefers-reduced-motion: reduce) {
  /* Disable Ken Burns */
  .hero-bg-img {
    animation: none !important;
  }

  /* Disable scroll cue pulse */
  .hero-scroll-cue-line {
    animation: none !important;
    opacity: 0.5;
  }

  /* Disable scroll-driven animations (the @supports block won't match anyway for non-SDA browsers,
     but for browsers that support SDA AND the user prefers reduced motion) */
  .hero-content,
  .hero-scroll-cue,
  .hero-bg,
  .feature-card,
  .business-card,
  .stat-item,
  .news-home-item,
  .contact-cta-card {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  /* Disable shine sweep */
  .btn-primary:hover::after,
  .header-cta:hover::after,
  .mega-card-cv-btn:hover::after,
  .btn-mobile-cta:hover::after {
    animation: none !important;
  }

  /* Disable feature card glow */
  .feature-card::before {
    display: none !important;
  }

  /* Keep js-reveal visible */
  .js-reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* =============================================
   EXTREME IMMERSIVE — Custom Spotlight Cursor
   ============================================= */
.cursor-spotlight {
  position: fixed;
  top: 0;
  left: 0;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 169, 110, 0.08) 0%, rgba(200, 169, 110, 0.02) 40%, transparent 70%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 1; /* Below text, above bg */
  mix-blend-mode: screen;
  transition: opacity 0.5s ease;
  opacity: 0;
  will-change: transform, opacity;
}

body.has-spotlight .cursor-spotlight {
  opacity: 1;
}

@media (pointer: coarse) {
  .cursor-spotlight { display: none !important; }
}

/* =============================================
   EXTREME IMMERSIVE — Mesh Glow Dynamic Background
   ============================================= */
.mesh-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
  opacity: 1;
}

.mesh-glow::before,
.mesh-glow::after {
  content: '';
  position: absolute;
  width: 80vw;
  height: 80vw;
  max-width: 800px;
  max-height: 800px;
  border-radius: 50%;
  filter: blur(80px);
  animation: meshFloat 25s infinite alternate ease-in-out;
  will-change: transform;
}

.mesh-glow::before {
  top: -20%;
  left: -10%;
  background: radial-gradient(circle, rgba(200, 169, 110, 0.06) 0%, transparent 60%);
}

.mesh-glow::after {
  bottom: -20%;
  right: -10%;
  background: radial-gradient(circle, rgba(130, 170, 255, 0.04) 0%, transparent 60%);
  animation-delay: -12s;
}

@keyframes meshFloat {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(5%, 10%) scale(1.1); }
  100% { transform: translate(-5%, 5%) scale(0.9); }
}

@media (prefers-reduced-motion: reduce) {
  .mesh-glow::before,
  .mesh-glow::after { animation: none !important; }
}

@media (max-width: 767px) {
  .mesh-glow { display: none; }
}

/* Ensure content is above mesh and spotlight */
.features-header,
.features-grid,
.stats-grid {
  position: relative;
  z-index: 2;
}

/* =============================================
   EXTREME IMMERSIVE — Magnetic CTA & Mouse Parallax
   ============================================= */
.magnetic-btn {
  will-change: transform;
  /* Transition is handled by JS for smooth interpolation, but a base is good */
}

/* Fluid Typography / Split Reveal (basic class support) */
.split-reveal-line {
  display: block;
  overflow: hidden;
}

.split-reveal-word {
  display: inline-block;
  transform: translateY(110%);
  opacity: 0;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.8s ease;
  will-change: transform, opacity;
}

.split-reveal-word.is-revealed {
  transform: translateY(0);
  opacity: 1;
}

/* =============================================
   EXTREME IMMERSIVE — Personal Portal Gateway
   ============================================= */
.personal-portal-section {
  position: relative;
  padding: 120px 0;
  background: var(--color-primary);
  overflow: hidden;
}

.personal-portal-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  position: relative;
  z-index: 2;
}

@media (min-width: 992px) {
  .personal-portal-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

.portal-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  padding: 54px 36px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 468px;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.5s ease, box-shadow 0.5s ease;
}

.portal-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.65) 50%, rgba(0, 0, 0, 0.35) 100%);
  z-index: 1;
}

.portal-card:hover {
  transform: translateY(-8px);
  border-color: rgba(200, 169, 110, 0.3);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.portal-card-bg-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.portal-card-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.portal-card:hover .portal-card-bg {
  transform: scale(1.08);
}

.portal-card-content {
  position: relative;
  z-index: 2;
}

.portal-card-badge {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--color-accent);
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 16px;
}

.portal-card-title {
  font-family: var(--font-sans);
  font-size: clamp(22px, 2.7vw, 29px);
  font-weight: 400;
  color: #fff;
  line-height: 1.4;
  margin-bottom: 18px;
  letter-spacing: 0.02em;
}

.portal-card-desc {
  font-size: 13px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 26px;
  font-weight: 400;
}

.portal-card-features {
  list-style: none;
  padding: 0;
  margin: 0 0 36px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.portal-card-features li {
  font-size: 13px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 400;
}

.portal-card-features li::before {
  content: '';
  width: 16px;
  height: 1px;
  background: var(--color-accent);
  flex-shrink: 0;
}

.portal-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.portal-btn-more {
  border-color: rgba(255, 255, 255, 0.3) !important;
  color: #fff !important;
}

@media (max-width: 767px) {
  .portal-btn-more {
    font-size: 14px;
    letter-spacing: 0.05em;
    text-transform: none;
    white-space: nowrap;
  }
}

.portal-btn-more:hover {
  background: rgba(255, 255, 255, 0.1) !important;
  border-color: #fff !important;
}

.portal-btn-line {
  background: #06C755 !important;
  border-color: #06C755 !important;
  color: #fff !important;
}

.portal-btn-line:hover {
  background: #05b04b !important;
  border-color: #05b04b !important;
  box-shadow: 0 8px 20px rgba(6, 199, 85, 0.3);
}

.portal-btn-consult {
  background: var(--color-accent) !important;
  border-color: var(--color-accent) !important;
  color: var(--color-primary) !important;
  font-weight: 700 !important;
}

.portal-btn-consult:hover {
  background: #e2c07d !important;
  border-color: #e2c07d !important;
  box-shadow: 0 8px 20px rgba(200, 169, 110, 0.3);
}

/* =============================================
   EXTREME IMMERSIVE — Smart Rent & Buy Details
   ============================================= */
.rent-adv-section,
.buy-features-section {
  padding: 120px 0;
  background: var(--color-primary);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.rent-adv-grid,
.buy-features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-top: 64px;
  position: relative;
  z-index: 2;
}

@media (min-width: 768px) {
  .rent-adv-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .buy-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.rent-adv-card,
.buy-feature-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 48px 36px;
  border-radius: 12px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.rent-adv-card:hover,
.buy-feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(200, 169, 110, 0.3);
  background: rgba(255, 255, 255, 0.04);
}

.rent-adv-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(200, 169, 110, 0.1);
  color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
}

.rent-adv-title,
.buy-feat-title {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
  color: #fff;
}

.rent-adv-desc,
.buy-feat-desc {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 300;
}

.buy-feat-no {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--color-accent);
  letter-spacing: 0.2em;
  display: block;
  margin-bottom: 16px;
}

.buy-flow-section {
  padding: 120px 0;
  background: #fff;
  position: relative;
}

.buy-flow-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 64px;
}

@media (min-width: 992px) {
  .buy-flow-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
  }
}

.buy-flow-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  padding: 40px 28px;
  border-radius: 8px;
  position: relative;
  transition: all 0.3s ease;
}

.buy-flow-card:hover {
  border-color: var(--color-accent);
  box-shadow: 0 15px 30px rgba(0,0,0,0.05);
}

.buy-flow-step-num {
  font-family: var(--font-mono);
  font-size: 32px;
  font-weight: 700;
  color: rgba(20, 35, 60, 0.08);
  line-height: 1;
  margin-bottom: 20px;
}

.buy-flow-step-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 12px;
}

.buy-flow-step-desc {
  font-size: 13px;
  line-height: 1.6;
  color: var(--color-text-light);
  font-weight: 300;
}

/* Rent/Buy Highly Converting CTA */
.rent-cv-section,
.buy-cv-section {
  padding: 120px 0;
  background: var(--color-primary);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.rent-cv-inner,
.buy-cv-inner {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.rent-cv-tag,
.buy-cv-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--color-accent);
  border: 1px solid rgba(200,169,110,0.3);
  padding: 6px 20px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 24px;
}

.rent-cv-title,
.buy-cv-title {
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.4;
  margin-bottom: 24px;
  color: #fff;
}

.rent-cv-desc,
.buy-cv-desc {
  font-size: 15px;
  line-height: 1.9;
  color: rgba(255,255,255,0.7);
  margin-bottom: 48px;
  font-weight: 300;
}

.rent-cv-action-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

@media (min-width: 768px) {
  .rent-cv-action-area {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 40px;
  }
}

.rent-line-btn {
  display: inline-flex;
  align-items: center;
  background: #06C755;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  padding: 20px 40px;
  border-radius: 40px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.rent-line-btn:hover {
  background: #05b04b;
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(6,199,85,0.3);
}

.rent-qr-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.rent-qr-img {
  width: 120px;
  height: 120px;
  border: 4px solid #fff;
  border-radius: 8px;
}

.rent-qr-label {
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.05em;
}

@media (max-width: 767px) {
  .rent-line-btn {
    font-size: 14px;
    padding: 16px 24px;
    white-space: nowrap;
  }
  .rent-qr-wrap {
    display: none;
  }
}

.buy-consult-btn {
  display: inline-flex;
  align-items: center;
  background: var(--color-accent);
  color: var(--color-primary);
  font-size: 16px;
  font-weight: 700;
  padding: 20px 40px;
  border-radius: 40px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.buy-consult-btn:hover {
  background: #e2c07d;
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(200,169,110,0.3);
}

/* =============================================
   EXTREME IMMERSIVE — Investor Professional (Institutional Style)
   ============================================= */
.iv-kpi-section,
.iv-timeline-section,
.iv-cases-section,
.investor-cv-section {
  padding: 120px 0;
  background: var(--color-primary);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.iv-kpi-section {
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.iv-kpi-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-top: 64px;
  position: relative;
  z-index: 2;
}

@media (min-width: 768px) {
  .iv-kpi-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.iv-kpi-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 48px 32px;
  text-align: center;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all 0.4s ease;
}

.iv-kpi-item:hover {
  border-color: rgba(200, 169, 110, 0.25);
  background: rgba(255, 255, 255, 0.04);
  transform: translateY(-6px);
}

.iv-kpi-label {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--color-accent);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 16px;
}

.iv-kpi-number {
  font-family: var(--font-sans);
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  display: block;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.iv-kpi-desc {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255,255,255,0.5);
  font-weight: 300;
}

.iv-timeline-section {
  background: #0f1c2e;
}

.iv-timeline {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 64px;
  position: relative;
  z-index: 2;
}

@media (min-width: 768px) {
  .iv-timeline {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
}

.iv-timeline-step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 24px;
  align-items: start;
  padding: 36px 32px;
  transition: background 0.3s ease;
  position: relative;
}

@media (max-width: 767px) {
  .iv-timeline-step:last-child {
  }
}

.iv-timeline-step:hover {
  background: rgba(255,255,255,0.03);
}

.iv-step-num {
  font-family: var(--font-mono);
  font-size: 20px;
  font-weight: 700;
  color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1.5px solid rgba(200,169,110,0.4);
  background: rgba(200,169,110,0.06);
  flex-shrink: 0;
}

.iv-step-title {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
  letter-spacing: 0.02em;
  line-height: 1.4;
}

.iv-step-desc {
  font-size: 13.5px;
  line-height: 1.85;
  color: rgba(255,255,255,0.72);
  font-weight: 400;
}

.iv-cases-section {
  background: var(--color-primary);
}

.iv-cases-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  position: relative;
  z-index: 2;
}

@media (min-width: 992px) {
  .iv-cases-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ── iv-case-card Rich Redesign ── */
.iv-case-card {
  background: #fff;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 20px;
  padding: 48px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
  overflow: hidden;
}

.iv-case-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-accent) 0%, rgba(200,169,110,0.2) 100%);
}

.iv-case-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 32px 80px rgba(0,0,0,0.35);
  border-color: rgba(200,169,110,0.4);
}

.iv-case-tag {
  display: inline-block;
  font-size: 11px;
  color: var(--color-accent);
  background: rgba(200,169,110,0.1);
  border: 1px solid rgba(200,169,110,0.25);
  padding: 5px 14px;
  border-radius: 40px;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}

.iv-case-name {
  font-family: var(--font-sans);
  font-size: clamp(22px, 2.5vw, 28px);
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 16px;
  line-height: 1.35;
  letter-spacing: -0.01em;
}

.iv-case-desc {
  font-size: 14px;
  line-height: 1.9;
  color: var(--color-text-light);
  font-weight: 300;
  margin-bottom: 0;
}

.iv-case-header {
  padding: 0;
  border-bottom: none;
}

.iv-case-body {
  padding-top: 32px;
  margin-top: 32px;
  border-top: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  gap: 0;
}

.iv-case-metric {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 24px 0;
}

.iv-case-metric-key {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #9ca3af;
  display: block;
}

.iv-case-metric-vals {
  display: flex;
  align-items: flex-end;
  gap: 0;
}

.iv-case-before {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.iv-case-after {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.iv-case-metric-sublabel {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #9ca3af;
  display: block;
  margin-bottom: 6px;
}

.iv-case-val {
  font-family: var(--font-sans);
  font-size: 28px;
  font-weight: 200;
  color: #c0cad6;
  white-space: nowrap;
  line-height: 1;
}

.iv-case-val--after {
  font-size: 44px;
  font-weight: 300;
  color: var(--color-accent);
  white-space: nowrap;
  line-height: 1;
}

.iv-case-arrow {
  font-size: 16px;
  color: #d1d9e0;
  flex-shrink: 0;
  align-self: center;
  padding: 0 16px;
  padding-bottom: 4px;
}

.iv-case-metric-divider {
  height: 1px;
  background: var(--color-border);
  margin: 0;
}

.investor-cv-section {
  background: #0f1c2e;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.investor-cv-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--color-accent);
  border: 1px solid rgba(200,169,110,0.3);
  padding: 6px 16px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 24px;
}

.investor-cv-title {
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.4;
  margin-bottom: 24px;
}

.investor-cv-desc {
  font-size: 15px;
  line-height: 1.9;
  color: rgba(255,255,255,0.6);
  margin-bottom: 48px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 300;
}

.investor-consult-btn {
  display: inline-flex;
  align-items: center;
  background: var(--color-accent);
  color: var(--color-primary);
  font-size: 16px;
  font-weight: 700;
  padding: 22px 48px;
  border-radius: 40px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.investor-consult-btn:hover {
  background: #e2c07d;
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(200,169,110,0.35);
}

@media (max-width: 767px) {
  .iv-case-card {
    padding: 28px 24px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.2);
  }
  .iv-case-val {
    font-size: 20px;
  }
  .iv-case-val--after {
    font-size: 32px;
  }
  .iv-case-arrow {
    padding: 0 10px;
  }
  .investor-consult-btn {
    font-size: 13px;
    padding: 16px 20px;
    text-align: center;
    line-height: 1.5;
  }
}

/* ============================================================
   Header — Smooth Scroll Transition Fix
   (backdrop-filterは::beforeのopacityで制御することでカクツキ解消)
   ============================================================ */

/* transition: all → 必要なプロパティのみに限定 */
.site-header {
  transition:
    border-color 0.5s ease,
    padding 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

/* frosted glass は ::before の opacity でフェードイン
   (backdrop-filter 自体を transition するとブラウザ描画コストが高くカクツク) */
.site-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
  z-index: -1;
}

/* is-scrolled: background/backdrop-filter を ::before に委譲 */
.site-header.is-scrolled {
  background: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

.site-header.is-scrolled::before {
  opacity: 1;
}

/* ロゴ: display toggle → opacity クロスフェードに変更 */
.site-logo .logo-white,
.site-logo .logo-color {
  display: block !important;
  transition: opacity 0.45s ease;
}
.site-logo a {
  position: relative;
}
.site-logo .logo-color {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  opacity: 0;
}
.site-header.is-scrolled .site-logo .logo-white {
  opacity: 0;
}
.site-header.is-scrolled .site-logo .logo-color {
  opacity: 1;
}

/* ============================================================
   TOP PAGE — Plan A: Section Angle Dividers + Hover Enhancements
   ============================================================ */

/* Section angle dividers (safe div approach) */
.section-angle--to-white,
.section-angle--to-white-r,
.section-angle--to-dark {
  display: none;
}

.section-angle--to-white::after,
.section-angle--to-white-r::after,
.section-angle--to-dark::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Features (dark) → Business (white): right-leaning cut */
.section-angle--to-white::after {
  background: var(--color-bg-main);
  clip-path: polygon(0 100%, 100% 30%, 100% 100%);
}

/* Business (white) → Stats (dark): left-leaning cut */
.section-angle--to-dark::after {
  background: var(--color-primary);
  clip-path: polygon(0 30%, 100% 0, 100% 100%, 0 100%);
}

/* Stats (dark) → News (white): right-leaning cut */
.section-angle--to-white-r::after {
  background: var(--color-bg-main);
  clip-path: polygon(0 0, 100% 100%, 0 100%);
}

/* Business card: title color + lift on hover */
.business-title {
  transition: color 0.4s ease, transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.business-card:hover .business-title {
  color: var(--color-accent);
  transform: translateY(-4px);
}

/* Business card: stronger image scale */
.business-card:hover .business-img {
  transform: scale(1.06) !important;
}

/* Feature card: gold top border on hover */
.feature-card {
  border-top: 2px solid transparent;
  transition: border-color 0.4s ease, background 0.4s ease, box-shadow 0.4s ease;
}
.feature-card:hover {
  border-top-color: var(--color-accent);
}

/* ============================================================
   404 Page — nf-* namespace
   Full-screen Dark Navy + ghost watermark
   ============================================================ */

.nf-page {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary);
  overflow: hidden;
  padding: 120px 24px 80px;
}

/* Background layers */
.nf-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.nf-grid-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(200,169,110,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,169,110,0.04) 1px, transparent 1px);
  background-size: 64px 64px;
}

.nf-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
}
.nf-glow--1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(200,169,110,0.06) 0%, transparent 70%);
  top: -100px;
  right: -100px;
}
.nf-glow--2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(200,169,110,0.04) 0%, transparent 70%);
  bottom: -80px;
  left: -80px;
}

/* Ghost watermark "404" */
.nf-watermark {
  position: absolute;
  font-family: var(--font-sans);
  font-size: clamp(200px, 30vw, 480px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.06em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(200,169,110,0.08);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}

/* Content */
.nf-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 600px;
  width: 100%;
}

.nf-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 32px;
}

.nf-line {
  display: block;
  width: 40px;
  height: 1px;
  background: var(--color-accent);
  opacity: 0.6;
}

.nf-eyebrow-text {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.nf-title {
  font-family: var(--font-sans);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 300;
  color: #fff;
  letter-spacing: 0.03em;
  margin-bottom: 24px;
  line-height: 1.4;
}

.nf-desc {
  font-size: 15px;
  color: rgba(255,255,255,0.5);
  line-height: 1.9;
  margin-bottom: 48px;
}

/* CTA Buttons */
.nf-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.nf-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  border-radius: 2px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.nf-btn--primary {
  background: var(--color-accent);
  color: #fff;
  border: 1px solid var(--color-accent);
}
.nf-btn--primary:hover {
  background: #e2c07d;
  border-color: #e2c07d;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(200,169,110,0.3);
}

.nf-btn--outline {
  background: transparent;
  color: rgba(255,255,255,0.8);
  border: 1px solid rgba(255,255,255,0.2);
}
.nf-btn--outline:hover {
  border-color: rgba(255,255,255,0.5);
  color: #fff;
  transform: translateY(-2px);
}

/* Quick nav shortcuts */
.nf-nav {
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.nf-nav-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  display: block;
  margin-bottom: 20px;
}

.nf-nav-list {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}

.nf-nav-link {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  padding: 6px 16px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 2px;
  transition: color 0.3s ease, border-color 0.3s ease;
}
.nf-nav-link:hover {
  color: var(--color-accent);
  border-color: rgba(200,169,110,0.3);
}

@media (max-width: 640px) {
  .nf-actions {
    flex-direction: column;
    align-items: center;
  }
  .nf-btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}

/* ============================================================
   About Page — ab-* namespace
   全面リニューアル: Dark↔Light交互 + 大きな余白
   ============================================================ */

/* Dark section heading — white override */
.ab-heading-light {
  color: #fff !important;
}

/* === 企業理念 (DARK) === */
.ab-mission-section {
  background: var(--color-primary);
  padding: 128px 0;
}

.ab-mission-text {
  max-width: 720px;
  margin: 0 auto 80px;
  text-align: center;
  font-size: 17px;
  line-height: 2;
  color: rgba(255, 255, 255, 0.6);
}

.ab-values-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(200, 169, 110, 0.15);
}

.ab-value-item {
  padding: 52px 40px;
  border-right: 1px solid rgba(200, 169, 110, 0.12);
  transition: background 0.4s ease;
}
.ab-value-item:last-child {
  border-right: none;
}
.ab-value-item:hover {
  background: rgba(200, 169, 110, 0.04);
}

.ab-value-num {
  font-family: var(--font-sans);
  font-size: 72px;
  font-weight: 200;
  line-height: 1;
  color: rgba(200, 169, 110, 0.18);
  display: block;
  margin-bottom: 28px;
  letter-spacing: -0.04em;
}

.ab-value-icon-wrap {
  width: 52px;
  height: 52px;
  border: 1px solid rgba(200, 169, 110, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  margin-bottom: 28px;
  transition: border-color 0.4s ease, background 0.4s ease;
}
.ab-value-item:hover .ab-value-icon-wrap {
  border-color: rgba(200, 169, 110, 0.55);
  background: rgba(200, 169, 110, 0.08);
}

.ab-value-icon {
  width: 22px;
  height: 22px;
}

.ab-value-title {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  letter-spacing: 0.04em;
}

.ab-value-desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.9;
}

/* === CEO Message (LIGHT) === */
.ab-message-section {
  padding: 128px 0;
  background: var(--color-bg-main);
}

.ab-message-inner {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 88px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.ab-message-content {
  position: relative;
}

.ab-message-deco {
  font-family: var(--font-serif);
  font-size: 220px;
  line-height: 0.75;
  color: rgba(200, 169, 110, 0.07);
  position: absolute;
  top: -24px;
  left: -16px;
  pointer-events: none;
  user-select: none;
}

.ab-message-quote {
  font-size: 21px;
  font-weight: 700;
  font-style: normal;
  color: var(--color-primary);
  line-height: 1.65;
  margin: 0 0 36px;
  padding: 0;
  border: none;
  background: none;
  border-radius: 0;
  position: relative;
  z-index: 1;
}

.ab-message-body {
  font-size: 16px;
  line-height: 2.0;
  color: var(--color-text-main);
  margin-bottom: 20px;
}

.ab-signature {
  margin-top: 44px;
  padding-top: 24px;
  border-top: 1px solid var(--color-border);
  text-align: right;
}

.ab-signature-role {
  display: block;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--color-text-light);
  margin-bottom: 6px;
}

.ab-signature-name {
  display: block;
  font-size: 24px;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: 0.05em;
}

.ab-message-photo {
  overflow: hidden;
  box-shadow: 20px 20px 0 rgba(200, 169, 110, 0.1);
}
.ab-message-photo img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.8s ease;
}
.ab-message-photo:hover img {
  transform: scale(1.03);
}

/* === History / Timeline (LIGHT, bg-gray) === */
.ab-history-section {
  padding: 128px 0;
  background: var(--color-bg-gray);
}

.ab-timeline {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
  padding-left: 44px;
}

.ab-timeline::before {
  content: '';
  position: absolute;
  top: 8px;
  bottom: 8px;
  left: 0;
  width: 1px;
  background: linear-gradient(180deg, var(--color-accent) 0%, rgba(200, 169, 110, 0.08) 100%);
}

.ab-timeline-item {
  position: relative;
  padding: 0 0 64px 48px;
}
.ab-timeline-item:last-child {
  padding-bottom: 0;
}

.ab-timeline-item::before {
  content: '';
  position: absolute;
  left: -6px;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--color-bg-gray);
  border: 2px solid var(--color-accent);
  box-shadow: 0 0 0 5px rgba(200, 169, 110, 0.1);
}

.ab-timeline-year {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--color-accent);
  display: block;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.ab-timeline-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 10px;
  line-height: 1.55;
}

.ab-timeline-desc {
  font-size: 15px;
  color: var(--color-text-light);
  line-height: 1.85;
}

/* === Company Profile (LIGHT) === */
.ab-profile-section {
  padding: 128px 0;
  background: var(--color-bg-main);
}

.ab-profile-table {
  max-width: 800px;
  margin: 0 auto;
}

.ab-profile-table dd {
  margin: 0;
}

.ab-profile-row {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--color-border);
}
.ab-profile-row:first-child {
  border-top: 1px solid var(--color-border);
}

.ab-profile-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-accent);
  font-weight: 400;
  padding-top: 3px;
}

.ab-profile-value {
  font-size: 15px;
  color: var(--color-primary);
  line-height: 1.85;
  margin: 0;
  padding: 0;  /* reset dd default margin-left */
}

/* === Staff (DARK) === */
.ab-staff-section {
  background: var(--color-primary);
  padding: 128px 0;
}

.ab-staff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
}

.ab-staff-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(200, 169, 110, 0.12);
  overflow: hidden;
  transition: border-color 0.4s ease, background 0.4s ease;
}
.ab-staff-card:hover {
  border-color: rgba(200, 169, 110, 0.3);
  background: rgba(255, 255, 255, 0.05);
}

.ab-staff-photo-wrap {
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
}
.ab-staff-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(60%);
  transition: filter 0.6s ease, transform 0.6s ease;
}
.ab-staff-card:hover .ab-staff-photo {
  filter: grayscale(0%);
  transform: scale(1.04);
}

.ab-staff-info {
  padding: 28px 28px 32px;
}

.ab-staff-role {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.25em;
  color: var(--color-accent);
  text-transform: uppercase;
  display: block;
  margin-bottom: 12px;
}

.ab-staff-name {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.ab-staff-name-en {
  font-family: var(--font-sans);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
  display: block;
  margin-bottom: 16px;
  letter-spacing: 0.1em;
}

.ab-staff-bio {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.85;
}

/* === Responsive === */
@media (max-width: 1024px) {
  .ab-values-list {
    grid-template-columns: 1fr;
  }
  .ab-value-item {
    border-right: none;
    border-bottom: 1px solid rgba(200, 169, 110, 0.12);
  }
  .ab-value-item:last-child {
    border-bottom: none;
  }
  .ab-message-inner {
    grid-template-columns: 1fr;
    gap: 56px;
  }
  .ab-message-photo {
    order: -1;
    max-width: 420px;
  }
  .ab-staff-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .ab-mission-section,
  .ab-message-section,
  .ab-history-section,
  .ab-profile-section,
  .ab-staff-section {
    padding: 80px 0;
  }
  .ab-value-item {
    padding: 36px 24px;
  }
  .ab-value-num {
    font-size: 52px;
    margin-bottom: 20px;
  }
  .ab-timeline {
    padding-left: 28px;
  }
  .ab-timeline-item {
    padding: 0 0 48px 36px;
  }
  .ab-profile-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }
  .ab-staff-grid {
    grid-template-columns: 1fr;
    max-width: 380px;
  }
  .ab-message-quote {
    font-size: 18px;
  }
  .ab-message-deco {
    font-size: 140px;
  }
}









