:root {
  --ink: #171512;
  --muted: #5c554e;
  --paper: #f7f3ed;
  --panel: #ffffff;
  --steel: #27323a;
  --safety: #f2b705;
  --brick: #b84a2f;
  --whatsapp: #22c55e;
  --brand-dark: #111827;
  --line: rgba(23, 21, 18, 0.16);
  --shadow: 0 18px 50px rgba(23, 21, 18, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
}

.topbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 64px;
  padding: 12px clamp(16px, 4vw, 48px);
  color: #fff;
  background: rgba(16, 18, 18, 0.66);
  backdrop-filter: blur(14px);
}

.topbar-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-height: 40px;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: var(--brand-dark);
  background: linear-gradient(135deg, #ffe08a 0%, var(--safety) 46%, #f2752a 100%);
  box-shadow: 0 12px 30px rgba(242, 183, 5, 0.22);
  font-weight: 800;
  letter-spacing: 0;
}

.brand span {
  font-weight: 950;
}

.brand strong {
  color: #fff;
  text-shadow: 0 1px 12px rgba(17, 24, 39, 0.38);
}

nav {
  display: flex;
  gap: clamp(10px, 3vw, 26px);
  font-size: 14px;
  font-weight: 700;
}

nav a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
}

.language-switch {
  display: inline-flex;
  padding: 3px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
}

.lang-btn {
  min-width: 44px;
  min-height: 36px;
  border: 0;
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.76);
  background: transparent;
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
}

.lang-btn.active {
  color: var(--ink);
  background: #fff;
}

.hero {
  position: relative;
  min-height: 92svh;
  overflow: hidden;
  display: grid;
  align-items: end;
  padding: 108px clamp(16px, 5vw, 72px) 64px;
  color: #fff;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(12, 14, 14, 0.88) 0%, rgba(12, 14, 14, 0.62) 42%, rgba(12, 14, 14, 0.16) 100%),
    linear-gradient(0deg, rgba(12, 14, 14, 0.68) 0%, rgba(12, 14, 14, 0) 58%);
}

.hero-content {
  position: relative;
  width: min(720px, 100%);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--safety);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--brick);
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  max-width: 13ch;
  font-size: clamp(42px, 8vw, 86px);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(28px, 5vw, 48px);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 10px;
  font-size: 20px;
}

.lead {
  max-width: 640px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(18px, 3vw, 23px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 900;
  box-shadow: none;
}

.button.primary {
  color: var(--ink);
  background: var(--safety);
}

.button.secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.44);
  background: rgba(255, 255, 255, 0.12);
}

.section {
  padding: clamp(32px, 4.5vw, 56px) clamp(16px, 5vw, 72px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(240px, 0.55fr) minmax(0, 1.45fr);
  gap: clamp(16px, 3vw, 34px);
  align-items: start;
  background: var(--paper);
}

.section-copy p,
.language-band p,
.contact p {
  max-width: 760px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.vacancy-list article,
.contact-box {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 8px 28px rgba(23, 21, 18, 0.07);
}

.vacancy-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.vacancy-list article {
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding: 14px;
}

.vacancy-list h3 {
  margin-bottom: 0;
}

.vacancy-list p {
  margin: 0;
  color: var(--muted);
}

.rate {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 8px;
  color: var(--ink);
  background: var(--safety);
  font-size: 15px;
  font-weight: 950;
}

.benefits {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 1.1fr);
  gap: clamp(16px, 3vw, 34px);
  align-items: start;
  background: var(--paper);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.benefits-grid div {
  min-height: 72px;
  display: flex;
  align-items: flex-end;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(39, 50, 58, 0.94), rgba(39, 50, 58, 0.76)),
    linear-gradient(135deg, var(--brick), var(--safety));
  box-shadow: 0 8px 28px rgba(23, 21, 18, 0.09);
}

.benefits-grid div:nth-child(5) {
  grid-column: 1 / -1;
  min-height: 64px;
  color: var(--ink);
  background: linear-gradient(135deg, #ffe08a 0%, var(--safety) 62%, #f2752a 100%);
}

.benefits-grid strong {
  font-size: 18px;
  line-height: 1.2;
}

.language-band {
  color: #fff;
  background: var(--steel);
}

.language-band h2 {
  max-width: 920px;
}

.language-band p {
  color: rgba(255, 255, 255, 0.82);
}

.contact {
  display: grid;
  grid-template-columns: minmax(160px, 240px) minmax(320px, 420px);
  justify-content: center;
  gap: clamp(20px, 3vw, 40px);
  align-items: center;
  background: var(--paper);
}

.contact .eyebrow {
  margin-bottom: 0;
}

.contact-box {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 16px;
  font-style: normal;
}

.whatsapp-card {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  min-height: 58px;
  padding: 10px 12px;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, #16a34a 0%, var(--whatsapp) 100%);
  box-shadow: 0 12px 24px rgba(34, 197, 94, 0.18);
}

.contact-box .whatsapp-icon {
  flex: 0 0 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin: 0;
  border-radius: 999px;
  background: #fff;
}

.whatsapp-icon img {
  display: block;
  width: 28px;
  height: 28px;
}

.whatsapp-card span {
  display: block;
  margin: 0;
}

.whatsapp-card strong {
  display: block;
  color: #fff;
}

.whatsapp-card strong {
  font-size: 16px;
  line-height: 1.15;
}

.call-card {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--steel);
  background: #fff;
  font-size: 16px;
  font-weight: 950;
}

footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 18px clamp(16px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.72);
  background: #151512;
  font-size: 14px;
}

@media (max-width: 820px) {
  .topbar {
    align-items: stretch;
    flex-direction: column;
    min-height: 92px;
    padding: 8px 14px;
  }

  .topbar-main {
    width: 100%;
  }

  nav {
    justify-content: space-between;
    gap: 8px;
  }

  nav a {
    min-height: 28px;
  }

  .hero {
    min-height: auto;
    padding-top: 118px;
    padding-bottom: 34px;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(12, 14, 14, 0.9) 0%, rgba(12, 14, 14, 0.58) 100%),
      linear-gradient(0deg, rgba(12, 14, 14, 0.7) 0%, rgba(12, 14, 14, 0) 62%);
  }

  h1 {
    max-width: 12ch;
    font-size: clamp(36px, 10vw, 58px);
    line-height: 1;
  }

  h2 {
    font-size: clamp(25px, 7vw, 36px);
  }

  .lead {
    margin-top: 16px;
  }

  .hero-actions {
    gap: 10px;
    margin-top: 18px;
  }

  .hero-actions .button {
    flex: 1 1 145px;
  }

  .section {
    padding: 22px 16px;
  }

  .section-copy p,
  .language-band p,
  .contact p {
    margin-top: 10px;
    font-size: 16px;
  }

  .intro,
  .benefits,
  .contact {
    gap: 12px;
  }

  .intro,
  .benefits,
  .contact {
    grid-template-columns: 1fr;
  }

  .vacancy-list {
    grid-template-columns: 1fr;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .vacancy-list article {
    gap: 6px;
    padding: 12px;
  }

  .benefits-grid {
    gap: 8px;
  }

  .benefits-grid div,
  .benefits-grid div:nth-child(5) {
    min-height: auto;
    align-items: center;
    padding: 9px 12px 9px 36px;
    position: relative;
    color: var(--ink);
    background: #fff;
  }

  .benefits-grid div::before {
    content: "";
    position: absolute;
    left: 14px;
    top: 50%;
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: var(--safety);
    transform: translateY(-50%);
  }

  .benefits-grid strong {
    font-size: 16px;
  }

  .benefits-grid div:nth-child(5) {
    grid-column: auto;
  }

  .contact-box {
    padding: 12px;
  }
}

@media (max-width: 430px) {
  .brand {
    min-height: 32px;
    font-size: 15px;
    padding: 6px 9px;
  }

  .topbar {
    gap: 5px;
  }

  nav {
    font-size: 13px;
  }

  nav a {
    min-height: 24px;
  }

  .lang-btn {
    min-width: 40px;
    min-height: 32px;
  }

  .language-switch {
    align-self: center;
  }

  .hero {
    padding-left: 14px;
    padding-right: 14px;
    padding-top: 116px;
    padding-bottom: 28px;
  }

  .lead {
    font-size: 16px;
  }

  .button {
    min-height: 48px;
    width: 100%;
  }

  .whatsapp-card {
    grid-template-columns: 38px minmax(0, 1fr);
    min-height: 56px;
    padding: 9px 10px;
  }

  .contact-box .whatsapp-icon {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
  }

  .whatsapp-icon img {
    width: 27px;
    height: 27px;
  }
}
