/* =====================================================================
   Sea & Sun Holiday × Hello Zeeland — theme styles
   ===================================================================== */

@font-face {
  font-family: "Switzer";
  src: url("../fonts/Switzer-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Switzer";
  src: url("../fonts/Switzer-Italic.otf") format("opentype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Switzer";
  src: url("../fonts/Switzer-Semibold.otf") format("opentype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Stardom";
  src: url("../fonts/Stardom-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Yesteryear";
  src: url("../fonts/Yesteryear-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --hz-bg:            #FEF5E9;
  --hz-white:         #FFFFFF;
  --hz-primary:       #3B85A7;
  --hz-primary-dark:  #27586E;
  --hz-primary-soft:  #E7EEF3;
  --hz-accent:        #FACA87;
  --hz-accent-soft:   #FBEBCF;
  --hz-body:          #757575;
  --hz-ink:           #1E3040;
  --hz-border:        rgba(59, 133, 167, 0.14);
  --hz-footer-bg:     #27586E;

  --hz-font-serif:  "Stardom", "Fraunces", Georgia, "Times New Roman", serif;
  --hz-font-sans:   "Switzer", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --hz-font-script: "Yesteryear", "Dancing Script", cursive;

  --hz-container: 1200px;
}

/* -------- Base -------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body.hz-body {
  margin: 0;
  background-color: var(--hz-bg);
  color: var(--hz-body);
  font-family: var(--hz-font-sans);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--hz-font-serif);
  color: var(--hz-ink);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0 0 0.6em;
}

::selection { background: var(--hz-accent); color: var(--hz-primary-dark); }

.hz-container {
  width: 100%;
  max-width: var(--hz-container);
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 768px) { .hz-container { padding: 0 40px; } }

.hz-nowrap  { white-space: nowrap; }
.hz-script  { font-family: var(--hz-font-script); color: var(--hz-primary); font-weight: 400; font-style: normal; }
.hz-script--accent { color: var(--hz-accent); }
.hz-link    { color: var(--hz-primary); font-weight: 600; transition: color .2s ease; }
.hz-link:hover { color: var(--hz-primary-dark); }

/* -------- Reveal on scroll -------- */
.hz-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .9s cubic-bezier(.2,.7,.2,1), transform .9s cubic-bezier(.2,.7,.2,1);
}
.hz-reveal.is-visible { opacity: 1; transform: none; }
.hz-reveal--d2.is-visible { transition-delay: .08s; }
.hz-reveal--d3.is-visible { transition-delay: .16s; }
.hz-reveal--d4.is-visible { transition-delay: .24s; }
.hz-reveal--d5.is-visible { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) {
  .hz-reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}

@keyframes hz-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}
.hz-float { animation: hz-float 6s ease-in-out infinite; }

/* -------- Buttons -------- */
.hz-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 999px;
  font-family: var(--hz-font-sans);
  font-weight: 600;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  transition: transform .2s ease, background-color .2s ease, box-shadow .2s ease, color .2s ease, border-color .2s ease;
  text-decoration: none;
  line-height: 1;
}
.hz-btn__arrow { transition: transform .3s ease; display: inline-block; }
.hz-btn:hover .hz-btn__arrow { transform: translateX(4px); }
.hz-btn--sm { padding: 10px 18px; font-size: 14px; }
.hz-btn--lg { padding: 18px 36px; font-size: 17px; }

.hz-btn--primary {
  background: var(--hz-primary);
  color: #fff;
  box-shadow: 0 12px 28px -12px rgba(59, 133, 167, 0.55);
}
.hz-btn--primary:hover {
  background: var(--hz-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 20px 40px -14px rgba(39, 88, 110, 0.55);
}
.hz-btn--ghost {
  background: transparent;
  color: var(--hz-primary);
  border: 1.5px solid rgba(59, 133, 167, 0.35);
}
.hz-btn--ghost:hover {
  background: var(--hz-primary-soft);
  color: var(--hz-primary-dark);
  border-color: var(--hz-primary);
  transform: translateY(-2px);
}
.hz-btn--accent {
  background: var(--hz-accent);
  color: var(--hz-primary-dark);
  box-shadow: 0 14px 30px -12px rgba(250, 202, 135, 0.7);
}
.hz-btn--accent:hover { transform: translateY(-2px); }

/* -------- Header -------- */
.hz-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  padding: 16px 0;
  background: transparent;
  transition: background-color .3s ease, backdrop-filter .3s ease, padding .3s ease, box-shadow .3s ease;
}
.hz-header.is-scrolled {
  padding: 8px 0;
  background: rgba(254, 245, 233, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 8px 24px -18px rgba(39, 88, 110, 0.25);
}
.hz-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.hz-header__logo img {
  height: 80px;
  width: auto;
  transition: height .3s ease;
}
.hz-header.is-scrolled .hz-header__logo img { height: 64px; }
@media (min-width: 768px) {
  .hz-header__logo img { height: 96px; }
  .hz-header.is-scrolled .hz-header__logo img { height: 64px; }
}
.hz-header__nav {
  display: flex;
  align-items: center;
  gap: 12px;
}
@media (min-width: 640px) { .hz-header__nav { gap: 20px; } }
.hz-nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--hz-ink);
  transition: color .2s ease;
  display: none;
}
.hz-nav-link:hover { color: var(--hz-primary); }
@media (min-width: 768px)  { .hz-nav-link--md { display: inline; } }
@media (min-width: 1024px) { .hz-nav-link--lg { display: inline; } }
.hz-header__cta { display: none; }
@media (min-width: 640px) { .hz-header__cta { display: inline-flex; } }

/* -------- Sections -------- */
.hz-section {
  padding: 80px 0;
}
@media (min-width: 768px) { .hz-section { padding: 128px 0; } }
.hz-section--white { background: var(--hz-white); }

.hz-section__head {
  max-width: 720px;
  margin: 0 auto 48px;
  text-align: center;
}
@media (min-width: 768px) { .hz-section__head { margin-bottom: 64px; } }

.hz-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--hz-primary);
}
.hz-eyebrow--center { justify-content: center; }
.hz-eyebrow--accent { color: var(--hz-accent); }
.hz-eyebrow__rule {
  display: inline-block;
  width: 24px;
  height: 1px;
  background: currentColor;
  opacity: 0.7;
}

.hz-h2 {
  font-size: clamp(1.8rem, 3.6vw, 2.85rem);
}
.hz-sub {
  margin: 8px 0 0;
  color: var(--hz-body);
}

.hz-prose > * + * { margin-top: 16px; }
.hz-prose { font-size: 1.02rem; color: var(--hz-body); }
.hz-prose--ink { color: var(--hz-ink); }

/* -------- Hero -------- */
.hz-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 144px 0 96px;
  background:
    radial-gradient(ellipse at 15% 10%, rgba(255,234,203,0.6), transparent 55%),
    radial-gradient(ellipse at 90% 20%, rgba(59,133,167,0.10), transparent 50%),
    var(--hz-bg);
}
@media (min-width: 768px) { .hz-hero { padding: 176px 0 128px; } }
.hz-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 900px;
  text-align: center;
}
.hz-hero__logo-wrap { display: flex; justify-content: center; margin-bottom: 32px; }
.hz-hero__logo {
  max-width: min(420px, 75vw);
  filter: drop-shadow(0 10px 30px rgba(39, 88, 110, 0.10));
}
.hz-hero__heading {
  max-width: 20ch;
  margin: 0 auto;
  font-size: clamp(2.25rem, 5.4vw, 4rem);
  line-height: 1.1;
  color: var(--hz-ink);
}
.hz-hero__intro {
  max-width: 620px;
  margin: 24px auto 40px;
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--hz-body);
}
.hz-hero__intro p { margin: 0 0 12px; }
.hz-hero__intro p:last-child { margin-bottom: 0; }

.hz-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.hz-hero__wave {
  position: absolute;
  inset: auto 0 -1px 0;
  height: 120px;
  color: #fff;
  pointer-events: none;
  z-index: 1;
}
.hz-hero__wave svg { display: block; width: 100%; height: 100%; }

/* -------- Info grid -------- */
.hz-info-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .hz-info-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .hz-info-grid { grid-template-columns: repeat(4, 1fr); } }

.hz-info-card {
  border: 1px solid var(--hz-border);
  background: var(--hz-bg);
  border-radius: 18px;
  padding: 28px;
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.hz-info-card:hover {
  transform: translateY(-4px);
  border-color: rgba(59, 133, 167, 0.4);
  box-shadow: 0 18px 40px -18px rgba(39, 88, 110, 0.20);
}
.hz-info-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--hz-primary-soft);
  color: var(--hz-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  margin-bottom: 20px;
}
.hz-info-card__icon svg { width: 24px; height: 24px; }
.hz-info-card__text {
  margin: 0;
  font-weight: 500;
  line-height: 1.6;
  color: var(--hz-ink);
}

/* -------- Why -------- */
.hz-why__grid {
  display: grid;
  gap: 40px;
  align-items: center;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .hz-why__grid { grid-template-columns: 1.15fr 1fr; gap: 80px; }
}
.hz-why__visual { display: flex; justify-content: center; align-items: center; }
.hz-why__visual img { max-width: 280px; width: 100%; }

/* -------- Story banner -------- */
.hz-story-banner {
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
@media (max-width: 900px) {
  .hz-story-banner { background-attachment: scroll; }
}
.hz-story-banner__overlay {
  position: absolute;
  inset: 0;
  background: rgba(39, 88, 110, 0.45);
}
.hz-story-banner__inner {
  position: relative;
  min-height: 360px;
  max-width: 900px;
  padding: 80px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
@media (min-width: 768px) {
  .hz-story-banner__inner { min-height: 420px; padding: 112px 40px; }
}
.hz-story-banner__quote {
  margin: 0;
  font-family: var(--hz-font-serif);
  color: #fff;
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
  line-height: 1.25;
}

/* -------- Destinations -------- */
.hz-destinations__top {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) { .hz-destinations__top { grid-template-columns: repeat(3, 1fr); } }
.hz-destinations__bottom {
  display: grid;
  gap: 20px;
  margin-top: 20px;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .hz-destinations__bottom { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 768px) {
  .hz-destinations__bottom { max-width: 66%; margin-left: auto; margin-right: auto; }
}

.hz-destination {
  display: block;
  background: var(--hz-bg);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 16px 44px -20px rgba(39, 88, 110, 0.22);
  transition: transform .3s ease, box-shadow .3s ease;
  color: inherit;
}
.hz-destination:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 56px -20px rgba(39, 88, 110, 0.30);
}
.hz-destination__media {
  position: relative;
  aspect-ratio: 3 / 2;
  overflow: hidden;
}
.hz-destination__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .7s ease-out;
}
.hz-destination:hover .hz-destination__media img { transform: scale(1.05); }
.hz-destination__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(39,88,110,0.35), transparent);
  opacity: 0.6;
  transition: opacity .3s ease;
}
.hz-destination:hover .hz-destination__overlay { opacity: 0.8; }

.hz-destination__body { padding: 24px; }
.hz-destination__title {
  font-family: var(--hz-font-serif);
  font-size: 1.35rem;
  color: var(--hz-ink);
  margin: 0 0 4px;
}
.hz-destination__text {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.6;
  color: var(--hz-body);
}
.hz-destination__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--hz-primary);
  transition: color .2s ease;
}
.hz-destination:hover .hz-destination__link { color: var(--hz-primary-dark); }
.hz-destination__arrow { transition: transform .3s ease; }
.hz-destination:hover .hz-destination__arrow { transform: translateX(4px); }

.hz-destinations__cta {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}
@media (min-width: 768px) { .hz-destinations__cta { margin-top: 64px; } }

/* -------- Office collage -------- */
.hz-office__grid {
  display: grid;
  gap: 40px;
  align-items: center;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) { .hz-office__grid { grid-template-columns: repeat(2, 1fr); gap: 64px; } }

.hz-office__collage {
  position: relative;
  aspect-ratio: 1 / 1;
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
}
.hz-office__photo {
  position: absolute;
  overflow: hidden;
  margin: 0;
}
.hz-office__photo img { width: 100%; height: 100%; object-fit: cover; }
.hz-office__photo--a {
  left: 0; top: 4%;
  width: 62%; height: 68%;
  border-radius: 24px;
  box-shadow: 0 24px 60px -20px rgba(39, 88, 110, 0.28);
}
.hz-office__photo--b {
  right: 0; top: 0;
  width: 46%; height: 50%;
  border-radius: 20px;
  box-shadow: 0 20px 50px -18px rgba(39, 88, 110, 0.28);
}
.hz-office__photo--c {
  right: 4%; bottom: 0;
  width: 54%; height: 46%;
  border-radius: 22px;
  box-shadow: 0 24px 60px -20px rgba(39, 88, 110, 0.28);
}

/* -------- FAQ -------- */
.hz-faq { max-width: 820px; }
.hz-faq__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.hz-faq__item {
  background: #fff;
  border: 1px solid var(--hz-border);
  border-radius: 18px;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.hz-faq__item[open] {
  border-color: rgba(59, 133, 167, 0.4);
  box-shadow: 0 18px 40px -18px rgba(39, 88, 110, 0.20);
}
.hz-faq__summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  cursor: pointer;
  list-style: none;
  font-family: var(--hz-font-serif);
  font-size: 1.15rem;
  color: var(--hz-ink);
}
.hz-faq__summary::-webkit-details-marker { display: none; }
.hz-faq__toggle {
  position: relative;
  width: 32px; height: 32px;
  flex-shrink: 0;
  border-radius: 999px;
  background: var(--hz-primary-soft);
  color: var(--hz-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background-color .2s ease, color .2s ease;
}
.hz-faq__item[open] .hz-faq__toggle { background: var(--hz-primary); color: #fff; }
.hz-faq__bar {
  position: absolute;
  background: currentColor;
  border-radius: 2px;
}
.hz-faq__bar--h { width: 12px; height: 2px; }
.hz-faq__bar--v { width: 2px; height: 12px; transition: transform .2s ease; }
.hz-faq__item[open] .hz-faq__bar--v { transform: rotate(90deg); }
.hz-faq__answer {
  padding: 0 24px 24px;
  color: var(--hz-body);
  animation: hz-fade-in .35s cubic-bezier(.2,.7,.2,1);
}
.hz-faq__answer p { margin: 0; }
@keyframes hz-fade-in {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: none; }
}

/* -------- Final CTA -------- */
.hz-final-cta {
  position: relative;
  padding: 80px 0;
}
@media (min-width: 768px) { .hz-final-cta { padding: 128px 0; } }
.hz-final-cta__wash {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, transparent 0%, rgba(255, 234, 203, 0.35) 40%, rgba(255, 234, 203, 0.55) 100%);
  pointer-events: none;
}
.hz-final-cta__card {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: 56px 32px;
  border-radius: 28px;
  overflow: hidden;
  text-align: center;
  color: #fff;
  background: linear-gradient(135deg, var(--hz-primary) 0%, var(--hz-primary-dark) 100%);
  box-shadow: 0 30px 70px -20px rgba(39, 88, 110, 0.28);
}
@media (min-width: 768px) { .hz-final-cta__card { padding: 80px 64px; } }
.hz-final-cta__heading {
  margin: 0 0 12px;
  font-size: clamp(1.8rem, 3.6vw, 2.85rem);
  color: #fff;
}
.hz-final-cta__body {
  max-width: 560px;
  margin: 12px auto 0;
  color: rgba(255, 255, 255, 0.85);
}
.hz-final-cta__card .hz-btn { margin-top: 32px; }

/* -------- Footer -------- */
.hz-footer {
  background: var(--hz-footer-bg);
  color: #fff;
}
.hz-footer__inner {
  padding: 64px 20px 48px;
}
@media (min-width: 768px) { .hz-footer__inner { padding: 80px 40px 48px; } }
.hz-footer__grid {
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) { .hz-footer__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .hz-footer__grid { grid-template-columns: 1.4fr 1fr 1fr 1.1fr; } }

.hz-footer__logo { max-width: 220px; margin-bottom: 20px; }
.hz-footer__tagline { max-width: 320px; margin: 0 0 24px; font-size: 0.95rem; color: rgba(255, 255, 255, 0.8); }
.hz-footer__socials { display: flex; flex-wrap: wrap; gap: 12px; }
.hz-social {
  display: inline-block;
  padding: 8px 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.85);
  transition: background-color .2s ease, color .2s ease, border-color .2s ease;
}
.hz-social:hover {
  background: var(--hz-accent);
  color: var(--hz-primary-dark);
  border-color: transparent;
}
.hz-footer__title {
  margin: 0 0 16px;
  font-family: var(--hz-font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: rgba(255, 255, 255, 0.8);
}
.hz-footer__col p { margin: 0; color: rgba(255, 255, 255, 0.8); }
.hz-footer__link { color: rgba(255, 255, 255, 0.85); transition: color .2s ease; }
.hz-footer__link:hover { color: var(--hz-accent); }
.hz-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px 0;
}
.hz-footer__bottom p { margin: 0; text-align: center; font-size: 0.85rem; color: rgba(255, 255, 255, 0.6); }

/* ---------- Language switcher ---------- */
.hz-lang { position: relative; display: inline-block; }
.hz-lang__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(59, 133, 167, 0.25);
  background: rgba(255, 255, 255, 0.6);
  color: var(--hz-ink, #1e3a4a);
  font-family: var(--hz-font-sans);
  font-size: 0.85rem;
  font-weight: 500;
  line-height: 1;
  cursor: pointer;
  transition: background-color .2s ease, border-color .2s ease, transform .2s ease;
}
.hz-lang__btn:hover { background: #fff; border-color: rgba(59, 133, 167, 0.5); }
.hz-lang__flag { font-size: 1rem; line-height: 1; }
.hz-lang__code { text-transform: uppercase; letter-spacing: 0.05em; }
.hz-lang__caret { font-size: 0.7rem; transition: transform .2s ease; }
.hz-lang.is-open .hz-lang__caret { transform: rotate(180deg); }

.hz-lang__menu {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  min-width: 170px;
  margin: 0;
  padding: 6px;
  list-style: none;
  background: #fff;
  border: 1px solid rgba(59, 133, 167, 0.18);
  border-radius: 16px;
  box-shadow: 0 18px 40px -18px rgba(39, 88, 110, 0.30);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s;
  z-index: 100;
}
.hz-lang.is-open .hz-lang__menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.hz-lang__menu li { margin: 0; }
.hz-lang__menu button {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 8px 12px;
  border: none;
  border-radius: 10px;
  background: transparent;
  color: var(--hz-ink, #1e3a4a);
  font-family: var(--hz-font-sans);
  font-size: 0.9rem;
  text-align: left;
  cursor: pointer;
  transition: background-color .15s ease;
}
.hz-lang__menu button:hover { background: var(--hz-cream, #FEF5E9); }
.hz-lang__menu button.is-active {
  background: rgba(59, 133, 167, 0.12);
  color: var(--hz-primary-dark, #27586E);
  font-weight: 600;
}

/* ---------- Language switcher hardening (v1.1) ---------- */
.hz-lang, .hz-lang * { box-sizing: border-box; }
.hz-lang__menu { list-style: none !important; padding-left: 6px !important; display: none !important; }
.hz-lang__menu li { list-style: none !important; margin: 0 !important; padding: 0 !important; background: none !important; }
.hz-lang__menu li::before, .hz-lang__menu li::marker { content: none !important; display: none !important; }
.hz-lang.is-open .hz-lang__menu { display: block !important; opacity: 1 !important; visibility: visible !important; transform: translateY(0) !important; }
.hz-lang__menu button { -webkit-appearance: none !important; appearance: none !important; background: transparent; border: none; }
