@font-face {
  font-family: "DM Serif Display";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("fonts/dm-serif-display-regular-latin.woff2") format("woff2");
}

@font-face {
  font-family: "DM Serif Display";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("fonts/dm-serif-display-italic-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Nunito Sans";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("fonts/nunito-sans-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Nunito Sans";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("fonts/nunito-sans-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Nunito Sans";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("fonts/nunito-sans-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Nunito Sans";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("fonts/nunito-sans-latin.woff2") format("woff2");
}

:root {
  --bg: #f4f4f4;
  --white: #fff;
  --text: #1f1f1f;
  --muted: #6a6a6a;
  --accent: #c7793f;
  --accent-dark: #a96533;
  --line: #e6e0da;
  --title: "DM Serif Display", Georgia, serif;
  --body: "Nunito Sans", "Segoe UI", Arial, sans-serif;
  --radius: 16px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.45;
  overflow-x: hidden;
}

body.page-loading:not(.needs-hotel-selection) {
  cursor: progress;
}

.page-skeleton {
  position: fixed;
  inset: 0;
  z-index: 110;
  background: #f3f1ee;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .22s ease, visibility .22s ease;
}

body.page-loading .page-skeleton {
  opacity: 1;
  visibility: visible;
}

.page-skeleton-top {
  height: 100px;
  border-bottom: 1px solid #e4ddd6;
  background: linear-gradient(180deg, rgba(18, 21, 25, 0.96), rgba(18, 21, 25, 0.72));
}

.page-skeleton-hero {
  padding: clamp(42px, 9vh, 86px) 22px 28px;
  display: grid;
  justify-items: center;
  gap: 10px;
}

.page-skeleton-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 10px;
}

.sk {
  display: block;
  border-radius: 10px;
  background:
    linear-gradient(100deg, #ece8e3 30%, #f9f7f4 45%, #ece8e3 60%),
    #ece8e3;
  background-size: 220% 100%;
  animation: skeleton-shimmer 1.35s ease-in-out infinite;
}

.sk-kicker {
  width: min(240px, 66vw);
  height: 12px;
}

.sk-title {
  width: min(560px, 84vw);
  height: clamp(30px, 4.2vw, 52px);
}

.sk-title.short {
  width: min(340px, 62vw);
}

.sk-block {
  height: 120px;
}

.sk-block.tall {
  height: 220px;
}

@keyframes skeleton-shimmer {
  0% { background-position: 100% 0; }
  100% { background-position: -100% 0; }
}

body.needs-hotel-selection {
  overflow: hidden;
}

a { color: inherit; text-decoration: none; }
.container { width: min(1220px, 94vw); margin: 0 auto; }

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 60;
  background: linear-gradient(180deg, rgba(8, 10, 14, 0.82), rgba(8, 10, 14, 0.32));
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  backdrop-filter: none;
}

.view-home .topbar { border-bottom-color: rgba(255, 255, 255, 0.2); }

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 100px;
  gap: 18px;
}

.brand {
  font-size: 2rem;
  font-family: var(--title);
  letter-spacing: .03em;
  font-weight: 500;
  line-height: 1;
}

.brand span { color: #d7b18f; }

.brand-logo {
  max-height: 58px;
  width: auto;
  object-fit: contain;
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
  padding: 0;
  cursor: pointer;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav a {
  margin-left: 0;
  padding: 10px 14px;
  font-size: .84rem;
  text-transform: uppercase;
  letter-spacing: .18em;
  opacity: .92;
  position: relative;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 7px;
  height: 1px;
  background: #c6783e;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .25s ease;
}

.site-nav a:hover,
.site-nav a.active {
  opacity: 1;
}

.site-nav a:hover::after,
.site-nav a.active::after {
  transform: scaleX(1);
}

.hotel-switch {
  background: #fffdfb;
  border-bottom: 1px solid #efe8e1;
  margin-top: 100px;
}

.hotel-switch-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  padding: 12px 0;
}

.hotel-switch strong { font-size: .95rem; }
.hotel-switch span { color: #2f2f2f; }

.hotel-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.hotel-actions a {
  border: 1px solid var(--line);
  padding: 7px 12px;
  border-radius: 999px;
  font-size: .82rem;
  background: #fff;
}

.hotel-actions a:hover {
  background: #f9f5f1;
  border-color: #dac8b8;
}

.hotel-actions a.ghost {
  background: #f5ede6;
  border-color: #d9bfaa;
}

.hotel-picker-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    radial-gradient(circle at 20% 10%, rgba(199, 121, 63, 0.22), transparent 45%),
    radial-gradient(circle at 80% 95%, rgba(255, 255, 255, 0.2), transparent 50%),
    rgba(12, 12, 12, 0.62);
  backdrop-filter: blur(9px);
}

.hotel-picker-card {
  width: min(520px, 100%);
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.9);
  padding: 28px;
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.22);
}

.hotel-picker-card h2 {
  margin: 0 0 8px;
  font-family: var(--title);
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 500;
}

.hotel-picker-card p {
  margin: 0 0 16px;
  color: #565656;
}

.hotel-picker-card form {
  display: grid;
  gap: 10px;
}

.hotel-picker-card label {
  font-size: .84rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: #464646;
}

.hotel-picker-card select {
  width: 100%;
  border: 1px solid #d9cbbc;
  border-radius: 10px;
  padding: 12px 13px;
  font: inherit;
  color: #1f1f1f;
  background: #fff;
}

.hotel-picker-card .btn {
  width: 100%;
  margin-top: 4px;
}

.hotel-picker-card .btn:disabled {
  opacity: .8;
  cursor: wait;
}

.hotel-picker-wait {
  margin: 0;
  font-size: .88rem;
  color: #8b5a31;
}

.flash {
  margin: 14px 0 0;
  padding: 11px 14px;
  border-radius: 10px;
  font-size: .92rem;
}

.flash.ok { background: #e8f8ec; border: 1px solid #bce0c4; }
.flash.error { background: #fdeced; border: 1px solid #e8bcc0; }

.hero {
  position: relative;
  overflow: hidden;
  background: #111;
}

.home-hero {
  height: clamp(520px, 82vh, 920px);
}

.inner-hero {
  height: 330px;
  margin-bottom: 30px;
}

.view-detail .detail-hero {
  height: clamp(520px, 74vh, 860px);
  margin-bottom: 0;
}

.view-detail .detail-hero > img,
.view-detail .detail-hero > video {
  object-position: center center;
}

.view-detail .detail-hero .hero-overlay {
  padding: 130px 20px 74px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.24) 18%, rgba(0, 0, 0, 0.66) 100%);
}

.view-detail .detail-hero .hero-overlay h1 {
  margin: 0;
  max-width: 18ch;
  font-size: clamp(2.6rem, 5.5vw, 5.2rem);
  line-height: 1.05;
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
}

.hero > video,
.hero > img {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-overlay {
  z-index: 2;
}

.home-hero > video {
  object-position: center center;
}

.view-tours .inner-hero > img {
  object-position: center 34% !important;
  transform: none !important;
  transform-origin: center center !important;
}

.view-tours .inner-hero {
  height: clamp(430px, 66vh, 760px) !important;
  margin-bottom: 0;
}

.view-tours .inner-hero .hero-overlay {
  padding: 126px 22px 70px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.22) 22%, rgba(0, 0, 0, 0.64) 100%);
}

.view-tours .inner-hero .hero-overlay h1 {
  margin: 10px 0 0;
  font-size: clamp(2.9rem, 6.4vw, 5.4rem);
  line-height: 1.02;
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.34);
}

.view-tours .inner-hero .hero-overlay p {
  font-size: clamp(0.76rem, 1.05vw, 0.96rem);
  letter-spacing: .16em;
}

.view-tours .tours-layout {
  position: relative;
  z-index: 4;
  margin-top: -28px;
  margin-bottom: 60px;
  gap: 28px;
  align-items: start;
}

.view-tours .filters-panel,
.view-tours .tour-results {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 20px 44px rgba(10, 14, 18, 0.12);
}

.view-tours .filters-panel {
  padding: 14px;
  top: 104px;
}

.view-tours .tour-results {
  padding: 16px;
}

.view-tours .tour-grid {
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 18px;
}

.view-tours .tour-card {
  border-radius: 14px;
  box-shadow: 0 10px 26px rgba(16, 18, 24, 0.08);
}

.view-tours .tour-card img {
  aspect-ratio: 16 / 10;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  padding: 20px;
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
  color: #fff;
  background: linear-gradient(180deg, rgba(0,0,0,.18), rgba(0,0,0,.58));
}

.hero-logo {
  max-width: min(420px, 86vw);
  max-height: 120px;
  object-fit: contain;
  margin-bottom: 12px;
}

.hero-overlay p {
  margin: 0;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .78rem;
}

.hero-overlay h1 {
  margin: 12px 0 10px;
  font-family: var(--title);
  font-size: clamp(2.3rem, 4.8vw, 4.1rem);
  font-weight: 500;
  line-height: 1.03;
}

.btn {
  border: 0;
  background: var(--accent);
  color: #fff;
  border-radius: 8px;
  padding: 11px 20px;
  display: inline-block;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  cursor: pointer;
}

.btn:hover { background: var(--accent-dark); }
.btn.ghost {
  border: 1px solid var(--accent);
  color: var(--accent);
  background: #fff;
}

.kicker {
  color: #9f7d61;
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin: 0;
}

.kicker.center, .center { text-align: center; }

.split {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 34px;
  align-items: center;
  margin: 62px auto;
}

.split h2,
.category-section h2,
.trending-section h2,
.plan-section h2,
.related h2,
.testimonials h2 {
  margin: 10px 0 14px;
  font-family: var(--title);
  font-size: clamp(2rem, 3.2vw, 3.1rem);
  font-weight: 500;
  line-height: 1.08;
}

.split p:not(.kicker) {
  color: #494949;
  font-size: 1rem;
}

.about-section {
  align-items: start;
  margin: 84px auto 60px;
  gap: 24px;
}

.about-copy h2 {
  max-width: 560px;
  font-size: clamp(2.4rem, 4.9vw, 5rem);
  line-height: 1.02;
  margin-bottom: 22px;
}

.about-copy p {
  max-width: 700px;
  margin: 0 0 18px;
  font-size: clamp(1rem, 1.1vw, 1.38rem);
  line-height: 1.7;
}

.about-copy .about-elements-line {
  color: #2f2f2f;
}

.about-copy .btn {
  margin-top: 22px;
  width: clamp(180px, 20vw, 250px);
  min-height: clamp(44px, 3.8vw, 56px);
  border-radius: 14px;
  font-size: clamp(.92rem, 1.05vw, 1.15rem);
  letter-spacing: .05em;
  text-transform: uppercase;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.about-visual {
  position: relative;
  min-height: clamp(500px, 54vw, 760px);
  width: 100%;
  overflow: hidden;
}

.about-back,
.about-front {
  position: absolute;
  border-radius: 32px;
  object-fit: cover;
  display: block;
  max-width: 100%;
}

.about-back {
  right: 0;
  top: 56px;
  width: min(620px, 82%);
  aspect-ratio: 3 / 4;
  height: auto;
  object-position: right center;
}

.about-front {
  left: 0;
  top: 122px;
  width: min(560px, 74%);
  aspect-ratio: 3 / 4;
  height: auto;
  z-index: 2;
  object-position: center;
  box-shadow: 0 24px 36px rgba(0, 0, 0, 0.14);
}

.about-element-stack {
  position: absolute;
  right: 34px;
  top: 120px;
  z-index: 3;
  display: grid;
  gap: 18px;
  justify-items: center;
  color: rgba(255, 255, 255, 0.95);
}

.about-element-stack span {
  font-size: 3.6rem;
  line-height: 1;
  font-weight: 600;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.22);
}

.split-image {
  position: relative;
}

.split-image img {
  width: 100%;
  max-height: 430px;
  object-fit: cover;
  border-radius: var(--radius);
  display: block;
}

.element-icons {
  position: absolute;
  right: 16px;
  top: 16px;
  display: grid;
  gap: 8px;
}

.element-icons span {
  padding: 7px 10px;
  background: rgba(255,255,255,.9);
  border-radius: 999px;
  font-size: .74rem;
  border: 1px solid #e7dfd8;
}

.category-section,
.trending-section,
.related { margin: 58px auto; }

.category-kicker {
  margin-bottom: 10px;
  color: #5f5f5f;
  font-size: clamp(.72rem, .9vw, .9rem);
  letter-spacing: .08em;
  text-transform: uppercase;
}

.category-title {
  max-width: min(1320px, 92vw);
  margin: 0 auto 20px;
  font-size: clamp(2rem, 5.2vw, 5.4rem);
  line-height: 1.06;
  text-wrap: balance;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.category-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  aspect-ratio: 16 / 10;
  min-height: 220px;
  display: block;
}

.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.category-card span {
  position: absolute;
  left: 12px;
  bottom: 10px;
  color: #fff;
  font-size: 1.2rem;
  font-family: var(--title);
  text-shadow: 0 3px 10px rgba(0,0,0,.5);
}

.wide-video-band {
  position: relative;
  margin: 56px 0 34px;
  height: clamp(300px, 44vw, 640px);
  min-height: 0;
  max-height: 640px;
  overflow: hidden;
}

.wide-video-band img {
  width: 100%;
  height: 100%;
  min-height: 0;
  max-height: none;
  object-fit: cover;
  display: block;
}

.wide-video-band video {
  width: 100%;
  height: 100%;
  min-height: 0;
  max-height: none;
  object-fit: cover;
  display: block;
}

.wide-video-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(176, 128, 97, 0.35), rgba(26, 30, 26, 0.5)),
    linear-gradient(90deg, rgba(18, 20, 18, 0.15), rgba(18, 20, 18, 0.15));
}

.wide-video-overlay h2 {
  margin: 0;
  font-family: var(--title);
  font-size: clamp(2.2rem, 4.5vw, 5.2rem);
  font-weight: 500;
  line-height: 1.08;
  max-width: min(1280px, 90vw);
  text-wrap: balance;
  text-shadow: 0 7px 26px rgba(0, 0, 0, 0.4);
}

.tour-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.tour-card {
  display: block;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
}

.tour-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}

.tour-content { padding: 12px 12px 14px; }
.tour-content h3 {
  margin: 0 0 7px;
  font-size: 1.02rem;
  font-weight: 500;
}

.tour-content p {
  margin: 0 0 9px;
  font-size: .9rem;
  color: #636363;
  line-height: 1.45;
}

.tour-meta {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: center;
  gap: 8px;
  font-size: .82rem;
}

.tour-meta strong {
  color: #2b2b2b;
  font-weight: 600;
}

.testimonials {
  margin: 60px 0 0;
  padding: 62px 0;
  background: #eee3db;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 22px;
}

.quotes-mark {
  text-align: center;
  color: var(--accent);
  font-size: 4.9rem;
  line-height: .8;
  font-family: var(--title);
  margin-bottom: 2px;
}

.testimonials .kicker {
  color: #676767;
  font-size: .84rem;
}

.testimonials h2 {
  margin-top: 8px;
  margin-bottom: 24px;
}

.g-card {
  background: #fff;
  border: 1px solid #e4dfd9;
  border-radius: 8px;
  padding: 16px 16px 14px;
  min-height: 292px;
}

.g-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.g-user {
  display: flex;
  align-items: center;
  gap: 10px;
}

.g-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #c5d2e8;
  color: #223;
  display: grid;
  place-items: center;
  font-weight: 600;
}

.g-avatar.pink { background: #ef4b93; color: #fff; }
.g-avatar.purple { background: #8b36bf; color: #fff; }
.g-avatar.photo { background: #d7b18f; color: #fff; }

.g-user strong {
  display: block;
  font-size: .92rem;
  line-height: 1.1;
}

.g-user small {
  display: block;
  color: #8f8f8f;
  font-size: .78rem;
  margin-top: 3px;
}

.g-logo {
  color: #4285f4;
  font-weight: 700;
  font-size: 1.35rem;
  font-family: Arial, sans-serif;
}

.g-stars {
  color: #f5b301;
  letter-spacing: .07em;
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.g-card p {
  margin: 0;
  font-size: .95rem;
  color: #232323;
  line-height: 1.42;
}

.testimonial-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 10px;
  min-height: 24px;
}

.testimonial-toggle {
  border: 0;
  background: transparent;
  color: #8d8d8d;
  font: inherit;
  font-size: .88rem;
  padding: 0;
  cursor: pointer;
}

.testimonial-toggle:hover,
.testimonial-source:hover {
  color: #666;
}

.testimonial-source {
  color: #8d8d8d;
  font-size: .82rem;
}

.tours-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 24px;
  margin: 10px auto 56px;
}

.filters-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px;
  position: sticky;
  top: 98px;
  height: fit-content;
  box-shadow: 0 8px 20px rgba(14, 18, 22, 0.04);
}

.filters-toggle {
  display: none;
  width: 100%;
  border: 1px solid #d8c6b7;
  background: #fff9f3;
  color: #533a26;
  border-radius: 10px;
  padding: 10px 12px;
  text-align: left;
  font: inherit;
  font-size: .86rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  cursor: pointer;
}

.filters-toggle::after {
  content: "▾";
  float: right;
  transition: transform .2s ease;
}

.filters-panel.open .filters-toggle::after {
  transform: rotate(180deg);
}

.filters-panel h3 {
  margin: 6px 0 6px;
  font-size: .74rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: #4d4a47;
}

.filters-panel ul {
  list-style: none;
  margin: 0 0 10px;
  padding: 0;
  display: grid;
  gap: 4px;
}

.filters-panel li a {
  display: inline-flex;
  align-items: center;
  width: 100%;
  padding: 6px 8px;
  font-size: .86rem;
  color: #4c4c4c;
  border-radius: 8px;
  border: 1px solid transparent;
  background: #fff;
  transition: background .2s ease, border-color .2s ease, color .2s ease;
}

.filters-panel li a:hover {
  background: #faf5f0;
  border-color: #eadbce;
  color: #33251a;
}

.filters-panel li a.active {
  color: #fff;
  font-weight: 600;
  background: var(--accent);
  border-color: var(--accent);
}

.list-head p {
  margin: 0 0 12px;
  color: #666;
}

.view-tours .list-head p {
  margin-bottom: 16px;
  color: #4b4b4b;
  font-size: clamp(1.02rem, 1.35vw, 1.24rem);
  font-weight: 600;
}

.tour-loading {
  margin: 0 0 12px;
  font-size: .9rem;
  color: #7a7a7a;
}

.empty-box {
  background: #fff;
  border: 1px dashed #d8c2af;
  border-radius: 12px;
  padding: 22px;
}

.back-link {
  display: inline-flex;
  margin: 16px auto;
  color: #57422f;
  font-weight: 500;
}

.detail-layout {
  display: grid;
  grid-template-columns: 1fr 330px;
  gap: 22px;
  margin-bottom: 52px;
}

.view-detail .detail-layout {
  position: relative;
  z-index: 4;
  margin-top: -38px;
  margin-bottom: 56px;
  align-items: start;
}

.detail-main-panel,
.book-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px;
}

.view-detail .detail-main-panel,
.view-detail .book-panel {
  border-radius: 18px;
  box-shadow: 0 20px 44px rgba(10, 14, 18, 0.14);
}

.view-detail .book-panel {
  padding: 0 16px 16px;
  overflow: hidden;
}

.view-detail .book-panel h3 {
  margin: 0 -16px 14px;
  border-radius: 0;
  padding: 14px 12px;
}

.tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}

.tab-btn {
  -webkit-appearance: none;
  appearance: none;
  border: 1px solid var(--line);
  background: #f7f2ee;
  border-radius: 8px;
  padding: 8px 12px;
  font-size: .84rem;
  cursor: pointer;
  color: #1f1f1f;
  -webkit-text-fill-color: #1f1f1f;
}

.tab-btn.active {
  background: var(--accent);
  color: #fff;
  -webkit-text-fill-color: #fff;
  border-color: var(--accent);
}

.tab-btn:link,
.tab-btn:visited,
.tab-btn:hover,
.tab-btn:focus,
.tab-btn:active {
  color: #1f1f1f;
  -webkit-text-fill-color: #1f1f1f;
}

.tab-btn.active:link,
.tab-btn.active:visited,
.tab-btn.active:hover,
.tab-btn.active:focus,
.tab-btn.active:active {
  color: #fff;
  -webkit-text-fill-color: #fff;
}

.tab-panel { display: none; }
.tab-panel.active { display: block; }

.intro {
  margin: 0 0 14px;
  color: #3f3f3f;
  line-height: 1.74;
}

.accordion {
  border: 1px solid var(--line);
  border-radius: 10px;
  margin: 9px 0;
  overflow: hidden;
}

.accordion summary {
  cursor: pointer;
  background: #f8f4f0;
  padding: 10px 12px;
  font-size: .92rem;
  font-weight: 500;
}

.accordion div {
  padding: 8px 12px 12px;
  color: #535353;
}

.include-status-list {
  list-style: none;
  margin: 2px 0 0;
  padding: 0;
}

.include-status-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 0;
  font-size: .94rem;
  line-height: 1.35;
}

.include-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  padding: 2px 8px;
  border-radius: 12px;
  border: 1px solid #8ea996;
  background: #eaf5ee;
  color: #245c3a;
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .03em;
  text-transform: uppercase;
  line-height: 1.1;
  text-align: center;
  flex: 0 0 auto;
  white-space: nowrap;
}

.include-status-list li.is-not-included .include-pill {
  border-color: #d6a08d;
  background: #fdf0eb;
  color: #8b3f22;
}

.include-item-text {
  display: inline-block;
  padding-top: 0;
  font-size: 1em;
  line-height: 1.35;
}

.badge-row {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.badge-row div {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 8px;
  font-size: .82rem;
}

.badge-row strong { display: block; margin-bottom: 3px; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.gallery-loading,
.gallery-empty {
  margin: 0 0 12px;
  font-size: .95rem;
  color: #666;
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  height: 100%;
  border-radius: 8px;
  display: block;
  object-fit: cover;
  object-position: center;
  cursor: zoom-in;
  transition: transform .2s ease, box-shadow .2s ease;
}

.gallery-grid img:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.16);
}

html.lightbox-open,
body.lightbox-open {
  overflow: hidden;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  height: 100dvh;
  min-height: 100vh;
  z-index: 170;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 24px;
  background: rgba(8, 8, 8, 0.92);
  overflow: hidden;
  overscroll-behavior: contain;
}

.gallery-lightbox[hidden] {
  display: none !important;
}

.gallery-lightbox-stage {
  margin: 0;
  display: grid;
  place-items: center;
  width: 100%;
  height: min(86vh, 980px);
}

.gallery-lightbox-stage img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.35);
}

.gallery-lightbox-close {
  position: fixed;
  top: max(12px, env(safe-area-inset-top));
  right: max(12px, env(safe-area-inset-right));
  z-index: 190;
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(16, 16, 16, 0.58);
  color: #fff;
  border-radius: 999px;
  padding: 9px 13px;
  font: inherit;
  cursor: pointer;
}

.gallery-lightbox-nav {
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: rgba(18, 18, 18, 0.65);
  color: #fff;
  border-radius: 999px;
  padding: 10px 14px;
  font: inherit;
  font-size: .95rem;
  cursor: pointer;
}

.gallery-lightbox-nav:hover,
.gallery-lightbox-close:hover {
  background: rgba(34, 34, 34, 0.88);
}

.book-panel h3 {
  margin: -16px -16px 14px;
  background: var(--accent);
  color: #fff;
  font-size: 1.05rem;
  text-align: center;
  padding: 12px;
  border-radius: 12px 12px 0 0;
  font-weight: 500;
}

.price-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 2px 0 4px;
}

.price-card {
  border: 1px solid #b8cbe3;
  background: #f2f6fd;
  border-radius: 12px;
  padding: 8px 10px;
}

.price-card-label {
  display: block;
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: #4f6990;
  font-weight: 700;
  line-height: 1.1;
}

.price-card-value {
  display: block;
  margin-top: 2px;
  color: #0d3f79;
  font-size: clamp(1.1rem, 1.8vw, 1.85rem);
  line-height: 1.05;
  font-weight: 800;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.booking-form {
  display: grid;
  gap: 9px;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px;
  font: inherit;
  background: #fff;
}

.booking-form input[type="date"] {
  display: block;
  line-height: 1.2;
  font-size: 16px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.booking-form input[type="date"]::-webkit-date-and-time-value {
  min-height: 1.2em;
  text-align: left;
}

.booking-form input[type="date"]::-webkit-datetime-edit {
  padding: 0;
}

.booking-form input[type="number"] {
  font-size: 16px;
}

/* iOS Safari auto-zooms focused fields when font-size is below 16px. */
@supports (-webkit-touch-callout: none) {
  .booking-form input,
  .booking-form select,
  .booking-form textarea {
    font-size: 16px !important;
  }
}

.booking-form label {
  font-size: .86rem;
  color: #555;
}

.extras-panel {
  margin: 2px 0 6px;
  border: 1px solid #e4d9ce;
  border-radius: 14px;
  background: #fff;
  padding: 12px;
  display: grid;
  gap: 8px;
}

.extras-title {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  color: #2b2b2b;
}

.extras-hint {
  margin: -2px 0 4px;
  font-size: .76rem;
  color: #6a6a6a;
  line-height: 1.35;
}

.qty-line {
  display: grid;
  grid-template-columns: 78px 1fr 1fr;
  align-items: center;
  gap: 8px;
  font-size: .82rem;
}

.extra-card {
  border: 1px solid #e6ddd3;
  border-radius: 12px;
  background: #faf7f3;
  padding: 10px;
  display: grid;
  gap: 8px;
}

.extra-card + .extra-card {
  margin-top: 6px;
}

.extra-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  padding-bottom: 6px;
  border-bottom: 1px dashed #d9cfc4;
}

.extra-name {
  font-size: .95rem;
  line-height: 1.25;
  font-weight: 600;
  color: #2e2e2e;
}

.extra_line_total {
  font-size: .95rem;
  color: #1f1f1f;
  white-space: nowrap;
}

.extra-rows {
  display: grid;
  gap: 7px;
}

.extra-qty-row {
  display: grid;
  grid-template-columns: 66px 82px minmax(0, 1fr);
  align-items: center;
  gap: 8px;
}

.extra-col-label {
  font-size: .8rem;
  color: #585858;
}

.extra_qty_select {
  width: 82px !important;
  min-width: 82px;
  max-width: 82px;
  padding: 6px 30px 6px 10px !important;
  border-radius: 10px !important;
  min-height: 40px;
}

.extra_math {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  flex-wrap: wrap;
}

.extra_price,
.extra_total {
  font-size: .78rem;
  color: #3f3f3f;
  white-space: nowrap;
}

.extra_total {
  font-weight: 600;
}

.extra-card-inquiry .extra-qty-row {
  grid-template-columns: 66px 82px;
}

.extra-card-inquiry .extra-card-head {
  border-bottom: 0;
  padding-bottom: 0;
}

.extras-total-line {
  margin-top: 2px;
  padding-top: 10px;
  border-top: 1px solid #e6ddd3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .88rem;
}

.extras-total-line strong {
  font-size: 1rem;
}

.total-line {
  padding-top: 2px;
  font-size: .95rem;
}

.total-line strong {
  font-size: 1.06rem;
}

.inventory-msg {
  margin: 2px 0 0;
  min-height: 20px;
  font-size: .82rem;
  color: #777;
}

.inventory-msg.ok {
  color: #0b7a2a;
}

.inventory-msg.error {
  color: #b42318;
}

.inventory-msg.loading {
  color: #1f1f1f;
}

.site-footer {
  margin-top: 0;
  background: #1a1a1a;
  color: #fff;
  padding: 30px 0;
  text-align: center;
}

.contact-hero {
  min-height: 360px;
}

.view-contact .contact-hero {
  height: clamp(420px, 58vh, 560px);
  min-height: 420px;
}

.view-contact .contact-hero > img {
  object-position: center 22% !important;
}

.view-contact .contact-hero .hero-overlay {
  padding: 118px 20px 46px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.24), rgba(0, 0, 0, 0.56));
}

.contact-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 56px 0 28px;
}

.contact-info h2,
.contact-form-wrap h2 {
  margin: 0 0 16px;
  font-family: var(--title);
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 500;
}

.contact-info h3 {
  margin: 28px 0 10px;
  font-family: var(--title);
  font-size: 2rem;
  font-weight: 500;
}

.contact-info p {
  margin: 0;
  color: #4f4f4f;
  font-size: 1rem;
  line-height: 1.7;
}

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

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #ddd8d1;
  border-radius: 14px;
  padding: 15px 18px;
  font: inherit;
  background: #f7f7f7;
}

.contact-form textarea {
  resize: vertical;
  min-height: 240px;
}

.form-status {
  margin: -2px 0 2px;
  min-height: 20px;
  font-size: .84rem;
  color: #777;
}

.form-status.ok {
  color: #0b7a2a;
}

.form-status.error {
  color: #b42318;
}

.form-status.loading {
  color: #1f1f1f;
}

.contact-form .btn {
  width: 160px;
  margin-top: 8px;
}

@media (max-width: 980px) {
  .detail-layout,
  .badge-row { grid-template-columns: 1fr 1fr; }
  .category-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .tour-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .tours-layout { grid-template-columns: 1fr; }
  .detail-layout { grid-template-columns: 1fr; }
  .filters-panel { position: static; }
  .contact-section { grid-template-columns: 1fr; gap: 24px; }
  .tabs { flex-wrap: wrap; }
  .tab-btn { flex: 1 1 180px; }
  .qty-line { grid-template-columns: 1fr; gap: 6px; }
  .extra_math { justify-content: flex-start; }
  .tour-meta { grid-template-columns: 1fr 1fr; }

  .view-tours .inner-hero {
    height: clamp(360px, 58vh, 540px) !important;
  }

  .view-tours .inner-hero .hero-overlay {
    padding: 110px 18px 48px;
  }

  .view-tours .inner-hero .hero-overlay h1 {
    font-size: clamp(2.3rem, 8vw, 4.1rem);
  }

  .view-tours .tours-layout {
    margin-top: -12px;
    gap: 16px;
  }

  .view-tours .tour-results {
    padding: 14px;
  }

  .view-tours .tour-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-section {
    margin-top: 58px;
    gap: 16px;
  }

  .hero-overlay h1 {
    font-size: clamp(2.25rem, 5.5vw, 3.6rem);
  }

  .view-detail .detail-hero {
    height: clamp(420px, 66vh, 620px);
  }

  .view-detail .detail-hero .hero-overlay {
    padding-top: 116px;
    padding-bottom: 56px;
  }

  .view-detail .detail-hero .hero-overlay h1 {
    font-size: clamp(2.2rem, 7vw, 3.7rem);
  }

  .view-detail .detail-layout {
    margin-top: -18px;
  }

  .wide-video-overlay h2 {
    font-size: clamp(2.2rem, 5.6vw, 3.8rem);
    line-height: 1.08;
  }

  .about-copy h2 {
    font-size: clamp(2.1rem, 6.8vw, 3.6rem);
  }

  .about-copy p {
    font-size: 1.04rem;
    line-height: 1.6;
    margin-bottom: 14px;
  }

  .about-copy .btn {
    width: 210px;
    min-height: 48px;
    font-size: .95rem;
    border-radius: 12px;
  }

  .about-visual {
    min-height: 560px;
  }

  .about-back {
    width: min(500px, 80%);
    top: 10px;
  }

  .about-front {
    width: min(440px, 70%);
    top: 120px;
  }

  .about-element-stack {
    right: 18px;
    top: 62px;
    gap: 12px;
  }

  .about-element-stack span {
    font-size: 2.1rem;
  }
}

@media (max-width: 900px) {
  .topbar-inner {
    min-height: 66px;
    position: relative;
    padding: 8px 0;
  }
  .brand { font-size: 1.55rem; }
  .brand-logo { max-height: 34px; max-width: min(220px, 56vw); }
  .menu-toggle { display: block; font-size: 1.9rem; line-height: 1; padding: 2px 6px; }
  .site-nav {
    display: none;
    position: absolute;
    top: calc(100% - 2px);
    left: 0;
    right: 0;
    background: rgba(18, 18, 18, 0.97);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 0 0 12px 12px;
    padding: 8px 10px 10px;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    max-height: calc(100vh - 120px);
    overflow: auto;
  }
  .site-nav.open { display: flex; }
  .site-nav a {
    font-size: .76rem;
    letter-spacing: .16em;
    padding: 10px 12px;
  }

  .tours-layout { margin-top: 4px; }
  .tour-results { order: 2; }
  .filters-panel {
    order: 1;
    margin: 0 0 8px;
    top: auto;
    padding: 10px;
  }
  .filters-toggle { display: block; }
  .filters-body[hidden] { display: none !important; }
  .filters-panel .filters-body { margin-top: 10px; }
  .view-tours .inner-hero { height: clamp(340px, 56vh, 500px) !important; }
  .view-tours .inner-hero > img { object-position: center 38% !important; transform: none !important; transform-origin: center center !important; }
  .view-tours .inner-hero .hero-overlay { padding: 104px 16px 42px; }
  .view-tours .tours-layout { margin-top: -8px; }
  .view-contact .contact-hero { height: clamp(380px, 54vh, 500px); min-height: 380px; }
  .view-contact .contact-hero > img { object-position: center 27% !important; }
  .view-contact .contact-hero .hero-overlay { padding: 100px 16px 40px; }
}

@media (max-width: 560px) {
  .tour-grid,
  .category-grid,
  .testimonial-grid,
  .badge-row,
  .gallery-grid,
  .split,
  .tours-layout { grid-template-columns: 1fr; }

  .hotel-switch { margin-top: 80px; }
  .hotel-switch-inner { padding-top: 10px; padding-bottom: 10px; }
  .hotel-actions a { font-size: .75rem; padding: 6px 10px; }
  .hotel-picker-card { padding: 22px 18px; }
  .hotel-picker-card h2 { font-size: 1.55rem; }

  .home-hero { height: 72vh; min-height: 520px; }
  .inner-hero { height: 300px; }
  .view-tours .inner-hero { height: clamp(300px, 54vh, 420px) !important; }
  .view-tours .inner-hero > img { object-position: center 42% !important; transform: none !important; transform-origin: center center !important; }
  .view-tours .inner-hero .hero-overlay { padding: 90px 14px 34px; }
  .view-tours .inner-hero .hero-overlay h1 { font-size: clamp(2.2rem, 12vw, 3.2rem); }
  .view-tours .inner-hero .hero-overlay p { letter-spacing: .13em; }
  .view-tours .tours-layout { margin-top: 8px; }
  .view-tours .tour-results { padding: 12px; }
  .view-tours .tour-grid { grid-template-columns: 1fr; }
  .view-contact .contact-hero { height: clamp(340px, 52vh, 430px); min-height: 340px; }
  .view-contact .contact-hero > img { object-position: center 32% !important; }
  .view-contact .contact-hero .hero-overlay { padding: 88px 14px 34px; }
  .view-detail .detail-hero { height: clamp(340px, 62vh, 480px); }
  .view-detail .detail-hero .hero-overlay { padding: 92px 14px 44px; }
  .view-detail .detail-layout { margin-top: 6px; }

  .hero-overlay h1 { font-size: clamp(1.8rem, 8vw, 2.5rem); }

  .wide-video-band {
    margin: 36px 0 20px;
    height: 340px;
    min-height: 0;
    max-height: 420px;
  }

  .wide-video-band img,
  .wide-video-band video {
    height: 100%;
    min-height: 0;
    max-height: none;
  }

  .wide-video-overlay h2 {
    font-size: clamp(1.55rem, 7vw, 2.35rem);
    max-width: 92vw;
    line-height: 1.15;
  }

  .about-section {
    margin-top: 48px;
    gap: 14px;
  }

  .about-copy h2 {
    font-size: clamp(1.95rem, 10vw, 2.8rem);
    margin-bottom: 14px;
  }

  .about-copy p {
    font-size: .98rem;
    margin-bottom: 12px;
  }

  .about-copy .btn {
    width: 185px;
    min-height: 44px;
    font-size: .9rem;
    letter-spacing: .08em;
    border-radius: 10px;
    margin-left: auto;
    margin-right: auto;
  }

  .about-visual {
    min-height: 440px;
  }

  .about-back {
    width: 100%;
    height: 270px;
    border-radius: 18px;
    right: auto;
    top: 0;
    left: 0;
  }

  .about-front {
    width: 82%;
    height: 315px;
    border-radius: 18px;
    left: 0;
    top: 108px;
  }

  .about-element-stack {
    right: 16px;
    top: 26px;
    gap: 8px;
  }

  .about-element-stack span {
    font-size: 1.75rem;
  }

  .tour-meta { grid-template-columns: 1fr; gap: 4px; }
  .detail-main-panel,
  .book-panel { padding: 13px; }
  .view-detail .book-panel { padding: 0 13px 13px; }
  .view-detail .book-panel h3 { margin: 0 -13px 12px; }
  .price-cards { gap: 7px; }
  .price-card { padding: 8px 9px; }
  .price-card-label { font-size: .66rem; }
  .price-card-value { font-size: clamp(1.05rem, 6.1vw, 1.7rem); }
  .g-card { min-height: auto; }
  .contact-form .btn { width: 100%; }
  .category-card { min-height: 200px; }

  .gallery-lightbox {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 12px;
  }

  .gallery-lightbox-stage {
    order: 1;
    height: min(72dvh, 620px);
    margin-top: 46px;
  }

  .gallery-lightbox-nav {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    z-index: 175;
    width: auto;
    min-width: 96px;
    text-align: center;
    padding: 10px 12px;
  }

  .gallery-lightbox-nav.prev {
    left: 8px;
  }

  .gallery-lightbox-nav.next {
    right: 8px;
  }

  .gallery-lightbox-close {
    top: max(8px, env(safe-area-inset-top));
    right: max(8px, env(safe-area-inset-right));
    padding: 8px 11px;
    font-size: .9rem;
  }

}

@media (max-width: 460px) {
  .container { width: 92vw; }
  .topbar-inner { gap: 10px; min-height: 62px; }
  .brand { font-size: 1.28rem; }
  .brand-logo { max-height: 30px; max-width: 52vw; }
  .hero-overlay p { font-size: .68rem; letter-spacing: .06em; }
  .hotel-actions { gap: 6px; }
  .hotel-actions a { padding: 6px 9px; }
  .about-copy p { font-size: .94rem; line-height: 1.55; }
  .about-front { width: 88%; }
  .split-image img { max-height: 260px; }
  .about-element-stack { right: 12px; }
  .about-element-stack span { font-size: 1.5rem; }
  .gallery-lightbox-nav {
    min-width: 84px;
    padding: 9px 10px;
  }
}
