/* =========================================================
   HIDDEN KEY CORE — DESIGN SYSTEM
   Global tokens + reusable components shared by every page.
   Page-specific sections and motion live in Hidden Key Motion.
   ========================================================= */
:is(#hk-homepage,.hk-site),
:is(#hk-homepage,.hk-site) * {
  box-sizing: border-box;
}

:is(#hk-homepage,.hk-site) {
  --hk-black: #070505;
  --hk-black-soft: #0d0909;
  --hk-charcoal: #151010;
  --hk-bordeaux: #410d14;
  --hk-bordeaux-deep: #24070b;
  --hk-bordeaux-soft: #6b1620;
  --hk-ivory: #f5ecdf;
  --hk-ivory-muted: #cfc1b2;
  --hk-gold: #c99c43;
  --hk-gold-bright: #f2c66f;
  --hk-gold-pale: #ffe1a0;
  --hk-gold-dark: #77501d;
  --hk-line: rgba(220, 165, 73, .48);
  --hk-line-soft: rgba(220, 165, 73, .18);
  --hk-panel: rgba(29, 12, 14, .72);
  --hk-panel-deep: rgba(9, 6, 6, .88);
  --hk-shadow: 0 28px 75px rgba(0, 0, 0, .52);
  --hk-glow: 0 0 45px rgba(218, 157, 62, .16);
  --hk-radius-sm: 14px;
  --hk-radius-md: 22px;
  --hk-radius-lg: 30px;
  --hk-container: min(1500px, calc(100vw - 48px));
  --hk-serif: "Cormorant Garamond", "Bodoni 72", Didot, Georgia, serif;
  --hk-sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  position: relative;
  isolation: isolate;
  overflow: clip;
  min-height: 100vh;
  color: var(--hk-ivory);
  background:
    radial-gradient(circle at 11% 10%, rgba(105, 18, 29, .34), transparent 27%),
    radial-gradient(circle at 88% 22%, rgba(88, 18, 24, .24), transparent 30%),
    linear-gradient(180deg, #050303 0%, #0a0506 45%, #050303 100%);
  font-family: var(--hk-sans);
  line-height: 1.6;
}

:is(#hk-homepage,.hk-site)::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  opacity: .22;
  background-image:
    linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.012) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, black, transparent 92%);
}

:is(#hk-homepage,.hk-site)::after {
  content: "";
  position: fixed;
  inset: -30%;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(circle, rgba(226, 164, 65, .10) 0 1px, transparent 1.8px) 0 0 / 58px 58px,
    radial-gradient(circle, rgba(126, 25, 32, .12) 0 1.4px, transparent 2.2px) 20px 25px / 91px 91px;
  animation: hkAmbientDrift 38s linear infinite;
}

:is(#hk-homepage,.hk-site) img {
  display: block;
  width: 100%;
  max-width: 100%;
}

:is(#hk-homepage,.hk-site) a {
  color: inherit;
  text-decoration: none;
}

:is(#hk-homepage,.hk-site) button,
:is(#hk-homepage,.hk-site) input,
:is(#hk-homepage,.hk-site) select,
:is(#hk-homepage,.hk-site) textarea {
  font: inherit;
}

:is(#hk-homepage,.hk-site) button {
  color: inherit;
}

:is(#hk-homepage,.hk-site) .hk-container {
  width: var(--hk-container);
  margin-inline: auto;
}

:is(#hk-homepage,.hk-site) .hk-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

:is(#hk-homepage,.hk-site) .hk-scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--hk-gold-dark), var(--hk-gold-bright), #fff0c5);
  box-shadow: 0 0 20px rgba(242, 198, 111, .55);
}

/* =========================================================
   GLOBAL REUSABLE COMPONENTS
   ========================================================= */
:is(#hk-homepage,.hk-site) .hk-section {
  position: relative;
  padding: clamp(74px, 8vw, 132px) 0;
  scroll-margin-top: var(--hk-scroll-offset, 34px);
}

:is(#hk-homepage,.hk-site) .hk-section--compact {
  padding: clamp(45px, 5vw, 78px) 0;
}

:is(#hk-homepage,.hk-site) .hk-section__eyebrow,
:is(#hk-homepage,.hk-site) .hk-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  color: var(--hk-gold-bright);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .28em;
  line-height: 1.4;
  text-transform: uppercase;
}

:is(#hk-homepage,.hk-site) .hk-eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: linear-gradient(90deg, transparent, currentColor);
}

:is(#hk-homepage,.hk-site) .hk-section__title,
:is(#hk-homepage,.hk-site) .hk-title {
  margin: 0;
  font-family: var(--hk-serif);
  font-size: clamp(46px, 6vw, 92px);
  font-weight: 400;
  letter-spacing: -.028em;
  line-height: .96;
  text-wrap: balance;
}

:is(#hk-homepage,.hk-site) .hk-title--medium {
  font-size: clamp(38px, 4.6vw, 66px);
}

:is(#hk-homepage,.hk-site) .hk-title--small {
  font-size: clamp(30px, 3.4vw, 48px);
}

:is(#hk-homepage,.hk-site) .hk-accent {
  color: transparent;
  font-style: italic;
  background: linear-gradient(135deg, #fff3ce 0%, var(--hk-gold-bright) 42%, #9f661f 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

:is(#hk-homepage,.hk-site) .hk-copy {
  max-width: 680px;
  margin: 22px 0 0;
  color: var(--hk-ivory-muted);
  font-size: clamp(15px, 1.45vw, 18px);
}

:is(#hk-homepage,.hk-site) .hk-copy p {
  margin: 0 0 16px;
}

:is(#hk-homepage,.hk-site) .hk-ornament {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 145px;
  margin: 24px 0;
  color: var(--hk-gold-bright);
}

:is(#hk-homepage,.hk-site) .hk-ornament::before,
:is(#hk-homepage,.hk-site) .hk-ornament::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, currentColor);
}

:is(#hk-homepage,.hk-site) .hk-ornament::after {
  background: linear-gradient(90deg, currentColor, transparent);
}

:is(#hk-homepage,.hk-site) .hk-ornament span {
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 9px;
  animation: hkOrnamentPulse 3.6s ease-in-out infinite;
}

:is(#hk-homepage,.hk-site) .hk-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--hk-line);
  border-radius: var(--hk-radius-lg);
  background:
    linear-gradient(135deg, rgba(88, 21, 28, .18), transparent 42%),
    linear-gradient(180deg, rgba(25, 14, 14, .9), rgba(12, 7, 8, .82));
  box-shadow: var(--hk-shadow), inset 0 1px 0 rgba(255,255,255,.035);
}

:is(#hk-homepage,.hk-site) .hk-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 10%, rgba(255,255,255,.05) 26%, transparent 42%);
  transform: translateX(-120%);
  transition: transform 1.1s cubic-bezier(.2,.7,.2,1);
}

:is(#hk-homepage,.hk-site) .hk-panel:hover::before,
:is(#hk-homepage,.hk-site) .hk-panel:focus-within::before {
  transform: translateX(120%);
}

:is(#hk-homepage,.hk-site) .hk-card {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  border: 1px solid var(--hk-line);
  border-radius: var(--hk-radius-md);
  background:
    radial-gradient(circle at 90% 0%, rgba(134, 32, 42, .20), transparent 38%),
    linear-gradient(180deg, rgba(43, 16, 20, .88), rgba(12, 8, 8, .95));
  box-shadow: 0 20px 55px rgba(0,0,0,.35), inset 0 1px 0 rgba(255,255,255,.035);
  transform-style: preserve-3d;
  transition: border-color .4s ease, box-shadow .4s ease, transform .4s ease;
}

:is(#hk-homepage,.hk-site) .hk-card:hover,
:is(#hk-homepage,.hk-site) .hk-card:focus-within {
  border-color: rgba(242, 198, 111, .78);
  box-shadow: 0 30px 75px rgba(0,0,0,.48), 0 0 45px rgba(214, 151, 52, .11);
}

:is(#hk-homepage,.hk-site) .hk-card__content {
  position: relative;
  z-index: 2;
  padding: 26px;
  transform: translateZ(22px);
}

:is(#hk-homepage,.hk-site) .hk-card__number {
  position: absolute;
  top: 14px;
  left: 16px;
  z-index: 4;
  color: var(--hk-gold-bright);
  font-family: var(--hk-serif);
  font-size: 18px;
  letter-spacing: .08em;
  text-shadow: 0 2px 18px #000;
}

:is(#hk-homepage,.hk-site) .hk-card__title {
  margin: 0;
  font-family: var(--hk-serif);
  font-size: clamp(27px, 2.4vw, 38px);
  font-weight: 400;
  line-height: 1.02;
}

:is(#hk-homepage,.hk-site) .hk-card__text {
  margin: 14px 0 0;
  color: var(--hk-ivory-muted);
  font-size: 14px;
  line-height: 1.65;
}

:is(#hk-homepage,.hk-site) .hk-media-card {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  border: 1px solid var(--hk-line);
  border-radius: var(--hk-radius-md);
  background: #130b0c;
  box-shadow: 0 18px 50px rgba(0,0,0,.4);
  isolation: isolate;
  transform-style: preserve-3d;
}

:is(#hk-homepage,.hk-site) .hk-media-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(to top, rgba(5,3,3,.96), rgba(5,3,3,.08) 58%, rgba(5,3,3,.15));
}

:is(#hk-homepage,.hk-site) .hk-media-card__image,
:is(#hk-homepage,.hk-site) .hk-image-cover {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  filter: saturate(.86) contrast(1.06) brightness(.83);
  transform: scale(1.04);
  transition: opacity .45s ease, transform 1.25s cubic-bezier(.2,.7,.2,1), filter .7s ease;
}

:is(#hk-homepage,.hk-site) .hk-media-card__image.is-loaded,
:is(#hk-homepage,.hk-site) .hk-image-cover.is-loaded {
  opacity: 1;
}

:is(#hk-homepage,.hk-site) .hk-media-card:hover .hk-media-card__image {
  filter: saturate(1) contrast(1.08) brightness(.94);
  transform: scale(1.105);
}

:is(#hk-homepage,.hk-site) .hk-media-card__content {
  position: absolute;
  inset: auto 0 0;
  z-index: 3;
  padding: 24px;
  transform: translateZ(25px);
}

:is(#hk-homepage,.hk-site) .hk-media-card__kicker {
  display: block;
  margin-bottom: 7px;
  color: var(--hk-gold-bright);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
}

:is(#hk-homepage,.hk-site) .hk-media-card__title {
  margin: 0;
  font-family: var(--hk-serif);
  font-size: clamp(27px, 2.2vw, 37px);
  font-weight: 400;
  line-height: 1.05;
}

:is(#hk-homepage,.hk-site) .hk-media-card__line {
  display: block;
  width: 36px;
  height: 1px;
  margin-top: 16px;
  background: var(--hk-gold-bright);
  transition: width .4s ease;
}

:is(#hk-homepage,.hk-site) .hk-media-card:hover .hk-media-card__line {
  width: 74px;
}

:is(#hk-homepage,.hk-site) .hk-button {
  --hk-button-x: 50%;
  --hk-button-y: 50%;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  min-height: 54px;
  padding: 14px 28px;
  overflow: hidden;
  border: 1px solid rgba(245, 194, 99, .68);
  border-radius: 999px;
  cursor: pointer;
  color: #120b05;
  background:
    radial-gradient(circle at var(--hk-button-x) var(--hk-button-y), rgba(255,255,255,.78), transparent 18%),
    linear-gradient(110deg, #9e6727 0%, #f1c66d 42%, #b97d30 72%, #f3d28e 100%);
  box-shadow: 0 12px 30px rgba(0,0,0,.34), inset 0 1px 0 rgba(255,255,255,.5), 0 0 25px rgba(227, 167, 69, .13);
  font-family: var(--hk-serif);
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  transition: transform .32s cubic-bezier(.2,.7,.2,1), box-shadow .35s ease, filter .35s ease;
}

:is(#hk-homepage,.hk-site) .hk-button::after {
  content: "";
  position: absolute;
  inset: -20%;
  background: linear-gradient(115deg, transparent 20%, rgba(255,255,255,.62) 45%, transparent 70%);
  transform: translateX(-130%) rotate(8deg);
  animation: hkButtonShimmer 4.8s ease-in-out infinite;
}

:is(#hk-homepage,.hk-site) .hk-button > * {
  position: relative;
  z-index: 2;
}

:is(#hk-homepage,.hk-site) .hk-button:hover,
:is(#hk-homepage,.hk-site) .hk-button:focus-visible {
  filter: brightness(1.08);
  box-shadow: 0 18px 42px rgba(0,0,0,.42), 0 0 38px rgba(237, 187, 91, .26);
}

:is(#hk-homepage,.hk-site) .hk-button--outline {
  color: var(--hk-gold-pale);
  background: rgba(20, 10, 11, .66);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.03), 0 12px 30px rgba(0,0,0,.28);
}

:is(#hk-homepage,.hk-site) .hk-button--small {
  min-height: 46px;
  padding: 11px 22px;
  font-size: 16px;
}

:is(#hk-homepage,.hk-site) .hk-icon {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  border: 1px solid var(--hk-line);
  border-radius: 50%;
  color: var(--hk-gold-bright);
  background: rgba(5,3,3,.46);
  box-shadow: inset 0 0 18px rgba(223, 160, 63, .08);
}

:is(#hk-homepage,.hk-site) .hk-icon svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

:is(#hk-homepage,.hk-site) .hk-grid {
  display: grid;
  gap: 20px;
}

:is(#hk-homepage,.hk-site) .hk-grid--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

:is(#hk-homepage,.hk-site) .hk-grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

:is(#hk-homepage,.hk-site) .hk-grid--4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

:is(#hk-homepage,.hk-site) .hk-section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 38px;
}

:is(#hk-homepage,.hk-site) .hk-section-heading--center {
  display: block;
  max-width: 930px;
  margin: 0 auto 42px;
  text-align: center;
}

:is(#hk-homepage,.hk-site) .hk-section-heading--center .hk-ornament {
  margin-inline: auto;
}

:is(#hk-homepage,.hk-site) .hk-section-heading__copy {
  max-width: 520px;
  margin: 0;
  color: var(--hk-ivory-muted);
}

/* =========================================================
   REVEAL + SECTION FOCUS ANIMATION SYSTEM
   ========================================================= */
:is(#hk-homepage,.hk-site) .hk-reveal {
  opacity: 0;
  transform: translate3d(0, 42px, 0) scale(.985);
  filter: blur(5px);
  transition:
    opacity .9s cubic-bezier(.2,.7,.2,1),
    transform .9s cubic-bezier(.2,.7,.2,1),
    filter .9s ease;
  transition-delay: var(--hk-delay, 0ms);
}

:is(#hk-homepage,.hk-site) .hk-reveal[data-hk-reveal="left"] {
  transform: translate3d(-55px, 0, 0) scale(.985);
}

:is(#hk-homepage,.hk-site) .hk-reveal[data-hk-reveal="right"] {
  transform: translate3d(55px, 0, 0) scale(.985);
}

:is(#hk-homepage,.hk-site) .hk-reveal[data-hk-reveal="scale"] {
  transform: scale(.92);
}

:is(#hk-homepage,.hk-site) .hk-reveal.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0,0,0) scale(1);
}

:is(#hk-homepage,.hk-site) .hk-section.is-current .hk-ambient-float {
  animation-play-state: running;
}

:is(#hk-homepage,.hk-site) .hk-ambient-float {
  animation: hkAmbientFloat 6.5s ease-in-out infinite paused;
  animation-delay: var(--hk-float-delay, 0s);
}

:is(#hk-homepage,.hk-site) .hk-tilt {
  will-change: transform;
}

/* =========================================================
   REUSABLE FORM FIELDS
   ========================================================= */
:is(#hk-homepage,.hk-site) .hk-field {
  position: relative;
}

:is(#hk-homepage,.hk-site) .hk-field svg {
  position: absolute;
  left: 15px;
  top: 50%;
  z-index: 2;
  width: 18px;
  height: 18px;
  transform: translateY(-50%);
  stroke: var(--hk-ivory-muted);
  fill: none;
  stroke-width: 1.65;
  pointer-events: none;
}

:is(#hk-homepage,.hk-site) .hk-field input,
:is(#hk-homepage,.hk-site) .hk-field select {
  width: 100%;
  height: 54px;
  padding: 0 44px;
  border: 1px solid rgba(210, 151, 57, .42);
  border-radius: 9px;
  outline: 0;
  color: #f3e8dc;
  background: rgba(8, 5, 5, .42);
  appearance: none;
  transition: border-color .25s ease, box-shadow .25s ease, background .25s ease;
}

:is(#hk-homepage,.hk-site) .hk-field input::placeholder {
  color: #aa9e94;
}

:is(#hk-homepage,.hk-site) .hk-field input:focus,
:is(#hk-homepage,.hk-site) .hk-field select:focus {
  border-color: var(--hk-gold-bright);
  background: rgba(10, 6, 6, .72);
  box-shadow: 0 0 0 3px rgba(226, 167, 68, .11), 0 0 25px rgba(226, 167, 68, .08);
}

:is(#hk-homepage,.hk-site) .hk-field select option {
  color: #f3e8dc;
  background: #15090b;
}

:is(#hk-homepage,.hk-site) .hk-field::after {
  content: "⌄";
  position: absolute;
  right: 16px;
  top: 50%;
  color: var(--hk-ivory-muted);
  transform: translateY(-58%);
  pointer-events: none;
}

:is(#hk-homepage,.hk-site) .hk-field--input::after {
  display: none;
}

:is(#hk-homepage,.hk-site) .hk-form-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 8px;
  color: #a99d94;
  font-size: 11px;
  text-align: center;
}

:is(#hk-homepage,.hk-site) .hk-form-note svg {
  width: 14px;
  height: 14px;
  stroke: var(--hk-gold-bright);
  fill: none;
}

/* =========================================================
   REUSABLE SLIDER
   ========================================================= */
:is(#hk-homepage,.hk-site) .hk-slider {
  position: relative;
}

:is(#hk-homepage,.hk-site) .hk-slider__viewport {
  overflow: hidden;
}

:is(#hk-homepage,.hk-site) .hk-slider__track {
  display: flex;
  gap: 18px;
  transition: transform .75s cubic-bezier(.2,.8,.2,1);
  will-change: transform;
}

:is(#hk-homepage,.hk-site) .hk-slider__item {
  flex: 0 0 calc((100% - 54px) / 4);
}

:is(#hk-homepage,.hk-site) .hk-slider--amenities .hk-slider__item {
  flex-basis: calc((100% - 75px) / 6);
}

:is(#hk-homepage,.hk-site) .hk-slider__button {
  position: absolute;
  top: 50%;
  z-index: 10;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(233, 181, 82, .7);
  border-radius: 50%;
  cursor: pointer;
  color: var(--hk-gold-pale);
  background: rgba(18,9,10,.78);
  box-shadow: 0 10px 30px rgba(0,0,0,.4), inset 0 0 18px rgba(228,168,69,.08);
  backdrop-filter: blur(12px);
  transform: translateY(-50%);
  transition: transform .3s ease, background .3s ease, box-shadow .3s ease;
}

:is(#hk-homepage,.hk-site) .hk-slider__button:hover {
  background: rgba(83,20,27,.88);
  box-shadow: 0 0 28px rgba(228,168,69,.2);
  transform: translateY(-50%) scale(1.08);
}

:is(#hk-homepage,.hk-site) .hk-slider__button--prev {
  left: -24px;
}

:is(#hk-homepage,.hk-site) .hk-slider__button--next {
  right: -24px;
}

:is(#hk-homepage,.hk-site) .hk-slider__button svg {
  width: 21px;
  height: 21px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
}

:is(#hk-homepage,.hk-site) .hk-slider__dots {
  display: flex;
  justify-content: center;
  gap: 9px;
  margin-top: 24px;
}

:is(#hk-homepage,.hk-site) .hk-slider__dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 1px solid rgba(241, 196, 107, .38);
  border-radius: 50%;
  cursor: pointer;
  background: transparent;
  transition: transform .25s ease, background .25s ease;
}

:is(#hk-homepage,.hk-site) .hk-slider__dot.is-active {
  background: var(--hk-gold-bright);
  box-shadow: 0 0 12px rgba(242,198,111,.5);
  transform: scale(1.2);
}

/* =========================================================
   REUSABLE FAQ
   ========================================================= */
:is(#hk-homepage,.hk-site) .hk-faq-list {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

:is(#hk-homepage,.hk-site) .hk-faq-item {
  border: 1px solid rgba(212, 155, 63, .34);
  border-radius: 10px;
  background: rgba(6,4,4,.3);
  transition: border-color .3s ease, background .3s ease;
}

:is(#hk-homepage,.hk-site) .hk-faq-item[open] {
  border-color: rgba(240, 190, 94, .7);
  background: rgba(37,10,14,.55);
}

:is(#hk-homepage,.hk-site) .hk-faq-item summary {
  position: relative;
  padding: 15px 48px 15px 18px;
  cursor: pointer;
  list-style: none;
  font-family: var(--hk-serif);
  font-size: 18px;
}

:is(#hk-homepage,.hk-site) .hk-faq-item summary::-webkit-details-marker {
  display: none;
}

:is(#hk-homepage,.hk-site) .hk-faq-item summary::after {
  content: "+";
  position: absolute;
  right: 18px;
  top: 50%;
  color: var(--hk-gold-bright);
  font-size: 22px;
  transform: translateY(-50%);
  transition: transform .3s ease;
}

:is(#hk-homepage,.hk-site) .hk-faq-item[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
}

:is(#hk-homepage,.hk-site) .hk-faq-item p {
  margin: 0;
  padding: 0 18px 18px;
  color: var(--hk-ivory-muted);
  font-size: 14px;
}

/* =========================================================
   TOAST
   ========================================================= */
:is(#hk-homepage,.hk-site) .hk-toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 390px;
  padding: 16px 18px;
  border: 1px solid var(--hk-line);
  border-radius: 14px;
  color: var(--hk-ivory);
  background: rgba(18,9,10,.94);
  box-shadow: 0 18px 55px rgba(0,0,0,.5), 0 0 34px rgba(223,162,65,.1);
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px);
  transition: opacity .3s ease, transform .3s ease;
  backdrop-filter: blur(14px);
}

:is(#hk-homepage,.hk-site) .hk-toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================================
   SMOOTH SCROLL (Lenis) BASE
   ========================================================= */
html.lenis,
html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }

/* =========================================================
   SHARED KEYFRAMES
   ========================================================= */
@keyframes hkAmbientDrift {
  to { transform: translate3d(90px, 70px, 0) rotate(.001deg); }
}

@keyframes hkOrnamentPulse {
  0%, 100% { box-shadow: 0 0 0 rgba(242,198,111,0); transform: scale(1); }
  50% { box-shadow: 0 0 16px rgba(242,198,111,.35); transform: scale(1.08); }
}

@keyframes hkButtonShimmer {
  0%, 72%, 100% { transform: translateX(-130%) rotate(8deg); }
  88% { transform: translateX(130%) rotate(8deg); }
}

@keyframes hkAmbientFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* =========================================================
   RESPONSIVE FOUNDATIONS
   ========================================================= */
@media (max-width: 1280px) {
  :is(#hk-homepage,.hk-site) {
    --hk-container: min(1180px, calc(100vw - 36px));
  }

  :is(#hk-homepage,.hk-site) .hk-slider--amenities .hk-slider__item {
    flex-basis: calc((100% - 45px) / 4);
  }
}

@media (max-width: 1024px) {
  :is(#hk-homepage,.hk-site) .hk-grid--4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  :is(#hk-homepage,.hk-site) .hk-slider__item {
    flex-basis: calc((100% - 18px) / 2);
  }
}

@media (max-width: 720px) {
  :is(#hk-homepage,.hk-site) {
    --hk-container: calc(100vw - 24px);
    --hk-radius-lg: 22px;
    --hk-radius-md: 18px;
  }

  :is(#hk-homepage,.hk-site) .hk-section {
    padding: 68px 0;
  }

  :is(#hk-homepage,.hk-site) .hk-grid--2,
  :is(#hk-homepage,.hk-site) .hk-grid--3,
  :is(#hk-homepage,.hk-site) .hk-grid--4 {
    grid-template-columns: 1fr;
  }

  :is(#hk-homepage,.hk-site) .hk-section-heading {
    display: block;
  }

  :is(#hk-homepage,.hk-site) .hk-section-heading__copy {
    margin-top: 18px;
  }

  :is(#hk-homepage,.hk-site) .hk-slider__item,
  :is(#hk-homepage,.hk-site) .hk-slider--amenities .hk-slider__item {
    flex-basis: 100%;
  }

  :is(#hk-homepage,.hk-site) .hk-slider__button {
    width: 44px;
    height: 44px;
  }

  :is(#hk-homepage,.hk-site) .hk-slider__button--prev {
    left: -5px;
  }

  :is(#hk-homepage,.hk-site) .hk-slider__button--next {
    right: -5px;
  }
}

/* =========================================================
   REDUCED MOTION
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
  :is(#hk-homepage,.hk-site) *,
  :is(#hk-homepage,.hk-site) *::before,
  :is(#hk-homepage,.hk-site) *::after {
    scroll-behavior: auto !important;
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }

  :is(#hk-homepage,.hk-site) .hk-reveal {
    opacity: 1;
    filter: none;
    transform: none;
  }
}
