*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold: #C9A96E;
  --gold-light: #E8D5A3;
  --dark: #0F1520;
  --dark-2: #141B28;
  --dark-3: #1C2535;
  --text: #F7F1E6;
  --text-muted: #C8BEAA;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Montserrat", Arial, sans-serif;
}

html { scroll-behavior: smooth; }
body {
  background: var(--dark);
  color: var(--text);
  font-family: var(--sans);
  font-weight: 400;
  overflow-x: hidden;
}

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

@media (prefers-reduced-motion: no-preference) {
  .nav-logo-icon { animation: compassDrift 18s linear infinite; transform-origin: center; }
  .floating-compass { animation: compassDrift 34s linear infinite; }
  .hero-content > * { animation: heroRise 0.8s ease both; }
  .hero-content > *:nth-child(2) { animation-delay: 0.08s; }
  .hero-content > *:nth-child(3) { animation-delay: 0.16s; }
  .hero-content > *:nth-child(4) { animation-delay: 0.24s; }
  .reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.75s ease, transform 0.75s ease; }
  .reveal.visible { opacity: 1; transform: translateY(0); }
}

@keyframes compassDrift {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@keyframes heroRise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 4rem;
  transition: background 0.35s ease, backdrop-filter 0.35s ease;
}
nav.scrolled, nav.solid {
  background: rgba(8,12,18,0.94);
  backdrop-filter: blur(12px);
  border-bottom: 0.5px solid rgba(201,169,110,0.18);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}
.nav-logo-icon { width: 42px; height: 42px; opacity: 0.92; }
.nav-logo-text { display: flex; flex-direction: column; line-height: 1; }
.nav-logo-text span:first-child {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--gold-light);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.nav-logo-text span:last-child {
  font-size: 0.6rem;
  letter-spacing: 0.35em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-top: 3px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(1.1rem, 2.2vw, 2.25rem);
  list-style: none;
}
.nav-links a {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold-light); }
.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0.5px solid rgba(201,169,110,0.42);
  background: rgba(8,12,18,0.72);
  color: var(--gold-light);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.menu-toggle span {
  width: 18px;
  height: 1px;
  background: currentColor;
  transition: transform 0.22s ease, opacity 0.22s ease;
}
nav.menu-open .menu-toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
nav.menu-open .menu-toggle span:nth-child(2) { opacity: 0; }
nav.menu-open .menu-toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.nav-actions { display: flex; align-items: center; gap: 1rem; }
.nav-phone {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--gold-light);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary, .btn-outline, .nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  cursor: pointer;
  font-family: var(--sans);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.2s;
}
.btn-primary {
  background: var(--gold);
  color: var(--dark);
  border: 0;
  padding: 1rem 1.8rem;
  font-weight: 600;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn-outline, .nav-cta {
  background: transparent;
  color: var(--text);
  border: 0.5px solid rgba(247,241,230,0.55);
  padding: 1rem 1.8rem;
}
.btn-outline:hover, .nav-cta:hover {
  border-color: var(--gold);
  color: var(--gold-light);
  transform: translateY(-1px);
}
.nav-cta { padding: 0.65rem 1.25rem; color: var(--gold); border-color: var(--gold); }
.btn-small { padding: 0.82rem 1.25rem; font-size: 0.6rem; }

section { padding: 7rem 4rem; }
.page-hero {
  position: relative;
  min-height: 72vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 9rem 4rem 5rem;
  background:
    linear-gradient(to right, rgba(8,12,18,0.78), rgba(8,12,18,0.22)),
    linear-gradient(to top, rgba(8,12,18,0.72), transparent 55%),
    var(--hero-image, url("images/croisiere-catamaran-bassin-arcachon.webp")) center/cover no-repeat;
}
.page-hero.compact { min-height: 54vh; }
.hero-content { position: relative; z-index: 2; max-width: 760px; }
.floating-compass {
  position: absolute;
  right: clamp(2rem, 8vw, 8rem);
  bottom: clamp(2rem, 7vw, 7rem);
  width: min(30vw, 360px);
  height: min(30vw, 360px);
  border: 0.5px solid rgba(201,169,110,0.22);
  border-radius: 50%;
  opacity: 0.22;
  pointer-events: none;
}
.floating-compass::before,
.floating-compass::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 92%;
  height: 0.5px;
  background: rgba(201,169,110,0.65);
  transform-origin: center;
}
.floating-compass::before { transform: translate(-50%, -50%); }
.floating-compass::after { transform: translate(-50%, -50%) rotate(90deg); }
.section-label, .hero-label {
  font-size: 0.62rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.hero-title, .section-title {
  font-family: var(--serif);
  font-weight: 300;
  line-height: 1.05;
  color: var(--text);
}
.hero-title { font-size: clamp(3rem, 6vw, 6.4rem); margin-bottom: 1.4rem; }
.section-title { font-size: clamp(2.4rem, 4vw, 4.6rem); margin-bottom: 1rem; }
.hero-title em, .section-title em { color: var(--gold-light); font-style: italic; }
.hero-sub, .section-sub {
  max-width: 650px;
  color: var(--text-muted);
  line-height: 1.85;
  font-size: 0.86rem;
  letter-spacing: 0.03em;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2.2rem; }
.divider {
  width: 72px;
  height: 0.5px;
  background: var(--gold);
  margin: 1.5rem 0;
  opacity: 0.72;
}

.trust-strip {
  background: rgba(201,169,110,0.075);
  border-top: 0.5px solid rgba(201,169,110,0.14);
  border-bottom: 0.5px solid rgba(201,169,110,0.14);
  padding: 1.6rem 4rem;
}
.hero-badges {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(8,12,18,0.64);
  border-top: 0.5px solid rgba(201,169,110,0.12);
  border-bottom: 0.5px solid rgba(201,169,110,0.12);
  backdrop-filter: blur(10px);
}
.hero-badge {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.35rem 4rem;
  min-height: 92px;
  background: rgba(15,21,32,0.66);
}
.hero-badge svg {
  width: 34px;
  height: 34px;
  color: var(--gold);
  flex: 0 0 auto;
}
.hero-badge strong {
  display: block;
  color: var(--text);
  font-size: 0.86rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 0.28rem;
}
.hero-badge span {
  color: var(--text-muted);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.trust-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.trust-item {
  color: var(--text-muted);
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.7;
}
.trust-item strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--gold-light);
  letter-spacing: 0;
  text-transform: none;
  margin-bottom: 0.25rem;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 5rem;
  align-items: center;
}
.visual {
  min-height: 520px;
  background: var(--image) center/cover no-repeat;
  border: 0.5px solid rgba(201,169,110,0.18);
}
.landscape-band {
  min-height: 420px;
  background:
    linear-gradient(to right, rgba(8,12,18,0.72), rgba(8,12,18,0.18)),
    var(--image) center/cover no-repeat;
  display: flex;
  align-items: flex-end;
  padding: 4rem;
  border-top: 0.5px solid rgba(201,169,110,0.12);
  border-bottom: 0.5px solid rgba(201,169,110,0.12);
}
.landscape-band .hero-content { max-width: 620px; }
.route-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 4rem;
  align-items: center;
}
.route-map {
  background: rgba(201,169,110,0.06);
  border: 0.5px solid rgba(201,169,110,0.18);
  padding: 1rem;
  transition: transform 0.35s ease, border-color 0.35s ease;
}
.route-map:hover {
  transform: translateY(-5px) scale(1.01);
  border-color: rgba(201,169,110,0.38);
}
.route-map img {
  width: 100%;
  height: auto;
}
.route-list {
  display: grid;
  gap: 0.8rem;
  margin-top: 1.5rem;
}
.route-item {
  border-bottom: 0.5px solid rgba(201,169,110,0.12);
  padding-bottom: 0.8rem;
  color: var(--text-muted);
  font-size: 0.78rem;
  line-height: 1.75;
}
.route-item strong {
  display: block;
  color: var(--text);
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 0.2rem;
}
.cards-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  border: 0.5px solid rgba(201,169,110,0.16);
  background: rgba(201,169,110,0.12);
  margin-top: 2rem;
}
.card {
  background: var(--dark-3);
  padding: 1.7rem;
  border: 0.5px solid rgba(201,169,110,0.08);
  transition: transform 0.28s ease, border-color 0.28s ease, background 0.28s ease;
}
.card:hover, .choice-card:hover, .price-card:hover {
  transform: translateY(-5px);
  border-color: rgba(201,169,110,0.34);
  background: rgba(201,169,110,0.065);
}
.card h3 {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 0.65rem;
}
.card p, .card li {
  color: var(--text-muted);
  font-size: 0.76rem;
  line-height: 1.85;
}
.card ul { list-style: none; display: grid; gap: 0.45rem; }
.card li::before { content: ""; display: inline-block; width: 6px; height: 6px; background: var(--gold); margin-right: 0.65rem; vertical-align: 0.08em; }

.choice-grid, .pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: rgba(201,169,110,0.16);
  border: 0.5px solid rgba(201,169,110,0.16);
  margin-top: 3rem;
}
.pricing-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.choice-card, .price-card {
  background: var(--dark-3);
  padding: 2.5rem;
  transition: transform 0.28s ease, background 0.28s ease;
}
.choice-card h2, .price-card h3 {
  font-family: var(--serif);
  font-size: 2.1rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 0.75rem;
}
.choice-card p, .price-card p {
  color: var(--text-muted);
  font-size: 0.78rem;
  line-height: 1.85;
  margin-bottom: 1.5rem;
}
.price {
  font-family: var(--serif);
  color: var(--gold-light);
  font-size: 2.2rem;
  margin-bottom: 0.35rem;
}
.includes {
  list-style: none;
  display: grid;
  gap: 0.55rem;
  margin: 1.25rem 0 1.8rem;
}
.includes li {
  color: var(--text-muted);
  font-size: 0.74rem;
  line-height: 1.7;
  border-bottom: 0.5px solid rgba(201,169,110,0.1);
  padding-bottom: 0.55rem;
}

.table-wrap { overflow-x: auto; border: 0.5px solid rgba(201,169,110,0.16); margin-top: 2rem; }
table { width: 100%; border-collapse: collapse; min-width: 640px; }
th {
  color: var(--gold);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-align: left;
  font-weight: 400;
  padding: 1rem 1.2rem;
  border-bottom: 0.5px solid rgba(201,169,110,0.28);
}
td {
  color: var(--text-muted);
  font-size: 0.82rem;
  padding: 1rem 1.2rem;
  border-bottom: 0.5px solid rgba(247,241,230,0.1);
}
td:first-child, td:last-child { color: var(--text); font-family: var(--serif); font-size: 1.25rem; }

.notice {
  border: 0.5px solid rgba(201,169,110,0.2);
  background: rgba(201,169,110,0.07);
  padding: 1.5rem;
  color: var(--text-muted);
  line-height: 1.8;
  font-size: 0.78rem;
  margin-top: 1.5rem;
}
.bookeo-widget {
  width: min(100%, 1024px);
  margin: 6rem auto 0;
  scroll-margin-top: 6rem;
  border: 0;
  background: transparent;
  padding: 0;
  overflow: visible;
}
#billetterie,
.bookeo-widget,
.bookeo-intro,
.bookeo-frame {
  background-color: var(--dark);
}
.bookeo-widget,
.bookeo-intro,
.bookeo-frame {
  background-image: none;
}
.pricing-grid + .bookeo-widget {
  margin-top: 6rem;
}
.special-event {
  width: min(100%, 900px);
  margin: 4rem auto 0;
}
.special-event-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: center;
  margin-top: 1rem;
  padding: 1.5rem;
  border: 0.5px solid rgba(201,169,110,0.24);
  background: rgba(201,169,110,0.07);
}
.special-event h3 {
  font-family: var(--serif);
  color: var(--text);
  font-size: 1.7rem;
  font-weight: 400;
  margin-bottom: 0.45rem;
}
.special-event p {
  color: var(--text-muted);
  font-size: 0.82rem;
  line-height: 1.8;
  max-width: 650px;
}
.special-event + .bookeo-widget {
  margin-top: 5rem;
}
.event-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1fr);
  gap: clamp(2rem, 4vw, 4rem);
  align-items: stretch;
}
.event-visual {
  min-height: 520px;
}
.event-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: clamp(1.5rem, 3vw, 3rem);
}
.event-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  margin: 2rem 0;
}
.event-facts .event-fact {
  border: 0.5px solid rgba(201,169,110,0.22);
  background: rgba(8,12,18,0.34);
  padding: 1rem;
}
.event-facts strong,
.event-facts span {
  display: block;
}
.event-facts strong {
  color: var(--gold-light);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 0.45rem;
}
.event-facts span {
  color: var(--text-muted);
  font-size: 0.8rem;
  line-height: 1.65;
}
.bookeo-intro {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  align-items: end;
  padding-top: 2.5rem;
  margin-bottom: 1rem;
}
.bookeo-intro h3 {
  font-family: var(--serif);
  color: var(--text);
  font-size: 1.55rem;
  font-weight: 400;
  margin: 1rem 0 0.5rem;
}
.bookeo-intro p {
  color: var(--text-muted);
  max-width: 760px;
  font-size: 0.82rem;
  line-height: 1.8;
}
.bookeo-price-note {
  border: 0.5px solid rgba(201,169,110,0.24);
  background: rgba(8,12,18,0.42);
  padding: 0.85rem 1rem;
  min-width: 0;
  text-align: left;
}
.bookeo-price-note strong,
.bookeo-price-note span {
  display: block;
}
.bookeo-price-note strong {
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 400;
}
.bookeo-price-note span {
  color: var(--text-muted);
  font-size: 0.72rem;
  margin-top: 0.2rem;
}
.bookeo-frame {
  background: transparent;
  color: #121821;
  padding: 0.65rem;
  width: min(100%, 800px);
  margin: 0 auto;
  overflow: visible;
  overscroll-behavior: auto;
}
.bookeo-frame iframe,
.bookeo-frame img {
  max-width: 100% !important;
}
.bookeo-frame img {
  max-height: 90px !important;
  object-fit: cover !important;
}
.bookeo-frame iframe {
  min-width: 0 !important;
  width: 100% !important;
}

.seo-content {
  max-width: 980px;
  color: var(--text-muted);
  line-height: 1.9;
  font-size: 0.92rem;
}
.seo-content p + p { margin-top: 1.1rem; }

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 5rem;
}
.contact-info-item {
  padding: 1.25rem 0;
  border-bottom: 0.5px solid rgba(201,169,110,0.12);
}
.contact-info-label {
  display: block;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.6rem;
  margin-bottom: 0.4rem;
}
.contact-info-value {
  font-family: var(--serif);
  color: var(--text);
  font-size: 1.15rem;
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1rem; }
.form-group.full { grid-column: 1 / -1; }
label {
  color: var(--text-muted);
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
input, select, textarea {
  width: 100%;
  background: rgba(8,12,18,0.82);
  border: 0.5px solid rgba(201,169,110,0.22);
  color: var(--text);
  font-family: var(--sans);
  font-size: 0.82rem;
  padding: 0.85rem 1rem;
  border-radius: 0;
  outline: none;
}
textarea { min-height: 120px; resize: vertical; }
input:focus, select:focus, textarea:focus { border-color: var(--gold); }
::placeholder { color: rgba(200,190,170,0.78); }

footer {
  background: var(--dark);
  border-top: 0.5px solid rgba(201,169,110,0.12);
  padding: 3rem 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.footer-brand { font-family: var(--serif); color: var(--text-muted); letter-spacing: 0.08em; }
.footer-brand strong { color: var(--gold-light); font-weight: 400; }
.footer-copy { color: rgba(200,190,170,0.8); font-size: 0.65rem; }

.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(8,12,18,0.92);
  align-items: center;
  justify-content: center;
  padding: 2rem;
  backdrop-filter: blur(8px);
}
.modal-overlay.open { display: flex; }
.modal {
  background: var(--dark-3);
  border: 0.5px solid rgba(201,169,110,0.26);
  max-width: 720px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 2.5rem;
  position: relative;
}
.modal-close {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  background: transparent;
  color: var(--text-muted);
  border: 0;
  cursor: pointer;
  font-size: 1.1rem;
}
.modal-title {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 300;
  margin-bottom: 0.5rem;
}
.modal-sub { color: var(--text-muted); line-height: 1.75; font-size: 0.78rem; margin-bottom: 1.5rem; }

@media (max-width: 960px) {
  nav { padding: 1rem 1.4rem; gap: 0.75rem; }
  .nav-logo { order: 1; min-width: 0; }
  .nav-logo-text span:first-child { font-size: 0.92rem; letter-spacing: 0.12em; }
  .nav-logo-text span:last-child { font-size: 0.52rem; letter-spacing: 0.28em; }
  .nav-actions { order: 2; margin-left: auto; }
  .nav-phone { display: none; }
  .nav-cta { padding: 0.58rem 0.8rem; font-size: 0.56rem; letter-spacing: 0.12em; }
  .menu-toggle { display: inline-flex; order: 3; flex: 0 0 auto; }
  .nav-links {
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: calc(100% + 0.7rem);
    display: grid;
    gap: 0;
    padding: 0.7rem;
    background: rgba(8,12,18,0.98);
    border: 0.5px solid rgba(201,169,110,0.26);
    box-shadow: 0 22px 60px rgba(0,0,0,0.38);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  }
  nav.menu-open .nav-links {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .nav-links li { border-bottom: 0.5px solid rgba(201,169,110,0.12); }
  .nav-links li:last-child { border-bottom: 0; }
  .nav-links a {
    display: block;
    padding: 1rem;
    font-size: 0.68rem;
    letter-spacing: 0.18em;
  }
  .page-hero { background-image: linear-gradient(to right, rgba(8,12,18,0.78), rgba(8,12,18,0.22)), linear-gradient(to top, rgba(8,12,18,0.72), transparent 55%), var(--hero-image-mobile, var(--hero-image)); }
  .visual { background-image: var(--image-mobile, var(--image)); }
  .landscape-band { background-image: linear-gradient(to right, rgba(8,12,18,0.72), rgba(8,12,18,0.18)), var(--image-mobile, var(--image)); }
  section, .page-hero { padding-left: 1.5rem; padding-right: 1.5rem; }
  .page-hero { min-height: 68vh; }
  .trust-strip { padding: 1.5rem; }
  .trust-inner, .choice-grid, .pricing-grid, .cards-grid, .split, .contact-grid { grid-template-columns: 1fr; }
  .event-layout, .event-facts { grid-template-columns: 1fr; }
  .event-visual { min-height: 360px; }
  .event-panel { padding-top: 2rem; }
  .bookeo-widget { width: 100%; margin-top: 3.5rem; padding: 0; }
  .special-event { margin-top: 3rem; }
  .special-event-inner { grid-template-columns: 1fr; gap: 1.25rem; }
  .bookeo-intro { grid-template-columns: 1fr; gap: 1rem; align-items: start; }
  .bookeo-intro h3 { font-size: 1.55rem; }
  .bookeo-price-note { text-align: left; }
  .bookeo-frame {
    width: 100%;
    max-height: none;
    overflow: visible;
    overscroll-behavior: auto;
    padding: 0.45rem;
  }
  .visual { min-height: 340px; }
  .landscape-band { padding: 3rem 1.5rem; min-height: 360px; }
  .route-layout { grid-template-columns: 1fr; gap: 2rem; }
  .hero-badges { grid-template-columns: 1fr; }
  .hero-badge { padding: 1.25rem 1.5rem; }
  .floating-compass { display: none; }
  .form-grid { grid-template-columns: 1fr; }
  .table-wrap { overflow-x: hidden; margin-left: -0.35rem; margin-right: -0.35rem; }
  table { min-width: 0; table-layout: fixed; }
  th, td { padding: 0.75rem 0.42rem; font-size: 0.68rem; overflow-wrap: anywhere; }
  th { letter-spacing: 0.08em; }
  td:first-child, td:last-child { font-size: 0.92rem; }
  td:last-child .btn-small { width: 100%; min-width: 0; padding: 0.65rem 0.45rem; font-size: 0.58rem; }
  footer { flex-direction: column; text-align: center; padding: 2.5rem 1.5rem; }
}
