:root {
  --brand-indigo: #29207a;
  --brand-red: #e30613;
  --brand-pink: #efa6b4;
  --brand-sand: #f4d7a1;
  --brand-green: #169b62;
  --ink: #202124;
  --muted: #667085;
  --line: #e7e2dc;
  --surface: #ffffff;
  --surface-warm: #fff8ec;
  --surface-pink: #fff2f5;
  --surface-green: #ecf8f2;
  --shadow: 0 18px 50px rgba(32, 33, 36, 0.12);
  --shadow-soft: 0 10px 30px rgba(32, 33, 36, 0.08);
  --radius: 8px;
  --header-h: 78px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body.modal-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

a:hover {
  color: var(--brand-red);
}

button,
input,
select,
textarea {
  font: inherit;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: -4rem;
  z-index: 9999;
  background: var(--brand-indigo);
  color: #fff;
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  min-height: var(--header-h);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(41, 32, 122, 0.08);
  backdrop-filter: blur(16px);
  transition: box-shadow 0.2s ease, background 0.2s ease;
}

.site-header.is-scrolled {
  box-shadow: var(--shadow-soft);
  background: rgba(255, 255, 255, 0.98);
}

.navbar {
  position: relative;
  min-height: var(--header-h);
  padding-block: 0.75rem;
}

.site-header nav,
.site-header nav ul,
.site-header nav ul li,
.site-header nav ul a {
  float: none;
  height: auto;
  line-height: normal;
  background: transparent;
  box-shadow: none;
}

.site-header nav {
  width: 100%;
  color: var(--ink);
}

.site-header nav ul a {
  display: block;
}

.navbar-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  min-width: 0;
  font-weight: 900;
  color: var(--brand-indigo);
  letter-spacing: 0;
}

.logo-brand {
  flex: 0 0 auto;
  padding: 0;
  max-width: min(280px, 36vw);
}

.brand-logo {
  width: clamp(170px, 17vw, 265px);
  height: auto;
  max-height: 62px;
  object-fit: contain;
  object-position: left center;
}

.brand-mark {
  display: none;
  place-items: center;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  color: #fff;
  background: var(--brand-red);
  border: 3px solid #fff;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(227, 6, 19, 0.2);
  font-weight: 900;
  letter-spacing: 0;
}

.brand-text {
  display: grid;
  line-height: 1.05;
}

.brand-text small {
  color: var(--brand-green);
  font-weight: 800;
  font-size: 0.72rem;
  text-transform: none;
  letter-spacing: 0;
}

.navbar-toggler {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.55rem 0.7rem;
}

.navbar-nav {
  gap: 0.1rem;
}

.nav-link {
  color: #34333b;
  font-weight: 760;
  border-radius: var(--radius);
  padding: 0.55rem 0.72rem !important;
}

.nav-link.active,
.nav-link:hover,
.nav-link:focus-visible {
  color: var(--brand-indigo);
  background: rgba(239, 166, 180, 0.26);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: 0.75rem;
  flex: 0 0 auto;
}

.material-icons {
  font-size: 1.15rem;
  line-height: 1;
  vertical-align: middle;
}

.bn-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 44px;
  padding: 0.75rem 1rem;
  border: 0;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 860;
  color: #fff;
  background: var(--brand-green);
  box-shadow: 0 10px 24px rgba(22, 155, 98, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.bn-btn:hover,
.bn-btn:focus-visible {
  color: #fff;
  background: #108453;
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(22, 155, 98, 0.28);
}

.bn-btn.secondary {
  background: var(--brand-indigo);
  box-shadow: 0 10px 24px rgba(41, 32, 122, 0.2);
}

.bn-btn.secondary:hover,
.bn-btn.secondary:focus-visible {
  background: #211967;
  box-shadow: 0 14px 30px rgba(41, 32, 122, 0.28);
}

.bn-btn.red {
  background: var(--brand-red);
  box-shadow: 0 10px 24px rgba(227, 6, 19, 0.18);
}

.bn-btn.red:hover,
.bn-btn.red:focus-visible {
  background: #c90510;
  box-shadow: 0 14px 30px rgba(227, 6, 19, 0.24);
}

.bn-btn.ghost {
  color: var(--brand-indigo);
  background: #fff;
  border: 1px solid rgba(41, 32, 122, 0.2);
  box-shadow: none;
}

.bn-btn.ghost:hover,
.bn-btn.ghost:focus-visible {
  color: var(--brand-indigo);
  background: var(--surface-pink);
  box-shadow: none;
}

.bn-icon-btn {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  border-radius: var(--radius);
  color: var(--brand-indigo);
  background: #fff;
  border: 1px solid rgba(41, 32, 122, 0.16);
  text-decoration: none;
}

.bn-icon-btn:hover,
.bn-icon-btn:focus-visible {
  color: #fff;
  background: var(--brand-indigo);
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: min(760px, calc(100vh - 72px));
  color: #fff;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--brand-indigo);
}

.hero.compact {
  min-height: 460px;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media video,
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(20, 16, 67, 0.82) 0%, rgba(20, 16, 67, 0.52) 48%, rgba(227, 6, 19, 0.22) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.06));
}

.hero-content {
  max-width: 780px;
  padding-block: 4.5rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 1rem;
  color: #fff;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 3px;
  background: var(--brand-sand);
  border-radius: 99px;
}

h1,
h2,
h3,
h4 {
  color: inherit;
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(2.4rem, 5vw, 5.1rem);
}

h2 {
  font-size: clamp(2rem, 3.5vw, 3.2rem);
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.7rem);
}

.lead-text {
  max-width: 680px;
  color: #f9f4ef;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 550;
}

.hero-actions,
.section-actions,
.card-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 2rem;
  max-width: 640px;
}

.hero-stat {
  min-height: 92px;
  padding: 1rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(12px);
}

.hero-stat strong {
  display: block;
  font-size: 1.35rem;
  line-height: 1;
}

.hero-stat span {
  display: block;
  margin-top: 0.35rem;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.9rem;
}

.section {
  padding: 5rem 0;
}

.section.tight {
  padding: 3.25rem 0;
}

.section.white {
  background: #fff;
}

.section.warm {
  background: var(--surface-warm);
}

.section.pink {
  background: var(--surface-pink);
}

.section.green {
  background: var(--surface-green);
}

.section.indigo {
  color: #fff;
  background: var(--brand-indigo);
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.65rem;
  color: var(--brand-red);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
}

.section-kicker::before {
  content: "";
  width: 24px;
  height: 3px;
  background: currentColor;
  border-radius: 99px;
}

.section-heading {
  margin-bottom: 1rem;
  color: var(--brand-indigo);
}

.section.indigo .section-heading,
.section.indigo .section-kicker {
  color: #fff;
}

.section-copy {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.06rem;
}

.section.indigo .section-copy {
  color: rgba(255, 255, 255, 0.82);
}

.feature-strip {
  position: relative;
  z-index: 10;
  margin-top: -2.25rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.feature-item {
  min-height: 132px;
  padding: 1.25rem;
  border-right: 1px solid var(--line);
}

.feature-item:last-child {
  border-right: 0;
}

.feature-item .material-icons {
  color: var(--brand-red);
  font-size: 1.65rem;
}

.feature-item strong {
  display: block;
  margin: 0.65rem 0 0.25rem;
  color: var(--brand-indigo);
  font-size: 1.02rem;
}

.feature-item span {
  display: block;
  color: var(--muted);
  font-size: 0.94rem;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.card-grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.activity-card,
.pack-card,
.info-card,
.media-card,
.menu-card,
.contact-card,
.legal-card {
  height: 100%;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.activity-card,
.pack-card,
.info-card,
.menu-card,
.contact-card,
.legal-card {
  padding: 1.2rem;
}

.activity-card.with-media,
.pack-card.with-media {
  padding: 0;
}

.card-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #e7e2dc;
}

.card-media.vertical {
  aspect-ratio: 9 / 12;
}

.card-media.wide {
  aspect-ratio: 16 / 9;
}

.card-media img,
.card-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-media video {
  background: #000;
}

.card-body-custom {
  padding: 1.15rem;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.85rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.32rem;
  min-height: 30px;
  padding: 0.3rem 0.58rem;
  color: var(--brand-indigo);
  background: var(--surface-pink);
  border: 1px solid rgba(41, 32, 122, 0.08);
  border-radius: var(--radius);
  font-size: 0.8rem;
  font-weight: 850;
}

.pill.green {
  color: #086641;
  background: var(--surface-green);
}

.pill.red {
  color: var(--brand-red);
  background: #fff0f1;
}

.price {
  color: var(--brand-red);
  font-size: 1.65rem;
  font-weight: 950;
  line-height: 1;
}

.price small {
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 700;
}

.muted {
  color: var(--muted);
}

.service-list {
  display: grid;
  gap: 0.65rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.service-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  color: #393842;
}

.service-list .material-icons {
  flex: 0 0 auto;
  margin-top: 0.18rem;
  color: var(--brand-green);
}

.activity-detail-list {
  display: grid;
  gap: 1.25rem;
}

.activity-detail {
  display: grid;
  grid-template-columns: minmax(240px, 0.72fr) minmax(0, 1.28fr);
  gap: 1.25rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.activity-detail-media {
  overflow: hidden;
  border-radius: var(--radius);
  background: #e7e2dc;
}

.activity-detail-media img,
.activity-detail-media video {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
  margin: 1rem 0;
}

.detail-chip {
  min-height: 76px;
  padding: 0.75rem;
  border: 1px solid rgba(41, 32, 122, 0.1);
  border-radius: var(--radius);
  background: var(--surface-warm);
}

.detail-chip strong {
  display: block;
  color: var(--brand-indigo);
  font-size: 0.84rem;
}

.detail-chip span {
  display: block;
  margin-top: 0.25rem;
  color: #34333b;
  font-weight: 720;
}

.split-band {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: center;
}

.split-media {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.split-media img,
.split-media video {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
}

.band-note {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 1rem;
  padding: 0.7rem 0.85rem;
  color: #4f3e12;
  background: #fff4d7;
  border: 1px solid #f0d28a;
  border-radius: var(--radius);
  font-weight: 760;
}

.table-wrap {
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.bn-table {
  width: 100%;
  min-width: 720px;
  margin: 0;
  border-collapse: collapse;
}

.bn-table th,
.bn-table td {
  padding: 1rem;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.bn-table th {
  color: #fff;
  background: var(--brand-indigo);
  font-weight: 900;
}

.bn-table tr:last-child td {
  border-bottom: 0;
}

.bn-table td:last-child,
.bn-table th:last-child {
  text-align: right;
  white-space: nowrap;
}

.highlight-row td {
  background: var(--surface-pink);
}

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.pack-card.featured {
  position: relative;
  border-color: rgba(227, 6, 19, 0.3);
  box-shadow: 0 22px 60px rgba(227, 6, 19, 0.14);
}

.badge-corner {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  z-index: 2;
  padding: 0.42rem 0.62rem;
  color: #fff;
  background: var(--brand-red);
  border-radius: var(--radius);
  font-size: 0.78rem;
  font-weight: 900;
}

.menu-list {
  display: grid;
  gap: 0.85rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.menu-list li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px dashed rgba(41, 32, 122, 0.18);
}

.menu-list li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.menu-list strong {
  color: var(--brand-indigo);
}

.menu-list span {
  flex: 0 0 auto;
  color: var(--brand-red);
  font-weight: 950;
}

.gallery-filters {
  position: sticky;
  top: calc(var(--header-h) + 0.75rem);
  z-index: 20;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 1.5rem;
  padding: 0.75rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(14px);
}

.filter-btn {
  min-height: 40px;
  padding: 0.55rem 0.78rem;
  color: var(--brand-indigo);
  background: #fff;
  border: 1px solid rgba(41, 32, 122, 0.18);
  border-radius: var(--radius);
  font-weight: 850;
}

.filter-btn.active,
.filter-btn:hover,
.filter-btn:focus-visible {
  color: #fff;
  background: var(--brand-indigo);
}

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

.media-card {
  position: relative;
}

.media-trigger {
  width: 100%;
  padding: 0;
  color: inherit;
  background: transparent;
  border: 0;
  text-align: left;
}

.media-thumb {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #ded8d2;
}

.media-thumb.landscape {
  aspect-ratio: 16 / 10;
}

.media-thumb img,
.media-thumb video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.media-card:hover .media-thumb img,
.media-card:hover .media-thumb video {
  transform: scale(1.035);
}

.media-label {
  padding: 0.85rem;
}

.media-label strong {
  display: block;
  color: var(--brand-indigo);
  line-height: 1.2;
}

.media-label span {
  display: block;
  color: var(--muted);
  font-size: 0.88rem;
  margin-top: 0.2rem;
}

.play-badge {
  position: absolute;
  left: 0.7rem;
  bottom: 0.7rem;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  min-height: 34px;
  padding: 0.38rem 0.55rem;
  color: #fff;
  background: rgba(0, 0, 0, 0.66);
  border-radius: var(--radius);
  font-weight: 850;
  font-size: 0.82rem;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(11, 10, 23, 0.86);
}

.lightbox.is-open {
  display: flex;
}

.lightbox-dialog {
  width: min(1080px, 100%);
  max-height: min(86vh, 900px);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
}

.lightbox-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem 1rem;
  border-bottom: 1px solid var(--line);
}

.lightbox-title {
  color: var(--brand-indigo);
  font-weight: 900;
}

.lightbox-close {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--brand-indigo);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.lightbox-body {
  background: #111;
}

.lightbox-body img,
.lightbox-body video {
  width: 100%;
  max-height: calc(86vh - 74px);
  object-fit: contain;
  margin: 0 auto;
}

.reservation-shell {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 1.5rem;
  align-items: start;
}

.form-panel {
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.form-label {
  color: var(--brand-indigo);
  font-weight: 850;
}

.form-control,
.form-select,
textarea.form-control {
  border-color: #d9d4cd;
  border-radius: var(--radius);
  min-height: 48px;
}

.form-control:focus,
.form-select:focus,
textarea.form-control:focus {
  border-color: var(--brand-indigo);
  box-shadow: 0 0 0 0.2rem rgba(41, 32, 122, 0.12);
}

.form-help {
  color: var(--muted);
  font-size: 0.9rem;
}

.form-alert {
  display: none;
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  border-radius: var(--radius);
  font-weight: 760;
}

.form-alert.show {
  display: block;
}

.form-alert.error {
  color: #8a0d13;
  background: #fff0f1;
  border: 1px solid #ffc8cd;
}

.form-alert.success {
  color: #0f6a47;
  background: var(--surface-green);
  border: 1px solid #bdebd3;
}

.faq-list {
  display: grid;
  gap: 0.8rem;
}

.accordion-item {
  border: 1px solid var(--line) !important;
  border-radius: var(--radius) !important;
  overflow: hidden;
  background: #fff;
}

.accordion-button {
  color: var(--brand-indigo);
  font-weight: 900;
}

.accordion-button:not(.collapsed) {
  color: #fff;
  background: var(--brand-indigo);
  box-shadow: none;
}

.contact-list {
  display: grid;
  gap: 0.85rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-list a,
.contact-list span {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  min-height: 48px;
  padding: 0.78rem;
  color: var(--brand-indigo);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 850;
}

.contact-list a:hover,
.contact-list a:focus-visible {
  color: #fff;
  background: var(--brand-indigo);
}

.map-panel {
  min-height: 330px;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  color: var(--brand-indigo);
  text-align: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(rgba(255, 248, 236, 0.86), rgba(255, 248, 236, 0.86)),
    url("../ressources/images/image-quad-03.jpeg") center / cover;
  box-shadow: var(--shadow-soft);
}

.map-panel .material-icons {
  font-size: 2.4rem;
  color: var(--brand-red);
}

.site-footer {
  color: #fff;
  background: #17134b;
  padding: 4rem 0 1.5rem;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: #fff;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  width: min(100%, 320px);
  padding: 0.35rem;
  background: rgba(255, 255, 255, 0.96);
  border-radius: var(--radius);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.footer-logo-img {
  width: 100%;
  height: auto;
  max-height: 96px;
  object-fit: contain;
  object-position: left center;
}

.footer-title {
  color: #fff;
  font-weight: 900;
  margin-bottom: 1rem;
}

.footer-links {
  display: grid;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.7);
}

.footer-dev-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0.58rem 0.85rem;
  color: #fff !important;
  background: var(--brand-green);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  font-weight: 850;
  text-decoration: none;
}

.footer-dev-link:hover,
.footer-dev-link:focus-visible {
  color: #fff !important;
  background: #108453;
}

.floating-actions {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 1100;
  display: grid;
  gap: 0.55rem;
}

.floating-actions .bn-icon-btn {
  color: #fff;
  background: var(--brand-green);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: var(--shadow-soft);
}

.floating-actions .back-top {
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px);
  background: var(--brand-indigo);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.floating-actions .back-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.animate-in {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.animate-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.seo-note {
  color: var(--muted);
  font-size: 0.92rem;
}

@media (max-width: 1199px) {
  .site-header .navbar-collapse {
    position: absolute;
    top: calc(100% + 0.55rem);
    left: 1rem;
    right: 1rem;
    z-index: 1200;
    max-height: calc(100vh - var(--header-h) - 1.5rem);
    overflow-y: auto;
    padding: 0.85rem;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(41, 32, 122, 0.14);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    backdrop-filter: blur(16px);
  }

  .site-header .navbar-collapse.collapse:not(.show) {
    display: none !important;
  }

  .site-header .navbar-collapse.collapsing {
    display: block;
    height: auto !important;
    transition: none;
  }

  .site-header .navbar-nav {
    align-items: stretch !important;
    gap: 0.35rem;
  }

  .site-header .nav-item {
    width: 100%;
  }

  .site-header .nav-link {
    width: 100%;
    min-height: 48px;
    display: flex;
    align-items: center;
    color: var(--brand-indigo);
    background: #fff;
    border: 1px solid rgba(41, 32, 122, 0.1);
    padding: 0.75rem 0.9rem !important;
  }

  .site-header .nav-link.active,
  .site-header .nav-link:hover,
  .site-header .nav-link:focus-visible {
    color: #fff;
    background: var(--brand-indigo);
  }

  .site-header .header-actions {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 0.65rem;
    margin: 0.85rem 0 0;
  }

  .site-header .header-actions .bn-btn {
    width: 100%;
  }

  .navbar-toggler {
    margin-left: auto;
    color: var(--brand-indigo);
    background: #fff;
    box-shadow: none;
  }

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

@media (min-width: 1200px) {
  .site-header .container {
    width: min(100% - 2rem, 1720px);
    max-width: 1720px;
  }

  .navbar-brand {
    flex: 0 0 auto;
    margin-right: 0.7rem;
  }

  .brand-logo {
    width: clamp(190px, 15vw, 255px);
  }

  .navbar-collapse {
    min-width: 0;
  }

  .navbar-nav {
    min-width: 0;
    flex: 1 1 auto;
    justify-content: flex-end;
  }

  .nav-link {
    white-space: nowrap;
    font-size: 0.94rem;
    padding-inline: 0.48rem !important;
  }

  .header-actions {
    margin-left: 0.45rem;
  }

  .header-actions .bn-btn {
    white-space: nowrap;
    padding-inline: 0.85rem;
  }
}

@media (min-width: 1400px) {
  .nav-link {
    font-size: 1rem;
    padding-inline: 0.62rem !important;
  }

  .header-actions .bn-btn {
    padding-inline: 1rem;
  }
}

@media (max-width: 991px) {
  :root {
    --header-h: 70px;
  }

  .hero,
  .hero.compact {
    min-height: auto;
  }

  .hero-content {
    padding-block: 4rem;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .card-grid,
  .card-grid.two,
  .comparison-grid,
  .split-band,
  .activity-detail,
  .reservation-shell {
    grid-template-columns: 1fr;
  }

  .feature-item {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .feature-item:last-child {
    border-bottom: 0;
  }

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

@media (max-width: 767px) {
  .navbar-brand {
    max-width: min(225px, calc(100vw - 120px));
  }

  .brand-logo {
    width: min(210px, calc(100vw - 132px));
    max-height: 58px;
  }

  .brand-text span {
    font-size: 0.95rem;
  }

  .brand-text small {
    font-size: 0.63rem;
  }

  .hero-content {
    padding-block: 3rem 3.75rem;
  }

  .section {
    padding: 3.5rem 0;
  }

  .section.tight {
    padding: 2.5rem 0;
  }

  .hero-actions,
  .section-actions,
  .card-actions {
    align-items: stretch;
  }

  .hero-actions .bn-btn,
  .section-actions .bn-btn,
  .card-actions .bn-btn {
    width: 100%;
  }

  .gallery-filters {
    position: static;
  }

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

  .menu-list li {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.25rem;
  }

  .bn-table {
    min-width: 640px;
  }

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

  .activity-detail {
    padding: 0.75rem;
  }

  .floating-actions {
    right: 0.75rem;
    bottom: 0.75rem;
  }
}

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

  .container {
    width: 100%;
    padding-inline: 1rem;
  }

  .lightbox {
    padding: 0.5rem;
  }

  .lightbox-head {
    padding: 0.65rem;
  }
}

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

  .animate-in {
    opacity: 1;
    transform: none;
  }
}
