/* Shared stylesheet for Club Sinsi guide pages (/working-holiday/, /students/, /safety/ + language versions).
   Extracted from the homepage/pay-page inline styles — keep visual changes in sync with index.html. */
:root {
  --bg: #ececec;
  --card: #fbfbfa;
  --card-shadow: 0 10px 40px rgba(0,0,0,0.06), 0 2px 8px rgba(0,0,0,0.04);
  --ink: #1a1a1a;
  --ink-soft: #4a4a4a;
  --ink-mute: #9a9a9a;
  --divider: #d8d8d8;
  --accent-bg: #f0efed;
  --gold: #b08d57;
  --gold-soft: #c9ad82;
  --teal: #1a8a8a;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', 'Noto Sans JP', 'Noto Sans KR', 'Noto Sans SC', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}
.wrap { max-width: 1080px; margin: 0 auto; padding: 0 1.5rem; }
a { color: inherit; }

/* language switcher */
.lang-switch {
  position: fixed; top: 14px; right: 14px; z-index: 50; display: flex; gap: 2px;
  background: rgba(20,18,16,0.55); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.18); border-radius: 999px; padding: 4px;
}
.lang-switch a { font-size: 0.72rem; font-weight: 500; letter-spacing: 0.02em; color: rgba(255,255,255,0.75); text-decoration: none; padding: 4px 9px; border-radius: 999px; line-height: 1; }
.lang-switch a.active { background: var(--gold); color: #fff; }
.lang-switch a:hover { color: #fff; }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 5.5rem 1.5rem 4rem;
  min-height: 62vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #141210;
}
.hero-video {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg,
    rgba(18,16,14,0.55) 0%,
    rgba(18,16,14,0.42) 42%,
    rgba(18,16,14,0.78) 100%);
}
.hero-inner { position: relative; z-index: 2; }
.hero .logo {
  height: 96px; width: auto; max-width: 55vw;
  display: inline-block;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1) drop-shadow(0 2px 12px rgba(0,0,0,0.35));
}
.hero .kicker { color: var(--gold-soft); }
.hero .kicker::before { background: var(--gold-soft); box-shadow: 0 0 0 4px rgba(201,173,130,0.22); }
.hero h1.headline { color: #fff; text-shadow: 0 2px 24px rgba(0,0,0,0.35); }
.hero h1.headline em { color: var(--gold-soft); }
.hero .subhead { color: rgba(255,255,255,0.9); }
.hero .btn-ghost { color: #fff; border-color: rgba(255,255,255,0.55); }
.hero .btn-ghost:hover { background: rgba(255,255,255,0.14); }
.kicker {
  display: inline-flex; align-items: center; gap: 8px;
  margin: 0.25rem 0 1.6rem;
  font-size: 0.72rem; letter-spacing: 0.26em; text-transform: uppercase;
  font-weight: 500; color: var(--gold);
}
.kicker::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(176,141,87,0.15);
}
h1.headline {
  font-family: 'Cormorant Garamond', 'Noto Sans JP', 'Noto Sans KR', 'Noto Sans SC', serif;
  font-weight: 500;
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.2;
  margin: 0 auto 1.1rem;
  max-width: 22ch;
  letter-spacing: 0.005em;
}
h1.headline em { font-style: italic; color: var(--gold); }
html[lang="ja"] h1.headline em, html[lang="ko"] h1.headline em, html[lang="zh"] h1.headline em { font-style: normal; }
.subhead {
  color: var(--ink-soft);
  font-size: clamp(1rem, 2.4vw, 1.18rem);
  font-weight: 300;
  max-width: 44ch;
  margin: 0 auto 2.2rem;
}
.cta-row {
  display: flex; gap: 0.9rem; justify-content: center; flex-wrap: wrap;
}
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.95rem 2rem;
  border-radius: 999px;
  font-family: 'Inter', 'Noto Sans JP', 'Noto Sans KR', 'Noto Sans SC', sans-serif;
  font-size: 0.92rem; font-weight: 500; letter-spacing: 0.02em;
  text-decoration: none; cursor: pointer; border: 1px solid transparent;
  transition: transform 0.18s, box-shadow 0.18s, background 0.18s;
}
.btn-primary {
  background: linear-gradient(135deg, #bd975f, #9c7a45);
  color: #fff;
  box-shadow: 0 8px 24px rgba(176,141,87,0.28);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(176,141,87,0.38); }
.btn-ghost {
  background: transparent; color: var(--ink); border-color: var(--divider);
}
.btn-ghost:hover { transform: translateY(-2px); background: var(--card); }

/* ---------- STAT STRIP ---------- */
.stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem; margin: 2.8rem auto 0; max-width: 760px;
}
.stat {
  text-align: center; padding: 1.4rem 1rem;
  background: var(--card); border-radius: 18px; box-shadow: var(--card-shadow);
}
.stat .num {
  font-family: 'Cormorant Garamond', 'Noto Sans JP', 'Noto Sans KR', 'Noto Sans SC', serif; font-weight: 600;
  font-size: 2rem; color: var(--gold); line-height: 1;
}
.stat .lbl {
  font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink-mute); margin-top: 0.5rem;
}

/* ---------- SECTIONS ---------- */
section { padding: 3.8rem 0; }
.section-head { text-align: center; margin-bottom: 2.6rem; }
.eyebrow {
  font-size: 0.72rem; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--gold); font-weight: 500; margin-bottom: 0.6rem;
}
h2 {
  font-family: 'Cormorant Garamond', 'Noto Sans JP', 'Noto Sans KR', 'Noto Sans SC', serif; font-weight: 500;
  font-size: clamp(1.7rem, 3.6vw, 2.4rem); margin: 0; line-height: 1.2;
}
.section-head p { color: var(--ink-soft); font-weight: 300; max-width: 46ch; margin: 0.8rem auto 0; }
html[lang="ja"] .section-head p, html[lang="ko"] .section-head p, html[lang="zh"] .section-head p { text-align: left; }

.cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.4rem; }
.cards-3 { grid-template-columns: repeat(3, 1fr); }
.card {
  background: var(--card); border-radius: 20px; box-shadow: var(--card-shadow);
  padding: 2rem 1.8rem;
}
.card h3 { font-family: 'Cormorant Garamond', 'Noto Sans JP', 'Noto Sans KR', 'Noto Sans SC', serif; font-weight: 600; font-size: 1.3rem; margin: 0 0 0.4rem; }
.card p { margin: 0; color: var(--ink-soft); font-weight: 300; font-size: 0.96rem; }
.card .scenario-amt {
  font-family: 'Cormorant Garamond', serif; font-weight: 700;
  font-size: 2.2rem; color: var(--gold); line-height: 1.1; margin: 0.6rem 0 0.5rem;
}
.card .scenario-tag {
  display: inline-block; font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-mute); margin-bottom: 0.2rem;
}

.note {
  max-width: 760px; margin: 1.8rem auto 0;
  background: rgba(176,141,87,0.07); border: 1px solid rgba(176,141,87,0.28);
  border-left: 3px solid var(--gold); border-radius: 12px;
  padding: 1.2rem 1.4rem; color: var(--ink-soft);
  font-weight: 300; font-size: 0.9rem; line-height: 1.65;
}
.note strong { color: var(--gold); font-weight: 600; }

.center-cta { text-align: center; margin-top: 1.8rem; }

/* ---------- PAY HERO (earnings snapshot) ---------- */
.pay-hero {
  text-align: center; background: var(--card); border-radius: 24px;
  box-shadow: var(--card-shadow); padding: 2.6rem 1.5rem; margin-bottom: 1.6rem;
}
.pay-hero .big {
  font-family: 'Cormorant Garamond', serif; font-weight: 600;
  font-size: clamp(2.6rem, 7vw, 4rem); color: var(--gold); line-height: 1;
}
.pay-hero .big span { font-size: 0.38em; color: var(--ink-mute); font-weight: 500; }
.pay-hero .sub { color: var(--ink-soft); font-weight: 300; margin-top: 0.5rem; }

/* ---------- FAQ ---------- */
.faq { max-width: 680px; margin: 0 auto; }
details {
  background: var(--card); border-radius: 14px; box-shadow: var(--card-shadow);
  padding: 1.1rem 1.4rem; margin-bottom: 0.9rem;
}
details summary {
  cursor: pointer; list-style: none; font-weight: 500; font-size: 1rem;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
details summary::-webkit-details-marker { display: none; }
details summary::after { content: '+'; color: var(--gold); font-size: 1.4rem; font-weight: 300; transition: transform 0.2s; }
details[open] summary::after { transform: rotate(45deg); }
details p { margin: 0.8rem 0 0.2rem; color: var(--ink-soft); font-weight: 300; }

/* ---------- APPLY ---------- */
#apply {
  background:
    radial-gradient(120% 100% at 50% 0%, rgba(176,141,87,0.10), transparent 60%),
    var(--accent-bg);
}
.apply-box {
  text-align: center; max-width: 560px; margin: 0 auto;
  background: var(--card); border-radius: 26px; box-shadow: var(--card-shadow);
  padding: 3rem 2rem;
}
.apply-box h2 { margin-bottom: 0.5rem; }
.apply-box p.lead { color: var(--ink-soft); font-weight: 300; margin: 0 auto 1.8rem; max-width: 40ch; }
.apply-note { font-size: 0.8rem; color: var(--ink-mute); margin-top: 1.4rem; }

.apply-form { text-align: left; margin-top: 0.5rem; }
.field { margin-bottom: 0.9rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem; }
.apply-form label { display: block; font-size: 0.8rem; font-weight: 500; color: var(--ink-soft); margin-bottom: 0.35rem; letter-spacing: 0.02em; }
.apply-form label .opt { color: var(--ink-mute); font-weight: 400; }
.apply-form input[type=text], .apply-form input[type=email], .apply-form input[type=tel], .apply-form textarea {
  width: 100%; padding: 0.75rem 0.9rem; border: 1px solid var(--divider); border-radius: 12px;
  font-family: inherit; font-size: 0.95rem; color: var(--ink); background: #fff;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.apply-form input:focus, .apply-form textarea:focus {
  outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(176,141,87,0.15);
}
.apply-form textarea { resize: vertical; min-height: 74px; }
.check-line { display: flex; align-items: flex-start; gap: 0.6rem; margin: 0.3rem 0 1.2rem; font-size: 0.9rem; color: var(--ink-soft); cursor: pointer; text-align: left; }
.check-line input { margin-top: 3px; width: 17px; height: 17px; accent-color: var(--gold); flex: none; }
.apply-form .btn-primary { width: 100%; justify-content: center; }
.apply-form .btn[disabled] { opacity: 0.6; cursor: default; }
.form-status { text-align: center; font-size: 0.9rem; margin: 0.9rem 0 0; min-height: 1.1em; }
.form-status.ok { color: var(--teal); }
.form-status.err { color: #b4443a; }
.apply-alt { text-align: center; font-size: 0.85rem; color: var(--ink-mute); margin-top: 1.2rem; }
.apply-alt a { color: var(--gold); text-decoration: none; font-weight: 500; }
@media (max-width: 480px) { .field-row { grid-template-columns: 1fr; } }

/* ---------- FOOTER ---------- */
footer {
  text-align: center; padding: 2.6rem 1.5rem 3rem;
  color: var(--ink-mute); font-size: 0.8rem;
}
footer .ornament {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  margin: 0 auto 1.2rem; max-width: 220px; color: var(--ink-mute);
}
footer .ornament::before, footer .ornament::after {
  content: ''; flex: 1; height: 1px; background: currentColor; opacity: 0.4;
}
footer .ornament .dot { width: 4px; height: 4px; border-radius: 50%; background: currentColor; opacity: 0.7; }
footer a { color: var(--ink-soft); text-decoration: none; }
footer .guide-links { margin-top: 0.5rem; }

@media (max-width: 720px) {
  .stats { grid-template-columns: 1fr; max-width: 320px; }
  .cards, .cards-3 { grid-template-columns: 1fr; }
}

/* ---------- PHOTO BAND ---------- */
.photo-band {
  position: relative; overflow: hidden;
  height: clamp(300px, 44vh, 480px);
  display: flex; align-items: center; justify-content: center;
  background: #141210;
}
.band-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: 68% 30%;
  filter: grayscale(1) sepia(0.22) brightness(0.82) contrast(1.06);
}
.band-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(18,16,14,0.42) 0%, rgba(18,16,14,0.34) 45%, rgba(18,16,14,0.62) 100%);
}
.band-content { position: relative; z-index: 1; text-align: center; padding: 0 1.5rem; max-width: 680px; }
.band-content .ornament {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  color: var(--gold-soft); margin: 0 auto 0.9rem; max-width: 160px;
}
.band-content .ornament::before, .band-content .ornament::after {
  content: ''; flex: 1; height: 1px; background: currentColor; opacity: 0.5;
}
.band-content .ornament .dot { width: 4px; height: 4px; border-radius: 50%; background: currentColor; opacity: 0.85; }
.band-line {
  font-family: 'Cormorant Garamond', 'Noto Sans JP', 'Noto Sans KR', 'Noto Sans SC', serif; font-style: italic; font-weight: 500;
  font-size: clamp(1.6rem, 3.6vw, 2.6rem); line-height: 1.2; color: #fff; margin: 0;
  text-shadow: 0 2px 20px rgba(0,0,0,0.35);
}
