/* Optima Travel — site chrome (header, footer, layout) */
*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --color-navy: #20486d;
  --color-navy-dark: #163a5c;
  --color-gold: #c7a96f;
  --color-gold-light: #d4bc8a;
  --color-sand: #efe6db;
  --color-sand-dark: #e5d9cb;
  --color-text: #43566b;
  --color-white: #ffffff;
  --font-display: "Forum", "Times New Roman", serif;
  --font-body: "Onest", Arial, Helvetica, sans-serif;
  --inner-hero-title-size: clamp(1.8rem, 3.5vw, 2.8rem);
  --container: min(100% - 48px, 1440px);
  --topbar-h: 36px;
  --header-main-h: 88px;
  --header-h: calc(var(--topbar-h) + var(--header-main-h));
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  overflow-x: clip;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  color: var(--color-text);
  background: var(--color-sand);
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: var(--color-navy);
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}

a:hover {
  color: var(--color-gold);
}

.page-container {
  width: var(--container);
  margin: 0 auto;
}

/* ── Header ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  max-width: 100vw;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid rgba(32, 72, 109, 0.08);
  box-shadow: 0 4px 24px rgba(32, 72, 109, 0.06);
}

.header-topbar {
  background: #20486d;
  color: #fff;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  line-height: 1;
}

.header-topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: var(--topbar-h);
  white-space: nowrap;
}

.header-topbar__contacts {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  overflow: hidden;
}

.topbar-contact {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #fff;
  text-decoration: none;
  flex-shrink: 0;
}

.topbar-contact:hover {
  color: #fff;
  opacity: 0.85;
}

.topbar-contact__label,
.topbar-contact__value,
.topbar-contact--email {
  color: #fff;
  white-space: nowrap;
}

.topbar-sep {
  color: rgba(255, 255, 255, 0.45);
  flex-shrink: 0;
  user-select: none;
}

.header-social {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  flex-shrink: 0;
}

.header-social--menu {
  display: none;
}

.header-social-block {
  display: none;
}

.nav-item__row {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.nav-item__toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--color-navy);
  cursor: pointer;
}

.nav-item__chevron {
  display: block;
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}

.header-social li {
  display: flex;
  line-height: 1;
}

.header-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
  padding: 0;
  color: #fff;
  font-size: 14px;
  line-height: 1;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.header-social a:hover {
  color: #fff;
  opacity: 0.75;
}

.header-social i {
  display: block;
  font-size: 20px;
  line-height: 1;
}

.site-header__main {
  background: rgba(255, 255, 255, 0.98);
}

.site-header__inner {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: var(--header-main-h);
  padding: 10px 0;
}

.site-logo {
  flex-shrink: 1;
  min-width: 0;
}

.site-logo img {
  display: block;
  width: min(220px, 42vw);
  height: auto;
}

.site-nav {
  flex: 1;
  display: flex;
  min-width: 0;
  justify-content: center;
}

.site-nav-anchor {
  display: none;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 6px 28px;
  margin: 0;
  padding: 0;
  list-style: none;
  max-width: 100%;
}

.main-nav a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-navy);
  padding: 8px 0;
  position: relative;
}

.main-nav > li > a::after,
.main-nav > li > .nav-item__row > a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 0;
  height: 2px;
  background: var(--color-gold);
  transition: width 0.25s ease;
}

.main-nav > li > a:hover::after,
.main-nav > li > .nav-item__row > a:hover::after,
.main-nav > li:hover > .nav-item__row > a::after,
.main-nav > li.active-parent > a::after,
.main-nav > li.active-parent > .nav-item__row > a::after,
.main-nav > li.active > a::after,
.main-nav > li.active > .nav-item__row > a::after {
  width: 100%;
}

.main-nav > li.active-parent > a,
.main-nav > li.active-parent > .nav-item__row > a,
.main-nav > li.active > a,
.main-nav > li.active > .nav-item__row > a {
  color: var(--color-gold);
}

.main-nav > li {
  position: relative;
}

.main-nav > li > .sub-nav,
.main-nav > li > .sub-nav-panel > .sub-nav,
.sub-nav > li > .sub-nav,
.sub-nav > li > .sub-nav-panel > .sub-nav {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 40;
  min-width: 240px;
  margin: 0;
  padding: 10px 0;
  list-style: none;
  background: var(--color-white);
  border: 1px solid rgba(32, 72, 109, 0.1);
  border-radius: 8px;
  box-shadow: 0 18px 40px rgba(32, 72, 109, 0.14);
  opacity: 0;
  visibility: hidden;
  transform: translateY(4px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.sub-nav-panel {
  display: contents;
}

.main-nav > li > .sub-nav::before,
.main-nav > li > .sub-nav-panel > .sub-nav::before,
.sub-nav > li > .sub-nav::before,
.sub-nav > li > .sub-nav-panel > .sub-nav::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
  height: 10px;
}

.sub-nav > li > .sub-nav,
.sub-nav > li > .sub-nav-panel > .sub-nav {
  top: -10px;
  left: calc(100% - 4px);
}

.main-nav > li.nav-item--has-children:hover > .sub-nav,
.main-nav > li.nav-item--has-children:focus-within > .sub-nav,
.main-nav > li.nav-item--has-children:hover > .sub-nav-panel > .sub-nav,
.main-nav > li.nav-item--has-children:focus-within > .sub-nav-panel > .sub-nav,
.sub-nav > li.nav-item--has-children:hover > .sub-nav,
.sub-nav > li.nav-item--has-children:focus-within > .sub-nav,
.sub-nav > li.nav-item--has-children:hover > .sub-nav-panel > .sub-nav,
.sub-nav > li.nav-item--has-children:focus-within > .sub-nav-panel > .sub-nav {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.sub-nav a {
  display: block;
  padding: 10px 18px;
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-navy);
  white-space: nowrap;
}

.sub-nav a::after {
  display: none;
}

.sub-nav > li > a:hover,
.sub-nav > li.active > a {
  background: rgba(32, 72, 109, 0.05);
  color: var(--color-gold);
}

.sub-nav > li.active-parent:not(.active) > a {
  color: var(--color-gold);
}

.sub-nav > li {
  position: relative;
}

.main-nav > li.nav-item--has-children .nav-item__row > a,
.sub-nav li.nav-item--has-children .nav-item__row > a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.main-nav > li.nav-item--has-children .nav-item__row > a::before,
.sub-nav li.nav-item--has-children .nav-item__row > a::before {
  content: "";
  order: 2;
  width: 0;
  height: 0;
  margin-left: 2px;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 5px solid currentColor;
  opacity: 0.65;
}

.sub-nav li.nav-item--has-children .nav-item__row > a::before {
  transform: rotate(-90deg);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border-radius: 999px;
  background: var(--color-sand);
  border: 1px solid rgba(32, 72, 109, 0.1);
}

.lang-switcher a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--color-navy);
}

.lang-switcher a:hover {
  background: rgba(32, 72, 109, 0.06);
  color: var(--color-navy);
}

.lang-switcher a.active {
  background: var(--color-navy);
  color: var(--color-white);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 32px;
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: var(--color-sand);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 0 auto;
  background: var(--color-navy);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── Main ── */
.site-main {
  min-height: 50vh;
}

/* ── Home hero ── */
.hero-section {
  position: relative;
  overflow: hidden;
}

.hero-media {
  position: relative;
}

.hero-bg {
  width: 100%;
  min-height: 520px;
  object-fit: cover;
}

.hero-inner {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: flex-start;
}

.hero-content {
  width: 100%;
  padding: 48px 0 40px;
}

.hero-title {
  margin: 0;
  max-width: 520px;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2rem, 5vw, 4.35rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  color: var(--color-navy);
}

.hero-title span {
  display: block;
}

.hero-logo {
  width: min(260px, 40vw);
  margin-top: 10px;
}

/* ── Home about ── */
.about-section {
  position: relative;
  padding: 84px 0 110px;
  background: var(--color-sand);
}

.about-copy {
  max-width: 470px;
  padding-left: clamp(0px, 8vw, 118px);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
}

.section-label img {
  width: 88px;
}

.section-label span {
  font-size: 0.75rem;
  letter-spacing: 0.42em;
  color: var(--color-gold);
}

.section-title {
  margin: 0 0 24px;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 0.95;
  color: var(--color-navy);
}

.about-copy p {
  margin: 0 0 18px;
  font-size: 1.02rem;
  line-height: 1.55;
  color: var(--color-text);
}

.foundation-block {
  margin-top: 46px;
}

.foundation-year {
  font-family: var(--font-display);
  font-size: 3rem;
  line-height: 1;
  color: var(--color-navy);
}

.foundation-text {
  margin-top: 6px;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  color: var(--color-text);
}

.focus-visual {
  position: relative;
  min-height: 460px;
}

.focus-ring {
  position: absolute;
  top: 8px;
  left: 88px;
  width: 232px;
}

.focus-person {
  position: absolute;
  right: 18px;
  bottom: -36px;
  width: min(470px, 100%);
}

.services-divider {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  border-top: 1px solid rgba(73, 95, 116, 0.35);
}

.services-pill {
  position: absolute;
  left: 50%;
  bottom: -18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 24px;
  border-radius: 999px;
  background: var(--color-sand);
  transform: translateX(-50%);
}

.services-pill img {
  width: 18px;
}

.services-pill span {
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.28em;
  color: #5f7284;
}

/* ── Inner pages ── */
.page-hero {
  padding: 56px 0 40px;
  background: linear-gradient(180deg, #fff 0%, var(--color-sand) 100%);
  border-bottom: 1px solid rgba(32, 72, 109, 0.08);
}

.page-hero__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: var(--inner-hero-title-size);
  font-weight: 400;
  color: var(--color-navy);
  letter-spacing: 0.02em;
}

.page-hero__crumbs {
  margin: 12px 0 0;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  color: var(--color-gold);
}

.page-hero__crumbs a {
  color: var(--color-text);
}

.page-body {
  padding: 48px 0 80px;
}

.page-body--home {
  padding-top: 24px;
  background: var(--color-sand);
  border-top: 1px solid rgba(32, 72, 109, 0.08);
}

.page-hero--inner {
  padding: 40px 0 28px;
  background: #fff;
}

.page-body--inner {
  padding-top: 32px;
}

.page-inner .country-sidebar:empty {
  display: none;
}

@media (min-width: 992px) {
  .page-inner .country-page__layout:has(.country-sidebar:empty) {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* ── Destinations page ── */
.page-hero--destinations {
  position: relative;
  min-height: 320px;
  padding: 72px 0 56px;
  background:
    linear-gradient(180deg, rgba(32, 72, 109, 0.55) 0%, rgba(32, 72, 109, 0.72) 100%),
    url('../images/countries/destinations-hero.jpg') center center / cover no-repeat;
  border-bottom: 0;
}

.page-hero--destinations .page-hero__title,
.page-hero--destinations .page-hero__lead,
.page-hero--destinations .page-hero__crumbs,
.page-hero--destinations .page-hero__crumbs a {
  color: #fff;
}

.page-hero--destinations .page-hero__crumbs {
  color: rgba(255, 255, 255, 0.88);
}

.page-hero__lead {
  margin: 0 0 10px;
  font-size: 1.05rem;
  line-height: 1.5;
  color: var(--color-text);
  max-width: 720px;
}

.destinations-intro {
  padding: 48px 0 24px;
  background: var(--color-white);
}

.destinations-page {
  padding: 48px 0 80px;
  background: var(--color-sand);
}

.destinations-page__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  align-items: start;
}

.destinations-page__main .activity-content-heading {
  margin-bottom: 20px;
}

.destinations-page__main .destinations-intro__text {
  margin-bottom: 36px;
}

.destinations-intro__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: start;
}

.section-kicker {
  margin: 0 0 8px;
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-gold);
}

.destinations-intro__title {
  margin: 0 0 16px;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 400;
  line-height: 1.05;
  color: var(--color-navy);
}

.destinations-intro__line,
.country-card__line {
  display: block;
  width: 50px;
  height: 2px;
  margin-bottom: 18px;
  background: var(--color-gold);
}

.destinations-intro__text {
  margin: 0;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--color-text);
  max-width: 620px;
}

.services-list {
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.services-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  font-size: 0.95rem;
  color: var(--color-text);
  border-bottom: 1px solid rgba(32, 72, 109, 0.08);
}

.services-list li:last-child {
  border-bottom: 0;
}

.services-list i {
  width: 18px;
  color: var(--color-gold);
  font-size: 0.9rem;
  text-align: center;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  background: var(--color-navy);
  color: var(--color-white);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.btn-primary:hover {
  background: var(--color-gold);
  color: var(--color-navy);
}

.countries-section {
  padding: 24px 0 80px;
  background: var(--color-sand);
}

.countries-section--inline {
  padding: 0;
  background: transparent;
}

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

.country-card {
  background: var(--color-white);
  box-shadow: 0 8px 32px rgba(32, 72, 109, 0.08);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.country-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(32, 72, 109, 0.12);
}

.country-card__link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.country-card__media {
  height: 220px;
  background-color: #d8dee6;
  background-size: cover;
  background-position: center;
}

.country-card__body {
  padding: 28px 32px 32px;
}

.country-card__title {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.2;
  color: var(--color-navy);
}

.country-card__text {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--color-text);
}

/* ── Activities page ── */
.page-hero--activities {
  position: relative;
  min-height: 320px;
  padding: 72px 0 56px;
  background:
    linear-gradient(180deg, rgba(32, 72, 109, 0.55) 0%, rgba(32, 72, 109, 0.72) 100%),
    url('../images/activities/activities-hero.jpg') center center / cover no-repeat;
  border-bottom: 0;
}

.page-hero--activities .page-hero__title,
.page-hero--activities .page-hero__crumbs,
.page-hero--activities .page-hero__crumbs a {
  color: #fff;
}

.page-hero--activities .page-hero__crumbs {
  color: rgba(255, 255, 255, 0.88);
}

.activities-section {
  padding: 40px 0 80px;
  background: #f4f6f8;
}

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

.activity-card {
  background: var(--color-white);
  border: 40px solid var(--color-white);
  box-shadow: 0 2px 0 rgba(32, 72, 109, 0.04);
  text-align: center;
}

.activity-card__image-link {
  display: block;
  overflow: hidden;
}

.activity-card__image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1000 / 262;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.activity-card:hover .activity-card__image {
  transform: scale(1.03);
}

.activity-card__body {
  padding: 30px 24px 24px;
}

.activity-card__kicker {
  margin: 0 0 8px;
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-text);
}

.activity-card__title {
  margin: 0 0 16px;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--color-navy);
}

.activity-card__line {
  display: block;
  width: 50px;
  height: 1px;
  margin: 0 auto 20px;
  background: var(--color-gold);
}

.activity-card__text {
  margin: 0 auto 28px;
  max-width: 520px;
  padding: 0 24px;
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--color-text);
}

.activity-card__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: var(--color-navy);
  color: var(--color-white);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.activity-card__btn:hover {
  background: var(--color-gold);
  color: var(--color-navy);
}

.activity-card__btn i {
  font-size: 0.9rem;
}

/* ── Services page ── */
.page-hero--services {
  position: relative;
  min-height: 320px;
  padding: 72px 0 56px;
  background:
    linear-gradient(180deg, rgba(32, 72, 109, 0.55) 0%, rgba(32, 72, 109, 0.72) 100%),
    url('../images/services/services-hero.jpg') center center / cover no-repeat;
  border-bottom: 0;
}

.page-hero--services .page-hero__title,
.page-hero--services .page-hero__lead,
.page-hero--services .page-hero__crumbs,
.page-hero--services .page-hero__crumbs a {
  color: #fff;
}

.page-hero--services .page-hero__crumbs {
  color: rgba(255, 255, 255, 0.88);
}

.page-hero__lead {
  margin: 0 0 12px;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gold);
}

.page-hero--services .page-hero__lead,
.page-hero--contact .page-hero__lead {
  color: rgba(255, 255, 255, 0.92);
}

.page-hero--contact {
  position: relative;
  min-height: 320px;
  padding: 72px 0 72px;
  background-color: var(--color-navy);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-bottom: 0;
}

.page-hero--contact .page-hero__title,
.page-hero--contact .page-hero__lead,
.page-hero--contact .page-hero__crumbs,
.page-hero--contact .page-hero__crumbs a {
  color: #fff;
}

.page-hero--contact .page-hero__crumbs {
  color: rgba(255, 255, 255, 0.88);
}

.services-section {
  padding: 60px 0 80px;
  background: #f4f6f8;
}

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

.service-card {
  background: var(--color-white);
  border: 1px solid rgba(32, 72, 109, 0.1);
  border-radius: 8px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.service-card:hover {
  transform: translateY(-3px);
  border-color: rgba(203, 170, 92, 0.45);
  box-shadow: 0 14px 32px rgba(32, 72, 109, 0.1);
}

.service-card__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  min-height: 210px;
  padding: 36px 28px 32px;
  color: inherit;
  text-decoration: none;
  text-align: center;
}

.service-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(32, 72, 109, 0.06);
  color: var(--color-gold);
  font-size: 1.7rem;
  transition: background 0.2s ease, color 0.2s ease;
}

.service-card:hover .service-card__icon {
  background: var(--color-navy);
  color: var(--color-white);
}

.service-card__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 400;
  line-height: 1.2;
  color: var(--color-navy);
}

.service-card__arrow {
  margin-top: auto;
  font-size: 0.85rem;
  color: var(--color-gold);
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.service-card:hover .service-card__arrow {
  opacity: 1;
  transform: translateX(0);
}

.page-body .fa,
.page-body .fas,
.page-body .far,
.page-body .fab,
.page-body .fa-solid,
.page-body .fa-regular,
.page-body .fa-brands {
  font-size: inherit;
  line-height: inherit;
}

/* ── Footer ── */
.site-footer {
  background: var(--color-navy);
  color: rgba(255, 255, 255, 0.85);
  padding: 64px 0 0;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.85);
}

.site-footer a:hover {
  color: var(--color-gold-light);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}

.footer-brand img {
  width: 200px;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.6;
  max-width: 280px;
  opacity: 0.8;
}

.footer-heading {
  margin: 0 0 18px;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gold);
}

.footer-nav {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-nav li + li {
  margin-top: 10px;
}

.footer-nav a {
  font-size: 0.9rem;
  letter-spacing: 0.04em;
}

.footer-contact p {
  margin: 0 0 10px;
  font-size: 0.9rem;
  line-height: 1.5;
}

.footer-contact__socials {
  display: flex;
  gap: 14px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.footer-contact__socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  font-size: 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 20px 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.82rem;
  opacity: 0.7;
}

.footer-bottom .lang-switcher {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
}

.footer-bottom .lang-switcher a {
  color: rgba(255, 255, 255, 0.9);
}

.footer-bottom .lang-switcher a.active {
  background: var(--color-gold);
  color: var(--color-navy);
}

/* ── Responsive ── */
@media (max-width: 1199.98px) {
  .about-copy {
    padding-left: 48px;
  }

  .focus-ring {
    left: 48px;
    width: 208px;
  }

  .focus-person {
    width: 410px;
  }

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

@media (max-width: 991.98px) {
  .destinations-intro__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .destinations-page {
    padding: 36px 0 64px;
  }

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

  .activities-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .activity-card {
    border-width: 24px;
  }

  .activity-card__text {
    padding: 0 8px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .country-card__media {
    height: 220px;
  }

  .header-topbar {
    font-size: 12px;
  }

  .topbar-contact__label {
    display: none;
  }

  .header-social--topbar {
    display: none;
  }

  .header-social-block {
    display: block;
    margin-top: auto;
    padding: 24px 4px 8px;
    border-top: 1px solid rgba(32, 72, 109, 0.1);
  }

  .header-social-block__title {
    margin: 0 0 14px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--color-navy);
  }

  .header-social-block__address {
    margin: 0 0 14px;
    font-size: 0.82rem;
    line-height: 1.45;
    color: var(--color-text);
  }

  .header-social--menu {
    display: flex;
    gap: 18px;
    margin: 0;
    padding: 0;
    border: 0;
  }

  .header-social--menu a {
    color: var(--color-navy);
  }

  .header-social--menu i {
    font-size: 22px;
  }

  .nav-toggle {
    display: flex;
  }

  .site-header__inner {
    gap: 10px;
  }

  .site-logo img {
    width: min(148px, 38vw);
  }

  .header-actions {
    gap: 8px;
  }

  .lang-switcher {
    gap: 2px;
    padding: 2px;
  }

  .lang-switcher a {
    min-width: 32px;
    padding: 5px 8px;
    font-size: 0.68rem;
  }

  .site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1200;
  }

  body {
    padding-top: var(--header-h);
  }

  .site-header,
  .site-header__main,
  .site-header__inner {
    overflow: visible;
  }

  .site-nav-anchor {
    display: none;
  }

  .site-nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    bottom: auto;
    z-index: 1190;
    display: none;
    flex-direction: column;
    justify-content: flex-start;
    width: 100%;
    max-width: 100vw;
    height: calc(100dvh - var(--header-h));
    max-height: calc(100dvh - var(--header-h));
    margin: 0;
    padding: 8px 16px 28px;
    background: var(--color-white);
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    box-shadow: 0 12px 32px rgba(32, 72, 109, 0.12);
  }

  .site-nav.is-open {
    display: flex;
  }

  body.nav-open {
    overflow: hidden;
    touch-action: none;
  }

  .main-nav {
    flex: 0 0 auto;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
  }

  .main-nav > li {
    border-radius: 0;
    background: transparent;
    border-bottom: 1px solid rgba(32, 72, 109, 0.1);
  }

  .main-nav > li.nav-item--open {
    background: transparent;
    border-bottom-color: transparent;
  }

  .nav-item--open > .nav-item__row {
    border-bottom: 1px solid rgba(32, 72, 109, 0.1);
  }

  .nav-item__row {
    display: flex;
    align-items: stretch;
    width: 100%;
    gap: 0;
    border-bottom: 0;
    min-height: 52px;
  }

  .main-nav > li > a,
  .nav-item__row > a {
    display: flex;
    flex: 1;
    align-items: center;
    min-width: 0;
    padding: 15px 8px 15px 4px;
    font-size: 0.88rem;
    letter-spacing: 0.1em;
    line-height: 1.25;
    border-bottom: 0;
  }

  .main-nav > li > a {
    min-height: 52px;
    padding: 15px 4px;
    border-bottom: 0;
  }

  .main-nav > li > a::after,
  .nav-item__row > a::before,
  .nav-item__row > a::after {
    display: none !important;
    content: none !important;
  }

  .nav-item__toggle {
    display: inline-flex;
    align-self: center;
    width: 44px;
    height: 44px;
    margin-right: 2px;
    border-radius: 0;
    background: transparent;
    color: var(--color-navy);
  }

  .nav-item__toggle:active {
    background: transparent;
    opacity: 0.65;
  }

  .nav-item__chevron {
    width: 7px;
    height: 7px;
    margin-top: -2px;
    border-right-width: 1.5px;
    border-bottom-width: 1.5px;
    transform: rotate(45deg);
    transition: transform 0.25s ease;
  }

  .nav-item--open > .nav-item__row .nav-item__chevron {
    margin-top: 2px;
    transform: rotate(225deg);
  }

  .main-nav > li.nav-item--has-children:hover > .sub-nav,
  .main-nav > li.nav-item--has-children:focus-within > .sub-nav,
  .main-nav > li.nav-item--has-children:hover > .sub-nav-panel > .sub-nav,
  .main-nav > li.nav-item--has-children:focus-within > .sub-nav-panel > .sub-nav,
  .sub-nav > li.nav-item--has-children:hover > .sub-nav,
  .sub-nav > li.nav-item--has-children:focus-within > .sub-nav,
  .sub-nav > li.nav-item--has-children:hover > .sub-nav-panel > .sub-nav,
  .sub-nav > li.nav-item--has-children:focus-within > .sub-nav-panel > .sub-nav {
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .sub-nav-panel {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.28s ease;
  }

  .nav-item--open > .sub-nav-panel {
    grid-template-rows: 1fr;
  }

  .main-nav > li > .sub-nav,
  .main-nav > li > .sub-nav-panel > .sub-nav,
  .sub-nav > li > .sub-nav,
  .sub-nav > li > .sub-nav-panel > .sub-nav {
    position: static !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    min-width: 0;
    min-height: 0;
    width: 100%;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    display: block !important;
    overflow: hidden;
    background: rgba(32, 72, 109, 0.035);
  }

  .main-nav > li > .sub-nav::before,
  .main-nav > li > .sub-nav-panel > .sub-nav::before,
  .sub-nav > li > .sub-nav::before,
  .sub-nav > li > .sub-nav-panel > .sub-nav::before {
    display: none !important;
    content: none !important;
  }

  .sub-nav > li {
    margin: 0;
    position: static;
    border-top: 1px solid rgba(32, 72, 109, 0.06);
  }

  .sub-nav > li:first-child {
    border-top: 0;
  }

  .sub-nav a,
  .sub-nav .nav-item__row > a {
    padding: 13px 14px 13px 18px;
    font-size: 0.8rem;
    letter-spacing: 0.06em;
    white-space: normal;
    border-radius: 0;
    border-bottom: 0;
    background: transparent;
  }

  .sub-nav .nav-item__row {
    min-height: 48px;
    border-bottom: 0;
  }

  .sub-nav .nav-item__toggle {
    width: 40px;
    height: 40px;
    margin-right: 6px;
    background: transparent;
  }

  .sub-nav a:hover,
  .sub-nav .nav-item__row > a:hover,
  .sub-nav > li.active > a,
  .sub-nav > li.active > .nav-item__row > a {
    background: rgba(32, 72, 109, 0.05);
    color: var(--color-navy);
  }

  .sub-nav > li > .sub-nav-panel > .sub-nav,
  .sub-nav > li > .sub-nav {
    margin: 0;
    padding: 0;
    border-left: 0;
    background: rgba(32, 72, 109, 0.05);
    box-shadow: inset 3px 0 0 var(--color-gold);
  }

  .sub-nav .sub-nav a,
  .sub-nav .sub-nav .nav-item__row > a {
    padding-left: 28px;
    font-size: 0.78rem;
    letter-spacing: 0.04em;
    text-transform: none;
  }

  .hero-bg {
    min-height: 430px;
  }

  .about-section {
    padding: 56px 0 96px;
  }

  .about-copy {
    padding-left: 0;
  }

  .focus-visual {
    min-height: 390px;
    margin-top: 36px;
  }

  .focus-ring {
    left: 50%;
    transform: translateX(-50%);
    width: 190px;
  }

  .focus-person {
    right: 50%;
    transform: translateX(50%);
    width: 360px;
  }
}

@media (max-width: 767.98px) {
  :root {
    --topbar-h: 34px;
    --header-main-h: 64px;
  }

  .header-topbar {
    font-size: 11px;
  }

  .header-topbar__inner {
    gap: 10px;
  }

  .header-topbar__contacts {
    gap: 6px;
  }

  .site-logo img {
    width: min(132px, 36vw);
  }

  .site-header__inner {
    min-height: var(--header-main-h);
    padding: 8px 0;
  }

  .hero-bg {
    min-height: 480px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

  .page-body {
    padding: 32px 0 56px;
  }
}

/* ── Country inner pages ── */
.page-country .site-main {
  background: var(--color-sand);
}

.country-slider {
  position: relative;
  overflow: hidden;
  background: var(--color-navy-dark);
}

.country-slider__track {
  position: relative;
  height: clamp(320px, 42vw, 520px);
  overflow: hidden;
}

.country-slider__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.55s ease, visibility 0.55s ease;
}

.country-slider__slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 1;
}

.country-slider__media {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transform: scale(1.02);
  transition: transform 0.7s ease;
}

.country-slider__slide.is-active .country-slider__media {
  transform: scale(1);
}

.country-slider__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(22, 58, 92, 0.35) 0%, rgba(22, 58, 92, 0.72) 100%);
}

.country-slider__content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-sizing: border-box;
  height: 100%;
  min-height: 0;
  padding: 48px 0 72px;
  color: #fff;
}

.country-slider__kicker {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  letter-spacing: 0.04em;
}

.country-slider__caption {
  margin: 0;
  max-width: 720px;
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  font-weight: 400;
  line-height: 1.55;
}

.country-slider__nav {
  position: absolute;
  left: 50%;
  bottom: 20px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: var(--container);
  transform: translateX(-50%);
}

.country-slider__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.country-slider__arrow:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.75);
}

.country-slider__dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.country-slider__dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.country-slider__dot.is-active {
  background: var(--color-gold);
  transform: scale(1.15);
}

.country-page {
  padding: 0 0 80px;
}

.country-page__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  align-items: start;
}

.country-sidebar {
  display: block;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.country-sidebar:empty {
  display: none;
}

.services-sidebar {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  background: #fff;
  border: 1px solid rgba(32, 72, 109, 0.08);
  box-shadow: 0 12px 40px rgba(32, 72, 109, 0.06);
}

.services-sidebar__title {
  margin: 0;
  padding: 18px 22px 14px;
  border-bottom: 1px solid rgba(32, 72, 109, 0.08);
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 400;
  line-height: 1.2;
  color: var(--color-navy);
}

.services-sidebar__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.services-sidebar__link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 22px;
  border-bottom: 1px solid rgba(32, 72, 109, 0.06);
  color: var(--color-navy);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.services-sidebar__item:last-child .services-sidebar__link {
  border-bottom: 0;
}

.services-sidebar__link i {
  width: 18px;
  color: var(--color-gold);
  text-align: center;
}

.services-sidebar__link:hover {
  background: rgba(199, 169, 111, 0.12);
  color: var(--color-navy);
}

.page-body--country {
  padding-top: 48px;
  padding-bottom: 0;
}

@media (min-width: 992px) {
  .country-page__layout {
    grid-template-columns: minmax(0, 1fr) min(300px, 28%);
    gap: 40px;
  }

  .country-sidebar {
    display: block;
    width: auto;
    position: sticky;
    top: calc(var(--header-h) + 24px);
    margin-top: 60px;
  }

  .destinations-page__layout {
    grid-template-columns: minmax(0, 1fr) min(300px, 28%);
    gap: 40px;
  }

  .page-destinations .country-sidebar {
    margin-top: 8px;
  }
}

@media (max-width: 991.98px) {
  .country-slider__track {
    height: clamp(280px, 58vw, 420px);
  }

  .country-slider__nav {
    position: static;
    transform: none;
    width: 100%;
    padding: 16px 24px 24px;
    background: var(--color-navy-dark);
  }

  .destinations-page__layout,
  .activity-page__layout,
  .country-page__layout {
    display: flex;
    flex-direction: column;
    gap: 28px;
  }

  .country-sidebar {
    width: 100%;
    max-width: 100%;
    position: static;
    margin-top: 0;
  }

  .services-sidebar {
    width: 100%;
  }

  .country-slider__content {
    padding: 28px 0 56px;
  }

  .country-slider__caption {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
  }
}

/* ── Activity inner pages ── */
.page-activity .site-main {
  background: var(--color-sand);
}

.activity-hero {
  position: relative;
  min-height: clamp(220px, 28vw, 320px);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.activity-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(22, 58, 92, 0.45) 0%, rgba(22, 58, 92, 0.72) 100%);
}

.activity-hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: clamp(220px, 28vw, 320px);
  padding: 32px 0 40px;
}

.activity-hero__title {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: var(--inner-hero-title-size);
  font-weight: 400;
  color: #fff;
  letter-spacing: 0.04em;
}

.activity-hero__crumbs {
  margin: 0;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.88);
}

.activity-hero__crumbs a {
  color: #fff;
}

.activity-hero--item {
  min-height: clamp(240px, 30vw, 360px);
}

.activity-hero--item .activity-hero__inner {
  min-height: clamp(240px, 30vw, 360px);
}

.page-item .site-main {
  background: var(--color-sand);
}

.activity-page {
  padding: 0 0 80px;
}

.activity-page__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  align-items: start;
}

.page-body--activity {
  padding-top: 40px;
}

@media (min-width: 992px) {
  .activity-page__layout {
    grid-template-columns: minmax(0, 1fr) min(300px, 28%);
    gap: 40px;
  }

  .page-activity .country-sidebar {
    display: block;
    position: sticky;
    top: calc(var(--header-h) + 24px);
    margin-top: 40px;
  }

  .page-activity .country-page__layout:has(.country-sidebar:empty),
  .page-activity .activity-page__layout:has(.country-sidebar:empty) {
    grid-template-columns: minmax(0, 1fr);
  }
}
