: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: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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,
.site-footer img {
  width: 270px;
  height: auto;
}

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

.menu-button {
  border: 0;
  background: transparent;
  color: #161616;
  cursor: pointer;
  padding: 8px;
}

.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: 625px;
  overflow: visible;
  padding-top: 170px;
  background: #fff;
  z-index: 1;
}

.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: 50%;
  bottom: -230px;
  width: min(1095px, 96vw);
  height: 420px;
  transform: translateX(-50%);
  z-index: 3;
}

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

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

.photo-top-left,
.photo-top-right {
  width: 285px;
  height: 165px;
  top: 78px;
}

.photo-top-left {
  left: 16px;
}

.photo-video {
  width: 455px;
  height: 185px;
  left: 50%;
  top: 74px;
  transform: translateX(-50%);
}

.photo-video img {
  filter: brightness(.72) saturate(.88);
}

.photo-top-right {
  right: 16px;
}

.photo-bottom-left,
.photo-bottom-right {
  width: 285px;
  height: 185px;
  top: 265px;
}

.photo-bottom-left {
  left: 16px;
}

.photo-bottom-right {
  right: 16px;
}

.region-intro {
  position: relative;
  z-index: 0;
  background: var(--gold);
  padding: 330px 0 116px;
  text-align: center;
}

.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 p {
  max-width: 700px;
  margin: 22px auto 0;
  color: #171717;
  font-weight: 700;
}

.stats-band {
  background: var(--brown);
  color: #fff;
  padding: 54px 0 52px;
}

.stats-grid {
  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;
}

.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;
}

.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,
.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: translateX(-50%);
    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;
  }

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

  .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: -190px;
    width: 100vw;
    height: 360px;
    overflow: hidden;
    transform: none;
  }

  .photo-top-left,
  .photo-top-right {
    top: 84px;
    width: 136px;
    height: 118px;
  }

  .photo-top-left {
    left: 0;
    transform: none;
  }

  .photo-video {
    top: 86px;
    left: 50%;
    width: 252px;
    height: 122px;
  }

  .photo-top-right {
    right: 0;
    transform: none;
  }

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

  .photo-bottom-left,
  .photo-bottom-right {
    top: 230px;
    width: 132px;
    height: 122px;
  }

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

  .photo-bottom-right {
    right: 0;
  }

  .region-intro {
    padding: 120px 0 90px;
  }

  .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%;
  }
}

@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;
  }
}
