:root {
  --brown: #7a3329;
  --brown-dark: #63261f;
  --gold: #f9aa18;
  --gold-deep: #ed9e12;
  --ink: #45464d;
  --muted: #60636b;
  --line: #e8e4df;
  --paper: #ffffff;
  --soft: #f8f5ef;
  --shadow: 0 16px 32px rgba(34, 22, 14, .16);
  --radius: 4px;
  --shell: 920px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Nunito Sans", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

button,
input,
select {
  font: inherit;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 30;
  transform: translateY(-140%);
  background: var(--brown);
  color: #fff;
  padding: 10px 14px;
  border-radius: 999px;
  text-decoration: none;
}

.skip-link:focus {
  transform: translateY(0);
}

.shell {
  width: min(var(--shell), calc(100% - 40px));
  margin-inline: auto;
}

.narrow {
  max-width: 700px;
}

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 10;
  padding-top: 34px;
}

.header-inner,
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand img {
  width: 290px;
  height: auto;
}

.site-footer img {
  width: 320px;
  height: auto;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 39px;
  gap: 10px;
  border-radius: 999px;
  border: 2px solid transparent;
  padding: 0 20px;
  font-weight: 800;
  font-size: 14px;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(122, 51, 41, .22);
}

.button-primary {
  background: var(--brown);
  border-color: var(--brown);
  color: #fff;
}

.button-outline {
  background: #fff;
  border-color: var(--brown);
  color: var(--brown);
}

.button-light {
  background: #fff;
  color: var(--brown);
}

.hero {
  position: relative;
  min-height: 705px;
  overflow: visible;
  padding-top: 170px;
  background: #fff;
  z-index: 1;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -92px;
  z-index: 0;
  width: 100%;
  height: 245px;
  background: var(--gold);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.leaf-watermark {
  position: absolute;
  left: 50%;
  top: -54px;
  width: 230px;
  opacity: .08;
  transform: translateX(-50%) scale(4.7);
  filter: saturate(.7);
  pointer-events: none;
}

.eyebrow {
  position: relative;
  z-index: 1;
  margin: 0 0 18px;
  color: var(--brown);
  font-size: clamp(1.38rem, 1rem + 1.6vw, 2rem);
  line-height: 1.1;
  font-weight: 900;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  position: relative;
  z-index: 1;
  max-width: 850px;
  margin: 0 auto 26px;
  color: #4b4c52;
  font-size: clamp(2.1rem, 1.3rem + 1.65vw, 2.7rem);
  line-height: 1.18;
  font-weight: 900;
  letter-spacing: 0;
}

.hero-actions {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  gap: 12px;
}

.photo-ribbon {
  position: absolute;
  left: 0;
  bottom: 15px;
  width: 100%;
  height: 245px;
  overflow: hidden;
  z-index: 3;
}

.photo-card {
  position: absolute;
  margin: 0;
  overflow: hidden;
  background: #fff;
  border: 8px solid #fff;
  box-shadow: var(--shadow);
}

.photo-card::after {
  content: "";
  position: absolute;
  inset: auto -8px -18px;
  height: 18px;
  background: var(--gold);
  z-index: -1;
}

.photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-far-left,
.photo-far-right {
  width: 180px;
  height: 170px;
  top: 60px;
  opacity: .72;
  z-index: 1;
}

.photo-far-left {
  left: -18px;
  transform: rotate(-1.4deg);
}

.photo-far-right {
  right: -18px;
  transform: rotate(1.4deg);
}

.photo-large-left {
  width: 300px;
  height: 195px;
  left: 123px;
  top: 18px;
  z-index: 2;
  transform: rotate(.45deg);
}

.photo-center {
  width: 305px;
  height: 170px;
  left: 50%;
  top: 70px;
  z-index: 3;
  transform: translateX(-50%) rotate(-.35deg);
}

.photo-large-right {
  width: 315px;
  height: 195px;
  right: 107px;
  top: 22px;
  z-index: 2;
  transform: rotate(.65deg);
}

.region-intro {
  position: relative;
  z-index: 0;
  background: var(--gold);
  padding: 128px 0 90px;
  text-align: center;
  overflow: visible;
  isolation: isolate;
}

.region-intro::before {
  content: "";
  position: absolute;
  left: 0;
  top: -178px;
  z-index: 0;
  width: 100%;
  height: 245px;
  background: var(--gold);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}

.region-intro::after {
  content: "";
  position: absolute;
  left: 7%;
  right: 7%;
  top: -18px;
  z-index: 0;
  height: 112px;
  background: rgba(255, 207, 71, .3);
}

.region-intro .shell {
  position: relative;
  z-index: 1;
}

.region-intro h2,
.final-cta h2 {
  color: #fff;
  font-size: clamp(2rem, 1.35rem + 2.7vw, 3.6rem);
  line-height: 1.13;
  font-weight: 900;
  text-shadow: 0 4px 10px rgba(83, 57, 24, .3);
}

.region-intro h2 {
  max-width: 780px;
  margin-inline: auto;
  font-size: clamp(2rem, 1.2rem + 2.25vw, 3.05rem);
}

.region-intro h2 span {
  display: block;
}

.region-intro p {
  max-width: 690px;
  margin: 22px auto 0;
  color: #171717;
  font-weight: 700;
}

.stats-band {
  position: relative;
  overflow: hidden;
  background: #783126;
  color: #fff;
  padding: 52px 0 50px;
}

.stats-band::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 260px;
  height: 236px;
  transform: translate(-50%, -50%);
  background: #a85d50;
  opacity: .28;
  clip-path: polygon(
    50% 0%,
    57% 24%,
    73% 13%,
    70% 34%,
    93% 28%,
    79% 46%,
    100% 55%,
    76% 62%,
    84% 82%,
    62% 75%,
    58% 100%,
    50% 84%,
    42% 100%,
    38% 75%,
    16% 82%,
    24% 62%,
    0% 55%,
    21% 46%,
    7% 28%,
    30% 34%,
    27% 13%,
    43% 24%
  );
}

.stats-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  text-align: center;
}

.stats-grid article {
  display: grid;
  gap: 8px;
}

.stats-grid strong {
  font-size: clamp(2rem, 1.4rem + 2.4vw, 3.1rem);
  line-height: 1;
  font-weight: 900;
  text-shadow: 0 4px 8px rgba(0, 0, 0, .24);
}

.stats-grid span {
  max-width: 170px;
  margin-inline: auto;
  font-weight: 800;
  line-height: 1.25;
}

.video-band {
  position: relative;
  min-height: 350px;
  overflow: hidden;
}

.video-band img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  filter: saturate(.88) brightness(.78);
}

.play-button {
  position: absolute;
  left: 50%;
  top: 50%;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  transform: translate(-50%, -50%);
  min-height: 45px;
  border: 0;
  border-radius: 999px;
  background: #fff;
  color: #333;
  padding: 0 20px;
  font-weight: 800;
  box-shadow: 0 12px 24px rgba(0, 0, 0, .22);
  cursor: pointer;
}

.play-button span {
  display: grid;
  place-items: center;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  font-size: 11px;
}

.city-section {
  position: relative;
  overflow: hidden;
  background: #fff;
  padding-top: 94px;
}

.city-copy {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 95px;
  align-items: start;
}

.city-copy h2,
.split-copy h2 {
  color: var(--brown);
  font-size: clamp(2rem, 1.3rem + 2.2vw, 3.25rem);
  line-height: 1.18;
  font-weight: 900;
}

.city-copy p,
.split-copy p,
.split-copy li {
  color: #27282d;
  font-size: 1.05rem;
}

.arrows {
  display: flex;
  gap: 32px;
  margin-top: 30px;
  color: var(--brown);
  font-size: 30px;
}

.arrows span:first-child {
  opacity: .22;
}

.city-wave {
  position: relative;
  margin-top: 72px;
  padding: 0 0 142px;
  overflow: hidden;
  background: var(--gold);
}

.city-wave::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -116px;
  width: 150vw;
  height: 205px;
  transform: translateX(-50%);
  background: #fff;
  border-radius: 50%;
}

.city-wave::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -86px;
  width: 150vw;
  height: 175px;
  transform: translateX(-50%);
  background: #fff;
  border-radius: 50%;
}

.city-cards {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 840px;
}

.city-card {
  min-height: 255px;
  background: #fff;
  border: 1px solid #e5dfd8;
  padding: 30px 24px 24px;
  box-shadow: 0 10px 18px rgba(93, 57, 25, .16);
}

.card-icon {
  display: block;
  width: 28px;
  height: 28px;
  margin-bottom: 22px;
  border: 3px dashed var(--gold);
  border-radius: 50%;
}

.city-card h3 {
  margin-bottom: 6px;
  color: var(--brown);
  font-size: 1.55rem;
  line-height: 1.1;
  font-weight: 900;
}

.city-card p {
  margin-bottom: 16px;
  color: #202125;
  font-size: .95rem;
  line-height: 1.55;
}

.city-card a {
  color: var(--brown);
  font-weight: 800;
  text-decoration: none;
}

.split-section {
  background: #fff;
  padding: 122px 0;
}

.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 76px;
  align-items: center;
}

.split-grid.reverse {
  grid-template-columns: 1.08fr .92fr;
}

.split-copy h2 {
  max-width: 520px;
}

.split-copy h3 {
  margin: 34px 0 8px;
  color: #1e1f23;
  font-size: 1.22rem;
  line-height: 1.5;
  font-weight: 900;
}

.split-copy ul {
  margin: 0;
  padding-left: 22px;
}

.stacked-photos {
  position: relative;
  min-height: 360px;
}

.stacked-photos img {
  position: absolute;
  width: 310px;
  height: 245px;
  object-fit: cover;
  border: 9px solid #fff;
  box-shadow: var(--shadow);
}

.stacked-photos .tilt-left {
  left: 12%;
  top: 88px;
  transform: rotate(-5deg);
}

.stacked-photos .tilt-right {
  left: 34%;
  top: 20px;
  transform: rotate(5deg);
}

.stacked-photos .flag-photo {
  width: 240px;
  height: 330px;
  object-position: center;
}

.safety {
  padding-top: 70px;
}

.final-cta {
  position: relative;
  overflow: hidden;
  background: var(--brown);
  color: #fff;
  text-align: center;
  padding: 140px 0 130px;
}

.final-cta .shell {
  position: relative;
}

.leaf-cta {
  position: absolute;
  left: 50%;
  top: -78px;
  width: 260px;
  opacity: .06;
  transform: translateX(-50%) scale(5);
}

.final-cta h2 {
  max-width: 590px;
  margin-inline: auto;
}

.final-cta p {
  max-width: 650px;
  margin: 20px auto 30px;
  color: #fff;
  font-weight: 800;
}

.site-footer {
  padding: 58px 0;
  background: #fff;
}

.footer-links {
  display: grid;
  gap: 18px;
  justify-items: end;
}

.socials {
  display: flex;
  gap: 14px;
}

.socials a {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border: 2px solid #191919;
  border-radius: 4px;
  color: #191919;
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
}

.footer-links nav {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #171717;
  font-size: .95rem;
}

.footer-links nav a {
  text-decoration: none;
}

.modal-close {
  position: absolute;
  right: 18px;
  top: 16px;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: #222;
  font-size: 23px;
  cursor: pointer;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  justify-items: end;
  background: rgba(249, 170, 24, .78);
  backdrop-filter: blur(9px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s ease, visibility .25s ease;
}

.modal.is-open {
  opacity: 1;
  visibility: visible;
}

.modal-scrim {
  position: absolute;
  inset: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.apply-panel {
  position: relative;
  z-index: 1;
  width: min(430px, 100%);
  min-height: 100vh;
  margin-right: max(0px, calc((100vw - 1200px) / 2));
  background: #fff;
  border-left: 7px solid var(--gold);
  padding: 74px 58px 44px;
  transform: translateX(42px);
  transition: transform .28s ease;
}

.modal.is-open .apply-panel {
  transform: translateX(0);
}

.apply-panel h2 {
  margin-bottom: 30px;
  color: var(--brown);
  font-size: clamp(2rem, 1.5rem + 1.9vw, 3rem);
  line-height: 1.12;
  font-weight: 900;
}

.lead-form {
  display: grid;
  gap: 14px;
}

.lead-form label {
  display: grid;
  gap: 5px;
  color: #141414;
  font-size: .92rem;
  font-weight: 800;
}

.lead-form input,
.lead-form select {
  width: 100%;
  min-height: 35px;
  border: 1px solid #a9a9a9;
  border-radius: 0;
  background: #f5f5f5;
  padding: 7px 11px;
  color: #222;
  font-size: .92rem;
}

.lead-form input:focus,
.lead-form select:focus {
  outline: 3px solid rgba(249, 170, 24, .28);
  border-color: var(--brown);
}

.company-field {
  position: absolute;
  left: 0;
  top: 0;
  width: 1px !important;
  height: 1px !important;
  opacity: 0;
  pointer-events: none;
}

.form-note {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: .78rem;
  line-height: 1.45;
}

.form-status {
  min-height: 20px;
  color: var(--brown);
  font-size: .88rem;
  font-weight: 800;
}

.form-submit {
  justify-self: end;
  margin-top: 2px;
  min-width: 126px;
}

[data-animate] {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .75s ease, transform .75s ease;
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

body.modal-open {
  overflow: hidden;
}

@media (max-width: 960px) {
  .site-header {
    padding-top: 24px;
  }

  .brand img,
  .site-footer img {
    width: 190px;
  }

  .hero {
    min-height: 650px;
    padding-top: 150px;
  }

  .photo-ribbon {
    width: min(920px, 100vw);
    transform-origin: center bottom;
  }

  .stats-grid,
  .city-copy,
  .city-cards,
  .split-grid,
  .split-grid.reverse {
    grid-template-columns: 1fr 1fr;
  }

  .city-copy {
    gap: 36px;
  }

  .city-cards {
    max-width: none;
  }

  .city-card:last-child {
    grid-column: 1 / -1;
  }

  .split-grid,
  .split-grid.reverse {
    gap: 36px;
  }

  .stacked-photos img {
    width: 250px;
    height: 210px;
  }
}

@media (max-width: 720px) {
  .shell {
    width: min(100% - 28px, var(--shell));
  }

  .header-inner {
    gap: 12px;
  }

  .brand img {
    width: 165px;
  }

  .header-nav {
    gap: 8px;
  }

  .site-header .button-primary {
    min-height: 36px;
    padding-inline: 14px;
    font-size: .82rem;
  }

  .hero {
    min-height: 755px;
    padding-top: 138px;
  }

  h1 {
    max-width: 520px;
    font-size: clamp(2.15rem, 10.2vw, 2.85rem);
    line-height: 1.14;
  }

  .eyebrow {
    font-size: 1.45rem;
  }

  .hero-actions {
    flex-wrap: wrap;
  }

  .photo-ribbon {
    left: 0;
    bottom: -42px;
    width: 100vw;
    height: 235px;
    overflow: hidden;
    transform: none;
  }

  .photo-card {
    border-width: 6px;
  }

  .photo-far-left,
  .photo-far-right {
    top: 92px;
    width: 70px;
    height: 118px;
    opacity: .72;
    z-index: 0;
  }

  .photo-far-left {
    left: 0;
    object-position: right center;
    transform: none;
  }

  .photo-far-right {
    right: 0;
    object-position: left center;
    transform: none;
  }

  .photo-large-left,
  .photo-large-right {
    top: 44px;
    width: 152px;
    height: 116px;
    z-index: 1;
  }

  .photo-large-left {
    left: 28px;
    transform: rotate(.35deg);
  }

  .photo-large-right {
    right: 28px;
    transform: rotate(.35deg);
  }

  .photo-center {
    left: 50%;
    top: 117px;
    width: 165px;
    height: 112px;
    transform: translateX(-50%) rotate(-.3deg);
    z-index: 2;
  }

  .leaf-watermark,
  .leaf-cta {
    display: none;
  }

  .region-intro {
    padding: 112px 0 78px;
  }

  .region-intro::before {
    top: -115px;
    width: 155vw;
    height: 168px;
  }

  .region-intro::after {
    left: 0;
    right: 0;
    top: -6px;
    height: 78px;
  }

  .stats-grid,
  .city-copy,
  .city-cards,
  .split-grid,
  .split-grid.reverse {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    gap: 34px;
  }

  .city-section {
    padding-top: 70px;
  }

  .city-wave {
    margin-top: 40px;
    padding-bottom: 86px;
  }

  .city-wave::before {
    top: 140px;
    height: 760px;
  }

  .city-card:last-child {
    grid-column: auto;
  }

  .split-section {
    padding: 86px 0;
  }

  .stacked-photos {
    min-height: 310px;
  }

  .stacked-photos img {
    width: 230px;
    height: 190px;
  }

  .stacked-photos .tilt-left {
    left: 6%;
  }

  .stacked-photos .tilt-right {
    left: 30%;
  }

  .final-cta {
    padding: 110px 0 104px;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-links {
    justify-items: start;
  }

  .footer-links nav {
    flex-wrap: wrap;
  }

  .apply-panel {
    width: 100%;
    padding: 68px 28px 36px;
    border-left: 0;
    border-top: 7px solid var(--gold);
    transform: none;
  }
}

@media (max-width: 460px) {
  .site-header .button-primary span {
    display: none;
  }

  .hero {
    min-height: 740px;
  }

  .photo-ribbon {
    transform: none;
  }

  .region-intro h2,
  .final-cta h2 {
    font-size: 2.4rem;
  }

  .split-copy h2,
  .city-copy h2 {
    font-size: 2.2rem;
  }

  .stacked-photos .tilt-left {
    left: 0;
  }

  .stacked-photos .tilt-right {
    left: 24%;
  }
}

/* Reference-aligned layout from the supplied Figma section screenshots. */
main {
  display: flex;
  flex-direction: column;
}

.hero { order: 1; }
.stats-band { order: 2; }
.region-intro { order: 3; }
.video-band { order: 4; }
.city-section { order: 5; }
.homestay { order: 6; }
.safety { order: 7; }
.final-cta { order: 8; }

:root {
  --shell: 950px;
  --figma-gray: #56595d;
}

.site-header {
  padding-top: 31px;
}

.site-header .shell,
.hero-content {
  width: min(630px, calc(100% - 48px));
  margin-left: clamp(24px, 16.7vw, 240px);
  margin-right: 0;
}

.site-header .shell {
  width: min(608px, calc(100% - 48px));
  margin-left: clamp(24px, 14.55vw, 210px);
}

.site-header .header-inner {
  gap: 18px;
}

.brand img {
  width: 336px;
}

.site-footer img {
  width: 320px;
}

.header-nav {
  gap: 10px;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 2px;
  border: 1px solid rgba(122, 51, 41, .22);
  border-radius: 999px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 8px 18px rgba(34, 22, 14, .08);
}

.language-switch a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  min-height: 28px;
  padding: 0 6px;
  border-radius: 999px;
  color: var(--brown);
  font-size: .74rem;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  transition: background .2s ease, color .2s ease, box-shadow .2s ease;
}

.language-switch a:hover,
.language-switch a:focus-visible {
  background: rgba(249, 170, 24, .22);
}

.language-switch a.is-active {
  background: var(--gold);
  color: var(--brown-dark);
  box-shadow: 0 3px 8px rgba(91, 48, 26, .14);
}

.site-header .button-primary {
  min-width: 0;
  padding-inline: 12px;
  font-size: .82rem;
  white-space: nowrap;
}

.menu-button {
  border: 0;
  background: transparent;
  color: #4b4c52;
  padding: 8px 4px;
  font-weight: 700;
  cursor: pointer;
}

.menu-panel {
  position: fixed;
  right: 24px;
  top: 24px;
  z-index: 50;
  display: grid;
  gap: 12px;
  width: min(330px, calc(100% - 48px));
  padding: 30px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(35, 21, 13, .24);
  transform: translateY(-16px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .24s ease, transform .24s ease, visibility .24s ease;
}

.menu-panel.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.menu-panel a,
.menu-panel button {
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: var(--brown);
  padding: 12px 0;
  text-align: left;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}

.menu-close {
  position: absolute;
  right: 18px;
  top: 16px;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: #222;
  font-size: 23px;
  cursor: pointer;
}

.hero {
  min-height: 740px;
  padding-top: 0;
  overflow: hidden;
  background: #fff;
}

.hero::after,
.photo-ribbon,
.leaf-watermark {
  display: none;
}

.hero-content {
  z-index: 2;
  padding-top: 206px;
  text-align: left;
}

.hero-copy {
  max-width: 540px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--brown);
  font-size: 2rem;
}

h1 {
  max-width: 540px;
  margin: 0 0 22px;
  color: #55575d;
  font-size: clamp(3rem, 3.45vw, 4rem);
  line-height: 1.22;
  text-align: left;
}

.hero-actions {
  justify-content: flex-start;
}

.hero-media {
  position: absolute;
  inset: 0 0 0 auto;
  width: max(38%, 470px);
  background: var(--gold);
  overflow: hidden;
  z-index: 1;
}

.hero-gallery {
  position: absolute;
  left: 30px;
  top: -12px;
  width: 468px;
  height: 790px;
}

.hero-shot {
  position: absolute;
  margin: 0;
  overflow: hidden;
  background: #fff;
  border: 8px solid #fff;
  box-shadow: 0 12px 24px rgba(34, 22, 14, .16);
}

.hero-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shot-a { left: 0; top: -4px; width: 225px; height: 220px; }
.hero-shot-b { left: 240px; top: -20px; width: 225px; height: 250px; }
.hero-shot-c { left: 0; top: 236px; width: 225px; height: 260px; }
.hero-shot-d { left: 240px; top: 264px; width: 225px; height: 260px; }
.hero-shot-e { left: 0; top: 520px; width: 225px; height: 230px; }
.hero-shot-f { left: 240px; top: 548px; width: 225px; height: 245px; }

.hero-shot-a img { object-position: 29% 50%; }
.hero-shot-d img { object-position: 76% 50%; }
.hero-shot-e img { object-position: 50% 45%; }

.stats-band {
  position: relative;
  overflow: hidden;
  min-height: 235px;
  display: grid;
  align-items: center;
  background: var(--figma-gray);
  color: #fff;
  padding: 0;
}

.stats-band::before {
  display: none;
}

.stats-grid {
  max-width: 980px;
  gap: 70px;
}

.stats-grid strong {
  font-size: 2.65rem;
  text-shadow: 0 5px 9px rgba(0, 0, 0, .35);
}

.stats-grid span {
  max-width: 190px;
  font-size: 1.05rem;
}

.region-intro {
  overflow: hidden;
  background: #fff;
  padding: 84px 0 96px;
}

.region-intro::before,
.region-intro::after {
  display: none;
}

.intro-layout {
  display: grid;
  grid-template-columns: 425px 1fr;
  gap: 58px;
  align-items: center;
}

.intro-photos {
  position: relative;
  min-height: 500px;
}

.intro-photo {
  position: absolute;
  margin: 0;
  overflow: hidden;
  background: #fff;
  border: 9px solid #fff;
  box-shadow: var(--shadow);
}

.intro-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.intro-photo-left {
  left: 14px;
  top: 123px;
  width: 280px;
  height: 365px;
  transform: rotate(-4deg);
}

.intro-photo-right {
  left: 162px;
  top: 40px;
  width: 275px;
  height: 370px;
  transform: rotate(5deg);
}

.intro-copy h2 {
  max-width: 470px;
  margin: 0 0 26px;
  color: var(--brown);
  font-size: 2.15rem;
  line-height: 1.55;
  text-align: left;
  text-shadow: none;
}

.intro-copy h2 span {
  display: block;
}

.intro-copy p {
  max-width: 500px;
  margin: 0;
  color: #27282d;
  font-size: 1.06rem;
  font-weight: 600;
  line-height: 1.78;
  text-align: left;
}

.video-band {
  position: relative;
  overflow: visible;
  min-height: 0;
  background: var(--gold);
  padding: 74px 0 104px;
}

.video-band::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -1px;
  height: 176px;
  background: #fff;
  border-radius: 0 0 50% 50% / 0 0 100% 100%;
  transform: scaleX(1.18);
  transform-origin: top center;
}

.video-frame {
  position: relative;
  z-index: 1;
  max-width: 952px;
  aspect-ratio: 16 / 9;
  margin: 0 auto;
  overflow: hidden;
  border: 9px solid #fff;
  background: #fff;
  box-shadow: var(--shadow);
}

.video-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.88) brightness(.76);
}

.city-section {
  position: relative;
  overflow: hidden;
  background: #fff;
  padding: 0 0 74px;
}

.city-section::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  z-index: 0;
  width: 118vw;
  height: 575px;
  background: var(--gold);
  border-radius: 0 0 50% 50% / 0 0 32% 32%;
  transform: translateX(-50%);
  transform-origin: top center;
}

.city-section::after {
  display: none;
}

.city-copy {
  position: relative;
  z-index: 1;
  grid-template-columns: 390px 1fr;
  gap: 105px;
  padding-top: 5px;
}

.city-copy h2 {
  max-width: 340px;
  color: #fff;
  font-size: 2.35rem;
  line-height: 1.27;
  text-shadow: 0 4px 9px rgba(92, 60, 18, .32);
}

.city-copy p {
  color: #111;
  font-size: 1.06rem;
  line-height: 1.72;
}

.city-wave {
  position: relative;
  z-index: 2;
  margin-top: 72px;
  padding: 0;
  overflow: visible;
  background: transparent;
}

.city-wave::before,
.city-wave::after {
  display: none;
}

.city-cards {
  position: relative;
  z-index: 2;
  max-width: 952px;
  gap: 18px;
}

.city-card {
  min-height: 267px;
  padding: 30px 26px 24px;
  box-shadow: 0 12px 20px rgba(76, 49, 24, .16);
}

.split-section {
  padding: 76px 0 82px;
}

.split-grid {
  grid-template-columns: 1fr 1fr;
  gap: 72px;
}

.split-copy h2 {
  max-width: 430px;
  color: var(--brown);
  font-size: 2.2rem;
  line-height: 1.5;
}

.split-copy p,
.split-copy li {
  font-size: 1.05rem;
  line-height: 1.75;
}

.split-copy h3 {
  margin-top: 32px;
}

.stacked-photos {
  min-height: 430px;
}

.stacked-photos img {
  border-width: 9px;
}

.homestay .stacked-photos .tilt-left {
  left: 12%;
  top: 115px;
  width: 275px;
  height: 360px;
  transform: rotate(-5deg);
}

.homestay .stacked-photos .tilt-right {
  left: 38%;
  top: 26px;
  width: 285px;
  height: 370px;
  transform: rotate(5deg);
}

.safety {
  padding-top: 58px;
}

.safety .stacked-photos .tilt-left {
  left: 10%;
  top: 88px;
  width: 285px;
  height: 355px;
  transform: rotate(-4deg);
}

.safety .stacked-photos .tilt-right {
  left: 36%;
  top: 8px;
  width: 285px;
  height: 375px;
  transform: rotate(5deg);
}

.final-cta {
  position: relative;
  isolation: isolate;
  min-height: 585px;
  display: grid;
  place-items: center;
  padding: 0;
  background: var(--brown);
}

.final-cta .shell {
  position: relative;
  z-index: 1;
  transform: translateY(48px);
}

.final-cta::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 46%;
  z-index: 0;
  width: min(590px, 72vw);
  height: min(540px, 68vw);
  transform: translate(-50%, -50%);
  background: #965044;
  opacity: .42;
  -webkit-mask-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, .98) 0%,
    rgba(0, 0, 0, .88) 30%,
    rgba(0, 0, 0, .36) 48%,
    rgba(0, 0, 0, .08) 60%,
    rgba(0, 0, 0, 0) 70%
  );
  mask-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, .98) 0%,
    rgba(0, 0, 0, .88) 30%,
    rgba(0, 0, 0, .36) 48%,
    rgba(0, 0, 0, .08) 60%,
    rgba(0, 0, 0, 0) 70%
  );
  clip-path: polygon(
    50% 0%,
    56% 25%,
    68% 14%,
    64% 36%,
    82% 29%,
    75% 47%,
    96% 45%,
    78% 58%,
    98% 65%,
    75% 68%,
    82% 85%,
    62% 78%,
    57% 94%,
    52% 79%,
    52% 100%,
    48% 100%,
    48% 79%,
    43% 94%,
    38% 78%,
    18% 85%,
    25% 68%,
    2% 65%,
    22% 58%,
    4% 45%,
    25% 47%,
    18% 29%,
    36% 36%,
    32% 14%,
    44% 25%
  );
}

.final-cta h2 {
  max-width: 500px;
  font-size: 2.65rem;
  line-height: 1.28;
}

.final-cta p {
  max-width: 670px;
  line-height: 1.55;
}

.site-footer {
  padding: 55px 0 38px;
}

@media (max-width: 1080px) {
  .hero-media {
    width: 40%;
    min-width: 390px;
  }

  .hero-gallery {
    left: 24px;
    transform: scale(.86);
    transform-origin: top left;
  }

  .hero-copy {
    max-width: calc(100% - 400px);
  }
}

@media (max-width: 820px) {
  .site-header {
    position: absolute;
  }

  .hero {
    min-height: auto;
    padding: 130px 0 0;
  }

  .hero-content {
    padding-top: 0;
  }

  .hero-copy {
    max-width: none;
    padding-bottom: 36px;
  }

  .hero-media {
    position: relative;
    width: 100%;
    min-width: 0;
    height: 620px;
  }

  .hero-gallery {
    left: 50%;
    top: 0;
    transform: translateX(-50%) scale(.9);
    transform-origin: top center;
  }

  .stats-grid,
  .intro-layout,
  .city-copy,
  .split-grid,
  .split-grid.reverse {
    grid-template-columns: 1fr;
  }

  .stats-band {
    padding: 42px 0;
  }

  .stats-grid {
    gap: 34px;
  }

  .intro-layout {
    gap: 20px;
  }

  .intro-photos {
    min-height: 450px;
  }

  .city-copy {
    gap: 26px;
  }

  .city-cards {
    grid-template-columns: 1fr;
  }

  .stacked-photos {
    min-height: 390px;
  }
}

@media (max-width: 460px) {
  h1 {
    font-size: 2.45rem;
  }

  .eyebrow {
    font-size: 1.55rem;
  }

  .hero-gallery {
    transform: translateX(-50%) scale(.72);
  }

  .hero-media {
    height: 500px;
  }

  .intro-photo-left {
    left: 0;
  }

  .intro-photo-right {
    left: 96px;
  }

  .final-cta h2 {
    font-size: 2.35rem;
  }
}

[data-animate].is-visible {
  opacity: 1 !important;
  transform: none !important;
}

@media (max-width: 1080px) and (min-width: 901px) {
  .site-header .shell,
  .hero-content {
    width: min(780px, calc(100% - 48px));
    margin-inline: auto;
  }

  .site-header .shell {
    width: min(780px, calc(100% - 48px));
  }

  .hero {
    min-height: auto;
    padding: 132px 0 0;
    overflow: hidden;
  }

  .hero-content {
    padding-top: 0;
  }

  .hero-copy {
    max-width: 680px;
    padding-bottom: 44px;
  }

  .hero h1 {
    max-width: 680px;
    font-size: clamp(2.8rem, 5.2vw, 3.55rem);
    line-height: 1.2;
  }

  .hero-media {
    position: relative;
    inset: auto;
    width: 100%;
    min-width: 0;
    height: 620px;
  }

  .hero-gallery {
    left: 50%;
    top: 0;
    transform: translateX(-50%) scale(.88);
    transform-origin: top center;
  }
}

@media (max-width: 900px) {
  .site-header .shell,
  .hero-content {
    width: min(100% - 32px, 720px);
    margin-inline: auto;
  }

  .site-header {
    padding-top: 22px;
  }

  .header-inner {
    gap: 16px;
  }

  .brand img {
    width: min(280px, 45vw);
  }

  .site-footer img {
    width: min(300px, 68vw);
  }

  .header-nav {
    gap: 8px;
    margin-left: auto;
  }

  .language-switch a {
    min-width: 29px;
    min-height: 27px;
    padding-inline: 6px;
  }

  .hero {
    min-height: auto;
    padding: 126px 0 0;
    overflow: hidden;
  }

  .hero-content {
    padding-top: 0;
  }

  .hero-copy {
    max-width: none;
    padding-bottom: 38px;
  }

  .eyebrow {
    font-size: clamp(1.4rem, 4.8vw, 1.85rem);
  }

  .hero h1 {
    max-width: 640px;
    font-size: clamp(2.6rem, 7.8vw, 3.55rem);
    line-height: 1.18;
  }

  .hero-media {
    position: relative;
    inset: auto;
    width: 100%;
    min-width: 0;
    height: clamp(430px, 72vw, 620px);
  }

  .hero-gallery {
    left: 50%;
    top: 0;
    transform: translateX(-50%) scale(.86);
    transform-origin: top center;
  }

  .stats-band {
    min-height: auto;
    padding: 46px 0;
  }

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

  .stats-grid span {
    margin-inline: auto;
  }

  .region-intro {
    padding: 74px 0 78px;
  }

  .intro-layout,
  .city-copy,
  .split-grid,
  .split-grid.reverse {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .intro-photos,
  .stacked-photos {
    width: min(450px, 100%);
    margin-inline: auto;
  }

  .intro-photos {
    min-height: 420px;
  }

  .intro-copy h2,
  .intro-copy p,
  .split-copy h2,
  .split-copy p,
  .split-copy h3,
  .split-copy ul,
  .city-copy h2,
  .city-copy p {
    max-width: 620px;
  }

  .video-band {
    padding: 70px 16px 80px;
  }

  .video-frame {
    width: 100%;
    border-width: 7px;
  }

  .city-section {
    padding-bottom: 80px;
  }

  .city-section::before {
    height: calc(100% - 130px);
    min-height: 780px;
    border-radius: 0 0 50% 50% / 0 0 8% 8%;
  }

  .city-copy {
    padding-top: 0;
  }

  .city-wave {
    margin-top: 42px;
  }

  .city-cards {
    width: min(500px, calc(100% - 32px));
    margin-inline: auto;
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .city-card,
  .city-card:last-child {
    min-height: auto;
    grid-column: auto;
    padding: 28px 24px;
  }

  .split-section {
    padding: 68px 0;
  }

  .stacked-photos {
    min-height: 380px;
  }

  .homestay .stacked-photos .tilt-left {
    left: 4%;
    top: 92px;
    width: 235px;
    height: 305px;
  }

  .homestay .stacked-photos .tilt-right {
    left: 32%;
    top: 18px;
    width: 240px;
    height: 310px;
  }

  .safety .stacked-photos .tilt-left {
    left: 4%;
    top: 74px;
    width: 235px;
    height: 310px;
  }

  .safety .stacked-photos .tilt-right {
    left: 32%;
    top: 8px;
    width: 240px;
    height: 315px;
  }

  .final-cta {
    min-height: 520px;
  }

  .final-cta h2 {
    font-size: clamp(2.05rem, 7vw, 2.65rem);
  }

  .final-cta p {
    max-width: 580px;
    font-size: 1rem;
  }

  .final-cta::before {
    top: 42%;
    width: min(540px, 118vw);
    height: min(500px, 112vw);
  }

  .footer-inner {
    align-items: center;
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    justify-items: center;
  }

  .footer-links nav {
    justify-content: center;
    flex-wrap: wrap;
  }
}

@media (max-width: 560px) {
  .site-header .shell,
  .hero-content {
    width: calc(100% - 28px);
  }

  .brand img {
    width: min(250px, 64vw);
  }

  .site-header .header-nav .button-primary {
    display: none;
  }

  .menu-button {
    padding-right: 0;
    font-size: .9rem;
  }

  .language-switch {
    padding: 2px;
  }

  .language-switch a {
    min-width: 27px;
    min-height: 26px;
    padding-inline: 5px;
    font-size: .7rem;
  }

  .hero {
    padding-top: 112px;
  }

  .hero-copy {
    padding-bottom: 32px;
  }

  .hero h1 {
    font-size: clamp(2.15rem, 10.6vw, 2.82rem);
    line-height: 1.16;
  }

  .hero-actions {
    gap: 10px;
  }

  .hero-actions .button {
    min-height: 38px;
    padding-inline: 16px;
  }

  .hero-media {
    height: 500px;
  }

  .hero-gallery {
    top: 4px;
    transform: translateX(-50%) scale(.72);
  }

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

  .intro-photos {
    min-height: 360px;
  }

  .intro-photo-left {
    left: 0;
    top: 82px;
    width: 220px;
    height: 290px;
  }

  .intro-photo-right {
    right: 0;
    left: auto;
    top: 18px;
    width: 220px;
    height: 300px;
  }

  .intro-copy h2 {
    font-size: clamp(2rem, 8.8vw, 2.45rem);
    line-height: 1.35;
  }

  .intro-copy p,
  .city-copy p,
  .split-copy p,
  .split-copy li {
    font-size: 1rem;
  }

  .video-band {
    padding: 56px 14px 70px;
  }

  .video-frame {
    border-width: 6px;
  }

  .play-button {
    min-height: 44px;
    padding: 0 16px;
  }

  .city-section::before {
    height: calc(100% - 94px);
    min-height: 980px;
  }

  .city-copy h2,
  .split-copy h2 {
    font-size: clamp(2rem, 8.4vw, 2.35rem);
    line-height: 1.35;
  }

  .city-card {
    padding: 26px 22px;
  }

  .city-cards {
    width: calc(100% - 28px);
  }

  .stacked-photos {
    min-height: 330px;
  }

  .homestay .stacked-photos .tilt-left,
  .safety .stacked-photos .tilt-left {
    left: 0;
    width: 210px;
    height: 280px;
  }

  .homestay .stacked-photos .tilt-right,
  .safety .stacked-photos .tilt-right {
    left: 30%;
    width: 215px;
    height: 285px;
  }

  .final-cta {
    min-height: 470px;
  }

  .final-cta .shell {
    transform: none;
  }

  .final-cta::before {
    top: 37%;
    width: 430px;
    height: 400px;
  }

  .final-cta h2 {
    font-size: clamp(2rem, 8.8vw, 2.35rem);
  }

  .site-footer {
    padding: 42px 0 34px;
  }

  .apply-panel {
    width: 100%;
    max-height: 100dvh;
    overflow-y: auto;
    padding: 64px 22px 30px;
  }
}

@media (max-width: 380px) {
  .header-inner {
    gap: 8px;
  }

  .brand img {
    width: min(224px, 62vw);
  }

  .header-nav {
    gap: 5px;
  }

  .language-switch a {
    min-width: 26px;
    padding-inline: 4px;
  }

  .menu-button {
    font-size: .88rem;
  }

  .hero h1 {
    font-size: 2.05rem;
  }

  .eyebrow {
    font-size: 1.35rem;
  }

  .hero-media {
    height: 440px;
  }

  .hero-gallery {
    transform: translateX(-50%) scale(.64);
  }

  .intro-photo-left,
  .intro-photo-right {
    width: 205px;
  }

  .homestay .stacked-photos .tilt-left,
  .safety .stacked-photos .tilt-left {
    width: 195px;
  }

  .homestay .stacked-photos .tilt-right,
  .safety .stacked-photos .tilt-right {
    left: 28%;
    width: 200px;
  }
}

@media (max-width: 340px) {
  .header-inner {
    gap: 5px;
  }

  .brand img {
    width: min(196px, 58vw);
  }

  .header-nav {
    gap: 5px;
  }

  .language-switch a {
    min-width: 26px;
    padding-inline: 4px;
  }

  .menu-button {
    font-size: .84rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
  }

  [data-animate] {
    opacity: 1;
    transform: none;
  }
}
