:root {
  --cream: #f3eee6;
  --cream-2: #ebe4d8;
  --paper: #f7f3ec;
  --ink: #1c1916;
  --ink-soft: #3a342e;
  --muted: #7a7268;
  --line: rgba(28, 25, 22, 0.1);
  --gold: #c4a46c;
  --gold-2: #a8884e;
  --gold-soft: #e8d7b5;
  --teal: #1f3533;
  --teal-2: #162826;
  --white: #fffcf7;
  --shadow: 0 18px 50px rgba(28, 25, 22, 0.1);
  --radius: 22px;
  --header: 88px;
  --font-serif: "Cormorant Garamond", "Times New Roman", serif;
  --font: "Outfit", system-ui, sans-serif;
  --max: 1220px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 80;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='.9'/%3E%3C/svg%3E");
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

h1,
h2,
h3,
.serif {
  font-family: var(--font-serif);
  font-weight: 500;
  letter-spacing: 0.01em;
}

.wrap {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold-2);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.title-block {
  text-align: center;
  margin-bottom: 40px;
}

.title-block h2 {
  margin: 0;
  font-size: clamp(32px, 4.4vw, 48px);
  line-height: 1.1;
}

.title-block::after {
  content: "";
  display: block;
  width: 22px;
  height: 16px;
  margin: 12px auto 0;
  background: center / contain no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23c4a46c'%3E%3Cpath d='M12 21s-7-4.35-7-10.2A4.4 4.4 0 0 1 12 7.2a4.4 4.4 0 0 1 7 3.6C19 16.65 12 21 12 21z'/%3E%3C/svg%3E");
}

.center-cta {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: 0.25s ease;
  white-space: nowrap;
}

.btn-gold {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #d8c08a, var(--gold) 45%, var(--gold-2));
  color: var(--ink);
  box-shadow: 0 8px 24px rgba(168, 136, 78, 0.28);
}

.btn-gold::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.42), transparent 70%);
  transform: translateX(-130%);
  transition: transform 0.6s ease;
}

.btn-gold:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
}

.btn-gold:hover::after {
  transform: translateX(130%);
}

.btn-dark {
  background: var(--teal);
  color: var(--cream);
}

.btn-dark:hover {
  background: var(--teal-2);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold-2);
}

.header {
  position: sticky;
  top: 0;
  z-index: 40;
  height: var(--header);
  display: flex;
  align-items: center;
  backdrop-filter: blur(16px);
  background: rgba(243, 238, 230, 0.86);
  border-bottom: 1px solid transparent;
  transition: 0.25s ease;
}

.header.is-scrolled {
  border-bottom-color: var(--line);
  background: rgba(243, 238, 230, 0.94);
}

.header-inner {
  width: min(1360px, calc(100% - 28px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand img {
  height: 76px;
  width: auto;
  object-fit: contain;
  background: transparent;
}

.nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 22px;
  flex-wrap: nowrap;
}

.nav a {
  padding: 6px 0;
  font-size: 14px;
  color: var(--ink-soft);
  border-radius: 0;
  transition: 0.2s ease;
  position: relative;
}

.nav a:hover,
.nav a.is-active {
  color: var(--ink);
  background: none;
}

.nav a.is-active::after,
.nav a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--gold);
}

.nav-drop {
  position: relative;
}

.nav-drop-list {
  display: none;
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 200px;
  max-height: 360px;
  overflow: auto;
  padding: 10px 0;
  background: var(--paper);
  border-radius: 16px;
  box-shadow: var(--shadow);
  z-index: 20;
}

.nav-drop-list a {
  display: block;
  padding: 8px 16px;
  font-size: 13px;
}

.nav-drop-list a::after {
  display: none;
}

.nav-drop:hover .nav-drop-list {
  display: block;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.icon-btn {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--teal);
}

.icon-btn svg {
  width: 18px;
  height: 18px;
  display: block;
  flex: 0 0 auto;
}

.icon-btn svg path {
  fill: currentColor;
}

.icon-btn:hover {
  border-color: var(--gold);
  color: var(--gold-2);
}

.burger {
  display: none;
  position: relative;
  cursor: pointer;
  z-index: 41;
}

.burger span {
  position: absolute;
  left: 12px;
  right: 12px;
  height: 1.6px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.28s ease, opacity 0.2s ease, top 0.28s ease;
}

.burger span:nth-child(1) {
  top: 15px;
}

.burger span:nth-child(2) {
  top: 20.5px;
}

.burger span:nth-child(3) {
  top: 26px;
}

.burger.is-open span:nth-child(1) {
  top: 20.5px;
  transform: rotate(45deg);
}

.burger.is-open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0.2);
}

.burger.is-open span:nth-child(3) {
  top: 20.5px;
  transform: rotate(-45deg);
}

.mobile-nav {
  display: none;
}

body.menu-open {
  overflow: hidden;
}

body.menu-open .float-bar {
  opacity: 0;
  pointer-events: none;
}

.hero {
  position: relative;
  height: 460px;
  min-height: 420px;
  max-height: 500px;
  display: grid;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 80% 12%;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    #f7f3ec 0%,
    rgba(247, 243, 236, 0.88) 18%,
    rgba(247, 243, 236, 0.42) 36%,
    rgba(247, 243, 236, 0.08) 52%,
    transparent 62%
  );
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.7fr;
  align-items: center;
  gap: 24px;
  padding: 28px 0 32px;
  height: 100%;
}

.hero-copy h1 {
  margin: 0 0 12px;
  font-size: clamp(28px, 3.2vw, 46px);
  line-height: 1.08;
  text-transform: none;
  max-width: 560px;
}

.hero-copy h1 em {
  font-family: "Great Vibes", cursive;
  font-style: normal;
  font-size: 0.86em;
  color: var(--gold-2);
  letter-spacing: 0;
}

.hero-copy p {
  max-width: 420px;
  color: var(--ink-soft);
  margin: 0 0 20px;
  font-size: 15px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-play {
  background: rgba(255, 252, 247, 0.72);
  color: var(--ink);
  border: 1px solid rgba(28, 25, 22, 0.16);
}

.btn-play::before {
  content: "";
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid currentColor;
  background: center / 7px 7px no-repeat
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%231c1916' d='M1 0v8l7-4z'/%3E%3C/svg%3E");
}

.hero-card {
  justify-self: end;
  align-self: end;
  margin-bottom: 8px;
  width: min(280px, 100%);
  padding: 14px 16px;
  border-radius: 16px;
  background: var(--teal);
  color: var(--cream);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
}

.faces {
  display: flex;
  margin-bottom: 10px;
}

.faces span {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid #1f3533;
  margin-left: -8px;
  background: center / cover no-repeat;
}

.faces span:first-child {
  margin-left: 0;
}

.hero-card strong {
  display: block;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.35;
}

.benefits-bar {
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.benefits {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  padding: 28px 0;
}

.benefit {
  text-align: center;
  padding: 8px 6px 18px;
}

.benefit .ico {
  width: 42px;
  height: 42px;
  margin: 0 auto 10px;
  color: var(--gold-2);
}

.benefit b {
  display: block;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.35;
}

.section {
  padding: 72px 0;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  margin-bottom: 28px;
}

.section-head h2 {
  margin: 8px 0 0;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1;
}

.carousel {
  position: relative;
}

.country-row {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(210px, 1fr);
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 4px 2px 14px;
  scrollbar-width: none;
}

.country-row::-webkit-scrollbar {
  display: none;
}

.arrow {
  position: absolute;
  top: 38%;
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}

.arrow[data-slide="-1"] {
  left: -12px;
}

.arrow[data-slide="1"] {
  right: -12px;
}

.country-card {
  scroll-snap-align: start;
  overflow: hidden;
  border-radius: 18px;
  background: var(--teal);
  color: #fff;
  min-height: 0;
}

.country-card .photo {
  height: 168px;
  overflow: hidden;
}

.country-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: static;
  transition: 0.6s ease;
}

.country-card:hover img {
  transform: scale(1.06);
}

.country-card .meta {
  position: static;
  padding: 16px 16px 18px;
}

.country-card h3 {
  margin: 0 0 8px;
  font-size: 26px;
  line-height: 1;
}

.country-card p {
  margin: 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.78);
  min-height: 38px;
}

.country-card .pay {
  margin-top: 12px;
  color: var(--gold-soft);
  font-size: 14px;
}

.grid-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

[data-countries-grid] {
  grid-template-columns: repeat(3, 1fr);
}

[data-countries-grid] .country-card .photo {
  height: 200px;
}

.how {
  background: var(--paper);
}

.steps {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  position: relative;
}

.steps::before {
  content: "";
  position: absolute;
  top: 27px;
  left: 7%;
  right: 7%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-soft), transparent);
}

.step {
  text-align: center;
  padding: 0 8px;
}

.step .num {
  width: 54px;
  height: 54px;
  margin: 0 auto 14px;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold-soft);
  border-radius: 50%;
  color: var(--gold-2);
  background: #fff;
  position: relative;
  z-index: 1;
}

.step .num svg {
  width: 24px;
  height: 24px;
}

.step b {
  display: block;
  margin-bottom: 6px;
}

.step p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.review-card,
.plain-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 10px 30px rgba(28, 25, 22, 0.04);
  border: 1px solid rgba(28, 25, 22, 0.04);
}

.reviews-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.review-card {
  text-align: center;
  padding: 28px 22px;
}

.review-top {
  display: grid;
  justify-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.avatar {
  width: 86px;
  height: 86px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--teal);
  color: var(--gold-soft);
  font-family: var(--font-serif);
  font-size: 34px;
}

.stars {
  color: var(--gold);
  letter-spacing: 2px;
  font-size: 13px;
}

.review-card p {
  margin: 0;
  color: var(--ink-soft);
}

.cta-band {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  color: var(--cream);
  display: grid;
  place-items: center;
}

.cta-band img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15, 28, 27, 0.88) 0%, rgba(15, 28, 27, 0.72) 48%, rgba(15, 28, 27, 0.45) 100%);
}

.cta-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: center;
  padding: 64px 0;
}

.cta-inner h2 {
  margin: 0 0 10px;
  font-size: clamp(36px, 5vw, 58px);
  line-height: 0.95;
}

.cta-points {
  display: grid;
  gap: 14px;
  font-size: 15px;
}

.cta-points div {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cta-points svg {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  color: var(--gold-soft);
}

.footer {
  margin-top: 0;
  padding: 48px 0 20px;
  background: var(--teal);
  color: var(--cream);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr 1.2fr;
  gap: 24px;
}

.socials {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
}

.socials .icon-btn {
  width: 48px;
  height: 48px;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.socials .icon-btn svg {
  width: 26px;
  height: 26px;
  display: block;
}

.socials .icon-btn path {
  fill: #fff;
}

.footer h4 {
  margin: 0 0 12px;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-soft);
  font-family: var(--font);
  font-weight: 500;
}

.footer a,
.footer p {
  display: block;
  margin: 0 0 8px;
  color: rgba(247, 243, 236, 0.82);
  font-size: 14px;
}

.footer .socials a,
.footer .icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
}

.footer .brand img {
  height: 92px;
  margin-left: -8px;
  mix-blend-mode: normal;
}

.footer .icon-btn {
  border-color: rgba(247, 243, 236, 0.28);
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.footer .icon-btn:hover {
  color: var(--gold-soft);
  border-color: var(--gold);
}

.legal {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 12px 28px;
  margin-top: 28px;
  padding-top: 16px;
  border-top: 1px solid rgba(247, 243, 236, 0.12);
  color: rgba(247, 243, 236, 0.55);
  font-size: 12px;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
}

.legal a,
.legal-links a {
  display: inline;
  margin: 0;
  color: rgba(247, 243, 236, 0.72);
}

.legal a:hover {
  color: var(--gold-soft);
}

.float-bar {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 50;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.float-bar a {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
  transition: transform 0.2s ease;
}

.float-bar a:hover {
  transform: translateY(-2px) scale(1.04);
}

.float-bar svg {
  width: 26px;
  height: 26px;
  display: block;
}

.float-bar .tg {
  background: #229ed9;
}

.float-bar .wa {
  background: #25d366;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: none;
  place-items: center;
  padding: 20px;
  background: rgba(18, 16, 14, 0.46);
}

.modal.open {
  display: grid;
}

.modal-card {
  width: min(520px, 100%);
  background: var(--paper);
  border-radius: 24px;
  padding: 28px;
  position: relative;
}

.modal-card h3 {
  margin: 0 0 8px;
  font-size: 36px;
}

.field {
  display: grid;
  gap: 6px;
  margin-bottom: 12px;
}

.field span {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 12px;
  padding: 12px 14px;
  outline: none;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--gold);
}

.form-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 6px;
}

.close-x {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 22px;
  color: var(--muted);
}

.page-hero {
  padding: 48px 0 20px;
}

.page-hero h1 {
  margin: 10px 0 12px;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 0.92;
}

.lead {
  max-width: 640px;
  color: var(--muted);
  font-size: 18px;
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
}

.split img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 28px;
}

.faq details {
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
}

.faq summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 18px;
  font-family: var(--font-serif);
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  color: var(--gold-2);
}

.faq details[open] summary::after {
  content: "–";
}

.faq p {
  color: var(--muted);
  max-width: 720px;
}

.vacancy {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr auto;
  gap: 12px;
  align-items: center;
  padding: 18px 20px;
  background: var(--white);
  border-radius: 18px;
  margin-bottom: 10px;
  border: 1px solid rgba(28, 25, 22, 0.05);
}

.country-hero {
  position: relative;
  min-height: 58vh;
  border-radius: 0 0 32px 32px;
  overflow: hidden;
  color: #fff;
  display: grid;
  align-items: end;
}

.country-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.country-hero .shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.15), rgba(16, 14, 12, 0.78));
}

.country-hero .wrap {
  position: relative;
  padding-bottom: 48px;
  padding-top: 140px;
}

.country-hero h1 {
  margin: 8px 0 8px;
  font-size: clamp(48px, 8vw, 84px);
  line-height: 0.9;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.chip {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(8px);
  font-size: 13px;
}

.list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.list li {
  padding: 10px 0 10px 28px;
  position: relative;
  border-bottom: 1px solid var(--line);
}

.list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  width: 8px;
  height: 8px;
  background: center / contain no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23c4a46c'%3E%3Cpath d='M12 21s-7-4.35-7-10.2A4.4 4.4 0 0 1 12 7.2a4.4 4.4 0 0 1 7 3.6C19 16.65 12 21 12 21z'/%3E%3C/svg%3E");
}

.post-card {
  overflow: hidden;
  padding: 0;
}

.post-card .body {
  padding: 22px;
}

.post-card .tag {
  color: var(--gold-2);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.article {
  max-width: 760px;
  margin: 0 auto;
  padding-bottom: 48px;
}

.article p {
  font-size: 18px;
  color: var(--ink-soft);
  line-height: 1.65;
}

.article h2 {
  font-size: 26px;
  margin: 32px 0 12px;
}

.article h3 {
  font-size: 18px;
  margin: 22px 0 8px;
  font-family: var(--font);
  font-weight: 600;
}

.article ul {
  margin: 0 0 16px;
  padding-left: 20px;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.6;
}

.article li {
  margin: 0 0 8px;
}

.article .doc-meta {
  color: var(--muted);
  font-size: 14px;
  margin-top: 0;
}

.filter-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.filter-row button {
  border: 1px solid var(--line);
  background: transparent;
  border-radius: 999px;
  padding: 8px 14px;
  cursor: pointer;
}

.filter-row button.is-on {
  background: var(--teal);
  color: var(--cream);
  border-color: var(--teal);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
}

.contact-box {
  padding: 28px;
  border-radius: 24px;
  background: var(--teal);
  color: var(--cream);
  min-height: 100%;
}

.contact-box a {
  color: var(--gold-soft);
}

.contact-box .btn {
  margin-top: 12px;
}

.club-empty {
  margin: 0 0 22px;
  padding: 22px 22px 20px;
  border: 1px dashed rgba(196, 164, 108, 0.55);
  border-radius: 18px;
  color: var(--muted);
  background:
    linear-gradient(180deg, rgba(255, 252, 247, 0.9), rgba(243, 238, 230, 0.7));
}

.club-empty .kicker {
  margin-bottom: 8px;
}

.club-empty p {
  margin: 0 0 14px;
  max-width: 52ch;
}

.club-empty .btn {
  min-height: 42px;
}

.ticker {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
  padding: 16px 0;
}

.ticker-track {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: ticker 42s linear infinite;
}

.ticker a {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  white-space: nowrap;
  color: var(--ink);
  opacity: 0.78;
}

.ticker a:hover {
  color: var(--gold-2);
  opacity: 1;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}

.photo img,
.country-hero img,
.hero img {
  animation: fadein 0.85s ease both;
}

@keyframes fadein {
  from { opacity: 0; }
  to { opacity: 1; }
}

.split .contact-box {
  min-height: auto;
}

.split h3 {
  margin: 28px 0 10px;
}

@media (max-width: 1280px) {
  :root {
    --header: 72px;
  }

  .nav,
  .header-actions .btn {
    display: none;
  }

  .header-actions a.icon-btn[aria-label="Telegram"] {
    display: none;
  }

  .burger {
    display: grid;
  }

  .header-inner {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .mobile-nav {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: var(--header) 0 0 0;
    background: var(--cream);
    z-index: 39;
    padding: 12px 20px 40px;
    gap: 4px;
    overflow: auto;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.28s ease, transform 0.32s ease, visibility 0.28s ease;
  }

  .mobile-nav.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }

  .mobile-nav a {
    padding: 14px 8px;
    font-size: 22px;
    font-family: var(--font-serif);
    border-bottom: 1px solid var(--line);
  }

  .mobile-nav .btn {
    margin-top: 18px;
    align-self: flex-start;
  }

  .hero-inner,
  .split,
  .cta-inner,
  .contact-grid,
  .footer-grid,
  .reviews-row {
    grid-template-columns: 1fr;
  }

  .hero {
    height: auto;
    min-height: 0;
    max-height: none;
    margin: 10px 14px 0;
    border-radius: 0;
    overflow: visible;
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .hero-bg {
    position: relative;
    inset: auto;
    height: 240px;
    flex: none;
    border-radius: 20px;
    overflow: hidden;
  }

  .hero-bg img {
    object-position: 78% 16%;
  }

  .hero-bg::after {
    background: linear-gradient(
      180deg,
      rgba(18, 16, 14, 0.08) 0%,
      rgba(18, 16, 14, 0.22) 100%
    );
  }

  .hero-inner {
    position: relative;
    z-index: 1;
    display: block;
    background: var(--cream);
    padding: 18px 2px 8px;
    height: auto;
    width: auto;
    margin-top: 4px;
  }

  .hero-copy h1 {
    font-size: 26px;
    max-width: none;
    color: var(--ink);
  }

  .hero-copy h1 em {
    color: var(--gold-2);
  }

  .hero-copy p {
    font-size: 14px;
    margin-bottom: 14px;
    max-width: none;
    color: var(--ink-soft);
  }

  .hero .btn-play {
    background: rgba(255, 252, 247, 0.72);
    color: var(--ink);
    border-color: rgba(28, 25, 22, 0.16);
  }

  .hero-card {
    position: static;
    width: auto;
    margin: 14px 0 0;
  }

  .steps::before {
    display: none;
  }

  .benefits,
  .steps,
  .grid-cards,
  [data-countries-grid] {
    grid-template-columns: repeat(2, 1fr);
  }

  .vacancy {
    grid-template-columns: 1fr;
  }

  .split img {
    height: 420px;
  }

  .brand img {
    height: 58px;
  }
}

@media (max-width: 720px) {
  .benefits,
  .steps,
  [data-countries-grid] {
    grid-template-columns: 1fr 1fr;
  }

  .grid-cards,
  .reviews-row {
    grid-template-columns: 1fr;
  }

  .arrow {
    display: none;
  }

  .wrap {
    width: min(var(--max), calc(100% - 28px));
  }

  .legal,
  .legal-links {
    flex-direction: column;
    gap: 10px;
  }

  .legal-links a {
    display: block;
  }

  .hero-copy h1 {
    font-size: 24px;
  }

  .hero-copy p {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .hero-actions {
    gap: 8px;
  }

  .hero-actions .btn {
    min-height: 42px;
    padding: 0 14px;
    font-size: 13px;
  }

  .hero-card {
    padding: 12px 14px;
  }

  .hero-card strong {
    font-size: 13px;
  }

  .benefits {
    padding: 18px 0;
    gap: 6px;
  }

  .benefit {
    padding: 4px 4px 10px;
  }

  .benefit .ico {
    width: 34px;
    height: 34px;
  }

  .benefit b {
    font-size: 12px;
  }

  .section {
    padding: 48px 0;
  }

  .country-card .photo {
    height: 140px;
  }

  .steps {
    gap: 16px 8px;
  }
}

.ticker:hover .ticker-track {
  animation-play-state: paused;
}

@media (prefers-reduced-motion: reduce) {
  .ticker-track,
  .photo img,
  .country-hero img,
  .hero img {
    animation: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
