:root {
  --ink: #1c1416;
  --mute: #5c4e52;
  --paper: #f7f2f0;
  --line: #e4d6d3;
  --accent: #7a2e3a;
  --accent-deep: #5c1f29;
  --wash: #f0e4e2;
  --night: #1a1012;
  --fog: #b09aa0;
  --card: #fff;
  --on-mast: #f8f3f2;
  --on-mast-soft: #e4d4d6;
  --round: 14px;
  --round-lg: 20px;
  --shadow: 0 16px 40px rgba(28, 16, 20, 0.08);
  --lift: 0 8px 18px rgba(122, 46, 58, 0.25);
  --display: "Sora", ui-sans-serif, system-ui, sans-serif;
  --body: "Source Sans 3", ui-sans-serif, system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--body);
  color: var(--ink);
  background: var(--card);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
h1, h2, h3, h4 {
  font-family: var(--display);
  letter-spacing: -0.02em;
  line-height: 1.2;
  text-wrap: balance;
}
p { text-wrap: pretty; }
.shell {
  width: min(72.5rem, calc(100% - 2.25rem));
  margin-inline: auto;
}
.site-head {
  position: sticky;
  top: 0;
  z-index: 40;
  background: color-mix(in oklab, var(--card) 94%, transparent);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.head-row {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.wordmark {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.02rem;
  font-weight: 700;
  font-family: var(--display);
  letter-spacing: 0.04em;
}
.wordmark em {
  font-style: normal;
  font-weight: 500;
  color: var(--mute);
  letter-spacing: 0.08em;
}
.mark {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--accent);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 6px 14px rgba(122, 46, 58, 0.28);
}
.menu {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  color: var(--mute);
  font-size: 15px;
}
.menu a:hover,
.menu a.here { color: var(--accent-deep); font-weight: 600; }
.push, .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  cursor: pointer;
  font: 600 15px var(--body);
  border-radius: 12px;
  padding: 12px 20px;
  background: var(--accent);
  color: #fff;
  box-shadow: var(--lift);
  transition: background 0.15s ease, transform 0.15s ease;
}
.push:hover, .btn:hover { background: var(--accent-deep); }
.btn-ghost {
  background: #fff;
  color: var(--ink);
  box-shadow: none;
}
.btn-ghost:hover { transform: translateY(-1px); background: #fff; }
.btn-wide { width: 100%; margin-top: auto; }
.menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
  color: var(--ink);
}
.mast {
  position: relative;
  min-height: 35rem;
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--on-mast);
  background: var(--night) center / cover no-repeat;
}
.mast.short { min-height: 23.75rem; }
.mast::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(22, 10, 12, 0.52), rgba(22, 10, 12, 0.78));
}
.mast-copy {
  position: relative;
  z-index: 1;
  max-width: 50rem;
  padding: 5rem 1rem;
}
.mast h1 {
  font-size: clamp(2.1rem, 5vw, 3.35rem);
  margin-bottom: 0.9rem;
}
.mast .lead {
  font-size: clamp(1.125rem, 2.3vw, 1.5rem);
  margin-bottom: 0.9rem;
}
.mast p { color: var(--on-mast-soft); margin-bottom: 1.5rem; }
.block { padding: 5rem 0; }
.block-alt { background: var(--paper); }
.kicker {
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 12px;
  margin-bottom: 8px;
}
.intro { text-align: center; margin-bottom: 2.5rem; }
.intro h2 { font-size: clamp(1.75rem, 3.2vw, 2.35rem); margin-bottom: 10px; }
.intro p { color: var(--mute); max-width: 42rem; margin-inline: auto; }
.quartet, .trio, .pair { display: grid; gap: 1.35rem; }
.quartet { grid-template-columns: repeat(4, 1fr); }
.trio { grid-template-columns: repeat(3, 1fr); }
.pair { grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: center; }
.perk { text-align: center; padding: 8px 8px 0; }
.perk-icon {
  width: 4.5rem;
  height: 4.5rem;
  margin: 0 auto 14px;
  background: var(--wash);
  color: var(--accent);
  border-radius: 14px;
  display: grid;
  place-items: center;
}
.perk h3 { margin-bottom: 8px; font-size: 1.125rem; }
.perk p { color: var(--mute); font-size: 15px; }
.shot {
  border-radius: var(--round-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 22.5rem;
}
.shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 22.5rem;
}
.ladder { display: grid; gap: 1rem; }
.rung { display: grid; grid-template-columns: 3.25rem 1fr; gap: 14px; }
.rung .n {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-weight: 700;
}
.rung p { color: var(--mute); font-size: 15px; }
.vacancy {
  background: var(--card);
  border-radius: var(--round-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
}
.vacancy img {
  height: 12rem;
  width: 100%;
  object-fit: cover;
}
.vacancy .pad {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.wage { color: var(--accent); font-weight: 700; }
.vacancy p { color: var(--mute); font-size: 15px; }
.path {
  background: var(--card);
  border-radius: var(--round-lg);
  padding: 1.75rem 1.35rem;
  text-align: center;
  box-shadow: var(--shadow);
}
.path img {
  width: 100%;
  height: 8.75rem;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 14px;
}
.path .n {
  width: 36px;
  height: 36px;
  margin: 0 auto 10px;
  border-radius: 50%;
  background: var(--wash);
  color: var(--accent-deep);
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-weight: 800;
}
.path p { color: var(--mute); font-size: 15px; }
.chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.chip {
  background: var(--wash);
  color: var(--accent-deep);
  border-radius: 999px;
  padding: 11px 16px;
  font-weight: 600;
  font-size: 14px;
}
.strip {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
  margin-top: 1.75rem;
}
.strip img {
  width: 100%;
  height: 13.75rem;
  object-fit: cover;
  border-radius: 14px;
}
.quote {
  background: var(--card);
  border-radius: var(--round-lg);
  padding: 1.35rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}
.quote-top { display: flex; gap: 12px; align-items: center; margin-bottom: 10px; }
.quote-top img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 50%;
}
.stars { color: var(--accent); letter-spacing: 0.08em; margin-bottom: 8px; }
.quote small { color: var(--mute); }
.ask {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px 18px;
  margin-bottom: 10px;
}
.ask summary { cursor: pointer; font-family: var(--display); font-weight: 600; }
.ask p { margin-top: 8px; color: var(--mute); }
.closer {
  position: relative;
  color: #fff;
  text-align: center;
  padding: 5.5rem 1rem;
  background: var(--night) center / cover no-repeat;
}
.closer::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(22, 10, 12, 0.74);
}
.closer > * { position: relative; z-index: 1; }
.closer h2 { font-size: 2.1rem; margin-bottom: 10px; }
.closer p { margin-bottom: 20px; color: var(--on-mast-soft); }
.colophon {
  background: var(--night);
  color: var(--fog);
  padding: 2.75rem 0 1.5rem;
  font-size: 14px;
}
.colophon h4 { color: #fff; margin-bottom: 10px; font-size: 1rem; }
.col-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.4rem;
}
.colophon ul { display: grid; gap: 8px; }
.colophon a:hover { color: #fff; }
.legal-line {
  border-top: 1px solid rgba(248, 243, 242, 0.12);
  padding-top: 16px;
}
.apply-box {
  background: var(--card);
  border-radius: var(--round-lg);
  padding: 1.85rem;
  box-shadow: var(--shadow);
}
.apply-box h3 { margin-bottom: 4px; }
.apply-box > p { color: var(--mute); font-size: 14px; margin-bottom: 4px; }
.apply-box label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin: 12px 0 6px;
}
.apply-box input,
.apply-box select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px 14px;
  font: inherit;
  background: var(--paper);
  color: var(--ink);
}
.twin { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.tick {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  margin-top: 12px;
  font-size: 14px;
  color: var(--mute);
}
.tick input { width: auto; margin-top: 3px; accent-color: var(--accent); }
.hint { font-size: 13px; color: var(--mute); margin-top: 10px; }
.side-offer {
  border-radius: var(--round-lg);
  overflow: hidden;
  color: #fff;
  min-height: 100%;
  background: var(--night) center / cover no-repeat;
  position: relative;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.side-offer::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26, 16, 18, 0.22), rgba(26, 16, 18, 0.8));
}
.side-offer > * { position: relative; z-index: 1; }
.side-offer p { color: var(--on-mast-soft); margin: 6px 0; }
.figures {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 1.75rem;
}
.figure {
  background: var(--card);
  border-radius: 14px;
  padding: 1.35rem;
  text-align: center;
  box-shadow: var(--shadow);
}
.figure b {
  display: block;
  color: var(--accent);
  font-family: var(--display);
  font-size: 1.5rem;
  margin-bottom: 4px;
}
.policy { max-width: 48rem; padding: 4rem 0; }
.policy h1 { font-size: 2.4rem; margin-bottom: 1.5rem; }
.policy h2 { font-size: 1.25rem; margin: 1.5rem 0 8px; }
.policy p, .policy li { color: var(--mute); margin-bottom: 8px; }
.policy ul { padding-left: 18px; list-style: disc; }
.link { color: var(--accent); font-weight: 600; text-decoration: underline; }
@media (max-width: 900px) {
  .menu {
    display: none;
    flex-direction: column;
    align-items: stretch;
    position: absolute;
    inset: 80px 0 auto;
    background: #fff;
    padding: 12px 20px 20px;
    border-bottom: 1px solid var(--line);
    gap: 0;
  }
  .menu.open { display: flex; }
  .menu a { padding: 12px 8px; }
  .menu-btn { display: grid; place-items: center; }
  .head-row .push { display: none; }
  .quartet, .trio, .pair, .col-grid, .twin, .figures, .strip { grid-template-columns: 1fr; }
  .mast { min-height: 28rem; }
}
