/* ═══════════════════════════════════════════
   cameraman.jp — REDESIGN v3 (SANYO-grade)
   フルスクリーン写真 + パララックス + 動的アニメーション
   ═══════════════════════════════════════════ */

/* ─── RESET & BASE ─── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: 'Noto Sans JP', 'Inter', sans-serif;
  color: #1a1a1a;
  background: #0a0a0a;
  overflow-x: hidden;
  line-height: 1.8;
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* ─── TYPOGRAPHY ─── */
:root {
  --font-en: 'Cormorant Garamond', serif;
  --font-jp: 'Shippori Mincho', 'Noto Sans JP', serif;
  --font-sans: 'Noto Sans JP', 'Inter', sans-serif;
  --color-bg: #0a0a0a;
  --color-text: #f5f0eb;
  --color-accent: #c9a96e;
  --color-accent2: #8fb3a9;
  --color-warm: #d4a574;
  --ease-out: cubic-bezier(.25, .46, .45, .94);
  --ease-expo: cubic-bezier(.16, 1, .3, 1);
}

/* ─── CUSTOM CURSOR (desktop only) ─── */
@media (hover: hover) {
  body {
    cursor: none;
  }

  a,
  button,
  details summary {
    cursor: none;
  }

  .cursor-dot {
    position: fixed;
    top: 0;
    left: 0;
    width: 8px;
    height: 8px;
    background: var(--color-accent);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
    transition: width .2s, height .2s, background .2s;
    mix-blend-mode: difference;
  }

  .cursor-ring {
    position: fixed;
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
    border: 1.5px solid rgba(201, 169, 110, .5);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width .3s var(--ease-expo), height .3s var(--ease-expo), border-color .3s;
  }

  .cursor-dot.hover {
    width: 50px;
    height: 50px;
    background: rgba(201, 169, 110, .15);
  }

  .cursor-ring.hover {
    width: 60px;
    height: 60px;
    border-color: var(--color-accent);
  }
}

@media (hover: none) {

  .cursor-dot,
  .cursor-ring {
    display: none;
  }
}

/* ─── LOADER ─── */
.loader {
  position: fixed;
  inset: 0;
  background: var(--color-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity .8s var(--ease-expo), visibility .8s;
}

.loader.done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-inner {
  text-align: center;
}

.loader-logo {
  font-family: var(--font-en);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 300;
  color: var(--color-text);
  letter-spacing: .15em;
}

.loader-logo span {
  color: var(--color-accent);
}

.loader-tagline {
  font-family: var(--font-en);
  font-size: .85rem;
  color: rgba(255, 255, 255, .4);
  margin-top: .5rem;
  letter-spacing: .3em;
  font-style: italic;
}

.loader-bar-wrap {
  width: 200px;
  height: 2px;
  background: rgba(255, 255, 255, .1);
  margin: 2rem auto 0;
  border-radius: 2px;
  overflow: hidden;
}

.loader-bar {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--color-accent), var(--color-accent2));
  transition: width .1s linear;
}

/* ─── PAGE WRAP ─── */
.page-wrap {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s var(--ease-expo) .2s, transform 1s var(--ease-expo) .2s;
}

.page-wrap.visible {
  opacity: 1;
  transform: none;
}

/* ─── HEADER ─── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem clamp(1.5rem, 4vw, 3rem);
  z-index: 1000;
  transition: background .4s, backdrop-filter .4s, padding .4s;
}

.site-header.scrolled {
  background: rgba(10, 10, 10, .85);
  backdrop-filter: blur(20px) saturate(1.5);
  -webkit-backdrop-filter: blur(20px) saturate(1.5);
  padding: .8rem clamp(1.5rem, 4vw, 3rem);
}

.logo {
  font-family: var(--font-en);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--color-text);
  letter-spacing: .12em;
}

.logo span {
  color: var(--color-accent);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-family: var(--font-en);
  font-size: .85rem;
  color: rgba(245, 240, 235, .7);
  letter-spacing: .1em;
  transition: color .3s;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-accent);
  transition: width .3s var(--ease-expo);
}

.nav-link:hover {
  color: var(--color-text);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-cta {
  font-size: .8rem;
  padding: .5rem 1.5rem;
  border: 1px solid var(--color-accent);
  color: var(--color-accent);
  letter-spacing: .08em;
  transition: background .3s, color .3s;
}

.nav-cta:hover {
  background: var(--color-accent);
  color: var(--color-bg);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  padding: 8px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--color-text);
  transition: transform .3s, opacity .3s;
}

.hamburger.active span:first-child {
  transform: rotate(45deg) translate(3px, 5px);
}

.hamburger.active span:last-child {
  transform: rotate(-45deg) translate(3px, -5px);
}

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, .97);
  backdrop-filter: blur(30px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity .5s var(--ease-expo);
}

.mobile-nav.active {
  opacity: 1;
  pointer-events: all;
}

.mobile-nav a {
  font-family: var(--font-en);
  font-size: 1.5rem;
  color: var(--color-text);
  letter-spacing: .2em;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .mobile-nav {
    display: flex;
  }
}

/* ═══════════════════════════════════════════
   HERO — Cinematic Fullscreen Slideshow
   ═══════════════════════════════════════════ */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100svh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0a0a0a;
}

/* ── Slides ── */
.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  animation: none;
}

.hero-slide.active .hero-slide-img {
  animation: kenBurns 7s ease-out forwards;
}

@keyframes kenBurns {
  0% {
    transform: scale(1.15);
  }

  100% {
    transform: scale(1.0);
  }
}

.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(10, 10, 10, .35) 0%,
      rgba(10, 10, 10, .15) 40%,
      rgba(10, 10, 10, .5) 100%);
}

/* ── Messages ── */
.hero-messages {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 0 clamp(1.5rem, 6vw, 6rem);
  max-width: 900px;
}

.hero-msg {
  display: none;
  flex-direction: column;
  align-items: center;
}

.hero-msg.active {
  display: flex;
}

.hero-msg-tag {
  font-family: var(--font-en), var(--font-sans);
  font-size: clamp(.65rem, .9vw, .8rem);
  color: var(--color-accent);
  letter-spacing: .3em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  opacity: 1;
  transform: translateY(0);
  transition: opacity .8s ease, transform .8s ease;
}

.hero-msg-main {
  font-family: var(--font-jp);
  font-size: clamp(1rem, 1.8vw, 1.35rem);
  font-weight: 600;
  color: var(--color-text);
  line-height: 1.9;
  letter-spacing: .06em;
  margin-bottom: 1rem;
  min-height: 2.8em;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-msg-sub {
  font-size: clamp(.7rem, 1vw, .85rem);
  color: rgba(245, 240, 235, .55);
  line-height: 1.8;
  letter-spacing: .05em;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 1s ease, transform 1s ease;
}

/* ── Fade-in text effect ── */
.hero-fade-text {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 1s ease, transform 1s ease;
  display: inline-block;
}

.hero-fade-text.fade-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Indicators ── */
.hero-indicators {
  position: absolute;
  bottom: 7rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.8rem;
  z-index: 5;
}

.hero-indicator {
  width: 40px;
  height: 3px;
  background: rgba(255, 255, 255, .2);
  border: none;
  padding: 0;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.hero-indicator span {
  display: block;
  width: 0%;
  height: 100%;
  background: var(--color-accent);
  transition: none;
}

.hero-indicator.active span {
  width: 0%;
  animation: indicatorFill 6s linear forwards;
}

@keyframes indicatorFill {
  0% {
    width: 0%;
  }

  100% {
    width: 100%;
  }
}

/* ── Bottom CTA ── */
.hero-bottom {
  position: absolute;
  bottom: 2.5rem;
  right: clamp(2rem, 5vw, 4rem);
  z-index: 5;
}

.hero-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .8rem 2rem;
  background: var(--color-accent);
  color: var(--color-bg);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .05em;
  transition: background .3s, transform .3s, box-shadow .3s;
}

.hero-cta-btn:hover {
  background: #dbb87e;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201, 169, 110, .3);
}

.hero-cta-btn .btn-arrow {
  display: inline-block;
  transition: transform .3s;
}

.hero-cta-btn:hover .btn-arrow {
  transform: translateX(4px);
}

/* Hero Scroll Indicator */
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: clamp(2rem, 5vw, 4rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  opacity: 0;
  z-index: 5;
}

.hero-scroll span {
  font-family: var(--font-en);
  font-size: .6rem;
  color: rgba(245, 240, 235, .4);
  letter-spacing: .3em;
  text-transform: uppercase;
}

.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--color-accent), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }

  50% {
    transform: scaleY(1);
    transform-origin: top;
  }

  50.1% {
    transform: scaleY(1);
    transform-origin: bottom;
  }

  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}

/* ═══════════════════════════════════════════
   GENRE INTRO — 白背景で切替メリハリ
   ═══════════════════════════════════════════ */
.genre-intro {
  position: relative;
  padding: clamp(6rem, 12vh, 10rem) clamp(2rem, 8vw, 8rem);
  background: #fafaf8;
  text-align: center;
}

.genre-intro-tag {
  font-family: var(--font-en);
  font-size: .75rem;
  color: var(--color-accent);
  letter-spacing: .4em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.genre-intro-title {
  font-family: var(--font-jp);
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: #1a1a1a;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.genre-intro-desc {
  font-size: clamp(.85rem, 1.2vw, 1rem);
  color: rgba(26, 26, 26, .5);
  line-height: 2;
}

/* ═══════════════════════════════════════════
   GENRE SECTIONS — Fullscreen Photo Showcase
   ═══════════════════════════════════════════ */
.genre-section {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

/* Background Photo */
.genre-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.genre-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.1);
  transition: transform 8s var(--ease-out);
  filter: brightness(.45);
}

.genre-section.in-view .genre-bg img {
  transform: scale(1);
}

/* Genre Content (overlay text) */
.genre-content {
  position: relative;
  z-index: 2;
  padding: clamp(8rem, 15vh, 12rem) clamp(2rem, 8vw, 8rem) 3rem;
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.genre-label {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.genre-num {
  font-family: var(--font-en);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 300;
  color: var(--color-accent);
  line-height: 1;
  opacity: 1;
}

.genre-line {
  display: block;
  width: 60px;
  height: 1px;
  background: var(--color-accent);
  opacity: 1;
  transform: scaleX(1);
  transform-origin: left;
}

.genre-tag {
  font-family: var(--font-en);
  font-size: clamp(.7rem, 1vw, .85rem);
  color: rgba(245, 240, 235, .6);
  letter-spacing: .3em;
  text-transform: uppercase;
  opacity: 1;
}

.genre-title {
  font-family: var(--font-jp);
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.5;
  margin-bottom: .5rem;
}

.gt-line {
  display: block;
  opacity: 1;
}

.genre-name-jp {
  font-size: .85rem;
  color: rgba(245, 240, 235, .5);
  letter-spacing: .15em;
  opacity: 1;
}

/* Genre Detail (gallery + info) */
.genre-detail {
  position: relative;
  z-index: 2;
  padding: 4rem clamp(2rem, 8vw, 8rem) clamp(4rem, 8vh, 6rem);
  background: linear-gradient(to bottom, rgba(10, 10, 10, .3), rgba(10, 10, 10, .9));
}

/* Gallery — Horizontal Scroll */
.genre-gallery {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 1rem;
  margin-bottom: 3rem;
}

.genre-gallery::-webkit-scrollbar {
  height: 3px;
}

.genre-gallery::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, .05);
}

.genre-gallery::-webkit-scrollbar-thumb {
  background: var(--color-accent);
  border-radius: 3px;
}

.gallery-item {
  flex: 0 0 clamp(250px, 40vw, 400px);
  scroll-snap-align: start;
  overflow: hidden;
  aspect-ratio: 3/2;
  border-radius: 4px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease-expo);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

/* Genre Info */
.genre-info {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 3rem;
  align-items: start;
}

.genre-info-block h3 {
  font-family: var(--font-jp);
  font-size: .85rem;
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: 1rem;
  letter-spacing: .1em;
}

.genre-points li {
  position: relative;
  padding-left: 1.2rem;
  font-size: .85rem;
  color: rgba(245, 240, 235, .8);
  line-height: 2;
}

.genre-points li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--color-accent);
}

.genre-info-block p {
  font-size: .85rem;
  color: rgba(245, 240, 235, .7);
  line-height: 2;
}

.genre-info-block strong {
  color: var(--color-text);
  font-weight: 600;
}

.genre-cta {
  align-self: center;
  white-space: nowrap;
  padding: .8rem 2rem;
  border: 1px solid var(--color-accent);
  color: var(--color-accent);
  font-size: .85rem;
  letter-spacing: .08em;
  transition: all .3s;
}

.genre-cta:hover {
  background: var(--color-accent);
  color: var(--color-bg);
}

@media (max-width: 900px) {
  .genre-info {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .genre-cta {
    justify-self: start;
  }
}

/* ═══════════════════════════════════════════
   TRUST BAR
   ═══════════════════════════════════════════ */
.trust-bar {
  background: #111;
  padding: clamp(3rem, 6vh, 5rem) clamp(2rem, 4vw, 4rem);
  border-top: 1px solid rgba(255, 255, 255, .06);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.trust-bar-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.trust-stat-num {
  font-family: var(--font-en);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--color-accent);
  line-height: 1;
  margin-bottom: .5rem;
}

.trust-stat-text {
  font-size: clamp(.7rem, 1.2vw, .9rem) !important;
  font-family: var(--font-sans) !important;
  font-weight: 600 !important;
  font-style: normal !important;
}

.trust-stat-label {
  font-size: .75rem;
  color: rgba(245, 240, 235, .45);
  letter-spacing: .1em;
}

@media (max-width: 600px) {
  .trust-bar-inner {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ═══════════════════════════════════════════
   ABOUT
   ═══════════════════════════════════════════ */
.about-section {
  background: var(--color-bg);
  padding: clamp(5rem, 10vh, 8rem) clamp(2rem, 8vw, 6rem);
}

.about-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 4rem;
  align-items: start;
}

.about-photo img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  filter: grayscale(.3);
  transition: filter .5s;
}

.about-photo:hover img {
  filter: grayscale(0);
}

.section-tag {
  font-family: var(--font-en);
  font-size: .75rem;
  color: var(--color-accent);
  letter-spacing: .4em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.about-name {
  font-family: var(--font-en);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 300;
  color: var(--color-text);
  margin-bottom: .5rem;
}

.about-role {
  font-family: var(--font-en);
  font-size: .85rem;
  color: var(--color-accent);
  letter-spacing: .15em;
  margin-bottom: 1.5rem;
}

.about-text {
  font-size: .9rem;
  color: rgba(245, 240, 235, .7);
  line-height: 2;
  margin-bottom: 1.5rem;
}

.about-highlight {
  background: rgba(201, 169, 110, .08);
  border-left: 3px solid var(--color-accent);
  padding: 1.2rem 1.5rem;
  margin-bottom: 1.5rem;
}

.about-highlight p {
  font-size: .9rem;
  color: rgba(245, 240, 235, .85);
  line-height: 1.8;
}

.about-list li {
  position: relative;
  padding-left: 1.5rem;
  font-size: .85rem;
  color: rgba(245, 240, 235, .6);
  line-height: 2.2;
}

.about-list li::before {
  content: '▹';
  position: absolute;
  left: 0;
  color: var(--color-accent);
}

@media (max-width: 768px) {
  .about-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-photo img {
    aspect-ratio: 1;
    max-width: 250px;
    margin: 0 auto;
  }
}

/* ═══════════════════════════════════════════
   CAREER TIMELINE
   ═══════════════════════════════════════════ */
.career-section {
  background: #0e0e0e;
  padding: clamp(5rem, 10vh, 8rem) clamp(2rem, 8vw, 6rem);
}

.career-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.career-header {
  text-align: center;
  margin-bottom: 4rem;
}

.career-heading {
  font-family: var(--font-jp);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--color-text);
  font-weight: 600;
}

.career-sub {
  font-size: clamp(.8rem, 1.1vw, .9rem);
  color: rgba(245, 240, 235, .45);
  margin-top: .8rem;
  letter-spacing: .05em;
}

/* ── Timeline ── */
.career-timeline {
  position: relative;
  padding: 2rem 0;
}

.career-timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom,
      transparent,
      var(--color-accent) 10%,
      var(--color-accent) 90%,
      transparent);
  transform: translateX(-50%);
}

/* ── Entry ── */
.career-entry {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2.5rem;
  position: relative;
}

.career-entry[data-side="left"] {
  flex-direction: row;
  padding-right: calc(50% + 2rem);
  text-align: right;
}

.career-entry[data-side="right"] {
  flex-direction: row-reverse;
  padding-left: calc(50% + 2rem);
  text-align: left;
}

/* Timeline dot */
.career-entry::before {
  content: '';
  position: absolute;
  left: 50%;
  top: .5rem;
  width: 11px;
  height: 11px;
  background: var(--color-bg);
  border: 2px solid var(--color-accent);
  border-radius: 50%;
  transform: translateX(-50%);
  z-index: 2;
  transition: background .3s, box-shadow .3s;
}

.career-entry:hover::before {
  background: var(--color-accent);
  box-shadow: 0 0 12px rgba(201, 169, 110, .4);
}

/* Year badge */
.career-year {
  font-family: var(--font-en);
  font-size: clamp(.75rem, 1vw, .9rem);
  color: var(--color-accent);
  letter-spacing: .12em;
  font-weight: 500;
  white-space: nowrap;
  min-width: 80px;
  position: absolute;
  top: .3rem;
}

.career-entry[data-side="left"] .career-year {
  right: calc(50% + 2rem);
  text-align: right;
  display: none;
  /* show inside card instead */
}

.career-entry[data-side="right"] .career-year {
  left: calc(50% + 2rem);
  text-align: left;
  display: none;
}

/* Card */
.career-card {
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .08);
  padding: 1.5rem 1.8rem;
  border-radius: 6px;
  transition: border-color .4s, transform .4s var(--ease-expo), box-shadow .4s;
  width: 100%;
}

.career-card:hover {
  border-color: rgba(201, 169, 110, .25);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, .2);
}

.career-badge {
  display: inline-block;
  font-size: .65rem;
  padding: .25rem .8rem;
  background: rgba(201, 169, 110, .12);
  color: var(--color-accent);
  letter-spacing: .08em;
  border-radius: 20px;
  margin-bottom: .8rem;
  font-weight: 500;
}

.career-card h3 {
  font-family: var(--font-jp);
  font-size: clamp(.85rem, 1.1vw, 1rem);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: .5rem;
  line-height: 1.5;
}

.career-card h3::before {
  content: attr(data-year);
}

.career-card p {
  font-size: .8rem;
  color: rgba(245, 240, 235, .6);
  line-height: 1.8;
}

/* Show year inside the card as a prefix line */
.career-entry .career-year {
  display: block !important;
  position: static;
  margin-bottom: .4rem;
  font-size: clamp(.7rem, .9vw, .8rem);
}

.career-entry[data-side="left"] .career-card {
  margin-right: 2rem;
}

.career-entry[data-side="right"] .career-card {
  margin-left: 2rem;
}

/* Differentiator */
.career-differentiator {
  background: linear-gradient(135deg, rgba(201, 169, 110, .08), rgba(143, 179, 169, .06));
  border: 1px solid rgba(201, 169, 110, .15);
  border-radius: 8px;
  padding: 2.5rem;
  text-align: center;
  margin-top: 4rem;
  margin-bottom: 3rem;
}

.career-diff-icon {
  font-size: 2rem;
  margin-bottom: .8rem;
}

.career-differentiator h3 {
  font-family: var(--font-jp);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: var(--color-text);
  font-weight: 700;
  margin-bottom: 1rem;
}

.career-differentiator p {
  font-size: .85rem;
  color: rgba(245, 240, 235, .7);
  line-height: 2;
  max-width: 700px;
  margin: 0 auto;
}

.career-differentiator strong {
  color: var(--color-accent);
  font-weight: 600;
}

/* Genre Grid */
.career-genres {
  text-align: center;
}

.career-genres-title {
  font-family: var(--font-jp);
  font-size: .9rem;
  color: rgba(245, 240, 235, .5);
  font-weight: 500;
  margin-bottom: 1.2rem;
  letter-spacing: .1em;
}

.career-genre-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .6rem;
}

.career-genre-tag {
  display: inline-block;
  font-size: .72rem;
  padding: .4rem 1rem;
  border: 1px solid rgba(245, 240, 235, .15);
  color: rgba(245, 240, 235, .65);
  border-radius: 20px;
  letter-spacing: .05em;
  transition: border-color .3s, color .3s, background .3s;
}

.career-genre-tag:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
  background: rgba(201, 169, 110, .06);
}

/* Mobile */
@media (max-width: 768px) {
  .career-timeline-line {
    left: 1rem;
  }

  .career-entry[data-side="left"],
  .career-entry[data-side="right"] {
    flex-direction: row;
    padding-left: 3rem;
    padding-right: 0;
    text-align: left;
  }

  .career-entry::before {
    left: 1rem;
  }

  .career-entry[data-side="left"] .career-card,
  .career-entry[data-side="right"] .career-card {
    margin-left: 0;
    margin-right: 0;
  }
}

/* ═══════════════════════════════════════════
   PROCESS
   ═══════════════════════════════════════════ */
.process-section {
  background: #fafaf8;
  padding: clamp(5rem, 10vh, 8rem) clamp(2rem, 8vw, 6rem);
}

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

.process-header {
  text-align: center;
  margin-bottom: 4rem;
}

.process-header h2 {
  font-family: var(--font-jp);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: #1a1a1a;
  font-weight: 600;
}

.process-timeline {
  position: relative;
  padding-left: 3rem;
}

.process-timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, var(--color-accent), rgba(201, 169, 110, .2));
}

.process-step {
  position: relative;
  padding-bottom: 3rem;
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}

.process-step::before {
  content: '';
  position: absolute;
  left: -3rem;
  top: .3rem;
  width: 9px;
  height: 9px;
  background: var(--color-accent);
  border-radius: 50%;
  transform: translateX(-4px);
}

.process-num {
  font-family: var(--font-en);
  font-size: 2rem;
  font-weight: 300;
  color: rgba(201, 169, 110, .5);
  line-height: 1;
  flex-shrink: 0;
}

.process-body h3 {
  font-family: var(--font-jp);
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: .5rem;
}

.process-body p {
  font-size: .85rem;
  color: rgba(26, 26, 26, .6);
  line-height: 1.8;
}

/* ═══════════════════════════════════════════
   PRICING
   ═══════════════════════════════════════════ */
.pricing-section {
  background: #fafaf8;
  padding: clamp(5rem, 10vh, 8rem) clamp(2rem, 8vw, 6rem);
}

.pricing-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.pricing-header {
  text-align: center;
  margin-bottom: 4rem;
}

.pricing-header h2 {
  font-family: var(--font-jp);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: #1a1a1a;
  font-weight: 600;
}

.pricing-note {
  font-size: .8rem;
  color: rgba(26, 26, 26, .4);
  margin-top: .5rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.pricing-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .08);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: transform .4s var(--ease-expo), border-color .4s, box-shadow .4s;
}

.pricing-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 169, 110, .3);
  box-shadow: 0 12px 40px rgba(0, 0, 0, .08);
}

.pricing-card.featured {
  border-color: var(--color-accent);
  background: rgba(201, 169, 110, .06);
  position: relative;
}

.pricing-card.featured::before {
  content: 'RECOMMENDED';
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-accent);
  color: var(--color-bg);
  font-size: .6rem;
  padding: .3rem 1rem;
  letter-spacing: .15em;
  font-weight: 700;
}

.pricing-plan {
  font-family: var(--font-en);
  font-size: .7rem;
  color: var(--color-accent);
  letter-spacing: .3em;
  margin-bottom: 1rem;
}

.pricing-title {
  font-family: var(--font-jp);
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: .5rem;
}

.pricing-sub {
  font-size: .75rem;
  color: rgba(26, 26, 26, .4);
  margin-bottom: 1.5rem;
}

.pricing-amount {
  font-family: var(--font-en);
  font-size: 2.5rem;
  font-weight: 300;
  color: #1a1a1a;
}

.pricing-unit {
  font-size: .75rem;
  color: rgba(26, 26, 26, .4);
  margin-bottom: 1.5rem;
}

.pricing-features {
  margin-bottom: 2rem;
  text-align: left;
}

.pricing-features li {
  font-size: .8rem;
  color: rgba(26, 26, 26, .65);
  padding: .4rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, .05);
  padding-left: 1.2rem;
  position: relative;
}

.pricing-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-size: .7rem;
}

.pricing-btn {
  display: inline-block;
  padding: .7rem 2rem;
  border: 1px solid var(--color-accent);
  color: var(--color-accent);
  font-size: .8rem;
  letter-spacing: .1em;
  transition: all .3s;
}

.pricing-btn:hover {
  background: var(--color-accent);
  color: var(--color-bg);
}

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

/* ═══════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════ */
.testimonials-section {
  background: #0e0e0e;
  padding: clamp(5rem, 10vh, 8rem) clamp(2rem, 8vw, 6rem);
}

.testimonials-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 4rem;
}

.testimonials-header h2 {
  font-family: var(--font-jp);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--color-text);
  font-weight: 600;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.testimonial-card {
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .06);
  padding: 2rem;
  transition: border-color .3s;
}

.testimonial-card:hover {
  border-color: rgba(201, 169, 110, .2);
}

.testimonial-stars {
  color: var(--color-accent);
  font-size: .8rem;
  margin-bottom: 1rem;
  letter-spacing: .15em;
}

.testimonial-text {
  font-size: .85rem;
  color: rgba(245, 240, 235, .75);
  line-height: 2;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  background: rgba(201, 169, 110, .15);
  color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-en);
  font-size: .85rem;
  border-radius: 50%;
}

.testimonial-name {
  font-size: .8rem;
  color: var(--color-text);
  font-weight: 500;
}

.testimonial-company {
  font-size: .7rem;
  color: rgba(245, 240, 235, .4);
}

@media (max-width: 600px) {
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
}

/* ═══════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════ */
.faq-section {
  background: var(--color-bg);
  padding: clamp(5rem, 10vh, 8rem) clamp(2rem, 8vw, 6rem);
}

.faq-inner {
  max-width: 800px;
  margin: 0 auto;
}

.faq-header {
  text-align: center;
  margin-bottom: 3rem;
}

.faq-header h2 {
  font-family: var(--font-jp);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--color-text);
  font-weight: 600;
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 0;
  font-size: .9rem;
  color: var(--color-text);
  font-weight: 500;
  list-style: none;
  transition: color .3s;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary:hover {
  color: var(--color-accent);
}

.faq-icon {
  font-size: 1.2rem;
  color: var(--color-accent);
  transition: transform .3s;
}

.faq-item[open] .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  font-size: .85rem;
  color: rgba(245, 240, 235, .6);
  line-height: 1.8;
  padding-bottom: 1.2rem;
}

/* ═══════════════════════════════════════════
   CTA SECTION
   ═══════════════════════════════════════════ */
.cta-section {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
}

.cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.3);
}

.cta-bg-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(10, 10, 10, .5), rgba(10, 10, 10, .85));
}

.cta-inner {
  position: relative;
  z-index: 2;
  padding: 4rem 2rem;
}

.cta-title {
  font-family: var(--font-en);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 300;
  color: var(--color-text);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.cta-subtitle {
  font-family: var(--font-jp);
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: var(--color-text);
  font-weight: 500;
  margin-bottom: 1rem;
}

.cta-desc {
  font-size: .85rem;
  color: rgba(245, 240, 235, .55);
  line-height: 2;
  margin-bottom: 2.5rem;
}

.btn-cta {
  display: inline-block;
  padding: 1rem 3rem;
  background: var(--color-accent);
  color: var(--color-bg);
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .05em;
  transition: background .3s, transform .3s, box-shadow .3s;
}

.btn-cta:hover {
  background: #dbb87e;
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(201, 169, 110, .3);
}

/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */
.site-footer {
  background: #080808;
  padding: clamp(3rem, 6vh, 5rem) clamp(2rem, 4vw, 4rem) 2rem;
  border-top: 1px solid rgba(255, 255, 255, .06);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand {
  font-family: var(--font-en);
  font-size: 1.3rem;
  color: var(--color-text);
  letter-spacing: .12em;
  margin-bottom: .5rem;
}

.footer-brand span {
  color: var(--color-accent);
}

.footer-desc {
  font-size: .8rem;
  color: rgba(245, 240, 235, .4);
  line-height: 1.8;
}

.footer-heading {
  font-family: var(--font-en);
  font-size: .7rem;
  color: var(--color-accent);
  letter-spacing: .25em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.footer-link {
  display: block;
  font-size: .8rem;
  color: rgba(245, 240, 235, .5);
  padding: .3rem 0;
  transition: color .3s;
}

.footer-link:hover {
  color: var(--color-text);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, .06);
}

.footer-copy {
  font-size: .7rem;
  color: rgba(245, 240, 235, .3);
}

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

  .footer-bottom {
    flex-direction: column;
    gap: .5rem;
  }
}

/* ═══════════════════════════════════════════
   MOBILE CTA
   ═══════════════════════════════════════════ */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 800;
  background: var(--color-accent);
  text-align: center;
  transform: translateY(100%);
  transition: transform .4s var(--ease-expo);
}

.mobile-cta.show {
  transform: translateY(0);
}

.mobile-cta a {
  display: block;
  padding: 1rem;
  color: var(--color-bg);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .08em;
}

@media (max-width: 768px) {
  .mobile-cta {
    display: block;
  }
}

/* ═══════════════════════════════════════════
   REVEAL ANIMATION BASE
   ═══════════════════════════════════════════ */
.reveal {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════
   SMOOTH SCROLLBAR STYLING
   ═══════════════════════════════════════════ */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--color-bg);
}

::-webkit-scrollbar-thumb {
  background: rgba(201, 169, 110, .3);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-accent);
}

/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */
@media (max-width: 480px) {
  .hero-content {
    padding: 0 1.5rem;
  }

  .genre-content {
    padding: 6rem 1.5rem 2rem;
  }

  .genre-detail {
    padding: 2rem 1.5rem 3rem;
  }

  .gallery-item {
    flex: 0 0 80vw;
  }
}