/* =============================
   IJIN PRODUCTION - GLOBAL
   ============================= */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --black: #111111;
  --white: #ffffff;
  --off-white: #f7f5f0;
  --gray: #f2f0eb;
  --mid-gray: #888888;
  --dark: #1a1a2e;
  --gold: #c9a84c;
  --gold-light: #e8d08a;
  --accent: #c94a4a;
  --font-serif: 'Noto Serif JP', 'Playfair Display', serif;
  --font-sans: 'Noto Sans JP', sans-serif;
  --radius: 4px;
  --shadow: 0 2px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.14);
  --transition: 0.3s ease;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  color: var(--black);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

img { max-width: 100%; }

.pc-only { display: inline; }
.sp-only { display: none; }

/* =============================
   HEADER
   ============================= */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.08);
  transition: var(--transition);
}

.header.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  height: 72px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.logo-mark {
  width: 44px;
  height: 44px;
  background: var(--dark);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  border-radius: 2px;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-jp {
  font-family: var(--font-serif);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.05em;
}

.logo-en {
  font-size: 9px;
  letter-spacing: 0.2em;
  color: var(--mid-gray);
  font-weight: 300;
}

.nav {
  display: flex;
  gap: 28px;
  margin-left: auto;
}

.nav a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--black);
  position: relative;
  padding-bottom: 2px;
}

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

.nav a:hover::after { width: 100%; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--black);
  transition: var(--transition);
}

.mobile-nav {
  display: none;
  flex-direction: column;
  background: white;
  border-top: 1px solid rgba(0,0,0,0.08);
  padding: 16px 32px 24px;
  gap: 4px;
}

.mobile-nav a {
  display: block;
  padding: 10px 0;
  font-size: 15px;
  font-weight: 500;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.mobile-nav.open { display: flex; }

/* =============================
   BUTTONS
   ============================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.06em;
  border-radius: var(--radius);
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
}

.btn-primary:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--dark);
}

.btn-outline {
  background: transparent;
  color: var(--dark);
  border-color: var(--dark);
}

.btn-outline:hover {
  background: var(--dark);
  color: var(--white);
}

.btn-full { width: 100%; }

/* =============================
   HERO
   ============================= */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background: var(--dark);
  overflow: hidden;
  padding: 120px 32px 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-line {
  position: absolute;
  background: rgba(201, 168, 76, 0.08);
}

.hero-line:nth-child(1) { width: 1px; height: 100%; left: 20%; top: 0; }
.hero-line:nth-child(2) { width: 1px; height: 100%; left: 50%; top: 0; }
.hero-line:nth-child(3) { width: 1px; height: 100%; left: 80%; top: 0; }

.hero-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero-label {
  font-size: 11px;
  letter-spacing: 0.35em;
  color: var(--gold);
  font-weight: 300;
  margin-bottom: 24px;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.25;
  letter-spacing: 0.04em;
  margin-bottom: 32px;
}

.hero-desc {
  font-size: clamp(15px, 1.8vw, 18px);
  color: rgba(255,255,255,0.72);
  line-height: 1.9;
  margin-bottom: 48px;
  font-weight: 300;
}

.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 72px;
}

.hero .btn-outline {
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}

.hero .btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.stat-num {
  font-family: var(--font-serif);
  font-size: 38px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.stat-num small { font-size: 18px; font-weight: 400; }

.stat-label {
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.1em;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.2);
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.4);
  font-size: 10px;
  letter-spacing: 0.2em;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scrollDown 2s ease-in-out infinite;
}

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

/* =============================
   TICKER
   ============================= */
.ticker-wrap {
  background: var(--gold);
  overflow: hidden;
  padding: 12px 0;
}

.ticker {
  display: flex;
  white-space: nowrap;
  animation: ticker 40s linear infinite;
}

.ticker span {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--dark);
  padding-right: 80px;
}

@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* =============================
   SECTIONS
   ============================= */
.section { padding: 100px 0; }
.section-dark { background: var(--dark); }
.section-gray { background: var(--gray); }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

.section-head {
  text-align: center;
  margin-bottom: 64px;
}

.section-label {
  font-size: 11px;
  letter-spacing: 0.35em;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.04em;
  color: var(--black);
  margin-bottom: 16px;
}

.section-desc {
  font-size: 16px;
  color: var(--mid-gray);
  font-weight: 300;
  max-width: 600px;
  margin: 0 auto;
}

/* =============================
   TALENT FILTER
   ============================= */
.talent-filter {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 48px;
}

.filter-btn {
  padding: 8px 20px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  background: none;
  border: 1px solid rgba(0,0,0,0.15);
  border-radius: 100px;
  cursor: pointer;
  transition: var(--transition);
  color: var(--black);
  font-family: var(--font-sans);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--dark);
  border-color: var(--dark);
  color: var(--white);
}

/* =============================
   TALENT GRID - VERTICAL PORTRAIT STYLE
   ============================= */
.talent-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.talent-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  box-shadow: var(--shadow);
}

.talent-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.talent-card[data-category].hidden {
  display: none;
}

/* Portrait photo area */
.talent-photo {
  position: relative;
  width: 100%;
  height: 220px;
  background: var(--bg, #1a1a2e);
  overflow: hidden;
  flex-shrink: 0;
}

.talent-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.5s ease;
}

.talent-card:hover .talent-photo img {
  transform: scale(1.05);
}

/* Letter fallback */
.talent-initial {
  display: none;
  position: absolute;
  inset: 0;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 72px;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
}

.talent-photo.img-error img { display: none; }
.talent-photo.img-error .talent-initial { display: flex; }

/* Gradient overlay on photo */
.talent-photo::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(to top, rgba(0,0,0,0.45), transparent);
  pointer-events: none;
}

.talent-badge {
  position: absolute;
  top: 12px;
  left: 0;
  background: var(--accent);
  color: white;
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px 4px 10px;
  letter-spacing: 0.06em;
  z-index: 2;
  border-radius: 0 3px 3px 0;
}

.talent-info {
  padding: 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.talent-info h3 {
  font-family: var(--font-serif);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.03em;
}

.talent-meta {
  font-size: 11px;
  color: var(--mid-gray);
  letter-spacing: 0.04em;
}

.talent-tags {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  margin: 2px 0;
}

.talent-tags span {
  font-size: 10px;
  font-weight: 500;
  padding: 2px 8px;
  background: rgba(0,0,0,0.05);
  border-radius: 100px;
  color: var(--black);
  letter-spacing: 0.04em;
}

.talent-desc {
  font-size: 12px;
  color: #555;
  line-height: 1.75;
  flex: 1;
}

.talent-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 16px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.05em;
  background: var(--dark);
  color: var(--white);
  border-radius: var(--radius);
  margin-top: 6px;
  align-self: stretch;
  text-align: center;
  transition: var(--transition);
}

.talent-btn:hover {
  background: var(--gold);
  color: var(--dark);
}

.talent-more {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding-top: 8px;
}

.talent-more p {
  font-size: 14px;
  color: var(--mid-gray);
}

/* =============================
   SERVICES GRID - VISUAL CARDS
   ============================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.service-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  background: rgba(255,255,255,0.11);
  border-color: rgba(201,168,76,0.35);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

/* Visual illustration header */
.service-visual {
  position: relative;
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}

/* Decorative blobs */
.svc-deco {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
}

.svc-deco1 {
  width: 100px;
  height: 100px;
  top: -30px;
  right: -20px;
}

.svc-deco2 {
  width: 60px;
  height: 60px;
  bottom: -15px;
  left: 10px;
  background: rgba(0,0,0,0.12);
}

.service-icon {
  font-size: 52px;
  line-height: 1;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
}

.service-content {
  padding: 18px 18px 20px;
  flex: 1;
}

.service-content h3 {
  font-family: var(--font-serif);
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
  letter-spacing: 0.03em;
}

.service-content p {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
  font-weight: 300;
}

/* =============================
   PRICING
   ============================= */
.hidden { display: none !important; }

/* Plan toggle tabs */
.plan-toggle {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 40px;
  border: 2px solid var(--dark);
  border-radius: 6px;
  overflow: hidden;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.plan-toggle-btn {
  padding: 12px 32px;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font-sans);
  letter-spacing: 0.04em;
  border: none;
  background: transparent;
  color: var(--dark);
  cursor: pointer;
  transition: var(--transition);
}

.plan-toggle-btn.active {
  background: var(--dark);
  color: var(--gold);
}

/* Plan cards grid */
.plans-wrap { animation: fadeIn 0.3s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

.plan-cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-bottom: 24px;
  align-items: stretch;
}

.plan-card {
  background: var(--white);
  border: 2px solid rgba(0,0,0,0.08);
  border-radius: 12px;
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  transition: var(--transition);
}

.plan-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.plan-popular {
  border-color: var(--gold);
  box-shadow: 0 0 0 1px var(--gold), var(--shadow-lg);
}

.plan-enterprise {
  background: var(--dark);
  border-color: var(--dark);
  color: rgba(255,255,255,0.9);
}

.popular-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--dark);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 3px 14px;
  border-radius: 20px;
  white-space: nowrap;
}

.plan-header { display: flex; flex-direction: column; gap: 6px; }

.plan-name {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.plan-price {
  font-size: 28px;
  font-weight: 700;
  font-family: var(--font-serif);
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 2px;
}

.plan-price-custom {
  font-size: 18px;
  color: var(--gold);
}

.plan-yen { font-size: 16px; font-weight: 600; }
.plan-per { font-size: 13px; font-weight: 400; color: var(--mid-gray); margin-left: 2px; }

.plan-enterprise .plan-per { color: rgba(255,255,255,0.5); }

.plan-tagline {
  font-size: 12px;
  color: var(--mid-gray);
  line-height: 1.5;
}

.plan-enterprise .plan-tagline { color: rgba(255,255,255,0.55); }

.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
  flex: 1;
}

.plan-features li {
  font-size: 12.5px;
  line-height: 1.5;
  padding-left: 20px;
  position: relative;
  color: #444;
}

.plan-enterprise .plan-features li { color: rgba(255,255,255,0.75); }

.feat-ok::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #2a9a5a;
  font-weight: 700;
}

.feat-ng::before {
  content: '✗';
  position: absolute;
  left: 0;
  color: #ccc;
  font-weight: 700;
}

.feat-ng { color: #aaa !important; }

.plan-btn {
  display: block;
  text-align: center;
  padding: 11px 16px;
  font-size: 13px;
  border-radius: var(--radius);
  font-weight: 600;
}

/* Annual banner */
.annual-banner {
  background: linear-gradient(135deg, #fffbee, #fff8d6);
  border: 1px solid #e8d08a;
  border-radius: 8px;
  padding: 16px 24px;
  font-size: 14px;
  color: #7a5c10;
  text-align: center;
  margin-top: 8px;
}

.annual-badge {
  font-weight: 700;
  margin-right: 8px;
}

/* Spot purchase */
.spot-section { margin-bottom: 48px; }

.spot-section-title {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 0.03em;
}

.spot-table-wrap {
  overflow-x: auto;
  border-radius: 10px;
  box-shadow: var(--shadow-lg);
}

.spot-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  font-size: 14px;
}

.spot-table thead tr { background: var(--dark); }

.spot-table thead th {
  padding: 14px 20px;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.75);
  border-right: 1px solid rgba(255,255,255,0.08);
}

.spot-table thead th:first-child { text-align: left; }

.spot-table tbody tr {
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: background 0.2s;
}

.spot-table tbody tr:hover { background: rgba(201,168,76,0.04); }

.spot-table tbody td {
  padding: 13px 20px;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  color: var(--black);
  border-right: 1px solid rgba(0,0,0,0.06);
}

.spot-len { text-align: left !important; font-weight: 600; color: #555; }

.spot-table tbody td:nth-child(2) { color: #888; }
.spot-table tbody td:nth-child(3) { color: #2a7a4a; }
.spot-table tbody td:nth-child(4) { color: #2a5a9a; }
.spot-table tbody td:nth-child(5) { color: #a07830; font-weight: 600; }

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

.option-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 10px;
  padding: 18px 20px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  box-shadow: var(--shadow);
}

.opt-icon { font-size: 24px; flex-shrink: 0; line-height: 1; }

.opt-name {
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 2px;
}

.opt-price {
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 4px;
}

.opt-desc {
  font-size: 12px;
  color: var(--mid-gray);
  line-height: 1.5;
}

/* Compare table */
.compare-wrap { margin-top: 56px; }

.compare-title {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 24px;
  letter-spacing: 0.04em;
}

.compare-table-wrap {
  overflow-x: auto;
  border-radius: 10px;
  box-shadow: var(--shadow-lg);
  margin-bottom: 48px;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  font-size: 13px;
}

.compare-table thead tr { background: var(--dark); }

.compare-table thead th {
  padding: 14px 16px;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.7);
  border-right: 1px solid rgba(255,255,255,0.08);
}

.compare-table thead th:first-child { text-align: left; width: 22%; }

.compare-popular {
  background: rgba(201,168,76,0.18) !important;
  color: var(--gold) !important;
  font-weight: 700;
}

.compare-table tbody tr {
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: background 0.2s;
}

.compare-table tbody tr:hover { background: rgba(0,0,0,0.02); }

.compare-table tbody td {
  padding: 12px 16px;
  text-align: center;
  font-size: 13px;
  color: #444;
  border-right: 1px solid rgba(0,0,0,0.06);
}

.compare-table tbody td:first-child {
  text-align: left;
  font-weight: 600;
  color: var(--black);
}

.price-cta {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.price-cta p {
  font-size: 15px;
  color: var(--mid-gray);
}

/* =============================
   WHY IJIN
   ============================= */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.why-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 14px;
  padding: 36px 28px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.why-card-featured {
  border-color: var(--gold);
  box-shadow: 0 0 0 1px var(--gold), var(--shadow-lg);
}

.why-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-icon { font-size: 30px; }

.why-title {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.4;
}

.why-desc {
  font-size: 14px;
  color: #555;
  line-height: 1.75;
}

.why-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 4px;
  padding-top: 16px;
  border-top: 1px solid rgba(0,0,0,0.07);
}

.why-list li {
  font-size: 13px;
  color: #444;
  padding-left: 20px;
  position: relative;
}

.why-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #2a9a5a;
  font-weight: 700;
}

/* =============================
   WORKS GRID
   ============================= */
.works-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.work-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.work-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.work-large { grid-column: span 2; }

.work-img {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.work-large .work-img { height: 260px; }

.work-img-text {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.7);
}

.work-body { padding: 24px; }

.work-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  padding: 3px 10px;
  background: var(--dark);
  color: var(--gold);
  border-radius: 100px;
  margin-bottom: 10px;
}

.work-body h3 {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 10px;
  letter-spacing: 0.03em;
}

.work-body p {
  font-size: 13px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 12px;
}

.work-meta {
  font-size: 11px;
  color: var(--mid-gray);
  letter-spacing: 0.08em;
}

/* =============================
   NEWS
   ============================= */
.news-list {
  border-top: 1px solid rgba(0,0,0,0.1);
  margin-bottom: 40px;
}

.news-item {
  display: flex;
  align-items: baseline;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  flex-wrap: wrap;
}

.news-date {
  font-size: 12px;
  color: var(--mid-gray);
  letter-spacing: 0.08em;
  flex-shrink: 0;
  font-weight: 300;
}

.news-cat {
  font-size: 10px;
  font-weight: 600;
  padding: 2px 10px;
  background: var(--dark);
  color: var(--gold);
  border-radius: 100px;
  letter-spacing: 0.06em;
  flex-shrink: 0;
}

.news-title {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
  flex: 1;
  letter-spacing: 0.02em;
}

.news-title:hover { color: var(--gold); }
.news-more { text-align: center; }

/* =============================
   SCOUT
   ============================= */
.scout-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  align-items: start;
}

.scout-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 8px;
  padding: 32px 28px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.scout-highlight {
  border-color: var(--gold);
  border-width: 2px;
}

.scout-card h3 {
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.03em;
}

.scout-detail p {
  font-size: 13px;
  line-height: 1.9;
  color: #555;
  margin-bottom: 6px;
}

.scout-card > p {
  font-size: 14px;
  color: #555;
  line-height: 1.8;
}

/* =============================
   TESTIMONIALS
   ============================= */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial {
  background: var(--white);
  border-radius: 8px;
  padding: 32px;
  box-shadow: var(--shadow);
  position: relative;
}

.testimonial::before {
  content: '"';
  font-family: var(--font-serif);
  font-size: 80px;
  color: var(--gold);
  opacity: 0.3;
  position: absolute;
  top: 8px;
  left: 16px;
  line-height: 1;
}

.testimonial-text {
  font-size: 14px;
  line-height: 1.9;
  color: var(--black);
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  font-size: 12px;
  color: var(--mid-gray);
  letter-spacing: 0.05em;
}

/* =============================
   CONTACT
   ============================= */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}

.contact-block { margin-bottom: 32px; }

.contact-block h3 {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: 0.04em;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.contact-block p {
  font-size: 14px;
  color: #555;
  line-height: 1.9;
}

.contact-form {
  background: var(--off-white);
  border-radius: 8px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 6px;
}

.required {
  font-size: 10px;
  font-weight: 600;
  color: var(--accent);
  padding: 1px 6px;
  border: 1px solid var(--accent);
  border-radius: 2px;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  font-size: 14px;
  font-family: var(--font-sans);
  border: 1px solid rgba(0,0,0,0.15);
  border-radius: var(--radius);
  background: var(--white);
  transition: var(--transition);
  color: var(--black);
  outline: none;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--dark);
  box-shadow: 0 0 0 3px rgba(26,26,46,0.08);
}

/* =============================
   FOOTER
   ============================= */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

.footer-top {
  padding: 64px 0 48px;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 64px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-logo .logo-mark {
  background: rgba(255,255,255,0.1);
  color: var(--gold);
}

.footer-logo .logo-jp { color: var(--white); }
.footer-logo .logo-en { color: rgba(255,255,255,0.4); }

.footer-tagline {
  font-family: var(--font-serif);
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  font-weight: 300;
}

.footer-nav-group {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.footer-nav-col h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 16px;
}

.footer-nav-col a {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  font-weight: 300;
  padding: 4px 0;
  transition: var(--transition);
}

.footer-nav-col a:hover { color: var(--white); }

.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.08em;
}

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

.footer-links a {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.06em;
}

.footer-links a:hover { color: rgba(255,255,255,0.7); }

/* =============================
   RESPONSIVE
   ============================= */
@media (max-width: 1200px) {
  .talent-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1024px) {
  .works-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .work-large { grid-column: span 2; }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer-nav-group {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .talent-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .plan-cards { grid-template-columns: repeat(2, 1fr); }
  .options-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .scout-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .contact-wrap {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .contact-form { padding: 28px 20px; }
}

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

  .header-inner { padding: 0 20px; height: 64px; }
  .nav { display: none; }
  .nav-toggle { display: flex; }

  .hero { padding: 100px 20px 60px; }
  .hero-stats { gap: 24px; }
  .stat-divider { display: none; }
  .hero-btns { flex-direction: column; align-items: center; }

  .container { padding: 0 20px; }
  .section { padding: 72px 0; }

  .talent-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .talent-photo { height: 180px; }

  .services-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }

  .works-grid { grid-template-columns: 1fr; }
  .work-large { grid-column: span 1; }

  .news-item { gap: 10px; }
  .news-more { text-align: center; }

  .footer-nav-group { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 12px; }
}

@media (max-width: 480px) {
  .talent-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .plan-cards { grid-template-columns: 1fr; }
  .options-grid { grid-template-columns: 1fr; }
  .footer-nav-group { grid-template-columns: 1fr; }
}
