/* ===== Reset & Base ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #fbf7ed;
  --bg-2: #f4ecd8;
  --bg-3: #ebe1c8;
  --ink: #2a1f15;
  --ink-2: #574838;
  --ink-3: #968774;
  --gold: #b8861b;
  --gold-2: #d4a017;
  --gold-soft: rgba(184, 134, 27, 0.15);
  --line: rgba(42, 31, 21, 0.1);
  --line-2: rgba(42, 31, 21, 0.18);
  --shadow: 0 4px 16px -4px rgba(42, 31, 21, 0.08);
  --shadow-lg: 0 16px 40px -12px rgba(42, 31, 21, 0.18);
  --shadow-gold: 0 12px 32px -10px rgba(184, 134, 27, 0.35);
  --serif: 'Shippori Mincho', 'Noto Serif JP', serif;
  --sans: 'Noto Sans JP', sans-serif;
  --en: 'Cormorant Garamond', 'Shippori Mincho', serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-2: cubic-bezier(0.65, 0, 0.35, 1);
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--sans);
  font-weight: 400;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.7;
  letter-spacing: 0.03em;
  overflow-x: hidden;
  cursor: none;
  background-image:
    radial-gradient(circle at 20% 10%, rgba(255, 220, 150, 0.15) 0%, transparent 35%),
    radial-gradient(circle at 90% 90%, rgba(212, 160, 23, 0.06) 0%, transparent 40%);
  background-attachment: fixed;
}

@media (max-width: 968px) {
  body { cursor: auto; }
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { background: none; border: none; color: inherit; cursor: pointer; font-family: inherit; }

.container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 5vw;
}

/* ===== Cursor ===== */
.cursor-dot, .cursor-ring {
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  border-radius: 50%;
  transition: transform 0.15s ease, opacity 0.3s ease, width 0.3s var(--ease), height 0.3s var(--ease);
  will-change: transform;
}
.cursor-dot {
  width: 8px; height: 8px;
  background: var(--gold);
  transform: translate(-50%, -50%);
}
.cursor-ring {
  width: 38px; height: 38px;
  border: 1.5px solid rgba(184, 134, 27, 0.55);
  transform: translate(-50%, -50%);
  transition: transform 0.6s var(--ease), width 0.3s var(--ease), height 0.3s var(--ease), border-color 0.3s ease;
}
.cursor-ring.hover {
  width: 70px; height: 70px;
  border-color: var(--gold);
  background: rgba(184, 134, 27, 0.1);
}

@media (max-width: 968px) {
  .cursor-dot, .cursor-ring { display: none; }
}

/* ===== Loader ===== */
.loader {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.loader.hide { opacity: 0; visibility: hidden; }
.loader-inner { text-align: center; }
.loader-logo {
  width: 120px; height: 120px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 50%;
  overflow: hidden;
  animation: pulse 1.6s ease-in-out infinite;
  box-shadow: 0 12px 40px rgba(184, 134, 27, 0.35), 0 0 0 1px rgba(184, 134, 27, 0.15);
}
.loader-img {
  width: 70%;
  height: 70%;
  object-fit: contain;
}
.loader-bar {
  width: 200px;
  height: 2px;
  background: rgba(184, 134, 27, 0.15);
  border-radius: 2px;
  overflow: hidden;
  margin: 0 auto;
}
.loader-fill {
  width: 100%;
  height: 100%;
  background: var(--gold);
  transform: translateX(-100%);
  animation: load 1.4s var(--ease) infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.05); opacity: 0.85; }
}
@keyframes load {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

/* ===== Header ===== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 24px 0;
  transition: all 0.5s var(--ease);
  background: linear-gradient(180deg, rgba(251, 247, 237, 0.7) 0%, rgba(251, 247, 237, 0) 100%);
  backdrop-filter: blur(0px);
}
.header.scrolled {
  padding: 16px 0;
  background: rgba(251, 247, 237, 0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 4px 24px -8px rgba(42, 31, 21, 0.08);
}
.header-inner {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo-link { display: block; }
.logo {
  display: flex;
  align-items: center;
  gap: 14px;
}
.logo-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #f5f1e8;
  box-shadow: 0 6px 24px -8px rgba(212, 160, 23, 0.6), 0 0 0 1px rgba(212, 160, 23, 0.25);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
  overflow: hidden;
}
.logo-mark-img {
  width: 80%;
  height: 80%;
  object-fit: contain;
}
.logo:hover .logo-badge {
  transform: rotate(-6deg) scale(1.06);
  box-shadow: 0 10px 32px -6px rgba(212, 160, 23, 0.7), 0 0 0 1px rgba(212, 160, 23, 0.4);
}
.logo-text {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--ink);
}

.nav {
  display: flex;
  gap: 36px;
  align-items: center;
}
.nav-item {
  position: relative;
}
.nav-link {
  position: relative;
  display: flex;
  align-items: baseline;
  gap: 6px;
  font-family: var(--en);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.1em;
  padding: 8px 0;
  transition: color 0.3s ease;
}
.nav-num {
  font-size: 10px;
  color: var(--gold);
  font-feature-settings: "tnum";
}
.nav-txt { position: relative; }
.nav-chev {
  width: 10px;
  height: 10px;
  margin-left: 4px;
  transition: transform 0.4s var(--ease);
  align-self: center;
}
.nav-item.has-dropdown:hover .nav-chev,
.nav-item.has-dropdown:focus-within .nav-chev {
  transform: rotate(180deg);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s var(--ease);
}
.nav-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}
.nav-link:hover { color: var(--gold); }

/* ===== Nav Dropdown ===== */
.nav-dropdown {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  min-width: 360px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.4s var(--ease), visibility 0.4s var(--ease), transform 0.4s var(--ease);
  box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.6), 0 0 0 1px var(--line-2);
  z-index: 50;
}
.nav-dropdown::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 14px;
  height: 14px;
  background: var(--bg-2);
  border-left: 1px solid var(--line);
  border-top: 1px solid var(--line);
}
.nav-dropdown::after {
  content: '';
  position: absolute;
  top: -20px;
  left: 0;
  right: 0;
  height: 20px;
}
.nav-item.has-dropdown:hover .nav-dropdown,
.nav-item.has-dropdown:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.dropdown-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 14px;
  margin-bottom: 12px;
  border-bottom: 1px solid var(--line);
}
.dropdown-head-jp {
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.dropdown-head-en {
  font-family: var(--en);
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
}

.dropdown-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.dropdown-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 12px;
  border-radius: 4px;
  transition: background 0.25s ease, transform 0.25s var(--ease);
}
.dropdown-item:hover {
  background: var(--bg-3);
  transform: translateX(4px);
}
.dropdown-item:hover .dropdown-name { color: var(--gold); }
.dropdown-num {
  font-family: var(--en);
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--gold);
  min-width: 22px;
}
.dropdown-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
  flex: 1;
}
.dropdown-name {
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  transition: color 0.25s ease;
}
.dropdown-en {
  font-family: var(--en);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.dropdown-arrow {
  width: 14px;
  height: 14px;
  color: var(--ink-3);
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.25s ease, transform 0.25s var(--ease), color 0.25s ease;
}
.dropdown-item:hover .dropdown-arrow {
  opacity: 1;
  transform: translateX(0);
  color: var(--gold);
}

.dropdown-all {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px;
  margin-top: 8px;
  border-top: 1px solid var(--line);
  font-family: var(--en);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  transition: background 0.25s ease, gap 0.3s var(--ease);
  border-radius: 4px;
}
.dropdown-all:hover {
  background: rgba(212, 160, 23, 0.08);
  gap: 16px;
}

/* ===== Mobile menu sublinks ===== */
.mobile-section {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
}
.mobile-link-with-toggle {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 12px;
  position: relative;
}
.mobile-sub-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 1px solid var(--line-2);
  border-radius: 50%;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  transition: transform 0.4s var(--ease), border-color 0.3s ease;
}
.mobile-sub-toggle svg { width: 12px; height: 12px; }
.mobile-section.open .mobile-sub-toggle {
  transform: rotate(180deg);
  border-color: var(--gold);
  color: var(--gold);
}
.mobile-sublinks {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.5s var(--ease), opacity 0.4s ease;
  overflow: hidden;
  opacity: 0;
  width: 100%;
  max-width: 320px;
}
.mobile-section.open .mobile-sublinks {
  grid-template-rows: 1fr;
  opacity: 1;
}
.mobile-sublinks-inner {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 0;
  padding-top: 8px;
}
.mobile-sublink {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 10px;
  font-family: var(--serif);
  font-size: 16px;
  color: var(--ink-2);
  transition: color 0.3s ease;
}
.mobile-sublink:hover {
  color: var(--gold);
}
.mobile-sublink span {
  font-family: var(--en);
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 0.15em;
}

.menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.menu-btn span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.4s var(--ease), opacity 0.4s ease;
}
.menu-btn.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-btn.active span:nth-child(2) { opacity: 0; }
.menu-btn.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 968px) {
  .nav { display: none; }
  .menu-btn { display: flex; }
}

/* ===== Mobile Menu ===== */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s var(--ease), visibility 0.5s var(--ease);
}
.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}
.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
  text-align: center;
}
.mobile-link {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 12px;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 700;
}
.mobile-link span {
  font-family: var(--en);
  font-size: 14px;
  color: var(--gold);
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 5vw 80px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url('images/hero-bg.jpg');
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
}
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg,
      rgba(8, 8, 8, 0.96) 0%,
      rgba(8, 8, 8, 0.94) 45%,
      rgba(8, 8, 8, 0.75) 62%,
      rgba(10, 10, 10, 0.3) 85%,
      rgba(10, 10, 10, 0.1) 100%);
  z-index: 1;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(8, 8, 8, 0.7) 0%,
    rgba(8, 8, 8, 0.15) 18%,
    rgba(8, 8, 8, 0.15) 75%,
    rgba(8, 8, 8, 0.9) 100%);
  z-index: 1;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(184, 134, 27, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184, 134, 27, 0.07) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(90deg, black 0%, black 40%, transparent 75%);
  z-index: 2;
  opacity: 0.7;
}
.hero-glow {
  position: absolute;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(212, 160, 23, 0.25) 0%, rgba(212, 160, 23, 0.08) 40%, transparent 70%);
  top: 60%;
  left: 30%;
  transform: translate(-50%, -50%);
  filter: blur(60px);
  animation: float 14s ease-in-out infinite;
  z-index: 2;
  mix-blend-mode: screen;
  pointer-events: none;
}
@media (max-width: 768px) {
  .hero-bg {
    background-position: 75% center;
  }
  .hero-bg::before {
    background: linear-gradient(180deg,
      rgba(10, 10, 10, 0.88) 0%,
      rgba(10, 10, 10, 0.82) 50%,
      rgba(10, 10, 10, 0.65) 100%);
  }
}
@keyframes float {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-50%, -55%) scale(1.1); }
}

.hero-content {
  position: relative;
  z-index: 5;
  max-width: 900px;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  background: rgba(20, 18, 14, 0.55);
  border: 1px solid rgba(212, 160, 23, 0.4);
  border-radius: 100px;
  font-family: var(--en);
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 40px;
  color: #f5f1e8;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}
.tag-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--gold);
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero-title {
  font-family: var(--serif);
  font-size: clamp(40px, 7vw, 96px);
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0.05em;
  margin-bottom: 32px;
  color: #ffffff;
  text-shadow:
    0 2px 12px rgba(0, 0, 0, 0.85),
    0 4px 32px rgba(0, 0, 0, 0.6);
}
.hero-line {
  display: block;
  overflow: hidden;
}
.char {
  display: inline-block;
  opacity: 0;
  transform: translateY(100%);
  animation: charIn 0.8s var(--ease) forwards;
}
.hero-line:nth-child(2) .char {
  color: #f5cf5b;
  text-shadow:
    0 2px 14px rgba(0, 0, 0, 0.9),
    0 0 32px rgba(212, 160, 23, 0.5);
}
@keyframes charIn {
  to { opacity: 1; transform: translateY(0); }
}
/* Stagger the chars */
.char:nth-child(1) { animation-delay: 0.1s; }
.char:nth-child(2) { animation-delay: 0.15s; }
.char:nth-child(3) { animation-delay: 0.2s; }
.char:nth-child(4) { animation-delay: 0.25s; }
.char:nth-child(5) { animation-delay: 0.3s; }
.char:nth-child(6) { animation-delay: 0.35s; }
.hero-line:nth-child(2) .char:nth-child(1) { animation-delay: 0.5s; }
.hero-line:nth-child(2) .char:nth-child(2) { animation-delay: 0.55s; }
.hero-line:nth-child(2) .char:nth-child(3) { animation-delay: 0.6s; }
.hero-line:nth-child(2) .char:nth-child(4) { animation-delay: 0.65s; }
.hero-line:nth-child(2) .char:nth-child(5) { animation-delay: 0.7s; }
.hero-line:nth-child(2) .char:nth-child(6) { animation-delay: 0.75s; }

.hero-sub {
  font-family: var(--serif);
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 2;
  color: #e8e2d0;
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeUp 1s var(--ease) 1.1s forwards;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 80px;
  opacity: 0;
  animation: fadeUp 1s var(--ease) 1.3s forwards;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.1em;
  border-radius: 100px;
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}
.btn svg { transition: transform 0.4s var(--ease); }
.btn-primary {
  background: var(--gold);
  color: #fff;
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover {
  background: var(--gold-2);
  transform: translateY(-2px);
  box-shadow: 0 18px 36px -10px rgba(184, 134, 27, 0.55);
}
.btn-primary:hover svg { transform: translateX(4px); }
.btn-ghost {
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid var(--line-2);
  color: var(--ink);
  box-shadow: var(--shadow);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(255, 255, 255, 0.95);
  transform: translateY(-2px);
}
.btn-full {
  width: 100%;
  justify-content: center;
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 32px;
  opacity: 0;
  animation: fadeUp 1s var(--ease) 1.5s forwards;
}
.meta-item .meta-num {
  font-family: var(--en);
  font-size: 36px;
  font-weight: 500;
  color: #f5cf5b;
  line-height: 1;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}
.meta-item .meta-num span { font-size: 18px; }
.meta-item .meta-label {
  font-family: var(--en);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #c9c3b5;
  margin-top: 6px;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.7);
}
.meta-divider {
  width: 1px;
  height: 40px;
  background: rgba(245, 241, 232, 0.3);
}

.hero-side {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  transform-origin: right center;
  font-family: var(--en);
  font-size: 12px;
  letter-spacing: 0.4em;
  color: var(--ink-2);
  z-index: 5;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}
@media (max-width: 968px) { .hero-side { display: none; } }

.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 5vw;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--en);
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--ink-2);
  z-index: 5;
}
.scroll-line {
  width: 48px;
  height: 1px;
  background: var(--ink-3);
  position: relative;
  overflow: hidden;
}
.scroll-line::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  animation: scrollDown 2.4s ease-in-out infinite;
}
@keyframes scrollDown {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

/* ===== Section Common ===== */
section {
  position: relative;
  padding: 140px 0;
}
.section-num {
  position: absolute;
  top: 60px;
  right: 5vw;
  font-family: var(--en);
  font-size: 220px;
  font-weight: 300;
  color: var(--gold);
  opacity: 0.08;
  line-height: 1;
  letter-spacing: -0.05em;
  pointer-events: none;
}
.section-head {
  margin-bottom: 80px;
}
.section-head-center { text-align: center; }
.section-label {
  display: inline-block;
  font-family: var(--en);
  font-size: 13px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  padding-left: 32px;
  position: relative;
}
.section-label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 20px;
  height: 1px;
  background: var(--gold);
}
.section-head-center .section-label { padding-left: 0; }
.section-head-center .section-label::before { display: none; }
.section-title {
  font-family: var(--serif);
  font-weight: 700;
  position: relative;
}
.title-jp {
  display: block;
  font-size: clamp(32px, 5vw, 60px);
  line-height: 1.4;
  letter-spacing: 0.05em;
}
.title-en {
  display: block;
  font-family: var(--en);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-top: 16px;
}

/* ===== About ===== */
.about { background: var(--bg); }
.about-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 968px) {
  .about-grid { grid-template-columns: 1fr; gap: 60px; }
}
.about-lead {
  font-family: var(--serif);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 2;
  color: var(--ink);
  margin-bottom: 32px;
  font-weight: 500;
}
.about-body {
  font-size: 15px;
  line-height: 2;
  color: var(--ink-2);
  margin-bottom: 64px;
}
.about-features {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.feature {
  display: flex;
  gap: 24px;
  padding: 28px 8px;
  border-top: 1px solid var(--line);
  transition: background 0.3s ease, padding 0.3s ease;
  border-radius: 8px;
}
.feature:hover {
  background: rgba(255, 255, 255, 0.5);
  padding: 28px 16px;
}
.feature:last-child { border-bottom: 1px solid var(--line); }
.feature-num {
  font-family: var(--en);
  font-size: 22px;
  color: var(--gold);
  min-width: 40px;
}
.feature-content h3 {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}
.feature-content p {
  font-size: 14px;
  line-height: 1.9;
  color: var(--ink-2);
}

.about-visual {
  position: sticky;
  top: 120px;
}
.visual-frame {
  position: relative;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, #fff 0%, var(--bg-2) 100%);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
}
.visual-frame::before {
  content: '';
  position: absolute;
  inset: 20px;
  border: 1px solid var(--gold-soft);
  pointer-events: none;
  z-index: 2;
}
.visual-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0.4) 50%, transparent 100%);
  z-index: 0;
}
.visual-logo {
  position: relative;
  z-index: 1;
  width: 75%;
  height: auto;
  max-width: 360px;
  object-fit: contain;
  filter: drop-shadow(0 20px 60px rgba(212, 160, 23, 0.35));
}
.visual-stamp {
  position: absolute;
  top: 40px;
  right: 40px;
  width: 80px;
  height: 80px;
  opacity: 0.8;
  animation: rotate 30s linear infinite;
}
@keyframes rotate {
  to { transform: rotate(360deg); }
}
.visual-caption {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.cap-en {
  font-family: var(--en);
  font-size: 14px;
  letter-spacing: 0.2em;
  color: var(--gold);
}
.cap-jp {
  font-family: var(--serif);
  font-size: 14px;
  color: var(--ink-2);
}

/* ===== Service ===== */
.service {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 1100px) {
  .service-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .service-grid { grid-template-columns: 1fr; }
}
.service-card {
  position: relative;
  padding: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  transition: all 0.5s var(--ease);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow);
}
.service-card::before {
  content: attr(data-num);
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
  font-family: var(--en);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: #fff;
  background: rgba(0, 0, 0, 0.5);
  padding: 5px 12px;
  border-radius: 100px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: background 0.4s ease;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s var(--ease);
  z-index: 2;
}
.service-card:hover::after { transform: scaleX(1); }
.service-card:hover {
  background: #fff;
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(184, 134, 27, 0.3);
}
.service-card:hover::before {
  background: rgba(212, 160, 23, 0.85);
}

/* Image area */
.service-image {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: linear-gradient(135deg, #1a1816, #2a2520);
}
.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.9s var(--ease);
}
.service-card:hover .service-image img {
  transform: scale(1.08);
}
.service-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, 0.25) 100%);
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.service-card:hover .service-image::after {
  opacity: 0.6;
}

/* Hide legacy icon */
.service-icon { display: none; }

/* Text content positioning */
.service-name {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 4px;
  padding: 26px 28px 0;
}
.service-en {
  font-family: var(--en);
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 16px;
  padding: 0 28px;
}
.service-desc {
  font-size: 13px;
  line-height: 1.9;
  color: var(--ink-2);
  margin: 0 0 20px;
  padding: 0 28px;
  flex: 1;
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--en);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.85;
  margin: 0 28px 26px;
  align-self: flex-start;
  transition: gap 0.4s var(--ease), opacity 0.4s ease;
}
.service-link svg { transition: transform 0.4s var(--ease); }
.service-card { display: block; }
.service-card:hover .service-link {
  opacity: 1;
  gap: 14px;
}
.service-card:hover .service-link svg { transform: translateX(4px); }
.service-card-cta {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-2) 100%);
  color: #fff;
  border: none;
  padding: 40px 30px;
  box-shadow: var(--shadow-gold);
  min-height: 360px;
}
.service-card-cta:hover {
  background: linear-gradient(135deg, var(--gold-2) 0%, var(--gold) 100%);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px -10px rgba(184, 134, 27, 0.55);
  border: none;
}
.service-card-cta::before { display: none; }
.service-card-cta::after { display: none; }
.cta-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
}
.cta-label {
  font-family: var(--en);
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
}
.cta-title {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 700;
  line-height: 1.5;
  margin-top: 16px;
}
.cta-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border: 1.5px solid #fff;
  border-radius: 50%;
  margin-top: 24px;
  align-self: flex-start;
  transition: all 0.4s var(--ease);
  color: #fff;
}
.cta-arrow svg { width: 18px; height: 18px; }
.cta-arrow:hover {
  background: #fff;
  color: var(--gold);
  transform: rotate(-45deg);
}

/* ===== Works ===== */
.works { background: linear-gradient(180deg, var(--bg-2) 0%, var(--bg) 100%); }
.works-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 320px);
  gap: 16px;
  margin-bottom: 80px;
}
.work-item-1 { grid-column: span 2; grid-row: span 2; }
.work-item-2 { grid-column: span 2; }
.work-item-3 { grid-column: span 1; }
.work-item-4 { grid-column: span 1; }
@media (max-width: 968px) {
  .works-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(4, 260px); }
  .work-item-1, .work-item-2 { grid-column: span 2; grid-row: span 1; }
  .work-item-3, .work-item-4 { grid-column: span 1; }
}
.work-item {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: box-shadow 0.5s var(--ease);
}
.work-item:hover { box-shadow: var(--shadow-lg); }
.work-visual {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 32px;
  transition: transform 0.8s var(--ease);
}
.work-item:hover .work-visual { transform: scale(1.03); }
.work-pattern {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.pattern-weld {
  background:
    radial-gradient(circle at 30% 40%, rgba(255, 180, 50, 0.5) 0%, transparent 25%),
    radial-gradient(circle at 70% 60%, rgba(255, 140, 30, 0.4) 0%, transparent 20%),
    radial-gradient(circle at 50% 80%, rgba(212, 160, 23, 0.5) 0%, transparent 30%),
    linear-gradient(135deg, #f4ecd8 0%, #f9e8b8 50%, #f4ecd8 100%);
}
.pattern-weld::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent 0px,
    transparent 10px,
    rgba(184, 134, 27, 0.08) 10px,
    rgba(184, 134, 27, 0.08) 12px
  );
}
.pattern-steel {
  background:
    repeating-linear-gradient(0deg, #ebe1c8 0px, #ebe1c8 38px, #d8c89e 38px, #d8c89e 42px),
    linear-gradient(135deg, #f0e6cd, #e0d3b0);
}
.pattern-steel::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(184, 134, 27, 0.25) 0%, transparent 60%);
}
.pattern-paint {
  background:
    linear-gradient(180deg, #c8d7c1 0%, #a3c0a8 60%, #7da38c 100%);
}
.pattern-paint::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(90deg, transparent 0px, transparent 30px, rgba(255,255,255,0.15) 30px, rgba(255,255,255,0.15) 32px),
    radial-gradient(circle at 30% 50%, rgba(255,255,255,0.25) 0%, transparent 50%);
}
.pattern-helmet {
  background:
    radial-gradient(ellipse at 50% 50%, #ffffff 0%, #f8efd5 35%, #e6d098 70%, #b8861b 100%);
}
.pattern-helmet::after {
  content: '悠';
  position: absolute;
  top: 42%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--serif);
  font-size: 100px;
  font-weight: 900;
  color: rgba(42, 31, 21, 0.55);
}
.work-overlay {
  position: relative;
  z-index: 2;
  background: linear-gradient(180deg, transparent 0%, rgba(42, 31, 21, 0.92) 100%);
  margin: -32px;
  padding: 80px 32px 32px;
  width: calc(100% + 64px);
  align-self: flex-end;
  color: #fff;
}
.work-overlay h3 { color: #fff; }
.work-overlay p { color: rgba(255, 255, 255, 0.85); }
.work-cat {
  display: inline-block;
  font-family: var(--en);
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
  padding: 4px 10px;
  border: 1px solid var(--gold);
  border-radius: 100px;
}
.work-overlay h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
  margin-top: 12px;
  margin-bottom: 4px;
}
.work-overlay p {
  font-size: 13px;
  color: var(--ink-2);
}

.works-marquee {
  overflow: hidden;
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 32px 0;
  margin: 0 -5vw;
  border-radius: 0;
}
.marquee-track {
  display: flex;
  gap: 40px;
  white-space: nowrap;
  animation: marquee 40s linear infinite;
  font-family: var(--en);
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 0.3em;
  color: var(--ink-2);
}
.marquee-track .dot { color: var(--gold); }
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ===== Recruit ===== */
.recruit {
  background:
    linear-gradient(135deg, var(--bg-2) 0%, var(--bg) 100%);
  position: relative;
}
.recruit::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  background: radial-gradient(circle at 80% 50%, rgba(212, 160, 23, 0.22) 0%, transparent 60%);
  pointer-events: none;
}
.recruit-inner { position: relative; z-index: 1; }
.recruit-head {
  text-align: center;
  margin-bottom: 100px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.recruit-head .section-label {
  padding-left: 0;
}
.recruit-head .section-label::before {
  display: none;
}
.recruit-title {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.5;
  margin: 24px 0 32px;
}
.recruit-title span { display: inline; }
.recruit-title .gold {
  color: var(--gold);
  position: relative;
  display: inline-block;
}
.recruit-title .gold::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 8px;
  background: rgba(212, 160, 23, 0.2);
  z-index: -1;
}
.recruit-lead {
  font-family: var(--serif);
  font-size: 16px;
  line-height: 2;
  color: var(--ink-2);
}

.recruit-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 968px) {
  .recruit-content { grid-template-columns: 1fr; }
}
.recruit-block {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 40px 32px;
  transition: all 0.5s var(--ease);
  box-shadow: var(--shadow);
}
.recruit-block:hover {
  border-color: rgba(184, 134, 27, 0.35);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.block-title {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
}
.block-num {
  font-family: var(--en);
  font-size: 13px;
  color: var(--gold);
  letter-spacing: 0.2em;
}
.recruit-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.recruit-list li {
  position: relative;
  padding-left: 24px;
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.7;
}
.recruit-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 12px;
  height: 1px;
  background: var(--gold);
}
.recruit-method {
  font-size: 14px;
  line-height: 1.9;
  color: var(--ink-2);
  margin-bottom: 24px;
}
.recruit-more {
  display: flex;
  justify-content: center;
  margin-top: 60px;
}

/* ===== Contact ===== */
.contact { background: var(--bg); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  max-width: 1100px;
  margin: 0 auto;
}
@media (max-width: 968px) {
  .contact-grid { grid-template-columns: 1fr; gap: 60px; }
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.info-item .info-label {
  display: block;
  font-family: var(--en);
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.info-item .info-value {
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.7;
}
.info-item a {
  color: var(--ink);
  border-bottom: 1px solid var(--gold);
  transition: color 0.3s ease;
}
.info-item a:hover { color: var(--gold); }

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* エラーメッセージ */
.form-alert {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: rgba(220, 80, 80, 0.08);
  border: 1px solid rgba(220, 80, 80, 0.35);
  border-radius: 6px;
  color: #f0a0a0;
  font-size: 14px;
  line-height: 1.6;
  animation: alertIn 0.4s var(--ease, cubic-bezier(0.22, 1, 0.36, 1));
}
.form-alert svg {
  flex-shrink: 0;
  color: #e88080;
}
@keyframes alertIn {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ハニーポット（人間には不可視） */
.hp-field {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-group label {
  font-family: var(--en);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-2);
}
.form-group label span { color: var(--gold); }
.form-group input,
.form-group select,
.form-group textarea {
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: 16px 20px;
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  resize: vertical;
  box-shadow: var(--shadow);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(184, 134, 27, 0.12);
}

/* ===== Footer ===== */
.footer {
  background: linear-gradient(180deg, var(--bg-2) 0%, var(--bg-3) 100%);
  border-top: 1px solid var(--line);
  padding: 80px 0 40px;
}
.footer-main {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--line);
}
@media (max-width: 768px) {
  .footer-main { grid-template-columns: 1fr; gap: 40px; }
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.footer-badge {
  width: 48px;
  height: 48px;
}
.footer-badge img {
  width: 80%;
  height: 80%;
  object-fit: contain;
}
.footer-logo span {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.1em;
}
.footer-tagline {
  font-family: var(--serif);
  font-size: 14px;
  color: var(--ink-2);
  letter-spacing: 0.05em;
}
.footer-nav h4, .footer-contact h4 {
  font-family: var(--en);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.footer-nav a, .footer-contact a, .footer-contact p {
  display: block;
  font-size: 14px;
  color: var(--ink-2);
  margin-bottom: 12px;
  transition: color 0.3s ease;
}
.footer-nav a:hover, .footer-contact a:hover {
  color: var(--gold);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 32px;
  font-family: var(--en);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--ink-3);
}
@media (max-width: 600px) {
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

/* ===== Reveal Animation ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal-stagger.visible > * {
  opacity: 1;
  transform: translateY(0);
}
.reveal-stagger.visible > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger.visible > *:nth-child(2) { transition-delay: 0.1s; }
.reveal-stagger.visible > *:nth-child(3) { transition-delay: 0.15s; }
.reveal-stagger.visible > *:nth-child(4) { transition-delay: 0.2s; }
.reveal-stagger.visible > *:nth-child(5) { transition-delay: 0.25s; }
.reveal-stagger.visible > *:nth-child(6) { transition-delay: 0.3s; }
.reveal-stagger.visible > *:nth-child(7) { transition-delay: 0.35s; }
.reveal-stagger.visible > *:nth-child(8) { transition-delay: 0.4s; }

/* ============================================
   SERVICE DETAIL PAGES
   ============================================ */

/* Page Hero */
.page-hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 160px 5vw 100px;
  overflow: hidden;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse at 80% 30%, rgba(212, 160, 23, 0.28) 0%, transparent 55%),
    radial-gradient(ellipse at 10% 80%, rgba(255, 200, 100, 0.18) 0%, transparent 45%);
}
.page-hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(184, 134, 27, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184, 134, 27, 0.07) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at center, black 0%, transparent 75%);
}
.page-hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 968px) {
  .page-hero-inner { grid-template-columns: 1fr; gap: 60px; }
}

.breadcrumb {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--en);
  font-size: 13px;
  letter-spacing: 0.15em;
  color: var(--ink-3);
  margin-bottom: 40px;
}
.breadcrumb a {
  transition: color 0.3s ease;
}
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span:not(.current) { color: var(--ink-3); }
.breadcrumb .current { color: var(--gold); }

.page-num {
  display: inline-block;
  font-family: var(--en);
  font-size: 14px;
  letter-spacing: 0.3em;
  color: var(--gold);
  margin-bottom: 24px;
  padding: 6px 14px;
  border: 1px solid var(--gold);
  border-radius: 100px;
}
.page-title {
  font-family: var(--serif);
  margin-bottom: 32px;
}
.page-title-jp {
  display: block;
  font-size: clamp(40px, 7vw, 92px);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}
.page-title-en {
  display: block;
  font-family: var(--en);
  font-size: clamp(18px, 2vw, 28px);
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
}
.page-tagline {
  font-family: var(--serif);
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 28px;
  line-height: 1.6;
}
.page-tagline .gold { color: var(--gold); }
.page-lead {
  font-size: 15px;
  line-height: 2;
  color: var(--ink-2);
  max-width: 580px;
}

.page-hero-visual {
  position: relative;
  aspect-ratio: 1 / 1;
  background: linear-gradient(135deg, #fff 0%, var(--bg-2) 100%);
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
}
.page-hero-visual::before {
  content: '';
  position: absolute;
  inset: 16px;
  border: 1px solid var(--gold-soft);
  border-radius: 12px;
  pointer-events: none;
  z-index: 2;
}
.page-hero-icon {
  position: relative;
  z-index: 3;
  width: 50%;
  height: 50%;
  color: var(--gold);
  filter: drop-shadow(0 8px 20px rgba(184, 134, 27, 0.35));
}
.page-hero-visual .bg-kanji {
  position: absolute;
  font-family: var(--serif);
  font-size: 18vw;
  font-weight: 900;
  color: var(--gold);
  opacity: 0.12;
  line-height: 1;
  z-index: 1;
}

/* Overview Section */
.overview {
  background: var(--bg);
  padding: 140px 0;
  position: relative;
}
.overview-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 968px) {
  .overview-grid { grid-template-columns: 1fr; gap: 40px; }
}
.overview-label {
  font-family: var(--en);
  font-size: 13px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  padding-left: 32px;
  position: relative;
  margin-top: 8px;
}
.overview-label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 20px;
  height: 1px;
  background: var(--gold);
}
.overview-content h2 {
  font-family: var(--serif);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 32px;
  letter-spacing: 0.04em;
}
.overview-content p {
  font-size: 16px;
  line-height: 2.1;
  color: var(--ink-2);
  margin-bottom: 20px;
}

/* Process Section */
.process-section {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
  padding: 140px 0;
}
.process-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 1100px;
  margin: 0 auto;
}
.process-item {
  display: grid;
  grid-template-columns: 80px 1fr 1.4fr;
  gap: 40px;
  padding: 40px 0;
  border-top: 1px solid var(--line);
  align-items: start;
  position: relative;
  transition: background 0.4s ease;
}
.process-item:last-child { border-bottom: 1px solid var(--line); }
.process-item:hover { background: rgba(212, 160, 23, 0.03); }
@media (max-width: 768px) {
  .process-item { grid-template-columns: 1fr; gap: 16px; }
}
.process-num {
  font-family: var(--en);
  font-size: 48px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}
.process-info h3 {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
}
.process-info-en {
  font-family: var(--en);
  font-size: 12px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.process-detail {
  font-size: 15px;
  line-height: 1.95;
  color: var(--ink-2);
}

/* Strengths Section */
.strengths-section {
  background: var(--bg-2);
  padding: 140px 0;
}
.strengths-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}
@media (max-width: 968px) {
  .strengths-grid { grid-template-columns: 1fr; }
}
.strength-card {
  background: #fff;
  border: 1px solid var(--line);
  padding: 48px 36px;
  border-radius: 16px;
  position: relative;
  transition: all 0.5s var(--ease);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.strength-card::before {
  content: attr(data-num);
  position: absolute;
  top: -20px;
  right: 24px;
  font-family: var(--en);
  font-size: 140px;
  font-weight: 300;
  color: var(--gold);
  opacity: 0.06;
  line-height: 1;
  transition: opacity 0.5s ease;
}
.strength-card:hover {
  border-color: rgba(184, 134, 27, 0.35);
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.strength-card:hover::before {
  opacity: 0.15;
}
.strength-icon {
  width: 48px;
  height: 48px;
  color: var(--gold);
  margin-bottom: 28px;
  position: relative;
}
.strength-title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 16px;
  position: relative;
}
.strength-desc {
  font-size: 14px;
  line-height: 1.95;
  color: var(--ink-2);
  position: relative;
}

/* Applications Section */
.applications {
  background: var(--bg);
  padding: 140px 0;
}
.applications-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 60px;
}
@media (max-width: 968px) {
  .applications-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .applications-grid { grid-template-columns: 1fr; }
}
.app-card {
  padding: 32px 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  text-align: center;
  transition: all 0.4s var(--ease);
  box-shadow: var(--shadow);
}
.app-card:hover {
  border-color: rgba(184, 134, 27, 0.35);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.app-icon {
  width: 40px;
  height: 40px;
  color: var(--gold);
  margin: 0 auto 16px;
}
.app-name {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
}
.app-desc {
  font-size: 12px;
  color: var(--ink-3);
  letter-spacing: 0.05em;
}

/* Materials/Equipment list */
.materials-section {
  background: var(--bg-2);
  padding: 140px 0;
}
.materials-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 48px;
}
@media (max-width: 768px) {
  .materials-list { grid-template-columns: 1fr; }
}
.material-item {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 22px 26px;
  background: #fff;
  border-left: 3px solid var(--gold);
  border-radius: 0 12px 12px 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: var(--shadow);
}
.material-item:hover {
  transform: translateX(8px);
  box-shadow: var(--shadow-lg);
}
.material-num {
  font-family: var(--en);
  font-size: 13px;
  color: var(--gold);
  letter-spacing: 0.15em;
  min-width: 30px;
}
.material-name {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 4px;
}
.material-desc {
  font-size: 13px;
  color: var(--ink-2);
  line-height: 1.7;
}

/* Page CTA */
.page-cta {
  background:
    linear-gradient(135deg, rgba(212, 160, 23, 0.18) 0%, rgba(251, 247, 237, 0) 60%),
    var(--bg-2);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line);
}
.page-cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .page-cta-inner { grid-template-columns: 1fr; text-align: center; }
}
.page-cta h2 {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 16px;
}
.page-cta h2 .gold { color: var(--gold); }
.page-cta p {
  font-size: 15px;
  line-height: 1.95;
  color: var(--ink-2);
}
.page-cta-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (max-width: 768px) {
  .page-cta-actions { flex-direction: row; justify-content: center; flex-wrap: wrap; }
}

/* Other Services */
.other-services {
  background: var(--bg);
  padding: 100px 0;
  border-top: 1px solid var(--line);
}
.other-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 48px;
  flex-wrap: wrap;
  gap: 20px;
}
.other-head h2 {
  font-family: var(--serif);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
}
.other-head .other-en {
  font-family: var(--en);
  font-size: 13px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
}
.other-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 968px) {
  .other-grid { grid-template-columns: 1fr; }
}
.other-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 28px 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  transition: all 0.4s var(--ease);
  box-shadow: var(--shadow);
}
.other-card:hover {
  border-color: rgba(184, 134, 27, 0.3);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.other-card-left {
  display: flex;
  align-items: center;
  gap: 16px;
}
.other-card-num {
  font-family: var(--en);
  font-size: 13px;
  letter-spacing: 0.2em;
  color: var(--gold);
}
.other-card-name {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
}
.other-card-arrow {
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-3);
  transition: all 0.4s var(--ease);
  flex-shrink: 0;
}
.other-card:hover .other-card-arrow {
  border-color: var(--gold);
  background: var(--gold);
  color: #fff;
  transform: rotate(-45deg);
}
.other-card-arrow svg { width: 14px; height: 14px; }

/* ============================================
   RECRUIT PAGE
   ============================================ */

/* Recruit Hero */
.recruit-hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 160px 5vw 100px;
  overflow: hidden;
  background: var(--bg);
}
.recruit-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.recruit-hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 75% 35%, rgba(212, 160, 23, 0.18) 0%, transparent 55%),
    radial-gradient(ellipse at 15% 70%, rgba(212, 160, 23, 0.1) 0%, transparent 50%);
}
.recruit-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(212, 160, 23, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212, 160, 23, 0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at center, black 0%, transparent 75%);
}
.recruit-hero .container {
  position: relative;
  z-index: 1;
}
.recruit-hero .breadcrumb {
  margin-bottom: 40px;
}
.recruit-hero-content {
  max-width: 920px;
}
.recruit-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  border: 1px solid var(--line-2);
  border-radius: 100px;
  font-family: var(--en);
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 36px;
  color: var(--ink-2);
}
.recruit-hero-title {
  font-family: var(--serif);
  font-size: clamp(36px, 6vw, 80px);
  font-weight: 900;
  line-height: 1.3;
  letter-spacing: 0.05em;
  margin-bottom: 32px;
}
.recruit-hero-title span {
  display: inline-block;
}
.recruit-hero-title .gold {
  color: var(--gold);
  position: relative;
}
.recruit-hero-title .gold::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 6px;
  height: 10px;
  background: rgba(212, 160, 23, 0.18);
  z-index: -1;
}
.recruit-hero-sub {
  font-family: var(--serif);
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 2;
  color: var(--ink-2);
  margin-bottom: 48px;
  max-width: 720px;
}
.recruit-hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.recruit-stats {
  display: flex;
  gap: 48px;
  margin-top: 80px;
  flex-wrap: wrap;
}
.recruit-stat .stat-num {
  font-family: var(--en);
  font-size: 42px;
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
}
.recruit-stat .stat-num span { font-size: 22px; }
.recruit-stat .stat-label {
  font-family: var(--en);
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-top: 8px;
}
.recruit-stat .stat-jp {
  font-family: var(--serif);
  font-size: 13px;
  color: var(--ink-2);
  margin-top: 4px;
}

/* Message Section */
.message-section {
  background: var(--bg);
  padding: 140px 0;
}
.message-grid {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 968px) {
  .message-grid { grid-template-columns: 1fr; gap: 32px; }
}
.message-label {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: sticky;
  top: 120px;
}
.recruit-num {
  font-family: var(--en);
  font-size: 80px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  opacity: 0.4;
}
.message-content h2 {
  font-family: var(--serif);
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 32px;
  letter-spacing: 0.04em;
}
.message-content h2 .gold { color: var(--gold); }
.message-content p {
  font-size: 16px;
  line-height: 2.1;
  color: var(--ink-2);
  margin-bottom: 20px;
}
.message-signature {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 16px;
}
.signature-badge {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #f5f1e8;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.signature-badge img { width: 78%; height: 78%; object-fit: contain; }
.signature-text {
  font-family: var(--serif);
  font-size: 14px;
  color: var(--ink-2);
}
.signature-text .name {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
}

/* Why Section */
.why-section {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
  padding: 140px 0;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 60px;
}
@media (max-width: 1100px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .why-grid { grid-template-columns: 1fr; } }
.why-card {
  position: relative;
  padding: 40px 28px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  transition: all 0.5s var(--ease);
}
.why-card::before {
  content: attr(data-num);
  position: absolute;
  top: -10px;
  right: 18px;
  font-family: var(--en);
  font-size: 110px;
  font-weight: 300;
  color: var(--gold);
  opacity: 0.06;
  line-height: 1;
  transition: opacity 0.5s ease;
}
.why-card:hover {
  border-color: var(--gold);
  transform: translateY(-6px);
}
.why-card:hover::before { opacity: 0.18; }
.why-icon {
  width: 44px;
  height: 44px;
  color: var(--gold);
  margin-bottom: 24px;
  position: relative;
}
.why-title {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 14px;
  line-height: 1.5;
  position: relative;
}
.why-desc {
  font-size: 13px;
  line-height: 1.9;
  color: var(--ink-2);
  position: relative;
}

/* Positions Section */
.positions-section {
  background: var(--bg-2);
  padding: 140px 0;
}
.positions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-top: 60px;
}
@media (max-width: 768px) {
  .positions-grid { grid-template-columns: 1fr; }
}
.position-item {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 32px;
  background: var(--bg-2);
  transition: background 0.3s ease;
}
.position-item:hover { background: var(--bg-3); }
.position-icon {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  color: var(--gold);
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 160, 23, 0.05);
}
.position-icon svg { width: 24px; height: 24px; }
.position-info { flex: 1; }
.position-name {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
}
.position-desc {
  font-size: 13px;
  color: var(--ink-2);
  line-height: 1.7;
}
.position-tags {
  display: flex;
  gap: 6px;
  margin-top: 10px;
  flex-wrap: wrap;
}
.position-tag {
  display: inline-block;
  font-family: var(--en);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 3px 10px;
  border: 1px solid var(--gold);
  border-radius: 100px;
}

/* Benefits Section */
.benefits-section {
  background: var(--bg);
  padding: 140px 0;
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 60px;
}
@media (max-width: 968px) { .benefits-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .benefits-grid { grid-template-columns: 1fr; } }
.benefit-card {
  padding: 32px 28px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 4px;
  border-left: 3px solid var(--gold);
  transition: transform 0.4s var(--ease), border-color 0.4s ease;
}
.benefit-card:hover {
  transform: translateX(6px);
  border-left-color: var(--gold-2);
}
.benefit-icon {
  width: 36px;
  height: 36px;
  color: var(--gold);
  margin-bottom: 18px;
}
.benefit-title {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
}
.benefit-desc {
  font-size: 13px;
  line-height: 1.8;
  color: var(--ink-2);
}

/* Day Schedule */
.day-section {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
  padding: 140px 0;
}
.day-schedule {
  display: flex;
  flex-direction: column;
  max-width: 880px;
  margin: 60px auto 0;
  position: relative;
}
.day-schedule::before {
  content: '';
  position: absolute;
  left: 100px;
  top: 24px;
  bottom: 24px;
  width: 1px;
  background: var(--line);
}
@media (max-width: 600px) {
  .day-schedule::before { left: 60px; }
}
.day-item {
  display: grid;
  grid-template-columns: 100px 32px 1fr;
  gap: 24px;
  align-items: start;
  padding: 24px 0;
  position: relative;
}
@media (max-width: 600px) {
  .day-item { grid-template-columns: 60px 24px 1fr; gap: 14px; }
}
.day-time {
  font-family: var(--en);
  font-size: 22px;
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
  padding-top: 4px;
}
.day-dot {
  width: 14px;
  height: 14px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  background: var(--bg);
  position: relative;
  z-index: 1;
  justify-self: center;
  margin-top: 6px;
}
.day-content h3 {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
}
.day-content p {
  font-size: 14px;
  line-height: 1.85;
  color: var(--ink-2);
}

/* Career Section */
.career-section {
  background: var(--bg-2);
  padding: 140px 0;
}
.career-path {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 60px;
  position: relative;
}
@media (max-width: 968px) { .career-path { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .career-path { grid-template-columns: 1fr; } }
.career-step {
  position: relative;
  padding: 32px 24px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 4px;
  transition: all 0.4s var(--ease);
}
.career-step:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}
.career-step-num {
  font-family: var(--en);
  font-size: 13px;
  letter-spacing: 0.25em;
  color: var(--gold);
  margin-bottom: 12px;
}
.career-step-year {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 6px;
}
.career-step-role {
  font-family: var(--en);
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.career-step-desc {
  font-size: 13px;
  line-height: 1.85;
  color: var(--ink-2);
}

/* FAQ Section */
.faq-section {
  background: var(--bg);
  padding: 140px 0;
}
.faq-list {
  max-width: 920px;
  margin: 60px auto 0;
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 0;
  cursor: pointer;
  user-select: none;
  transition: color 0.3s ease;
}
.faq-question:hover .faq-q-text { color: var(--gold); }
.faq-q-mark {
  font-family: var(--en);
  font-size: 22px;
  font-weight: 500;
  color: var(--gold);
  min-width: 36px;
}
.faq-q-text {
  flex: 1;
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 700;
  transition: color 0.3s ease;
}
.faq-toggle {
  width: 32px;
  height: 32px;
  border: 1px solid var(--line-2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.4s var(--ease), border-color 0.3s ease;
  color: var(--ink-2);
}
.faq-toggle svg { width: 12px; height: 12px; }
.faq-item.open .faq-toggle {
  transform: rotate(45deg);
  border-color: var(--gold);
  color: var(--gold);
}
.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.5s var(--ease), opacity 0.4s ease;
  overflow: hidden;
  opacity: 0;
}
.faq-item.open .faq-answer {
  grid-template-rows: 1fr;
  opacity: 1;
}
.faq-answer-inner {
  min-height: 0;
  padding: 0 0 28px 56px;
  display: flex;
  align-items: baseline;
  gap: 16px;
}
.faq-a-mark {
  font-family: var(--en);
  font-size: 16px;
  color: var(--ink-3);
  letter-spacing: 0.1em;
}
.faq-a-text {
  font-size: 14px;
  line-height: 1.95;
  color: var(--ink-2);
}

/* Application Steps */
.application-section {
  background: linear-gradient(135deg, var(--bg-2) 0%, var(--bg) 100%);
  padding: 140px 0;
  position: relative;
  overflow: hidden;
}
.application-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 60px;
  position: relative;
}
@media (max-width: 1100px) { .application-steps { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 700px) { .application-steps { grid-template-columns: 1fr; } }
.app-step {
  padding: 28px 22px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 4px;
  position: relative;
  transition: transform 0.4s var(--ease), border-color 0.4s ease;
}
.app-step:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
}
.app-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--gold);
  color: var(--bg);
  font-family: var(--en);
  font-size: 14px;
  font-weight: 700;
  border-radius: 50%;
  margin-bottom: 18px;
}
.app-step-title {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.5;
}
.app-step-desc {
  font-size: 12.5px;
  line-height: 1.85;
  color: var(--ink-2);
}

/* Recruit Final CTA */
.recruit-final-cta {
  background: var(--bg);
  padding: 140px 0;
  position: relative;
  overflow: hidden;
}
.recruit-final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(212, 160, 23, 0.15) 0%, transparent 60%);
}
.recruit-final-inner {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.recruit-final-inner h2 {
  font-family: var(--serif);
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 900;
  line-height: 1.45;
  margin-bottom: 32px;
  letter-spacing: 0.04em;
}
.recruit-final-inner h2 .gold { color: var(--gold); }
.recruit-final-inner p {
  font-family: var(--serif);
  font-size: 16px;
  line-height: 2;
  color: var(--ink-2);
  margin-bottom: 48px;
}
.recruit-final-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== Selection ===== */
::selection {
  background: var(--gold);
  color: var(--bg);
}

/* ===== Scrollbar ===== */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb {
  background: var(--bg-3);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover { background: var(--gold); }
