:root {
  --forest: #123528;
  --deep: #071b15;
  --leaf: #2e6f45;
  --moss: #88a653;
  --mist: #eef1e8;
  --paper: #f8f3e9;
  --earth: #2c2520;
  --sun: #f47a38;
  --ember: #b8432d;
  --line: rgba(18, 53, 40, 0.18);
  --shadow: 0 24px 60px rgba(7, 27, 21, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Trebuchet MS", Arial, sans-serif;
  color: var(--earth);
  background: var(--paper);
  line-height: 1.5;
}

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

a {
  color: inherit;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 72px;
  padding: 0.75rem 5vw;
  color: var(--paper);
  transition: background 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(7, 27, 21, 0.92);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(14px);
}

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

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.site-nav a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 0.85rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(248, 243, 233, 0.16);
  outline: none;
}

.site-nav .nav-cta {
  background: var(--sun);
  color: var(--deep);
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  margin-left: 0.25rem;
  padding-left: 0.65rem;
  border-left: 1px solid rgba(248, 243, 233, 0.32);
}

.language-switch button {
  min-width: 38px;
  min-height: 34px;
  border: 1px solid rgba(248, 243, 233, 0.44);
  border-radius: 8px;
  background: rgba(7, 27, 21, 0.18);
  color: var(--paper);
  font: inherit;
  font-size: 0.8rem;
  font-weight: 900;
  cursor: pointer;
}

.language-switch button:hover,
.language-switch button:focus-visible,
.language-switch button.is-active {
  background: var(--paper);
  color: var(--forest);
  outline: none;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(248, 243, 233, 0.5);
  border-radius: 8px;
  background: rgba(7, 27, 21, 0.26);
  color: var(--paper);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 88svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--paper);
  isolation: isolate;
}

.hero-bg,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-bg {
  object-fit: cover;
  z-index: -2;
}

.hero-shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(7, 27, 21, 0.86) 0%, rgba(7, 27, 21, 0.58) 44%, rgba(7, 27, 21, 0.15) 100%),
    linear-gradient(0deg, rgba(7, 27, 21, 0.72) 0%, rgba(7, 27, 21, 0.05) 42%);
}

.hero-content {
  width: min(760px, 90vw);
  padding: 9rem 5vw 5rem;
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--sun);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.eyebrow.dark {
  color: var(--ember);
}

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

h1 {
  max-width: 760px;
  margin-bottom: 1rem;
  font-size: 4.2rem;
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  color: var(--forest);
  font-size: 2.45rem;
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  color: var(--forest);
  font-size: 1.25rem;
  line-height: 1.15;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 620px;
  margin-bottom: 2rem;
  font-size: 1.18rem;
  color: rgba(248, 243, 233, 0.9);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 1.15rem;
  border: 0;
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.button.primary {
  color: var(--deep);
  background: var(--sun);
}

.button.secondary {
  color: var(--paper);
  background: rgba(248, 243, 233, 0.14);
  box-shadow: inset 0 0 0 1px rgba(248, 243, 233, 0.38);
}

.button.light {
  color: var(--forest);
  background: var(--paper);
}

.route-note {
  position: absolute;
  right: 5vw;
  bottom: 2.3rem;
  width: 250px;
  padding: 1rem;
  border-radius: 8px;
  background: rgba(248, 243, 233, 0.92);
  color: var(--forest);
  box-shadow: var(--shadow);
}

.route-note span,
.route-note b {
  display: block;
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--ember);
}

.route-note strong {
  display: block;
  margin: 0.25rem 0;
  font-size: 1.12rem;
}

.intro-band {
  background: var(--mist);
  border-bottom: 1px solid var(--line);
}

.intro-grid {
  width: min(1160px, 90vw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 2rem;
  padding: 4rem 0;
}

.intro-grid h2 {
  margin-bottom: 0;
}

.intro-grid > p {
  align-self: end;
  font-size: 1.08rem;
}

.service-row {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.8rem;
}

.service-row span {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--forest);
  background: rgba(248, 243, 233, 0.62);
  font-weight: 800;
  text-align: center;
}

.section {
  width: min(1160px, 90vw);
  margin: 0 auto;
  padding: 5rem 0;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 1.12fr);
  gap: 4rem;
  align-items: start;
}

.section-heading {
  max-width: 610px;
}

.section-heading.centered {
  max-width: 760px;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.section-heading p,
.tour-copy p,
.story-copy p,
.planner-copy p {
  color: rgba(44, 37, 32, 0.76);
}

.price-panel {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffaf0;
  box-shadow: var(--shadow);
}

.price-tab-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.45rem;
  padding: 0.65rem;
  background: var(--mist);
  border-bottom: 1px solid rgba(18, 53, 40, 0.12);
}

.price-tab-button {
  min-height: 44px;
  padding: 0.55rem 0.75rem;
  border: 1px solid rgba(18, 53, 40, 0.18);
  border-radius: 8px;
  background: rgba(248, 243, 233, 0.78);
  color: var(--forest);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.price-tab-button:hover,
.price-tab-button:focus-visible,
.price-tab-button.is-active {
  background: var(--forest);
  color: var(--paper);
  outline: none;
}

.price-group[hidden] {
  display: none;
}

.price-group-heading {
  padding: 1rem 1.2rem 0.85rem;
  background: rgba(18, 53, 40, 0.06);
  border-bottom: 1px solid rgba(18, 53, 40, 0.12);
}

.price-group-heading h3 {
  margin: 0;
  color: var(--forest);
  font-size: 1.2rem;
}

.price-group-heading p {
  margin: 0.15rem 0 0;
  color: rgba(44, 37, 32, 0.68);
  font-size: 0.92rem;
}

.price-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.2rem;
  border-bottom: 1px solid rgba(18, 53, 40, 0.12);
}

.price-row:last-child {
  border-bottom: 0;
}

.price-row span {
  color: rgba(44, 37, 32, 0.78);
}

.price-row strong {
  color: var(--forest);
  white-space: nowrap;
}

.tour-highlight {
  width: 100%;
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 570px);
  gap: 4rem;
  align-items: center;
  padding: 0 5vw;
  background: var(--deep);
}

.tour-image {
  min-height: 520px;
  margin-left: -5vw;
}

.tour-image img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.tour-copy {
  padding: 5rem 0;
}

.tour-copy h2,
.tour-copy p {
  color: var(--paper);
}

.tour-copy p {
  color: rgba(248, 243, 233, 0.78);
}

.tour-prices {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.8rem;
}

.tour-prices div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
  border-radius: 8px;
  background: rgba(248, 243, 233, 0.09);
  color: var(--paper);
}

.tour-prices span {
  color: rgba(248, 243, 233, 0.78);
}

.activity-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.activity-card {
  overflow: hidden;
  display: grid;
  grid-template-rows: 220px 1fr;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffaf0;
  box-shadow: 0 16px 36px rgba(7, 27, 21, 0.1);
}

.activity-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.activity-card div {
  display: grid;
  align-content: start;
  min-height: 286px;
  padding: 1.1rem;
}

.activity-card span {
  margin-bottom: 0.5rem;
  color: var(--ember);
  font-weight: 800;
  font-size: 0.86rem;
}

.activity-card p {
  color: rgba(44, 37, 32, 0.72);
}

.activity-card strong {
  align-self: end;
  color: var(--forest);
}

.planner {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 1.2fr);
  gap: 3rem;
  align-items: start;
}

.planner-tool {
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--mist);
  box-shadow: var(--shadow);
}

fieldset {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  border: 0;
}

legend {
  margin-bottom: 0.8rem;
  color: var(--forest);
  font-size: 1.15rem;
  font-weight: 900;
}

label {
  color: var(--forest);
  font-weight: 800;
}

fieldset label {
  min-height: 52px;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.75rem;
  border: 1px solid rgba(18, 53, 40, 0.18);
  border-radius: 8px;
  background: rgba(248, 243, 233, 0.68);
}

input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--leaf);
}

.planner-controls {
  display: grid;
  gap: 0.45rem;
  margin-top: 1.2rem;
}

select {
  min-height: 48px;
  width: 100%;
  padding: 0 0.85rem;
  border: 1px solid rgba(18, 53, 40, 0.24);
  border-radius: 8px;
  background: #fffaf0;
  color: var(--forest);
  font: inherit;
  font-weight: 800;
}

.planner-result {
  margin-top: 1.2rem;
  padding: 1.2rem;
  border-radius: 8px;
  background: var(--forest);
  color: var(--paper);
}

.planner-result span {
  color: var(--moss);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.planner-result strong {
  display: block;
  margin: 0.2rem 0;
  font-size: 2rem;
}

.planner-result p {
  color: rgba(248, 243, 233, 0.78);
}

.story {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.78fr);
  gap: 4rem;
  align-items: center;
}

.trust-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem;
  padding: 0;
  margin: 1.5rem 0 0;
  list-style: none;
}

.trust-list li {
  padding: 0.85rem;
  border-left: 4px solid var(--sun);
  border-radius: 8px;
  background: var(--mist);
  color: var(--forest);
  font-weight: 800;
}

.putu-profile-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.5rem 0;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffaf0;
  box-shadow: 0 16px 36px rgba(7, 27, 21, 0.1);
}

.putu-profile-photo {
  flex: 0 0 100px;
  width: 100px;
  height: 100px;
  overflow: hidden;
  border: 3px solid var(--sun);
  border-radius: 50%;
  background: var(--deep);
}

.putu-profile-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 45% 34%;
  transform: scale(1.36);
  transform-origin: 45% 34%;
}

.putu-profile-card span {
  display: block;
  margin-bottom: 0.2rem;
  color: var(--ember);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.putu-profile-card strong {
  display: block;
  color: var(--forest);
  font-size: 1.4rem;
  line-height: 1.1;
}

.putu-profile-card p {
  margin: 0.35rem 0 0;
  color: rgba(44, 37, 32, 0.72);
}

.driver-panel {
  overflow: hidden;
  border-radius: 8px;
  background: var(--deep);
  color: var(--paper);
  box-shadow: var(--shadow);
}

.driver-panel img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.driver-panel div {
  padding: 1.2rem;
}

.driver-panel span {
  color: var(--sun);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.driver-panel strong {
  display: block;
  margin-top: 0.35rem;
  font-size: 1.35rem;
  line-height: 1.2;
}

.faq-section {
  padding-top: 4rem;
}

.faq-grid {
  display: grid;
  gap: 0.8rem;
  max-width: 860px;
  margin: 0 auto;
}

.faq-grid details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffaf0;
  box-shadow: 0 12px 28px rgba(7, 27, 21, 0.08);
}

.faq-grid summary {
  min-height: 58px;
  display: flex;
  align-items: center;
  padding: 1rem 1.1rem;
  color: var(--forest);
  font-weight: 900;
  cursor: pointer;
}

.faq-grid p {
  margin: 0;
  padding: 0 1.1rem 1.1rem;
  color: rgba(44, 37, 32, 0.74);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: center;
  padding: 4rem 5vw;
  background: var(--leaf);
  color: var(--paper);
}

.contact-section h2 {
  color: var(--paper);
}

.contact-section p {
  max-width: 680px;
  color: rgba(248, 243, 233, 0.82);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.4rem 5vw;
  background: var(--deep);
  color: rgba(248, 243, 233, 0.74);
  font-size: 0.92rem;
}

.site-footer a {
  color: var(--paper);
  text-decoration: none;
  font-weight: 700;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--sunset);
}

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

  h2 {
    font-size: 2rem;
  }

  .intro-grid,
  .split,
  .planner,
  .story,
  .tour-highlight {
    grid-template-columns: 1fr;
  }

  .service-row,
  .activity-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .tour-highlight {
    padding: 0;
  }

  .tour-image {
    min-height: 360px;
    margin-left: 0;
  }

  .tour-image img {
    min-height: 360px;
  }

  .tour-copy {
    width: min(90vw, 680px);
    margin: 0 auto;
    padding: 3.5rem 0;
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 68px;
  }

  .brand img {
    width: 150px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 68px;
    left: 5vw;
    right: 5vw;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 0.7rem;
    border-radius: 8px;
    background: rgba(7, 27, 21, 0.96);
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    justify-content: center;
  }

  .language-switch {
    justify-content: center;
    margin: 0;
    padding: 0.45rem 0 0;
    border-left: 0;
    border-top: 1px solid rgba(248, 243, 233, 0.22);
  }

  .hero {
    min-height: 88svh;
  }

  .hero-content {
    padding-top: 7rem;
    padding-bottom: 10.5rem;
  }

  h1 {
    font-size: 2.55rem;
  }

  .hero-copy {
    font-size: 1.02rem;
  }

  .route-note {
    left: 5vw;
    right: auto;
    bottom: 1.1rem;
    width: min(310px, 90vw);
  }

  .service-row,
  .activity-grid,
  fieldset,
  .trust-list,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .price-tab-list {
    grid-template-columns: 1fr;
  }

  .putu-profile-card {
    align-items: flex-start;
  }

  .putu-profile-photo {
    flex-basis: 86px;
    width: 86px;
    height: 86px;
  }

  .activity-card {
    grid-template-rows: 210px auto;
  }

  .activity-card img {
    height: 210px;
  }

  .activity-card div {
    min-height: auto;
  }

  .section {
    padding: 3.6rem 0;
  }

  .contact-section {
    text-align: left;
  }

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