/* V2 nav extensions: monogram links + Explore dropdown + footer marks */
.nav__mono { height: 1.25em; width: auto; display: inline-block; vertical-align: -0.22em; margin-right: 5px; }
.nav__more { position: relative; display: flex; align-items: center; }
.nav__more-toggle {
  background: none; border: 0; cursor: pointer;
  font-family: var(--sans); font-size: 11.5px; font-weight: 500;
  letter-spacing: .22em; text-transform: uppercase;
  line-height: 1.6; vertical-align: baseline;
  color: var(--ink); padding: 0 0 3px; display: inline-flex; align-items: center; gap: 7px;
  position: relative;
}
.nav__more-toggle::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 100%; height: 1px;
  background: currentColor; transform: scaleX(0); transform-origin: right;
  transition: transform .4s var(--ease);
}
.nav__more:hover .nav__more-toggle::after, .nav__more:focus-within .nav__more-toggle::after { transform: scaleX(1); transform-origin: left; }
.nav.is-dark-context:not(.is-solid) .nav__more-toggle { color: var(--cream); }
.nav__more-caret { font-size: 8px; line-height: 1; transition: transform .3s var(--ease); }
.nav__more:hover .nav__more-caret, .nav__more:focus-within .nav__more-caret { transform: rotate(180deg); }
.nav__more-menu {
  position: absolute; top: calc(100% + 22px); left: 50%;
  background: var(--cream); border: 1px solid var(--hairline); border-radius: 18px;
  padding: 30px 34px 24px; display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 6px 38px; width: min(660px, 94vw);
  opacity: 0; visibility: hidden; transform: translate(-50%, 12px);
  transition: opacity .32s var(--ease), transform .32s var(--ease), visibility .32s;
  box-shadow: 0 24px 60px rgba(31,31,31,.16); z-index: 60;
}
.nav__more-menu::before {
  content: ""; position: absolute; top: -22px; left: 0; right: 0; height: 22px;
}
.nav__more:hover .nav__more-menu, .nav__more:focus-within .nav__more-menu {
  opacity: 1; visibility: visible; transform: translate(-50%, 0);
}
.nav__more-label {
  grid-row: 1;
  font-size: 9.5px; font-weight: 500; letter-spacing: .3em; text-transform: uppercase;
  color: var(--orange); padding-bottom: 12px; margin-bottom: 6px;
  border-bottom: 1px solid var(--hairline);
}
.nav__more-col { display: flex; flex-direction: column; }
.nav__more-link {
  display: flex; align-items: center; justify-content: flex-start; gap: 7px;
  font-family: var(--serif); font-size: 17.5px; font-weight: 400;
  letter-spacing: .01em; text-transform: none;
  color: var(--ink); padding: 8px 2px;
  transition: color .25s var(--ease), padding-left .25s var(--ease);
}
.nav__more-link .go { margin-left: auto; opacity: 0; transform: translateX(-4px); transition: opacity .25s var(--ease), transform .25s var(--ease); font-size: 13px; color: var(--orange); }
.nav__more-link:hover { color: var(--orange); padding-left: 6px; }
.nav__more-link:hover .go { opacity: 1; transform: none; }
.nav__more-foot {
  grid-column: 1 / -1; margin-top: 16px; padding-top: 16px;
  border-top: 1px solid var(--hairline);
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.nav__more-foot .meta { font-size: 10px; }
@media (max-width: 720px) { .nav__more { display: none; } }

.footer__brand img { background: transparent; }
.footer__word { padding: clamp(28px, 4vw, 52px) 0; }
.footer__word img { display: block; width: min(86%, 1380px); margin-inline: auto; opacity: .85; }

/* elegant footer base */
.footer__flourish { display: flex; align-items: center; gap: 20px; max-width: 440px; margin: 0 auto clamp(22px, 3vw, 36px); }
.footer__flourish span { flex: 1; height: 1px; background: rgba(249,244,238,.18); }
.footer__flourish img { height: 32px; width: auto; }
.footer__word-mark { display: block; width: min(82%, 1280px); margin-inline: auto; opacity: .92; }

/* ===== experience pass ===== */
/* premium primary buttons */
.pill.pill--primary, .nav .nav__book, .mini-btn.mini-btn--solid {
  background: linear-gradient(135deg, #DBA591 0%, #C9826B 58%, #BA7560 100%);
  border: 0;
  box-shadow: 0 10px 26px rgba(201,130,107,.32), inset 0 1px 0 rgba(255,255,255,.34);
  text-shadow: none;
}
.pill.pill--primary:hover, .nav .nav__book:hover, .mini-btn.mini-btn--solid:hover {
  background: linear-gradient(135deg, #D49A85 0%, #BA7560 58%, #A96A56 100%);
  box-shadow: 0 14px 32px rgba(201,130,107,.42), inset 0 1px 0 rgba(255,255,255,.34);
}

/* artist cards: pin actions to one baseline */
.artist-cell { display: flex; flex-direction: column; }
.artist-cell__bio { flex: 1; }

/* filmstrip carousel */
.filmstrip { display: grid; gap: clamp(12px, 1.4vw, 18px); }
.filmstrip__row { overflow: hidden; }
.filmstrip__track { display: flex; gap: clamp(12px, 1.4vw, 18px); width: max-content; animation: stripL 70s linear infinite; }
.filmstrip__row--rev .filmstrip__track { animation: stripR 84s linear infinite; }
.filmstrip__row:hover .filmstrip__track { animation-play-state: paused; }
@keyframes stripL { to { transform: translateX(-50%); } }
@keyframes stripR { from { transform: translateX(-50%); } to { transform: translateX(0); } }
.filmstrip a { flex: 0 0 auto; height: clamp(190px, 22vw, 300px); border-radius: 10px; overflow: hidden; position: relative; }
.filmstrip img { height: 100%; width: auto; transition: transform .6s cubic-bezier(.22,1,.36,1); }
.filmstrip a:hover img { transform: scale(1.05); }

/* back to top */
.to-top {
  position: fixed; right: 22px; bottom: 22px; z-index: 90;
  width: 50px; height: 50px; border-radius: 50%;
  background: rgba(249,244,238,.9); backdrop-filter: blur(10px);
  border: 1px solid rgba(31,31,31,.14); color: #1F1F1F;
  font-size: 17px; cursor: pointer;
  opacity: 0; pointer-events: none; transform: translateY(10px);
  transition: opacity .35s, transform .35s;
}
.to-top.is-on { opacity: 1; pointer-events: auto; transform: none; }
.to-top:hover { background: #1F1F1F; color: #F9F4EE; }

/* page entrance */
@media (prefers-reduced-motion: no-preference) {
  body { animation: pageIn .6s ease both; }
  @keyframes pageIn { from { opacity: 0; } to { opacity: 1; } }
}

/* ===== blush rebrand ===== */
.frame .pill--primary, .cta-frame .pill--primary { background: var(--cream); color: var(--ink); }
.frame .pill--primary:hover, .cta-frame .pill--primary:hover { background: #F1D6D2; color: var(--ink); }
.footer__ribbon { height: 54px; background: url("../assets/lh-pattern-strip.jpg") repeat-x center / auto 100%; opacity: .45; }

/* ===== heritage pattern · tone-on-tone whisper layers ===== */
@keyframes patternDrift { from { background-position: 0 0; } to { background-position: 0 -827px; } }

/* dark CTA frames: cream pattern, barely-there, slow drift */
.cta-frame::before, .frame::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: url("../assets/lh-pattern-cream.png") repeat;
  background-size: 320px auto;
  opacity: .12;
  animation: patternDrift 90s linear infinite;
}
.cta-frame > *, .frame > * { position: relative; z-index: 1; }
.frame__media, .frame__scrim { z-index: 0; }

/* light page heroes: blush pattern in the top-right, masked to a soft bloom */
.page-hero::before, .hero::before {
  content: ""; position: absolute; top: -8%; right: -6%; width: 52%; height: 110%;
  z-index: 0; pointer-events: none;
  background: url("../assets/lh-pattern-rose.png") repeat;
  background-size: 300px auto;
  opacity: .28;
  -webkit-mask-image: radial-gradient(closest-side at 72% 36%, rgba(0,0,0,.9), transparent 88%);
  mask-image: radial-gradient(closest-side at 72% 36%, rgba(0,0,0,.9), transparent 88%);
  animation: patternDrift 120s linear infinite;
}
.page-hero .container, .hero .container { position: relative; z-index: 1; }

/* footer wordmark base: cream pattern whisper behind the blush wordmark */
.footer__word { position: relative; overflow: hidden; }
.footer__word::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: url("../assets/lh-pattern-cream.png") repeat;
  background-size: 280px auto;
  opacity: .12;
}
.footer__word > * { position: relative; z-index: 1; }

/* mobile sheet: pattern in the dark */
.sheet::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: url("../assets/lh-pattern-cream.png") repeat;
  background-size: 300px auto;
  opacity: .12;
}

/* peach CTA band (light): blush-on-peach, even quieter */
.cta { position: relative; overflow: hidden; }
.cta::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: url("../assets/lh-pattern-rose.png") repeat;
  background-size: 320px auto;
  opacity: .3;
}
.cta > * { position: relative; z-index: 1; }

@media (prefers-reduced-motion: reduce) {
  .cta-frame::before, .frame::before, .page-hero::before, .hero::before { animation: none; }
}

body[data-nav="dark"] .hero::before { display: none; }

/* ===== final polish ===== */
/* scroll progress hairline */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 2px; width: 100%;
  background: var(--orange); transform-origin: left; transform: scaleX(0);
  z-index: 200; pointer-events: none;
}

/* image settle: photos arrive at a breath of zoom and ease home */
.reveal .quartet img, .reveal.quartet img, .split__media.reveal img, .reveal .split__media img,
.explore__card.reveal img, .ig-feature-tile.reveal img, .artist-cell.reveal .artist-cell__photo img {
  transform: scale(1.06);
  transition: transform 1.4s cubic-bezier(.22,1,.36,1);
}
.is-in .quartet img, .is-in.quartet img, .split__media.is-in img, .is-in .split__media img,
.explore__card.is-in img, .ig-feature-tile.is-in img, .artist-cell.is-in .artist-cell__photo img {
  transform: scale(1);
}

/* eyebrow tracking settle */
.reveal .meta, .reveal.meta { letter-spacing: .42em; transition: letter-spacing 1.2s cubic-bezier(.22,1,.36,1), opacity .9s; }
.is-in .meta, .is-in.meta { letter-spacing: .28em; }

/* menu category rule grows in */
.menu-cat.reveal .menu-cat__rule { transform: scaleX(0); transform-origin: left; transition: transform 1.2s cubic-bezier(.22,1,.36,1) .15s; }
.menu-cat.is-in .menu-cat__rule { transform: scaleX(1); }

/* card hover refinement */
.tier:hover, .air-card:hover { box-shadow: 0 18px 40px rgba(31,31,31,.08); }

/* mobile: inline 3-col grids collapse cleanly */
@media (max-width: 720px) {
  .quartet[style*="repeat(3"], .explore__grid[style*="repeat(3"] { grid-template-columns: 1fr 1fr !important; }
  .page-hero__title { font-size: clamp(38px, 11vw, 54px); }
  .filmstrip a { height: 150px; }
  .menu-cat__thumb { width: 44px; height: 44px; }
}
@media (prefers-reduced-motion: reduce) {
  .reveal .quartet img, .split__media.reveal img, .explore__card.reveal img { transform: none; transition: none; }
}

/* ===== mobile sheet v2: grouped, complete, scrollable ===== */
#sheet { display: block; overflow-y: auto; padding: 92px 30px 48px; }
#sheet .sheet__inner { max-width: 420px; margin-inline: auto; display: grid; gap: 30px; }
#sheet .sheet__label {
  font-family: var(--sans); font-size: 10px; font-weight: 500;
  letter-spacing: .3em; text-transform: uppercase; color: var(--orange);
  border-bottom: 1px solid rgba(249,244,238,.18); padding-bottom: 10px; margin-bottom: 8px;
}
#sheet .sheet__links2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2px 20px; text-align: left; }
#sheet .sheet__links2 a {
  font-family: var(--serif); font-weight: 300; font-size: 21px; line-height: 1.2;
  color: var(--cream); padding: 9px 0;
}
#sheet .sheet__links2 a:active { font-style: italic; color: var(--orange); }
#sheet .sheet__book {
  justify-self: center; margin-top: 4px;
  padding: 15px 32px; font-size: 12px; width: auto;
}

.nav__more-link .nav__mono { height: 1.05em; vertical-align: -0.16em; margin-right: 5px; }

/* editorial image discipline: compact, framed, never towering */
.split__media--arch {
  width: min(100%, 460px); max-height: 540px; justify-self: center;
  outline: 1px solid var(--hairline); outline-offset: 10px;
}
.split__media, .split__media--tall { max-height: 520px; }
/* whenever splits STACK (<=980px), images become contained banners */
@media (max-width: 980px) {
  .split__media, .split__media--tall {
    width: 100% !important; max-width: 560px !important; margin-inline: auto;
    aspect-ratio: 16 / 10 !important; max-height: 340px;
  }
  .split__media--arch {
    width: 100% !important; max-width: 560px !important; margin-inline: auto;
    aspect-ratio: 16 / 10.5 !important; max-height: 350px;
    border-radius: 180px 180px 12px 12px;
    outline-offset: 8px; justify-self: center;
  }
  .split > div { max-width: 560px; margin-inline: auto; width: 100%; }
  .hero__arch { max-width: 380px; aspect-ratio: 4 / 4.4; margin-inline: auto; justify-self: center !important; }
  .split { gap: 30px; }
  .quartet[style*="repeat(2"] figure { aspect-ratio: 16 / 10; }
}

/* dropdown links: monogram hugs the label, arrow stays at the edge */
.nav__more-link { justify-content: flex-start !important; gap: 0 !important; }
.nav__more-link .go { margin-left: auto !important; }
