/* ===== CSS Variables ===== */
:root {
  --color-bg: #ffffff;
  --color-bg-secondary: #f8f8f8;
  --color-bg-card: #ffffff;
  --color-primary: #c9a84c;
  --color-primary-light: #e4c96a;
  --color-primary-glow: rgba(201, 168, 76, 0.15);
  --color-accent: #6b4ce0;
  --color-accent-light: #8a6ef0;
  --color-text: #111111;
  --color-text-muted: #555555;
  --color-text-dim: #888888;
  --color-border: rgba(201, 168, 76, 0.3);
  --font-display: 'Playfair Display', serif;
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Noto Sans JP', sans-serif;
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-back: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

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

body {
  font-family: var(--font-body);
  background-color: var(--color-bg);
  background-image: url('/img/hp-bg-desktop.webp');
  background-size: 100% auto;
  background-repeat: repeat-y;
  background-attachment: scroll;
  background-position: center top;
  color: var(--color-text);
  line-height: 1.8;
  overflow-x: hidden;
}

body.no-bg {
  background-image: none;
}

@media (max-width: 768px) {
  body {
    background-image: url('/img/hp-bg-mobile.webp');
    background-size: 100% auto;
    background-repeat: repeat-y;
    background-attachment: scroll;
  }
  body.page-home {
    background-image: none;
  }
  body.no-bg {
    background-image: none;
  }
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: all 0.3s ease; }
ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 3rem);
}

/* ===== Scroll Animation ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ===== Skip Nav ===== */
.skip-nav {
  position: absolute;
  top: -100%;
  left: 0;
  background: var(--color-primary);
  color: var(--color-bg);
  padding: 0.75rem 1.5rem;
  z-index: 10000;
  font-weight: 700;
}
.skip-nav:focus { top: 0; }

/* ===== Header ===== */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
}
header.scrolled {
  padding: 0.6rem 0;
  background: rgba(255, 255, 255, 0.5);
}

.nav-inner {
  display: flex;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.nav-inner .logo {
  flex: 1;
  min-width: 0;
}

.nav-inner nav {
  flex: 0 0 auto;
}

.nav-inner .nav-cta-group {
  flex: 1;
  min-width: 0;
  justify-content: flex-end;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.logo-img {
  height: 46px;
  width: auto;
  transition: opacity 0.3s ease;
}
.logo-img:hover { opacity: 0.85; }

nav ul {
  display: flex;
  gap: clamp(0.5rem, 1.5vw, 2rem);
  align-items: center;
}
nav a {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #555;
  position: relative;
}
nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: width 0.3s var(--ease-out-expo);
}
nav a:hover { color: #111; }
nav a:hover::after { width: 100%; }
nav a.active { color: var(--color-primary); }
nav a.active::after { width: 100%; }

.nav-cta {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  color: var(--color-bg) !important;
  padding: 0.6rem 1.5rem;
  border-radius: 100px;
  font-weight: 600 !important;
  font-size: 0.75rem !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { transform: scale(1.05); box-shadow: 0 4px 20px var(--color-primary-glow); }

.nav-cta-outline {
  background: transparent !important;
  border: 1px solid var(--color-primary);
  color: var(--color-primary) !important;
}
.nav-cta-outline:hover {
  background: rgba(201, 168, 76, 0.1) !important;
}
.nav-cta-white {
  background: #06C755 !important;
  border: 1px solid #06C755 !important;
  color: #fff !important;
}
.nav-cta-white:hover {
  background: #05b34c !important;
  box-shadow: none;
}

.nav-cta-group {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0.5rem;
}
.mobile-toggle span {
  width: 24px;
  height: 2px;
  background: #333;
  transition: all 0.3s ease;
}

/* ===== Page Hero (Sub pages) ===== */
.page-hero {
  padding: 10rem 2rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 30%, rgba(201, 168, 76, 0.08) 0%, transparent 70%),
    radial-gradient(ellipse 60% 50% at 80% 60%, rgba(107, 76, 224, 0.06) 0%, transparent 70%);
}
.page-hero .section-tag,
.page-hero h1,
.page-hero p,
.page-hero > div { position: relative; z-index: 1; }

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--color-text) 30%, var(--color-primary) 70%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.page-hero p {
  color: var(--color-text-muted);
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 2;
}

/* ===== Section Common ===== */
section {
  padding: clamp(4rem, 10vw, 8rem) 0;
  position: relative;
}

.section-tag {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
}

h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}

h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.section-desc {
  color: var(--color-text-muted);
  font-size: 1rem;
  max-width: 600px;
  line-height: 2;
  font-weight: 300;
}

.section-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--color-primary), transparent);
  margin: 1.5rem 0;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2.5rem;
  border-radius: 100px;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: all 0.4s var(--ease-out-expo);
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  color: var(--color-bg);
  box-shadow: 0 4px 30px var(--color-primary-glow);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(201, 168, 76, 0.3);
}
.btn-secondary {
  background: transparent;
  color: var(--color-text);
  border: 1px solid var(--color-border);
}
.btn-secondary:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

/* ===== Cards ===== */
.card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.4s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}
.card:hover {
  transform: translateY(-4px);
  border-color: var(--color-primary);
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}
.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
  opacity: 0;
  transition: opacity 0.3s ease;
}
.card:hover::before { opacity: 1; }

/* ===== Support Cards ===== */
.support-card { padding: 0; text-align: center; }
.support-card-img { width: 100%; aspect-ratio: 16 / 10; overflow: hidden; }
.support-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.support-card:hover .support-card-img img { transform: scale(1.05); }
.support-card-body { padding: 1.5rem 2rem 2rem; }
.support-card-body h3 { margin-bottom: 0.75rem; }
.support-card-body p { font-size: 0.85rem; color: var(--color-text-muted); line-height: 1.8; }

/* ===== Content Prose ===== */
.prose { max-width: 800px; margin: 0 auto; }
.prose p {
  color: var(--color-text-muted);
  line-height: 2;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}
.prose h3 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: var(--color-text);
}
.prose strong { color: var(--color-text); }

/* ===== CTA Section ===== */
.cta-section {
  text-align: center;
  padding: 6rem 2rem;
  position: relative;
  background: transparent;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, var(--color-primary-glow) 0%, transparent 60%);
}
.cta-section h2,
.cta-section p,
.cta-section .btn { position: relative; z-index: 1; }
.cta-section p {
  color: var(--color-text-muted);
  margin-bottom: 2rem;
  font-size: 1rem;
}

/* ===== Footer ===== */
footer {
  background: var(--color-bg-secondary);
  border-top: 1px solid var(--color-border);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand .logo { margin-bottom: 1rem; }
.footer-brand p {
  font-size: 0.85rem;
  color: var(--color-text-dim);
  line-height: 1.8;
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 1rem;
}
.footer-col a {
  display: block;
  font-size: 0.85rem;
  color: var(--color-text-dim);
  padding: 0.3rem 0;
}
.footer-col a:hover { color: var(--color-primary); }

.footer-bottom {
  border-top: 1px solid var(--color-border);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--color-text-dim);
}

/* ===== Grid Layouts ===== */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5rem; }

/* ===== Specific Components ===== */

/* FAQ */
.faq-item {
  border: 1px solid var(--color-border);
  border-radius: 12px;
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: all 0.3s ease;
}
.faq-item:hover { border-color: rgba(201, 168, 76, 0.3); }

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.95rem;
  background: none;
  border: none;
  color: var(--color-text);
  width: 100%;
  text-align: left;
}
.faq-question .faq-icon {
  font-size: 1.25rem;
  color: var(--color-primary);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 1rem;
}
.faq-item.active .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out-expo), padding 0.3s ease;
  padding: 0 1.5rem;
}
.faq-item.active .faq-answer { max-height: 300px; padding: 0 1.5rem 1.5rem; }
.faq-answer p { font-size: 0.9rem; color: var(--color-text-muted); line-height: 2; }

/* News list */
.news-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--color-border);
  transition: all 0.3s ease;
}
.news-item:hover { padding-left: 1rem; }
.news-date {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  color: var(--color-text-dim);
  white-space: nowrap;
  min-width: 100px;
  padding-top: 0.15rem;
}
.news-tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 600;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  background: var(--color-primary-glow);
  color: var(--color-primary);
  font-family: var(--font-heading);
  letter-spacing: 0.05em;
  margin-right: 0.75rem;
}
.news-title {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}
.news-item:hover .news-title { color: var(--color-text); }

/* Producer cards */
.producer-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary-glow), rgba(107, 76, 224, 0.15));
  border: 2px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 1rem;
}
.producer-artists {
  font-size: 0.8rem;
  color: var(--color-text-dim);
  line-height: 1.7;
}
.producer-artists strong {
  color: var(--color-text-muted);
  font-weight: 500;
}

/* Voice cards */
.voice-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 2rem;
  position: relative;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}
.voice-card::before {
  content: '"';
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--color-primary);
  opacity: 0.2;
  position: absolute;
  top: 0.5rem;
  left: 1.5rem;
  line-height: 1;
}
.voice-quote { font-size: 0.95rem; line-height: 2; color: var(--color-text-muted); margin-bottom: 1.5rem; font-style: italic; }
.voice-author { font-family: var(--font-heading); font-size: 0.85rem; font-weight: 600; color: var(--color-text); }
.voice-meta { font-size: 0.75rem; color: var(--color-text-dim); }

/* Flow steps */
.flow-step {
  position: relative;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 0;
  text-align: center;
  overflow: hidden;
  transition: all 0.4s var(--ease-out-expo);
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}
.flow-step:hover {
  transform: translateY(-6px);
  border-color: var(--color-primary);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}
.flow-step-img {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.flow-step-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.flow-step:hover .flow-step-img img { transform: scale(1.05); }
.step-number {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--color-bg);
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent, #d4af37));
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.flow-step-body { padding: 1.25rem 1.5rem 1.5rem; }
.flow-step-body h3 { margin-bottom: 0.5rem; font-size: 1rem; }
.flow-step p { font-size: 0.85rem; color: var(--color-text-muted); line-height: 1.7; }

/* About features */
.about-feature {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 1.25rem;
  transition: all 0.3s ease;
}
.about-feature:hover { border-color: var(--color-primary); transform: translateY(-2px); }
.about-feature .feature-icon { font-size: 1.5rem; margin-bottom: 0.5rem; }
.about-feature h4 { font-family: var(--font-heading); font-size: 0.85rem; font-weight: 600; margin-bottom: 0.25rem; }
.about-feature p { font-size: 0.75rem; color: var(--color-text-dim); line-height: 1.6; margin: 0; }

/* Collaboration */
.collab-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s var(--ease-out-expo);
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}
.collab-card:hover { transform: translateY(-4px); border-color: var(--color-primary); box-shadow: 0 20px 50px rgba(0,0,0,0.1); }
.collab-card-body { padding: 1.5rem; }
.collab-card-img {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.collab-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.collab-card:hover .collab-card-img img { transform: scale(1.05); }
.collab-card h3 { font-size: 1rem; margin-bottom: 0.5rem; }
.collab-card p { font-size: 0.85rem; color: var(--color-text-muted); line-height: 1.7; }

/* Company info */
.page-hero-light {
  background: linear-gradient(180deg, #f9f9f9, #fff);
  color: #222;
}
.page-hero-light h1 { color: #111; }
.company-card {
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
}
.company-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #ddd;
}
.company-table th,
.company-table td {
  padding: 1.2rem 1.5rem;
  font-size: 0.9rem;
  line-height: 1.8;
  border-bottom: 1px solid #ddd;
  text-align: left;
  vertical-align: top;
}
.company-table th {
  width: 200px;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, var(--color-primary), #b8963e);
  border-bottom: 1px solid rgba(255,255,255,0.2);
  white-space: nowrap;
}
.company-table td {
  color: #333;
  background: #fff;
}

/* Event card */
.event-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s var(--ease-out-expo);
}
.event-card:hover { transform: translateY(-4px); border-color: var(--color-primary); }
.event-card-img {
  width: 100%;
  height: 180px;
  background: linear-gradient(135deg, rgba(107,76,224,0.1), rgba(201,168,76,0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}
.event-card-body { padding: 1.5rem; }
.event-card h3 { font-size: 0.95rem; margin-bottom: 0.5rem; }
.event-card p { font-size: 0.8rem; color: var(--color-text-muted); line-height: 1.7; }
.event-date { font-family: var(--font-heading); font-size: 0.75rem; color: var(--color-primary); margin-bottom: 0.5rem; }

/* Column/Article */
.article-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s var(--ease-out-expo);
}
.article-card:hover { transform: translateY(-4px); border-color: var(--color-primary); }
.article-card-img {
  width: 100%;
  height: 180px;
  background: linear-gradient(135deg, rgba(201,168,76,0.08), rgba(107,76,224,0.08));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}
.article-card-body { padding: 1.5rem; }
.article-card h3 { font-size: 0.95rem; margin-bottom: 0.5rem; line-height: 1.5; }
.article-card p { font-size: 0.8rem; color: var(--color-text-muted); line-height: 1.7; }
.article-date { font-family: var(--font-heading); font-size: 0.7rem; color: var(--color-text-dim); margin-bottom: 0.5rem; }

/* Form */
.form-group { margin-bottom: 1.5rem; }
.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--color-text);
}
.form-group .required {
  color: var(--color-primary);
  font-size: 0.75rem;
  margin-left: 0.25rem;
}
.form-input {
  width: 100%;
  padding: 0.85rem 1rem;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: all 0.3s ease;
  outline: none;
}
.form-input:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px var(--color-primary-glow);
}
textarea.form-input { min-height: 150px; resize: vertical; }
select.form-input { cursor: pointer; appearance: none; }

/* Media badges */
.media-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  transition: all 0.3s ease;
}
.media-badge:hover { border-color: var(--color-primary); }
.media-badge-icon { font-size: 2rem; }
.media-badge-text h4 { font-family: var(--font-heading); font-size: 0.85rem; font-weight: 600; }
.media-badge-text p { font-size: 0.75rem; color: var(--color-text-dim); }

/* ===== Light Content (post-hero) ===== */
.light-content {
  background: transparent;
  color: #222;
}
.light-content .section-tag { color: var(--color-primary); }
.light-content h2 { color: #111; }
.light-content h3 { color: #222; }
.light-content .section-desc { color: #555; }
.light-content .section-divider { background: linear-gradient(90deg, var(--color-primary), transparent); }

.light-content .card,
.light-content .article-card,
.light-content .collab-card,
.light-content .event-card {
  background: #fff;
  border-color: #e8e8e8;
}
.light-content .card:hover,
.light-content .article-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
  border-color: var(--color-primary);
}
.light-content .article-card-img {
  background: linear-gradient(135deg, rgba(201,168,76,0.06), rgba(107,76,224,0.06));
}
.light-content .article-card h3 { color: #222; }
.light-content .article-card p,
.light-content .article-date { color: #888; }

.light-content .btn-secondary {
  color: #333;
  border-color: #ddd;
}
.light-content .btn-secondary:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.light-content .cta-section { color: #222; }
.light-content .cta-section p { color: #555; }
.light-content .cta-section::before {
  background: radial-gradient(ellipse at center, rgba(201,168,76,0.08) 0%, transparent 60%);
}

footer.light-content {
  background: #f5f5f5;
  border-top: 1px solid #e8e8e8;
}
footer.light-content .footer-brand p { color: #888; }
footer.light-content .footer-col h4 { color: #666; }
footer.light-content .footer-col a { color: #888; }
footer.light-content .footer-col a:hover { color: var(--color-primary); }
footer.light-content .footer-bottom { color: #aaa; border-top-color: #e0e0e0; }

.light-content .app-login-tagline { color: #666; }
.light-content .zoom-booking-heading { color: var(--color-primary); }

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 1100px) {
  nav ul { gap: 1rem; }
  nav a { font-size: 0.7rem; }
  .nav-cta { padding: 0.5rem 1rem; font-size: 0.7rem !important; }
}

@media (max-width: 768px) {
  nav ul { display: none; }
  .nav-cta-group { display: none; }
  .mobile-toggle { display: flex; }
  nav ul.open {
    display: flex !important;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    padding: 1.5rem 2rem;
    gap: 1rem;
    border-bottom: 1px solid var(--color-border);
  }
  nav ul.open .mobile-cta-item {
    text-align: center;
    padding-top: 0.5rem;
    border-top: 1px solid var(--color-border);
  }

  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .grid-auto { grid-template-columns: 1fr; }

  .page-hero { padding: 8rem 1.5rem 3rem; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }

  .news-item { flex-direction: column; gap: 0.5rem; }
}

/* ===== Sticky LINE CTA Bar ===== */
body { padding-bottom: 64px; }

.sticky-line-bar {
  position: fixed;
  bottom: 0;
  left: 0.75rem;
  right: 0.75rem;
  background: #06C755;
  z-index: 998;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 0.85rem 1.5rem;
  border-radius: 28px 28px 0 0;
  box-shadow: 0 -4px 24px rgba(6,199,85,0.35);
  text-decoration: none;
  transition: background 0.2s ease;
}
.sticky-line-bar:hover { background: #05b34c; }

.sticky-line-badge {
  background: #000;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 0.35rem 1rem;
  border-radius: 50px;
  white-space: nowrap;
  flex-shrink: 0;
}

.sticky-line-text {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: #000;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

@media (max-width: 480px) {
  .sticky-line-text { font-size: 0.9rem; }
  .sticky-line-badge { font-size: 0.7rem; padding: 0.3rem 0.75rem; }
}

/* ===== Hero (index.html) ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 6rem 2rem;
  background-color: var(--color-bg);
}
.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.5s ease;
}
.hero-slide.active {
  opacity: 1;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10,10,15,0.2) 0%, rgba(10,10,15,0.3) 50%, rgba(10,10,15,0.5) 100%),
    radial-gradient(ellipse 80% 60% at 20% 40%, rgba(107,76,224,0.1) 0%, transparent 70%),
    radial-gradient(ellipse 60% 50% at 80% 30%, rgba(201,168,76,0.08) 0%, transparent 70%);
}
.hero-content {
  text-align: center;
  position: relative;
  z-index: 1;
  max-width: 900px;
}
.hero-tag {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}
.hero-tag::before, .hero-tag::after {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--color-primary);
}
.hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  word-break: keep-all;
  display: flex;
  flex-direction: column;
  align-items: center;
}
/* ① 地域バッジ */
.hero h1 span:nth-child(1) {
  order: 1;
  display: inline-block;
  font-size: clamp(0.6rem, 1.3vw, 0.78rem);
  font-weight: 700;
  letter-spacing: 0.28em;
  color: var(--color-primary);
  -webkit-text-fill-color: var(--color-primary);
  border: 1px solid rgba(201,168,76,0.65);
  background: rgba(201,168,76,0.12);
  padding: 0.4em 1.8em;
  border-radius: 100vw;
  margin-bottom: 0.5rem;
  white-space: nowrap;
}
/* ② メインキーワード */
.hero h1 span:nth-child(2) {
  display: block;
  font-size: clamp(1.8rem, 7vw, 4.2rem);
  line-height: 1.1;
  background: linear-gradient(160deg, #ffffff 0%, #f8f5ee 55%, rgba(240,220,160,0.9) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  order: 3;
}
/* ③ 2026 — DOM上は3番目（SEO: "応募 2026"隣接）、表示はorderで4番目 */
.hero h1 .hero-year {
  display: block;
  font-size: clamp(1.8rem, 7vw, 4.2rem);
  line-height: 1.1;
  background: linear-gradient(160deg, #ffffff 0%, #f8f5ee 55%, rgba(240,220,160,0.9) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  order: 4;
}
/* ④ 未経験OK サブバッジ — 表示はorderで2番目（地域バッジの直後） */
.hero h1 span:nth-child(4) {
  display: inline-block;
  font-size: clamp(0.6rem, 1.3vw, 0.78rem);
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #fff;
  -webkit-text-fill-color: #fff;
  border: 1px solid rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.1);
  padding: 0.35em 1.4em;
  border-radius: 100vw;
  margin-top: 0.3rem;
  white-space: nowrap;
  order: 2;
}
/* ⑤ 音楽はDJHAKK ゴールドサブライン */
.hero h1 span:nth-child(5) {
  display: block;
  font-size: clamp(1rem, 3.2vw, 2.4rem);
  font-weight: 500;
  letter-spacing: 0.32em;
  white-space: nowrap;
  background: linear-gradient(135deg, #c9a84c 0%, #e4c96a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-top: 0.8rem;
  order: 5;
}
.hero-sub {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #fff;
  max-width: 600px;
  margin: 0 auto 2.5rem;
  font-weight: 500;
  line-height: 2;
  text-shadow: 0 1px 8px rgba(0,0,0,0.6);
}
.hero-marquee {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  overflow: hidden;
  margin-bottom: 3rem;
}
.hero-marquee-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: marquee 30s linear infinite;
}
.hero-marquee-text {
  flex-shrink: 0;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.35);
  padding: 0 1.2rem;
  text-transform: uppercase;
}
.hero-marquee-dot {
  flex-shrink: 0;
  color: var(--color-primary);
  font-size: 0.5rem;
  opacity: 0.5;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.cta-group { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

/* ===== LINE CTA & Zoom Booking ===== */
.line-cta-section {
  padding: 3rem 2rem;
  background: transparent;
}
.line-cta-btn {
  background: #06C755;
  border-color: #06C755;
  font-size: clamp(0.95rem, 2.5vw, 1.1rem);
  padding: 1rem 3rem;
  white-space: nowrap;
}
.show-sp { display: none; }
.zoom-booking-section {
  padding: 3rem 1rem;
  background: transparent;
}
.zoom-booking-heading { text-align: center; font-size: 1.6rem; margin-bottom: 1.5rem; color: var(--primary, #c9a84c); font-weight: 700; }
.zoom-steps-label { text-align: center; font-size: 0.85rem; font-weight: 700; letter-spacing: 0.2em; color: #06C755; margin-bottom: 0.75rem; }
.zoom-steps-list { list-style: none; counter-reset: steps; margin: 0 0 1.5rem; padding: 0; display: flex; flex-direction: column; gap: 0.5rem; text-align: center; }
.zoom-steps-list li { counter-increment: steps; font-size: 0.85rem; color: #555; }
.zoom-steps-list li::before { content: counter(steps) ". "; font-weight: 700; color: var(--color-primary); }
.zoom-booking-card { background: #fff; border-radius: 12px; padding: 2rem 1.5rem; border: 1px solid #e0e0e0; }
.zoom-cal-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem; }
.zoom-cal-header button { background: none; border: none; color: var(--primary, #c9a84c); font-size: 1.2rem; cursor: pointer; padding: 0.3rem 0.6rem; }
.zoom-cal-title { font-size: 1rem; font-weight: 600; color: var(--text); }
.zoom-cal-weekdays { display: grid; grid-template-columns: repeat(7, 1fr); text-align: center; font-size: 0.75rem; color: var(--text3, #888); margin-bottom: 0.5rem; }
.zoom-cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; margin-bottom: 1.5rem; }
.zoom-cal-day { aspect-ratio: 1; display: flex; align-items: center; justify-content: center; border-radius: 50%; font-size: 0.85rem; cursor: pointer; border: none; background: none; color: #333; transition: background 0.2s; }
.zoom-cal-day:hover:not(:disabled) { background: rgba(201,168,76,0.2); }
.zoom-cal-day:disabled { color: var(--text3, #555); cursor: default; opacity: 0.4; }
.zoom-cal-day.selected { background: var(--primary, #c9a84c); color: #000; font-weight: 700; }
.zoom-cal-day.empty { visibility: hidden; }
.zoom-selected-date { text-align: center; font-size: 0.9rem; color: var(--primary, #c9a84c); margin-bottom: 1.5rem; min-height: 1.4em; }
.zoom-form-group { margin-bottom: 1rem; }
.zoom-form-group label { display: block; font-size: 0.85rem; color: #555; margin-bottom: 0.3rem; }
.zoom-form-group input { width: 100%; padding: 0.7rem; border-radius: 8px; border: 1px solid #ddd; background: #f8f8f8; color: #333; font-size: 1rem; box-sizing: border-box; }
.zoom-form-submit { width: 100%; padding: 0.9rem; border: none; border-radius: 8px; background: var(--primary, #c9a84c); color: #000; font-size: 1rem; font-weight: 700; cursor: pointer; margin-top: 0.5rem; transition: opacity 0.2s; }
.zoom-form-submit:disabled { opacity: 0.4; cursor: default; }
.zoom-thanks { text-align: center; padding: 2rem 0; color: var(--primary, #c9a84c); font-size: 1.1rem; }

/* ===== App Login ===== */
.app-login-section {
  display: flex;
  justify-content: center;
  padding: 5rem 2rem;
  background: transparent;
}
.app-login-box {
  width: 100%;
  max-width: 380px;
  text-align: center;
}
.app-login-logo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  display: block;
}
.app-login-tagline {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  color: var(--color-text-muted);
  margin-bottom: 2rem;
}
.app-login-google {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.75rem;
  border: 1px solid rgba(0,0,0,0.15);
  border-radius: 10px;
  background: transparent;
  color: #333;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
}
.app-login-google:hover {
  background: rgba(0,0,0,0.03);
}
.app-login-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.25rem 0;
  color: rgba(0,0,0,0.3);
  font-size: 0.8rem;
}
.app-login-divider::before, .app-login-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(0,0,0,0.1);
}
.app-login-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.app-login-field {
  text-align: left;
}
.app-login-field label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-text-muted);
  margin-bottom: 0.35rem;
  letter-spacing: 0.05em;
}
.app-login-field input {
  width: 100%;
  padding: 0.7rem 0.85rem;
  border: 1px solid rgba(0,0,0,0.15);
  border-radius: 10px;
  background: rgba(0,0,0,0.03);
  color: #333;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s;
  box-sizing: border-box;
}
.app-login-field input:focus {
  border-color: var(--color-primary);
}
.app-login-start {
  width: 100%;
  padding: 0.8rem;
  border: none;
  border-radius: 10px;
  background: var(--color-primary);
  color: #000;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  margin-top: 0.5rem;
  transition: opacity 0.2s;
}
.app-login-start:hover {
  opacity: 0.9;
}
.app-login-switch {
  margin-top: 1.25rem;
  font-size: 0.9rem;
}
.app-login-switch a {
  color: var(--color-primary);
  text-decoration: none;
}
.app-login-terms {
  margin-top: 1.5rem;
  font-size: 0.7rem;
  color: rgba(0,0,0,0.4);
  line-height: 1.6;
}
.app-login-terms a {
  color: var(--color-primary);
  text-decoration: none;
}

/* ===== Catch Section ===== */
.catch-section {
  background: transparent;
  padding: 5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.catch-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(201,168,76,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.catch-heading {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 700;
  color: #111;
  line-height: 1.6;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}
.catch-heading a {
  color: inherit;
  text-decoration: none;
}
.catch-heading a:hover {
  text-decoration: underline;
}
.catch-more-link {
  display: inline-block;
  margin-top: 2.5rem;
  color: var(--color-primary);
  text-decoration: none;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  position: relative;
  z-index: 1;
}
.catch-more-link:hover {
  text-decoration: underline;
}
.catch-text-wrap {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
}
.catch-line {
  display: block;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: clamp(1.15rem, 2.8vw, 1.7rem);
  font-weight: 700;
  color: #111;
  line-height: 1;
  padding: 0.55rem 0;
  -webkit-box-reflect: below 1px linear-gradient(transparent 45%, rgba(0,0,0,0.08) 100%);
}
.catch-line-lead {
  font-size: clamp(0.85rem, 2vw, 1.1rem);
  font-weight: 400;
  color: #888;
  letter-spacing: 0.05em;
  padding-bottom: 0.75rem;
  -webkit-box-reflect: below 1px linear-gradient(transparent 45%, rgba(0,0,0,0.05) 100%);
}
.catch-line-accent {
  background: linear-gradient(135deg, #c9a84c 0%, #e4c96a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  -webkit-box-reflect: below 1px linear-gradient(transparent 45%, rgba(0,0,0,0.08) 100%);
}
.catch-line-final {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 4.5vw, 2.6rem);
  font-weight: 800;
  padding-top: 0.75rem;
  background: linear-gradient(135deg, #111 20%, #c9a84c 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  -webkit-box-reflect: below 2px linear-gradient(transparent 45%, rgba(0,0,0,0.1) 100%);
}

/* ===== Hero Mobile ===== */
@media (max-width: 768px) {
  .hero { min-height: 90vh; padding: 5rem 1.5rem; }
  .hide-sp { display: none; }
  .show-sp { display: inline; }
  .hero-sub { font-size: 0.85rem; }
  .app-login-section { padding: 3rem 1.5rem; }
}

/* ===== Recruit Pages ===== */

/* Gateway Cards */
.recruit-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}
.recruit-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 360px;
  border-radius: 16px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  text-decoration: none;
  transition: transform 0.4s var(--ease-out-expo), box-shadow 0.4s ease;
}
.recruit-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.15) 100%);
  transition: background 0.4s ease;
}
.recruit-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.15);
}
.recruit-card:hover::before {
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.25) 100%);
}
.recruit-card-content {
  position: relative;
  z-index: 1;
  padding: 2rem;
}
.recruit-card-label {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}
.recruit-card-desc {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
}
.recruit-card-arrow {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--color-primary);
  font-weight: 600;
  letter-spacing: 0.05em;
}

/* Listing Page - Filter Tabs */
.recruit-filter {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
  justify-content: center;
}
.recruit-filter-tab {
  padding: 0.6rem 1.4rem;
  border: 1px solid #ddd;
  border-radius: 100px;
  background: #fff;
  color: #555;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}
.recruit-filter-tab:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}
.recruit-filter-tab.active {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
}

/* Listing Page - Vertical Job List */
.recruit-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 960px;
  margin: 0 auto 4rem;
}
.recruit-job {
  display: flex;
  gap: 2rem;
  padding: 2rem;
  background: #fff;
  border-radius: 12px;
  border: 1px solid #eee;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}
.recruit-job:hover {
  border-color: var(--color-primary);
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
  transform: translateY(-2px);
}
.recruit-job-body {
  flex: 1;
  min-width: 0;
}
.recruit-job-title {
  border-left: 4px solid var(--color-primary);
  padding-left: 1rem;
  font-size: 1.15rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}
.recruit-job-desc {
  font-size: 0.88rem;
  color: #666;
  line-height: 1.7;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.recruit-job-tag {
  display: inline-block;
  padding: 0.25rem 0.8rem;
  border: 1px solid var(--color-primary);
  border-radius: 4px;
  font-size: 0.75rem;
  color: var(--color-primary);
  font-weight: 500;
}
.recruit-job-thumb {
  width: 200px;
  flex-shrink: 0;
}
.recruit-job-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  aspect-ratio: 4/3;
}

/* Detail Page */
.recruit-detail {
  max-width: 800px;
  margin: 0 auto 4rem;
}
.recruit-detail .prose {
  color: #333;
  line-height: 1.9;
  font-size: 0.95rem;
}
.recruit-detail .prose h2 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #111;
  margin: 2.5rem 0 1rem;
  padding-left: 1rem;
  border-left: 4px solid var(--color-primary);
}
.recruit-detail .prose h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #222;
  margin: 1.5rem 0 0.75rem;
}
.recruit-detail .prose ul {
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}
.recruit-detail .prose li {
  list-style: disc;
  margin-bottom: 0.4rem;
}
.recruit-apply-cta {
  text-align: center;
  margin: 3rem 0;
}
.recruit-apply-cta .btn {
  padding: 1rem 3rem;
  font-size: 1rem;
}

/* Recruit Responsive */
@media (max-width: 768px) {
  .recruit-cards { grid-template-columns: 1fr; }
  .recruit-card { height: 280px; }
  .recruit-job { flex-direction: column; gap: 1rem; padding: 1.5rem; }
  .recruit-job-thumb { width: 100%; }
  .recruit-job-thumb img { aspect-ratio: 16/9; }
}
