@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&display=swap');

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

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

body {
  font-family: 'Libre Baskerville', 'Inter', Arial, Helvetica, sans-serif;
  font-size: 16px;
  color: #000;
  background: #fff;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* ===== Utilities ===== */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ===== Hero Section ===== */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #fff;
}

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

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.55);
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 6rem 1.5rem 0;
}

.hero-label {
  margin-bottom: 1.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: #525252;
}

.hero-title {
  margin-bottom: 2rem;
  line-height: 1;
}

.hero-logo {
  max-width: 800px;
  width: 100%;
  height: auto;
  display: inline-block;
}

.hero-line {
  width: 6rem;
  height: 2px;
  background: #000;
  margin: 0 auto 2rem;
}

.hero-tagline {
  font-size: 0.875rem;
  letter-spacing: 0.3em;
  color: #404040;
  margin-bottom: 4rem;
  text-transform: uppercase;
}

.hero-sub {
  font-size: 1rem;
  color: #1a1a1a;
  margin-bottom: 4rem;
  line-height: 2;
}

/* ===== Section Title ===== */
.section-title {
  margin-bottom: 5rem;
  text-align: center;
}

.section-title h2 {
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: #000;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}

.section-title .subtitle {
  color: #737373;
  font-size: 0.75rem;
  letter-spacing: 0.5em;
  text-transform: uppercase;
}

.section-title .title-line {
  margin-top: 2rem;
  width: 4rem;
  height: 1px;
  background: #000;
  margin-left: auto;
  margin-right: auto;
}

/* ===== About / Overview Section ===== */
.about {
  padding: 8rem 0;
  background: #fff;
}

.about-inner {
  max-width: 64rem;
  margin: 0 auto;
}

.about h3 {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 3rem;
  color: #000;
  line-height: 1.4;
  border-left: 2px solid #000;
  padding-left: 2rem;
}

.about-text {
  padding-left: 2rem;
  color: #404040;
  line-height: 2;
  font-size: 1rem;
}

.about-text p {
  margin-bottom: 2rem;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: #e5e5e5;
  margin-top: 4rem;
  border: 1px solid #e5e5e5;
}

.about-grid-item {
  background: #fff;
  padding: 2rem;
  text-align: center;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: bold;
}

/* ===== Features Section ===== */
.features {
  padding: 8rem 0;
  background: #fff;
  border-top: 1px solid #e5e5e5;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: #e5e5e5;
  max-width: 72rem;
  margin: 0 auto;
  border: 1px solid #e5e5e5;
}

.feature-card {
  background: #fff;
  padding: 3rem;
  display: flex;
  flex-direction: column;
}

.feature-number {
  font-size: 3.75rem;
  font-weight: 700;
  color: #e5e5e5;
  margin-bottom: 1.5rem;
}

.feature-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 1.5rem;
  line-height: 1.4;
  letter-spacing: 0.05em;
}

.feature-card p {
  color: #525252;
  font-size: 0.875rem;
  line-height: 1.625;
}

/* ===== Talents Section ===== */
.talents {
  padding: 8rem 0;
  background: #fafafa;
}

.talents-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: #d4d4d4;
  max-width: 72rem;
  margin: 0 auto;
  border: 1px solid #d4d4d4;
}

.talent-card {
  position: relative;
  overflow: hidden;
  background: #fff;
  cursor: pointer;
}

.talent-card-image {
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

.talent-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

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

.talent-card-body {
  padding: 2rem;
  border-top: 1px solid #e5e5e5;
}

.talent-card-body h4 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 0.25rem;
  letter-spacing: 0.05em;
}

.talent-card-body .talent-desc {
  color: #737373;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.talent-card-body .talent-view {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #000;
  font-size: 0.75rem;
  font-weight: 500;
  margin-top: 1rem;
  transition: gap 0.3s;
}

.talent-card:hover .talent-view {
  gap: 0.75rem;
}

.talent-card .talent-underline {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #000;
  transition: width 0.5s ease;
}

.talent-card:hover .talent-underline {
  width: 100%;
}

/* Chevron icon */
.icon-chevron {
  width: 16px;
  height: 16px;
  display: inline-block;
}

/* Arrow icon */
.icon-arrow {
  width: 20px;
  height: 20px;
  display: inline-block;
  transition: transform 0.3s;
}

/* ===== Story Section ===== */
.story {
  padding: 10rem 0;
  background: #fff;
  border-top: 1px solid #e5e5e5;
}

.story-inner {
  max-width: 56rem;
  margin: 0 auto;
}

.story-content {
  text-align: center;
}

.story-quote {
  font-size: 1.875rem;
  font-weight: 300;
  color: #000;
  line-height: 1.625;
  letter-spacing: 0.05em;
  margin-bottom: 4rem;
}

.story-text {
  color: #525252;
  line-height: 2;
  font-size: 1rem;
}

.story-text br {
  display: none;
}

.story-text .blank {
  display: block;
  margin-top: 2em;
}

.story-text p {
  margin-bottom: 3rem;
}

.story-divider {
  width: 8rem;
  height: 1px;
  background: #d4d4d4;
  margin: 0 auto 3rem;
}

/* ===== CTA Section ===== */
.cta {
  padding: 10rem 0;
  background: #000;
  color: #fff;
  text-align: center;
}

.cta h2 {
  font-size: 3.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 3rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  line-height: 1.2;
}

.cta .cta-line {
  width: 6rem;
  height: 2px;
  background: #fff;
  margin: 0 auto 3rem;
}

.cta .cta-desc {
  font-size: 1.125rem;
  color: #a3a3a3;
  max-width: 42rem;
  margin: 0 auto 2rem;
  line-height: 1.625;
}

.cta-notice {
  max-width: 36rem;
  margin: 0 auto 3rem;
  padding: 1.5rem 2rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.08);
  text-align: left;
}

.cta-notice-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: #f59e0b;
  margin-bottom: 0.75rem;
  letter-spacing: 0.05em;
}

.cta-notice-text {
  font-size: 0.8rem;
  color: #d4d4d4;
  line-height: 1.8;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 3rem;
  border: 2px solid #fff;
  background: #fff;
  color: #000;
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  transition: all 0.3s;
  cursor: pointer;
}

.cta-button:hover {
  background: #000;
  color: #fff;
}

.cta-button:hover .icon-arrow {
  transform: translateX(4px);
}

.cta-button:active {
  transform: scale(0.98);
}

.cta-footer {
  color: #525252;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  margin-top: 8rem;
  text-transform: uppercase;
}

/* ===== Scroll Reveal Animation ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-fade {
  opacity: 0;
  transition: opacity 1s ease;
}

.reveal-fade.visible {
  opacity: 1;
}

/* Hero entrance animation */
.hero-content {
  opacity: 0;
  transform: translateY(40px);
  animation: heroFadeIn 1.2s ease forwards;
}

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

/* Stagger delays for feature/talent cards */
.stagger-1 { transition-delay: 0s; }
.stagger-2 { transition-delay: 0.15s; }
.stagger-3 { transition-delay: 0.3s; }

/* ===== Responsive ===== */
@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }

  .nav-apply-mobile {
    display: none;
  }

  .hero-title {
    font-size: 10rem;
  }

  .hero-tagline {
    font-size: 1.125rem;
  }

  .hero-sub {
    font-size: 1rem;
  }

  .section-title h2 {
    font-size: 3.75rem;
  }

  .about h3 {
    font-size: 2.25rem;
  }

  .about-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .talents-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .story-quote {
    font-size: 2.25rem;
  }

  .story-text br {
    display: inline;
  }

  .story-text .blank {
    margin-top: 0;
    height: 1em;
  }

  .cta h2 {
    font-size: 4.5rem;
  }
}

/* ===== Header & Footer Override ===== */
.l-header,
.p-header,
.l-footer,
.p-footer {
  font-family: "Nunito Sans", "Hiragino Kaku Gothic ProN", "Noto Sans JP", "Hiragino Sans", Meiryo, sans-serif;
}

.p-footer {
  margin-top: 0;
}
