/* fl718-denver.css — Denver, Colorado desktop styles
   Version: 1.0.0
   Last updated: 2026-05-18
   Body class: fl718-location-denver
   All rules scoped to body.fl718-location-denver */

/* ------------------------------------------------------------
   BASE RESET & BODY
   ------------------------------------------------------------ */
body.fl718-location-denver {
  margin: 0;
  padding: 0;
  overflow-x: clip;
  background-color: #eaebe9;
  color: #1a1a1a;
  -webkit-font-smoothing: antialiased;
}

:where(body.fl718-location-denver) *,
:where(body.fl718-location-denver) *::before,
:where(body.fl718-location-denver) *::after {
  box-sizing: border-box;
}

body.fl718-location-denver img {
  max-width: 100%;
  display: block;
}

body.fl718-location-denver .fl718-dv-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ------------------------------------------------------------
   MENU CURTAIN
   ------------------------------------------------------------ */
body.fl718-location-denver #fl718-danlann-thread {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, rgba(180,160,120,0.6) 30%, rgba(180,160,120,0.85) 50%, rgba(180,160,120,0.6) 70%, transparent 100%);
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: height 0.2s ease;
}

body.fl718-location-denver #fl718-danlann-thread.fl718-danlann-thread--breathing {
  animation: fl718DvThreadBreathe 3.8s ease-in-out infinite;
}

@keyframes fl718DvThreadBreathe {
  0%, 100% { opacity: 0.55; }
  50%       { opacity: 0.95; }
}

body.fl718-location-denver #fl718-danlann-hover-zone {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 40px;
  z-index: 9998;
  display: none;
  cursor: pointer;
}

body.fl718-location-denver #fl718-menu-recall {
  position: fixed;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10000;
  opacity: 0;
  pointer-events: none;
  cursor: pointer;
  font-size: 0.7rem;
  color: rgba(180,160,120,0.75);
  user-select: none;
  line-height: 1;
}

body.fl718-location-denver #fl718-menu-recall:focus-visible {
  outline: 2px solid rgba(180,160,120,0.6);
  outline-offset: 4px;
  border-radius: 2px;
}

/* ------------------------------------------------------------
   HERO
   ------------------------------------------------------------ */
body.fl718-location-denver .fl718-dv-hero {
  position: relative;
  width: 100%;
  height: calc(100vh + 56px);
  margin-top: -56px;
  overflow: clip;
  background-color: #e2e5e3;
}

body.fl718-location-denver .fl718-dv-hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 55%;
  display: block;
  opacity: 0;
}

body.fl718-location-denver .fl718-dv-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

body.fl718-location-denver .fl718-dv-hero__gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 80% 38% at 50% 0%,
    rgba(8, 7, 5, 0.52) 0%,
    rgba(8, 7, 5, 0.24) 50%,
    transparent 78%
  );
  opacity: 0;
}

body.fl718-location-denver .fl718-dv-hero__text {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  max-width: clamp(320px, 52vw, 960px);
  padding: clamp(3.0rem, 6.5vh, 5.5rem) 0 0 0;
  text-align: center;
  white-space: nowrap;
}

body.fl718-location-denver .fl718-dv-hero__title {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-weight: 300;
  font-style: normal;
  font-size: clamp(3.4rem, 8.5vw, 11rem);
  letter-spacing: 0.30em;
  line-height: 1.0;
  text-transform: uppercase;
  color: rgba(244, 241, 234, 0.92);
  display: block;
  margin: 0 0 0.7em 0;
  opacity: 0;
}

body.fl718-location-denver .fl718-dv-hero__subtitle {
  font-family: 'DM Sans', -apple-system, sans-serif;
  font-weight: 300;
  font-size: clamp(0.875rem, 0.82vw, 0.9rem);
  letter-spacing: 0.28em;
  line-height: 1.5;
  font-style: italic;
  text-transform: uppercase;
  color: rgba(244, 241, 234, 0.85);
  display: block;
  margin: 0;
  text-align: center;
  opacity: 0;
}

/* ------------------------------------------------------------
   GALLERY GRID — true 2-col CSS Grid
   ------------------------------------------------------------ */
body.fl718-location-denver .fl718-dv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: clamp(1.5rem, 2.5vw, 2.5rem);
  row-gap: clamp(4rem, 8vh, 7rem);
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(2rem, 4vw, 4rem);
  padding-top: 14vh;
  padding-bottom: 14vh;
  align-items: start;
  overflow: clip;
}

body.fl718-location-denver .fl718-dv-item--full {
  grid-column: 1 / -1;
}

body.fl718-location-denver .fl718-dv-item {
  overflow: clip;
  opacity: 0;
  cursor: pointer;
  position: relative;
  margin: 0;
}

body.fl718-location-denver .fl718-dv-item img {
  width: 100%;
  height: auto;
  display: block;
}

body.fl718-location-denver .fl718-dv-item--full img {
  max-width: 100%;
}

/* ------------------------------------------------------------
   HOVER — "The Wall"
   ------------------------------------------------------------ */
body.fl718-location-denver .fl718-dv-rule {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
}

body.fl718-location-denver .fl718-dv-rule-edge {
  position: absolute;
  background: rgba(226, 229, 227, 0.78);
}

body.fl718-location-denver .fl718-dv-rule-edge--top {
  top: 14px;
  left: 14px;
  right: 14px;
  height: 1px;
  transform-origin: left center;
  transform: scaleX(0);
}

body.fl718-location-denver .fl718-dv-rule-edge--bottom {
  bottom: 14px;
  left: 14px;
  right: 14px;
  height: 1px;
  transform-origin: right center;
  transform: scaleX(0);
}

body.fl718-location-denver .fl718-dv-rule-edge--left {
  top: 14px;
  bottom: 14px;
  left: 14px;
  width: 1px;
  transform-origin: center top;
  transform: scaleY(0);
}

body.fl718-location-denver .fl718-dv-rule-edge--right {
  top: 14px;
  bottom: 14px;
  right: 14px;
  width: 1px;
  transform-origin: center bottom;
  transform: scaleY(0);
}

/* ------------------------------------------------------------
   LIGHTBOX — "The Frame"
   ------------------------------------------------------------ */
body.fl718-location-denver .fl718-dv-lb-dark {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(8, 8, 8, 0.97);
  display: none;
  opacity: 0;
}

body.fl718-location-denver .fl718-dv-lb-stage {
  position: fixed;
  inset: 0;
  z-index: 9100;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
}

body.fl718-location-denver .fl718-dv-lb-stage--active {
  pointer-events: auto;
}

body.fl718-location-denver .fl718-dv-lb-image-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: calc(100vw - 120px);
  max-height: calc(100dvh - 120px);
}

body.fl718-location-denver .fl718-dv-lb-image {
  max-width: 100%;
  max-height: calc(100dvh - 120px);
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

body.fl718-location-denver .fl718-dv-lb-backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  cursor: default;
}

body.fl718-location-denver .fl718-dv-lb-ui {
  position: fixed;
  inset: 0;
  z-index: 9200;
  pointer-events: none;
  opacity: 0;
}

body.fl718-location-denver .fl718-dv-lb-ui--active {
  pointer-events: auto;
}

body.fl718-location-denver .fl718-dv-lb-close-btn {
  position: absolute;
  top: clamp(1rem, 2vh, 1.6rem);
  right: clamp(1rem, 2vw, 1.6rem);
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: rgba(232, 230, 225, 0.65);
}

body.fl718-location-denver .fl718-dv-lb-close-btn:hover {
  color: rgba(232, 230, 225, 1);
}

body.fl718-location-denver .fl718-dv-lb-close-btn svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 1.2;
  stroke-linecap: round;
  fill: none;
}

body.fl718-location-denver .fl718-dv-lb-counter {
  position: absolute;
  bottom: clamp(1.2rem, 2.5vh, 2rem);
  left: 50%;
  transform: translateX(-50%);
  font-family: 'DM Sans', -apple-system, sans-serif;
  font-weight: 300;
  font-size: 0.82rem;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: rgba(232, 230, 225, 0.40);
  white-space: nowrap;
  pointer-events: none;
}

body.fl718-location-denver .fl718-dv-lb-badge {
  position: absolute;
  bottom: clamp(2.6rem, 4.5vh, 3.8rem);
  left: 50%;
  transform: translateX(-50%);
  font-family: 'DM Sans', -apple-system, sans-serif;
  font-size: 0.65rem;
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(232, 230, 225, 0.30);
  pointer-events: none;
  white-space: nowrap;
}

body.fl718-location-denver .fl718-dv-lb-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: rgba(232, 230, 225, 0.45);
  transition: color 0.2s;
}

body.fl718-location-denver .fl718-dv-lb-nav:hover {
  color: rgba(232, 230, 225, 0.85);
}

body.fl718-location-denver .fl718-dv-lb-prev { left: clamp(0.8rem, 2vw, 1.6rem); }
body.fl718-location-denver .fl718-dv-lb-next { right: clamp(0.8rem, 2vw, 1.6rem); }

body.fl718-location-denver .fl718-dv-lb-nav svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  stroke-width: 1.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

body.fl718-location-denver .fl718-dv-lb-close-btn:focus-visible,
body.fl718-location-denver .fl718-dv-lb-nav:focus-visible {
  outline: 2px solid rgba(232, 230, 225, 0.45);
  outline-offset: 3px;
}

/* Lightbox frame lines */
body.fl718-location-denver .fl718-dv-lb-frame-overlay {
  position: fixed;
  inset: 0;
  z-index: 9150;
  pointer-events: none;
}

body.fl718-location-denver .fl718-dv-lb-frame-edge {
  position: absolute;
  background: rgba(226, 229, 227, 0.28);
}

body.fl718-location-denver .fl718-dv-lb-frame-edge--top {
  top: 14px; left: 14px; right: 14px;
  height: 1px;
  transform-origin: left center;
  transform: scaleX(0);
}

body.fl718-location-denver .fl718-dv-lb-frame-edge--bottom {
  bottom: 14px; left: 14px; right: 14px;
  height: 1px;
  transform-origin: right center;
  transform: scaleX(0);
}

body.fl718-location-denver .fl718-dv-lb-frame-edge--left {
  top: 14px; bottom: 14px; left: 14px;
  width: 1px;
  transform-origin: center top;
  transform: scaleY(0);
}

body.fl718-location-denver .fl718-dv-lb-frame-edge--right {
  top: 14px; bottom: 14px; right: 14px;
  width: 1px;
  transform-origin: center bottom;
  transform: scaleY(0);
}

/* ------------------------------------------------------------
   AFTER-CONTENT
   ------------------------------------------------------------ */
body.fl718-location-denver .fl718-dv-after {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 clamp(2.5rem, 5vw, 5rem);
  padding-bottom: 10vh;
}

body.fl718-location-denver .fl718-dv-after__rule {
  display: block;
  height: 1px;
  background: rgba(26, 26, 26, 0.15);
  margin-bottom: 2.5rem;
  transform-origin: left center;
}

body.fl718-location-denver .fl718-dv-after__eyebrow {
  display: block;
  font-family: 'DM Sans', -apple-system, sans-serif;
  font-weight: 300;
  font-size: 0.68rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(26, 26, 26, 0.4);
  margin-bottom: 0.9rem;
}

body.fl718-location-denver .fl718-dv-after__eyebrow--second {
  margin-top: 1.8rem;
}

body.fl718-location-denver .fl718-dv-after__terms {
  list-style: none;
  margin: 0 0 0.2rem 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.1rem 0;
  align-items: center;
}

body.fl718-location-denver .fl718-dv-after__term {
  display: flex;
  align-items: center;
}

body.fl718-location-denver .fl718-dv-after__link {
  font-family: 'DM Sans', -apple-system, sans-serif;
  font-weight: 300;
  font-size: clamp(0.88rem, 1.0vw, 1.0rem);
  letter-spacing: 0.04em;
  color: rgba(26, 26, 26, 0.60);
  text-decoration: none;
  padding: 0.15rem 0;
  transition: color 0.2s;
}

body.fl718-location-denver .fl718-dv-after__link:hover {
  color: rgba(26, 26, 26, 0.95);
}

body.fl718-location-denver .fl718-dv-after__sep {
  font-family: 'DM Sans', -apple-system, sans-serif;
  font-weight: 300;
  color: rgba(26, 26, 26, 0.2);
  padding: 0 0.55rem;
  font-size: 0.9rem;
}

body.fl718-location-denver .fl718-dv-after__break {
  width: 100%;
  height: 0.6rem;
}

/* ------------------------------------------------------------
   MOBILE — single-column stack
   ------------------------------------------------------------ */
@media (max-width: 768px) {
  body.fl718-location-denver .fl718-dv-grid {
    grid-template-columns: 1fr;
    column-gap: 0;
    row-gap: clamp(3rem, 7vh, 5rem);
    padding: 0 clamp(1.2rem, 4vw, 2rem);
    padding-top: 10vh;
    padding-bottom: 10vh;
  }

  body.fl718-location-denver .fl718-dv-item--full {
    grid-column: 1;
  }

  body.fl718-location-denver .fl718-dv-hero__title {
    font-size: clamp(2.0rem, 9vw, 4rem);
    letter-spacing: 0.20em;
  }

  body.fl718-location-denver .fl718-dv-lb-image-wrap {
    max-width: calc(100vw - 20px);
    max-height: calc(100dvh - 80px);
  }

  body.fl718-location-denver .fl718-dv-lb-image {
    max-height: calc(100dvh - 80px);
  }

  body.fl718-location-denver .fl718-dv-after {
    padding: 0 clamp(1.2rem, 4vw, 2rem);
    padding-bottom: 8vh;
  }
}

@media (max-width: 480px) {
  body.fl718-location-denver .fl718-dv-hero__text {
    max-width: 90vw;
    padding-top: clamp(2rem, 5vh, 3.5rem);
    white-space: normal;
  }

  body.fl718-location-denver .fl718-dv-lb-prev { left: 0.6rem; }
  body.fl718-location-denver .fl718-dv-lb-next { right: 0.6rem; }
}

/* prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  body.fl718-location-denver .fl718-dv-hero__image,
  body.fl718-location-denver .fl718-dv-hero__gradient,
  body.fl718-location-denver .fl718-dv-hero__title,
  body.fl718-location-denver .fl718-dv-hero__subtitle,
  body.fl718-location-denver .fl718-dv-item {
    opacity: 1 !important;
    transform: none !important;
  }
  body.fl718-location-denver .fl718-dv-rule-edge {
    transform: none !important;
    opacity: 0 !important;
  }
}
