/* ============================================================
   SPARK — Navigation System v2
   Use Case first · Location as filter · Offers as conversion layer
   ============================================================ */

/* Imports the original Söhne face from site.css; this file extends. */
@import url('site.css');

:root {
  --gutter: 32px;
  --rule-soft: rgba(0,0,0,0.10);
  --rule-mid:  rgba(0,0,0,0.18);

  --shell-x: clamp(24px, 5vw, 64px);
}

/* ============================================================
   HEADER v2 — three-row, mega-menu
   Row 1: utility (city · language · enquire)
   Row 2: brand + L1 nav
   Row 3 (desktop hover): L2 mega-panel
   ============================================================ */

.hv2 {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--paper);
  border-bottom: 1px solid var(--rule-soft);
  font-family: var(--font-body);
  color: var(--ink);
  transition: background .25s ease, color .25s ease, border-color .25s ease;
  isolation: isolate;
}
/* When mega is open, force light/paper appearance — text near-black */
.hv2--mega-open { background: var(--paper) !important; color: var(--ink) !important; }
.hv2--mega-open .hv2__nav-link { color: var(--ink) !important; }
.hv2--mega-open .hv2__nav-link:hover { color: var(--oak-deep) !important; }
.hv2--mega-open .hv2__brand-img { filter: none !important; }
.hv2--mega-open .hv2__menu-btn--desk,
.hv2--mega-open .hv2__lang,
.hv2--mega-open .hv2__city { color: var(--ink) !important; }

.hv2--ink { background: var(--ink); color: #fff; border-bottom-color: rgba(255,255,255,0.10); }
.hv2--transparent {
  background: linear-gradient(180deg, rgba(11,11,12,0.78) 0%, rgba(11,11,12,0.35) 70%, rgba(11,11,12,0) 100%);
  border-bottom-color: transparent;
  color: #fff;
}
.hv2--transparent .hv2__nav-link,
.hv2--transparent .hv2__lang,
.hv2--transparent .hv2__city { color: #fff; }
.hv2--transparent .hv2__brand { color: #fff; }
.hv2--transparent .hv2__brand-img { filter: brightness(0) invert(1); }
.hv2--transparent.is-stuck { background: var(--paper); color: var(--ink); border-bottom-color: var(--rule-soft); }
.hv2--transparent.is-stuck .hv2__nav-link,
.hv2--transparent.is-stuck .hv2__lang,
.hv2--transparent.is-stuck .hv2__city { color: var(--ink); }
.hv2--transparent.is-stuck .hv2__brand-img { filter: none; }

.hv2__city {
  display: inline-flex; gap: 7px; align-items: center;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 10px;
  color: var(--ink-500);
}
.hv2__city .dot { width: 5px; height: 5px; border-radius: 999px; background: var(--oak); }

.hv2__main {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  padding: 0 var(--shell-x);
  gap: 48px;
  height: 60px;
}
.hv2__main-l { display: flex; justify-content: flex-start; align-items: center; gap: 14px; padding-left: 0; }
.hv2__main-r { display: flex; justify-content: flex-end; align-items: center; gap: 22px; }
.hv2__main-r .hv2__nav { flex: 1; justify-content: flex-start; padding-left: 40px; }
.hv2__main-r .hv2__nav-item.is-group-break { margin-left: auto; }

.hv2__brand {
  display: inline-flex; align-items: center; justify-content: center;
  line-height: 1;
}
.hv2__brand-mark { display: none; }
.hv2__brand-img {
  display: block;
  height: 25px; width: auto;
}
.hv2__brand .dot { display: none; }

.hv2__menu-btn--desk {
  display: inline-flex !important; align-items: center; justify-content: center;
  width: 24px; height: 24px;
  margin-left: -2px;
  padding: 0;
  border-radius: 0;
  border: 0;
  background: transparent;
  color: inherit;
  opacity: 0.78;
  cursor: pointer;
  transition: opacity .15s ease;
}
.hv2__menu-btn--desk svg { width: 22px; height: 22px; }
.hv2__menu-btn--desk:hover { opacity: 1; background: transparent; }
.hv2--ink .hv2__menu-btn--desk:hover,
.hv2--transparent:not(.is-stuck) .hv2__menu-btn--desk:hover { background: transparent; }

.hv2__lang {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--ink-400);
  padding: 6px 4px;
  text-transform: uppercase;
  opacity: 0.85;
  transition: color .15s ease, opacity .15s ease;
}
.hv2__lang:hover { color: var(--ink); opacity: 1; }

.hv2__enquire {
  padding: 4px 11px !important;
  font-size: 10px !important;
  letter-spacing: 0.04em !important;
  font-weight: 500 !important;
  border-radius: 999px !important;
  background: var(--ink) !important;
  color: var(--paper) !important;
  border: 1px solid var(--ink) !important;
  text-transform: none !important;
  transition: background .2s ease, color .2s ease !important;
}
.hv2__enquire:hover {
  background: var(--paper) !important;
  color: var(--ink) !important;
}
.hv2--ink .hv2__enquire,
.hv2--transparent:not(.is-stuck) .hv2__enquire {
  color: #fff !important;
  border-color: rgba(255,255,255,0.55) !important;
}
.hv2--ink .hv2__enquire:hover,
.hv2--transparent:not(.is-stuck) .hv2__enquire:hover {
  background: #fff !important;
  color: var(--ink) !important;
  border-color: #fff !important;
}

.hv2__nav {
  display: flex;
  gap: 0;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
.hv2__nav-item {
  position: static;
}
.hv2__nav-item + .hv2__nav-item { margin-left: 0; }
.hv2__nav-item.is-group-break { margin-left: 18px; }

/* Location-mode nav (frankfurt / upper-west / kudamm subpages) */
.hv2__nav--loc { gap: 4px; align-items: center; }
.hv2__loc-tag {
  font-family: var(--font-sans, "General Sans", system-ui, sans-serif);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--oak-deep, #8E6E3E);
  padding: 0 10px 0 0;
  white-space: nowrap;
  text-decoration: none;
  transition: opacity .15s ease;
}
a.hv2__loc-tag:hover { opacity: 0.7; }
a.hv2__loc-tag.is-active { text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 6px; }
.hv2__loc-sep {
  width: 1px;
  height: 16px;
  background: currentColor;
  opacity: 0.25;
  margin: 0 14px 0 4px;
  display: inline-block;
}
.hv2--ink .hv2__loc-tag,
.hv2--transparent:not(.is-stuck) .hv2__loc-tag { color: var(--oak, #B8935A); }

/* Locations primary nav item — stronger brass accent like the Frankfurt loc tag */
.hv2__nav-item[data-nav="offers"] > .hv2__nav-link {
  color: var(--oak-deep, #8E6E3E) !important;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.hv2__nav-item[data-nav="offers"] > .hv2__nav-link::after {
  content: "";
  display: inline-block;
  width: 5px; height: 5px; border-radius: 999px;
  background: var(--oak, #B8935A);
  margin-left: 8px; vertical-align: middle;
}
.hv2--ink .hv2__nav-item[data-nav="offers"] > .hv2__nav-link,
.hv2--transparent:not(.is-stuck) .hv2__nav-item[data-nav="offers"] > .hv2__nav-link { color: var(--oak, #B8935A) !important; }
.hv2__nav-item[data-nav="offers"] > .hv2__nav-link:hover { color: var(--ink) !important; }
.hv2--ink .hv2__nav-item[data-nav="offers"] > .hv2__nav-link:hover,
.hv2--transparent:not(.is-stuck) .hv2__nav-item[data-nav="offers"] > .hv2__nav-link:hover { color: #fff !important; }
.hv2__nav--loc .hv2__nav-link.is-active {
  color: var(--ink);
  position: relative;
}
.hv2__nav--loc .hv2__nav-link.is-active::after {
  content: "";
  position: absolute;
  left: 8px; right: 8px; bottom: 2px;
  height: 1px;
  background: var(--oak, #B8935A);
}
.hv2--ink .hv2__nav--loc .hv2__nav-link.is-active,
.hv2--transparent:not(.is-stuck) .hv2__nav--loc .hv2__nav-link.is-active { color: #fff; }

/* Disabled loc-nav items (e.g. Kudamm Eck preview pages — categories not live yet) */
.hv2__nav--loc .hv2__nav-item.is-disabled { cursor: not-allowed; }
.hv2__nav--loc .hv2__nav-item.is-disabled .hv2__nav-link.is-disabled {
  color: rgba(0,0,0,0.32);
  pointer-events: none;
  user-select: none;
}
.hv2--ink .hv2__nav--loc .hv2__nav-item.is-disabled .hv2__nav-link.is-disabled,
.hv2--transparent:not(.is-stuck) .hv2__nav--loc .hv2__nav-item.is-disabled .hv2__nav-link.is-disabled {
  color: rgba(255,255,255,0.36);
}

/* ============================================================
   HEADER LAYOUT VARIANT — split (two rows)
   Row 1 (utility): city · lang · enquire
   Row 2 (main):    burger · logo · nav
   ============================================================ */
.hv2--split .hv2__main {
  display: grid;
  grid-template-areas:
    "util util util"
    "left brand right";
  grid-template-columns: 1fr auto 1fr;
  grid-template-rows: 36px 52px;
  height: 88px;
  align-items: center;
  padding: 0 var(--shell-x);
  gap: 0 24px;
}
.hv2--split .hv2__main::before {
  content: "";
  grid-area: util;
  border-bottom: 1px solid var(--rule-soft);
  align-self: stretch;
  pointer-events: none;
  margin: 0 calc(var(--shell-x) * -1);
}
.hv2--ink.hv2--split .hv2__main::before,
.hv2--transparent:not(.is-stuck).hv2--split .hv2__main::before { border-bottom-color: rgba(255,255,255,0.10); }

.hv2--split .hv2__main-l { grid-area: left; }
.hv2--split .hv2__brand  { grid-area: brand; }
.hv2--split .hv2__main-r { grid-area: right; }

.hv2--split .hv2__city {
  grid-area: util;
  justify-self: start;
  align-self: center;
  z-index: 1;
}
.hv2--split .hv2__main-l .hv2__city { display: none; } /* city moves to util row */

.hv2--split .hv2__util-r {
  grid-area: util;
  justify-self: end;
  align-self: center;
  display: flex;
  align-items: center;
  gap: 18px;
  z-index: 1;
}
.hv2--split .hv2__main-r .hv2__lang,
.hv2--split .hv2__main-r .hv2__enquire { display: none; } /* lang + enquire move to util row */

.hv2--split .hv2__nav-item.is-open > .hv2__nav-link::before {
  bottom: -16px;
}


.hv2__nav-link {
  display: inline-block;
  padding: 8px 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #111;
  transition: color .15s ease, opacity .15s ease;
  white-space: nowrap;
  position: relative;
}
.hv2__nav-item.is-secondary .hv2__nav-link {
  color: rgba(0,0,0,0.55);
  font-weight: 400;
}
/* Locations (offers) — always normal weight even though it's not is-secondary in V3 */
.hv2__nav-item[data-nav="offers"] .hv2__nav-link {
  font-weight: 400;
  letter-spacing: 0.04em;
  font-size: 12px;
}
.hv2--ink .hv2__nav-item.is-secondary .hv2__nav-link,
.hv2--transparent:not(.is-stuck) .hv2__nav-item.is-secondary .hv2__nav-link {
  color: rgba(255,255,255,0.62);
}
.hv2__nav-item.is-group-break { margin-left: 28px; }
.hv2__nav-link:hover,
.hv2__nav-item.is-open > .hv2__nav-link {
  color: var(--oak-deep);
}
.hv2__nav-item.is-secondary .hv2__nav-link:hover,
.hv2__nav-item.is-secondary.is-open > .hv2__nav-link {
  color: var(--ink);
}
.hv2--ink .hv2__nav-link,
.hv2--transparent:not(.is-stuck) .hv2__nav-link { color: #fff; }
.hv2--ink .hv2__nav-link:hover,
.hv2--ink .hv2__nav-item.is-open > .hv2__nav-link,
.hv2--transparent:not(.is-stuck) .hv2__nav-link:hover,
.hv2--transparent:not(.is-stuck) .hv2__nav-item.is-open > .hv2__nav-link {
  color: var(--oak);
}
.hv2__nav-item.is-open > .hv2__nav-link::before {
  content: "";
  position: absolute;
  left: 12px; right: 12px; bottom: -22px;
  height: 2px;
  background: var(--oak);
}

.hv2__nav-link.is-active::after {
  content: "";
  position: absolute;
  left: 50%; bottom: 3px;
  width: 3px; height: 3px;
  border-radius: 999px;
  background: var(--oak);
  transform: translateX(-50%);
}

.hv2__cta {
  display: flex; justify-content: flex-end; gap: 12px; align-items: center;
}
.hv2__cta .btn { padding: 12px 22px; font-size: 12px; }

.hv2__menu-btn:not(.hv2__menu-btn--desk) {
  display: none;
  width: 40px; height: 40px;
  align-items: center; justify-content: center;
  border-radius: 999px;
  border: 1px solid currentColor;
  opacity: 0.7;
}
.hv2__menu-btn:not(.hv2__menu-btn--desk):hover { opacity: 1; }

/* ----- mega-menu panel ----- */
.hv2__mega {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 100%;
  width: max-content;
  min-width: 880px;
  max-width: min(1180px, calc(100vw - 48px));
  background: var(--paper);
  color: var(--ink);
  border: 1px solid var(--rule-soft);
  border-radius: 4px;
  box-shadow: 0 28px 60px -32px rgba(0,0,0,0.28), 0 8px 20px -16px rgba(0,0,0,0.1);
  padding: 28px 32px 30px;
  margin-top: 6px;
  display: none;
  z-index: 5;
  pointer-events: none;
}
.hv2__nav-item.is-open .hv2__mega { display: block; pointer-events: auto; }
.hv2__mega::before {
  content: "";
  position: absolute;
  left: 0; right: 0;
  top: -10px; height: 10px;
  pointer-events: auto;
}

.hv2__mega-grid {
  display: grid;
  grid-template-columns: 200px 240px 140px 160px;
  gap: 32px;
  align-items: start;
}
/* No feature image → 3 cols */
.hv2__mega-grid:not(:has(.hv2__mega-feature)) {
  grid-template-columns: 200px 240px 140px 160px;
}

.hv2__mega-lede h4 {
  font-family: var(--font-body, 'General Sans', system-ui, sans-serif);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.018em;
  line-height: 1.1;
  margin: 0 0 10px;
}
.hv2__mega-lede p {
  font-size: 12.5px;
  color: var(--ink-500);
  line-height: 1.5;
  margin: 0 0 14px;
  max-width: 28ch;
  text-wrap: pretty;
}
.hv2__mega-lede .btn { font-size: 11px; padding: 8px 16px; }

.hv2__mega-col h6 {
  font-size: 9px; text-transform: uppercase; letter-spacing: 0.22em;
  color: var(--ink-500); margin: 0 0 10px; font-weight: 500;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--rule-soft);
}
.hv2__mega-col ul { list-style: none; padding: 0; margin: 0; }
.hv2__mega-col li { margin-bottom: 5px; }
.hv2__mega-col a {
  display: inline-flex; gap: 8px; align-items: baseline;
  font-size: 13px; line-height: 1.35;
  color: var(--ink);
  font-weight: 500;
  letter-spacing: -0.005em;
  transition: color .15s ease;
}
.hv2__mega-col a:hover { color: var(--oak-deep); }
.hv2__mega-col .arrow {
  color: var(--ink-300);
  opacity: 0;
  transform: translateX(-3px);
  transition: opacity .15s ease, transform .2s ease, color .15s ease;
  font-size: 11px;
}
.hv2__mega-col a:hover .arrow { transform: translateX(0); opacity: 1; color: var(--oak-deep); }

/* PRIMARY column = Experiences (1st col after lede): larger, heavier */
.hv2__mega-col:first-of-type a {
  font-family: var(--font-body, 'General Sans', system-ui, sans-serif);
  font-weight: 700;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.012em;
  line-height: 1.25;
}
.hv2__mega-col:first-of-type li { margin-bottom: 6px; }

/* SECONDARY columns (Location, Conversion): smaller, dimmer */
.hv2__mega-col:not(:first-of-type) a {
  font-size: 12.5px;
  color: var(--ink-700);
  font-weight: 500;
}
.hv2__mega-col:not(:first-of-type) a:hover { color: var(--ink); }

/* RICH column variant — when items carry sub-text and optional tag */
.hv2__mega-col--rich a,
.hv2__mega-col--rich:not(:first-of-type) a {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  align-items: start;
  gap: 2px 8px;
  padding: 8px 0;
  border-bottom: 1px solid var(--rule-soft);
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 14px;
  line-height: 1.25;
  letter-spacing: -0.005em;
}
.hv2__mega-col--rich:first-of-type a { font-size: 15px; }
.hv2__mega-col--rich li { margin-bottom: 0; }
.hv2__mega-col--rich li:last-child a { border-bottom: 0; }
.hv2__mega-it-main {
  display: inline-flex; align-items: center; gap: 8px;
  flex-wrap: nowrap;
  min-width: 0;
}
.hv2__mega-col--rich .hv2__mega-it-label {
  display: inline;
  white-space: nowrap;
  font-family: var(--font-body, 'General Sans', system-ui, sans-serif);
  font-weight: 700;
}
.hv2__mega-it-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 8.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--oak-deep);
  background: rgba(198,168,122,0.14);
  padding: 2px 6px;
  border-radius: 999px;
  font-weight: 500;
  line-height: 1;
}
.hv2__mega-it-sub {
  grid-column: 1 / 2;
  grid-row: 2;
  display: block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0;
  color: var(--ink-500);
  line-height: 1.4;
  margin-top: 1px;
}
.hv2__mega-col--rich a .arrow {
  grid-column: 2;
  grid-row: 1 / 3;
  align-self: center;
}
.hv2__mega-col--rich a:hover { color: var(--oak-deep); background: rgba(198,168,122,0.04); }
.hv2__mega-col--rich a:hover .hv2__mega-it-sub { color: var(--ink-700); }

.hv2__mega-feature {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: #ddd;
}
.hv2__mega-feature img { width: 100%; height: 100%; object-fit: cover; }
.hv2__mega-feature-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,0.6) 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 14px 16px;
  color: #fff;
}
.hv2__mega-feature-overlay .eyebrow { color: rgba(255,255,255,0.75); margin-bottom: 4px; font-size: 9px; }
.hv2__mega-feature-overlay h5 {
  font-family: var(--font-body, 'General Sans', system-ui, sans-serif);
  font-weight: 700; font-size: 17px; letter-spacing: -0.018em;
  margin: 0 0 4px; line-height: 1.15;
}
.hv2__mega-feature-overlay span { font-size: 11px; opacity: .8; }

/* Narrower menus (Experiences, Residences, Our Story) */
.hv2__nav-item[data-nav="residences"] .hv2__mega,
.hv2__nav-item[data-nav="experiences"] .hv2__mega,
.hv2__nav-item[data-nav="offers"] .hv2__mega {
  min-width: 720px;
}
.hv2__nav-item[data-nav="residences"] .hv2__mega-grid,
.hv2__nav-item[data-nav="experiences"] .hv2__mega-grid,
.hv2__nav-item[data-nav="offers"] .hv2__mega-grid {
  grid-template-columns: 200px 280px 160px;
}

/* Events mega — 2 rich format columns need more width */
.hv2__nav-item[data-nav="events"] .hv2__mega-grid {
  grid-template-columns: 220px 300px 300px 200px;
}
.hv2__nav-item[data-nav="events"] .hv2__mega { min-width: 1100px; }

/* Dining mega — 1 rich use-case col + 2 plain cols + feature */
.hv2__nav-item[data-nav="dining"] .hv2__mega-grid {
  grid-template-columns: 180px 220px 180px 130px 200px;
}
.hv2__nav-item[data-nav="dining"] .hv2__mega { min-width: 1060px; }

@media (max-width: 900px) {
  .hv2__nav,
  .hv2__lang,
  .hv2__city { display: none; }
  .hv2__menu-btn { display: inline-flex; }
  .hv2__menu-btn--desk { display: none !important; }
  .hv2__main { grid-template-columns: auto 1fr auto; padding: 0 var(--shell-x); height: 60px; }
  .hv2__main-l { grid-column: 1; }
  .hv2__brand { grid-column: 2; justify-content: center; }
  .hv2__main-r { grid-column: 3; }
  .hv2__enquire { display: none; }
  .hv2__brand-img { height: 22px; }
}

/* ============================================================
   DRAWER — full-bleed editorial site index
   ============================================================ */
.hv2-drawer {
  position: fixed; inset: 0; z-index: 200;
  display: none;
}
.hv2-drawer.is-open { display: block; }
.hv2-drawer__scrim {
  position: absolute; inset: 0;
  background: rgba(11,11,12,0.55);
  backdrop-filter: blur(2px);
  animation: hv2DrawerFade .25s ease;
}
@keyframes hv2DrawerFade { from { opacity: 0 } to { opacity: 1 } }
@keyframes hv2DrawerSlide { from { transform: translateX(-24px); opacity: 0 } to { transform: translateX(0); opacity: 1 } }

.hv2-drawer__panel {
  position: absolute; top: 0; left: 0; bottom: 0;
  width: min(460px, 92vw);
  background: var(--paper);
  display: flex; flex-direction: column;
  padding: 22px 28px;
  animation: hv2DrawerSlide .3s cubic-bezier(.22,.61,.36,1) forwards;
}
.hv2-drawer__panel--wide {
  width: min(500px, 94vw);
  padding: 0;
  overflow: visible;
}

/* HEAD */
.hv2-drawer__head {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px clamp(24px, 3vw, 40px);
  border-bottom: 1px solid var(--rule-soft);
  flex-shrink: 0;
  gap: 24px;
}
.hv2-drawer__brand { display: inline-flex; align-items: center; text-decoration: none; }
.hv2-drawer__brand img { display: block; height: 32px; width: auto; }
.hv2-drawer__head-r { display: flex; align-items: center; gap: 18px; }
.hv2-drawer__lang {
  position: relative;
  display: inline-flex; align-items: center;
  padding: 3px;
  background: rgba(0,0,0,0.04);
  border: 1px solid var(--rule-soft);
  border-radius: 999px;
  cursor: pointer;
  font-family: var(--font-body);
  height: 30px;
  isolation: isolate;
}
.hv2-drawer__lang-opt {
  position: relative; z-index: 2;
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 34px; height: 22px;
  padding: 0 10px;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink-500);
  transition: color .25s ease;
}
.hv2-drawer__lang-opt.is-active { color: #fff; }
.hv2-drawer__lang-thumb {
  position: absolute; z-index: 1;
  top: 3px; left: 3px;
  width: calc(50% - 3px); height: calc(100% - 6px);
  background: var(--ink);
  border-radius: 999px;
  transition: transform .28s cubic-bezier(.22,.61,.36,1);
}
.hv2-drawer__lang[data-lang="de"] .hv2-drawer__lang-thumb { transform: translateX(100%); }
.hv2-drawer__lang-dead {
  font-family: var(--font-body);
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  font-weight: 500; color: var(--ink-500);
  background: transparent; border: 0; cursor: pointer;
  padding: 6px 4px;
  transition: color .15s ease;
}
.hv2-drawer__lang-current { color: var(--ink); }
.hv2-drawer__lang-sep { color: var(--ink-300); font-weight: 400; }
.hv2-drawer__lang-other { color: var(--ink-400); }
.hv2-drawer__lang:hover .hv2-drawer__lang-other { color: var(--ink); }
.hv2-drawer__close {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body);
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  font-weight: 500; color: var(--ink-700);
  background: transparent;
  border: 1px solid var(--rule-soft);
  border-radius: 999px;
  cursor: pointer;
  padding: 7px 14px 7px 12px;
  transition: color .15s ease, border-color .15s ease, background .15s ease;
}
.hv2-drawer__close:hover { color: var(--ink); border-color: var(--ink); background: rgba(0,0,0,0.03); }

/* BODY — two-column layout */
.hv2-drawer__body {
  flex: 1;
  overflow-y: auto;
  overflow-x: visible;
  padding: 0;
  min-height: 0;
}
.hv2-drawer__panel--wide {
  width: min(500px, 94vw);
  padding: 0;
  display: flex; flex-direction: column;
}
.hv2-drawer__body {
  display: flex; flex-direction: column;
  height: 100%;
  min-height: 0;
  overflow: visible;
}

/* ============ HIERARCHY ============ */
.hv2-drawer__hier {
  display: grid;
  grid-template-columns: 1.2fr 1.2fr 1fr 1fr;
  flex: 1;
  align-items: stretch;
}
.hv2-drawer__hier--stacked {
  grid-template-columns: 1.4fr 1fr;
  align-items: stretch;
}
.hv2-drawer__hier--single {
  grid-template-columns: 1fr;
  align-items: stretch;
}
.hv2-drawer__panel { overflow: visible; }
.hv2-drawer__micro-headline {
  display: block;
  margin: 14px 0 4px;
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-500);
  font-weight: 600;
}
.hv2-drawer__col {
  padding: clamp(18px, 2.2vh, 36px) clamp(28px, 3vw, 48px);
  border-right: 1px solid var(--rule-soft);
  display: flex; flex-direction: column; gap: 14px;
  min-width: 0;
}
.hv2-drawer__col:last-child { border-right: 0; }
.hv2-drawer__col--secondary { background: #f7f3ed; gap: 2px; }

/* Destinations dropdown */
.hv2-drawer__dest-wrap { position: relative; }
.hv2-drawer__dest-trigger {
  display: flex; align-items: center; gap: 10px;
  width: 100%;
  background: transparent; border: 0; padding: 2px 0 4px;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 500;
  letter-spacing: 0.005em;
  line-height: 1.15;
  color: #5C4727;
  text-align: left;
  transition: color .15s ease;
}
.hv2-drawer__dest-trigger:hover { color: #5C4727; }
.hv2-drawer__dest-caret {
  margin-left: auto;
  color: var(--oak-deep);
  transition: transform .25s ease, color .15s ease;
}
.hv2-drawer__dest-wrap[data-open="true"] .hv2-drawer__dest-trigger,
.hv2-drawer__dest-wrap:hover .hv2-drawer__dest-trigger { color: var(--oak-deep); }
.hv2-drawer__dest-caret {
  margin-left: auto;
  color: var(--ink-500);
  transition: transform .25s ease, color .15s ease;
}
.hv2-drawer__dest-wrap[data-open="true"] .hv2-drawer__dest-caret,
.hv2-drawer__dest-wrap:hover .hv2-drawer__dest-caret {
  transform: rotate(180deg);
  color: var(--oak-deep);
}

/* Destinations list — collapsible */
.hv2-drawer__dest-list {
  list-style: none; padding: 0; margin: 0;
  max-height: 0;
  overflow: visible hidden;
  transition: max-height .35s cubic-bezier(.22,.61,.36,1), margin .25s ease, opacity .25s ease;
  opacity: 0;
}
.hv2-drawer__dest-wrap[data-open="true"] .hv2-drawer__dest-list,
.hv2-drawer__dest-wrap:hover .hv2-drawer__dest-list {
  max-height: 320px;
  opacity: 1;
  margin-top: 6px;
  overflow: visible;
}
.hv2-drawer__dest-list li + li { margin-top: 0; }
.hv2-drawer__dest-list a {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 12px;
  padding: 1px 0;
  padding: 3px 0;
  text-decoration: none;
  transition: padding-left .2s ease;
}
.hv2-drawer__dest-list a:hover { padding-left: 4px; }
.hv2-drawer__dest-list li:last-child a { border-bottom: 0; }
.hv2-drawer__dest-label {
  font-family: var(--font-display);
  font-size: clamp(17px, 1.35vw, 19px);
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1.25;
  color: var(--ink);
  white-space: nowrap;
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
}
.hv2-drawer__dest-city {
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.92em;
}
.hv2-drawer__dest-venue {
  font-weight: 400;
}
.hv2-drawer__dest-sub {
  font-family: var(--font-body);
  font-size: 9px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink-500);
  white-space: nowrap;
}

/* Products list — always open */
.hv2-drawer__products-list--collapsible {
  max-height: none; overflow: visible;
  opacity: 1;
  margin-top: 6px;
}
.hv2-drawer__prod-wrap .hv2-drawer__dest-caret { display: none; }
.hv2-drawer__prod-wrap .hv2-drawer__prod-trigger { cursor: default; }
.hv2-drawer__products-list { list-style: none; padding: 0; margin: 0; }
.hv2-drawer__products-list--flat li + li { margin-top: 0; }
.hv2-drawer__products-list a {
  display: flex; justify-content: flex-start; align-items: baseline;
  gap: 6px;
  padding: 1px 0;
  text-decoration: none;
  font-family: var(--font-display);
  font-size: clamp(17px, 1.35vw, 19px);
  font-weight: 600;
  letter-spacing: 0.005em;
  line-height: 1.25;
  color: var(--ink);
  transition: padding-left .2s ease, color .15s ease;
}
.hv2-drawer__products-list li:last-child a { border-bottom: 0; }
.hv2-drawer__products-list a:hover { color: var(--oak-deep); padding-left: 4px; }
.hv2-drawer__products-list a .arr {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--ink-300);
  opacity: 0; transform: translateX(-3px);
  transition: opacity .2s ease, transform .2s ease, color .2s ease;
  font-weight: 400;
}
.hv2-drawer__products-list a:hover .arr { opacity: 1; transform: translateX(0); color: var(--oak-deep); }

/* Secondary blocks */
.hv2-drawer__block { display: flex; flex-direction: column; gap: 0; }
.hv2-drawer__block-trigger {
  display: flex; align-items: center; gap: 10px;
  width: 100%;
  background: transparent; border: 0;
  padding: 2px 0 4px;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-display);
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 500;
  letter-spacing: 0.005em;
  line-height: 1.15;
  color: #5C4727;
  transition: color .15s ease;
}
.hv2-drawer__block-trigger:hover { color: #5C4727; }
.hv2-drawer__block-caret {
  margin-left: auto;
  color: var(--oak-deep);
  transition: transform .25s ease, color .15s ease;
}
.hv2-drawer__block-trigger--minor {
  font-size: clamp(17px, 1.35vw, 19px);
  color: var(--ink);
  font-weight: 400;
  letter-spacing: 0.005em;
  line-height: 1.55;
}
.hv2-drawer__block-trigger--minor:hover { color: #5C4727; }
.hv2-drawer__block-trigger--minor .hv2-drawer__block-caret { color: var(--ink-500); }
.hv2-drawer__block--minor[data-open="true"] .hv2-drawer__block-trigger--minor { color: #5C4727; }
.hv2-drawer__block--minor[data-open="true"] .hv2-drawer__block-caret { color: var(--ink); }
.hv2-drawer__col--primary > .hv2-drawer__block--minor:first-of-type { margin-top: clamp(80px, 14vh, 320px); }
.hv2-drawer__block-caret { display: none; }
.hv2-drawer__dest-caret { display: none; }
.hv2-drawer__col--primary { gap: 12px; }
.hv2-drawer__col--primary > .hv2-drawer__block--minor + .hv2-drawer__block--minor { margin-top: -20px; }
.hv2-drawer__block--spaced { margin-top: 0; }
.hv2-drawer__block--collapsible[data-open="true"] .hv2-drawer__block-caret {
  transform: rotate(180deg);
}
.hv2-drawer__block--collapsible[data-open="true"] .hv2-drawer__block-trigger { color: #5C4727; }
.hv2-drawer__block--collapsible .hv2-drawer__sub-list {
  max-height: 0; overflow: hidden;
  opacity: 0;
  transition: max-height .35s cubic-bezier(.22,.61,.36,1), opacity .25s ease, margin .25s ease;
}
.hv2-drawer__block--collapsible[data-open="true"] .hv2-drawer__sub-list {
  max-height: 360px;
  opacity: 1;
  margin-top: 8px;
}
.hv2-drawer__sub-list {
  list-style: none; padding: 0; margin: 0;
}
.hv2-drawer__sub-list a {
  display: flex; justify-content: flex-start; align-items: baseline;
  gap: 6px;
  padding: 1px 0;
  text-decoration: none;
  font-family: var(--font-display);
  font-size: clamp(15px, 1.15vw, 17px);
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1.25;
  color: var(--ink);
  transition: color .15s ease, padding-left .2s ease;
}
.hv2-drawer__sub-list a:hover { color: var(--ink); padding-left: 4px; }
.hv2-drawer__sub-list a .arr {
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--ink-300);
  opacity: 0;
  transition: opacity .15s ease, color .15s ease;
}
.hv2-drawer__sub-list a:hover .arr { opacity: 1; color: var(--oak-deep); }

/* Destination flyout (per-item hover) */
.hv2-drawer__dest-item { position: relative; }
.hv2-drawer__dest-item.has-flyout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  column-gap: 12px;
}
.hv2-drawer__dest-item.has-flyout > .hv2-drawer__dest-link {
  /* the <a> sits in column 1 — keep its existing flex layout via the .dest-list a rule */
  border-bottom: 0;
}
.hv2-drawer__dest-item.has-flyout + .hv2-drawer__dest-item {
  border-top: 1px solid var(--rule-soft);
}

/* Expand chip — the affordance that screams "this opens" */
.hv2-drawer__dest-toggle {
  grid-column: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px 7px 14px;
  margin-right: -4px;
  background: transparent;
  border: 1px solid var(--rule-soft);
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-700);
  cursor: pointer;
  white-space: nowrap;
  transition: background .2s ease, border-color .2s ease, color .2s ease;
}
.hv2-drawer__dest-toggle:hover {
  background: var(--ink-100, rgba(0,0,0,0.04));
  border-color: rgba(0,0,0,0.22);
  color: var(--ink-900, #0B0B0C);
}
.hv2-drawer__dest-toggle-caret {
  transition: transform .25s cubic-bezier(.22,.61,.36,1);
  display: block;
}
.hv2-drawer__dest-item.is-flyout-open .hv2-drawer__dest-toggle {
  background: var(--ink, #0B0B0C);
  border-color: var(--ink, #0B0B0C);
  color: #fff;
}
.hv2-drawer__dest-item.is-flyout-open .hv2-drawer__dest-toggle-caret {
  transform: rotate(180deg);
}

.hv2-drawer__dest-flyout {
  position: fixed;
  top: 0; left: 0;
  min-width: 560px;
  background: var(--ink);
  color: #fff;
  padding: 16px 20px 18px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.35);
  opacity: 0; pointer-events: none;
  transform: translateY(-6px);
  transition: opacity .2s ease, transform .25s cubic-bezier(.22,.61,.36,1);
  z-index: 10001;
}
.hv2-drawer__dest-item.has-flyout.is-flyout-open .hv2-drawer__dest-flyout {
  opacity: 1; pointer-events: auto;
  transform: translateY(0);
}
/* Invisible bridge so the cursor can travel from label to flyout
   (label sits ~6px above the panel) without closing the hover state. */
.hv2-drawer__dest-flyout::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  top: -14px; height: 14px;
  background: transparent;
}
.hv2-drawer__dest-flyout::before { display: none; }
.hv2-drawer__dest-flyout-eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 9px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #5C4727;
  font-weight: 600;
  margin-bottom: 10px;
}
.hv2-drawer__dest-flyout-media {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 6;
  overflow: hidden;
  margin: 0 0 14px;
}
.hv2-drawer__dest-flyout-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s cubic-bezier(.22,.61,.36,1);
}
.hv2-drawer__dest-flyout-media:hover img { transform: scale(1.04); }
.hv2-drawer__dest-flyout-cols {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 14px;
}
.hv2-drawer__dest-flyout-col.is-block {
  position: relative;
  display: block;
  padding: 18px 18px 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  text-decoration: none;
  color: inherit;
  transition: background .2s ease, border-color .2s ease, transform .25s cubic-bezier(.22,.61,.36,1);
  min-height: 116px;
}
.hv2-drawer__dest-flyout-col.is-block:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.22);
}
.hv2-drawer__dest-flyout-col.is-block h5 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.1;
  color: #fff;
  padding: 0;
  border: 0;
}
.hv2-drawer__dest-flyout-col-items {
  display: block;
  font-family: var(--font-text);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1.5;
  color: rgba(255,255,255,0.55);
}
.hv2-drawer__dest-flyout-col-arr {
  position: absolute;
  right: 16px;
  bottom: 14px;
  font-family: var(--font-display);
  font-size: 18px;
  color: rgba(255,255,255,0.55);
  transition: transform .25s cubic-bezier(.22,.61,.36,1), color .2s ease;
}
.hv2-drawer__dest-flyout-col.is-block:hover .hv2-drawer__dest-flyout-col-arr {
  transform: translateX(4px);
  color: #fff;
}

/* "Overview →" link inside the flyout */
.hv2-drawer__dest-flyout .hv2-drawer__dest-flyout-overview {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
  padding: 11px 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 2px;
  color: rgba(255,255,255,0.78);
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  transition: background .2s ease, border-color .2s ease, color .2s ease, padding-left .2s ease;
}
.hv2-drawer__dest-flyout .hv2-drawer__dest-flyout-overview:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(255,255,255,0.22);
  color: #fff;
  padding-left: 14px; /* nullify the .dest-list a:hover padding-left:4px shift */
}
.hv2-drawer__dest-flyout .hv2-drawer__dest-flyout-overview span { font-size: 14px; }

/* ── Mobile: inline expand, no more position: fixed ─────────────── */
@media (max-width: 720px) {
  .hv2-drawer__dest-item.has-flyout {
    grid-template-columns: minmax(0, 1fr) auto;
    row-gap: 0;
  }
  .hv2-drawer__dest-toggle {
    padding: 7px 11px 7px 13px;
    font-size: 10px;
  }
  /* Hide the "X Collections" word on tightest widths so the chip stays one line */
  @media (max-width: 380px) {
    .hv2-drawer__dest-toggle-label { display: none; }
    .hv2-drawer__dest-toggle { padding: 8px; width: 36px; justify-content: center; }
  }

  .hv2-drawer__dest-item.has-flyout .hv2-drawer__dest-flyout {
    position: static;
    left: auto !important; top: auto !important;
    grid-column: 1 / -1;
    width: 100%;
    min-width: 0;
    margin-top: 10px;
    margin-bottom: 4px;
    padding: 14px 16px 16px;
    box-shadow: none;
    transform: none;
    /* Collapsed by default — animated reveal */
    display: grid;
    grid-template-rows: 0fr;
    opacity: 0;
    pointer-events: none;
    transition: grid-template-rows .35s cubic-bezier(.22,.61,.36,1),
                opacity .25s ease,
                padding .25s ease,
                margin .25s ease;
    padding-top: 0;
    padding-bottom: 0;
    margin-top: 0;
    margin-bottom: 0;
  }
  .hv2-drawer__dest-item.has-flyout .hv2-drawer__dest-flyout > * {
    min-height: 0;
    overflow: hidden;
  }
  .hv2-drawer__dest-item.has-flyout.is-flyout-open .hv2-drawer__dest-flyout {
    grid-template-rows: 1fr;
    opacity: 1;
    pointer-events: auto;
    padding-top: 14px;
    padding-bottom: 16px;
    margin-top: 10px;
    margin-bottom: 4px;
  }
  /* Inside flyout — restack for narrow screens */
  .hv2-drawer__dest-flyout-cols {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .hv2-drawer__dest-flyout-col.is-block { min-height: 0; padding: 14px 16px 14px; }
  .hv2-drawer__dest-flyout-col.is-block h5 { font-size: 19px; margin-bottom: 6px; }
  .hv2-drawer__dest-flyout-col-items { font-size: 10.5px; }
  .hv2-drawer__dest-flyout-col-arr { bottom: 12px; right: 14px; font-size: 16px; }
  .hv2-drawer__dest-flyout-media { aspect-ratio: 16 / 9; margin-bottom: 12px; }
  /* Bridge isn't useful when flyout is inline */
  .hv2-drawer__dest-flyout::after { display: none; }
}

/* Legacy section markup (kept harmless) */
.hv2-drawer__section { display: none; }

.hv2-drawer__cta-inline {
  margin-top: 20px;
  padding-top: 4px;
}
.hv2-drawer__cta-inline-btn {
  display: inline-flex;
  align-items: center;
  padding: 10px 18px !important;
  font-size: 12px !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase !important;
  background: #5C4727 !important;
  color: #fff !important;
  border: 0 !important;
  text-decoration: none !important;
}
.hv2-drawer__cta-inline-btn:hover { background: #4a3920 !important; }

/* ============ MICRO FOOTER ============ */
.hv2-drawer__micro {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  padding: 22px clamp(20px, 2.2vw, 32px) 24px;
  background: var(--ink);
  color: rgba(255,255,255,0.78);
  border-top: 1px solid rgba(255,255,255,0.08);
}
.hv2-drawer__micro-block { display: flex; flex-direction: column; gap: 4px; }
.hv2-drawer__micro-block--cta { flex-direction: row; align-items: center; gap: 18px; }
.hv2-drawer__micro-eyebrow {
  font-family: var(--font-body);
  font-size: 9px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
}
.hv2-drawer__micro-row--inline {
  flex-direction: row !important;
  align-items: baseline;
  justify-content: flex-start;
  gap: 12px;
}
.hv2-drawer__micro-row--inline span { font-size: 10px !important; }
.hv2-drawer__micro-row--inline b { font-size: 13px !important; white-space: nowrap; }
.hv2-drawer__micro-row {
  display: flex; flex-direction: column; gap: 1px;
  text-decoration: none;
  color: #fff;
}
.hv2-drawer__micro-row span {
  font-family: var(--font-body);
  font-size: 8.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
}
.hv2-drawer__micro-row b {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 400;
  color: #fff;
  letter-spacing: 0.01em;
}
.hv2-drawer__news {
  display: flex; gap: 0;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.04);
  height: 36px;
  max-width: 280px;
}
.hv2-drawer__news input {
  flex: 1; min-width: 0;
  background: transparent;
  border: 0;
  padding: 0 12px;
  color: #fff;
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.01em;
}
.hv2-drawer__news input:focus { outline: none; background: rgba(255,255,255,0.04); }
.hv2-drawer__news input::placeholder { color: rgba(255,255,255,0.35); }
.hv2-drawer__news button {
  background: var(--oak-deep, #B8935A);
  border: 0; color: #fff;
  padding: 0 16px;
  font-family: var(--font-body);
  font-size: 13px;
  cursor: pointer;
  transition: background .2s ease;
}
.hv2-drawer__news button:hover { background: #5C4727; }
.hv2-drawer__micro-fine {
  margin: 0;
  font-family: var(--font-body);
  font-size: 10.5px;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
}
.hv2-drawer__micro-cta {
  padding: 9px 16px !important;
  font-size: 11px !important;
  letter-spacing: 0.04em !important;
  border-radius: 999px !important;
  font-weight: 500 !important;
  background: var(--oak-deep, #B8935A) !important;
  color: #fff !important;
  border: 0 !important;
}
.hv2-drawer__micro-cta:hover { background: #5C4727 !important; }
.hv2-drawer__micro-link {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.78);
  text-decoration: none;
}
.hv2-drawer__micro-link:hover { color: #fff; }

/* RESPONSIVE */
@media (max-width: 1100px) {
  .hv2-drawer__panel--wide { width: min(960px, 96vw); }
  .hv2-drawer__hier--stacked { grid-template-columns: 1fr; }
  .hv2-drawer__col { border-right: 0; border-bottom: 1px solid var(--rule-soft); }
  .hv2-drawer__col:last-child { border-bottom: 0; }
  .hv2-drawer__micro { grid-template-columns: 1fr 1fr; }
  .hv2-drawer__micro-block--cta { grid-column: 1 / -1; flex-direction: row; align-items: center; }
}
@media (max-width: 720px) {
  .hv2-drawer__panel--wide { width: 100vw; }
  .hv2-drawer__micro { grid-template-columns: 1fr; }
}

/* legacy l1/l2 (unused by new drawer, kept for safety) */
.hv2-drawer__l1 { list-style: none; padding: 0; margin: 24px 0; }
.hv2-drawer__l1 > li { border-bottom: 1px solid var(--rule-soft); }
.hv2-drawer__l2 { list-style: none; padding: 0 0 16px 0; margin: 0; display: none; }
.hv2-drawer__l1 li.is-open .hv2-drawer__l2 { display: block; }

/* ============================================================
   PAGE SHELL — wraps and section rhythm
   ============================================================ */
.shell { padding: 0 var(--shell-x); }
.shell--max { max-width: var(--grid-max); margin: 0 auto; padding: 0 var(--shell-x); }

.section-v2 { padding: clamp(72px, 9vw, 128px) 0; }
.section-v2--tight { padding: clamp(48px, 6vw, 80px) 0; }
.section-v2--ink { background: var(--ink); color: #fff; }
.section-v2--paper { background: var(--paper); }
.section-v2--concrete { background: var(--concrete); }
.section-v2--white { background: #fff; }

.section-head-v2 {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr);
  gap: 64px;
  margin-bottom: 56px;
  align-items: end;
}
.section-head-v2 .lede h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(34px, 4.4vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin: 12px 0 0;
}
.section-head-v2 .lede h2 em { font-style: italic; font-family: var(--font-serif); font-weight: 400; color: var(--oak-deep); }
.section-head-v2 .copy p {
  font-size: 17px;
  line-height: 1.5;
  color: var(--ink-700);
  max-width: 56ch;
  margin: 0;
}
.section-v2--ink .section-head-v2 .copy p { color: rgba(255,255,255,0.78); }

@media (max-width: 900px) {
  .section-head-v2 { grid-template-columns: 1fr; gap: 24px; margin-bottom: 36px; }
}

/* ============================================================
   HERO v2 — intent-first
   ============================================================ */
.hero-v2 {
  position: relative;
  min-height: 92vh;
  padding-top: 96px;
  display: flex;
  align-items: flex-end;
  color: #fff;
  background: var(--ink);
  overflow: hidden;
  isolation: isolate;
}
.hero-v2__media { position: absolute; inset: 0; z-index: -2; }
.hero-v2__media img,
.hero-v2__media video,
.hero-v2__media iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  border: 0;
}
.hero-v2::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(11,11,12,0) 50%, rgba(11,11,12,0.7) 100%);
}
.hero-v2__inner {
  width: 100%;
  padding: 0 var(--shell-x) clamp(56px, 8vw, 96px);
  max-width: var(--grid-max);
  margin: 0 auto;
}
.hero-v2__eyebrow {
  font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase;
  color: rgba(255,255,255,0.7); font-weight: 500;
  margin-bottom: 24px;
}
.hero-v2__h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(52px, 8vw, 124px);
  line-height: 0.96;
  letter-spacing: -0.035em;
  margin: 0;
  max-width: 14ch;
}
.hero-v2__h1 em {
  font-style: italic;
  font-family: var(--font-serif);
  font-weight: 400;
  color: var(--oak);
}
.hero-v2__sub {
  margin-top: 26px;
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.45;
  max-width: 56ch;
  color: rgba(255,255,255,0.82);
}
.hero-v2__meta {
  display: flex;
  gap: 24px;
  margin-top: 32px;
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}
.hero-v2__meta span::before {
  content: "·";
  margin-right: 24px;
  color: rgba(255,255,255,0.3);
}
.hero-v2__meta span:first-child::before { display: none; }

/* ============================================================
   INTENT GRID — Layer 1 cards
   ============================================================ */
.intent-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--rule-soft);
  border: 1px solid var(--rule-soft);
}
.intent-card {
  position: relative;
  background: var(--paper);
  padding: 36px 28px 28px;
  display: flex; flex-direction: column;
  min-height: 320px;
  transition: background .25s ease;
  overflow: hidden;
}
.intent-card::before {
  content: "";
  position: absolute; inset: 0;
  background-image: var(--bg-image);
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity .35s ease;
  z-index: 0;
}
.intent-card::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,11,12,0.2) 0%, rgba(11,11,12,0.85) 100%);
  opacity: 0; transition: opacity .35s ease;
  z-index: 1;
}
.intent-card > * { position: relative; z-index: 2; }
.intent-card:hover { color: #fff; }
.intent-card:hover::before { opacity: 1; }
.intent-card:hover::after { opacity: 1; }

.intent-card__num {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.05em;
  color: var(--ink-400);
  margin-bottom: 28px;
}
.intent-card:hover .intent-card__num { color: rgba(255,255,255,0.65); }

.intent-card__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 32px;
  line-height: 1.0;
  letter-spacing: -0.025em;
  margin: 0 0 14px;
}
.intent-card__sub {
  font-size: 14px;
  line-height: 1.45;
  color: var(--ink-500);
  margin: 0 0 auto 0;
  max-width: 30ch;
}
.intent-card:hover .intent-card__sub { color: rgba(255,255,255,0.78); }

.intent-card__l2 {
  margin-top: 24px;
  display: flex; flex-wrap: wrap; gap: 6px 14px;
  font-size: 13px;
  color: var(--ink-700);
}
.intent-card:hover .intent-card__l2 { color: rgba(255,255,255,0.85); }
.intent-card__l2 span:not(:last-child)::after {
  content: "·"; margin-left: 14px; color: var(--ink-300);
}
.intent-card:hover .intent-card__l2 span:not(:last-child)::after { color: rgba(255,255,255,0.4); }

.intent-card__cta {
  margin-top: 22px;
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  font-weight: 500;
}
.intent-card__cta .arrow { transition: transform .25s ease; }
.intent-card:hover .intent-card__cta .arrow { transform: translateX(4px); }

@media (max-width: 1100px) { .intent-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .intent-grid { grid-template-columns: 1fr; } }

/* ============================================================
   FILTER PILLS — location filter on category pages
   ============================================================ */
.filter-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
  border-top: 1px solid var(--rule-soft);
  border-bottom: 1px solid var(--rule-soft);
  flex-wrap: wrap;
}
.filter-bar__group {
  display: inline-flex; gap: 4px; align-items: center;
  background: var(--paper);
  padding: 4px;
  border-radius: 999px;
}
.filter-bar__pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 18px;
  border-radius: 999px;
  font-size: 13px; font-weight: 500;
  color: var(--ink-700);
  transition: background .2s ease, color .2s ease;
  letter-spacing: 0.02em;
}
.filter-bar__pill:hover { background: rgba(0,0,0,0.05); color: var(--ink); }
.filter-bar__pill.is-active {
  background: var(--ink);
  color: #fff;
}
.filter-bar__count {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-500);
  letter-spacing: 0.04em;
}

.filter-bar__label {
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink-500); font-weight: 500;
  margin-right: 12px;
}

/* ============================================================
   CARD GRID — venue/format/offer cards
   ============================================================ */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px 24px;
}
@media (max-width: 1000px) { .card-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .card-grid { grid-template-columns: 1fr; } }

.v2-card {
  display: flex; flex-direction: column;
  position: relative;
  background: transparent;
  transition: transform .3s ease;
}
.v2-card__img {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--ink-100);
  border-radius: 4px;
}
.v2-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s cubic-bezier(.22,.61,.36,1);
}
.v2-card:hover .v2-card__img img { transform: scale(1.04); }

.v2-card__chip {
  position: absolute;
  left: 16px; top: 16px;
  display: inline-flex; gap: 6px; align-items: center;
  padding: 6px 11px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(4px);
  border-radius: 999px;
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  font-weight: 500;
  color: var(--ink);
}
.v2-card__chip .dot { width: 5px; height: 5px; border-radius: 999px; background: var(--oak); }

.v2-card__body { padding: 18px 4px 0; }
.v2-card__eyebrow {
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink-500); font-weight: 500;
  margin-bottom: 6px;
}
.v2-card__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 8px;
}
.v2-card__title em { font-family: var(--font-serif); font-weight: 400; font-style: italic; }
.v2-card__desc {
  font-size: 14px;
  color: var(--ink-700);
  line-height: 1.5;
  margin: 0 0 12px;
}
.v2-card__specs {
  display: flex; gap: 16px; flex-wrap: wrap;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-500);
  letter-spacing: 0.02em;
  margin-top: 6px;
}

.v2-card__cta {
  margin-top: 14px;
  font-size: 13px; font-weight: 500;
  color: var(--ink);
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  display: inline-block;
  transition: color .2s ease;
}
.v2-card:hover .v2-card__cta { color: var(--oak-deep); }

/* feature card variant — wider, image-led */
.v2-card--feature .v2-card__img { aspect-ratio: 16/10; }

/* ============================================================
   USE-CASE FUNNEL — Events page main funnel
   ============================================================ */
.funnel {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 56px;
}
@media (max-width: 900px) { .funnel { grid-template-columns: 1fr; gap: 24px; } }

.funnel__nav {
  position: sticky; top: 100px;
  align-self: start;
}
.funnel__nav-list {
  list-style: none; padding: 0; margin: 0;
  border-left: 1px solid var(--rule-soft);
}
.funnel__nav-list li {}
.funnel__nav-list a {
  display: block;
  padding: 14px 18px;
  font-size: 14px;
  color: var(--ink-700);
  border-left: 1px solid transparent;
  margin-left: -1px;
  transition: color .2s ease, border-color .2s ease;
}
.funnel__nav-list a:hover { color: var(--ink); }
.funnel__nav-list a.is-active {
  color: var(--ink);
  border-left-color: var(--ink);
  font-weight: 500;
}
.funnel__nav-num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-400);
  margin-right: 10px;
}

.funnel__panel {
  border-top: 1px solid var(--rule-soft);
  padding: 56px 0;
}
.funnel__panel:first-child { padding-top: 0; border-top: 0; }
.funnel__panel-head {
  display: flex; gap: 24px; align-items: baseline;
  margin-bottom: 32px;
}
.funnel__panel-head h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(28px, 3vw, 44px);
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin: 0;
}
.funnel__panel-head h3 em { font-family: var(--font-serif); font-style: italic; font-weight: 400; }
.funnel__panel-num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-500);
  letter-spacing: 0.05em;
}
.funnel__panel p.lede {
  font-size: 17px; color: var(--ink-700); line-height: 1.5;
  max-width: 60ch; margin: 0 0 28px;
}

/* ============================================================
   SPEC ROW — three-trio specs (LED · dimensions · capacity)
   ============================================================ */
.spec-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  border-top: 1px solid var(--rule-soft);
  border-bottom: 1px solid var(--rule-soft);
  padding: 24px 0;
}
.spec-row__cell {
  display: flex; flex-direction: column; gap: 6px;
}
.spec-row__label {
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink-500); font-weight: 500;
}
.spec-row__value {
  font-family: var(--font-mono);
  font-size: 18px;
  color: var(--ink);
  letter-spacing: 0;
}

/* ============================================================
   CTA STRIP — request proposal / reserve / etc.
   ============================================================ */
.cta-strip {
  background: var(--ink);
  color: #fff;
  padding: 64px var(--shell-x);
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 900px) { .cta-strip { grid-template-columns: 1fr; gap: 28px; padding: 48px var(--shell-x); } }
.cta-strip h3 {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(28px, 3.6vw, 48px);
  letter-spacing: -0.025em; line-height: 1.05;
  margin: 0;
}
.cta-strip h3 em { font-family: var(--font-serif); font-style: italic; font-weight: 400; color: var(--oak); }
.cta-strip p { color: rgba(255,255,255,0.75); font-size: 15px; line-height: 1.5; margin: 12px 0 0; max-width: 50ch; }
.cta-strip__actions {
  display: flex; gap: 12px; justify-content: flex-end; flex-wrap: wrap;
}
.cta-strip__actions .btn--invert { background: #fff; color: var(--ink); }
.cta-strip__actions .btn--ghost-light {
  background: transparent; color: #fff;
  border: 1px solid rgba(255,255,255,0.3);
}
.cta-strip__actions .btn--ghost-light:hover { background: rgba(255,255,255,0.08); }
@media (max-width: 900px) { .cta-strip__actions { justify-content: flex-start; } }

/* ============================================================
   BREADCRUMB — L1 / L2 / L3
   ============================================================ */
.crumbs {
  display: flex; gap: 12px; align-items: center;
  padding: 24px var(--shell-x);
  font-size: 12px; letter-spacing: 0.06em;
  color: var(--ink-500);
  border-bottom: 1px solid var(--rule-soft);
}
.crumbs a { color: var(--ink-700); }
.crumbs a:hover { color: var(--ink); }
.crumbs span.sep { color: var(--ink-300); }
.crumbs .current { color: var(--ink); font-weight: 500; }

/* ============================================================
   STAT ROW — for landing pages
   ============================================================ */
.stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding: 40px 0;
  border-top: 1px solid var(--rule-soft);
  border-bottom: 1px solid var(--rule-soft);
}
@media (max-width: 800px) { .stat-row { grid-template-columns: repeat(2, 1fr); } }
.stat-row__cell { display: flex; flex-direction: column; gap: 8px; }
.stat-row__num {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1;
}
.stat-row__num em { font-family: var(--font-serif); font-style: italic; font-weight: 400; }
.stat-row__label {
  font-size: 12px;
  color: var(--ink-500);
  line-height: 1.4;
  letter-spacing: 0.06em;
}

/* ============================================================
   OFFER CARD — packages
   ============================================================ */
.offer-card {
  display: flex; flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--rule-soft);
  border-radius: 6px;
  overflow: hidden;
  transition: border-color .25s ease, transform .25s ease;
}
.offer-card:hover { border-color: var(--ink-400); transform: translateY(-2px); }
.offer-card__img {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--ink-100);
}
.offer-card__img img { width: 100%; height: 100%; object-fit: cover; }
.offer-card__body { padding: 24px 24px 28px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.offer-card__season {
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--oak-deep); font-weight: 500;
}
.offer-card__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 24px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0;
}
.offer-card__title em { font-family: var(--font-serif); font-style: italic; font-weight: 400; }
.offer-card__meta {
  display: flex; gap: 14px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-500);
}
.offer-card__desc { font-size: 14px; color: var(--ink-700); line-height: 1.5; margin: 0; }
.offer-card__foot {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--rule-soft);
}
.offer-card__price {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--ink);
}
.offer-card__price strong { font-size: 16px; font-family: var(--font-display); font-weight: 600; }

/* ============================================================
   STORY BLOCK — text + media
   ============================================================ */
.story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.story--reverse > .story__media { order: -1; }
@media (max-width: 900px) { .story { grid-template-columns: 1fr; gap: 32px; } .story--reverse > .story__media { order: 0; } }

.story__text h2 {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(32px, 3.6vw, 56px);
  line-height: 1.02; letter-spacing: -0.025em;
  margin: 16px 0 24px;
}
.story__text h2 em { font-family: var(--font-serif); font-style: italic; font-weight: 400; }
.story__text p { font-size: 16px; line-height: 1.55; color: var(--ink-700); margin: 0 0 16px; max-width: 56ch; }
.section-v2--ink .story__text p { color: rgba(255,255,255,0.78); }
.story__media img { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: 4px; }

/* ============================================================
   QUOTE — pull quote
   ============================================================ */
.pull-quote {
  max-width: 32ch;
  font-family: var(--font-serif);
  font-size: clamp(24px, 2.8vw, 40px);
  line-height: 1.2;
  letter-spacing: -0.01em;
  font-style: italic;
  font-weight: 400;
  color: var(--ink);
  margin: 0;
}
.section-v2--ink .pull-quote { color: rgba(255,255,255,0.92); }
.pull-quote-attrib {
  margin-top: 18px;
  font-family: var(--font-body);
  font-size: 13px; letter-spacing: 0.06em;
  color: var(--ink-500);
  font-style: normal;
}

/* ============================================================
   BENT GRID — feature L2 with side rail
   ============================================================ */
.bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.bento > * { border-radius: 4px; overflow: hidden; }
.bento__big {
  grid-column: span 4;
  grid-row: span 2;
  position: relative;
}
.bento__med { grid-column: span 2; position: relative; }
.bento__sml { grid-column: span 2; position: relative; }
.bento img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 1/1; }
.bento__big img { aspect-ratio: 16/13; }
.bento__med img { aspect-ratio: 4/3; }
.bento__caption {
  position: absolute; left: 16px; bottom: 14px; right: 16px;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.015em;
  z-index: 2;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}
@media (max-width: 800px) {
  .bento__big, .bento__med, .bento__sml { grid-column: span 6; }
  .bento__big { grid-row: auto; }
}

/* ============================================================
   FORMAT TABLE — events config matrix
   ============================================================ */
.fmt-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.fmt-table th, .fmt-table td {
  text-align: left;
  padding: 18px 16px;
  border-bottom: 1px solid var(--rule-soft);
  vertical-align: top;
}
.fmt-table th {
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-500); font-weight: 500;
}
.fmt-table td.fmt-name {
  font-family: var(--font-display); font-weight: 600;
  font-size: 18px; letter-spacing: -0.015em;
  color: var(--ink);
  width: 240px;
}
.fmt-table td.fmt-num {
  font-family: var(--font-mono);
  color: var(--ink-700);
  white-space: nowrap;
}

/* ============================================================
   UTILITY
   ============================================================ */
.divider {
  border: 0;
  border-top: 1px solid var(--rule-soft);
  margin: 0;
}
.section-v2--ink .divider { border-top-color: rgba(255,255,255,0.12); }

[data-reveal] { opacity: 0; transform: translateY(12px); transition: opacity .8s ease, transform .8s ease; }
[data-reveal].is-in { opacity: 1; transform: translateY(0); }
