/* ==========================================================================
   M-Factory — Brand Experience Site / style.css
   ========================================================================== */

:root {
  /* --- color --- */
  --c-bg: #ffffff;
  --c-bg-soft: #f7f5f1;
  --c-bg-warm: #f2ede3;
  --c-ink: #1a1917;
  --c-ink-soft: #57544c;
  --c-ink-mute: #96927f;
  --c-line: #e9e5da;
  --c-line-strong: #d7d1c1;
  --c-accent: #9c7a4f;
  --c-accent-ink: #7c6039;
  --c-surface: #ffffff;
  --c-dark: #161511;
  --c-dark-soft: #24221c;
  --c-dark-ink: #f6f3ec;

  /* --- type --- */
  --f-serif: "Shippori Mincho", "Hiragino Mincho ProN", "Yu Mincho", serif;
  --f-display: "Cormorant Garamond", var(--f-serif);
  --f-sans: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Hiragino Kaku Gothic ProN",
            "Yu Gothic", "Noto Sans JP", Meiryo, sans-serif;

  /* --- layout --- */
  --container: 1320px;
  --container-narrow: 760px;
  --gutter: clamp(20px, 7vw, 96px);
  --section-y: clamp(112px, 16vw, 240px);

  /* --- motion --- */
  --ease: cubic-bezier(0.19, 1, 0.22, 1);
  --ease-soft: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------------------------------------------------------------------- */
/* Reset                                                                   */
/* ---------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; overflow-x: hidden; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}
body {
  font-family: var(--f-sans);
  color: var(--c-ink);
  background: var(--c-bg);
  line-height: 1.9;
  font-feature-settings: "palt" 1;
  letter-spacing: 0.03em;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
input, textarea { font: inherit; }
h1, h2, h3, h4 { font-weight: 400; line-height: 1.5; }
/* modern line-breaking: balance short headings, avoid orphan words on
   the last line of paragraphs. Both degrade harmlessly where unsupported. */
h1, h2.display-title, h3 { text-wrap: balance; }
.body-copy, .brand-card-desc, p { text-wrap: pretty; }

.skip-link {
  position: absolute; left: -999px; top: 0;
  background: var(--c-dark); color: var(--c-dark-ink);
  padding: 12px 20px; z-index: 999;
}
.skip-link:focus { left: 12px; top: 12px; }
:focus-visible { outline: 1px solid var(--c-accent); outline-offset: 4px; }

/* ---------------------------------------------------------------------- */
/* Utility                                                                 */
/* ---------------------------------------------------------------------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.container--narrow { max-width: var(--container-narrow); }
.section { padding-block: var(--section-y); }
.section--soft { background: var(--c-bg-soft); }
.section--dark { background: var(--c-dark); color: var(--c-dark-ink); }
.section--tight { padding-block: clamp(64px, 8vw, 120px); }

.section-head { max-width: 640px; margin-bottom: clamp(56px, 7vw, 110px); }
.section-head--center { margin-inline: auto; text-align: center; }

.kicker {
  display: block;
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(15px, 1.6vw, 19px);
  letter-spacing: 0.14em;
  color: var(--c-accent-ink);
  margin-bottom: 22px;
}
.section--dark .kicker { color: #cbb083; }

.display-title {
  font-family: var(--f-serif);
  font-weight: 400;
  font-size: clamp(30px, 4.6vw, 56px);
  line-height: 1.55;
  letter-spacing: 0.04em;
  max-width: 100%;
  word-break: normal;
  overflow-wrap: anywhere;
}

.body-copy {
  margin-top: 24px;
  color: var(--c-ink-soft);
  font-size: 15px;
  line-height: 2;
  letter-spacing: 0.015em;
  max-width: 34em;
  word-break: normal;
  overflow-wrap: anywhere;
}
.body-copy + .body-copy { margin-top: 16px; }
.section--dark .body-copy { color: #cdc9bc; }

/* links & buttons — quiet, editorial */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--c-line-strong);
  transition: border-color 0.5s var(--ease), gap 0.5s var(--ease), opacity .5s;
}
.link-arrow svg { width: 13px; height: 13px; transition: transform 0.5s var(--ease); }
.link-arrow:hover { border-color: currentColor; gap: 16px; }
.link-arrow:hover svg { transform: translateX(4px); }
.section--dark .link-arrow { border-color: rgba(246,243,236,0.35); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 17px 38px;
  font-size: 12.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid var(--c-ink);
  transition: background 0.5s var(--ease), color 0.5s var(--ease);
}
.btn-outline:hover { background: var(--c-ink); color: var(--c-bg); }
.btn-outline--light { border-color: rgba(246,243,236,0.55); color: var(--c-dark-ink); }
.btn-outline--light:hover { background: var(--c-dark-ink); color: var(--c-dark); }

/* ---------------------------------------------------------------------- */
/* Reveal                                                                   */
/* ---------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(56px);
  transition: opacity 1.4s var(--ease), transform 1.4s var(--ease);
  transition-delay: var(--reveal-delay, 0s);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

.reveal-scale { opacity: 0; transform: scale(1.08); transition: opacity 1.6s var(--ease), transform 1.6s var(--ease); }
.reveal-scale.is-visible { opacity: 1; transform: scale(1); }

/* image-zoom: photo starts slightly enlarged and settles as its card reveals,
   then continues to breathe gently on hover */
.media-zoom { overflow: hidden; }
.media-zoom img { transform: scale(1.16); transition: transform 1.6s var(--ease); }
.reveal.is-visible .media-zoom img,
.reveal-scale.is-visible .media-zoom img,
.media-zoom.is-visible img { transform: scale(1); }
.media-zoom:hover img { transform: scale(1.06); }

/* ---------------------------------------------------------------------- */
/* Header                                                                   */
/* ---------------------------------------------------------------------- */
.site-header {
  position: fixed; inset-inline: 0; top: 0; z-index: 100;
  padding-block: 30px;
  transition: padding 0.6s var(--ease), background 0.6s var(--ease), border-color 0.6s var(--ease), color .6s var(--ease);
  color: var(--c-dark-ink);
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  padding-block: 18px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-color: var(--c-line);
  color: var(--c-ink);
}
/* Subpages (Brand detail pages, etc.) don't open on a dark hero image, so
   the header needs the solid/dark-text styling from the very top of the page. */
body.subpage .site-header {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-color: var(--c-line);
  color: var(--c-ink);
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; }

.logo {
  font-family: var(--f-serif);
  font-size: 20px;
  letter-spacing: 0.22em;
}

.nav-desktop { display: none; }
.nav-desktop ul { display: flex; gap: clamp(16px, 2vw, 32px); font-size: 11.5px; letter-spacing: 0.1em; text-transform: uppercase; }
.nav-desktop a { position: relative; padding-bottom: 4px; }
.nav-desktop a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px;
  background: currentColor; transform: scaleX(0); transform-origin: right;
  transition: transform 0.5s var(--ease);
}
.nav-desktop a:hover::after { transform: scaleX(1); transform-origin: left; }

.header-cta { display: none; font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; }

.nav-toggle {
  display: flex; flex-direction: column; justify-content: center; gap: 6px;
  width: 40px; height: 40px; z-index: 110;
}
.nav-toggle span { display: block; width: 100%; height: 1px; background: currentColor; transition: transform 0.5s var(--ease), opacity 0.3s var(--ease); }
.nav-toggle[aria-expanded="true"] { color: var(--c-ink); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  position: fixed; inset: 0; z-index: 105;
  background: var(--c-bg); color: var(--c-ink);
  display: flex; flex-direction: column; justify-content: center;
  padding: 100px var(--gutter) 40px;
  overflow-y: auto;
  transform: translateY(-100%);
  transition: transform 0.7s var(--ease);
}
.nav-mobile.is-open { transform: translateY(0); }
.nav-mobile ul { display: flex; flex-direction: column; gap: 2px; }
.nav-mobile a { display: block; font-family: var(--f-serif); font-size: clamp(24px, 7vw, 36px); padding: 12px 0; border-bottom: 1px solid var(--c-line); }
.nav-mobile-foot { margin-top: 40px; color: var(--c-ink-mute); font-size: 12.5px; line-height: 2; letter-spacing: 0.06em; }

@media (min-width: 960px) {
  .nav-desktop { display: block; }
  .nav-toggle { display: none; }
  .header-cta { display: inline-block; }
}

/* ---------------------------------------------------------------------- */
/* Hero                                                                     */
/* ---------------------------------------------------------------------- */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: flex-end;
  overflow: hidden; color: var(--c-dark-ink); background: var(--c-dark);
}
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: center;
  transform: scale(1.12);
  animation: hero-zoom 18s var(--ease-soft) forwards;
}
@keyframes hero-zoom { from { transform: scale(1.12); } to { transform: scale(1); } }
.hero-media::after {
  content: ""; position: absolute; inset: 0;
  background: rgba(10, 9, 7, 0.42);
}

@media (max-width: 699px) {
  .hero-media img { object-position: center; }
}
.hero-inner { position: relative; z-index: 1; width: 100%; padding-block: clamp(140px, 22vw, 220px) clamp(56px, 7vw, 88px); }
.hero-kicker {
  font-family: var(--f-display); font-style: italic;
  font-size: clamp(14px, 1.4vw, 17px);
  letter-spacing: 0.12em; color: #e3d3ae;
  margin-bottom: 18px;
  opacity: 0; animation: hero-in 1.1s var(--ease-soft) 0.35s forwards;
}
.hero-title {
  font-family: var(--f-serif); font-weight: 400;
  font-size: clamp(26px, 3.6vw, 44px);
  line-height: 1.55; letter-spacing: 0.03em; max-width: 14em;
  opacity: 0; animation: hero-in 1.2s var(--ease-soft) 0.55s forwards;
}
/* hero-sub: line-break, line-height, font-size, and the margins to
   .hero-title above / .hero-actions below are a fixed baseline (user
   instruction). Do not let unrelated CSS changes shift this block —
   PC always breaks after "通じて、" via .hero-sub-break; mobile wraps
   naturally. */
.hero-sub {
  margin-top: 20px; max-width: 26em; color: #e4e0d3;
  font-size: clamp(13px, 1.2vw, 14.5px); line-height: 1.9;
  opacity: 0; animation: hero-in 1.2s var(--ease-soft) 0.8s forwards;
}
.hero-sub-break { display: none; }
@media (min-width: 700px) {
  .hero-sub-break { display: inline; }
}
.hero-actions {
  display: flex; flex-wrap: wrap; gap: 16px; margin-top: 36px;
  opacity: 0; animation: hero-in 1.2s var(--ease-soft) 1.05s forwards;
}
.hero-actions .btn-outline { padding: 15px 32px; }
@keyframes hero-in { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: translateY(0); } }

.scroll-cue {
  position: absolute; right: var(--gutter); bottom: 40px; z-index: 1;
  display: none; align-items: center; gap: 16px;
  color: #e3d3ae; font-size: 10.5px; letter-spacing: 0.24em;
}
.scroll-cue .line { width: 1px; height: 50px; background: linear-gradient(180deg, currentColor, transparent); overflow: hidden; position: relative; }
.scroll-cue .line::after {
  content: ""; position: absolute; top: -50px; left: 0; width: 100%; height: 100%;
  background: #f6f3ec; animation: cue-drop 2.4s ease-in-out infinite;
}
@keyframes cue-drop { 0% { transform: translateY(0); } 100% { transform: translateY(100px); } }
@media (min-width: 700px) { .scroll-cue { display: flex; } }

/* ---------------------------------------------------------------------- */
/* Marquee                                                                   */
/* ---------------------------------------------------------------------- */
.marquee { border-block: 1px solid var(--c-line); overflow: hidden; background: var(--c-bg); }
.marquee-track { display: flex; width: max-content; animation: marquee 42s linear infinite; }
.marquee-track span {
  display: inline-flex; align-items: center; gap: 22px;
  padding: 24px 44px; font-family: var(--f-display); font-style: italic;
  font-size: 16px; letter-spacing: 0.04em; color: var(--c-ink-mute); white-space: nowrap;
}
.marquee-track span::after { content: "·"; opacity: 0.6; font-style: normal; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------------------------------------------------------------------- */
/* Split row (About) — image + text                                        */
/* ---------------------------------------------------------------------- */
#about .container { max-width: 1300px; }
.about-break { display: none; }
@media (min-width: 700px) {
  .about-break { display: inline; }
}
@media (min-width: 1024px) {
  #about .split-media { width: 45%; }
  #about .split-content { width: 53%; }
}

/* PC-only forced line breaks for Business/Brand section copy — hidden below
   700px so mobile wraps naturally instead of inheriting the PC break points. */
.section-break, .card-break { display: none; }
@media (min-width: 700px) {
  .section-break, .card-break { display: inline; }
}

/* Ampersand override for "Lino & Jour": the site's serif stacks (Shippori
   Mincho / Cormorant Garamond) render "&" in a way that's hard to read at
   a glance. A plain, high-legibility Western serif fixes just that glyph
   without changing the Lino / Jour lettering. Keep in sync between the
   Business card h3 and the Brand card name — both use this class. */
.amp {
  font-family: Georgia, "Times New Roman", serif;
  font-style: normal;
  font-weight: 400;
}

.split-row {
  display: flex;
  flex-direction: column;
  gap: clamp(32px, 6vw, 56px);
  align-items: center;
  min-width: 0;
}
.split-media {
  width: 100%;
  min-width: 0;
}
.split-media img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
}
.split-content {
  width: 100%;
  min-width: 0;
  max-width: 100%;
}
.split-content .display-title,
.split-content .body-copy {
  max-width: 100%;
  word-break: normal;
  overflow-wrap: anywhere;
}
.split-content .display-title {
  font-size: clamp(24px, 6vw, 40px);
  line-height: 1.65;
}
.split-content .body-copy { line-height: 2.05; }

/* keeps a phrase intact as one unbreakable unit (e.g. a brand name) so it
   never splits mid-word; the phrase can still wrap onto its own line */
.nowrap-unit { white-space: nowrap; }

@media (min-width: 1024px) {
  .split-row {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 0;
  }
  .split-media { width: 48%; }
  .split-content { width: 44%; }
  .split-content .display-title { font-size: clamp(28px, 3.6vw, 42px); }
}

/* ---------------------------------------------------------------------- */
/* Philosophy — centered quote headline                                     */
/* ---------------------------------------------------------------------- */
#philosophy .display-title {
  font-size: clamp(19px, 5.5vw, 40px);
  line-height: 1.7;
  max-width: 100%;
  word-break: normal;
  overflow-wrap: anywhere;
}
#philosophy .body-copy {
  font-size: clamp(14px, 1.6vw, 15px);
  line-height: 2.1;
  max-width: 42em;
  word-break: normal;
  overflow-wrap: anywhere;
}
#philosophy .container.container--narrow { max-width: 850px; }

/* ---------------------------------------------------------------------- */
/* Corporate Philosophy (企業理念) — quiet, editorial mission statement      */
/* ---------------------------------------------------------------------- */
.container--corporate-philosophy { max-width: 1200px; }
.section-head--corporate-philosophy.section-head--center { max-width: none; }
.philosophy-statement {
  font-size: clamp(20px, 3.4vw, 40px);
  line-height: 1.8;
  letter-spacing: 0.04em;
  max-width: 100%;
  word-break: normal;
  overflow-wrap: anywhere;
}
.stmt-break { display: none; }
@media (min-width: 700px) {
  .stmt-break { display: inline; }
}
.philosophy-body-break { display: none; }
@media (min-width: 700px) {
  .philosophy-body-break { display: inline; }
}
.philosophy-mobile-break { display: inline; }
@media (min-width: 700px) {
  .philosophy-mobile-break { display: none; }
}
.philosophy-narrow-break { display: none; }
@media (max-width: 409px) {
  .philosophy-narrow-break { display: inline; }
}
.philosophy-lead {
  margin-top: 28px;
  font-size: clamp(15px, 1.7vw, 17px);
  color: var(--c-ink);
}
#corporate-philosophy .body-copy {
  max-width: 38em;
  word-break: normal;
  overflow-wrap: anywhere;
}

.philosophy-block { margin-top: clamp(64px, 8vw, 100px); text-align: center; }
.philosophy-block-label {
  font-family: var(--f-serif); font-weight: 600;
  font-size: clamp(13px, 1.3vw, 15px);
  letter-spacing: 0.18em;
  color: var(--c-accent-ink);
  margin-bottom: 18px;
}
.philosophy-block-text {
  font-family: var(--f-serif); font-weight: 400;
  font-size: clamp(19px, 2.3vw, 25px);
  line-height: 1.95;
  letter-spacing: 0.03em;
  color: var(--c-ink);
  max-width: 30em;
  margin-inline: auto;
  word-break: normal; overflow-wrap: anywhere;
}

.philosophy-guides {
  margin-top: clamp(8px, 1vw, 12px);
  display: flex; flex-wrap: wrap;
  justify-content: center;
  gap: clamp(36px, 5vw, 56px) clamp(20px, 3vw, 40px);
}
.philosophy-guide { flex: 0 1 45%; max-width: 220px; }
.philosophy-guide-title {
  font-family: var(--f-serif); font-weight: 600;
  font-size: clamp(15px, 1.6vw, 17px);
  color: var(--c-ink); letter-spacing: 0.04em;
}
.philosophy-guide-desc {
  margin-top: 10px;
  font-size: 13px; line-height: 1.85;
  color: var(--c-ink-soft);
  letter-spacing: 0.01em;
}
@media (min-width: 900px) {
  .philosophy-guides { flex-wrap: nowrap; gap: clamp(20px, 2.4vw, 32px); }
  .philosophy-guide { flex: 1 1 0; min-width: 0; max-width: 190px; }
}

.section-head--store-intro { max-width: 900px; }
.store-head-break, .recruit-head-break { display: none; }
@media (min-width: 700px) {
  .store-head-break { display: inline; }
}
@media (min-width: 901px) {
  .recruit-head-break { display: inline; }
}
.philosophy-closing {
  margin-top: clamp(56px, 7vw, 96px);
  font-family: var(--f-serif);
  font-weight: 600;
  font-size: clamp(19px, 2.4vw, 26px);
  letter-spacing: 0.08em;
  color: var(--c-accent-ink);
  max-width: 100%;
  word-break: normal;
  overflow-wrap: anywhere;
}

/* ---------------------------------------------------------------------- */
/* Business — 5 photo-dominant cards (3 top + 2 centered bottom on PC)      */
/* ---------------------------------------------------------------------- */
#business .container { max-width: 1200px; }

.business-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(20px, 3vw, 24px);
}
.business-card {
  position: relative; display: block; overflow: hidden;
  height: clamp(360px, 90vw, 420px);
  min-width: 0;
}
.business-card img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: center;
  transform: scale(1.14);
  transition: transform 1.6s var(--ease);
}
#business .business-card:nth-child(4) img { object-position: 55% center; }
#business .business-card:nth-child(5) img { object-position: 72% center; }
.business-card.is-visible img { transform: scale(1); }
@media (hover: hover) and (pointer: fine) {
  .business-card:hover img { transform: scale(1.03); }
}
.business-card-placeholder {
  width: 100%; height: 100%; position: relative;
  background: linear-gradient(155deg, var(--c-bg-warm) 0%, #ece4d3 48%, var(--c-line-strong) 100%);
}
.business-card-placeholder-inner {
  position: absolute; left: 50%; top: 26%; transform: translate(-50%, -50%);
  width: 100%; padding-inline: 20px;
  display: flex; flex-direction: column; align-items: center; gap: 13px;
  text-align: center;
}
.business-card-placeholder-eyebrow {
  font-family: var(--f-display); font-style: italic;
  font-size: clamp(11px, 1.1vw, 13px); letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--c-ink-soft);
}
.business-card-placeholder-divider { width: 32px; height: 1px; background: var(--c-ink-mute); }
.business-card-placeholder-main {
  font-family: var(--f-serif); font-size: clamp(23px, 2.8vw, 30px);
  letter-spacing: 0.13em; text-transform: uppercase; color: var(--c-ink);
}
.business-card-content {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 1;
  padding-block: clamp(18px, 2.6vw, 28px);
  padding-inline: clamp(14px, 2.2vw, 24px);
  color: #f6f3ec;
  background: linear-gradient(180deg, transparent 0%, rgba(8,7,5,0.5) 30%, rgba(8,7,5,0.88) 100%);
}
.business-card-tag {
  display: block;
  font-family: var(--f-display); font-style: italic;
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: #d9cba9; opacity: 0.9;
}
.business-card h3 {
  margin-top: 6px;
  font-family: var(--f-serif); font-size: clamp(19px, 2.4vw, 23px);
  letter-spacing: 0.03em; line-height: 1.4;
  word-break: normal; overflow-wrap: anywhere; max-width: 100%;
}
.business-card p {
  margin-top: 10px; color: #e3ded0; font-size: 12.5px; line-height: 1.85;
  letter-spacing: 0.01em;
  word-break: normal; overflow-wrap: anywhere; max-width: 100%;
}
.business-card-content p + p { margin-top: 21px; }

@media (min-width: 640px) {
  .business-grid { grid-template-columns: repeat(4, 1fr); gap: 20px; }
  .business-card { grid-column: span 2; height: auto; aspect-ratio: 4/5; }
  .business-card:nth-child(5) { grid-column: 2 / 4; }
}

@media (min-width: 1024px) {
  .business-grid { grid-template-columns: repeat(6, 1fr); gap: 24px; }
  .business-card { grid-column: span 2; }
  .business-card:nth-child(4) { grid-column: 2 / 4; }
  .business-card:nth-child(5) { grid-column: 4 / 6; }
}

/* ---------------------------------------------------------------------- */
/* Brand — 2-column grid of wide (landscape) photo cards                    */
/* ---------------------------------------------------------------------- */
.brand-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(18px, 3vw, 28px);
}
.brand-card {
  position: relative; overflow: hidden; display: block;
  aspect-ratio: 4/3.35;
}
.brand-card img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.14);
  transition: transform 1.6s var(--ease);
}
.brand-card.is-visible img { transform: scale(1); }
@media (hover: hover) and (pointer: fine) {
  .brand-card:hover img { transform: scale(1.05); }
}
.brand-card-content {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 1;
  padding-block: clamp(14px, 2.2vw, 28px);
  padding-inline: clamp(18px, 3vw, 32px);
  color: #f6f3ec;
  background: linear-gradient(180deg, transparent 0%, rgba(8,7,5,0.48) 32%, rgba(8,7,5,0.88) 100%);
}
.brand-card-name {
  font-family: var(--f-display); font-style: italic;
  font-size: clamp(24px, 3.2vw, 36px); line-height: 1.15; letter-spacing: 0.02em;
  word-break: normal; overflow-wrap: anywhere; max-width: 100%;
}
.brand-card-desc {
  margin-top: 8px; font-size: 13px; line-height: 1.75; letter-spacing: 0.01em;
  color: #e3ded0; max-width: 100%;
  word-break: normal; overflow-wrap: anywhere;
}
.brand-card .link-arrow { margin-top: 12px; border-color: rgba(246,243,236,0.4); color: #f6f3ec; }

@media (min-width: 700px) {
  .brand-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}
@media (min-width: 1024px) {
  .brand-grid { gap: 28px; }
}

/* ---------------------------------------------------------------------- */
/* Store — nationwide network: header + card grid                           */
/* ---------------------------------------------------------------------- */
.store-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(22px, 3vw, 32px);
}

.store-card {
  display: block;
  background: var(--c-surface);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(20,18,14,0.04), 0 10px 28px rgba(20,18,14,0.07);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
@media (hover: hover) and (pointer: fine) {
  .store-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 2px 6px rgba(20,18,14,0.06), 0 20px 40px rgba(20,18,14,0.1);
  }
}
.store-card-media { aspect-ratio: 4/3.3; overflow: hidden; }
.store-card-media img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.12);
  transition: transform 1.6s var(--ease);
}
.store-card.is-visible .store-card-media img { transform: scale(1); }
@media (hover: hover) and (pointer: fine) {
  .store-card:hover .store-card-media img { transform: scale(1.03); }
}
.store-card-body { padding: clamp(20px, 2.6vw, 28px); }
.store-card-body h3 {
  font-family: var(--f-serif); font-size: clamp(19px, 2vw, 21px); font-weight: 600; letter-spacing: 0.02em; line-height: 1.45;
  color: var(--c-ink); max-width: 100%; word-break: normal; overflow-wrap: anywhere;
}
.store-card-brand {
  margin-top: 12px; display: inline-block;
  font-size: 10.5px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--c-dark-ink); background: var(--c-accent); border-radius: 999px;
  padding: 5px 13px;
  max-width: 100%; overflow-wrap: anywhere;
}
.store-card-address {
  margin-top: 10px; font-size: 11.5px; line-height: 1.6; color: var(--c-ink-mute);
  letter-spacing: 0.04em;
}
@media (min-width: 560px) and (max-width: 1023px) {
  .store-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .store-grid { grid-template-columns: repeat(3, 1fr); }
}

/* Store — nationwide scale statement, sits between the intro copy and the grid */
.store-stats { margin-bottom: clamp(48px, 6vw, 84px); }
.store-stats-lead {
  margin-top: 4px;
  font-family: var(--f-serif);
  font-weight: 400;
  font-size: clamp(20px, 2.6vw, 26px);
  letter-spacing: 0.04em;
  color: var(--c-ink);
}
.store-stats-num {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(40px, 6vw, 64px);
  line-height: 1;
  color: var(--c-accent-ink);
  margin-inline: 4px;
  vertical-align: -0.05em;
}

/* ---------------------------------------------------------------------- */
/* POP-UP — 催事・期間限定出店 (new, classes scoped to this section only)   */
/* ---------------------------------------------------------------------- */
.container--popup { max-width: 950px; }
.popup-results { margin-top: clamp(48px, 6vw, 72px); text-align: center; }
.popup-results-label {
  font-family: var(--f-serif);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.16em;
  color: var(--c-ink-soft);
  margin-bottom: 28px;
  max-width: 100%;
  word-break: normal;
  overflow-wrap: anywhere;
}
.popup-list {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 440px;
  margin-inline: auto;
}
.popup-list li {
  padding: 16px 8px;
  border-bottom: 1px solid var(--c-line);
  font-family: var(--f-serif);
  font-size: 15px;
  letter-spacing: 0.02em;
  color: var(--c-ink);
  max-width: 100%;
  word-break: normal;
  overflow-wrap: anywhere;
}
@media (min-width: 640px) {
  .popup-list { grid-template-columns: repeat(2, 1fr); max-width: 640px; column-gap: 32px; }
}
@media (min-width: 900px) {
  .popup-list { grid-template-columns: repeat(3, 1fr); max-width: 780px; column-gap: 32px; }
}
.popup-cta { text-align: center; margin-top: clamp(40px, 5vw, 56px); }

/* ---------------------------------------------------------------------- */
/* Recruit — rebuilt from scratch: content-driven height, no vh/absolute    */
/* ---------------------------------------------------------------------- */
#recruit .container { max-width: 1280px; }

.recruit-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  height: auto;
  overflow: visible;
}
.recruit-heading-block,
.recruit-body-block {
  height: auto;
  overflow: visible;
}
.recruit-body-block .body-copy:first-child { margin-top: 0; }

.recruit-media {
  height: auto;
  overflow: hidden;
  background: var(--c-bg-warm);
}
.recruit-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.recruit-actions {
  display: flex; align-items: center; flex-wrap: wrap;
  gap: 20px 32px;
  margin-top: 32px;
}

/* ------------------------------------------------------------------------
   Mobile-only layout — built independently of the PC grid, plain document
   flow, no grid/flex row placement, no fixed/vh heights, no absolute
   positioning. Extended to 900px (not just 767px) so there is no unstyled
   gap between this block and the PC breakpoint at 901px.
   ------------------------------------------------------------------------ */
@media (max-width: 900px) {
  #recruit .container { padding-inline: 24px; }

  .recruit-grid {
    display: block;
  }

  .recruit-heading-block { margin-bottom: 24px; }
  .recruit-heading-block .kicker { margin-bottom: 16px; }
  .recruit-heading-block .display-title {
    margin-top: 0;
    max-width: 100%;
    font-size: clamp(28px, 8vw, 36px);
    line-height: 1.5;
    word-break: normal;
    overflow-wrap: normal;
  }

  .recruit-media {
    width: 100%;
    aspect-ratio: 3 / 2;
    margin-bottom: 24px;
  }
  .recruit-media img {
    object-position: center top;
  }

  .recruit-body-block { margin-bottom: 24px; }

  .recruit-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    margin-top: 24px;
  }
}

@media (min-width: 901px) {
  .recruit-grid {
    grid-template-columns: 44% 56%;
    column-gap: 4%;
    row-gap: 28px;
    align-items: start;
  }
  .recruit-media {
    grid-column: 1;
    grid-row: 1 / 3;
    aspect-ratio: 3 / 2;
    max-height: 640px;
  }
  .recruit-media img { object-position: center; }
  .recruit-heading-block { grid-column: 2; grid-row: 1; }
  .recruit-body-block { grid-column: 2; grid-row: 2; }
  .recruit-heading-block .display-title { font-size: clamp(30px, 3vw, 40px); }
}

/* ---------------------------------------------------------------------- */
/* Contact — intro + form                                                   */
/* ---------------------------------------------------------------------- */
#contact .container { max-width: 1200px; }

.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(40px, 6vw, 64px);
  text-align: left;
}
.contact-intro { max-width: 460px; }
.contact-intro .body-copy { max-width: 100%; }

/* ---------------------------------------------------------------------- */
/* Company info — shared between Contact and Footer                         */
/* ---------------------------------------------------------------------- */
.company-info {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--c-line);
  max-width: 100%;
}
.company-info-name {
  font-family: var(--f-serif);
  font-size: 15px;
  color: var(--c-ink);
  margin-bottom: 10px;
}
.company-info-address {
  font-size: 13.5px;
  line-height: 1.9;
  color: var(--c-ink-soft);
  max-width: 100%;
  overflow-wrap: break-word;
}
.company-info-tel {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.company-info-tel-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  font-size: 13.5px;
}
.company-info-tel-row dt {
  min-width: 3.2em;
  color: var(--c-ink-mute);
  letter-spacing: 0.06em;
  font-size: 11.5px;
  text-transform: uppercase;
}
.company-info-tel-row dd { color: var(--c-ink); }

.company-info--dark { border-top-color: rgba(246,243,236,0.14); }
.company-info--dark .company-info-address { color: #b8b4a5; }
.company-info--dark .company-info-tel-row dd { color: #ddd8c9; }
.company-info--dark .company-info-tel-row dt { color: #8b8676; }

.contact-form { max-width: 640px; }
.form-row { display: grid; gap: 22px; margin-bottom: 22px; }
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field label {
  display: flex; align-items: center; flex-wrap: wrap; gap: 8px;
  font-size: 12.5px; letter-spacing: 0.04em; color: var(--c-ink);
}
.required-badge, .optional-badge {
  font-size: 10px; letter-spacing: 0.04em; line-height: 1;
  padding: 4px 9px; border-radius: 999px; white-space: nowrap;
}
.required-badge { background: var(--c-accent-ink); color: var(--c-dark-ink); }
.optional-badge { background: var(--c-line); color: var(--c-ink-mute); }

.form-field input:not([type="checkbox"]),
.form-field textarea,
.form-field select {
  border: 1px solid var(--c-line-strong);
  border-radius: 6px;
  background: var(--c-surface);
  font-size: 14.5px; color: var(--c-ink);
  padding: 13px 14px; resize: vertical;
  -webkit-appearance: none; appearance: none;
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.form-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2357544c' stroke-width='1.5'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; background-size: 16px;
  padding-right: 40px;
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus {
  border-color: var(--c-ink); outline: none;
  box-shadow: 0 0 0 3px rgba(28,25,23,0.06);
}
.form-field input::placeholder, .form-field textarea::placeholder { color: var(--c-ink-mute); }

.form-field.has-error input,
.form-field.has-error textarea,
.form-field.has-error select { border-color: #b5473f; }
.field-error { display: none; font-size: 12px; color: #b5473f; letter-spacing: 0.02em; }
.form-field.has-error .field-error { display: block; }

.checkbox-field { flex-direction: row; flex-wrap: wrap; }
.checkbox-label {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13px; color: var(--c-ink-soft); line-height: 1.7; cursor: pointer;
}
.checkbox-label input[type="checkbox"] {
  width: 18px; height: 18px; flex-shrink: 0; margin-top: 3px;
  accent-color: var(--c-ink);
  border: 1px solid var(--c-line-strong); border-radius: 4px;
}
.checkbox-label a { color: var(--c-accent-ink); border-bottom: 1px solid currentColor; }

.form-note { margin-top: 18px; font-size: 12.5px; color: var(--c-ink-mute); }
.form-note.is-success { color: var(--c-accent-ink); }
.form-note.is-error { color: #b5473f; }

.btn-submit {
  background: var(--c-ink); color: var(--c-bg); border-color: var(--c-ink);
  min-width: 220px; justify-content: center; margin-top: 6px;
}
.btn-submit:hover { background: var(--c-accent-ink); border-color: var(--c-accent-ink); }

@media (min-width: 640px) {
  .form-row--split { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 900px) {
  .contact-layout { grid-template-columns: 0.8fr 1.2fr; align-items: start; }
  .contact-intro { position: sticky; top: 140px; }
}

/* ---------------------------------------------------------------------- */
/* Footer                                                                    */
/* ---------------------------------------------------------------------- */
.site-footer .container { max-width: 1200px; }
.site-footer { background: var(--c-dark); color: var(--c-dark-ink); padding-top: clamp(64px, 8vw, 110px); }

.footer-top {
  display: grid;
  gap: 44px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(246,243,236,0.14);
}
.footer-col-brand .logo { color: var(--c-dark-ink); }
.footer-brand-desc { margin-top: 20px; color: #b8b4a5; font-size: 13px; line-height: 1.9; max-width: 26em; }

.footer-col h4 { font-size: 11px; letter-spacing: 0.16em; color: #a8a392; margin-bottom: 20px; text-transform: uppercase; }
.footer-col ul { display: flex; flex-direction: column; gap: 13px; }
.footer-col a { font-size: 13px; color: #ddd8c9; transition: color .3s var(--ease), padding-left .3s var(--ease); }
.footer-col a:hover { color: var(--c-dark-ink); padding-left: 4px; }

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding-block: 28px;
  font-size: 11.5px;
  color: #8b8676;
  letter-spacing: 0.03em;
}
.footer-copy { line-height: 1.8; }
.footer-copy + .footer-copy { margin-top: 2px; }
.footer-bottom-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-bottom-links a:hover { color: var(--c-dark-ink); }

@media (min-width: 640px) {
  .footer-top { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 900px) {
  .footer-top { grid-template-columns: 1.2fr 1fr 1fr 1fr; }
  .footer-bottom { flex-direction: row; justify-content: space-between; align-items: center; }
  .footer-bottom-text { display: flex; gap: 18px; }
  .footer-copy + .footer-copy { margin-top: 0; }
}

/* ---------------------------------------------------------------------- */
/* Back to top                                                              */
/* ---------------------------------------------------------------------- */
.to-top {
  position: fixed; right: 24px; bottom: 24px; z-index: 90;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--c-ink); color: var(--c-bg);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: opacity .5s var(--ease), transform .5s var(--ease), visibility .5s;
}
.to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top svg { width: 16px; height: 16px; }

/* ---------------------------------------------------------------------- */
/* Legal content — privacy policy page                                      */
/* ---------------------------------------------------------------------- */
.legal-content { max-width: var(--container-narrow); margin-inline: auto; }
#top .container--narrow { max-width: 800px; }
.legal-lead {
  margin-top: 24px;
  color: var(--c-ink-soft);
  font-size: 15px;
  line-height: 2;
  letter-spacing: 0.015em;
}
.legal-section { margin-top: clamp(48px, 6vw, 76px); }
.legal-section h2 {
  font-family: var(--f-serif);
  font-weight: 600;
  font-size: clamp(18px, 2vw, 21px);
  color: var(--c-ink);
  letter-spacing: 0.03em;
  line-height: 1.6;
  max-width: 100%;
  word-break: normal;
  overflow-wrap: anywhere;
}
.legal-section p {
  margin-top: 14px;
  color: var(--c-ink-soft);
  font-size: 14.5px;
  line-height: 1.95;
  letter-spacing: 0.01em;
  max-width: 100%;
  word-break: normal;
  overflow-wrap: anywhere;
}
.legal-section ul {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.legal-section li {
  position: relative;
  padding-left: 1.4em;
  color: var(--c-ink-soft);
  font-size: 14.5px;
  line-height: 1.9;
  max-width: 100%;
  word-break: normal;
  overflow-wrap: anywhere;
}
.legal-section li::before {
  content: "";
  position: absolute;
  left: 0.15em;
  top: 0.78em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--c-accent);
}
.legal-section .company-info { max-width: 100%; }

/* ---------------------------------------------------------------------- */
/* Recruit page — work style grid & job listing                            */
/* ---------------------------------------------------------------------- */
.work-style-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(18px, 2.4vw, 24px);
  margin-top: clamp(40px, 5vw, 60px);
}
@media (min-width: 700px) {
  .work-style-grid { grid-template-columns: repeat(2, 1fr); }
}
.work-style-card {
  padding: clamp(26px, 3vw, 34px);
  border: 1px solid var(--c-line);
  border-radius: 10px;
  background: var(--c-surface);
}
.work-style-num {
  display: block;
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(26px, 3vw, 32px);
  line-height: 1;
  color: var(--c-accent-ink);
  margin-bottom: 16px;
}
.work-style-card h3 {
  font-family: var(--f-serif);
  font-size: clamp(16.5px, 1.8vw, 18px);
  font-weight: 600;
  color: var(--c-ink);
  letter-spacing: 0.02em;
  line-height: 1.55;
  max-width: 100%;
  word-break: normal;
  overflow-wrap: anywhere;
}
.work-style-card p {
  margin-top: 10px;
  color: var(--c-ink-soft);
  font-size: 13.5px;
  line-height: 1.85;
  letter-spacing: 0.01em;
  max-width: 100%;
  word-break: normal;
  overflow-wrap: anywhere;
}

.jobs-panel {
  margin-top: clamp(40px, 5vw, 60px);
  padding: clamp(36px, 4.5vw, 56px) clamp(24px, 3vw, 40px);
  border: 1px solid var(--c-line);
  border-radius: 10px;
  background: var(--c-bg-soft);
  text-align: center;
}
.jobs-panel p {
  color: var(--c-ink-soft);
  font-size: 14.5px;
  line-height: 1.95;
  letter-spacing: 0.01em;
  max-width: 34em;
  margin-inline: auto;
  word-break: normal;
  overflow-wrap: anywhere;
}
.jobs-panel .btn-outline { margin-top: 28px; }

/* Recruit page — Message heading: wider box so "一緒に、お店とブランドを / 育てていく。"
   can sit on its own two lines at desktop widths instead of the default narrow
   container forcing an uneven 3-line wrap. */
.container--message { max-width: 1100px; }
.section-head--message.section-head--center { max-width: none; }
.msg-title-break { display: none; }
@media (min-width: 700px) {
  .msg-title-break { display: inline; }
}

/* ---------------------------------------------------------------------- */
/* Recruit page — job spec sheet, bullet list, career steps                 */
/* ---------------------------------------------------------------------- */
.job-spec {
  margin-top: clamp(40px, 5vw, 60px);
  border-top: 1px solid var(--c-line);
}
.job-spec-row {
  display: grid;
  grid-template-columns: 168px 1fr;
  gap: clamp(16px, 2.4vw, 32px);
  padding-block: clamp(22px, 2.8vw, 30px);
  border-bottom: 1px solid var(--c-line);
}
.job-spec-row dt {
  font-family: var(--f-serif);
  font-weight: 600;
  font-size: 14px;
  color: var(--c-ink);
  letter-spacing: 0.03em;
  line-height: 1.7;
  max-width: 100%;
  word-break: normal;
  overflow-wrap: anywhere;
}
.job-spec-row dd {
  color: var(--c-ink-soft);
  font-size: 14px;
  line-height: 1.95;
  letter-spacing: 0.01em;
  max-width: 100%;
  word-break: normal;
  overflow-wrap: anywhere;
}
.job-spec-row dd p + p { margin-top: 10px; }
@media (max-width: 639px) {
  .job-spec-row { grid-template-columns: 1fr; gap: 8px; }
}

.spec-num {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(26px, 3vw, 32px);
  color: var(--c-accent-ink);
  line-height: 1;
  margin-inline: 2px;
  vertical-align: -0.05em;
}

.recruit-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.recruit-list li {
  position: relative;
  padding-left: 1.4em;
  color: var(--c-ink-soft);
  font-size: 14px;
  line-height: 1.9;
  max-width: 100%;
  word-break: normal;
  overflow-wrap: anywhere;
}
.recruit-list li::before {
  content: "";
  position: absolute;
  left: 0.15em;
  top: 0.78em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--c-accent);
}
.recruit-list--cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
@media (min-width: 560px) {
  .recruit-list--cols { grid-template-columns: repeat(2, 1fr); }
}

.career-steps {
  margin-top: clamp(40px, 5vw, 64px);
  display: flex;
  flex-direction: column;
}
.career-step {
  display: flex;
  gap: 20px;
  padding-block: 24px;
  border-bottom: 1px dashed var(--c-line-strong);
}
.career-step:last-child { border-bottom: none; }
.career-step-num {
  flex-shrink: 0;
  min-width: 64px;
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(28px, 3.2vw, 36px);
  color: var(--c-accent-ink);
  line-height: 1;
}
.career-step-body h3 {
  font-family: var(--f-serif);
  font-weight: 600;
  font-size: 15.5px;
  color: var(--c-ink);
  letter-spacing: 0.02em;
  max-width: 100%;
  word-break: normal;
  overflow-wrap: anywhere;
}
.career-step-body p {
  margin-top: 8px;
  color: var(--c-ink-soft);
  font-size: 13.5px;
  line-height: 1.85;
  max-width: 100%;
  word-break: normal;
  overflow-wrap: anywhere;
}
@media (min-width: 900px) {
  .career-steps { flex-direction: row; align-items: stretch; }
  .career-step {
    flex: 1;
    flex-direction: column;
    gap: 14px;
    padding-inline: clamp(14px, 1.6vw, 22px);
    padding-block: 0;
    border-bottom: none;
    border-right: 1px dashed var(--c-line-strong);
  }
  .career-step:first-child { padding-left: 0; }
  .career-step:last-child { border-right: none; padding-right: 0; }
}
