/* Shared styles - Castillo Coveta */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --black: #181715; --black-rich: #1d1c1a; --black-soft: #2a2825; --black-card: #242220;
  --gold: #A0704A; --gold-light: #BB8D65; --gold-pale: #D4B898; --gold-dark: #7A5235;
  --white: #f5f0e8; --white-pure: #fff; --gray: #9d9a94; --gray-dark: #333;
  --font-display: 'Cinzel', serif;
  --font-serif: 'Cormorant Garamond', serif;
  --font-sans: 'Montserrat', sans-serif;
}
html { scroll-behavior: smooth; scroll-padding-top: 50px; }
body { background: var(--black); color: var(--white); font-family: var(--font-sans); overflow-x: hidden; -webkit-font-smoothing: antialiased; }
::selection { background: var(--gold); color: var(--black); }

/* ===== FOCUS STYLES (a11y) ===== */
:focus { outline: none; }
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 0;
  box-shadow: 0 0 0 4px rgba(160,112,74,0.15);
}
.nav-cta:focus-visible,
.hero-cta:focus-visible,
.hero-cta-outline:focus-visible,
.btn-primary:focus-visible,
.btn-outline:focus-visible,
.booking-cta:focus-visible,
.back-top:focus-visible,
.wa-bubble:focus-visible {
  outline-offset: 4px;
}

/* ===== NAV ===== */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.nav-top {
  background: rgba(24,23,21,0.96);
  transition: max-height 0.5s cubic-bezier(0.22, 1, 0.36, 1),
              opacity 0.4s ease,
              background 0.5s ease;
  max-height: 80px;
  overflow: hidden;
  opacity: 1;
}
.nav-top-inner {
  max-width: 1400px; margin: 0 auto; padding: 0 5%;
  display: flex; justify-content: space-between; align-items: center;
}
.nav-top-left, .nav-top-right {
  display: flex; align-items: center; gap: 1.2rem;
  flex: 1;
}
.nav-top-right { justify-content: flex-end; }
.nav-top-link {
  display: inline-flex; align-items: center; gap: 0.45rem;
  font-family: var(--font-sans); font-size: 0.55rem; letter-spacing: 0.15em;
  color: rgba(245,240,232,0.4); text-decoration: none; transition: color 0.3s ease;
}
.nav-top-link:hover { color: var(--gold); }
.nav-top-icon { width: 13px; height: 13px; flex-shrink: 0; }
.nav-top-sep { width: 1px; height: 12px; background: rgba(160,112,74,0.15); }
.nav-logo {
  text-decoration: none; display: flex; flex-direction: column;
  align-items: center; text-align: center;
}
.nav-logo-name {
  font-family: var(--font-display); font-size: clamp(0.9rem, 1.6vw, 1.2rem);
  letter-spacing: 0.3em; color: var(--gold); font-weight: 600;
}
.nav-logo-sub {
  font-family: var(--font-sans); font-size: 0.45rem; letter-spacing: 0.55em;
  color: rgba(160,112,74,0.5); font-weight: 400; text-transform: uppercase; margin-top: 2px;
}
.nav-bottom {
  background: rgba(24,23,21,0.96);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(160,112,74,0.06);
  transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.nav-bottom-inner {
  width: 100%; max-width: 1400px; margin: 0 auto; padding: 0 5%;
  display: flex; justify-content: center; align-items: center;
}
.nav-links {
  display: flex; gap: 0; list-style: none; align-items: center; justify-content: center;
  margin: 0 auto; padding: 0;
}
.nav-links a {
  font-family: var(--font-sans); font-size: 0.6rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--white); text-decoration: none;
  font-weight: 400; position: relative; padding: 1rem 1.15rem; display: block;
  transition: color 0.3s ease, background 0.3s ease; background: transparent;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 1.15rem; right: 1.15rem;
  height: 1px; background: var(--gold); transform: scaleX(0); transform-origin: center;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.nav-links a:hover { color: var(--gold); background: rgba(160,112,74,0.03); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a.active { color: var(--gold); }
.nav-links a.active::after { transform: scaleX(1); }
.nav-cta {
  font-family: var(--font-sans); font-size: 0.55rem; letter-spacing: 0.35em;
  text-transform: uppercase; color: var(--black) !important; background: var(--gold) !important;
  text-decoration: none; padding: 0.65rem 1.8rem !important; font-weight: 500;
  transition: all 0.4s ease; white-space: nowrap;
}
.nav-links > li:last-child { margin-left: 0.8rem; }
.nav-links > li:first-child { margin-right: 0.8rem; }
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  background: var(--gold-light) !important; color: var(--black) !important;
  box-shadow: 0 5px 30px rgba(160,112,74,0.3);
}
.nav-logo-mobile {
  display: none; text-decoration: none; flex-direction: column;
}
.nav-logo-mobile .nav-logo-name {
  font-family: var(--font-display); font-size: clamp(0.75rem, 1.4vw, 1rem);
  letter-spacing: 0.25em; color: var(--gold); font-weight: 600;
}
.nav-logo-mobile .nav-logo-sub {
  font-family: var(--font-sans); font-size: 0.42rem; letter-spacing: 0.5em;
  color: rgba(160,112,74,0.5); text-transform: uppercase; margin-top: 1px;
}
nav.scrolled .nav-top { max-height: 0; opacity: 0; pointer-events: none; }
nav.scrolled .nav-bottom {
  background: rgba(24,23,21,0.97); backdrop-filter: blur(24px);
  box-shadow: 0 1px 30px rgba(0,0,0,0.4); border-bottom: 1px solid rgba(160,112,74,0.08);
}
.menu-toggle {
  display: none; flex-direction: column; gap: 5px; cursor: pointer; z-index: 200;
  position: absolute; right: 5%; top: 50%; transform: translateY(-50%);
  padding: 0; border: 0; background: transparent; appearance: none;
  font: inherit; color: inherit;
}
.menu-toggle span {
  width: 26px; height: 1px; background: var(--gold);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.25s ease, background 0.3s ease, height 0.3s ease;
}
/* sluiten: buitenste lijnen vouwen eerst terug, de middelste verschijnt daarna */
.menu-toggle span:nth-child(2) { transition-delay: 0s, 0.18s, 0s, 0s; }
.mobile-menu {
  position: fixed; inset: 0; z-index: 9998;
  background: rgba(24,23,21,0.98); backdrop-filter: blur(30px);
  display: flex; flex-direction: column; align-items: center; justify-content: flex-start;
  gap: 1.1rem;
  padding: calc(5.5rem + env(safe-area-inset-top)) 1.5rem calc(2rem + env(safe-area-inset-bottom));
  overflow-y: auto; overscroll-behavior: contain;
  opacity: 0; visibility: hidden;
  transition: opacity 0.4s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.4s;
}
.mobile-menu.active { opacity: 1; visibility: visible; }
.mobile-menu a {
  font-family: var(--font-display); font-size: 1.05rem; letter-spacing: 0.2em;
  color: var(--white); text-decoration: none;
  opacity: 0; transform: translateY(20px);
  transition: color 0.3s, opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1), transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.mobile-menu.active a { opacity: 1; transform: translateY(0); }
.mobile-menu.active a:nth-child(1)  { transition-delay: 0.04s; }
.mobile-menu.active a:nth-child(2)  { transition-delay: 0.08s; }
.mobile-menu.active a:nth-child(3)  { transition-delay: 0.12s; }
.mobile-menu.active a:nth-child(4)  { transition-delay: 0.16s; }
.mobile-menu.active a:nth-child(5)  { transition-delay: 0.2s; }
.mobile-menu.active a:nth-child(6)  { transition-delay: 0.24s; }
.mobile-menu.active a:nth-child(7)  { transition-delay: 0.28s; }
.mobile-menu.active a:nth-child(8)  { transition-delay: 0.32s; }
.mobile-menu.active a:nth-child(9)  { transition-delay: 0.36s; }
.mobile-menu.active a:nth-child(10) { transition-delay: 0.4s; }
.mobile-menu.active a:nth-child(11) { transition-delay: 0.44s; }
.mobile-menu.active a:nth-child(12) { transition-delay: 0.48s; }
.mobile-menu.active a:nth-child(13) { transition-delay: 0.52s; }
.mobile-menu.active a:nth-child(14) { transition-delay: 0.56s; }
.mobile-menu.active a:nth-child(15) { transition-delay: 0.6s; }
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu a.mobile-cta {
  margin-top: 0.8rem;
  font-family: var(--font-sans); font-size: 0.65rem; letter-spacing: 0.35em;
  text-transform: uppercase; color: var(--black);
  background: var(--gold); padding: 0.9rem 2.5rem;
  transition: color 0.3s, background 0.3s, opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1), transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.mobile-menu a.mobile-cta:hover { background: var(--gold-light); color: var(--black); }

/* On mobile, pull menu-toggle out of nav's stacking context so it stays above the mobile-menu overlay */
@media (max-width: 1024px) {
  .menu-toggle {
    position: fixed !important;
    top: 1rem; right: 1rem;
    z-index: 10000 !important;
    transform: none !important;
    width: 44px; height: 44px;
    box-sizing: border-box;
    padding: 0 9px;
    justify-content: center;
    align-items: center;
    background: rgba(24,23,21,0.55);
    border: 1px solid rgba(160,112,74,0.4);
    border-radius: 50%;
    transition: background 0.4s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  }
}

/* Hamburger → X: class op de knop zelf (gezet door nav.js), DOM-positie-onafhankelijk */
.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
  transition-delay: 0.06s, 0s, 0s, 0s;
}
.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
  transition-delay: 0s, 0s, 0s, 0s;
}
.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
  transition-delay: 0.06s, 0s, 0s, 0s;
}
.menu-toggle.is-open span {
  background: var(--gold-pale) !important;
  height: 1.5px;
}
.menu-toggle.is-open {
  background: rgba(24,23,21,0.55);
  border-color: rgba(160,112,74,0.4);
}
@media (prefers-reduced-motion: reduce) {
  .menu-toggle, .menu-toggle span { transition: none !important; }
}
@keyframes navFadeDown {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}
.nav-top-left, .nav-top-right, .nav-logo {
  opacity: 0; animation: navFadeDown 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.nav-top-left { animation-delay: 0.3s; }
.nav-logo { animation-delay: 0.5s; }
.nav-top-right { animation-delay: 0.7s; }
.nav-links li {
  opacity: 0; animation: navFadeDown 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.nav-links li:nth-child(1)  { animation-delay: 0.6s; }
.nav-links li:nth-child(2)  { animation-delay: 0.66s; }
.nav-links li:nth-child(3)  { animation-delay: 0.72s; }
.nav-links li:nth-child(4)  { animation-delay: 0.78s; }
.nav-links li:nth-child(5)  { animation-delay: 0.84s; }
.nav-links li:nth-child(6)  { animation-delay: 0.9s; }
.nav-links li:nth-child(7)  { animation-delay: 0.96s; }
.nav-links li:nth-child(8)  { animation-delay: 1.02s; }
.nav-links li:nth-child(9)  { animation-delay: 1.08s; }
.nav-links li:nth-child(10) { animation-delay: 1.14s; }
.nav-links li:nth-child(11) { animation-delay: 1.2s; }
@media (max-width: 1200px) {
  .nav-links a { font-size: 0.55rem; letter-spacing: 0.12em; padding: 1rem 0.7rem; }
  .nav-top-link span { display: none; }
}

/* ===== NAV DROPDOWN MENUS ===== */
.nav-links .has-dropdown { position: relative; }
.nav-links .has-dropdown > .dd-trigger { cursor: default; }
.nav-links .dd-arrow {
  display: inline-block;
  margin-left: 0.4em;
  font-size: 0.8em;
  line-height: 1;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  color: var(--gold);
  vertical-align: baseline;
}
.nav-links .has-dropdown:hover .dd-arrow,
.nav-links .has-dropdown:focus-within .dd-arrow { transform: rotate(180deg); }
.nav-links .dd-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 220px;
  padding: 0.5rem 0;
  margin-top: 6px;
  background: rgba(24,23,21,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(160, 112, 74, 0.15);
  list-style: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
              visibility 0.3s;
  z-index: 100;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}
.nav-links .dd-menu::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 12px;
}
.nav-links .has-dropdown:hover .dd-menu,
.nav-links .has-dropdown:focus-within .dd-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-links .dd-menu li {
  opacity: 1 !important;
  animation: none !important;
  width: 100%;
}
.nav-links .dd-menu a {
  padding: 0.7rem 1.6rem !important;
  display: block;
  font-size: 0.55rem;
  letter-spacing: 0.22em;
  white-space: nowrap;
  color: rgba(245, 240, 232, 0.85);
}
.nav-links .dd-menu a::after { display: none !important; }
.nav-links .dd-menu a:hover {
  color: var(--gold);
  background: rgba(160, 112, 74, 0.08);
}

/* Accessibility utility */
.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* ===== LETTER REVEAL on gold <em> in headings ===== */
h1 em .em-word,
h2 em .em-word {
  display: inline-block;
  white-space: nowrap;
}
h1 em .em-letter,
h2 em .em-letter {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.25em);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}
em.em-revealed .em-letter {
  opacity: 1;
  transform: translateY(0);
}

/* ===== F: BLUR-TO-SHARP REVEAL on section titles ===== */
h1.reveal, h2.reveal, .section-title.reveal, .page-title.reveal {
  filter: blur(10px);
  transition: opacity 1s cubic-bezier(0.22,1,0.36,1),
              transform 1s cubic-bezier(0.22,1,0.36,1),
              filter 1.1s cubic-bezier(0.22,1,0.36,1);
}
h1.reveal.vis, h2.reveal.vis, .section-title.reveal.vis, .page-title.reveal.vis {
  filter: blur(0);
}

/* ===== G: SVG ICON DRAW-IN ===== */
.icon-draw path,
.icon-draw circle,
.icon-draw rect,
.icon-draw line,
.icon-draw polyline,
.icon-draw polygon {
  stroke-dasharray: var(--draw-len, 300);
  stroke-dashoffset: var(--draw-len, 300);
  transition: stroke-dashoffset 1.6s cubic-bezier(0.22,1,0.36,1);
  transition-delay: 0.1s;
}
.icon-draw.drawn path,
.icon-draw.drawn circle,
.icon-draw.drawn rect,
.icon-draw.drawn line,
.icon-draw.drawn polyline,
.icon-draw.drawn polygon {
  stroke-dashoffset: 0;
}

/* ===== Q: FOOTER LINK HOVER POLISH ===== */
.footer-nav-col a { position: relative; display: inline-block; }
.footer-nav-col a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 100%; height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.45s cubic-bezier(0.22,1,0.36,1);
}
.footer-nav-col a:hover { color: var(--gold); }
.footer-nav-col a:hover::after { transform: scaleX(1); }

/* ===== K: ROOM/SUITE CARD HOVER OVERLAY ===== */
.room-card-image { position: relative; }
.room-card-image .room-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.05) 0%, rgba(10,10,10,0.78) 65%, rgba(10,10,10,0.9) 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 1.5rem 1.8rem; gap: 0.5rem;
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.22,1,0.36,1);
  pointer-events: none;
}
.room-card:hover .room-card-image .room-card-overlay { opacity: 1; }
.room-card-overlay-label {
  font-family: var(--font-sans); font-size: 0.5rem;
  letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--gold); opacity: 0.8;
}
.room-card-overlay-list {
  list-style: none; display: flex; flex-direction: column; gap: 0.35rem;
}
.room-card-overlay-list li {
  font-family: var(--font-serif); font-size: 1rem;
  color: var(--white); font-weight: 400; line-height: 1.5;
  display: flex; align-items: center; gap: 0.6rem;
}
.room-card-overlay-list li::before {
  content: '';
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--gold); flex-shrink: 0;
}

/* ===== M: FAQ ACCORDION SMOOTH EXPAND ===== */
.faq-a {
  max-height: 0; overflow: hidden; opacity: 0;
  transform: translateY(-6px);
  transition: max-height 0.6s cubic-bezier(0.22,1,0.36,1),
              opacity 0.4s ease 0.05s,
              transform 0.5s cubic-bezier(0.22,1,0.36,1),
              padding 0.5s cubic-bezier(0.22,1,0.36,1);
}
.faq-item.open .faq-a {
  max-height: 800px; opacity: 1; transform: translateY(0);
}
.faq-item.open .faq-q svg { transform: rotate(45deg) scale(1.1); color: var(--gold); }
.faq-item { transition: border-color 0.3s; }
.faq-item.open { border-bottom-color: rgba(160,112,74,0.2); }


/* ===== FOOTER EXPANDED ===== */
.footer-brand-col { max-width: 280px; display: flex; flex-direction: column; gap: 1rem; flex: 1 1 220px; }
.footer-tagline { font-family: var(--font-serif); font-style: italic; font-size: 0.9rem; color: rgba(245,240,232,0.5); font-weight: 300; }
.footer-desc { font-family: var(--font-serif); font-size: 0.85rem; line-height: 1.7; color: rgba(245,240,232,0.45); font-weight: 300; margin-top: 0.3rem; }
.footer-social { display: flex; gap: 0.8rem; margin-top: 0.6rem; }
.footer-social a { width: 34px; height: 34px; display: flex; align-items: center; justify-content: center; border: 1px solid rgba(160,112,74,0.2); border-radius: 50%; color: rgba(245,240,232,0.5); transition: all 0.3s; }
.footer-social a:hover { border-color: var(--gold); color: var(--gold); background: rgba(160,112,74,0.05); }
.footer-social svg { width: 16px; height: 16px; }
.footer-nav-col li { font-family: var(--font-sans); font-size: 0.6rem; letter-spacing: 0.15em; color: var(--gray); line-height: 1.6; }
.footer-nav-col li a { display: inline; }
@media (max-width: 768px) { .footer-brand-col { max-width: 100%; align-items: center; text-align: center; } }

/* ===== MOBILE FOOTER CENTERING (overrides inline page CSS) ===== */
@media (max-width: 768px) {
  .footer-inner {
    align-items: center !important;
    justify-content: center !important;
    text-align: center;
    flex-direction: column;
  }
  .footer-brand-col,
  .footer-nav-col,
  .footer-contact-col {
    align-items: center !important;
    text-align: center;
    width: 100%;
    max-width: 100%;
  }
  .footer-nav-col ul,
  .footer-contact-col ul {
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
  }
  .footer-nav-col li,
  .footer-contact-col li {
    text-align: center;
    width: 100%;
  }
  .footer-nav-col h3 {
    text-align: center;
  }
  .footer-social {
    justify-content: center !important;
    width: 100%;
  }
  .footer-tagline,
  .footer-desc {
    text-align: center;
  }
  .footer-copy {
    text-align: center;
  }
  .footer-copy p {
    text-align: center;
    padding: 0 5%;
  }

  /* Mobile footer: larger text for readability */
  .footer-brand { font-size: 1rem !important; letter-spacing: 0.32em; }
  .footer-tagline { font-size: 1rem !important; }
  .footer-desc { font-size: 0.95rem !important; line-height: 1.75; }
  .footer-nav-col h3 { font-size: 0.68rem !important; letter-spacing: 0.35em; margin-bottom: 1.2rem; }
  .footer-nav-col li,
  .footer-nav-col a,
  .footer-contact-col li,
  .footer-contact-col a {
    font-size: 0.82rem !important;
    letter-spacing: 0.12em;
    line-height: 1.8;
  }
  .footer-copy p { font-size: 0.65rem !important; letter-spacing: 0.18em; line-height: 1.9; }
}

/* ===== BRAND LOGO ===== */
.brand-logo { text-decoration: none; }
.brand-logo img { display: block; width: auto; }
.nav-top .brand-logo { display: flex; align-items: center; justify-content: center; }
.nav-top .brand-logo img { height: 56px; }
.nav-bottom .brand-logo img { height: 44px; transition: height 0.4s ease; }
footer .brand-logo { display: inline-flex; align-items: center; }
footer .brand-logo img { height: 72px; }
nav.scrolled .nav-bottom .brand-logo img { height: 40px; }
@media (max-width: 1024px) {
  .nav-bottom .brand-logo img { height: 40px; }
}
@media (max-width: 768px) {
  .nav-top .brand-logo img { height: 44px; }
  .nav-bottom .brand-logo img { height: 38px; }
  footer .brand-logo img { height: 60px; }
}

/* Visually hidden, available to screen readers */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ===== TAALWISSELAAR ===== */
.nav-links li.lang-switch { display: flex; align-items: center; gap: 0.4rem; margin-left: 0.6rem; padding-left: 0.9rem; border-left: 1px solid rgba(160,112,74,0.2); }
.lang-switch a { font-family: var(--font-sans); font-size: 0.55rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(245,240,232,0.45); text-decoration: none; transition: color 0.3s; padding: 0; }
.lang-switch a:hover { color: var(--gold); }
.lang-switch a.active { color: var(--gold); font-weight: 600; }
.lang-switch a::after { content: none; }
/* Mobiele taalschakelaar: segmented pill */
.mobile-lang { display: inline-flex; align-items: stretch; margin-top: 1.8rem; border: 1px solid rgba(160,112,74,0.35); border-radius: 999px; overflow: hidden; }
.mobile-lang a { font-family: var(--font-sans); font-size: 0.72rem; letter-spacing: 0.18em; font-weight: 500; text-transform: uppercase; color: rgba(245,240,232,0.55); text-decoration: none; padding: 0.62rem 1.5rem; white-space: nowrap; transition: background 0.3s, color 0.3s; }
.mobile-lang a + a { border-left: 1px solid rgba(160,112,74,0.25); }
.mobile-lang a.active { background: var(--gold); color: var(--black); }
.mobile-lang a:not(.active):hover { color: var(--gold); }

/* Anker-suites: titel niet onder de vaste navbar */
.room-card-body h3[id] { scroll-margin-top: 130px; }

/* ===== SUITE DETAILPAGINA ===== */
.suite-detail { display:grid; grid-template-columns: 1.4fr 1fr; gap:4rem; align-items:start; }
.suite-lead { font-family:var(--font-serif); font-size:1.2rem; line-height:1.9; color:rgba(245,240,232,0.75); font-weight:300; margin-bottom:2rem; }
.suite-detail h2.section-title { font-size:clamp(1.4rem,2.5vw,2rem); margin:2rem 0 1.2rem; }
.suite-amenities { display:flex; flex-wrap:wrap; gap:0.6rem; margin-bottom:2.5rem; }
.suite-amenities span { font-family:var(--font-sans); font-size:0.6rem; letter-spacing:0.18em; text-transform:uppercase; color:var(--gold-pale); border:1px solid rgba(160,112,74,0.22); padding:0.5rem 1rem; }
.suite-specs { background:var(--black-card); border:1px solid rgba(160,112,74,0.12); padding:2.2rem; }
.suite-specs h3 { font-family:var(--font-display); font-size:1.1rem; letter-spacing:0.1em; color:var(--gold); margin-bottom:1.4rem; }
.spec-row { display:flex; justify-content:space-between; gap:1rem; padding:0.7rem 0; border-bottom:1px solid rgba(160,112,74,0.08); }
.spec-row:last-child { border-bottom:none; }
.spec-row .k { font-family:var(--font-sans); font-size:0.6rem; letter-spacing:0.18em; text-transform:uppercase; color:rgba(245,240,232,0.5); }
.spec-row .v { font-family:var(--font-serif); font-size:0.98rem; color:var(--white); font-weight:300; text-align:right; }
.suite-specs .btn-gold { width:100%; text-align:center; margin-top:1.6rem; }
.suite-gallery { display:grid; grid-template-columns:repeat(4,1fr); gap:1rem; }
.suite-gallery a { display:block; aspect-ratio:1; overflow:hidden; }
.suite-gallery img { width:100%; height:100%; object-fit:cover; filter:brightness(0.9); transition:transform 0.6s, filter 0.6s; }
.suite-gallery a:hover img { transform:scale(1.06); filter:brightness(1); }
@media (max-width:900px){ .suite-detail{grid-template-columns:1fr;gap:2.5rem;} .suite-gallery{grid-template-columns:repeat(2,1fr);} }

.page-hero-sub { font-family:var(--font-serif); font-style:italic; font-weight:300; color:rgba(245,240,232,0.82); font-size:clamp(0.95rem,1.6vw,1.15rem); margin-top:1rem; text-shadow:0 1px 12px rgba(0,0,0,0.6); }

/* Suite-overzicht: titel-link + Details-knop */
.room-card-body h3 a { color: inherit; text-decoration: none; transition: color 0.3s; }
.room-card-body h3 a:hover { color: var(--gold); }
.room-card-actions { display: flex; gap: 0.6rem; flex-wrap: wrap; justify-content: flex-end; }
.room-cta-ghost { color: var(--gold-pale); border-color: rgba(160,112,74,0.32); }
.room-cta-ghost:hover { background: var(--gold-pale); color: var(--black); border-color: var(--gold-pale); }
@media (max-width:480px){ .room-card-footer { flex-wrap: wrap; gap: 0.8rem; } }

/* Outline-knop (o.a. 'Alle suites' op suitepagina's) */
.btn-ghost { display:inline-block; font-family:var(--font-sans); font-size:0.6rem; letter-spacing:0.4em; text-transform:uppercase; padding:1rem 2.8rem; background:rgba(24,23,21,0.35); color:var(--gold-pale); border:1px solid rgba(212,184,152,0.6); cursor:pointer; text-decoration:none; font-weight:500; transition:all 0.4s; }
.btn-ghost:link, .btn-ghost:visited { color:var(--gold-pale); }
.btn-ghost:hover { background:rgba(160,112,74,0.2); border-color:var(--gold-pale); color:var(--white); }
