:root {
  --accent: #ff7308;
  --accent-dark: #ea6500;
  --ink: #101010;
  --muted: #666;
  --card: #ffffff;
  --line: #d8d8d8;
  --bg: #f5f5f5;
  --shadow: 0 4px 18px rgba(0, 0, 0, 0.18);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "DM Sans", sans-serif;
  background: var(--bg);
  color: var(--ink);
}

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

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

button,
input,
select {
  font: inherit;
}

.container {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
}

.hero-package-wide {
  width: min(1320px, calc(100% - 32px));
}

.package-header {
  background: #fff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
  position: sticky;
  top: 0;
  z-index: 30;
}

.top-strip {
  display: grid;
  grid-template-columns: 1.1fr 1.2fr auto;
  gap: 24px;
  align-items: center;
  padding: 18px 0 12px;
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
}

.logo-mark {
  width: 76px;
  height: 76px;
  object-fit: contain;
  flex: 0 0 auto;
}

.logo-copy {
  min-width: 0;
}

.logo-title {
  font-size: 1.45rem;
  line-height: 1;
  font-weight: 800;
  color: var(--accent);
}

.logo-sub {
  margin-top: 4px;
  color: #b28a4f;
  font-weight: 700;
  font-size: 0.95rem;
}

.contact-card {
  margin-top: 8px;
}

.contact-card h2 {
  margin: 0 0 16px;
  color: var(--accent-dark);
}

.contact-card p {
  margin: 10px 0;
}

.contact-card a {
  color: var(--accent-dark);
  font-weight: 700;
}

.contact-label {
  margin: 0 0 8px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  color: #8a6c3f;
  font-weight: 700;
}

.package-nav-toggle {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.package-hamburger {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  border: 1px solid rgba(255, 115, 8, 0.18);
  background: #fff6ef;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.package-hamburger span {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: #7b3400;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.package-search {
  display: grid;
  grid-template-columns: 1fr 60px;
}

.package-search input {
  border: 2px solid var(--accent);
  border-right: 0;
  padding: 14px 18px;
  border-radius: 10px 0 0 10px;
  outline: none;
  font-size: 1.1rem;
}

.package-search button {
  border: 0;
  background: var(--accent);
  color: #fff;
  border-radius: 0 10px 10px 0;
  font-size: 2rem;
  cursor: pointer;
}

.header-actions {
  display: flex;
  gap: 10px;
}

.header-actions a {
  background: var(--accent);
  color: #fff;
  padding: 15px 20px;
  border-radius: 10px;
  font-weight: 700;
}

.nav-strip {
  background: var(--accent);
  color: #fff;
}

.nav-strip-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 12px 0;
}

.nav-strip nav {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  font-size: 1.1rem;
  font-weight: 700;
}

.package-mobile-nav {
  display: contents;
}

.detail-language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-weight: 700;
}

.detail-language-switcher .language-btn {
  appearance: none;
  min-width: 130px;
}

.language-btn {
  border: 2px solid #555;
  background: #fff;
  color: #111;
  border-radius: 8px;
  padding: 5px 16px;
  font-weight: 700;
}

.breadcrumb-bar {
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  padding: 6px 0;
  font-size: 0.96rem;
}

.breadcrumb-bar .container {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.package-page {
  padding-bottom: 110px;
}

.hero-package {
  padding-top: 18px;
}

.hero-package h1 {
  margin: 6px 0 2px;
  text-align: center;
  color: var(--accent);
  font-size: clamp(2rem, 4vw, 3.6rem);
}

.enquiry {
  text-align: center;
  font-style: italic;
  font-size: 1.1rem;
  margin: 0 0 12px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(0, 1.05fr);
  gap: 12px;
  margin-top: 18px;
}

.hero-shot img,
.side-shots img,
.gallery-more,
.photo-tile {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.hero-shot img {
  min-height: 430px;
}

.side-shots {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.side-shots img,
.photo-tile {
  min-height: 209px;
}

.photo-tile {
  position: relative;
  overflow: hidden;
}

.photo-tile img {
  border-radius: 12px;
}

.photo-cta {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(38, 38, 38, 0.72);
  color: #fff;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 700;
  backdrop-filter: blur(8px);
}

.gallery-more {
  position: relative;
  overflow: hidden;
  min-height: 209px;
}

.gallery-more img {
  filter: brightness(0.48);
}

.gallery-more span {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

.content-stack {
  display: grid;
  gap: 24px;
  margin-top: 30px;
}

.info-card {
  background: var(--card);
  border-radius: 24px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.08);
  padding: 38px 30px 40px;
  border: 1px solid #f0e4d8;
  position: relative;
  overflow: hidden;
}

.info-card h2,
.booking-banner h2,
.faq-wrap h2 {
  margin: 0 0 18px;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  position: relative;
  padding-left: 0;
  letter-spacing: -0.03em;
}

.info-card h2::before,
.faq-wrap h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: -16px;
  width: 76px;
  height: 5px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent) 0%, #ffbf8c 100%);
}

.info-card::after {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 92px;
  background: linear-gradient(180deg, rgba(255, 115, 8, 0.06) 0%, rgba(255, 115, 8, 0) 100%);
  pointer-events: none;
}

.pill-box {
  border: 1px solid #f2d9c8;
  border-radius: 18px;
  padding: 16px 18px;
  background: linear-gradient(135deg, #fffaf6 0%, #fff3ea 100%);
}

.pill-box p {
  margin: 10px 0;
  font-size: 1.05rem;
}

.pill-box strong {
  color: var(--accent);
}

.booking-banner {
  background: var(--accent);
  color: #fff;
  border-radius: 12px;
  padding: 36px 34px 38px;
  box-shadow: var(--shadow);
}

.booking-banner h2 {
  padding-left: 0;
  margin-bottom: 20px;
  text-align: center;
}

.booking-form {
  display: grid;
  grid-template-columns: 1.1fr 1.1fr 180px;
  gap: 18px;
  align-items: end;
}

.booking-form label {
  display: grid;
  gap: 8px;
  font-weight: 700;
}

.booking-form select,
.booking-form input {
  width: 100%;
  border: 0;
  border-radius: 10px;
  padding: 15px 16px;
  min-height: 54px;
}

.booking-form button {
  min-height: 54px;
  border: 0;
  border-radius: 10px;
  background: #fff;
  color: #111;
  font-weight: 800;
  cursor: pointer;
}

.booking-price {
  margin: 14px 0 0;
  text-align: center;
  font-size: 1.05rem;
  font-weight: 700;
}

.accordion-item {
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  background: linear-gradient(135deg, #fff 0%, #fff8f2 100%);
  margin-top: 14px;
  overflow: hidden;
  border: 1px solid #f2e2d5;
}

.accordion-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 56px 18px 16px;
  color: var(--accent);
  font-size: 1.2rem;
  font-weight: 700;
  position: relative;
}

.accordion-item summary::after {
  content: "\2304";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.8rem;
  color: #111;
}

.accordion-item p {
  margin: 0;
  padding: 0 16px 18px;
  color: #444;
}

.two-col-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.table-wrap {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 420px;
}

th,
td {
  border: 1px solid #d6d6d6;
  padding: 12px 14px;
  text-align: left;
}

th {
  background: #f1f1f1;
}

ul {
  margin: 0;
  padding-left: 22px;
  line-height: 1.7;
  font-size: 1.05rem;
}

.info-card > p,
.info-card li {
  position: relative;
  z-index: 1;
}

.info-card > h2,
.pill-box,
.accordion-item,
.table-wrap {
  position: relative;
  z-index: 1;
}

.policy-links {
  display: grid;
  gap: 16px;
  justify-items: center;
  text-align: center;
}

.policy-links a {
  color: var(--accent);
  text-decoration: underline;
}

.faq-wrap h2 {
  text-align: center;
  color: #113a67;
  padding-left: 0;
}

.faq-wrap h2::before {
  display: none;
}

.faq-line {
  background: #fff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  overflow: hidden;
  margin-top: 18px;
  border: 1px solid #ece6e0;
}

.faq-line summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 56px 18px 16px;
  font-size: 1.1rem;
  font-weight: 700;
  position: relative;
}

.faq-line summary::after {
  content: "\2304";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.8rem;
}

.faq-line p {
  margin: 0;
  padding: 0 16px 18px;
  color: #444;
}

.floating-book {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: linear-gradient(135deg, var(--accent) 0%, #ff9a45 100%);
  color: #fff;
  font-weight: 800;
  padding: 16px 28px;
  border-radius: 999px;
  box-shadow: 0 16px 36px rgba(255, 115, 8, 0.35);
  z-index: 20;
  border: 1px solid rgba(255, 255, 255, 0.28);
}

@media (max-width: 980px) {
  .top-strip,
  .booking-form,
  .gallery-grid,
  .two-col-card {
    grid-template-columns: 1fr;
  }

  .header-actions {
    justify-content: flex-start;
  }

  .nav-strip-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-package-wide {
    width: min(1240px, calc(100% - 24px));
  }
}

@media (max-width: 760px) {
  .package-header {
    position: static;
  }

  .top-strip {
    grid-template-columns: 1fr 48px;
    gap: 14px;
    padding: 14px 0 12px;
  }

  .logo-title {
    font-size: 1.7rem;
  }

  .logo-sub {
    font-size: 0.82rem;
  }

  .logo-mark {
    width: 62px;
    height: 62px;
  }

  .package-search input {
    padding: 13px 14px;
    font-size: 1rem;
  }

  .package-hamburger {
    display: inline-flex;
    justify-self: end;
    align-self: start;
  }

  .package-search button {
    font-size: 1.5rem;
  }

  .nav-strip-inner {
    display: block;
    padding: 0;
  }

  .package-search,
  .header-actions {
    grid-column: 1 / -1;
  }

  .package-mobile-nav {
    display: block;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
  }

  .package-mobile-nav nav,
  .package-mobile-nav .language-btn {
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity 0.22s ease, transform 0.22s ease;
  }

  .nav-strip nav {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
  }

  .nav-strip nav a {
    width: 100%;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .language-btn {
    align-self: flex-start;
    margin-top: 12px;
  }

  .detail-language-switcher {
    width: 100%;
    justify-content: space-between;
  }

  .package-nav-toggle:checked + .package-hamburger span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .package-nav-toggle:checked + .package-hamburger span:nth-child(2) {
    opacity: 0;
  }

  .package-nav-toggle:checked + .package-hamburger span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .package-nav-toggle:checked ~ .nav-strip .package-mobile-nav {
    max-height: 420px;
    padding: 14px 0 12px;
  }

  .package-nav-toggle:checked ~ .nav-strip .package-mobile-nav nav,
  .package-nav-toggle:checked ~ .nav-strip .package-mobile-nav .language-btn {
    opacity: 1;
    transform: translateY(0);
  }

  .package-page {
    padding-bottom: 94px;
  }

  .hero-package {
    padding-top: 14px;
  }

  .hero-package h1 {
    font-size: 2.2rem;
    line-height: 1.08;
  }

  .enquiry {
    font-size: 1rem;
    margin-bottom: 16px;
  }

  .content-stack {
    gap: 18px;
    margin-top: 22px;
  }

  .booking-banner {
    padding: 22px 18px;
  }

  .booking-form {
    gap: 14px;
  }

  .booking-form label span {
    font-size: 0.95rem;
  }

  .booking-form select,
  .booking-form input,
  .booking-form button {
    min-height: 50px;
  }

  .two-col-card {
    gap: 18px;
  }

  table {
    min-width: 560px;
  }
}

@media (min-width: 761px) {
  .package-mobile-nav {
    display: contents;
  }
}

@media (max-width: 640px) {
  .container {
    width: calc(100% - 20px);
  }

  .hero-package-wide {
    width: calc(100% - 20px);
  }

  .logo-title {
    font-size: 1.45rem;
  }

  .top-strip {
    gap: 12px;
  }

  .logo {
    gap: 12px;
  }

  .logo-mark {
    width: 54px;
    height: 54px;
  }

  .package-search {
    grid-template-columns: 1fr 56px;
  }

  .header-actions {
    width: 100%;
    gap: 8px;
  }

  .header-actions a {
    flex: 1;
    text-align: center;
    padding: 13px 14px;
  }

  .nav-strip nav {
    gap: 14px;
    font-size: 0.95rem;
  }

  .breadcrumb-bar {
    font-size: 0.85rem;
  }

  .breadcrumb-bar .container {
    justify-content: flex-start;
    gap: 6px;
  }

  .side-shots {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .hero-shot img {
    min-height: 260px;
  }

  .side-shots img,
  .gallery-more,
  .photo-tile {
    min-height: 120px;
  }

  .photo-cta {
    top: 10px;
    right: 10px;
    padding: 8px 10px;
    font-size: 0.82rem;
  }

  .info-card,
  .booking-banner {
    padding: 28px 16px 30px;
  }

  .info-card h2,
  .booking-banner h2,
  .faq-wrap h2 {
    font-size: 1.85rem;
    margin-bottom: 14px;
  }

  .info-card h2::before,
  .faq-wrap h2::before {
    top: -12px;
    width: 58px;
  }

  .pill-box {
    padding: 14px 14px;
    border-radius: 16px;
  }

  .pill-box p,
  .info-card > p,
  ul,
  .policy-links a {
    font-size: 0.98rem;
  }

  .accordion-item summary,
  .faq-line summary {
    font-size: 1rem;
    padding: 16px 46px 16px 14px;
  }

  .accordion-item p,
  .faq-line p {
    font-size: 0.94rem;
    line-height: 1.6;
  }

  .table-wrap {
    margin-right: -4px;
  }

  th,
  td {
    padding: 11px 12px;
    font-size: 0.95rem;
  }

  .floating-book {
    right: 10px;
    left: 10px;
    bottom: 12px;
    text-align: center;
    padding: 15px 20px;
  }
}

@media (max-width: 520px) {
  .container {
    width: calc(100% - 16px);
  }

  .hero-package-wide {
    width: calc(100% - 16px);
  }

  .top-strip {
    padding: 12px 0 10px;
  }

  .logo-title {
    font-size: 1.25rem;
  }

  .logo-sub {
    font-size: 0.74rem;
  }

  .contact-card {
    padding: 24px 14px 26px;
  }

  .package-search {
    grid-template-columns: 1fr 52px;
  }

  .package-search input {
    padding: 12px 12px;
    font-size: 0.95rem;
  }

  .header-actions a {
    padding: 11px 10px;
    font-size: 0.94rem;
  }

  .language-btn {
    padding: 6px 12px;
    font-size: 0.92rem;
  }

  .hero-package h1 {
    font-size: 1.85rem;
  }

  .enquiry {
    font-size: 0.92rem;
  }

  .gallery-grid {
    gap: 10px;
  }

  .side-shots {
    gap: 10px;
  }

  .hero-shot img {
    min-height: 220px;
    border-radius: 10px;
  }

  .side-shots img,
  .gallery-more,
  .photo-tile {
    min-height: 104px;
    border-radius: 10px;
  }

  .photo-cta {
    padding: 7px 9px;
    font-size: 0.76rem;
    border-radius: 8px;
  }

  .gallery-more span {
    font-size: 1.4rem;
  }

  .info-card,
  .booking-banner {
    border-radius: 18px;
    padding: 26px 14px 28px;
  }

  .info-card h2,
  .booking-banner h2,
  .faq-wrap h2 {
    font-size: 1.55rem;
    line-height: 1.12;
  }

  .accordion-item,
  .faq-line {
    border-radius: 14px;
  }

  .accordion-item summary,
  .faq-line summary {
    font-size: 0.95rem;
    line-height: 1.45;
  }

  .booking-price {
    font-size: 0.94rem;
  }

  .floating-book {
    bottom: 8px;
    padding: 14px 18px;
    font-size: 0.96rem;
  }
}
