/* =========================================================
   FUKUDA CORPORATION — Corporate & Recruit Site
   Shared stylesheet
   ========================================================= */

/* ---------- Design tokens ---------- */
:root {
  --brand-red:    #e8491d;
  --brand-orange: #f47920;
  --brand-amber:  #f9a825;
  --brand-gold:   #fdc300;
  --grad:  linear-gradient(120deg, #e8491d 0%, #f47920 48%, #f9a825 100%);
  --grad-soft: linear-gradient(120deg, #ee6a2a 0%, #f7a027 100%);

  --ink:   #1c1a18;
  --ink-2: #57514a;
  --ink-3: #8a8178;
  --cream: #faf6f0;
  --paper: #ffffff;
  --line:  rgba(28, 26, 24, .10);

  --maxw: 1180px;
  --pad:  clamp(20px, 5vw, 80px);
  --r:    16px;

  --serif: "Noto Serif JP", "Hiragino Mincho ProN", serif;
  --sans:  "Noto Sans JP", "Hiragino Sans", "Helvetica Neue", Arial, sans-serif;
  --latin: "Cormorant Garamond", serif;

  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.9;
  font-size: 16px;
  letter-spacing: .02em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---------- Layout helpers ---------- */
.wrap { max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad); }
.wrap-wide { max-width: 1400px; margin-inline: auto; padding-inline: var(--pad); }
.section { padding-block: clamp(64px, 11vw, 140px); }
.center { text-align: center; }

/* ---------- Type ---------- */
.eyebrow {
  font-family: var(--latin);
  font-size: clamp(13px, 1.4vw, 15px);
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--brand-red);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: .7em;
}
.eyebrow::before {
  content: "";
  width: 34px; height: 1px;
  background: var(--brand-orange);
}
.eyebrow.center-line::after {
  content: "";
  width: 34px; height: 1px;
  background: var(--brand-orange);
}

.sec-title {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.4;
  font-size: clamp(26px, 4.4vw, 42px);
  letter-spacing: .04em;
  margin-top: 18px;
}
.sec-title .en {
  display: block;
  font-family: var(--latin);
  font-size: .5em;
  letter-spacing: .3em;
  color: var(--ink-3);
  margin-top: .4em;
  font-weight: 500;
}
.lead { color: var(--ink-2); font-size: clamp(15px, 1.7vw, 17px); }

.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Buttons ---------- */
.btn {
  --_bg: var(--grad);
  display: inline-flex;
  align-items: center;
  gap: .8em;
  padding: 16px 34px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .08em;
  background-image: var(--_bg);
  color: #fff;
  border: none;
  cursor: pointer;
  position: relative;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
  box-shadow: 0 10px 26px -10px rgba(232, 73, 29, .6);
}
.btn:hover { transform: translateY(-3px); box-shadow: 0 18px 34px -12px rgba(232, 73, 29, .7); }
.btn .arrow { transition: transform .35s var(--ease); }
.btn:hover .arrow { transform: translateX(5px); }
.btn.ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--line);
  box-shadow: none;
}
.btn.ghost:hover { border-color: var(--brand-orange); color: var(--brand-red); box-shadow: none; }
.btn.light { background: #fff; color: var(--brand-red); box-shadow: 0 12px 30px -12px rgba(0,0,0,.4); }
.btn.lg { padding: 20px 46px; font-size: 16px; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px var(--pad);
  transition: background .4s var(--ease), padding .4s var(--ease), box-shadow .4s var(--ease);
}
.site-header.solid {
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(14px);
  padding-block: 12px;
  box-shadow: 0 1px 0 var(--line), 0 12px 30px -24px rgba(0,0,0,.5);
}
.brand { display: flex; align-items: center; height: 50px; }
.brand img { height: 46px; width: auto; }
.site-header.solid .brand img { height: 40px; }
.brand .logo-white { display: block; }
.brand .logo-dark  { display: none; }
.site-header.solid .brand .logo-white { display: none; }
.site-header.solid .brand .logo-dark  { display: block; }

.nav { display: flex; align-items: center; gap: 34px; }
.nav a.navlink {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .06em;
  color: #fff;
  position: relative;
  transition: color .3s;
}
.nav a.navlink .jp { display: block; font-size: 14px; }
.nav a.navlink .en { display: block; font-family: var(--latin); font-size: 10px; letter-spacing: .2em; opacity: .7; text-transform: uppercase; }
.site-header.solid .nav a.navlink { color: var(--ink); }
.nav a.navlink::after {
  content: ""; position: absolute; left: 0; bottom: -6px;
  width: 0; height: 2px; background: var(--grad);
  transition: width .3s var(--ease);
}
.nav a.navlink:hover::after, .nav a.navlink.active::after { width: 100%; }
.nav a.navlink:hover { color: var(--brand-orange); }

.nav-cta { margin-left: 6px; }
.nav-cta.btn { padding: 12px 24px; font-size: 13px; }

/* burger */
.burger { display: none; width: 44px; height: 44px; border: none; background: none; cursor: pointer; position: relative; z-index: 120; }
.burger span { position: absolute; left: 9px; right: 9px; height: 2px; background: #fff; transition: .35s var(--ease); }
.site-header.solid .burger span { background: var(--ink); }
.burger span:nth-child(1) { top: 15px; }
.burger span:nth-child(2) { top: 22px; }
.burger span:nth-child(3) { top: 29px; }
body.menu-open .burger span { background: var(--ink); }
body.menu-open .burger span:nth-child(1) { top: 22px; transform: rotate(45deg); }
body.menu-open .burger span:nth-child(2) { opacity: 0; }
body.menu-open .burger span:nth-child(3) { top: 22px; transform: rotate(-45deg); }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: #cfc7bd; padding-block: 72px 32px; }
.site-footer a { transition: color .3s; }
.site-footer a:hover { color: var(--brand-amber); }
.foot-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.1); }
.foot-brand img { height: 30px; margin-bottom: 20px; }
.foot-brand p { font-size: 13.5px; color: #9c948a; max-width: 34ch; }
.foot-col h4 { font-family: var(--latin); letter-spacing: .2em; font-size: 13px; color: var(--brand-amber); margin-bottom: 18px; text-transform: uppercase; }
.foot-col li { margin-bottom: 12px; }
.foot-col a { font-size: 14px; }
.foot-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 28px; font-size: 12px; color: #7d766d; flex-wrap: wrap; gap: 10px; }
.foot-bottom .latin { font-family: var(--latin); letter-spacing: .2em; }

/* ---------- Reveal animation ----------
   Entrance uses transform ONLY — opacity always stays 1, so content is
   never invisible even if the animation is paused/frozen (e.g. when the
   preview tab is backgrounded and rAF/transitions don't advance).
   No dependency on JS, scroll, or timers for visibility. */
@keyframes revealIn { from { transform: translateY(28px); } to { transform: none; } }
.has-js [data-reveal] { animation: revealIn .8s var(--ease) backwards; }
.has-js [data-reveal].d1 { animation-delay: .1s; }
.has-js [data-reveal].d2 { animation-delay: .2s; }
.has-js [data-reveal].d3 { animation-delay: .3s; }
.has-js [data-reveal].d4 { animation-delay: .4s; }
@media (prefers-reduced-motion: reduce) {
  .has-js [data-reveal] { animation: none; }
}

/* =========================================================
   HERO (home)
   ========================================================= */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; color: #fff; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; animation: heroZoom 14s var(--ease) forwards; }
@keyframes heroZoom { from { transform: scale(1.12); } to { transform: scale(1); } }
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(20,14,10,.82) 0%, rgba(20,14,10,.5) 45%, rgba(20,14,10,.25) 100%),
              linear-gradient(0deg, rgba(20,14,10,.75), transparent 40%);
}
.hero-inner { position: relative; z-index: 2; width: 100%; }
.hero .eyebrow { color: var(--brand-amber); }
.hero .eyebrow::before { background: var(--brand-amber); }
.hero h1 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(34px, 6.6vw, 78px);
  line-height: 1.28;
  letter-spacing: .04em;
  margin: 22px 0 26px;
  text-shadow: 0 4px 30px rgba(0,0,0,.35);
}
.hero h1 .accent { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero p.hero-lead { font-size: clamp(15px, 2vw, 19px); max-width: 40ch; color: #ede7df; margin-bottom: 40px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-scroll {
  position: absolute; left: var(--pad); bottom: 34px; z-index: 3;
  font-family: var(--latin); font-size: 11px; letter-spacing: .3em; color: #fff; text-transform: uppercase;
  display: flex; align-items: center; gap: 12px;
}
.hero-scroll::after { content: ""; width: 46px; height: 1px; background: rgba(255,255,255,.6); position: relative; overflow: hidden; }
.hero-side {
  position: absolute; right: 30px; top: 50%; transform: translateY(-50%) rotate(180deg);
  writing-mode: vertical-rl; font-family: var(--latin); letter-spacing: .35em; font-size: 12px;
  color: rgba(255,255,255,.6); z-index: 3;
}

/* =========================================================
   Marquee / brand strip
   ========================================================= */
.marquee { background: var(--ink); color: #fff; overflow: hidden; padding-block: 20px; white-space: nowrap; }
.marquee-track { display: inline-flex; gap: 60px; animation: scrollx 26s linear infinite; }
.marquee span { font-family: var(--latin); font-size: 22px; letter-spacing: .2em; color: rgba(255,255,255,.35); display: inline-flex; align-items: center; gap: 60px; }
.marquee span::after { content: "◍"; color: var(--brand-orange); font-size: 12px; }
@keyframes scrollx { to { transform: translateX(-50%); } }

/* =========================================================
   Intro / philosophy split
   ========================================================= */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 6vw, 84px); align-items: center; }
.split.rev { direction: rtl; }
.split.rev > * { direction: ltr; }
.split-media { position: relative; }
.split-media img { border-radius: var(--r); width: 100%; aspect-ratio: 4/3.2; object-fit: cover; box-shadow: 0 40px 70px -40px rgba(0,0,0,.5); }
.split-media .tag {
  position: absolute; bottom: -22px; right: -14px;
  background: var(--grad); color: #fff; padding: 18px 26px; border-radius: 12px;
  font-family: var(--serif); font-size: 15px; box-shadow: 0 20px 40px -18px rgba(232,73,29,.6); line-height: 1.6;
}
.split-media .tag b { font-size: 30px; font-family: var(--latin); }
.body-copy p { color: var(--ink-2); margin-bottom: 1.2em; }
.body-copy p:last-child { margin-bottom: 0; }

/* =========================================================
   Brand cards (stores)
   ========================================================= */
.brand-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.brand-card {
  position: relative; border-radius: var(--r); overflow: hidden; background: #000;
  aspect-ratio: 16/11; display: flex; align-items: flex-end;
  box-shadow: 0 30px 60px -40px rgba(0,0,0,.55);
}
.brand-card img.bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); }
.brand-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(15,10,8,.9) 5%, rgba(15,10,8,.25) 55%, rgba(15,10,8,.35) 100%); transition: opacity .5s; }
.brand-card:hover img.bg { transform: scale(1.07); }
.brand-card .info { position: relative; z-index: 2; padding: 34px; color: #fff; width: 100%; }
.brand-card .cat { font-family: var(--latin); letter-spacing: .25em; font-size: 12px; color: var(--brand-amber); text-transform: uppercase; }
.brand-card h3 { font-family: var(--serif); font-size: clamp(22px, 3vw, 30px); margin: 6px 0 8px; }
.brand-card .meta { font-size: 13px; color: #d9d1c8; display: flex; align-items: center; gap: 10px; }
.brand-card .meta::before { content: "▮"; color: var(--brand-orange); font-size: 10px; }
.brand-card .go { position: absolute; top: 28px; right: 28px; z-index: 2; width: 46px; height: 46px; border-radius: 50%; border: 1px solid rgba(255,255,255,.4); display: grid; place-items: center; color: #fff; transition: .4s var(--ease); }
.brand-card:hover .go { background: var(--grad); border-color: transparent; transform: rotate(-45deg); }

/* =========================================================
   Corporate Statement
   ========================================================= */
.statement { background: radial-gradient(120% 90% at 50% 0%, #ffffff 0%, var(--cream) 70%); position: relative; overflow: hidden; }
.statement::before {
  content: "1℃"; position: absolute; right: -2%; top: 4%;
  font-family: var(--latin); font-weight: 700; font-size: clamp(140px, 26vw, 360px);
  line-height: 1; color: rgba(232, 73, 29, .05); letter-spacing: -.03em; pointer-events: none;
}
.statement-inner { max-width: 900px; margin-inline: auto; position: relative; z-index: 1; }
.statement-catch {
  font-family: var(--serif); font-weight: 600;
  font-size: clamp(23px, 4vw, 40px); line-height: 1.7; letter-spacing: .04em;
  margin-top: 20px;
}
.statement-catch .hot { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.statement-body { margin-top: 46px; text-align: center; }
.statement-body p { color: var(--ink-2); margin-bottom: 1.5em; font-size: clamp(15px, 1.7vw, 17px); line-height: 2.15; }
.statement-body p:last-child { margin-bottom: 0; }
.statement-en {
  margin-top: 58px; padding: clamp(28px, 4vw, 52px);
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r);
  position: relative; box-shadow: 0 30px 60px -46px rgba(0,0,0,.4);
}
.statement-en::before { content: ""; position: absolute; left: 0; top: 26px; bottom: 26px; width: 3px; background: var(--grad); border-radius: 3px; }
.statement-en .en-catch { font-family: var(--latin); font-size: clamp(21px, 2.8vw, 30px); font-weight: 600; color: var(--ink); line-height: 1.35; }
.statement-en .en-sub { font-family: var(--latin); letter-spacing: .1em; color: var(--brand-red); font-size: 13.5px; margin: 8px 0 24px; text-transform: uppercase; }
.statement-en p { color: var(--ink-2); font-size: 14.5px; line-height: 1.95; margin-bottom: 1.15em; }
.statement-en strong { color: var(--ink); font-weight: 700; }
.statement-en .en-close { margin-top: 6px; margin-bottom: 0; font-family: var(--serif); color: var(--ink); font-size: 15.5px; line-height: 1.8; }

/* =========================================================
   Stats
   ========================================================= */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.stat { text-align: center; padding: 34px 16px; border-radius: var(--r); background: var(--paper); border: 1px solid var(--line); }
.stat .num { font-family: var(--latin); font-weight: 600; font-size: clamp(40px, 6vw, 60px); line-height: 1; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat .num small { font-size: .4em; margin-left: 2px; -webkit-text-fill-color: var(--ink-3); }
.stat .lbl { margin-top: 12px; font-size: 13px; color: var(--ink-2); letter-spacing: .05em; }

/* =========================================================
   CTA band
   ========================================================= */
.cta-band { position: relative; color: #fff; overflow: hidden; }
.cta-band .bg { position: absolute; inset: 0; }
.cta-band .bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-band .bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(120deg, rgba(232,73,29,.92), rgba(249,168,37,.82)); mix-blend-mode: multiply; }
.cta-band .bg::before { content: ""; position: absolute; inset: 0; background: rgba(20,14,10,.35); z-index: 1; }
.cta-inner { position: relative; z-index: 2; text-align: center; padding-block: clamp(70px, 11vw, 130px); }
.cta-inner h2 { font-family: var(--serif); font-size: clamp(26px, 4.4vw, 46px); line-height: 1.4; margin-bottom: 18px; }
.cta-inner p { color: #fff4ec; margin-bottom: 34px; font-size: clamp(15px,1.8vw,18px); }

/* =========================================================
   Page hero (sub pages)
   ========================================================= */
.page-hero { position: relative; padding-top: clamp(130px, 18vw, 200px); padding-bottom: clamp(50px, 7vw, 90px); color: #fff; overflow: hidden; }
.page-hero .bg { position: absolute; inset: 0; z-index: 0; }
.page-hero .bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero .bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(20,14,10,.82), rgba(20,14,10,.45)); }
.page-hero .inner { position: relative; z-index: 2; }
.page-hero .eyebrow { color: var(--brand-amber); }
.page-hero .eyebrow::before { background: var(--brand-amber); }
.page-hero h1 { font-family: var(--serif); font-weight: 600; font-size: clamp(30px, 5.4vw, 60px); letter-spacing: .05em; margin-top: 16px; }
.crumbs { margin-top: 20px; font-size: 12.5px; color: #d9d1c8; letter-spacing: .05em; }
.crumbs a:hover { color: var(--brand-amber); }
.crumbs span { opacity: .5; margin: 0 8px; }

/* =========================================================
   Info table (about)
   ========================================================= */
.info-table { width: 100%; border-collapse: collapse; }
.info-table th, .info-table td { text-align: left; padding: 22px 10px; border-bottom: 1px solid var(--line); vertical-align: top; font-size: 15px; }
.info-table th { width: 200px; font-weight: 700; color: var(--ink); white-space: nowrap; }
.info-table td { color: var(--ink-2); }
.info-table tr:first-child th, .info-table tr:first-child td { border-top: 1px solid var(--line); }

/* Timeline */
.timeline { position: relative; padding-left: 30px; }
.timeline::before { content: ""; position: absolute; left: 6px; top: 8px; bottom: 8px; width: 2px; background: linear-gradient(var(--brand-red), var(--brand-amber)); }
.tl-item { position: relative; padding-bottom: 34px; }
.tl-item:last-child { padding-bottom: 0; }
.tl-item::before { content: ""; position: absolute; left: -30px; top: 7px; width: 14px; height: 14px; border-radius: 50%; background: #fff; border: 3px solid var(--brand-orange); }
.tl-item .yr { font-family: var(--latin); font-size: 20px; font-weight: 600; color: var(--brand-red); }
.tl-item p { color: var(--ink-2); font-size: 15px; }

/* Message / representative */
.message-box { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r); padding: clamp(28px, 5vw, 56px); }
.message-box .sign { margin-top: 26px; font-family: var(--serif); }
.message-box .sign small { display: block; font-size: 12px; color: var(--ink-3); letter-spacing: .1em; }
.message-box .sign b { font-size: 22px; letter-spacing: .1em; }

/* value cards */
.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.value { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r); padding: 38px 30px; transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.value:hover { transform: translateY(-6px); box-shadow: 0 26px 50px -30px rgba(0,0,0,.4); }
.value .ic { width: 56px; height: 56px; border-radius: 14px; background: var(--grad); display: grid; place-items: center; color: #fff; font-family: var(--latin); font-size: 24px; font-weight: 600; margin-bottom: 22px; }
.value h3 { font-family: var(--serif); font-size: 21px; margin-bottom: 12px; }
.value p { color: var(--ink-2); font-size: 14.5px; }

/* =========================================================
   Store detail sections
   ========================================================= */
.store-block { padding-block: clamp(50px, 8vw, 96px); border-bottom: 1px solid var(--line); }
.store-head { display: flex; align-items: center; gap: 26px; margin-bottom: 40px; flex-wrap: wrap; }
.store-head .st-logo { width: 92px; height: 92px; border-radius: 16px; background: #fff; border: 1px solid var(--line); display: grid; place-items: center; padding: 10px; flex: none; }
.store-head .st-logo img { max-height: 100%; width: auto; object-fit: contain; }
.store-head .cat { font-family: var(--latin); letter-spacing: .25em; font-size: 12px; color: var(--brand-red); text-transform: uppercase; }
.store-head h2 { font-family: var(--serif); font-size: clamp(24px, 3.6vw, 36px); }
.store-head .loc { font-size: 13.5px; color: var(--ink-2); margin-top: 4px; }

.gallery { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 160px; gap: 14px; }
.gallery a { border-radius: 12px; overflow: hidden; display: block; }
.gallery a img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.gallery a:hover img { transform: scale(1.08); }
.gallery a.big { grid-column: span 2; grid-row: span 2; }
.gallery a.tall { grid-row: span 2; }

.store-desc { display: grid; grid-template-columns: 1.3fr 1fr; gap: 40px; margin-bottom: 36px; align-items: start; }
.store-desc p { color: var(--ink-2); }
.store-facts { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r); padding: 26px 28px; }
.store-facts dl { display: grid; grid-template-columns: auto 1fr; gap: 12px 18px; font-size: 14px; }
.store-facts dt { color: var(--ink-3); font-weight: 500; }
.store-facts dd { color: var(--ink); }

.chip { display: inline-block; padding: 5px 14px; border-radius: 100px; background: rgba(244,121,32,.12); color: var(--brand-red); font-size: 12px; font-weight: 600; margin: 3px 4px 3px 0; }

/* placeholder brand (no photo) */
.store-ph { border-radius: var(--r); background: var(--grad); color: #fff; padding: 40px; display: flex; flex-direction: column; justify-content: center; min-height: 320px; position: relative; overflow: hidden; }
.store-ph::before { content: "肉"; position: absolute; right: -20px; bottom: -40px; font-family: var(--serif); font-size: 220px; opacity: .12; line-height: 1; }
.store-ph .soon { font-family: var(--latin); letter-spacing: .3em; font-size: 12px; opacity: .8; }

/* =========================================================
   Recruit page specifics
   ========================================================= */
.job-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.job-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r); padding: 34px 30px; transition: .4s var(--ease); position: relative; overflow: hidden; }
.job-card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--grad); transform: scaleX(0); transform-origin: left; transition: transform .5s var(--ease); }
.job-card:hover { transform: translateY(-6px); box-shadow: 0 28px 54px -30px rgba(0,0,0,.35); }
.job-card:hover::before { transform: scaleX(1); }
.job-card .no { font-family: var(--latin); font-size: 15px; color: var(--brand-amber); letter-spacing: .1em; }
.job-card h3 { font-family: var(--serif); font-size: 22px; margin: 6px 0 12px; }
.job-card p { font-size: 14px; color: var(--ink-2); }
.job-card .pay { margin-top: 16px; font-weight: 700; color: var(--brand-red); font-size: 15px; }

.benefit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.benefit { display: flex; gap: 16px; align-items: flex-start; padding: 24px; background: var(--paper); border: 1px solid var(--line); border-radius: 14px; }
.benefit .bi { flex: none; width: 44px; height: 44px; border-radius: 12px; background: rgba(244,121,32,.12); display: grid; place-items: center; color: var(--brand-red); font-weight: 700; font-family: var(--latin); }
.benefit h4 { font-size: 15.5px; margin-bottom: 4px; }
.benefit p { font-size: 13px; color: var(--ink-2); line-height: 1.7; }

/* voices */
.voice-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.voice { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r); padding: 34px; position: relative; }
.voice::before { content: "\201C"; font-family: var(--serif); position: absolute; top: 6px; right: 26px; font-size: 90px; color: rgba(244,121,32,.14); line-height: 1; }
.voice .who { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.voice .av { width: 52px; height: 52px; border-radius: 50%; background: var(--grad); color: #fff; display: grid; place-items: center; font-family: var(--serif); font-size: 20px; flex: none; }
.voice .who b { display: block; font-size: 15px; }
.voice .who small { color: var(--ink-3); font-size: 12px; }
.voice p { color: var(--ink-2); font-size: 14.5px; position: relative; z-index: 1; }

/* steps */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; counter-reset: step; }
.step { text-align: center; position: relative; }
.step .n { width: 64px; height: 64px; margin: 0 auto 18px; border-radius: 50%; background: #fff; border: 2px solid var(--brand-orange); display: grid; place-items: center; font-family: var(--latin); font-size: 24px; font-weight: 600; color: var(--brand-red); }
.step h4 { font-size: 16px; margin-bottom: 8px; }
.step p { font-size: 13px; color: var(--ink-2); }
.step:not(:last-child)::after { content: ""; position: absolute; top: 32px; left: calc(50% + 42px); right: calc(-50% + 42px); height: 2px; background: repeating-linear-gradient(90deg, var(--brand-orange) 0 6px, transparent 6px 12px); }

/* faq */
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; text-align: left; background: none; border: none; cursor: pointer; padding: 24px 44px 24px 0; font-size: 16px; font-weight: 600; color: var(--ink); position: relative; font-family: var(--sans); }
.faq-q::after { content: "+"; position: absolute; right: 6px; top: 50%; transform: translateY(-50%); font-size: 24px; color: var(--brand-orange); transition: transform .3s; font-weight: 300; }
.faq-item.open .faq-q::after { transform: translateY(-50%) rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.faq-a p { padding: 0 40px 24px 0; color: var(--ink-2); font-size: 14.5px; }

/* =========================================================
   Recruit LP (long form landing)
   ========================================================= */
.lp-hero { position: relative; min-height: 100svh; display: flex; align-items: center; color: #fff; overflow: hidden; text-align: center; }
.lp-hero .bg { position: absolute; inset: 0; }
.lp-hero .bg img { width: 100%; height: 100%; object-fit: cover; }
.lp-hero .bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(20,14,10,.9), rgba(20,14,10,.55)); }
.lp-hero .inner { position: relative; z-index: 2; width: 100%; }
.lp-hero .catch { font-family: var(--serif); font-weight: 700; font-size: clamp(32px, 8vw, 92px); line-height: 1.24; letter-spacing: .03em; text-shadow: 0 4px 30px rgba(0,0,0,.4); }
.lp-hero .catch em { font-style: normal; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.lp-hero .sub { margin: 26px auto 40px; max-width: 30ch; color: #ede7df; font-size: clamp(15px,2vw,19px); }
.lp-badge { display: inline-block; padding: 8px 22px; border-radius: 100px; border: 1px solid rgba(255,255,255,.4); font-family: var(--latin); letter-spacing: .3em; font-size: 12px; margin-bottom: 26px; }

.lp-section { padding-block: clamp(60px, 10vw, 120px); }
.lp-dark { background: var(--ink); color: #fff; }
.lp-dark .sec-title { color: #fff; }
.lp-dark .lead { color: #cfc7bd; }

.reason { display: grid; grid-template-columns: 80px 1fr; gap: 26px; align-items: start; padding: 34px 0; border-bottom: 1px solid var(--line); }
.reason .rn { font-family: var(--latin); font-size: 54px; font-weight: 600; line-height: 1; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.reason h3 { font-family: var(--serif); font-size: clamp(20px, 3vw, 28px); margin-bottom: 12px; }
.reason p { color: var(--ink-2); }
.lp-dark .reason { border-color: rgba(255,255,255,.12); }
.lp-dark .reason p { color: #cfc7bd; }

.lp-sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  background: rgba(28,26,24,.9); backdrop-filter: blur(12px);
  padding: 14px var(--pad); display: flex; align-items: center; justify-content: space-between; gap: 16px;
  transform: translateY(120%); transition: transform .5s var(--ease);
  border-top: 1px solid rgba(255,255,255,.1);
}
.lp-sticky-cta.show { transform: none; }
.lp-sticky-cta .txt { color: #fff; }
.lp-sticky-cta .txt b { font-family: var(--serif); font-size: 17px; }
.lp-sticky-cta .txt small { display: block; color: #cfc7bd; font-size: 12px; }

/* form */
.form-card { background: var(--paper); border-radius: var(--r); padding: clamp(28px, 5vw, 54px); box-shadow: 0 40px 80px -50px rgba(0,0,0,.5); }
.form-row { margin-bottom: 22px; }
.form-row label { display: block; font-size: 14px; font-weight: 600; margin-bottom: 8px; }
.form-row label .req { color: var(--brand-red); font-size: 11px; margin-left: 6px; }
.form-row input, .form-row select, .form-row textarea {
  width: 100%; padding: 14px 16px; border: 1.5px solid var(--line); border-radius: 10px;
  font-family: var(--sans); font-size: 15px; background: var(--cream); transition: border-color .3s;
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus { outline: none; border-color: var(--brand-orange); background: #fff; }
.form-grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 900px) {
  .nav { position: fixed; inset: 0; flex-direction: column; justify-content: center; gap: 26px;
    background: var(--cream); transform: translateX(100%); transition: transform .5s var(--ease); }
  body.menu-open .nav { transform: none; }
  .nav a.navlink { color: var(--ink); font-size: 20px; text-align: center; }
  .nav a.navlink .en { font-size: 11px; }
  .burger { display: block; }
  .split, .store-desc, .foot-top { grid-template-columns: 1fr; }
  .split.rev { direction: ltr; }
  .brand-grid, .voice-grid, .form-grid2 { grid-template-columns: 1fr; }
  .stats, .values, .job-grid, .benefit-grid, .steps { grid-template-columns: repeat(2, 1fr); }
  .step:not(:last-child)::after { display: none; }
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 130px; }
  .foot-top { gap: 30px; }
  .hero-side { display: none; }
  .split-media .tag { right: 10px; }
}
@media (max-width: 560px) {
  .stats, .values, .job-grid, .benefit-grid, .steps { grid-template-columns: 1fr; }
  .info-table th { width: 120px; font-size: 13.5px; }
  .info-table th, .info-table td { padding: 16px 6px; font-size: 14px; }
  .nav-cta { display: none; }
  .lp-sticky-cta .txt small { display: none; }
  .brand img, .site-header.solid .brand img { height: 38px; }
}
