/* ==========================================================================
   Sections — page-specific layout, top to bottom
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Header
   -------------------------------------------------------------------------- */

.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 24px;
  padding: 14px var(--gutter);
  background: rgba(18, 24, 31, .94);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  backdrop-filter: blur(10px);
}

.header__logo { height: 19px; width: auto; }

.header__right {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 22px;
}

.header__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 14px;
  white-space: nowrap;
}

.header__nav a {
  color: #A3AEB8;
  text-decoration: none;
  transition: color .2s ease;
}

@media (hover: hover) {
  .header__nav a:hover { color: #fff; }
}

.header-spacer { height: var(--header-h); }

/* --------------------------------------------------------------------------
   2. Hero
   -------------------------------------------------------------------------- */

.hero {
  position: relative;
  isolation: isolate;
  padding: clamp(48px, 6vw, 92px) var(--gutter) clamp(56px, 7vw, 104px);
  background: var(--c-ink-hero);
  color: #F4F2EE;
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% 100%;
}

.hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
    rgba(12, 17, 22, .96) 0%,
    rgba(12, 17, 22, .90) 42%,
    rgba(12, 17, 22, .55) 100%);
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  grid-template-areas:
    "spacer form"
    "badge  form"
    "copy   form"
    "trust  form";
  /* Formulář vpravo přesahuje všechny tři řádky. Kdyby byl vyšší než levý
     sloupec, grid by ten přebytek rozpustil do řádků a odznak, nadpis
     a lišta důvěry by se od sebe odtrhly. Prázdný 1fr řádek nahoře ho
     spolkne a levý blok zůstane pohromadě u spodní hrany. */
  grid-template-rows: 1fr auto auto auto;
  gap: 0 clamp(32px, 4vw, 64px);
  align-items: end;
}

/* Na desktopu odznak sedí nad nadpisem ve stejném sloupci; na mobilu se
   odsune na vrchol sekce (viz responsive.css). */
.hero__badge {
  grid-area: badge;
  justify-self: start;
  margin-bottom: 24px;
  animation: dcup .6s ease-out both;
}

.hero__copy {
  grid-area: copy;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  animation: dcup .6s ease-out both;
}

.hero__title {
  max-width: 620px;
  font-size: var(--fs-h1);
  font-weight: 700;
  line-height: 1.16;
  letter-spacing: -.03em;
  text-wrap: balance;
}

.hero__intro {
  text-wrap: pretty;
  max-width: 520px;
  font-size: var(--fs-lead);
  line-height: 1.65;
  color: var(--c-on-dark-body);
}

.hero__salary {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px 12px;
}

.hero__salary-value {
  font-size: var(--fs-salary);
  font-weight: 800;
  letter-spacing: -.045em;
  line-height: 1;
}

.hero__salary-unit {
  font-size: clamp(14px, 13.4px + 0.17vw, 17px);
  color: #A3AEB8;
  white-space: nowrap;
}

.hero__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero__pills .pill { --icon-size: 16px; }

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}

.hero__trust {
  grid-area: trust;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 24px;
  margin-top: 24px;
  font-size: 15px;
  font-weight: 500;
  color: #F2F6F9;
}

.hero__trust li {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, .55);
}

.hero__trust .icon {
  --icon-size: 16px;
  color: var(--c-red-on-dark);
}

.hero__form {
  grid-area: form;
  align-self: end;
  scroll-margin-top: calc(var(--header-h) + 16px);
  padding: 26px;
  background: var(--c-offwhite);
  border: 1px solid rgba(255, 255, 255, .5);
  border-radius: var(--r-xl);
  box-shadow: 0 40px 90px rgba(0, 0, 0, .45);
  color: var(--c-ink);
  animation: dcup .6s ease-out .12s both;
}

/* --------------------------------------------------------------------------
   3. Facts strip
   -------------------------------------------------------------------------- */

.facts {
  padding: clamp(22px, 3vw, 34px) var(--gutter);
  background: var(--c-ink-band);
  border-top: 1px solid rgba(255, 255, 255, .07);
  border-bottom: 1px solid rgba(255, 255, 255, .07);
}

.facts__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(20px, 2.5vw, 36px);
}

.facts__item {
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding: 4px 0;
}

.facts__item + .facts__item {
  padding-left: clamp(20px, 2.6vw, 40px);
  border-left: 1px solid var(--c-border-dark);
}

.facts__label {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--c-on-dark-body);
}

.facts__label::before {
  content: "";
  flex: none;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c-red-on-dark);
}

.facts__value {
  font-size: clamp(22px, 18.5px + 0.94vw, 32px);
  font-weight: 700;
  letter-spacing: -.025em;
  line-height: 1.05;
}

/* --------------------------------------------------------------------------
   4. Náplň práce
   -------------------------------------------------------------------------- */

.duties {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(28px, 3.5vw, 56px);
  align-items: stretch;
}

.duties__figure {
  position: relative;
  min-height: 420px;
  border-radius: var(--r-xl);
  overflow: hidden;
}

.duties__figure img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.duties__list {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.duties__item {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  align-items: center;
  gap: clamp(14px, 1.5vw, 18px);
  padding: 16px 0;
  font-size: var(--fs-body);
  line-height: 1.6;
  color: var(--c-ink);
  transition: transform .2s ease, border-color .2s ease;
}

.duties__item:first-child { padding-top: 0; }
.duties__item + .duties__item { border-top: 1px solid var(--c-border-3); }
@media (hover: hover) {
  .duties__item:hover { transform: translateX(6px); }
}
@media (hover: hover) {
  .duties__item + .duties__item:hover { border-color: var(--c-red); }
}

.duties__item .icon {
  --icon-size: 28px;
  color: var(--c-red);
}

/* --------------------------------------------------------------------------
   6. Transparentně o penězích
   -------------------------------------------------------------------------- */

.money {
  background: var(--c-ink);
  color: #F4F2EE;
  padding: clamp(44px, 5vw, 68px) var(--gutter);
}

.money__title {
  margin-bottom: 16px;
  max-width: 820px;
  font-size: var(--fs-h2);
  font-weight: 700;
  letter-spacing: -.04em;
  line-height: 1.06;
  text-wrap: balance;
}

.money__intro {
  max-width: 600px;
  margin-bottom: clamp(24px, 3vw, 36px);
}

.money__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding-top: clamp(22px, 2.6vw, 30px);
}

.money__card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px;
  background: linear-gradient(150deg, rgba(218, 0, 15, .34), rgba(240, 98, 15, .16));
  border: 1px solid rgba(240, 98, 15, .34);
  border-radius: var(--r-lg);
  transition: transform .25s ease, box-shadow .25s ease,
              border-color .25s ease, background .25s ease;
}

@media (hover: hover) {
  .money__card:hover {
    transform: translateY(-4px);
    background: linear-gradient(150deg, rgba(218, 0, 15, .5), rgba(240, 98, 15, .26));
    border-color: rgba(240, 98, 15, .6);
    box-shadow: 0 18px 44px rgba(218, 0, 15, .28);
  }
}

.money__card .icon {
  --icon-size: 22px;
  --icon-stroke: 1.8;
  color: var(--c-red-on-dark);
}

.money__card .flag { --flag-w: 30px; --flag-h: 20px; box-shadow: none; }

.money__label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--c-red-on-dark-3);
}

.money__text {
  max-width: 320px;
  font-size: var(--fs-body);
  line-height: 1.65;
  color: var(--c-on-dark);
}

.money__foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-top: clamp(26px, 3vw, 36px);
}

.money__foot span {
  font-size: 15px;
  color: var(--c-on-dark-meta);
}

/* --------------------------------------------------------------------------
   7. Dojezd
   -------------------------------------------------------------------------- */

.geo {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  grid-template-areas:
    "head figure"
    "pills figure";
  align-content: center;
  gap: 22px clamp(32px, 4vw, 64px);
}

.geo__head { grid-area: head; align-self: end; }
.geo__head .lead { max-width: 480px; margin-top: 18px; }

.geo__pills {
  grid-area: pills;
  align-self: start;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.geo__pills .icon { --icon-size: 16px; color: var(--c-red); }

.geo__figure {
  grid-area: figure;
  align-self: center;
  justify-self: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  width: 100%;
  max-width: 420px;
}

.geo__map {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
}

.geo__ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(218, 0, 15, .35);
  background: radial-gradient(circle at center, rgba(218, 0, 15, .10), rgba(218, 0, 15, 0) 70%);
}

.geo__ring--2 { inset: 22%; border: 1px dashed rgba(218, 0, 15, .25); background: none; }
.geo__ring--3 { inset: 34%; border: 1px dashed rgba(218, 0, 15, .18); background: none; }

.geo__center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.geo__pin {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(42px, 12vw, 52px);
  height: clamp(42px, 12vw, 52px);
  border-radius: 50%;
  background: var(--grad-card);
  color: #fff;
  box-shadow: 0 0 0 12px rgba(218, 0, 15, .10);
  animation: omPulse 4.5s ease-out infinite;
}

.geo__pin .icon { --icon-size: 24px; }

.geo__center-name {
  margin-top: 12px;
  font-size: clamp(15px, 14.3px + 0.19vw, 17px);
  font-weight: 700;
  color: var(--c-ink);
}

.geo__center-sub {
  font-size: clamp(12px, 11.6px + 0.09vw, 13px);
  color: var(--c-text-soft);
}

.geo__town {
  position: absolute;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
  font-size: clamp(11.5px, 10.8px + 0.19vw, 13.5px);
  font-weight: 600;
  color: var(--c-text-muted);
}

.geo__town::before {
  content: "";
  flex: none;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #B9AFA1;
}

.geo__town--primary { font-weight: 700; color: var(--c-ink); }
.geo__town--primary::before { background: var(--c-red); }

.geo__town--hb { top: 34%; left: 18%; }
.geo__town--ch { top: 13%; left: 59%; }
.geo__town--sv { top: 82%; left: 64%; }
.geo__town--gj { top: 70%; left: 17%; }

.geo__note {
  max-width: 330px;
  font-size: 13px;
  line-height: 1.6;
  color: var(--c-text-meta);
  text-align: center;
}

/* --------------------------------------------------------------------------
   8. + 9. Two-panel sections
   -------------------------------------------------------------------------- */

.panels {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 20px;
}

/* --------------------------------------------------------------------------
   10. Co nabízíme
   -------------------------------------------------------------------------- */

.benefits__photo {
  width: 100%;
  height: clamp(180px, 26vw, 320px);
  margin-bottom: 16px;
  object-fit: cover;
  object-position: 50% 45%;
  border-radius: var(--r-xl);
  transition: transform .5s ease;
}

@media (hover: hover) {
  .benefits__photo:hover { transform: scale(1.02); }
}

.benefits__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

@media (hover: hover) {
  .benefits__grid .card:hover {
    background: linear-gradient(150deg, #FFF3EF, #FFF9F4);
    border-color: rgba(240, 98, 15, .42);
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(18, 24, 31, .10);
  }
}

.benefits__grid .icon {
  --icon-size: 34px;
  --icon-stroke: 1.5;
  color: var(--c-red);
  transition: transform .3s ease;
}

@media (hover: hover) {
  .benefits__grid .card:hover .icon { transform: scale(1.15) rotate(-8deg); }
}
.benefits__grid .flag { --flag-w: 34px; --flag-h: 23px; box-shadow: none; }

/* --------------------------------------------------------------------------
   11. Zaučení band
   -------------------------------------------------------------------------- */

.reassure {
  padding: clamp(40px, 5vw, 68px) var(--gutter);
  background: var(--c-ink);
  color: #F4F2EE;
}

.reassure__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(20px, 3vw, 48px);
  align-items: center;
}

/* --------------------------------------------------------------------------
   12. Kdo jsme
   -------------------------------------------------------------------------- */

.about {
  background: linear-gradient(180deg, #FBF1EA 0%, #F1E7DD 100%);
}

.about__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(28px, 3.5vw, 56px);
  align-items: center;
}

.about__photo {
  width: 100%;
  max-height: 440px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--r-xl);
  transition: transform .5s ease;
}

@media (hover: hover) {
  .about__photo:hover { transform: scale(1.02); }
}

.about__text .lead + .lead { margin-top: 14px; }
.about__text .lead { line-height: 1.75; }

/* --------------------------------------------------------------------------
   13. Reference
   -------------------------------------------------------------------------- */

.quotes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.quote {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-top: 3px solid var(--c-red);
  border-radius: var(--r-xl);
  box-shadow: 0 12px 32px rgba(18, 24, 31, .06);
  transition: transform .25s ease, box-shadow .25s ease;
}

@media (hover: hover) {
  .quote:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 54px rgba(18, 24, 31, .14);
  }
}

.quote img {
  width: 92px;
  height: 92px;
  margin: 28px 26px 0;
  border-radius: 50%;
  object-fit: cover;
}

.quote__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 14px;
  padding: 18px 26px 26px;
}

.quote__text {
  font-size: var(--fs-body);
  line-height: 1.65;
  font-weight: 500;
}

.quote__who {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid #EEEAE2;
}

.quote__name {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -.01em;
}

.quote__role {
  font-size: 14px;
  color: var(--c-text-meta);
}

/* --------------------------------------------------------------------------
   15. FAQ
   -------------------------------------------------------------------------- */

.faq {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq__item {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  box-shadow: 0 6px 18px rgba(18, 24, 31, .04);
  transition: box-shadow var(--t-base);
}

@media (hover: hover) {
  .faq__item:hover { box-shadow: 0 14px 30px rgba(18, 24, 31, .09); }
}

.faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  padding: 22px 24px;
  font-size: clamp(15.5px, 15px + 0.14vw, 17px);
  font-weight: 600;
  line-height: 1.45;
  text-align: left;
}

.faq__plus {
  flex: none;
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  line-height: 22px;
  font-weight: 400;
  background-image: var(--grad-icon);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  transition: transform .25s ease;
}

.faq__q[aria-expanded="true"] .faq__plus { transform: rotate(45deg); }

.faq__a {
  text-wrap: pretty;
  /* Kontejner FAQ je 900px, takže bez stropu vychází přes 110 znaků na
     řádek. Pohodlná míra je 45–75, nad 85 čitelnost citelně klesá.
     Karta ani rozložení se nemění, jen se text zalomí dřív. */
  max-width: 62ch;
  padding: 0 24px 22px;
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--c-text-muted);
}

.faq__a[hidden] { display: none; }

/* --------------------------------------------------------------------------
   16. Přihláška
   -------------------------------------------------------------------------- */

.apply {
  background: linear-gradient(180deg, #FFF6F1 0%, #F4EDE4 100%);
  color: var(--c-ink);
  padding-bottom: clamp(64px, 8vw, 110px);
}

.apply__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(32px, 4vw, 64px);
  align-items: start;
}

.apply__title {
  margin-bottom: 18px;
  font-size: var(--fs-h2);
  font-weight: 700;
  letter-spacing: -.035em;
  line-height: 1.1;
}

.apply__intro {
  max-width: 460px;
  margin-bottom: 26px;
  line-height: 1.75;
}

.stats3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 470px;
  margin-bottom: 24px;
  padding: 20px 0;
  border-top: 1px solid #E4DCD0;
  border-bottom: 1px solid #E4DCD0;
}

.stats3__item {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding-right: clamp(14px, 1.6vw, 22px);
}

/* No trailing gutter on the last column — it is what gives "Do 3 dnů"
   the room to stay on one line at 1440. */
.stats3__item:last-child { padding-right: 0; }

.stats3__item + .stats3__item {
  padding-left: clamp(14px, 1.6vw, 22px);
  border-left: 1px solid #E4DCD0;
}

.stats3__value {
  font-size: clamp(20px, 17.2px + 0.75vw, 28px);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1;
}

.stats3__label {
  font-size: clamp(13px, 12.7px + 0.09vw, 14px);
  line-height: 1.45;
  color: var(--c-text-soft);
}

.contact-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 470px;
  padding: clamp(20px, 2.4vw, 28px);
  background: var(--c-white);
  border: 1px solid #EDE6DB;
  border-top: 3px solid var(--c-red);
  border-radius: var(--r-xl);
  box-shadow: 0 8px 24px rgba(18, 24, 31, .05);
  transition: border-color var(--t-slow), box-shadow var(--t-slow), transform var(--t-slow);
}

@media (hover: hover) {
  .contact-card:hover {
    border-color: #E5CCC4;
    box-shadow: 0 18px 40px rgba(18, 24, 31, .10);
    transform: translateY(-3px);
  }
}

.contact-card__person {
  display: flex;
  align-items: center;
  gap: 13px;
}

.contact-card__person img {
  flex: none;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  object-position: 50% 22%;
  box-shadow: 0 0 0 3px #fff, 0 0 0 4px #F3E4E0;
}

.contact-card__eyebrow {
  margin-bottom: 3px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: #7B766B; /* design #B0A899 — 2.36:1, darkened to 4.54:1 */
}

.contact-card__name {
  font-size: 15.5px;
  font-weight: 700;
  line-height: 1.25;
  color: var(--c-ink);
}

.contact-card__role {
  font-size: 13px;
  line-height: 1.4;
  color: var(--c-text-meta);
}

.contact-card__lead {
  font-size: var(--fs-body);
  font-weight: 600;
  line-height: 1.45;
  color: var(--c-ink);
}

.contact-card__links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-card__link {
  display: flex;
  align-items: center;
  gap: 11px;
  min-height: 48px;
  padding: 11px 13px;
  border-radius: 11px;
  background: #FBF8F4;
  font-size: 15px;
  font-weight: 600;
  color: var(--c-red-deep);
  text-decoration: none;
  overflow-wrap: anywhere;
  transition: background var(--t-base), color var(--t-base), transform var(--t-base);
}

@media (hover: hover) {
  .contact-card__link:hover {
    background: var(--c-warm-1);
    color: var(--c-orange);
    transform: translateX(4px);
  }
}

.contact-card__link .icon { --icon-size: 17px; }

.apply__card {
  padding: clamp(22px, 2.6vw, 32px);
  background: var(--c-white);
  border: 1px solid #E7E2D8;
  border-radius: var(--r-xl);
  box-shadow: 0 24px 60px rgba(18, 24, 31, .10);
}

/* --------------------------------------------------------------------------
   17. Footer + sticky CTA bar
   -------------------------------------------------------------------------- */

.footer {
  background: var(--c-ink-footer);
  color: #93A0AA;
  padding: clamp(40px, 5vw, 64px) var(--gutter)
           calc(var(--stickybar-h) + clamp(28px, 3vw, 40px));
}

.footer__inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.footer__top {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 420px;
}

.footer__logo {
  height: 20px;
  width: auto;
  align-self: flex-start;
  opacity: .95;
}

.footer__tagline {
  font-size: 15px;
  line-height: 1.7;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 13px 18px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid var(--c-border-dark);
  border-radius: var(--r-sm);
  color: #E4E9ED;
  font-size: 14.5px;
  text-decoration: none;
  transition: all var(--t-base);
}

@media (hover: hover) {
  .footer__link:hover {
    background: rgba(255, 255, 255, .09);
    border-color: rgba(218, 0, 15, .5);
    color: #fff;
    transform: translateY(-2px);
  }
}

.footer__link .icon { --icon-size: 17px; color: var(--c-red-on-dark-2); }

.footer__rule { height: 1px; background: var(--c-border-dark); }

.footer__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 13px;
  color: #717E89; /* design #6E7A85 — 4.32:1, lightened to 4.55:1 */
}

.stickybar {
  position: fixed;
  inset: auto 0 0;
  z-index: 50;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 22px;
  padding: 12px clamp(16px, 3vw, 40px);
  padding-bottom: calc(12px + env(safe-area-inset-bottom));
  background: rgba(18, 24, 31, .97);
  border-top: 1px solid rgba(255, 255, 255, .1);
}

/* On desktop the bar is one centred row, so the wrapper must not create a
   box of its own — the two paragraphs become direct flex items. Below 900px
   it turns into a real flex column (see responsive.css). */
.stickybar__info { display: contents; }

.stickybar__salary {
  color: #F4F2EE;
  font-size: 15px;
}

.stickybar__value {
  display: inline-block;
  font-size: 21px;
  font-weight: 800;
  letter-spacing: -.02em;
}

.stickybar__where {
  color: #7E8B96;
  font-size: 14px;
}
