/* ───── SKIP LINK ───── */
.skip-link {
  position: fixed;
  left: 12px;
  top: -60px;
  z-index: 200;
  background: var(--ink);
  color: #fff;
  padding: 12px 18px;
  border-radius: 4px;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 12px;
}
/* ───── HEADER ───── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 120;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 clamp(18px, 4vw, 52px);
  height: var(--nav-height);
  background: rgba(251, 250, 248, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.site-logo {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 3px;
}
.site-logo-top {
  font-family: var(--font-serif);
  font-size: 19px;
  letter-spacing: 0.18em;
  color: var(--ink);
}
.site-logo-bot {
  font-size: 9.5px;
  letter-spacing: 0.42em;
  color: var(--stone);
  text-transform: uppercase;
}
/* ───── HEADER NAV ───── */
.header-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 30px);
}
/* ───── LANGUAGE SWITCHER – DESKTOP GLOBE DROPDOWN ───── */
.lang-switcher {
  position: relative;
  display: flex;
  align-items: center;
}
.lang-trigger {
  display: flex;
  align-items: center;
  gap: 4px;
  background: none;
  border: none;
  border-radius: 0;
  padding: 0;
  cursor: pointer;
  color: var(--ink);
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-family: inherit;
  transition: opacity 0.2s;
  white-space: nowrap;
  opacity: 0.65;
}
.lang-trigger:hover {
  opacity: 1;
}
.lang-trigger-globe {
  width: 14px;
  height: 14px;
  opacity: 0.6;
  flex-shrink: 0;
}
.lang-trigger-code {
  font-weight: 500;
  font-size: 13px;
}
.lang-trigger-chevron {
  width: 10px;
  height: 10px;
  opacity: 0.5;
  transition: transform 0.22s;
  flex-shrink: 0;
}
.lang-switcher.open .lang-trigger-chevron {
  transform: rotate(180deg);
}
.lang-switcher.open .lang-trigger {
  opacity: 1;
}
.lang-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 16px 48px rgba(22, 49, 63, 0.16), 0 2px 8px rgba(22, 49, 63, 0.06);
  padding: 6px;
  min-width: 148px;
  z-index: 999;
  animation: dvFade 0.18s both;
}
.lang-dropdown.open {
  display: block;
}
.lang-dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  border-radius: 8px;
  text-decoration: none;
  color: var(--ink2);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-family: inherit;
  transition: background 0.16s, color 0.16s;
}
.lang-dropdown-item:hover {
  background: var(--sand);
  color: var(--ink);
}
.lang-dropdown-item.active {
  background: var(--ink);
  color: #fff;
  font-weight: 600;
}
.lang-dropdown-flag {
  display: none;
}
.lang-dropdown-label {
  flex: 1;
  display: inline-flex;
  align-items: baseline;
  gap: 5px;
}
.lang-dropdown-name {
  font-size: 11px;
  opacity: 0.65;
  letter-spacing: 0.04em;
  text-transform: none;
  display: inline;
  margin-left: 4px;
}

/* ───── BUTTONS ───── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 30px;
  font-size: 12.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  font-family: inherit;
}
.btn-primary {
  background: var(--ink);
  color: #fff;
}
.btn-primary:hover {
  background: var(--ink2);
}
.btn-outline {
  background: transparent;
  border: 1px solid currentColor;
  color: var(--ink);
}
.btn-outline-light {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.7);
  color: #fff;
}
.btn-outline-light:hover {
  border-color: #fff;
}
.btn-light {
  background: #fff;
  color: var(--ink);
}
/* ───── CARDS ───── */
.card-link {
  text-decoration: none;
  display: block;
}
.card-overlay {
  position: relative;
  border-radius: 3px;
  overflow: hidden;
  background: #000;
  display: block;
}
.card-overlay-img {
  overflow: hidden;
  aspect-ratio: 4 / 5;
}
.card-overlay-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 33, 43, 0) 40%, rgba(15, 33, 43, 0.82) 100%);
  pointer-events: none;
}
.card-overlay-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 24px 24px 26px;
  color: #fff;
}
.card-num {
  font-family: var(--font-italic);
  font-style: italic;
  font-size: 18px;
  color: var(--mist);
}
.card-title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 23px;
  margin: 4px 0 0;
  line-height: 1.1;
}
.card-desc {
  font-size: 13.5px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.82);
  margin: 9px 0 0;
}
.card-stacked {
  display: block;
  text-decoration: none;
}
.card-stacked-img {
  overflow: hidden;
  aspect-ratio: 3 / 4;
  border-radius: 3px;
}
.card-stacked-title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 22px;
  margin: 18px 0 0;
  color: var(--ink);
}
.card-stacked-desc {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--ink2);
  margin: 9px 0 0;
}
/* ───── FORM ───── */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.form-label {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--stone);
}
.form-input {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 3px;
  padding: 14px 16px;
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
  transition: border-color 0.2s;
}
.form-input:focus {
  border-color: var(--ink);
  outline: 2px solid var(--stone);
  outline-offset: 1px;
}
.form-input.has-error {
  border-color: #c00;
}
.form-error {
  color: #c00;
  font-size: 12px;
  margin-top: 2px;
  display: none;
}
.form-error.show {
  display: block;
}
.form-textarea {
  resize: vertical;
  min-height: 120px;
}
/* ───── COOKIE CONSENT ───── */
.cookie-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 160;
  display: flex;
  justify-content: center;
  padding: 16px;
}
.cookie-card {
  max-width: 1180px;
  width: 100%;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 24px 70px rgba(22, 49, 63, 0.22);
  padding: clamp(20px, 3vw, 30px);
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  animation: dvFade 0.4s both;
}
.cookie-text-wrap {
  max-width: 640px;
}
.cookie-title {
  font-family: var(--font-serif);
  font-size: 20px;
  color: var(--ink);
}
.cookie-text {
  font-size: 14px;
  line-height: 1.65;
  color: var(--ink2);
  margin: 8px 0 0;
}
.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.cookie-btn {
  border-radius: 2px;
  padding: 13px 22px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  border: 1px solid var(--line);
  background: none;
  color: var(--ink);
  font-family: inherit;
}
.cookie-btn-accept {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}
.cookie-btn-accept:hover {
  background: var(--ink2);
}
.cookie-btn-essential {
  border-color: var(--ink);
}
/* ───── BACK TO TOP ───── */
.back-top-btn {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(251, 250, 248, 0.9);
  backdrop-filter: blur(8px);
  cursor: pointer;
  color: var(--ink);
  font-size: 18px;
  box-shadow: 0 8px 30px rgba(22, 49, 63, 0.14);
  display: none;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: opacity 0.3s;
}
/* ───── CONFETTI (form sent) ───── */
.confetti-box {
  display: none;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 40px;
  text-align: center;
}
.confetti-title {
  font-family: var(--font-serif);
  font-size: 26px;
  color: var(--ink);
}
.confetti-text {
  font-size: 15px;
  color: var(--ink2);
  margin: 12px 0 0;
  line-height: 1.6;
}
/* ───── SOCIAL CONTACT ROW ───── */
.contact-row-card {
  margin: 40px 0 0;
  padding: 24px 28px;
  background: var(--sand);
  border: 1px solid var(--line);
  border-radius: 10px;
}
.contact-row-company {
  display: block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--ink);
  margin: 0 0 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.contact-row {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact-row-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--stone);
}
.contact-row-value {
  text-decoration: none;
  font-size: 16px;
  color: var(--ink2);
  line-height: 1.6;
  font-style: normal;
}
.contact-row-link {
  text-decoration: none;
  font-size: 18px;
  color: var(--ink);
}

/* ───── MOBILE BOTTOM DOCK ───── */
.mobile-dock {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 122;
  background: rgba(251,250,248,0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
  padding: max(6px, env(safe-area-inset-top)) 12px 6px;
  justify-content: space-around;
  align-items: stretch;
}
.mobile-dock::-webkit-scrollbar {
  display: none;
}
.dock-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  color: var(--stone);
  text-decoration: none;
  font-family: var(--font-sans);
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 4px;
  border-radius: 10px;
  flex: 1;
  transition: color 0.16s, background 0.16s;
}
.dock-item svg {
  flex-shrink: 0;
}
.dock-item:hover,
.dock-item.active {
  color: var(--ink);
  background: rgba(22,49,63,0.05);
}

/* ───── FLOATING LANG PILL (mobile only) ───── */
.mobile-lang-pill {
  display: none;
  position: fixed;
  top: max(86px, calc(76px + env(safe-area-inset-top)));
  right: 14px;
  z-index: 121;
  background: rgba(251,250,248,0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 12px 6px 10px;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(22,49,63,0.12);
  align-items: center;
  gap: 5px;
  cursor: pointer;
}
.mobile-lang-pill:hover {
  background: rgba(22,49,63,0.06);
}
.mobile-lang-pill-globe {
  width: 14px;
  height: 14px;
  opacity: 0.6;
  flex-shrink: 0;
}
.mobile-lang-pill-chevron {
  width: 9px;
  height: 9px;
  opacity: 0.45;
  transition: transform 0.2s;
  flex-shrink: 0;
}
.mobile-lang-pill.open .mobile-lang-pill-chevron {
  transform: rotate(180deg);
}

/* ───── FLOATING LANG DROPDOWN (mobile) ───── */
.mobile-lang-dropdown {
  display: none;
  position: fixed;
  top: 80px;
  left: 14px;
  right: 14px;
  z-index: 121;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(22,49,63,0.16);
  padding: 6px;
  animation: dvFade 0.18s both;
}
.mobile-lang-dropdown.open {
  display: block;
}
.mobile-lang-dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  border-radius: 8px;
  text-decoration: none;
  color: var(--ink2);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: var(--font-sans);
  transition: background 0.15s, color 0.15s;
}
.mobile-lang-dropdown-item:hover {
  background: var(--sand);
  color: var(--ink);
}
.mobile-lang-dropdown-item.active {
  background: var(--ink);
  color: #fff;
  font-weight: 600;
}
.mobile-lang-dropdown-flag {
  display: none;
}
.mobile-lang-dropdown-name {
  font-size: 11px;
  font-weight: 400;
  opacity: 0.65;
  letter-spacing: 0.04em;
  text-transform: none;
  display: inline;
  margin-left: 6px;
}

/* ───── OLD HAMBURGER REMOVED ── keep class stub to avoid 404 ───── */
.menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(251,250,248,0.9);
  backdrop-filter: blur(8px);
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  transition: background 0.2s, border-color 0.2s;
  position: relative;
  z-index: 130;
}
.menu-btn:hover {
  background: rgba(22,49,63,0.06);
  border-color: var(--stone);
}
.menu-btn-bar {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.28s cubic-bezier(0.4,0,0.2,1), opacity 0.2s;
  transform-origin: center;
}
.menu-btn-bar:nth-child(1) { margin-bottom: 4px; }
.menu-btn-bar:nth-child(3) { margin-top: 4px; }
.menu-btn.is-open .menu-btn-bar:nth-child(1) {
  transform: translateY(5.5px) rotate(45deg);
  margin-bottom: 0;
}
.menu-btn.is-open .menu-btn-bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.menu-btn.is-open .menu-btn-bar:nth-child(3) {
  transform: translateY(-5.5px) rotate(-45deg);
  margin-top: 0;
}

/* ───── MOBILE DRAWER ───── */
.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(320px, 88vw);
  z-index: 125;
  background: #fff;
  box-shadow: -12px 0 60px rgba(22,49,63,0.18);
  display: flex;
  flex-direction: column;
  padding: 0;
  transform: translateX(100%);
  transition: transform 0.36s cubic-bezier(0.4,0,0.2,1);
  overflow: hidden;
}
.mobile-nav.is-open {
  transform: translateX(0);
}
.mobile-nav-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow-y: auto;
  padding-top: var(--nav-height);
}
.mobile-nav-links {
  display: flex;
  flex-direction: column;
  padding: 24px 0 0;
  flex: 1;
}
.mobile-nav-links a {
  display: flex;
  align-items: center;
  padding: 16px 28px;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink2);
  border-bottom: 1px solid var(--line);
  transition: color 0.18s, background 0.18s, padding-left 0.18s;
  font-family: var(--font-sans);
}
.mobile-nav-links a:first-child {
  border-top: 1px solid var(--line);
}
.mobile-nav-links a:hover {
  color: var(--ink);
  background: var(--sand);
  padding-left: 36px;
}
.mobile-nav-links a.active {
  color: var(--ink);
  font-weight: 600;
}
.mobile-nav-lang {
  padding: 24px 28px 32px;
  border-top: 1px solid var(--line);
  margin-top: auto;
}
.mobile-nav-lang-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 12px;
}
.mobile-nav-lang-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.mobile-nav-lang-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  text-decoration: none;
  font-size: 11.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink2);
  font-family: var(--font-sans);
  transition: border-color 0.18s, background 0.18s, color 0.18s;
}
.mobile-nav-lang-pill:hover {
  border-color: var(--stone);
  background: var(--sand);
  color: var(--ink);
}
.mobile-nav-lang-pill.active {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}
.mobile-nav-lang-flag {
  font-size: 14px;
  line-height: 1;
}

/* ───── MOBILE DRAWER BACKDROP ───── */
.mobile-nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 124;
  background: rgba(22,49,63,0.4);
  backdrop-filter: blur(2px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.32s;
}
.mobile-nav-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}

/* ───── VOUTE-TICKER OVERRIDE ─────
   voute-ticker.js (extern, voutedigital.com) zet body.vgt-active en injecteert
   zelf translateY(-65px/-170px) !important op deze elementen, waardoor de
   mobiele dock/cookiebar/back-top/lang-pill volledig van het scherm
   verdwijnen. Hun regel heeft dezelfde specificity + !important en staat
   later in de cascade, dus wint op source-order. "html" ervoor tilt onze
   specificity net hoger zodat we altijd winnen, ongeacht laadvolgorde. */
html body.vgt-active .mobile-dock,
html body.vgt-active #cookieBar,
html body.vgt-active .back-top-btn,
html body.vgt-active .mobile-lang-pill,
html body.vgt-active .mobile-lang-dropdown {
  transform: none !important;
}

/* ───── RESPONSIVE COMPONENTS ───── */
@media (max-width: 1024px) {
  .site-header {
    padding: 0 14px;
  }
  .site-logo-top {
    font-size: 16px;
  }
  .site-logo-bot {
    font-size: 8px;
  }
  /* Verberg desktop nav + lang-switcher op mobiel */
  .header-nav.dv-desk,
  .lang-switcher {
    display: none !important;
  }
  /* Toon bottom dock en floating lang pill */
  .mobile-dock {
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 122;
  background: rgba(251,250,248,0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
  padding: max(6px, env(safe-area-inset-top)) 12px 6px;
  justify-content: space-around;
  align-items: stretch;
}
.mobile-dock::-webkit-scrollbar {
  display: none;
}
  .mobile-lang-pill {
    display: flex;
  }
  /* Ruimte voor dock */
  body {
    padding-top: max(72px, calc(62px + env(safe-area-inset-top)));
  }
  .btn {
    padding: 14px 22px;
    font-size: 11px;
  }
  .cookie-card {
    flex-direction: row;
    align-items: center;
    padding: 12px 14px;
    gap: 12px;
  }
  .cookie-text-wrap {
    flex: 1;
    min-width: 0;
  }
  .cookie-title {
    font-size: 14px;
  }
  .cookie-text {
    display: none;
  }
  .cookie-actions {
    flex-direction: column;
    gap: 6px;
    width: auto;
    flex-shrink: 0;
  }
  .cookie-btn {
    padding: 9px 14px;
    font-size: 10px;
    white-space: nowrap;
    text-align: center;
  }
  .back-top-btn {
    width: 40px;
    height: 40px;
    right: 14px;
    bottom: max(82px, calc(72px + env(safe-area-inset-bottom)));
    font-size: 15px;
  }
  .cookie-bar {
    bottom: max(70px, calc(60px + env(safe-area-inset-bottom)));
  }
}
@media (max-width: 640px) {
  .skip-link {
    font-size: 11px;
    padding: 10px 14px;
  }
  .lang-link {
    padding: 5px 8px;
    font-size: 9px;
    letter-spacing: 0.08em;
  }
  .btn {
    padding: 12px 18px;
    font-size: 10.5px;
    width: 100%;
    justify-content: center;
  }
  .cookie-card {
    padding: 16px;
  }
  .cookie-title {
    font-size: 17px;
  }
  .cookie-text {
    font-size: 13px;
  }
  .cookie-actions {
    flex-direction: column;
    gap: 8px;
  }
  .cookie-btn {
    width: 100%;
  }
  .card-overlay-img {
    aspect-ratio: 3 / 4;
  }
  .card-title {
    font-size: 19px;
  }
  .card-desc {
    font-size: 12.5px;
  }
  .card-stacked-title {
    font-size: 18px;
  }
  .form-input {
    padding: 12px 14px;
    font-size: 14px;
  }
  .form-textarea {
    min-height: 100px;
  }
}
@media (max-width: 480px) {
  .site-header {
    padding: 0 10px;
    gap: 8px;
  }
  .site-logo-top {
    font-size: 14px;
    letter-spacing: 0.12em;
  }
  .site-logo-bot {
    font-size: 7px;
    letter-spacing: 0.3em;
  }
  .btn {
    padding: 10px 16px;
    font-size: 10px;
  }
  .card-overlay-content {
    padding: 16px;
  }
  .card-num {
    font-size: 15px;
  }
  .card-title {
    font-size: 17px;
  }
  .card-stacked-title {
    font-size: 16px;
    margin-top: 12px;
  }
}
@media (min-width: 1025px) and (max-width: 1320px) {
  .header-nav {
    gap: clamp(10px, 1.2vw, 20px);
  }
  .dv-nav-a {
    font-size: 11px;
    letter-spacing: 0.10em;
  }
}

/* ── FAQ Section ────────────────────────────────── */
.faq-section {
  max-width: 820px;
  margin: 3rem auto;
  padding: 0 1.25rem;
}

.faq-heading {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--color-heading, #1a1a2e);
}

.faq-item {
  border-bottom: 1px solid var(--color-border, #e0e0e0);
  padding: 0.75rem 0;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  color: var(--color-text, #222);
  padding: 0.25rem 0;
}

.faq-question::after {
  content: '+';
  font-size: 1.25rem;
  font-weight: 400;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

details[open] .faq-question::after {
  content: '-';
}

.faq-answer {
  padding: 0.75rem 0 0.5rem 0;
  color: var(--color-text-muted, #444);
  font-size: 0.95rem;
  line-height: 1.65;
}

.faq-answer p {
  margin: 0;
}


  to { opacity: 1; transform: scale(1); }
}



.filter-scroll {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 0 5%;
  scrollbar-width: none;
  -ms-overflow-style: none;
  align-items: center;
}
.filter-scroll::-webkit-scrollbar {
  display: none;
}

.filterable-item {
  animation: fadeInFilter 0.4s ease forwards;
}
.filterable-item.hidden {
  display: none !important;
}
@keyframes fadeInFilter {
  from { opacity: 0; transform: scale(0.96); }
  to { opacity: 1; transform: scale(1); }
}




/* Sticky Filter Bar (Responsive Dropdown) */
.sticky-filter-bar {
  width: 100%;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  padding: 0;
  z-index: 89;
  transition: box-shadow 0.4s ease;
}
.sticky-filter-bar.is-fixed {
  position: fixed;
  top: var(--nav-height);
  left: 0;
  box-shadow: 0 4px 16px rgba(1, 30, 45, 0.03);
}
.filter-container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 0 5%;
}
.filter-scroll {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  max-height: 38px;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  flex: 1;
}
.filter-scroll.expanded {
  max-height: 300px;
}
.filter-chip {
  background: transparent;
  border: none;
  border-bottom: 1.5px solid transparent;
  color: var(--stone);
  padding: 12px 2px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-family: var(--font-sans);
  font-weight: 500;
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 0;
}
.filter-chip:hover {
  color: var(--ink);
  background: transparent;
}
.filter-chip.active {
  color: var(--ink);
  border-bottom-color: var(--gold);
  order: -1;
}
.filter-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 12px 0 12px 16px;
  color: var(--stone);
  transition: color 0.3s ease;
  height: 38px;
}
.filter-toggle:hover {
  color: var(--ink);
}
.filter-toggle svg {
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.filter-toggle.expanded svg {
  transform: rotate(180deg);
}

.filterable-item {
  animation: fadeInFilter 0.4s ease forwards;
}
.filterable-item.hidden {
  display: none !important;
}
@keyframes fadeInFilter {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ----- PROMO BANNERS AND EXTERNALS ----- */
.info-banner {
    background-color: #f8f9fa;
    padding: 60px 20px;
    text-align: center;
    border-radius: 20px;
    margin: 40px auto;
    max-width: 1200px;
    border: 1px solid rgba(0,0,0,0.05);
}
.info-banner h3 {
    color: var(--ink);
    font-size: 28px;
    margin-bottom: 15px;
    font-family: var(--font-serif);
}
.footer-promo-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.btn-promo {
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
}
.btn-sale {
    background: #c53030;
    color: white;
}
.btn-sale:hover {
    background: #9b2c2c;
}
.btn-advertise {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}
.btn-advertise:hover {
    background: #fff;
    color: #000;
}
.btn-book-nav {
    background-color: #d4af37 !important;
    color: #0f2a4a !important;
    font-weight: 600 !important;
    border: none !important;
}
.btn-book-nav:hover {
    background-color: #fff !important;
    color: #0f2a4a !important;
}

/* ───── ADVERTISING PACKAGES (Basis/Premium/Partner pricing grid) ───── */
/* Used on the concept-ads.js premium/partner example pages. */
.ad-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  gap: 24px;
  width: 100%;
  align-items: stretch;
  margin-bottom: 8px;
}
@media (max-width: 860px) {
  .ad-pricing-grid {
    grid-template-columns: 1fr;
    max-width: 380px;
    margin-left: auto;
    margin-right: auto;
  }
}
.ad-pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: rgba(240, 229, 204, 0.05);
  border: 1px solid rgba(240, 229, 204, 0.18);
  border-radius: 4px;
  padding: 32px 24px 28px;
  text-align: left;
}
.ad-pricing-card--featured {
  background: rgba(240, 229, 204, 0.1);
  border-color: var(--gold);
}
.ad-pricing-badge {
  position: absolute;
  top: -17px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gold);
  color: var(--ink);
  font-family: var(--font-sans), sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 7px 18px;
  border-radius: 2px;
  white-space: nowrap;
  border: 1px solid #ffffff;
  box-shadow: 0 4px 12px rgba(201,145,58,0.35);
}
.ad-pricing-badge svg {
  width: 15px;
  height: 15px;
}
.ad-pricing-name {
  font-family: var(--font-serif), serif;
  font-weight: 400;
  font-size: 20px;
  color: var(--sand);
  margin: 4px 0 8px;
}
.ad-pricing-price {
  font-family: var(--font-serif), serif;
  font-size: 30px;
  color: #ffffff;
  margin: 0 0 20px;
}
.ad-pricing-price span {
  font-family: var(--font-sans), sans-serif;
  font-size: 13px;
  color: var(--mist);
  margin-left: 4px;
}
.ad-pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ad-pricing-features li {
  font-size: 14px;
  line-height: 1.5;
  color: #c9d9e0;
  padding-left: 22px;
  position: relative;
}
.ad-pricing-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 12px;
  height: 12px;
  border-left: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(-45deg);
}
.ad-pricing-cta {
  width: 100%;
  justify-content: center;
  text-align: center;
}
.ad-pricing-card[data-glow] {
  --spotlight-size: 260px;
}
.ad-pricing-card[data-glow]::before,
.ad-pricing-card[data-glow]::after {
  pointer-events: none;
  content: "";
  position: absolute;
  inset: -1px;
  border: 1px solid transparent;
  border-radius: 4px;
  background-repeat: no-repeat;
  mask: linear-gradient(transparent, transparent), linear-gradient(white, white);
  mask-clip: padding-box, border-box;
  mask-composite: intersect;
  opacity: 0;
  transition: opacity 0.2s ease;
}
@media (hover: hover) and (pointer: fine) {
  .ad-pricing-card[data-glow]:hover::before,
  .ad-pricing-card[data-glow]:hover::after {
    opacity: 1;
  }
}
.ad-pricing-card[data-glow]::before {
  background-image: radial-gradient(
    var(--spotlight-size) var(--spotlight-size) at
    calc(var(--x, -500) * 1px) calc(var(--y, -500) * 1px),
    rgba(var(--glow-rgb), 0.9), transparent 100%
  );
  filter: brightness(1.6);
}
.ad-pricing-card[data-glow]::after {
  background-image: radial-gradient(
    calc(var(--spotlight-size) * 0.6) calc(var(--spotlight-size) * 0.6) at
    calc(var(--x, -500) * 1px) calc(var(--y, -500) * 1px),
    rgba(255,255,255,0.8), transparent 100%
  );
}
.ad-pricing-card > [data-glow] {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  border-radius: 4px;
  filter: blur(20px);
  transition: opacity 0.2s ease;
  background-image: radial-gradient(
    calc(var(--spotlight-size) * 0.5) calc(var(--spotlight-size) * 0.5) at
    calc(var(--x, -500) * 1px) calc(var(--y, -500) * 1px),
    rgba(var(--glow-rgb), 0.5), transparent 100%
  );
}
@media (hover: hover) and (pointer: fine) {
  .ad-pricing-card[data-glow]:hover > [data-glow] {
    opacity: 0.9;
  }
}
.ad-pricing-grid .ad-pricing-card:nth-child(1) { --glow-rgb: 205,127,50; }
.ad-pricing-grid .ad-pricing-card:nth-child(2) { --glow-rgb: 176,181,185; }
.ad-pricing-grid .ad-pricing-card:nth-child(3) { --glow-rgb: 201,145,58; }
