:root {
  --ink: #15211f;
  --muted: #5d6864;
  --paper: #f7f3eb;
  --surface: #ffffff;
  --line: rgba(21, 33, 31, 0.14);
  --teal: #0b6b67;
  --coral: #d86a4a;
  --sun: #f3b653;
  --forest: #243f37;
  --shadow: 0 24px 80px rgba(26, 37, 34, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.5;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  min-height: 100svh;
  background: #eef4f1;
}

.nav {
  position: fixed;
  z-index: 20;
  top: 16px;
  left: 50%;
  width: min(1120px, calc(100% - 32px));
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 34px rgba(13, 35, 31, 0.12);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-weight: 800;
}

.brand-mark {
  position: relative;
  display: block;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 58% 36%, #ffdf9b 0 5px, transparent 6px),
    linear-gradient(135deg, #a6332c, #e86c45 52%, #f2b250);
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.7);
}

.brand-mark .sun {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #fff2c5;
}

.brand-mark .gate {
  position: absolute;
  left: 9px;
  bottom: 9px;
  width: 20px;
  height: 13px;
  border-top: 3px solid #fff;
  border-left: 3px solid #fff;
  border-right: 3px solid #fff;
}

.brand-mark .gate::before {
  position: absolute;
  left: 5px;
  top: -3px;
  width: 4px;
  height: 13px;
  background: #fff;
  content: "";
}

.brand-name {
  font-size: 1.02rem;
  letter-spacing: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #263a36;
  font-size: 0.94rem;
}

.nav-links a {
  padding: 10px 13px;
  border-radius: 999px;
}

.nav-links a:hover,
.nav-cta {
  background: rgba(11, 107, 103, 0.1);
}

.language-switcher {
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  border-radius: 999px;
  background: rgba(21, 33, 31, 0.08);
}

.language-switcher button {
  min-width: 38px;
  border: 0;
  border-radius: 999px;
  padding: 8px 10px;
  color: var(--muted);
  background: transparent;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 900;
  cursor: pointer;
}

.language-switcher button[aria-pressed="true"] {
  color: #fff;
  background: var(--forest);
}

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  align-items: end;
  padding: 140px clamp(22px, 5vw, 72px) 48px;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 32, 28, 0.82), rgba(10, 32, 28, 0.32) 58%, rgba(10, 32, 28, 0.1)),
    url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=2200&q=86") center / cover;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(720px, 100%);
  color: #fff;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffd088;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(3.3rem, 8vw, 7.8rem);
  line-height: 0.94;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 4.5rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.35rem;
}

.hero-copy {
  max-width: 610px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  cursor: pointer;
}

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

.button.ghost {
  border-color: rgba(255, 255, 255, 0.48);
  color: #fff;
}

.hero-panel {
  position: absolute;
  right: clamp(18px, 5vw, 72px);
  bottom: 48px;
  z-index: 1;
  width: min(320px, calc(100% - 36px));
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  color: #fff;
  background: rgba(12, 40, 35, 0.58);
  backdrop-filter: blur(18px);
}

.hero-panel span,
.hero-panel small {
  display: block;
  color: rgba(255, 255, 255, 0.72);
}

.hero-panel strong {
  display: block;
  margin: 8px 0;
  font-size: 1.15rem;
}

.stats-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.stats-band div {
  padding: 28px clamp(18px, 4vw, 42px);
  background: var(--paper);
}

.stats-band strong,
.stats-band span {
  display: block;
}

.stats-band strong {
  color: var(--teal);
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1;
}

.stats-band span {
  margin-top: 8px;
  color: var(--muted);
}

.section {
  padding: clamp(72px, 9vw, 130px) clamp(20px, 5vw, 72px);
}

.section-heading {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: clamp(22px, 5vw, 70px);
  max-width: 1180px;
  margin: 0 auto 38px;
}

.section-heading.narrow {
  display: block;
  max-width: 780px;
  margin-left: 0;
}

.destination-grid,
.itinerary-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}

.destination-card {
  min-height: 430px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border-radius: 8px;
  color: #fff;
  background-position: center;
  background-size: cover;
  box-shadow: var(--shadow);
}

.destination-card div {
  width: 100%;
  padding: 28px;
  background: linear-gradient(transparent, rgba(5, 27, 24, 0.88));
}

.destination-card span,
.tag {
  display: inline-flex;
  margin-bottom: 10px;
  color: #ffe0a6;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.destination-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
}

.bali {
  background-image: url("https://images.unsplash.com/photo-1537996194471-e657df975ab4?auto=format&fit=crop&w=1000&q=82");
}

.japan {
  background-image: url("https://images.unsplash.com/photo-1492571350019-22de08371fd3?auto=format&fit=crop&w=1000&q=82");
}

.vietnam {
  background-image: url("https://images.unsplash.com/photo-1528127269322-539801943592?auto=format&fit=crop&w=1000&q=82");
}

.itinerary-section {
  background: #fff;
}

.itinerary-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.itinerary-card img {
  height: 238px;
  object-fit: cover;
}

.itinerary-body {
  padding: 24px;
}

.itinerary-body p {
  color: var(--muted);
}

.itinerary-body ul {
  display: grid;
  gap: 8px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.itinerary-body li {
  position: relative;
  padding-left: 24px;
}

.itinerary-body li::before {
  position: absolute;
  left: 0;
  color: var(--teal);
  content: "✓";
  font-weight: 900;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 6vw, 90px);
  padding: clamp(72px, 9vw, 130px) clamp(20px, 5vw, 72px);
  background: var(--forest);
  color: #fff;
}

.split-copy {
  max-width: 590px;
}

.split-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.08rem;
}

.process-list {
  display: grid;
  gap: 14px;
}

.process-list div {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
}

.process-list span {
  color: var(--sun);
  font-weight: 900;
}

.process-list strong {
  display: block;
  margin: 6px 0;
  font-size: 1.2rem;
}

.process-list p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
}

.testimonial-band {
  text-align: center;
}

blockquote {
  max-width: 920px;
  margin: 0 auto 18px;
  font-size: clamp(1.7rem, 4vw, 3.8rem);
  line-height: 1.12;
}

cite {
  color: var(--muted);
  font-style: normal;
  font-weight: 800;
}

.enquiry {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 0.95fr);
  gap: clamp(28px, 6vw, 90px);
  padding: clamp(72px, 9vw, 130px) clamp(20px, 5vw, 72px);
  background: #eaf0ec;
}

.enquiry > div {
  max-width: 560px;
}

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

.enquiry-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(21, 33, 31, 0.16);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}

textarea {
  resize: vertical;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(20px, 5vw, 72px);
  background: #12201d;
  color: #fff;
}

.footer div {
  display: grid;
  gap: 4px;
}

.footer span,
.footer a {
  color: rgba(255, 255, 255, 0.66);
}

@media (max-width: 880px) {
  .nav {
    align-items: flex-start;
    border-radius: 18px;
  }

  .nav-links {
    display: none;
  }

  .language-switcher {
    margin-left: auto;
  }

  .hero {
    align-items: center;
    padding-bottom: 220px;
  }

  .hero-panel {
    left: 20px;
    right: auto;
    bottom: 28px;
  }

  .stats-band,
  .destination-grid,
  .itinerary-grid,
  .section-heading,
  .split-section,
  .enquiry {
    grid-template-columns: 1fr;
  }

  .destination-card {
    min-height: 340px;
  }
}

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

  .hero-actions,
  .footer {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .stats-band {
    grid-template-columns: repeat(2, 1fr);
  }
}
