/* =====================================================
   WORLD Co., Ltd. — Corporate Site
   Mobile-first | 768px | 1200px
   ===================================================== */

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

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

body {
  background: #000;
  color: #fff;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 300;
  line-height: 1.8;
  overflow-x: hidden;
  min-height: 100vh;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---------- Star Canvas ---------- */
#bgCanvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* ---------- Nav overlay ---------- */
.nav-bg {
  position: fixed;
  inset: 0;
  z-index: 10;
  background: rgba(0,0,0,.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity .32s ease;
}
.nav-bg.is-open { opacity: 1; pointer-events: auto; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  height: 60px;
}

/* ---------- Logo ---------- */
.logo, .footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-mark { width: 32px; height: 32px; flex-shrink: 0; }
.logo-text {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: .32em;
}

/* ---------- Hamburger ---------- */
.hamburger {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.hb-bar {
  display: block;
  width: 22px; height: 1px;
  background: #fff;
  transition: transform .28s ease, opacity .2s ease;
  transform-origin: center;
}
.hamburger.is-open .hb-bar:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.is-open .hb-bar:nth-child(2) { opacity: 0; }
.hamburger.is-open .hb-bar:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ---------- Slide-in Nav ---------- */
.site-nav {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(320px, 88vw);
  z-index: 20;
  background: #000;
  border-left: 1px solid rgba(255,255,255,.08);
  padding: 100px 40px 60px;
  transform: translateX(100%);
  visibility: hidden;
  pointer-events: none;
  transition: transform .32s cubic-bezier(.4,0,.2,1), visibility 0s linear .32s;
}
.site-nav.is-open {
  transform: translateX(0);
  visibility: visible;
  pointer-events: auto;
  transition: transform .32s cubic-bezier(.4,0,.2,1), visibility 0s linear 0s;
}
.nav-list { display: flex; flex-direction: column; }
.nav-link {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.nav-en {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: .24em;
  color: rgba(255,255,255,.5);
}
.nav-ja { font-size: 15px; letter-spacing: .12em; }

/* ---------- Hero (index only) ---------- */
.s-hero {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh; height: 100svh;
  padding: 80px 32px 60px;
  text-align: center;
}
.hero-content { position: relative; z-index: 1; }
.hero-copy {
  font-size: 26px;
  font-weight: 300;
  line-height: 2.0;
  letter-spacing: .22em;
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: .38em;
  color: rgba(255,255,255,.45);
}

/* ---------- Scroll hint ---------- */
.scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
}
.sh-label {
  font-size: 9px;
  letter-spacing: .38em;
  color: rgba(255,255,255,.38);
}
.sh-line {
  display: block;
  width: 1px; height: 40px;
  background: rgba(255,255,255,.25);
  animation: scrollLine 1.8s ease-in-out infinite;
  transform-origin: top center;
}
@keyframes scrollLine {
  0%   { transform: scaleY(0); opacity: 1; }
  60%  { transform: scaleY(1); opacity: 1; }
  100% { transform: scaleY(1); opacity: 0; }
}

/* ---------- Philosophy sections ---------- */
.s-phil {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh; min-height: 100svh;
  padding: 100px 40px;
  text-align: center;
  overflow: hidden;
}
.phil-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}
.phil-label {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: .42em;
  color: rgba(255,255,255,.4);
  text-transform: uppercase;
}
.phil-text {
  font-size: 20px;
  font-weight: 300;
  line-height: 2.1;
  letter-spacing: .18em;
}
.phil-body {
  font-size: 14px;
  font-weight: 300;
  line-height: 2.3;
  letter-spacing: .08em;
  color: rgba(255,255,255,.58);
  max-width: 560px;
}

/* ---------- Aurora ---------- */
.phil-aurora {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}
.aband {
  position: absolute;
  left: -20%; right: -20%;
  border-radius: 50%;
  transform: scaleX(0);
  transform-origin: left center;
}
.ab1 {
  top: 35%; height: 80px;
  background: linear-gradient(90deg,transparent 0%,rgba(200,220,255,.08) 40%,rgba(255,255,255,.12) 60%,rgba(200,220,255,.06) 80%,transparent 100%);
  filter: blur(18px);
  animation: af1 8s ease-in-out infinite;
}
.ab2 {
  top: 48%; height: 50px;
  background: linear-gradient(90deg,transparent 0%,rgba(180,200,255,.06) 20%,rgba(255,255,255,.10) 50%,rgba(180,200,255,.07) 75%,transparent 100%);
  filter: blur(12px);
  animation: af2 11s ease-in-out infinite 1.5s;
}
.ab3 {
  top: 62%; height: 36px;
  background: linear-gradient(90deg,transparent 0%,rgba(200,210,255,.04) 30%,rgba(255,255,255,.07) 55%,rgba(200,210,255,.04) 78%,transparent 100%);
  filter: blur(8px);
  animation: af3 14s ease-in-out infinite 3s;
}
@keyframes af1 { 0%,100%{transform:scaleX(1) translateX(0%);opacity:.8} 50%{transform:scaleX(1) translateX(4%);opacity:1} }
@keyframes af2 { 0%,100%{transform:scaleX(1) translateX(0%);opacity:.6} 50%{transform:scaleX(1) translateX(-5%);opacity:1} }
@keyframes af3 { 0%,100%{transform:scaleX(1) translateX(0%);opacity:.5} 50%{transform:scaleX(1) translateX(3%);opacity:.9} }

/* ---------- Galaxy canvas ---------- */
.galaxy-cv {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  z-index: 1;
  opacity: 0;
}

/* ---------- Page nav (index) ---------- */
.page-nav {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(255,255,255,.08);
}
.pn-item {
  display: flex;
  flex-direction: column;
  padding: 48px 40px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  gap: 8px;
  transition: background .22s ease;
}
.pn-item:last-child { border-bottom: none; }
.pn-item:hover { background: rgba(255,255,255,.025); }
.pn-ja { font-size: 20px; font-weight: 300; letter-spacing: .18em; }
.pn-en { font-size: 10px; font-weight: 400; letter-spacing: .36em; color: rgba(255,255,255,.38); }
.pn-arrow {
  font-size: 16px;
  color: rgba(255,255,255,.3);
  margin-top: 12px;
  display: block;
  transition: transform .22s ease;
}
.pn-item:hover .pn-arrow { transform: translateX(6px); }

/* ---------- Footer ---------- */
.site-footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 80px 40px 60px;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
}
.footer-logo .logo-mark { width: 28px; height: 28px; }
.footer-copy {
  font-size: 10px;
  letter-spacing: .22em;
  color: rgba(255,255,255,.3);
}

/* ==============================================
   INNER PAGE COMMON
   ============================================== */

.page-hero {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 140px 40px 80px;
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.ph-en {
  font-size: 10px;
  letter-spacing: .48em;
  color: rgba(255,255,255,.5);
  text-transform: uppercase;
  margin-bottom: 22px;
}
.ph-ja {
  font-size: 28px;
  font-weight: 300;
  letter-spacing: .22em;
}

/* ==============================================
   VALUE SECTION (philosophy.html)
   ============================================== */

.val-section {
  position: relative;
  z-index: 1;
  padding: 100px 40px;
  border-top: 1px solid rgba(255,255,255,.07);
}
.val-heading {
  font-size: 10px;
  letter-spacing: .46em;
  color: rgba(255,255,255,.52);
  text-align: center;
  margin-bottom: 64px;
}
.val-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.07);
  max-width: 840px;
  margin: 0 auto;
}
.val-item {
  background: #000;
  padding: 44px 36px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.val-num { font-size: 9px; letter-spacing: .36em; color: rgba(255,255,255,.45); }
.val-ja  { font-size: 16px; font-weight: 300; letter-spacing: .2em; }
.val-en  { font-size: 9px; letter-spacing: .32em; color: rgba(255,255,255,.52); }

/* ==============================================
   BUSINESS SECTIONS (business.html)
   ============================================== */

.biz-section {
  position: relative;
  z-index: 1;
  min-height: 100vh; min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 120px 40px;
  border-bottom: 1px solid rgba(255,255,255,.07);
  overflow: hidden;
}
.biz-section:last-child { border-bottom: none; }
.biz-wrap { position: relative; z-index: 1; width: 100%; }
.biz-num {
  display: block;
  font-size: 9px;
  letter-spacing: .44em;
  color: rgba(255,255,255,.4);
  margin-bottom: 24px;
}
.biz-category {
  display: block;
  font-size: 10px;
  letter-spacing: .44em;
  color: rgba(255,255,255,.55);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.biz-name {
  font-size: 32px;
  font-weight: 300;
  letter-spacing: .06em;
  line-height: 1.2;
  margin-bottom: 36px;
}
.biz-desc {
  font-size: 14px;
  font-weight: 300;
  line-height: 2.3;
  letter-spacing: .08em;
  color: rgba(255,255,255,.62);
  max-width: 520px;
  margin-bottom: 40px;
}
.biz-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.biz-tag {
  font-size: 10px;
  letter-spacing: .28em;
  color: rgba(255,255,255,.62);
  border: 1px solid rgba(255,255,255,.28);
  padding: 7px 18px;
}
.biz-bg-num {
  position: absolute;
  right: -10px;
  bottom: -40px;
  font-size: clamp(140px, 28vw, 260px);
  font-weight: 300;
  letter-spacing: -.05em;
  color: rgba(255,255,255,.025);
  line-height: 1;
  pointer-events: none;
  z-index: 0;
  user-select: none;
}

/* ==============================================
   COMPANY PAGE (company.html)
   ============================================== */

.info-section {
  position: relative;
  z-index: 1;
  padding: 80px 40px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.section-label {
  display: block;
  font-size: 10px;
  letter-spacing: .46em;
  color: rgba(255,255,255,.52);
  margin-bottom: 52px;
}
.info-table { max-width: 760px; }
.info-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.info-row:first-child { border-top: 1px solid rgba(255,255,255,.06); }
.info-label {
  font-size: 10px;
  letter-spacing: .32em;
  color: rgba(255,255,255,.58);
}
.info-value {
  font-size: 15px;
  font-weight: 300;
  letter-spacing: .1em;
  line-height: 1.9;
}

.purpose-list { max-width: 760px; }
.purpose-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
  font-size: 14px;
  font-weight: 300;
  letter-spacing: .1em;
  line-height: 1.9;
  color: rgba(255,255,255,.78);
}
.purpose-item:first-child { border-top: 1px solid rgba(255,255,255,.06); }
.purpose-num {
  font-size: 9px;
  letter-spacing: .3em;
  color: rgba(255,255,255,.45);
  flex-shrink: 0;
  padding-top: 4px;
}

/* ==============================================
   RECRUIT PAGE (recruit.html)
   ============================================== */

.recruit-lead {
  position: relative;
  z-index: 1;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 40px;
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.recruit-lead-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.rl-copy {
  font-size: 24px;
  font-weight: 300;
  line-height: 2.0;
  letter-spacing: .2em;
}
.rl-body {
  font-size: 14px;
  font-weight: 300;
  line-height: 2.3;
  letter-spacing: .08em;
  color: rgba(255,255,255,.58);
  max-width: 520px;
}

.voice-section {
  position: relative;
  z-index: 1;
  padding: 100px 40px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.voice-grid {
  display: flex;
  flex-direction: column;
  gap: 64px;
  margin-top: 60px;
}
.voice-card {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.vc-photo {
  width: 100%;
  max-width: 280px;
  aspect-ratio: 3/4;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: center;
}
.vc-photo-label {
  font-size: 9px;
  letter-spacing: .28em;
  color: rgba(255,255,255,.35);
}
.vc-body { display: flex; flex-direction: column; gap: 8px; }
.vc-role {
  font-size: 10px;
  letter-spacing: .36em;
  color: rgba(255,255,255,.55);
}
.vc-name {
  font-size: 18px;
  font-weight: 300;
  letter-spacing: .18em;
  margin-bottom: 12px;
}
.vc-text {
  font-size: 14px;
  font-weight: 300;
  line-height: 2.2;
  letter-spacing: .08em;
  color: rgba(255,255,255,.65);
  max-width: 440px;
}

.req-section {
  position: relative;
  z-index: 1;
  padding: 100px 40px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.req-table { max-width: 760px; margin-top: 52px; }
.req-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.req-row:first-child { border-top: 1px solid rgba(255,255,255,.06); }
.req-label { font-size: 10px; letter-spacing: .32em; color: rgba(255,255,255,.58); }
.req-value { font-size: 14px; font-weight: 300; letter-spacing: .1em; line-height: 1.9; }

.apply-section {
  position: relative;
  z-index: 1;
  padding: 100px 40px;
  text-align: center;
}
.apply-title {
  font-size: 22px;
  font-weight: 300;
  letter-spacing: .2em;
  margin-bottom: 16px;
}
.apply-sub {
  font-size: 12px;
  letter-spacing: .18em;
  color: rgba(255,255,255,.45);
  margin-bottom: 52px;
}
.apply-btn {
  display: inline-block;
  font-size: 11px;
  letter-spacing: .36em;
  color: #000;
  background: #fff;
  padding: 20px 56px;
  transition: opacity .22s ease;
}
.apply-btn:hover { opacity: .8; }

/* ==============================================
   CONTACT PAGE (contact.html)
   ============================================== */

.tel-section {
  position: relative;
  z-index: 1;
  padding: 80px 40px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.tel-label {
  display: block;
  font-size: 10px;
  letter-spacing: .44em;
  color: rgba(255,255,255,.55);
  margin-bottom: 24px;
}
.tel-number {
  font-size: 36px;
  font-weight: 300;
  letter-spacing: .08em;
  margin-bottom: 12px;
  display: block;
  color: #fff;
}
.tel-hours {
  font-size: 12px;
  letter-spacing: .16em;
  color: rgba(255,255,255,.6);
}

.form-section {
  position: relative;
  z-index: 1;
  padding: 80px 40px 120px;
}
.contact-form {
  max-width: 640px;
  display: flex;
  flex-direction: column;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.form-label {
  font-size: 10px;
  letter-spacing: .36em;
  color: rgba(255,255,255,.7);
  display: flex;
  align-items: center;
  gap: 10px;
}
.form-required {
  font-size: 9px;
  letter-spacing: .18em;
  color: rgba(255,255,255,.55);
}
.form-input,
.form-textarea,
.form-select {
  background: rgba(255,255,255,.03);
  border: none;
  border-bottom: 1px solid rgba(255,255,255,.22);
  color: #fff;
  -webkit-text-fill-color: #fff;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 15px;
  font-weight: 300;
  letter-spacing: .08em;
  padding: 12px 4px;
  width: 100%;
  outline: none;
  transition: border-color .22s ease;
  -webkit-appearance: none;
  appearance: none;
}
.form-input:focus,
.form-textarea:focus { border-color: rgba(255,255,255,.65); }
.form-input::placeholder,
.form-textarea::placeholder { color: rgba(255,255,255,.38); }
.form-textarea { resize: vertical; min-height: 140px; }

/* Safari/iOS autofill override */
.form-input:-webkit-autofill,
.form-input:-webkit-autofill:hover,
.form-input:-webkit-autofill:focus,
.form-textarea:-webkit-autofill,
.form-textarea:-webkit-autofill:hover,
.form-textarea:-webkit-autofill:focus {
  -webkit-text-fill-color: #fff;
  -webkit-box-shadow: 0 0 0px 1000px #000 inset;
  box-shadow: 0 0 0px 1000px #000 inset;
  transition: background-color 5000s ease-in-out 0s;
  caret-color: #fff;
}
.form-privacy {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 28px 0;
  font-size: 12px;
  letter-spacing: .1em;
  color: rgba(255,255,255,.72);
  cursor: pointer;
}
.form-privacy input[type="checkbox"] {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: #fff;
  cursor: pointer;
}
.form-submit {
  margin-top: 44px;
  padding: 20px;
  width: 100%;
  background: #fff;
  color: #000;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 11px;
  letter-spacing: .36em;
  font-weight: 400;
  border: none;
  cursor: pointer;
  transition: opacity .22s ease;
}
.form-submit:hover { opacity: .8; }

/* ==============================================
   RESPONSIVE — TABLET 768px
   ============================================== */
@media (min-width: 768px) {
  .site-header { height: 72px; padding: 0 40px; }
  .logo-mark { width: 36px; height: 36px; }
  .logo-text { font-size: 14px; }

  .hero-copy { font-size: 32px; }
  .hero-sub  { font-size: 12px; }

  .phil-text { font-size: 24px; }
  .phil-body { font-size: 15px; }

  .ph-ja { font-size: 36px; }

  .biz-name { font-size: 44px; }

  /* company */
  .info-row { flex-direction: row; gap: 40px; align-items: flex-start; }
  .info-label { width: 160px; flex-shrink: 0; padding-top: 3px; }
  .req-row  { flex-direction: row; gap: 40px; align-items: flex-start; }
  .req-label { width: 160px; flex-shrink: 0; padding-top: 3px; }

  /* recruit */
  .rl-copy { font-size: 30px; }
  .voice-card { flex-direction: row; gap: 52px; align-items: flex-start; }
  .vc-photo { flex-shrink: 0; width: 220px; max-width: none; }

  /* contact */
  .tel-number { font-size: 52px; }
}

/* ==============================================
   RESPONSIVE — DESKTOP 1200px
   ============================================== */
@media (min-width: 1200px) {
  .site-header { height: 80px; padding: 0 60px; }
  .hamburger { display: none; }

  .site-nav {
    position: static;
    width: auto;
    background: transparent;
    border: none;
    padding: 0;
    transform: none !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transition: none !important;
  }
  .nav-list { flex-direction: row; gap: 32px; }
  .nav-link { flex-direction: row; align-items: center; gap: 8px; padding: 0; border: none; }
  .nav-en { font-size: 11px; letter-spacing: .2em; color: rgba(255,255,255,.6); }
  .nav-ja { display: none; }

  .hero-copy { font-size: 40px; }
  .hero-sub  { font-size: 13px; }
  .phil-text  { font-size: 28px; line-height: 2.2; }
  .phil-label { font-size: 11px; }
  .phil-body  { font-size: 15px; max-width: 640px; }

  .page-hero { padding: 180px 60px 120px; }
  .ph-ja     { font-size: 52px; }

  .val-section { padding: 140px 60px; }
  .val-grid { grid-template-columns: repeat(4,1fr); max-width: 1200px; }

  /* page nav */
  .page-nav {
    flex-direction: row;
    max-width: 1200px;
    margin: 0 auto;
    border-top: 1px solid rgba(255,255,255,.08);
    border-bottom: 1px solid rgba(255,255,255,.08);
  }
  .pn-item {
    flex: 1;
    padding: 80px 48px;
    border-bottom: none;
    border-right: 1px solid rgba(255,255,255,.08);
  }
  .pn-item:last-child { border-right: none; }
  .pn-ja { font-size: 22px; letter-spacing: .2em; }

  /* footer */
  .site-footer { padding: 100px 60px 80px; }
  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
  }

  /* business */
  .biz-section { padding: 140px 60px; }
  .biz-wrap    { max-width: 1200px; margin: 0 auto; }
  .biz-name    { font-size: 60px; }
  .biz-desc    { font-size: 15px; }

  /* company */
  .info-section { padding: 100px 60px; }
  .info-table { max-width: 900px; }
  .purpose-list { max-width: 900px; }

  /* recruit */
  .recruit-lead { padding: 120px 60px; min-height: 60vh; }
  .rl-copy { font-size: 36px; }
  .voice-section { padding: 120px 60px; }
  .voice-grid {
    flex-direction: row;
    gap: 0;
    margin-top: 72px;
  }
  .voice-card {
    flex: 1;
    flex-direction: column;
    gap: 24px;
    padding: 0 40px;
    border-right: 1px solid rgba(255,255,255,.07);
  }
  .voice-card:first-child { padding-left: 0; }
  .voice-card:last-child  { padding-right: 0; border-right: none; }
  .vc-photo { width: 100%; max-width: none; }
  .req-section  { padding: 100px 60px; }
  .req-table    { max-width: 900px; }
  .apply-section { padding: 120px 60px; }

  /* contact */
  .tel-section  { padding: 100px 60px; }
  .tel-number   { font-size: 64px; }
  .form-section { padding: 100px 60px 140px; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
  .sh-line { animation: none; }
}
