.hero-top {
  position: relative;
  z-index: 10;
  width: 100%;
  min-height: 66.5vh;
  min-height: 66.5svh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(28px, 2.8vw, 53px) clamp(20px, 2.1vw, 41px)
    clamp(24px, 2.2vw, 43px);
}

.hero-top__bar {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: start;
  min-height: clamp(56px, 3.6vw, 72px);
}

.hero-top__left-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
  justify-self: start;
}

.hero-top__nav-item {
  color: var(--red);
  font-size: var(--fs-body);
  line-height: 1;
  white-space: nowrap;
  font-family: "Poppins", Arial, sans-serif;
  font-weight: 500;
  text-decoration: none;
}

.hero-top__nav-item--reservations {
  margin-top: 24px;
}

.hero-top__logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: clamp(160px, 12.7vw, 244.02px);
  height: auto;
}

.hero-top__right-tools {
  justify-self: end;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.hero-top__side-labels {
  display: flex;
  gap: 4px;
  margin-bottom: 8px;
}

.hero-top__side-text {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  color: var(--red);
  font-family: "Poppins", Arial, sans-serif;
  font-size: var(--fs-body);
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
}

.hero-top__icon {
  width: clamp(28px, 1.97vw, 37.82px);
  height: clamp(28px, 1.97vw, 37.82px);
}

/* ── Language Switcher Dropdown ── */
.lang-switcher {
  position: relative;
  z-index: 9999;
}

.lang-switcher__toggle {
  width: clamp(28px, 1.97vw, 37.82px);
  height: clamp(28px, 1.97vw, 37.82px);
  border-radius: 50%;
  border: 1.5px solid currentColor;
  background: transparent;
  color: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s ease;
  padding: 0;
}

.lang-switcher__toggle:hover,
.lang-switcher__toggle[aria-expanded="true"] {
  background: rgba(139, 45, 26, 0.08);
}

.lang-switcher__toggle svg {
  width: 60%;
  height: 60%;
}

.lang-switcher__panel {
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  min-width: 140px;
  background: var(--bg);
  border: 1px solid rgba(139, 45, 26, 0.2);
  border-radius: 4px;
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.35s ease;
  z-index: 100;
}

.lang-switcher__panel[aria-hidden="false"] {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.lang-switcher__option {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  font-family: inherit;
  font-size: var(--fs-small);
  letter-spacing: 0.12em;
  color: inherit;
  text-decoration: none;
  transition: background 0.2s ease;
}

.lang-switcher__option:not(:last-child) {
  border-bottom: 0.5px solid rgba(139, 45, 26, 0.12);
}

.lang-switcher__option:hover {
  background: rgba(139, 45, 26, 0.06);
}

.lang-switcher__check {
  font-size: 11px;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.lang-switcher__option.is-active .lang-switcher__check {
  opacity: 1;
}

/* ── Footer language dropdown ── */
.lang-switcher--footer {
  position: relative;
}

.lang-switcher__toggle--footer {
  width: auto;
  height: auto;
  border: none;
  border-radius: 0;
  background: transparent;
  color: var(--red);
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  font-family: "Poppins", Arial, sans-serif;
  font-weight: 500;
  font-size: var(--fs-small);
  line-height: 1.4;
  letter-spacing: 0;
  padding: 0;
  white-space: nowrap;
}

.lang-switcher__toggle--footer:hover {
  opacity: 0.7;
  background: transparent;
}

.lang-switcher__toggle--footer svg {
  width: 18px;
  height: 18px;
  stroke: var(--red);
  fill: none;
  stroke-width: 2.5;
  transition: transform 0.3s ease;
}

.lang-switcher__toggle--footer[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.lang-switcher__panel--footer {
  bottom: calc(100% + 10px);
  top: auto;
  right: auto;
  left: 0;
}

.hero-top__intro {
  display: flex;
  flex-direction: column;
  gap: clamp(24px, 2.9vw, 56px);
  width: fit-content;
  margin-inline: auto;
}

.hero-top__headline {
  align-self: center;
  width: 100%;
  text-align: center;
  color: var(--red);
  font-family: "Editorial New", "Times New Roman", serif;
  font-weight: 300;
  font-size: var(--fs-heading-sm);
  line-height: 1;
  white-space: normal;
  text-wrap: balance;
}

.hero-top__meta {
  display: flex;
  justify-content: space-between;
  width: 100%;
  gap: 24px;
}

.section-meta {
  font-size: var(--fs-body);
  line-height: 1;
  white-space: nowrap;
  font-family: "Poppins", Arial, sans-serif;
  font-weight: 500;
}

.hero-top__logo-link {
  justify-self: center;
  display: flex;
}

/* ── Internal pages: header only (no hero intro) ── */
.hero-top--internal {
  min-height: auto;
  background: var(--bg-page);
}

/* ── Sticky header on scroll up ── */
.sticky-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
  padding: 24px clamp(20px, 2.1vw, 41px) 0;
  transform: translateY(-100%);
  transition: transform 0.35s ease;
  pointer-events: none;
}

.sticky-header--visible {
  transform: translateY(0);
  pointer-events: auto;
}

/* ── Menu toggle (shared +/× button, fixed position) ── */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: clamp(28px, 2.8vw, 53px);
  right: clamp(20px, 2.1vw, 41px);
  z-index: 300;
  background: none;
  border: none;
  color: var(--red);
  width: clamp(24px, 3.5vw, 32px);
  height: clamp(24px, 3.5vw, 32px);
  cursor: pointer;
  padding: 0;
}

.mobile-menu-toggle svg {
  overflow: visible;
}

.mobile-menu-toggle svg path {
  transform-box: fill-box;
  transform-origin: center center;
  transition: transform 1s cubic-bezier(0.19, 1, 0.22, 1);
}

.mobile-menu-toggle.is-active svg path {
  transform: rotate(45deg);
}

.mobile-menu-toggle.is-active {
  color: #ffffff;
  transition: color 1s cubic-bezier(0.19, 1, 0.22, 1);
}

@media (max-width: 1024px) {
}

@media (max-width: 767px) {
  .hero-top {
    min-height: 72vh;
    min-height: 72svh;
  }

  .hero-top--internal {
    min-height: 30vh;
    min-height: 30svh;
  }

  .hero-top__logo {
    position: static;
    transform: none;
    margin-inline: auto;
  }

  .hero-top__side-labels {
    margin-bottom: 0;
  }

  .hero-top__meta {
    flex-wrap: wrap;
    gap: 8px 20px;
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 580px) {
  .hero-top__bar {
    grid-template-columns: 1fr;
    align-items: center;
  }

  .hero-top__left-nav,
  .hero-top__right-tools {
    display: none;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .hero-top__logo,
  .hero-top__logo-link {
    justify-self: start;
    margin-inline: 0;
  }

  /* Sticky header: only logo on mobile */
  .sticky-header {
    padding-right: 0;
  }

  .sticky-header .hero-top__left-nav,
  .sticky-header .hero-top__right-tools {
    display: none;
  }

  .sticky-header .hero-top__bar {
    grid-template-columns: 1fr;
  }

  .sticky-header .hero-top__logo {
    justify-self: start;
    margin-inline: 0;
  }
}
