/* fl718-santa-fe.css — Santa Fe, New Mexico desktop styles
   Version: 1.0.0
   Last updated: 2026-05-18
   Body class: fl718-location-santa-fe
   All rules scoped to body.fl718-location-santa-fe */

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

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

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

/* ------------------------------------------------------------
   VISUALLY HIDDEN
   ------------------------------------------------------------ */
body.fl718-location-santa-fe .fl718-sf-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;
}

/* ============================================================
   HERO SECTION
   calc(100vh + 56px) with margin-top:-56px — prevents gap from fixed nav.
   ============================================================ */

body.fl718-location-santa-fe .fl718-sf-hero {
  position: relative;
  width: 100%;
  height: calc(100vh + 56px);
  margin-top: -56px;
  overflow: clip;
  background-color: #f0e0ce;
}

body.fl718-location-santa-fe .fl718-sf-hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 65%;
  display: block;
}

/* ============================================================
   IRIS VEIL — "The Eye Opens"
   mix-blend-mode: destination-out punch through dark veil.
   ============================================================ */

body.fl718-location-santa-fe .fl718-sf-hero__veil {
  position: absolute;
  inset: 0;
  z-index: 2;
  isolation: isolate;
  background: rgba(10, 6, 4, 0.97);
  pointer-events: none;
}

body.fl718-location-santa-fe .fl718-sf-hero__veil-hole {
  position: absolute;
  border-radius: 50%;
  background: black;
  mix-blend-mode: destination-out;
  top: 24%;
  left: 76%;
  width: 220vmax;
  height: 220vmax;
}

/* ============================================================
   HERO OVERLAY — Title + Subtitle
   ============================================================ */

body.fl718-location-santa-fe .fl718-sf-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
}

body.fl718-location-santa-fe .fl718-sf-hero__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(18, 8, 3, 0.52) 0%,
    rgba(18, 8, 3, 0.20) 40%,
    transparent 62%
  );
  opacity: 0;
}

body.fl718-location-santa-fe .fl718-sf-hero__text {
  position: absolute;
  top: 0;
  left: 0;
  max-width: clamp(280px, 34vw, 560px);
  padding: clamp(1.5rem, 2.8vw, 3.0rem) 0 0 clamp(1.5rem, 3.5vw, 3.5rem);
  text-align: left;
}

body.fl718-location-santa-fe .fl718-sf-hero__title {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 300;
  font-style: normal;
  font-variation-settings: 'opsz' 9, 'WONK' 1, 'wght' 300;
  font-size: clamp(2.0rem, 4.8vw, 5.8rem);
  letter-spacing: 0.015em;
  line-height: 1.0;
  text-transform: none;
  color: rgba(255, 248, 234, 0.90);
  display: block;
  margin: 0 0 0.55em 0;
  opacity: 0;
}

body.fl718-location-santa-fe .fl718-sf-hero__subtitle {
  font-family: 'DM Sans', -apple-system, sans-serif;
  font-weight: 300;
  font-size: clamp(0.78rem, 0.85vw, 0.82rem);
  letter-spacing: 0.22em;
  line-height: 1.5;
  font-style: italic;
  color: rgba(255, 240, 218, 0.78);
  display: block;
  margin: 0;
  opacity: 0;
}

/* ============================================================
   GALLERY GRID — 2-col alternating editorial layout
   Odd: 64% right-aligned. Even: 64% left-aligned. 14vh gap.
   ============================================================ */

body.fl718-location-santa-fe .fl718-sf-grid {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(2rem, 4vw, 4rem);
  padding-top: 14vh;
  padding-bottom: 12vh;
}

body.fl718-location-santa-fe .fl718-sf-item {
  overflow: clip;
  opacity: 0;
  cursor: pointer;
  position: relative;
  transform-origin: center center;
}

body.fl718-location-santa-fe .fl718-sf-item img {
  width: 100%;
  height: auto;
  display: block;
}

body.fl718-location-santa-fe .fl718-sf-grid .fl718-sf-item:nth-child(odd) {
  width: 64%;
  margin-left: auto;
  margin-bottom: 14vh;
}

body.fl718-location-santa-fe .fl718-sf-grid .fl718-sf-item:nth-child(even) {
  width: 64%;
  margin-right: auto;
  margin-bottom: 14vh;
}

body.fl718-location-santa-fe .fl718-sf-grid .fl718-sf-item:last-child {
  margin-bottom: 0;
}

@media (max-width: 480px) {
  body.fl718-location-santa-fe .fl718-sf-grid {
    padding-left: 16px;
    padding-right: 16px;
    padding-top: 10vh;
  }
  body.fl718-location-santa-fe .fl718-sf-grid .fl718-sf-item:nth-child(odd),
  body.fl718-location-santa-fe .fl718-sf-grid .fl718-sf-item:nth-child(even) {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 8vh;
  }
  body.fl718-location-santa-fe .fl718-sf-grid .fl718-sf-item:last-child {
    margin-bottom: 0;
  }
}

/* ============================================================
   WARM GLOW OVERLAY — "Adobe Warmth"
   ============================================================ */

body.fl718-location-santa-fe .fl718-sf-item__warm-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  will-change: opacity;
}

body.fl718-location-santa-fe .fl718-sf-item__warm-glow--color {
  background: radial-gradient(
    ellipse 80% 75% at 50% 50%,
    rgba(210, 165, 110, 0.22) 0%,
    rgba(200, 145, 90, 0.14) 40%,
    rgba(190, 130, 75, 0.05) 70%,
    transparent 90%
  );
  mix-blend-mode: screen;
}

body.fl718-location-santa-fe .fl718-sf-item__warm-glow--bw {
  background: radial-gradient(
    ellipse 80% 75% at 50% 50%,
    rgba(215, 215, 215, 0.12) 0%,
    rgba(200, 200, 200, 0.07) 45%,
    transparent 75%
  );
  mix-blend-mode: soft-light;
}

@media (prefers-reduced-motion: reduce) {
  body.fl718-location-santa-fe .fl718-sf-item__warm-glow {
    display: none !important;
  }
  body.fl718-location-santa-fe .fl718-sf-item img {
    filter: none !important;
  }
}

/* ============================================================
   LIGHTBOX — "The Aperture"
   Three fixed layers. Circular clip-path iris.
   ============================================================ */

body.fl718-location-santa-fe .fl718-sf-ap-dark {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(16, 8, 4, 0.97);
  pointer-events: none;
  clip-path: circle(0% at 50% 50%);
  -webkit-clip-path: circle(0% at 50% 50%);
}

body.fl718-location-santa-fe .fl718-sf-ap-dark--active {
  pointer-events: auto;
}

body.fl718-location-santa-fe .fl718-sf-ap-stage {
  position: fixed;
  inset: 0;
  z-index: 9100;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  clip-path: circle(0% at 50% 50%);
  -webkit-clip-path: circle(0% at 50% 50%);
}

body.fl718-location-santa-fe .fl718-sf-ap-stage--active {
  pointer-events: auto;
}

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

body.fl718-location-santa-fe .fl718-sf-ap-image {
  max-width: 100%;
  max-height: calc(100dvh - 120px);
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  will-change: opacity;
}

body.fl718-location-santa-fe .fl718-sf-ap-backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  cursor: default;
}

body.fl718-location-santa-fe .fl718-sf-ap-ui {
  position: fixed;
  inset: 0;
  z-index: 9200;
  pointer-events: none;
  opacity: 0;
}

body.fl718-location-santa-fe .fl718-sf-ap-ui--active {
  pointer-events: auto;
}

body.fl718-location-santa-fe .fl718-sf-ap-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(255, 244, 228, 0.75);
}

body.fl718-location-santa-fe .fl718-sf-ap-close-btn:hover {
  color: rgba(255, 244, 228, 1);
}

body.fl718-location-santa-fe .fl718-sf-ap-close-btn svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 1.2;
  stroke-linecap: round;
  fill: none;
}

body.fl718-location-santa-fe .fl718-sf-ap-counter {
  position: absolute;
  bottom: clamp(1.2rem, 2.5vh, 2rem);
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Fraunces', Georgia, serif;
  font-variation-settings: 'opsz' 9, 'WONK' 1, 'wght' 300;
  font-weight: 300;
  font-size: 0.82rem;
  color: rgba(255, 244, 228, 0.55);
  letter-spacing: 0.14em;
  white-space: nowrap;
  pointer-events: none;
}

body.fl718-location-santa-fe .fl718-sf-ap-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(255, 244, 228, 0.38);
  pointer-events: none;
  white-space: nowrap;
}

body.fl718-location-santa-fe .fl718-sf-ap-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(255, 244, 228, 0.55);
  transition: color 0.2s;
}

body.fl718-location-santa-fe .fl718-sf-ap-nav:hover {
  color: rgba(255, 244, 228, 0.9);
}

body.fl718-location-santa-fe .fl718-sf-ap-prev { left: clamp(0.8rem, 2vw, 1.6rem); }
body.fl718-location-santa-fe .fl718-sf-ap-next { right: clamp(0.8rem, 2vw, 1.6rem); }

body.fl718-location-santa-fe .fl718-sf-ap-nav svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  stroke-width: 1.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

body.fl718-location-santa-fe .fl718-sf-ap-close-btn:focus-visible,
body.fl718-location-santa-fe .fl718-sf-ap-nav:focus-visible {
  outline: 2px solid rgba(255, 244, 228, 0.5);
  outline-offset: 3px;
}

@media (max-width: 768px) {
  body.fl718-location-santa-fe .fl718-sf-ap-image-wrap {
    max-width: 100vw;
    max-height: 100svh;
  }
  body.fl718-location-santa-fe .fl718-sf-ap-image {
    max-height: calc(100svh - 120px);
  }
  body.fl718-location-santa-fe .fl718-sf-ap-prev { left: 0.25rem; }
  body.fl718-location-santa-fe .fl718-sf-ap-next { right: 0.25rem; }
}

@media (prefers-reduced-motion: reduce) {
  body.fl718-location-santa-fe .fl718-sf-ap-dark {
    clip-path: circle(150% at 50% 50%) !important;
    -webkit-clip-path: circle(150% at 50% 50%) !important;
  }
  body.fl718-location-santa-fe .fl718-sf-ap-stage {
    clip-path: circle(150% at 50% 50%) !important;
    -webkit-clip-path: circle(150% at 50% 50%) !important;
  }
  body.fl718-location-santa-fe .fl718-sf-ap-ui {
    opacity: 1 !important;
  }
}

/* ============================================================
   AFTER-CONTENT — SW siblings + taxonomy
   ============================================================ */

body.fl718-location-santa-fe .fl718-sf-after {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(3.5rem, 5vw, 5rem) clamp(1.5rem, 5vw, 4rem) 250px;
}

body.fl718-location-santa-fe .fl718-sf-after__rule {
  display: block;
  width: 100%;
  height: 1px;
  background-color: #d4bfab;
  margin: 0 0 37px;
}

body.fl718-location-santa-fe .fl718-sf-after__eyebrow {
  display: block;
  font-family: 'DM Sans', -apple-system, sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #9c8878;
  margin: 0 0 18px;
}

body.fl718-location-santa-fe .fl718-sf-after__eyebrow--second {
  margin-top: 48px;
}

body.fl718-location-santa-fe .fl718-sf-after__terms {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  row-gap: 22px;
  margin: 0;
  padding: 0;
  list-style: none;
}

body.fl718-location-santa-fe .fl718-sf-after__break {
  width: 100%;
  height: 0;
  pointer-events: none;
}

body.fl718-location-santa-fe .fl718-sf-after__term {
  display: flex;
  align-items: baseline;
}

body.fl718-location-santa-fe .fl718-sf-after__link {
  font-family: 'DM Sans', -apple-system, sans-serif;
  font-size: 18px;
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #82726a;
  text-decoration: none;
  background-image: linear-gradient(currentColor, currentColor);
  background-repeat: no-repeat;
  background-size: 0% 1px;
  background-position: 0 100%;
  transition: color 0.4s ease, background-size 0.4s ease;
}

body.fl718-location-santa-fe .fl718-sf-after__link:hover {
  color: #3d2e26;
  background-size: 100% 1px;
}

body.fl718-location-santa-fe .fl718-sf-after__sep {
  font-family: 'DM Sans', -apple-system, sans-serif;
  font-size: 13px;
  color: #d4bfab;
  padding: 0 18px;
  user-select: none;
  position: relative;
  top: -1px;
}

@media (max-width: 600px) {
  body.fl718-location-santa-fe .fl718-sf-after {
    padding-bottom: 120px;
  }
  body.fl718-location-santa-fe .fl718-sf-after__link {
    font-size: 14px;
    letter-spacing: 0.1em;
  }
  body.fl718-location-santa-fe .fl718-sf-after__sep {
    font-size: 11px;
    padding: 0 12px;
  }
  body.fl718-location-santa-fe .fl718-sf-after__eyebrow {
    font-size: 10px;
    letter-spacing: 0.2em;
  }
}

@media (max-width: 375px) {
  body.fl718-location-santa-fe .fl718-sf-after__terms {
    flex-direction: column;
    gap: 14px;
  }
  body.fl718-location-santa-fe .fl718-sf-after__term[aria-hidden="true"] {
    display: none;
  }
}

/* ============================================================
   PREFERS-REDUCED-MOTION + NO-JS FALLBACKS
   ============================================================ */

@media (prefers-reduced-motion: reduce) {
  body.fl718-location-santa-fe .fl718-sf-item {
    opacity: 1 !important;
    filter: none !important;
    transition: none !important;
  }
  body.fl718-location-santa-fe .fl718-sf-hero__veil {
    display: none !important;
  }
  body.fl718-location-santa-fe .fl718-sf-hero__gradient,
  body.fl718-location-santa-fe .fl718-sf-hero__title,
  body.fl718-location-santa-fe .fl718-sf-hero__subtitle {
    opacity: 1 !important;
  }
}

body.fl718-location-santa-fe:not(.fl718-js-loaded) .fl718-sf-item {
  opacity: 1;
  filter: none;
}

body.fl718-location-santa-fe:not(.fl718-js-loaded) .fl718-sf-hero__veil {
  display: none;
}

body.fl718-location-santa-fe:not(.fl718-js-loaded) .fl718-sf-hero__gradient,
body.fl718-location-santa-fe:not(.fl718-js-loaded) .fl718-sf-hero__title,
body.fl718-location-santa-fe:not(.fl718-js-loaded) .fl718-sf-hero__subtitle {
  opacity: 1;
}
