/* ============================================
   Amsterdam Jewel Cruises - Clean Refresh
   No Bootstrap, no jQuery, pure modern CSS
   ============================================ */

/* --- Accessibility --- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--color-gold);
  color: #0a0e14;
  padding: 0.75rem 1.5rem;
  border-radius: 0 0 6px 6px;
  font-weight: 600;
  font-size: 0.9rem;
  z-index: 10000;
  transition: top 0.2s;
}

.skip-link:focus {
  top: 0;
}

*:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 0;
}

/* Prevent outline from causing scroll jumps inside fixed/overlay containers */
.booking-widget *:focus-visible,
.mobile-menu *:focus-visible {
  outline-offset: -2px;
}

/* Lock body scroll when widget/modal is open */
body.body-locked {
  position: fixed;
  width: 100%;
  overflow-y: scroll;
}

/* --- Custom Properties --- */
:root {
  /* Matched to booking widget palette */
  --color-cream: #151c25;
  --color-warm-white: #0f151d;
  --color-gold: #c5a059;
  --color-gold-light: #d4b06a;
  --color-gold-dark: #d4af6a;
  --color-navy: #0a0e14;
  --color-navy-light: #141b24;
  --color-charcoal: #e0d8cc;
  --color-text: #ccc;
  --color-text-light: #999;
  --color-border: rgba(197, 160, 89, 0.15);
  --color-red-accent: #ef4444;

  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "Montserrat", "Segoe UI", sans-serif;

  --max-width: 1140px;
  --section-padding: 5rem 1.5rem;
  --transition: 0.3s ease;
  --radius: 4px;
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-text);
  background: var(--color-warm-white);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: var(--color-gold-dark);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover {
  color: var(--color-gold);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  color: var(--color-gold-light);
  font-weight: 600;
  line-height: 1.25;
}

/* --- Utility --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
.mt-0 {
  margin-top: 0;
}
.mt-1 {
  margin-top: 0.75rem;
}
.mt-2 {
  margin-top: 1.5rem;
}
.mt-3 {
  margin-top: 2rem;
}
.mt-4 {
  margin-top: 2.5rem;
}
.mb-0 {
  margin-bottom: 0;
}
.mb-1 {
  margin-bottom: 0.75rem;
}
.mb-2 {
  margin-bottom: 1.5rem;
}
.mb-3 {
  margin-bottom: 2rem;
}
.mb-4 {
  margin-bottom: 2.5rem;
}

/* --- Content widths --- */
.content-narrow {
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}
.content-medium {
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}
.content-small {
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.content-form {
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* --- Text helpers --- */
.text-muted {
  color: var(--color-text-light);
}
.text-gold {
  color: var(--color-gold-light);
}
.text-highlight {
  font-weight: 600;
  color: var(--color-gold-light);
}
.text-intro {
  font-size: 1.05rem;
  line-height: 1.8;
}
.text-small {
  font-size: 0.875rem;
}
.text-xs {
  font-size: 0.85rem;
}
.text-xxs {
  font-size: 0.8rem;
}
.text-fine {
  font-size: 0.85rem;
  color: var(--color-text-light);
  line-height: 1.7;
}
.text-italic {
  font-style: italic;
}

/* --- Section subtitle variant (no uppercase) --- */
.section__subtitle--plain {
  font-size: 0.9375rem;
  color: var(--color-text-light);
  font-family: var(--font-body);
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  margin-bottom: 1.5rem;
}

/* --- Divider left aligned --- */
.section__divider--left {
  width: 60px;
  height: 2px;
  background: var(--color-gold);
  border: none;
  margin: 1.5rem 0;
}

/* --- Button group left aligned --- */
.btn-group--left {
  display: flex;
  gap: 1rem;
  justify-content: flex-start;
  flex-wrap: wrap;
}

/* --- Language switch bar --- */
.lang-bar {
  text-align: center;
  padding: 1rem;
  background: var(--color-cream);
  border-bottom: 1px solid var(--color-border);
}

.lang-switch--center {
  justify-content: center;
}

.lang-switch--mt {
  margin-top: 1.25rem;
}

/* --- Full-width image section --- */
.full-image {
  position: relative;
  overflow: hidden;
}

.full-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* --- Placeholder max-widths --- */
.placeholder-block--narrow {
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.placeholder-block--medium {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* --- Gallery flush (no gaps, no radius) --- */
.gallery--flush {
  gap: 0;
}

.gallery--flush img {
  border-radius: 0;
}

.gallery--2col img {
  flex: 1 1 45%;
}

/* --- Sub navigation (sticky page nav) --- */
.sub-nav {
  position: sticky;
  top: 60px;
  z-index: 50;
  background: var(--color-warm-white);
  border-bottom: 1px solid var(--color-border);
}

.sub-nav__inner {
  display: flex;
  justify-content: center;
  gap: 0.25rem;
  white-space: nowrap;
}

.sub-nav__link {
  padding: 0.85rem 1rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-text-light);
  border-bottom: 2px solid transparent;
  transition: all var(--transition);
}

.sub-nav__link:hover,
.sub-nav__link.active {
  color: var(--color-gold-light);
  border-bottom-color: var(--color-gold);
}

.sub-nav__link--highlight {
  color: var(--color-gold-dark);
}

/* Offset for sticky nav + sub-nav when clicking anchor links */
section[id],
.section[id] {
  scroll-margin-top: 120px;
}

/* --- Section heading h3 (inline sub-headings) --- */
.content-h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.content-h4 {
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

/* --- About page sub-headings --- */
.about-h3 {
  font-size: 1.15rem;
  margin: 1.5rem 0 0.5rem;
}

/* --- Check list (✓ items) --- */
.check-list {
  list-style: none;
  padding: 0;
}

.check-list li {
  padding: 0.3rem 0;
  font-size: 0.9375rem;
}

.check-list li::before {
  content: "✓ ";
  color: var(--color-gold-dark);
  font-weight: 700;
}

/* --- Info card centered variant --- */
.info-card--center {
  text-align: center;
}

.info-card--center h4 {
  font-size: 1.15rem;
  margin-bottom: 1rem;
}

.info-card--cta {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* --- Know before you book box --- */
.notice-box {
  padding: 1.5rem;
  background: var(--color-navy-light);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
}

/* --- Payment icons --- */
.payment-icons {
  height: 30px;
  display: inline-block;
}

/* --- Header spacer (for pages without hero) --- */
.header-spacer {
  height: 90px;
}

/* --- Hero extra small --- */
.hero--xs {
  min-height: 250px;
}

/* --- Contact info grid --- */
.contact-grid {
  max-width: 860px;
  margin: 0 auto;
}

/* --- Legal content (terms page) --- */
.legal-content {
  max-width: 780px;
  margin: 0 auto;
}
.legal-content h3 {
  font-size: 1.25rem;
  margin: 2.5rem 0 0.75rem;
  color: var(--color-gold-light);
}
.legal-content h4 {
  font-size: 1rem;
  margin: 1.5rem 0 0.5rem;
  color: var(--color-gold-light);
}
.legal-content p {
  margin-bottom: 0.75rem;
  font-size: 0.9375rem;
  line-height: 1.7;
}
.legal-content ul {
  margin: 0.5rem 0 1rem 1.5rem;
}
.legal-content ul li {
  margin-bottom: 0.5rem;
  font-size: 0.9375rem;
  line-height: 1.7;
}

/* --- Legal divider --- */
.legal-divider {
  max-width: 780px;
  margin: 0 auto;
  border: none;
  border-top: 1px solid var(--color-border);
}

/* --- Btn large --- */
.btn--lg {
  font-size: 1rem;
}

/* --- Section Spacing --- */
.section {
  padding: var(--section-padding);
}

.section--cream {
  background: var(--color-cream);
}

.section--navy {
  background: var(--color-navy);
  color: var(--color-cream);
}

.section--navy h2,
.section--navy h3,
.section--navy h4 {
  color: var(--color-gold-light);
}

.section__title {
  font-size: 2.25rem;
  margin-bottom: 0.5rem;
  color: #fff;
}

.section__subtitle {
  font-size: 1rem;
  color: var(--color-text-light);
  font-family: var(--font-body);
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.section__divider {
  width: 60px;
  height: 2px;
  background: var(--color-gold);
  border: none;
  margin: 1.5rem auto;
}

/* --- Header / Navigation --- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(0, 0, 0, 0.5);
  border-bottom: 1px solid transparent;
  transition:
    background 0.4s ease,
    border-color 0.4s ease;
}

.site-header.scrolled {
  background: rgba(10, 14, 20, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom-color: rgba(197, 160, 89, 0.15);
}

.site-header__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
  transition: height 0.4s ease;
}

.site-header.scrolled .site-header__inner {
  height: 60px;
}

.site-header__logo {
  display: flex;
  align-items: center;
}

.site-header__logo img {
  height: 50px;
  width: auto;
  transition: height 0.4s ease;
}

.site-header.scrolled .site-header__logo img {
  height: 36px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0;
}

.nav a {
  color: #fff;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.6rem 1rem;
  border-radius: 0;
  transition: all var(--transition);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.3;
  white-space: nowrap;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

.nav a:hover,
.nav a.active {
  color: var(--color-gold-light);
  background: rgba(255, 255, 255, 0.1);
  text-shadow: 0 0 12px rgba(212, 176, 106, 0.4);
}

.nav__cta {
  background: transparent !important;
  color: var(--color-gold) !important;
  border: 1.5px solid var(--color-gold) !important;
  font-weight: 600 !important;
  padding: 0.45rem 1.3rem !important;
  margin-left: 0.75rem;
  border-radius: var(--radius);
  font-size: 0.8rem !important;
  letter-spacing: 0.06em;
  text-shadow: none !important;
}

.nav__cta:hover {
  background: var(--color-gold) !important;
  color: var(--color-navy) !important;
  border-color: var(--color-gold) !important;
  box-shadow: 0 0 20px rgba(197, 160, 89, 0.45);
  transform: translateY(-1px);
}

/* Nav language flag */
.nav__lang {
  padding: 0.5rem 0.6rem !important;
  display: flex !important;
  align-items: center;
  background: none !important;
}

.nav__lang img {
  width: 22px;
  height: auto;
  border-radius: 2px;
  opacity: 0.7;
  transition: opacity var(--transition);
}

.nav__lang:hover img {
  opacity: 1;
}

.nav__lang:hover {
  background: none !important;
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-gold-light);
  margin: 5px 0;
  transition: all var(--transition);
}

/* Language switcher */
.lang-switch {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.lang-switch img {
  width: 22px;
  height: auto;
  border-radius: 2px;
  opacity: 0.6;
  transition: opacity var(--transition);
}

.lang-switch img:hover,
.lang-switch img.active {
  opacity: 1;
}

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  overflow: hidden;
  margin-top: 0;
}

.hero--500 {
  min-height: 500px;
}

.hero--400 {
  min-height: 400px;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

/* Hero background images per page */
.hero__bg--index {
  background-image: url("images/amsterdam-dinner-cruise-12.webp");
}
.hero__bg--dinner {
  background-image: url("images/22.webp");
}
.hero__bg--private {
  background-image: url("images/21.jpg");
}
.hero__bg--about {
  background-image: url("images/dinner-cruise.jpg");
}
.hero__bg--about-boat-night {
  background-image: url("images/jewel-cruises-boat-by-night.jpg");
}
.hero__bg--about-27 {
  background-image: url("images/27.jpg");
}
.hero__bg--about-boat4 {
  background-image: url("images/hero-boat4.webp");
}
.hero__bg--contact-sign {
  background-image: url("images/amsterdam-dinner-cruise-08.jpg");
}
.hero__bg--contact {
  background-image: url("images/private-boat-tour.jpg");
}

.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10, 14, 20, 0.05) 0%, rgba(10, 14, 20, 0.3) 100%);
}

.hero__content {
  position: relative;
  z-index: 1;
  color: #fff;
  padding: 3rem 2rem;
  max-width: var(--max-width);
  width: 100%;
  margin: 0 auto;
  padding-left: 1.5rem;
}

.hero__eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--color-gold);
  margin-bottom: 1rem;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
}

.hero__badge {
  position: absolute;
  bottom: 1.5rem;
  right: 2rem;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  gap: 0.75rem;
}

.hero__badge img {
  height: 80px;
  width: auto;
  filter: brightness(1.1);
}

.hero__title {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 300;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 1rem;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.hero__title em {
  font-style: italic;
  color: #fff;
  font-weight: 300;
}

.hero__tagline {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 400;
  margin-bottom: 2rem;
  line-height: 1.7;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.4);
}

.hero__tagline strong {
  font-weight: 700;
  color: var(--color-gold);
}

.btn--hero {
  font-size: 0.8rem;
  padding: 0.9rem 2.5rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 1.5rem;
  background: var(--color-gold);
  color: var(--color-navy);
  border: 1.5px solid var(--color-gold);
  font-weight: 600;
  box-shadow: 0 0 30px rgba(197, 160, 89, 0.3);
  transition: all 0.3s ease;
}

.btn--hero:hover {
  background: var(--color-gold-light);
  color: var(--color-navy);
  border-color: var(--color-gold-light);
  box-shadow: 0 0 35px rgba(197, 160, 89, 0.5);
  transform: translateY(-1px);
}

/* Homepage hero - centered */
.hero--home {
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero--home .hero__content {
  padding: 6rem 1.5rem 2rem;
  max-width: 850px;
  margin: 0 auto;
  padding-left: 1.5rem;
}

.hero--home .hero__title {
  font-size: 3.5rem;
}

.hero--home .btn--hero {
  margin-top: 4rem;
}

/* --- Welcome section (below hero) --- */
.welcome-section {
  padding: 4rem 1.5rem 2.5rem;
  background: var(--color-navy);
}

.welcome-section__label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--color-gold);
  margin-bottom: 0.75rem;
}

.welcome-section__title {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 400;
  color: #fff;
  margin-bottom: 0.5rem;
}

.welcome-section__subtitle {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  font-style: italic;
  color: var(--color-text-light);
  margin-bottom: 1.5rem;
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1.5px solid transparent;
  text-align: center;
}

.btn--primary,
.btn--gold {
  background: var(--color-gold);
  color: var(--color-navy);
  border-color: var(--color-gold);
}

.btn--primary:hover,
.btn--gold:hover {
  background: var(--color-gold-light);
  border-color: var(--color-gold-light);
  color: var(--color-navy);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(197, 160, 89, 0.4);
}

.btn--outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
}

.btn--outline:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(197, 160, 89, 0.2);
}

.btn-row {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.btn-row .btn {
  min-width: 180px;
  text-align: center;
}

.btn--outline-gold {
  background: transparent;
  color: var(--color-gold);
  border: 1.5px solid var(--color-gold);
}

.btn--outline-gold:hover {
  background: var(--color-gold);
  color: var(--color-navy);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(197, 160, 89, 0.4);
}

.btn--navy {
  background: var(--color-navy);
  color: #fff;
  border-color: var(--color-navy);
}

.btn--navy:hover {
  background: var(--color-navy-light);
  color: #fff;
  transform: translateY(-1px);
}

.btn-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* --- Cards / Two-Column Layout --- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.two-col--reverse .two-col__media {
  order: -1;
}

.two-col__media img {
  border-radius: var(--radius);
  width: 100%;
  height: auto;
}

.two-col__label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-gold-dark);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.two-col__title {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #fff;
}

.two-col__text {
  margin-bottom: 1.5rem;
  color: var(--color-text);
  line-height: 1.8;
}

/* --- Feature Grid (USPs) --- */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
}

.feature__icon {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
  color: var(--color-gold);
}

.feature__title {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--color-gold-light);
  margin-bottom: 0.35rem;
}

.feature__text {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

/* --- Awards / Logos --- */
.awards-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
}

.awards-grid img {
  max-height: 90px;
  width: auto;
  max-width: 180px;
  filter: grayscale(30%);
  opacity: 0.8;
  transition: all var(--transition);
}

.awards-grid img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

/* --- Quote / Testimonial --- */
.quote-section {
  background: var(--color-navy);
  padding: 4rem 1.5rem;
  text-align: center;
}

.quote-section blockquote {
  max-width: 700px;
  margin: 0 auto;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-style: italic;
  color: #fff;
  line-height: 1.6;
}

.quote-section cite {
  display: block;
  margin-top: 1rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-style: normal;
  color: var(--color-gold);
}

/* --- Pricing Cards --- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

@media (max-width: 900px) and (min-width: 768px) {
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
  .pricing-card {
    padding: 1.5rem 1rem;
  }
}

.pricing-card {
  background: var(--color-navy-light);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 2.25rem 1.75rem;
  text-align: center;
  transition: all var(--transition);
  position: relative;
}

.pricing-card:hover {
  border-color: var(--color-gold);
  box-shadow: 0 4px 24px rgba(200, 169, 110, 0.12);
}

.pricing-card--featured {
  border-color: var(--color-gold);
  box-shadow: 0 4px 24px rgba(200, 169, 110, 0.15);
}

.pricing-card--featured::before {
  content: "Most popular";
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-gold);
  color: var(--color-navy);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.2rem 1rem;
  border-radius: 20px;
}

.pricing-card__name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--color-gold-light);
  margin-bottom: 0.5rem;
}

.pricing-card__price {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: #fff;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.pricing-card__price small {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--color-text-light);
}

.pricing-card__features {
  list-style: none;
  padding: 1.5rem 0;
  border-top: 1px solid var(--color-border);
  margin-top: 1rem;
}

.pricing-card__features li {
  padding: 0.35rem 0;
  font-size: 0.9375rem;
  color: var(--color-text);
}

.pricing-card__features li::before {
  content: "✓ ";
  color: var(--color-gold-dark);
  font-weight: 700;
}

/* --- Quick Strip (horizontal icon bar) --- */
.quick-strip {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem 3rem;
}

.quick-strip__item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.quick-strip__icon {
  font-size: 1.25rem;
}

.quick-strip__label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text);
  letter-spacing: 0.02em;
}

/* --- Detail List (definition list) --- */
.detail-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 3rem;
}

.detail-list__item {
  display: flex;
  gap: 0;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--color-border);
}

.detail-list__item dt {
  font-weight: 600;
  color: #fff;
  font-size: 0.9rem;
  min-width: 130px;
  flex-shrink: 0;
}

.detail-list__item dd {
  font-size: 0.875rem;
  color: var(--color-text);
  line-height: 1.5;
}

/* --- Map Embed --- */
.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16/7;
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* --- Street View Section (full-width divider) --- */
.streetview-section {
  width: 100%;
  aspect-ratio: 16/6;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.streetview-section #streetview-boat {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.streetview-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.streetview-overlay span {
  background: rgba(10, 14, 20, 0.6);
  color: #fff;
  padding: 0.6rem 1.5rem;
  border-radius: var(--radius);
  font-size: 0.875rem;
  letter-spacing: 0.02em;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.streetview-overlay:hover span {
  background: rgba(10, 14, 20, 0.8);
}

@media (max-width: 768px) {
  .streetview-overlay {
    display: none;
  }
}

.map-embed--flush {
  border-radius: 0;
  margin: 0;
}

.map-embed--short {
  aspect-ratio: 16/6;
}

.map-embed--short iframe,
.map-embed--short div {
  width: 100%;
  height: 100%;
}

#streetview-boat {
  width: 100%;
  height: 100%;
}

/* --- Route Map (Google Maps API) --- */
.routemap-container {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}

.google-map-style {
  width: 100%;
  height: 400px;
}

.custom-map-controls {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  z-index: 5;
}

.custom-map-controls button {
  width: 32px;
  height: 32px;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 3px;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}

.custom-map-controls button:hover {
  background: rgba(0, 0, 0, 0.9);
}

/* --- FAQ / Accordion --- */
.faq-list {
  max-width: 780px;
  margin: 0 auto;
}

.faq-category {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: #fff;
  margin: 2.5rem 0 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--color-border);
}

.faq-category:first-child {
  margin-top: 0;
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
}

.faq-item summary {
  padding: 1rem 0;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--color-gold-light);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.faq-item summary::after {
  content: "+";
  font-size: 1.25rem;
  color: var(--color-gold);
  font-weight: 300;
  transition: transform var(--transition);
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item__answer {
  padding: 0 0 1.25rem;
  font-size: 0.9375rem;
  color: var(--color-text);
  line-height: 1.7;
}

/* --- Menu Card (Food) --- */
.menu-card {
  max-width: 720px;
  margin: 2rem auto 0;
  background: #f8f5f0;
  border-radius: var(--radius);
  padding: 3.5rem 3.5rem;
  text-align: center;
  color: #3a3a3a;
  position: relative;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.menu-card::after {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(160, 130, 70, 0.25);
  border-radius: 2px;
  pointer-events: none;
}

.menu-card__label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #999;
  margin-bottom: 2rem;
}

.menu-card__course {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: #2a2a2a;
  margin: 2rem 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #ddd;
}

.menu-card__course:first-of-type {
  margin-top: 0;
}

.menu-card__item {
  margin-bottom: 1.25rem;
}

.menu-card__item h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: #2a2a2a;
  margin-bottom: 0.2rem;
}

.menu-card__item p {
  font-size: 0.85rem;
  color: #666;
  line-height: 1.6;
  font-style: italic;
}

.menu-card__tag {
  display: inline-block;
  font-size: 0.7rem;
  color: #8a7a5a;
  font-style: italic;
  margin-top: 0.15rem;
}

.menu-card__divider {
  border: none;
  border-top: 1px solid #ddd;
  margin: 2rem 0 0;
}

/* --- Info Grid (Quick facts, details) --- */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.info-card {
  padding: 1.5rem;
  background: var(--color-navy-light);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
}

.info-card h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--color-gold-light);
  margin-bottom: 0.5rem;
}

.info-card p {
  font-size: 0.9375rem;
  color: var(--color-text);
  line-height: 1.7;
}

/* --- Contact Form --- */
.form {
  max-width: 560px;
  margin: 0 auto;
}

.form__group {
  margin-bottom: 1.25rem;
}

.form__label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-gold-light);
  margin-bottom: 0.35rem;
}

.form__input,
.form__textarea,
.form__select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--color-charcoal);
  background: var(--color-navy-light);
  transition: border-color var(--transition);
}

.form__input:focus,
.form__textarea:focus,
.form__select:focus {
  outline: none;
  border-color: var(--color-gold);
}

.form__textarea {
  resize: vertical;
  min-height: 120px;
}

.form__status {
  margin-top: 1rem;
  font-size: 0.9rem;
  font-weight: 600;
}
.form__status--ok {
  color: #6fbf73;
}
.form__status--err {
  color: #e57373;
}

/* --- Image Gallery --- */
.gallery {
  display: flex;
  gap: 0.75rem;
  overflow: hidden;
}

.gallery img {
  border-radius: var(--radius);
  height: 280px;
  flex: 1 1 0;
  min-width: 0;
  object-fit: cover;
  cursor: pointer;
  transition:
    transform var(--transition),
    opacity var(--transition);
}

.gallery--tall img {
  height: 400px;
}

.gallery--wide img {
  height: 320px;
}

.gallery img:hover {
  transform: scale(1.02);
  opacity: 0.9;
}

/* --- Drinks Modal / Overlay --- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 14, 20, 0.85);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.modal-overlay.active {
  display: flex;
}

.modal {
  background: #f8f5f0;
  border-radius: var(--radius);
  max-width: 720px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  padding: 10px;
  position: relative;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.modal__inner {
  border: 1px solid rgba(160, 130, 70, 0.25);
  border-radius: 2px;
  padding: 2.5rem 2.5rem;
}

.modal .section__title {
  color: #2a2a2a;
}

.modal__close {
  position: sticky;
  top: 0;
  float: right;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #999;
  transition: color var(--transition);
  z-index: 1;
}

.modal__close:hover {
  color: #555;
}

/* --- Drinks Menu Table --- */
.drinks-table {
  width: 100%;
  margin-bottom: 1.5rem;
}

.drinks-table caption,
.drinks-category {
  font-family: var(--font-display);
  font-size: 1rem;
  color: #2a2a2a;
  font-weight: 600;
  text-align: left;
  margin: 1.5rem 0 0.5rem;
  padding-bottom: 0.35rem;
  border-bottom: 1px solid #ddd;
}

.drinks-table td {
  padding: 0.3rem 0;
  font-size: 0.9rem;
  color: #3a3a3a;
}

.drinks-table td.text-fine {
  font-size: 0.78rem;
  font-style: italic;
  color: #999;
  padding-bottom: 0.6rem;
}

.drinks-table td:last-child {
  text-align: right;
  font-weight: 600;
  color: #8a7a5a;
  white-space: nowrap;
}

.modal .text-fine {
  color: #999;
}

/* --- Floating Book Button --- */
.floating-book-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--color-gold);
  color: var(--color-navy);
  border: 1.5px solid var(--color-gold);
  border-radius: var(--radius);
  padding: 0.85rem 2rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: 0 4px 20px rgba(197, 160, 89, 0.35);
  cursor: pointer;
  z-index: 9998;
  transition: all 0.3s ease;
}

.floating-book-btn:hover {
  background: var(--color-gold-light);
  border-color: var(--color-gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(197, 160, 89, 0.55);
}

.floating-book-btn.hidden {
  opacity: 0;
  pointer-events: none;
}

/* --- Footer --- */
.site-footer {
  background: var(--color-navy);
  color: rgba(255, 255, 255, 0.7);
  padding: 3.5rem 1.5rem 2rem;
}

.footer-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2.5rem;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--color-gold-light);
  margin-bottom: 0.75rem;
}

.footer-tagline {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
}

.footer-heading {
  font-family: var(--font-body);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-gold);
  margin-bottom: 1rem;
  font-weight: 600;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.65);
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--color-gold-light);
}

.footer-bottom {
  max-width: var(--max-width);
  margin: 2.5rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
}

/* --- Placeholder (for booking widget etc) --- */
.placeholder-block {
  background: var(--color-cream);
  border: 2px dashed var(--color-gold);
  border-radius: var(--radius);
  padding: 3rem 2rem;
  text-align: center;
  color: var(--color-gold-dark);
  font-weight: 600;
  font-size: 1rem;
}

/* --- Responsive --- */
/* Compact nav for medium screens */
@media (max-width: 980px) {
  .site-header__inner {
    height: 70px;
  }
  .site-header.scrolled .site-header__inner {
    height: 56px;
  }
  .site-header__logo img {
    height: 38px;
  }
  .site-header.scrolled .site-header__logo img {
    height: 30px;
  }

  .nav a {
    font-size: 0.75rem;
    padding: 0.5rem 0.6rem;
    letter-spacing: 0.02em;
  }

  .nav__cta {
    padding: 0.4rem 0.9rem !important;
    font-size: 0.72rem !important;
    margin-left: 0.4rem;
  }

  .sub-nav {
    top: 56px;
  }
}

@media (max-width: 900px) {
  .two-col {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .two-col--reverse .two-col__media {
    order: 0;
  }

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

  .hero__title {
    font-size: 2.5rem;
  }
  .hero--home .hero__title {
    font-size: 2.75rem;
  }
  .welcome-section__title {
    font-size: 2rem;
  }
  .section__title {
    font-size: 1.85rem;
  }

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

@media (max-width: 767px) {
  :root {
    --section-padding: 3.5rem 1.25rem;
  }

  .nav {
    display: none;
  }

  .nav.active {
    display: none;
  }

  .menu-toggle {
    display: block;
    z-index: 101;
  }

  .nav a {
    padding: 0.75rem 1rem;
    width: 100%;
    text-align: left;
  }

  .nav__cta {
    margin-left: 0;
    margin-top: 0.5rem;
    text-align: center;
  }

  .menu-toggle {
    display: block;
  }

  .site-header__inner {
    height: 60px;
  }
  .site-header__logo img {
    height: 36px;
  }

  .hero {
    min-height: 55vh;
  }
  .hero--500 {
    min-height: 400px;
  }
  .hero--400 {
    min-height: 300px;
  }
  .hero__title {
    font-size: 2.25rem;
  }
  .hero--home .hero__title {
    font-size: 2.5rem;
  }
  .hero__tagline {
    font-size: 0.95rem;
  }
  .hero__tagline br {
    display: none;
  }
  .hero__badge img {
    height: 60px;
  }
  .hero__eyebrow {
    font-size: 0.65rem;
  }
  .btn--hero {
    padding: 0.85rem 1.75rem;
    font-size: 0.8rem;
  }
  .welcome-section__title {
    font-size: 1.75rem;
  }
  .welcome-section {
    padding: 3rem 1.25rem 2rem;
  }

  .features {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
  }

  .gallery img {
    height: 220px;
  }

  .sub-nav {
    display: none;
  }

  .btn-row {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }
  .btn-row .btn {
    min-width: 200px;
  }
  .gallery--tall img {
    height: 300px;
  }
  .gallery--wide img {
    height: 240px;
  }
  .menu-card {
    padding: 2.5rem 1.75rem;
  }
  .menu-card::after {
    inset: 8px;
  }
  .info-grid {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .detail-list {
    grid-template-columns: 1fr;
  }
  .detail-list__item {
    flex-direction: column;
    gap: 0.25rem;
  }
  .detail-list__item dt {
    min-width: auto;
  }

  .map-embed:not(.map-embed--short) {
    aspect-ratio: 4/3;
  }

  .quick-strip {
    gap: 1rem 2rem;
  }
  .quick-strip__label {
    font-size: 0.8rem;
  }
}

/* --- Mobile Menu (fullscreen overlay) --- */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100dvh;
  background: rgba(10, 14, 20, 0.98);
  z-index: 500;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.25rem;
  overflow: hidden;
}

.mobile-menu.active {
  display: flex;
}

/* Lock body scroll and hide floating btn when menu is open */
body.menu-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
}

body.menu-open .floating-book-btn {
  display: none;
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.mobile-menu a {
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 300;
  padding: 0.85rem 1rem;
  letter-spacing: 0.02em;
  transition: color var(--transition);
}

.mobile-menu a:hover {
  color: var(--color-gold);
}

.mobile-menu__cta {
  margin-top: 1.5rem;
  font-size: 1.6rem !important;
  font-weight: 300 !important;
  letter-spacing: 0.02em;
  text-transform: none;
  border: 1.5px solid var(--color-gold);
  padding: 0.85rem 2.5rem !important;
  border-radius: var(--radius);
  color: var(--color-gold) !important;
  transition: all 0.3s ease;
}

.mobile-menu__cta:hover {
  background: var(--color-gold);
  color: var(--color-navy) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(197, 160, 89, 0.4);
}

.mobile-menu__lang {
  margin-top: 1.5rem;
}

.mobile-menu__lang img {
  height: 24px;
  width: auto;
  border-radius: 2px;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.mobile-menu__lang:hover img {
  opacity: 1;
}

.mobile-menu__close {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
  line-height: 1;
  background: none;
  border: none;
  padding: 0;
}

.mobile-menu__close:hover {
  color: var(--color-gold);
}

@media (max-width: 460px) {
  .hero--home .hero__content {
    padding: 2rem 1.25rem;
  }
  .hero--home .btn--hero {
    margin-top: 1rem;
  }
  .hero__title {
    font-size: 1.75rem;
  }
  .hero--home .hero__title {
    font-size: 2rem;
  }
  .hero__tagline {
    font-size: 0.85rem;
  }
  .hero__eyebrow {
    font-size: 0.6rem;
    letter-spacing: 0.15em;
  }

  .gallery {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 0.5rem;
    padding-bottom: 0.5rem;
  }
  .gallery img {
    flex: 0 0 85%;
    height: 200px;
    scroll-snap-align: center;
  }
  .gallery--tall img {
    flex: 0 0 46%;
    height: 280px;
  }
  .gallery--wide img {
    height: 200px;
  }
}

/* --- Booking Confirmation Page --- */
.confirmation-wrapper {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 7rem 1.25rem 5rem;
  text-align: center;
}

.success-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--color-gold);
  border-radius: 8px;
  padding: 2.5rem 2rem;
  max-width: 500px;
  width: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.checkmark-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(39, 174, 96, 0.1);
  border: 2px solid #27ae60;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.checkmark {
  width: 40px;
  height: 40px;
  stroke: #27ae60;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  animation: drawCheck 0.8s ease forwards;
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
}

@keyframes drawCheck {
  to {
    stroke-dashoffset: 0;
  }
}

.success-card h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: #fff;
}

.success-card p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.order-info {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 6px;
  padding: 1rem;
  margin-bottom: 2rem;
  text-align: left;
  border-left: 3px solid var(--color-gold);
}

.info-row {
  display: flex;
  flex-direction: column;
  margin-bottom: 0.75rem;
}

.info-row:last-child {
  margin-bottom: 0;
}

.info-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 1px;
  display: block;
  margin-bottom: 4px;
}

.info-value {
  font-size: 1rem;
  color: var(--color-gold);
  font-weight: 600;
  word-break: break-all;
}

.greeting {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: rgba(255, 255, 255, 0.9);
}

.info-section {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  padding: 1.25rem;
  margin-bottom: 1.25rem;
  text-align: left;
}

.info-section h3 {
  font-size: 1rem;
  margin-bottom: 0.75rem;
  color: var(--color-gold);
  font-weight: 600;
}

.info-section p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0;
}

.info-section .warning-inline {
  margin-top: 0.75rem;
  font-weight: 600;
  color: #e74c3c;
  font-size: 0.85rem;
}

.info-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.info-section li {
  font-size: 0.9rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
  padding-left: 1.5rem;
  position: relative;
}

.info-section li:before {
  content: "•";
  position: absolute;
  left: 0.5rem;
  color: var(--color-gold);
}

.warning-box {
  background: rgba(231, 76, 60, 0.15);
  border: 1px solid rgba(231, 76, 60, 0.4);
  border-radius: 6px;
  padding: 1rem;
  margin-top: 1.5rem;
  text-align: left;
}

.warning-box strong {
  display: block;
  margin-bottom: 0.5rem;
  color: #e74c3c;
  font-size: 0.95rem;
}

.warning-box p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0;
}

.info-note {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  padding: 0.75rem;
  margin-top: 1.5rem;
  text-align: center;
}

.info-note small {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8rem;
}

.success-card .support-text {
  margin-top: 2rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
}

.success-card .support-text a {
  color: rgba(255, 255, 255, 0.5);
  transition: color var(--transition);
}

.success-card .support-text a:hover {
  color: var(--color-gold-light);
}

/* --- Booking Teaser (inline calendar) --- */
.booking-teaser {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  margin-top: 2rem;
}

.booking-teaser__calendar {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.booking-teaser__info h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
  color: #fff;
}

.booking-teaser__list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.booking-teaser__item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.booking-teaser__icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: rgba(197, 160, 89, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.booking-teaser__icon svg {
  width: 18px;
  height: 18px;
  fill: var(--color-gold);
}

.booking-teaser__item strong {
  display: block;
  font-size: 0.9rem;
  color: #fff;
  margin-bottom: 0.2rem;
}

.booking-teaser__item p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
  margin: 0;
}

.booking-teaser__item a {
  color: var(--color-gold-light);
}

.legend-home {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 0.75rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}

.legend-home .legend-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.calendar-trust {
  text-align: center;
  margin-top: 0.75rem;
}

.calendar-trust__main {
  display: block;
  font-size: 0.85rem;
  color: #27ae60;
  font-weight: 600;
}

.calendar-trust__sub {
  display: block;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 0.15rem;
}

@media (max-width: 767px) {
  .booking-teaser {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
