/* =========================================================
   SATORI - 就労継続支援B型事業所
   "縁側の光のようなホームページ"
   ========================================================= */

/* ---------- Tokens ---------- */
:root {
  /* Colors */
  --bg: #FAFAF7;
  --bg-alt: #F4F1EB;
  --ink: #2D3A33;
  --ink-soft: #5A6660;
  --ink-mute: #8A938E;
  --brand: #7A9E7E;
  --brand-deep: #3E5742;
  --brand-soft: #C9D7CC;
  --brand-pale: #E8EFE9;
  --accent: #D97540;
  --accent-hover: #B85C2E;
  --accent-pale: #FBEBDC;
  --line: #E5E2DA;
  --line-soft: #EFEDE6;
  --white: #FFFFFF;

  /* Typography */
  --serif: "Noto Serif JP", "Hiragino Mincho ProN", "YuMincho", serif;
  --sans: "Noto Sans JP", "Hiragino Sans", "YuGothic", sans-serif;
  --mono: "Inter", "Helvetica Neue", sans-serif;

  /* Spacing (8px base) */
  --s-1: 4px;
  --s-2: 8px;
  --s-3: 16px;
  --s-4: 24px;
  --s-5: 32px;
  --s-6: 48px;
  --s-7: 64px;
  --s-8: 96px;
  --s-9: 128px;

  /* Radius */
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 20px;

  /* Shadow */
  --shadow-sm: 0 2px 6px rgba(45, 58, 51, 0.05);
  --shadow: 0 4px 12px rgba(45, 58, 51, 0.08);
  --shadow-lg: 0 12px 32px rgba(45, 58, 51, 0.10);

  /* Container */
  --container: 1080px;
}

/* ---------- Reset / Base ---------- */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.02em;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; font-size: inherit; color: inherit; }

::selection { background: var(--brand-soft); color: var(--brand-deep); }

/* ---------- Typography ---------- */
.serif { font-family: var(--serif); font-weight: 700; letter-spacing: 0.04em; }
.mono { font-family: var(--mono); font-feature-settings: "tnum"; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.04em;
  line-height: 1.4;
  margin: 0;
}

.display {
  font-family: var(--serif);
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.06em;
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.06em;
}

.eyebrow {
  font-family: var(--mono);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--brand);
}

.lead {
  font-size: 1.0625rem;
  line-height: 2;
  color: var(--ink-soft);
}

/* ---------- Layout ---------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 64px 0;
}
@media (min-width: 768px) {
  .section { padding: 96px 0; }
}

.section--alt { background: var(--bg-alt); }
.section--deep { background: var(--brand-deep); color: #EAEEE9; }

.section-head {
  text-align: center;
  margin-bottom: 48px;
}
.section-head .eyebrow { margin-bottom: 16px; }
.section-head .lead { max-width: 680px; margin: 16px auto 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: var(--r-sm);
  font-family: var(--sans);
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}
.btn--primary {
  background: var(--accent);
  color: white;
  box-shadow: 0 4px 12px rgba(217, 117, 64, 0.22);
}
.btn--primary:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(184, 92, 46, 0.30);
}
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}
.btn--ghost:hover {
  border-color: var(--brand);
  color: var(--brand-deep);
  background: var(--brand-pale);
}
.btn--brand {
  background: var(--brand-deep);
  color: white;
}
.btn--brand:hover {
  background: var(--ink);
  transform: translateY(-1px);
}
.btn--lg { padding: 18px 32px; font-size: 1rem; }

/* ---------- Tags / Chips ---------- */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: var(--r-sm);
  background: var(--white);
  border: 1px solid var(--line);
  font-size: 0.875rem;
  color: var(--ink-soft);
}
.chip svg { color: var(--brand); }

/* ---------- Cards ---------- */
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 32px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.card:hover {
  border-color: var(--brand-soft);
  box-shadow: var(--shadow);
}

/* ---------- Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 250, 247, 0.92);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.header.is-scrolled {
  border-bottom-color: var(--line);
}
.header__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1;
  white-space: nowrap;
  flex-shrink: 0;
}
.logo__name {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--brand-deep);
  white-space: nowrap;
}
.logo__sub {
  font-size: 0.6875rem;
  color: var(--ink-mute);
  letter-spacing: 0.12em;
  white-space: nowrap;
}
.nav {
  display: none;
  gap: 20px;
  flex-wrap: nowrap;
  align-items: center;
}
@media (min-width: 1180px) {
  .nav { display: flex; gap: 22px; }
}
@media (min-width: 1320px) {
  .nav { gap: 28px; }
}
.nav a {
  font-size: 0.8125rem;
  color: var(--ink-soft);
  letter-spacing: 0.06em;
  position: relative;
  padding: 4px 0;
  transition: color 0.2s ease;
  white-space: nowrap;
  flex-shrink: 0;
}
@media (min-width: 1320px) {
  .nav a { font-size: 0.875rem; letter-spacing: 0.08em; }
}
.nav a:hover { color: var(--brand-deep); }
.nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--brand);
  transition: width 0.25s ease, left 0.25s ease;
}
.nav a:hover::after { width: 100%; left: 0; }

.header__cta { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.header .btn { padding: 12px 18px; font-size: 0.8125rem; white-space: nowrap; }
@media (min-width: 1320px) {
  .header .btn { padding: 12px 20px; font-size: 0.875rem; }
}
.menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  border-radius: var(--r-sm);
}
.menu-toggle span {
  width: 22px;
  height: 1.5px;
  background: var(--ink);
  transition: transform 0.2s ease, opacity 0.2s ease;
}
@media (min-width: 1180px) {
  .menu-toggle { display: none; }
}

.mobile-menu {
  display: none;
  border-top: 1px solid var(--line);
  background: var(--bg);
  padding: 16px 24px 24px;
}
.mobile-menu.is-open { display: block; }
.mobile-menu a {
  display: block;
  padding: 14px 0;
  border-bottom: 1px solid var(--line-soft);
  font-size: 0.9375rem;
  color: var(--ink);
}
.mobile-menu a:last-of-type { border-bottom: none; }

/* ---------- Hero ---------- */
.hero {
  padding: 56px 0 80px;
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) {
  .hero { padding: 80px 0 112px; }
}
.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 900px) {
  .hero__grid { grid-template-columns: 1.1fr 1fr; gap: 64px; }
}
.hero__eyebrow { margin-bottom: 24px; }
.hero__title {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5.4vw, 3.8rem);
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.05em;
  margin-bottom: 28px;
  color: var(--ink);
}
.hero__title .accent-mark {
  background: linear-gradient(transparent 65%, var(--accent-pale) 65%);
  padding: 0 4px;
}
.hero__sub {
  font-size: 1rem;
  line-height: 2.05;
  color: var(--ink-soft);
  margin-bottom: 32px;
  max-width: 560px;
}
.hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 36px;
}
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero__visual {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--bg-alt);
  box-shadow: var(--shadow-lg);
}
.hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: cover;
  display: block;
}
.about__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: cover;
  display: block;
}
.hero__visual-inner {
  position: absolute;
  inset: 0;
  /* Engawa light: warm sun streaks falling through wooden slats */
  background:
    /* Slat shadows */
    repeating-linear-gradient(
      102deg,
      rgba(62, 87, 66, 0.0) 0px,
      rgba(62, 87, 66, 0.0) 56px,
      rgba(62, 87, 66, 0.10) 56px,
      rgba(62, 87, 66, 0.10) 64px
    ),
    /* Warm light wash */
    radial-gradient(120% 80% at 80% 20%, rgba(251, 235, 220, 0.85), transparent 60%),
    radial-gradient(80% 60% at 20% 90%, rgba(122, 158, 126, 0.18), transparent 60%),
    linear-gradient(160deg, #F0E6D6 0%, #E8DFCE 40%, #C9B895 100%);
}
.hero__visual-grain {
  position: absolute;
  inset: 0;
  opacity: 0.4;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' /><feColorMatrix values='0 0 0 0 0.2  0 0 0 0 0.2  0 0 0 0 0.2  0 0 0 0.18 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}
.hero__visual-caption {
  position: absolute;
  left: 24px;
  bottom: 24px;
  right: 24px;
  font-size: 0.75rem;
  color: rgba(45, 58, 51, 0.6);
  letter-spacing: 0.12em;
}

.hero__badge {
  position: absolute;
  bottom: -28px;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  padding: 18px 26px;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: baseline;
  gap: 10px;
  border: 1px solid var(--line);
  white-space: nowrap;
}
@media (min-width: 900px) {
  .hero__badge {
    left: auto;
    right: -16px;
    bottom: 32px;
    transform: none;
  }
}
.hero__badge-num {
  font-family: var(--mono);
  font-size: 1.875rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: -0.01em;
}
.hero__badge-yen {
  font-family: var(--serif);
  font-size: 1.125rem;
  color: var(--accent);
}
.hero__badge-label {
  font-size: 0.6875rem;
  color: var(--ink-soft);
  letter-spacing: 0.1em;
}

/* ---------- About ---------- */
.about__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 900px) {
  .about__grid { grid-template-columns: 1fr 1fr; gap: 64px; }
}
.about__visual {
  aspect-ratio: 4 / 5;
  border-radius: var(--r-lg);
  background: var(--bg-alt);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.about__visual-inner {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 40% at 30% 70%, rgba(122, 158, 126, 0.3), transparent 70%),
    radial-gradient(50% 50% at 80% 30%, rgba(251, 235, 220, 0.6), transparent 70%),
    linear-gradient(150deg, #DDD3BE 0%, #B8AC8E 100%);
}
.about__heading {
  font-family: var(--serif);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.06em;
  margin: 16px 0 24px;
}
.about__body {
  font-size: 1rem;
  line-height: 2;
  color: var(--ink-soft);
}

.values {
  margin-top: 64px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 640px) { .values { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .values { grid-template-columns: repeat(4, 1fr); gap: 20px; } }

.value-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.value-card:hover {
  border-color: var(--brand-soft);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.value-card__num {
  font-family: var(--mono);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--brand);
}
.value-card__title {
  font-family: var(--serif);
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.06em;
  color: var(--ink);
}
.value-card__body {
  font-size: 0.9375rem;
  line-height: 1.95;
  color: var(--ink-soft);
}

/* ---------- Works ---------- */
.works-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 640px) { .works-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .works-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; } }

.work-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.work-card:hover {
  border-color: var(--brand-soft);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.work-card__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--r-sm);
  background: var(--brand-pale);
  color: var(--brand-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}
.work-card__title {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--ink);
}
.work-card__body {
  font-size: 0.9375rem;
  line-height: 1.95;
  color: var(--ink-soft);
}
.work-card__num {
  position: absolute;
  top: 24px;
  right: 28px;
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  color: var(--ink-mute);
}

/* ---------- Wage (重要セクション) ---------- */
.wage-hero {
  text-align: center;
  margin: 56px 0;
  padding: 72px 24px;
  background: var(--white);
  border-radius: var(--r-md);
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.wage-hero__band {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 96px;
  transform: translateY(-50%);
  background: var(--accent-pale);
  z-index: 0;
}
.wage-hero__inner { position: relative; z-index: 1; }
.wage-hero__label {
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  color: var(--accent-hover);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.wage-hero__num {
  font-family: var(--mono);
  font-size: clamp(4rem, 14vw, 9rem);
  font-weight: 600;
  color: var(--accent);
  letter-spacing: -0.03em;
  line-height: 1;
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
}
.wage-hero__num-yen {
  font-family: var(--serif);
  font-size: 0.4em;
  color: var(--accent);
  font-weight: 700;
}
.wage-hero__caption {
  font-family: var(--serif);
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--ink);
  margin-top: 16px;
}
.wage-hero__sub {
  font-size: 0.875rem;
  color: var(--ink-soft);
  margin-top: 8px;
}

.wage-compare {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 32px;
  margin-top: 48px;
  flex-wrap: wrap;
}
.wage-bar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  min-width: 140px;
}
.wage-bar__label {
  font-size: 0.8125rem;
  color: var(--ink-soft);
  letter-spacing: 0.06em;
  text-align: center;
  line-height: 1.5;
}
.wage-bar__amount {
  font-family: var(--mono);
  font-weight: 600;
  letter-spacing: -0.01em;
}
.wage-bar__amount--small {
  font-size: 1.5rem;
  color: var(--ink-soft);
}
.wage-bar__amount--big {
  font-size: 2.25rem;
  color: var(--accent);
}
.wage-bar__bar {
  width: 56px;
  background: var(--ink-mute);
  border-radius: 4px 4px 0 0;
  transition: height 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}
.wage-bar__bar--accent { background: var(--accent); }
.wage-bar__bar--inner-num {
  font-family: var(--mono);
  font-size: 0.75rem;
  color: white;
  padding-top: 8px;
  text-align: center;
  letter-spacing: 0.05em;
}
.wage-multiplier {
  font-family: var(--serif);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--accent);
  padding-bottom: 56px;
  letter-spacing: 0.04em;
}
.wage-multiplier .num {
  font-family: var(--mono);
  font-size: 1.75rem;
  font-weight: 600;
}

.wage-points {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 56px;
}
@media (min-width: 768px) { .wage-points { grid-template-columns: repeat(3, 1fr); gap: 24px; } }
.wage-point {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.wage-point__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--r-sm);
  background: var(--accent-pale);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
}
.wage-point__title {
  font-family: var(--serif);
  font-size: 1.0625rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}
.wage-point__body {
  font-size: 0.9375rem;
  line-height: 1.95;
  color: var(--ink-soft);
}
.wage-disclaimer {
  margin-top: 32px;
  font-size: 0.75rem;
  color: var(--ink-mute);
  line-height: 1.8;
  text-align: center;
}

/* ---------- Transport ---------- */
.transport__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 900px) {
  .transport__grid { grid-template-columns: 1fr 1fr; gap: 64px; }
}
.transport__visual {
  aspect-ratio: 5 / 4;
  border-radius: var(--r-lg);
  background:
    radial-gradient(50% 60% at 70% 30%, rgba(251, 235, 220, 0.7), transparent 60%),
    linear-gradient(160deg, #DDE6D9 0%, #B5C9B7 100%);
  position: relative;
  overflow: hidden;
}
.transport__points {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 40px;
}
.transport-point {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  align-items: start;
}
.transport-point__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--r-sm);
  background: var(--brand-pale);
  color: var(--brand-deep);
  display: flex;
  align-items: center;
  justify-content: center;
}
.transport-point__title {
  font-family: var(--serif);
  font-size: 1.0625rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}
.transport-point__body {
  font-size: 0.9375rem;
  line-height: 1.85;
  color: var(--ink-soft);
}

/* ---------- Staff ---------- */
.staff-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 640px) { .staff-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .staff-grid { grid-template-columns: repeat(4, 1fr); } }

.staff-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 32px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.staff-card:hover {
  border-color: var(--brand-soft);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.staff-card__avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: var(--brand-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 1.75rem;
  color: var(--brand-deep);
  position: relative;
  overflow: hidden;
}
.staff-card__avatar::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(70% 70% at 30% 30%, rgba(255, 255, 255, 0.4), transparent);
}
.staff-card__role {
  font-family: var(--mono);
  font-size: 0.6875rem;
  letter-spacing: 0.18em;
  color: var(--brand);
  text-transform: uppercase;
}
.staff-card__name {
  font-family: var(--serif);
  font-size: 1.0625rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.staff-card__msg {
  font-size: 0.8125rem;
  line-height: 1.95;
  color: var(--ink-soft);
  text-align: left;
  position: relative;
  padding-top: 16px;
  border-top: 1px solid var(--line-soft);
  margin-top: 4px;
  width: 100%;
}

/* ---------- Steps ---------- */
.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  position: relative;
}
@media (min-width: 768px) {
  .steps {
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
  }
}
.step {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 28px 22px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.step__num {
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  color: var(--brand);
}
.step__num span {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--brand-deep);
  letter-spacing: 0;
  margin-right: 6px;
}
.step__title {
  font-family: var(--serif);
  font-size: 1.0625rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--ink);
}
.step__body {
  font-size: 0.875rem;
  line-height: 1.85;
  color: var(--ink-soft);
}
.step__arrow {
  display: none;
  position: absolute;
  right: -16px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  color: var(--brand-soft);
}
@media (min-width: 768px) {
  .step__arrow { display: block; }
  .step:last-child .step__arrow { display: none; }
}
.steps-note {
  margin-top: 32px;
  text-align: center;
  font-size: 0.875rem;
  color: var(--ink-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

/* ---------- FAQ ---------- */
.faq {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.faq-item {
  border-bottom: 1px solid var(--line);
  background: transparent;
}
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-q {
  width: 100%;
  text-align: left;
  padding: 24px 16px 24px 0;
  display: flex;
  align-items: center;
  gap: 20px;
  cursor: pointer;
  transition: background 0.2s;
  background: transparent;
  border: none;
}
.faq-q:hover { background: rgba(122, 158, 126, 0.05); }
.faq-q__mark {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--brand);
  flex-shrink: 0;
  width: 32px;
  text-align: center;
}
.faq-q__text {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--ink);
  flex: 1;
  line-height: 1.7;
}
.faq-q__icon {
  flex-shrink: 0;
  color: var(--ink-soft);
  transition: transform 0.3s ease, color 0.2s;
}
.faq-item.is-open .faq-q__icon {
  transform: rotate(180deg);
  color: var(--brand-deep);
}
.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.faq-item.is-open .faq-a {
  grid-template-rows: 1fr;
}
.faq-a__inner {
  overflow: hidden;
}
.faq-a__body {
  padding: 0 16px 28px 52px;
  font-size: 0.9375rem;
  line-height: 2;
  color: var(--ink-soft);
}
.faq-a__body strong {
  color: var(--ink);
  font-weight: 500;
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1fr 1.2fr; gap: 32px; } }

.contact-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(234, 238, 233, 0.15);
  border-radius: var(--r-md);
  padding: 36px 32px;
  color: #EAEEE9;
}
.contact-card__title {
  font-family: var(--serif);
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: white;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(234, 238, 233, 0.2);
}
.contact-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact-list__item {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 16px;
  align-items: start;
}
.contact-list__icon {
  color: var(--brand-soft);
  margin-top: 4px;
}
.contact-list__label {
  font-family: var(--mono);
  font-size: 0.6875rem;
  letter-spacing: 0.18em;
  color: rgba(234, 238, 233, 0.6);
  margin-bottom: 4px;
  text-transform: uppercase;
}
.contact-list__value {
  font-size: 1rem;
  color: white;
  letter-spacing: 0.04em;
}
.contact-list__value--big {
  font-family: var(--mono);
  font-size: 1.5rem;
  font-weight: 500;
  color: white;
}

/* Form */
.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 600px) {
  .form-grid--2 { grid-template-columns: 1fr 1fr; }
}
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-label {
  font-size: 0.8125rem;
  letter-spacing: 0.08em;
  color: rgba(234, 238, 233, 0.85);
  display: flex;
  align-items: center;
  gap: 8px;
}
.form-required {
  font-size: 0.625rem;
  background: var(--accent);
  color: white;
  padding: 2px 8px;
  border-radius: 4px;
  letter-spacing: 0.1em;
}
.form-input,
.form-textarea,
.form-select {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(234, 238, 233, 0.2);
  border-radius: var(--r-sm);
  padding: 14px 16px;
  font-size: 0.9375rem;
  color: white;
  transition: border-color 0.2s, background 0.2s;
}
.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--brand-soft);
  background: rgba(255, 255, 255, 0.10);
}
.form-input::placeholder,
.form-textarea::placeholder { color: rgba(234, 238, 233, 0.4); }
.form-textarea { resize: vertical; min-height: 120px; font-family: inherit; line-height: 1.7; }
.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='%23EAEEE9' d='M6 8L0 0h12z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}
.form-error {
  font-size: 0.75rem;
  color: #F4B492;
  letter-spacing: 0.04em;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--brand-deep);
  color: rgba(234, 238, 233, 0.8);
  padding: 64px 0 24px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(234, 238, 233, 0.15);
}
@media (min-width: 900px) {
  .footer__grid { grid-template-columns: 1.4fr 1fr 1.2fr; gap: 64px; }
}
.footer__logo .logo__name { color: white; }
.footer__logo .logo__sub { color: rgba(234, 238, 233, 0.5); }
.footer__desc {
  margin-top: 24px;
  font-size: 0.875rem;
  line-height: 2;
  color: rgba(234, 238, 233, 0.6);
}
.footer__heading {
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  color: white;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(234, 238, 233, 0.15);
}
.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer__nav a {
  font-size: 0.875rem;
  color: rgba(234, 238, 233, 0.7);
  letter-spacing: 0.06em;
  transition: color 0.2s;
}
.footer__nav a:hover { color: white; }

.footer__info {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.8125rem;
  line-height: 1.8;
  color: rgba(234, 238, 233, 0.7);
}
.footer__info-row {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 12px;
}
.footer__info-label {
  color: rgba(234, 238, 233, 0.5);
  letter-spacing: 0.08em;
}
.footer__bottom {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.75rem;
  color: rgba(234, 238, 233, 0.5);
  letter-spacing: 0.08em;
}

/* ---------- Floating CTA (mobile) ---------- */
.float-cta {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  z-index: 90;
  background: var(--accent);
  color: white;
  padding: 16px;
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  box-shadow: 0 8px 24px rgba(217, 117, 64, 0.35);
  opacity: 0;
  transform: translateY(120%);
  transition: opacity 0.3s, transform 0.3s;
  pointer-events: none;
}
.float-cta.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
@media (min-width: 1024px) {
  .float-cta { display: none; }
}

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s ease-out, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Photo placeholder pattern ---------- */
.photo-ph {
  position: relative;
  overflow: hidden;
  background: var(--bg-alt);
}
.photo-ph__caption {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  color: rgba(45, 58, 51, 0.45);
  text-transform: uppercase;
}

/* ---------- About visual specifics ---------- */
.about__visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      88deg,
      transparent 0px,
      transparent 80px,
      rgba(62, 87, 66, 0.06) 80px,
      rgba(62, 87, 66, 0.06) 84px
    );
  z-index: 1;
}

/* ---------- Transport visual specifics ---------- */
.transport__visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 40%, rgba(255, 255, 255, 0.3) 1px, transparent 2px) 0 0/40px 40px,
    radial-gradient(circle at 70% 60%, rgba(62, 87, 66, 0.08) 1px, transparent 2px) 0 0/30px 30px;
  opacity: 0.6;
}
