:root {
  --orange: #f36a16;
  --green: #07533d;
  --ink: #16211d;
  --paper: #fbf7f1;
  --line: #ddd2c5;
  --muted: #6c6a65;
  --white: #fff;
  --soft: #fff0e2;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, "Noto Sans SC", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.65;
}
a { color: inherit; }
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid #0b72e7;
  outline-offset: 3px;
}
.skip { position: absolute; left: -9999px; }
.skip:focus {
  left: 1rem;
  top: 1rem;
  z-index: 99;
  background: #fff;
  padding: .7rem 1rem;
}
.top {
  background: #fff;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 20;
}
.top-inner {
  max-width: 1320px;
  margin: auto;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.brand { text-decoration: none; line-height: 1.15; }
.brand strong { display: block; color: var(--green); font-size: 1rem; }
.brand small { color: var(--orange); font-size: .68rem; }
.nav {
  margin-left: auto;
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}
.nav a,
.langs a { text-decoration: none; font-size: .82rem; font-weight: 700; }
.nav a[aria-current=page],
.nav a:hover { color: var(--orange); }
.langs {
  display: flex;
  gap: .55rem;
  padding-left: 1rem;
  border-left: 1px solid var(--line);
}
.langs a[aria-current=page] {
  color: #fff;
  background: var(--orange);
  padding: .08rem .4rem;
  border-radius: 1rem;
}
.hero { background: var(--orange); color: #fff; }
.hero-inner,
.section,
.footer-inner { max-width: 1320px; margin: auto; padding: 5rem 2rem; }
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0,1.7fr) minmax(260px,.7fr);
  gap: 4rem;
  align-items: end;
}
.eyebrow {
  font-size: .72rem;
  letter-spacing: .14em;
  font-weight: 900;
  text-transform: uppercase;
  margin: 0 0 .8rem;
}
.hero h1 {
  font-size: clamp(2.4rem,5vw,5rem);
  line-height: 1.02;
  margin: 0 0 1.4rem;
  max-width: 950px;
}
.lead { font-size: 1.08rem; max-width: 850px; }
.actions { display: flex; gap: .75rem; flex-wrap: wrap; margin-top: 2rem; }
.booking-note { margin: .85rem 0 0; max-width: 850px; font-size: .78rem; line-height: 1.55; opacity: .9; }
.booking-note a { color: inherit; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: .7rem 1.1rem;
  text-decoration: none;
  font-weight: 900;
  border: 1px solid #fff;
  background: #fff;
  color: var(--orange);
  cursor: pointer;
}
.button.alt { background: transparent; color: #fff; }
.button.green { background: var(--green); border-color: var(--green); color: #fff; }
.hero-aside { border: 1px solid rgba(255,255,255,.65); padding: 1.5rem; }
.hero-aside div + div {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,.3);
}
.hero-aside span { display: block; font-size: .72rem; opacity: .8; }
.hero-aside strong { font-size: 1.05rem; }
.section { padding-top: 4rem; padding-bottom: 4rem; }
.section.alt { background: #fff; max-width: none; }
.section.alt > .contained { max-width: 1320px; margin: auto; }
.section-head {
  display: grid;
  grid-template-columns: minmax(0,1.3fr) minmax(240px,.7fr);
  gap: 3rem;
  margin-bottom: 2rem;
}
.section h2 {
  color: var(--green);
  font-size: clamp(1.8rem,3vw,3rem);
  line-height: 1.15;
  margin: .2rem 0;
}
.section-head > p { color: var(--muted); margin: 0; }
.grid { display: grid; gap: 1rem; }
.grid.two { grid-template-columns: repeat(2,minmax(0,1fr)); }
.grid.three { grid-template-columns: repeat(3,minmax(0,1fr)); }
.grid.four { grid-template-columns: repeat(4,minmax(0,1fr)); }
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-top: 4px solid var(--orange);
  padding: 1.5rem;
  min-height: 180px;
}
.card h3 { color: var(--green); margin: .2rem 0 .6rem; }
.card p { color: var(--muted); }
.card a { color: var(--orange); font-weight: 900; text-decoration: none; }
.step { counter-increment: step; }
.step:before {
  content: counter(step,decimal-leading-zero);
  font-weight: 900;
  color: var(--orange);
  font-size: .75rem;
}
.steps { counter-reset: step; }
.boundary { background: var(--green); color: #fff; }
.boundary .section h2 { color: #fff; }
.boundary .section-head > p { color: #fff; opacity: .86; }
.roles {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  color: var(--ink);
}
.roles th,
.roles td {
  text-align: left;
  vertical-align: top;
  padding: 1rem;
  border-bottom: 1px solid var(--line);
}
.roles th { background: var(--soft); color: var(--green); }
.notice {
  border-left: 5px solid var(--orange);
  padding: 1rem 1.2rem;
  background: var(--soft);
  margin: 1.5rem 0;
}
.form {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 1rem;
}
.field { display: flex; flex-direction: column; gap: .35rem; }
.field.full { grid-column: 1/-1; }
.field label { font-weight: 800; }
.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid #a99d90;
  background: #fff;
  padding: .8rem;
  font: inherit;
}
.field textarea { min-height: 130px; resize: vertical; }
.check { display: flex; gap: .65rem; align-items: flex-start; }
.check input { margin-top: .4rem; }
.form-status { font-weight: 800; color: var(--green); }
.resource-meta { font-size: .78rem; color: var(--muted); }
.footer { background: #043e30; color: #fff; }
.footer-inner {
  padding-top: 2.2rem;
  padding-bottom: 2.2rem;
  display: flex;
  justify-content: space-between;
  gap: 2rem;
}
.footer a { color: #fff; }
.rtl-check[dir=rtl] { text-align: right; }
.privacy-list li { margin: .7rem 0; }
.pill {
  display: inline-block;
  padding: .2rem .55rem;
  background: var(--soft);
  color: var(--orange);
  font-weight: 900;
  font-size: .72rem;
}
.country-note { border-top: 1px solid var(--line); margin-top: 1rem; padding-top: 1rem; }
.subnav { background: #fff; border-bottom: 1px solid var(--line); overflow: auto; }
.subnav div {
  max-width: 1320px;
  margin: auto;
  display: flex;
  gap: 1.1rem;
  padding: .65rem 2rem;
  white-space: nowrap;
}
.subnav a { text-decoration: none; font-size: .78rem; font-weight: 800; }
.subnav a:hover { color: var(--orange); }
@media(max-width:920px) {
  .top-inner { align-items: flex-start; }
  .nav { display: none; }
  .hero-grid,
  .section-head { grid-template-columns: 1fr; }
  .grid.four,
  .grid.three { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .hero-inner,
  .section { padding-left: 1.2rem; padding-right: 1.2rem; }
  .langs { margin-left: auto; }
  .hero-grid { gap: 2rem; }
}
@media(max-width:620px) {
  .top-inner { padding: .8rem 1rem; }
  .brand small { display: none; }
  .langs { gap: .35rem; padding-left: .5rem; }
  .langs a { font-size: .7rem; }
  .hero-inner { padding-top: 3rem; padding-bottom: 3rem; }
  .grid.two,
  .grid.three,
  .grid.four,
  .form { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
  .card { min-height: 0; }
  .footer-inner { flex-direction: column; }
  .subnav div { padding-left: 1rem; }
  .hero h1 { font-size: 2.45rem; }
}
