:root {
  --ink: #12100c;
  --charcoal: #1c1813;
  --gold: #b9822d;
  --gold-dark: #7a5013;
  --gold-soft: #ead7aa;
  --paper: #faf6ec;
  --sand: #f1e7d3;
  --leaf: #2c5a3d;
  --sea: #145f68;
  --earth: #3b3025;
  --line: rgba(18, 16, 12, 0.16);
  --shadow: 0 24px 60px rgba(18, 16, 12, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

html:lang(ru) body {
  font-family: Arial, "Segoe UI", Helvetica, sans-serif;
}

html:lang(zh-CN) body {
  font-family: "Microsoft YaHei", "PingFang SC", "Noto Sans CJK SC", Arial, sans-serif;
  line-height: 1.62;
}

html:lang(ja) body {
  font-family: "Yu Gothic", "Hiragino Kaku Gothic ProN", "Noto Sans CJK JP", Arial, sans-serif;
  line-height: 1.62;
}

html:lang(ko) body {
  font-family: "Malgun Gothic", "Apple SD Gothic Neo", "Noto Sans CJK KR", Arial, sans-serif;
  line-height: 1.62;
  word-break: keep-all;
}

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

a {
  color: inherit;
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.icon {
  width: 1.08em;
  height: 1.08em;
  flex: 0 0 auto;
  fill: currentColor;
  vertical-align: -0.14em;
}

.icon-arrow {
  fill: none;
  transition: transform 160ms ease;
}

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

.site-header.is-scrolled {
  background: rgba(18, 16, 12, 0.93);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--paper);
  text-decoration: none;
}

.brand img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 8px;
  background: var(--paper);
}

.brand strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.3rem;
  letter-spacing: 0;
  line-height: 1;
}

.brand small {
  display: block;
  color: var(--gold-soft);
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.1;
}

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

.site-nav a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0 0.78rem;
  border-radius: 8px;
  color: var(--paper);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 800;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(250, 246, 236, 0.18);
}

.site-nav a:focus-visible,
.language-menu-toggle:focus-visible,
.language-menu-list a:focus-visible,
.nav-toggle:focus-visible,
.price-tab-button:focus-visible,
fieldset label:focus-within,
select:focus-visible,
.faq-grid summary:focus-visible,
.site-footer a:focus-visible {
  outline: 3px solid var(--ink);
  outline-offset: 3px;
  box-shadow: 0 0 0 6px var(--gold-soft);
}

.site-nav .nav-cta {
  background: var(--gold);
  color: var(--ink);
  box-shadow: 0 10px 22px rgba(185, 130, 45, 0.22);
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus-visible {
  background: #d09a3f;
  color: var(--ink);
}

.language-menu {
  position: relative;
  margin-left: 0.2rem;
  padding-left: 0.6rem;
  border-left: 1px solid rgba(250, 246, 236, 0.32);
}

.language-menu-toggle {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0 0.62rem;
  border: 1px solid rgba(250, 246, 236, 0.42);
  border-radius: 8px;
  background: rgba(18, 16, 12, 0.22);
  color: var(--paper);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 900;
  cursor: pointer;
}

.language-menu-toggle:hover,
.language-menu.is-open .language-menu-toggle {
  background: var(--paper);
  color: var(--ink);
}

.language-menu-list {
  position: absolute;
  z-index: 40;
  top: calc(100% + 0.55rem);
  right: 0;
  width: min(340px, calc(100vw - 2rem));
  max-height: min(68vh, 520px);
  padding: 0.45rem;
  display: none;
  overflow-y: auto;
  border: 1px solid rgba(250, 246, 236, 0.18);
  border-radius: 8px;
  background: rgba(18, 16, 12, 0.98);
  box-shadow: var(--shadow);
}

.language-menu.is-open .language-menu-list {
  display: grid;
  gap: 0.25rem;
}

.language-menu-list a {
  min-height: 48px;
  display: grid;
  grid-template-columns: 2.25rem 1fr;
  align-items: center;
  gap: 0.7rem;
  padding: 0.52rem 0.62rem;
  border-radius: 8px;
  color: var(--paper);
  text-decoration: none;
}

.language-menu-list a:hover,
.language-menu-list a:focus-visible,
.language-menu-list a.is-active,
.language-menu-list a[aria-current="page"] {
  background: rgba(250, 246, 236, 0.12);
}

.language-menu-list a[aria-current="page"] {
  color: var(--gold-soft);
}

.language-flag {
  width: 1.75rem;
  height: 1.28rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  flex: 0 0 auto;
  overflow: hidden;
  border: 1px solid rgba(250, 246, 236, 0.42);
  border-radius: 4px;
  background: rgba(250, 246, 236, 0.14);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.16);
}

.language-flag .flag-icon {
  width: 100%;
  height: 100%;
  display: block;
}

.language-menu-toggle .language-flag {
  width: 1.45rem;
  height: 1.06rem;
}

.language-name {
  display: grid;
  gap: 0.05rem;
  min-width: 0;
}

.language-name strong {
  line-height: 1.08;
}

.language-name small {
  color: rgba(250, 246, 236, 0.7);
  font-weight: 700;
  line-height: 1.15;
}

.language-menu-list a[aria-current="page"] .language-name small {
  color: rgba(234, 215, 170, 0.78);
}

.language-chevron {
  width: 0.95em;
  height: 0.95em;
  fill: none;
  transition: transform 160ms ease;
}

.language-menu.is-open .language-chevron {
  transform: rotate(180deg);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(250, 246, 236, 0.5);
  border-radius: 8px;
  background: rgba(18, 16, 12, 0.35);
  color: var(--paper);
}

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

.hero {
  position: relative;
  min-height: 94svh;
  overflow: hidden;
  background: var(--ink);
  color: var(--paper);
}

.hero-bg,
.hero-shade {
  position: absolute;
  inset: 0;
}

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

.hero-shade {
  background:
    linear-gradient(90deg, rgba(18, 16, 12, 0.88), rgba(18, 16, 12, 0.48) 54%, rgba(18, 16, 12, 0.28)),
    linear-gradient(180deg, rgba(18, 16, 12, 0.44), transparent 40%, rgba(18, 16, 12, 0.3));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 790px;
  padding: 9rem 5vw 7rem;
}

.eyebrow {
  margin: 0 0 0.9rem;
  color: var(--gold-soft);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 0.98;
  letter-spacing: 0;
}

h1 {
  max-width: 820px;
  color: var(--paper);
  font-size: clamp(3rem, 8vw, 5.35rem);
}

h2 {
  font-size: clamp(2rem, 4.4vw, 3.8rem);
}

h3 {
  font-size: 1.35rem;
}

html:lang(ru) h1,
html:lang(ru) h2,
html:lang(de) h1,
html:lang(de) h2,
html:lang(zh-CN) h1,
html:lang(zh-CN) h2,
html:lang(ja) h1,
html:lang(ja) h2,
html:lang(ko) h1,
html:lang(ko) h2 {
  line-height: 1.08;
}

html:lang(zh-CN) h1,
html:lang(zh-CN) h2,
html:lang(zh-CN) h3,
html:lang(ja) h1,
html:lang(ja) h2,
html:lang(ja) h3,
html:lang(ko) h1,
html:lang(ko) h2,
html:lang(ko) h3 {
  font-family: "Microsoft YaHei", "Yu Gothic", "Malgun Gothic", "Noto Sans CJK SC", serif;
  font-weight: 900;
}

html:lang(zh-CN) h1,
html:lang(ja) h1,
html:lang(ko) h1,
html:lang(ru) h1,
html:lang(de) h1 {
  font-size: clamp(2.7rem, 7vw, 4.85rem);
}

html:lang(zh-CN) .eyebrow,
html:lang(ja) .eyebrow,
html:lang(ko) .eyebrow {
  letter-spacing: 0.08em;
}

.hero-copy {
  max-width: 700px;
  margin: 1.3rem 0 0;
  color: rgba(250, 246, 236, 0.86);
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.58rem;
  padding: 0 1.2rem;
  border-radius: 8px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 900;
  box-shadow: 0 12px 26px rgba(18, 16, 12, 0.12);
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, box-shadow 160ms ease, color 160ms ease;
}

.button .icon {
  width: 1.12em;
  height: 1.12em;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(18, 16, 12, 0.22);
}

.button:hover .icon-arrow,
.button:focus-visible .icon-arrow,
.activity-card a:hover .icon-arrow,
.activity-card a:focus-visible .icon-arrow {
  transform: translateX(3px);
}

.button:focus-visible,
.activity-card a:focus-visible {
  outline: 3px solid var(--ink);
  outline-offset: 4px;
  box-shadow: 0 0 0 7px var(--gold-soft);
}

.button:hover {
  outline: none;
}

.button span {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  color: inherit;
  line-height: 1.08;
}

.activity-card a span {
  min-width: 0;
  color: inherit;
}

.button.primary {
  border-color: rgba(18, 16, 12, 0.18);
  background: linear-gradient(180deg, #d09a3f, var(--gold));
  color: var(--ink);
  box-shadow: 0 16px 34px rgba(185, 130, 45, 0.3);
}

.button.primary:hover,
.button.primary:focus-visible {
  border-color: rgba(18, 16, 12, 0.28);
  background: linear-gradient(180deg, #e0a849, #c58b30);
  color: var(--ink);
}

.button.secondary {
  border-color: rgba(250, 246, 236, 0.7);
  background: rgba(18, 16, 12, 0.36);
  color: var(--paper);
  box-shadow: inset 0 1px 0 rgba(250, 246, 236, 0.1);
}

.button.secondary:hover,
.button.secondary:focus-visible {
  border-color: rgba(250, 246, 236, 0.92);
  background: rgba(18, 16, 12, 0.58);
  color: var(--paper);
}

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

.button.light:hover,
.button.light:focus-visible {
  background: white;
  color: var(--ink);
}

.button.outline-light {
  border: 1px solid rgba(250, 246, 236, 0.72);
  color: var(--paper);
}

.button.outline-light:hover,
.button.outline-light:focus-visible {
  border-color: var(--paper);
  background: rgba(250, 246, 236, 0.18);
  color: var(--paper);
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 2rem;
}

.trust-strip span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 0.9rem;
  border: 1px solid rgba(234, 215, 170, 0.5);
  border-radius: 8px;
  background: rgba(18, 16, 12, 0.32);
  color: var(--paper);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: inset 0 1px 0 rgba(250, 246, 236, 0.12);
}

.route-note {
  position: absolute;
  z-index: 2;
  right: 5vw;
  bottom: 2.2rem;
  width: 310px;
  padding: 1rem;
  border: 1px solid rgba(250, 246, 236, 0.22);
  border-radius: 8px;
  background: rgba(18, 16, 12, 0.78);
  color: var(--paper);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.route-note span,
.route-note b {
  display: block;
  color: var(--gold-soft);
  font-weight: 900;
}

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

.intro-band {
  padding: 3.3rem 5vw;
  background: var(--sand);
}

.intro-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 2rem;
  align-items: center;
}

.intro-grid > p {
  margin: 0;
  font-size: 1.08rem;
}

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

.service-row span {
  min-height: 56px;
  display: flex;
  align-items: center;
  gap: 0.72rem;
  padding: 0 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(250, 246, 236, 0.62);
  color: var(--ink);
  font-weight: 900;
}

.service-icon {
  width: 2.25rem;
  height: 2.25rem;
  padding: 0.42rem;
  border-radius: 999px;
  background: var(--gold);
  color: var(--ink);
  box-shadow: 0 8px 16px rgba(185, 130, 45, 0.18);
}

.service-row b {
  color: inherit;
}

.section {
  padding: 5rem 5vw;
}

.split,
.planner,
.story,
.tour-highlight {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 2.6rem;
  align-items: start;
}

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

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

.section-heading p,
.tour-copy p,
.story-copy p,
.planner-copy p {
  color: rgba(59, 48, 37, 0.74);
}

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

.price-tab-list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  border-bottom: 1px solid var(--line);
  background: var(--charcoal);
}

.price-tab-button {
  min-height: 54px;
  border: 0;
  border-right: 1px solid rgba(250, 246, 236, 0.12);
  background: transparent;
  color: rgba(250, 246, 236, 0.74);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.price-tab-button:hover,
.price-tab-button:focus-visible,
.price-tab-button.is-active {
  background: var(--gold);
  color: var(--ink);
}

.price-group {
  padding: 1.1rem;
}

.price-group-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.85rem;
}

.price-group-heading p {
  margin: 0;
  color: rgba(59, 48, 37, 0.78);
  font-size: 0.9rem;
  font-weight: 800;
}

.price-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.82rem 0;
  border-top: 1px solid rgba(18, 16, 12, 0.11);
}

.price-row span {
  font-weight: 800;
}

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

.tour-highlight {
  align-items: stretch;
  max-width: none;
  grid-template-columns: minmax(340px, 42vw) minmax(0, 1fr);
  gap: 0;
  padding: 0;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(44, 90, 61, 0.1), transparent 28%),
    var(--sand);
}

.tour-image {
  min-height: clamp(360px, 36vw, 500px);
  margin-left: 0;
}

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

.tour-copy {
  max-width: 820px;
  padding: 4rem max(5vw, calc((100vw - 1180px) / 2)) 4rem 4rem;
}

.tour-copy h2 {
  font-size: clamp(2.35rem, 4.8vw, 4.05rem);
}

.tour-copy p {
  max-width: 700px;
  font-size: 1.06rem;
}

.tour-prices {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  max-width: 720px;
  margin-top: 2rem;
}

.tour-prices div {
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.88);
  box-shadow: 0 12px 28px rgba(18, 16, 12, 0.08);
}

.tour-prices span {
  display: block;
  color: rgba(59, 48, 37, 0.78);
  font-size: 0.86rem;
  font-weight: 900;
}

.tour-prices strong {
  display: block;
  margin-top: 0.35rem;
  color: var(--ink);
  font-size: 1.1rem;
}

.tour-ideas-section {
  position: relative;
  background:
    linear-gradient(180deg, #f7edd9 0%, #f8f3e7 46%, #e8efe5 100%);
}

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

.activity-card {
  display: grid;
  grid-template-rows: 190px 1fr;
  border: 1px solid rgba(44, 90, 61, 0.18);
  border-radius: 8px;
  background: linear-gradient(180deg, #fffaf0, #f5ecd8);
  overflow: hidden;
  box-shadow: 0 18px 38px rgba(18, 16, 12, 0.11);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.activity-card:hover,
.activity-card:focus-within {
  border-color: rgba(44, 90, 61, 0.34);
  box-shadow: 0 24px 48px rgba(18, 16, 12, 0.16);
  transform: translateY(-3px);
}

.activity-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  filter: saturate(1.04) contrast(1.02);
}

.activity-card div {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  padding: 1rem;
}

.activity-card div > span {
  align-self: flex-start;
  padding: 0.32rem 0.55rem;
  border: 1px solid rgba(44, 90, 61, 0.18);
  border-radius: 8px;
  background: rgba(44, 90, 61, 0.1);
  color: var(--leaf);
  font-weight: 900;
  font-size: 0.84rem;
}

.activity-card h3 {
  margin-top: 0.45rem;
}

.activity-card p {
  margin: 0.75rem 0 1rem;
  color: rgba(59, 48, 37, 0.72);
}

.activity-card a {
  margin-top: auto;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0 0.85rem;
  border-radius: 8px;
  border: 1px solid rgba(18, 16, 12, 0.12);
  background: var(--gold);
  color: var(--ink);
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(185, 130, 45, 0.2);
}

.activity-card a:hover,
.activity-card a:focus-visible {
  background: var(--ink);
  color: var(--paper);
}

.confidence-band {
  padding: 4.8rem 5vw;
  background:
    linear-gradient(135deg, rgba(18, 16, 12, 0.94), rgba(45, 34, 22, 0.92)),
    url("assets/images/melasti-beach.jpg") center / cover;
  color: var(--paper);
}

.confidence-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 2rem;
  align-items: start;
}

.confidence-band h2,
.confidence-band h3 {
  color: var(--paper);
}

.confidence-band h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

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

.confidence-grid article {
  min-height: 220px;
  padding: 1.1rem;
  border: 1px solid rgba(250, 246, 236, 0.16);
  border-radius: 8px;
  background: rgba(250, 246, 236, 0.08);
  box-shadow: inset 0 1px 0 rgba(250, 246, 236, 0.1);
}

.confidence-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 32px;
  margin-bottom: 0.85rem;
  border-radius: 999px;
  background: var(--gold);
  color: var(--ink);
  font-weight: 900;
}

.confidence-grid p {
  color: rgba(250, 246, 236, 0.76);
}

.planner {
  align-items: center;
  max-width: none;
  padding: 5rem max(5vw, calc((100vw - 1180px) / 2));
  background:
    linear-gradient(90deg, rgba(250, 246, 236, 0.96), rgba(241, 231, 211, 0.86)),
    url("assets/images/handara-gate.jpg") center / cover;
}

.planner-tool {
  border: 1px solid rgba(18, 16, 12, 0.18);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.92);
  box-shadow: 0 32px 80px rgba(18, 16, 12, 0.18);
  overflow: hidden;
  backdrop-filter: blur(10px);
}

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

legend {
  grid-column: 1 / -1;
  margin-bottom: 0.4rem;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.4rem;
  font-weight: 900;
}

fieldset label {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  min-height: 48px;
  padding: 0.75rem;
  border: 1px solid rgba(18, 16, 12, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.62);
  font-weight: 800;
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

fieldset label:has(input:checked) {
  border-color: rgba(185, 130, 45, 0.78);
  background: rgba(185, 130, 45, 0.18);
  box-shadow: inset 0 0 0 1px rgba(185, 130, 45, 0.14), 0 10px 24px rgba(18, 16, 12, 0.08);
}

fieldset label:hover {
  border-color: rgba(44, 90, 61, 0.32);
  background: rgba(255, 255, 255, 0.82);
}

fieldset label:focus-within {
  outline: 3px solid var(--ink);
  outline-offset: 3px;
  box-shadow: 0 0 0 6px var(--gold-soft);
}

fieldset label span {
  color: var(--ink);
  line-height: 1.25;
}

input[type="checkbox"] {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  accent-color: var(--gold);
}

.planner-controls,
.planner-result {
  padding: 1.2rem;
  border-top: 1px solid var(--line);
}

.planner-controls label,
.planner-result > span {
  display: block;
  margin-bottom: 0.45rem;
  color: rgba(59, 48, 37, 0.68);
  font-size: 0.84rem;
  font-weight: 900;
}

.planner-result a.button > span {
  display: inline-flex;
  align-items: center;
  margin: 0;
  color: inherit;
  font-size: inherit;
  line-height: 1.08;
}

select {
  width: 100%;
  min-height: 48px;
  padding: 0 0.8rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  color: var(--ink);
  font: inherit;
  font-weight: 800;
}

select:focus-visible {
  border-color: var(--gold-dark);
  box-shadow: 0 0 0 6px var(--gold-soft);
}

.planner-result p {
  margin: 0 0 1rem;
  color: var(--ink);
  font-weight: 900;
  white-space: pre-line;
}

.planner-result {
  background: rgba(18, 16, 12, 0.04);
}

.story {
  align-items: center;
}

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

.trust-list li {
  min-height: 54px;
  display: flex;
  align-items: center;
  padding: 0 0.9rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffaf0;
  font-weight: 900;
}

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

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

.driver-panel div {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  padding: 1rem;
  border-radius: 8px;
  background: rgba(18, 16, 12, 0.78);
}

.driver-panel span {
  display: block;
  color: var(--gold-soft);
  font-weight: 900;
}

.driver-panel strong {
  display: block;
  margin-top: 0.25rem;
  color: var(--paper);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
  line-height: 1.1;
}

.putu-profile-card {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 1rem;
  align-items: center;
  margin-top: 1.5rem;
  padding: 1rem;
  border: 1px solid rgba(250, 246, 236, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(44, 90, 61, 0.22), transparent 55%),
    var(--charcoal);
  color: var(--paper);
  box-shadow: 0 18px 42px rgba(18, 16, 12, 0.16);
}

.putu-profile-photo {
  width: 112px;
  height: 112px;
  border-radius: 8px;
  overflow: hidden;
}

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

.putu-profile-card span {
  color: var(--gold-soft);
  font-size: 0.84rem;
  font-weight: 900;
}

.putu-profile-card strong {
  display: block;
  color: var(--paper);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
}

.putu-profile-card p {
  margin: 0.25rem 0 0;
  color: rgba(250, 246, 236, 0.72);
}

.about-section {
  border-top: 1px solid var(--line);
  max-width: none;
  padding: 5rem max(5vw, calc((100vw - 1180px) / 2));
  background:
    linear-gradient(90deg, var(--paper) 0%, var(--paper) 52%, rgba(44, 90, 61, 0.1) 52%, rgba(44, 90, 61, 0.1) 100%);
}

.gallery-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.gallery-stack img {
  width: 100%;
  height: 390px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(18, 16, 12, 0.12);
}

.gallery-stack .guest-selfie {
  object-position: right center;
}

.faq-section {
  background: var(--sand);
}

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

.faq-grid details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffaf0;
  overflow: hidden;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.faq-grid details:hover,
.faq-grid details:focus-within {
  border-color: rgba(44, 90, 61, 0.3);
  box-shadow: 0 14px 32px rgba(18, 16, 12, 0.09);
}

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

.faq-grid summary::-webkit-details-marker {
  display: none;
}

.faq-grid summary::marker {
  content: "";
}

.faq-icon {
  color: var(--gold-dark);
  transition: transform 180ms ease;
}

.faq-grid details[open] .faq-icon {
  transform: rotate(180deg);
}

.faq-grid p {
  margin: 0;
  padding: 0 1.1rem 1.1rem;
  color: rgba(59, 48, 37, 0.72);
}

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

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

.contact-section p {
  max-width: 720px;
  color: rgba(250, 246, 236, 0.82);
}

.contact-section .contact-actions {
  justify-content: flex-end;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.4rem 5vw;
  background: var(--ink);
  color: rgba(250, 246, 236, 0.72);
  font-size: 0.92rem;
}

.site-footer a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  min-height: 30px;
  color: var(--paper);
  text-decoration: none;
  font-weight: 800;
}

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

.footer-links {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 1rem;
}

.motion-ready {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 560ms ease, transform 560ms ease;
}

.motion-ready.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-content,
.route-note {
  animation: fade-up 700ms ease both;
}

.route-note {
  animation-delay: 120ms;
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

  .motion-ready {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1120px) {
  .price-tab-list {
    grid-template-columns: repeat(3, 1fr);
  }

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

@media (max-width: 960px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.35rem);
    right: 5vw;
    left: 5vw;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 0.7rem;
    border-radius: 8px;
    background: rgba(18, 16, 12, 0.97);
    box-shadow: var(--shadow);
  }

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

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

  .language-menu {
    margin: 0;
    padding: 0.45rem 0 0;
    border-left: 0;
    border-top: 1px solid rgba(250, 246, 236, 0.22);
  }

  .language-menu-toggle {
    width: 100%;
    min-height: 44px;
  }

  .language-menu-list {
    position: static;
    width: 100%;
    max-height: 48vh;
    margin-top: 0.45rem;
    box-shadow: none;
  }

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

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

  .tour-highlight {
    padding: 0;
  }

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

  .tour-copy {
    padding: 3rem 5vw;
  }

  .contact-section {
    grid-template-columns: 1fr;
  }

  .contact-section .contact-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 720px) {
  .brand small {
    display: none;
  }

  .hero {
    min-height: 90svh;
  }

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

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

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

  .service-row,
  .tour-prices,
  fieldset,
  .trust-list,
  .activity-grid,
  .gallery-stack {
    grid-template-columns: 1fr;
  }

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

  .price-group-heading {
    display: block;
  }

  .price-group-heading p {
    margin-top: 0.25rem;
  }

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

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

  .driver-panel img,
  .gallery-stack img {
    height: 360px;
  }

  .putu-profile-card {
    grid-template-columns: 88px 1fr;
    align-items: start;
  }

  .putu-profile-photo {
    width: 88px;
    height: 88px;
  }

  .section {
    padding: 3.8rem 5vw;
  }

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

  .footer-links {
    justify-content: flex-start;
  }
}
