/* ============================================
   Fields of Thunder Museum — Main CSS
   Turnkey Web Tools Inc.
   ============================================ */

/* ============================================
   Navigation
   ============================================ */
.fot-nav {
  background: var(--ink);
  color: var(--parchment);
  padding: 20px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 100;
}

.fot-nav::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--paper-grain);
  pointer-events: none;
  opacity: 0.6;
}

.fot-nav > * { position: relative; z-index: 1; }

.fot-logo {
  font-family: "Fraunces", Georgia, serif;
  font-optical-sizing: auto;
  font-variation-settings: "opsz" 144;
  font-weight: 400;
  font-size: 1.35rem;
  color: var(--parchment);
  text-decoration: none;
  letter-spacing: -0.015em;
  line-height: 1;
  transition: opacity 0.2s ease;
}

.fot-logo:hover { opacity: 0.85; }

.fot-logo em {
  font-variation-settings: "SOFT" 100, "WONK" 1, "opsz" 144;
  font-style: italic;
  font-weight: 400;
  color: var(--brass);
}

.fot-nav-links {
  display: flex;
  gap: 22px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.fot-nav-links a {
  color: var(--parchment);
  text-decoration: none;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.04em;
  position: relative;
  padding: 4px 0;
  transition: color 0.2s ease;
}

.fot-nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: var(--brass);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.fot-nav-links a:hover { color: var(--brass); }
.fot-nav-links a:hover::after { transform: scaleX(1); }

.fot-nav-links li.nav-cta-mobile { display: none; }

.fot-nav-cta {
  background: transparent;
  color: var(--brass);
  border: 1px solid var(--brass);
  padding: 10px 22px;
  font-family: "DM Sans", sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
}

.fot-nav-cta:hover {
  background: var(--brass);
  color: var(--ink);
}

.fot-nav-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 10px;
  margin: -10px;
  width: 44px;
  height: 44px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  z-index: 101;
  position: relative;
}

.fot-nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--parchment);
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1),
              opacity 0.25s ease,
              background 0.25s ease;
  transform-origin: center;
}

.fot-nav.is-open .fot-nav-toggle span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
  background: var(--brass);
}
.fot-nav.is-open .fot-nav-toggle span:nth-child(2) { opacity: 0; }
.fot-nav.is-open .fot-nav-toggle span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
  background: var(--brass);
}

/* ============================================
   Navigation — Dropdowns (desktop)
   ============================================ */
.fot-nav-links li.has-dropdown { position: relative; }

.fot-nav-chevron {
  width: 9px;
  height: 6px;
  margin-left: 5px;
  vertical-align: middle;
  position: relative;
  top: -1px;
  transition: transform 0.25s ease;
}

.fot-nav-sub {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 210px;
  background: var(--ink);
  border-top: 2px solid var(--brass);
  list-style: none;
  margin: 0;
  padding: 6px 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0s linear 0.2s;
  z-index: 200;
}

/* Small connecting bridge so the menu doesn't vanish between parent and dropdown */
.fot-nav-sub::before {
  content: "";
  position: absolute;
  top: -16px;
  left: 0; right: 0;
  height: 16px;
}

.fot-nav-links li.has-dropdown:hover .fot-nav-sub,
.fot-nav-links li.has-dropdown:focus-within .fot-nav-sub {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 0.2s ease, visibility 0s linear 0s;
}

.fot-nav-links li.has-dropdown:hover .fot-nav-chevron {
  transform: rotate(180deg);
}

.fot-nav-sub li { border: none; }

.fot-nav-sub a {
  display: block;
  padding: 10px 20px;
  font-size: 12.5px;
  letter-spacing: 0.03em;
  white-space: nowrap;
  color: var(--parchment);
  opacity: 1 !important;
  transform: none !important;
}

.fot-nav-sub a::after { display: none !important; }

.fot-nav-sub a:hover {
  color: var(--brass);
  background: rgba(255,255,255,0.05);
}

/* ============================================
   Hero
   ============================================ */
.fot-hero {
  background: var(--ink);
  color: var(--parchment);
  position: relative;
  min-height: 88vh;
  padding: 80px 48px 120px !important;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.fot-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--paper-grain);
  opacity: 0.8;
  pointer-events: none;
}

.fot-hero::after {
  content: "";
  position: absolute;
  top: -20%;
  right: -10%;
  width: 70%;
  height: 120%;
  background: radial-gradient(
    ellipse at center,
    rgba(191, 29, 40, 0.18) 0%,
    rgba(154, 74, 43, 0.08) 30%,
    transparent 65%
  );
  pointer-events: none;
}

.fot-hero-inner {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.fot-hero-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 36px;
}

.fot-hero-meta-line {
  width: 48px;
  height: 1px;
  background: var(--brass);
}

.fot-hero-title {
  font-family: "Fraunces", Georgia, serif;
  font-variation-settings: "SOFT" 0, "WONK" 0, "opsz" 144;
  font-weight: 300;
  font-size: clamp(3.5rem, 7vw, 6.5rem);
  line-height: 0.92;
  letter-spacing: -0.03em;
  margin-bottom: 32px;
  color: var(--parchment);
}

.fot-hero-title em {
  font-variation-settings: "SOFT" 100, "WONK" 1, "opsz" 144;
  font-style: italic;
  font-weight: 300;
  color: var(--brass);
}

.fot-hero-sub {
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(244, 238, 223, 0.78);
  max-width: 520px;
  margin-bottom: 48px;
  font-weight: 300;
}

.fot-hero-actions {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
}

.fot-btn-primary {
  background: var(--brass);
  color: var(--ink);
  padding: 18px 36px;
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 12px;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.fot-btn-primary:hover {
  background: var(--parchment);
  transform: translateY(-2px);
}

.fot-btn-primary svg { width: 14px; height: 14px; }

.fot-btn-ghost {
  color: var(--parchment);
  padding: 18px 0;
  text-decoration: none;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 12px;
  border-bottom: 1px solid rgba(244, 238, 223, 0.3);
  transition: all 0.25s ease;
}

.fot-btn-ghost:hover {
  color: var(--brass);
  border-color: var(--brass);
}

.fot-hero-visual {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
}

.fot-hero-visual::before {
  content: "";
  position: absolute;
  top: -14px;
  left: -14px;
  right: 14px;
  bottom: 14px;
  border: 1px solid var(--brass);
  pointer-events: none;
  z-index: 2;
}

.fot-hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: sepia(0.15) contrast(1.08) brightness(0.88);
}

/* Est. MCMXCVI label overlaid at top of photo */
.fot-hero-meta--over-photo {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 4;
  margin: 0;
  background: rgba(13,17,20,0.55);
  padding: 6px 12px;
}

.fot-hero-meta--over-photo .eyebrow {
  color: rgba(244,238,223,0.85);
}

.fot-hero-meta--over-photo .fot-hero-meta-line {
  display: none;
}

.fot-hero-caption {
  position: absolute;
  bottom: -14px;
  right: -14px;
  background: var(--ink);
  color: var(--parchment);
  padding: 18px 24px;
  border: 1px solid var(--brass);
  z-index: 3;
  max-width: 260px;
}

.fot-hero-caption .eyebrow { margin-bottom: 6px; display: block; }

.fot-hero-caption p {
  font-family: "Fraunces", serif;
  font-variation-settings: "opsz" 144;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.3;
  letter-spacing: -0.005em;
}

.fot-hero-badge {
  position: absolute;
  bottom: 48px;
  left: 48px;
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 3;
}

.fot-hero-badge-dot {
  width: 8px;
  height: 8px;
  background: var(--brass);
  border-radius: 50%;
  animation: fot-pulse 2.4s ease-in-out infinite;
}

@keyframes fot-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(1.3); }
}

.fot-hero-badge-text {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(244, 238, 223, 0.7);
  font-weight: 500;
}

.fot-scroll-marker {
  position: absolute;
  right: 48px;
  bottom: 48px;
  z-index: 3;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(244, 238, 223, 0.55);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  display: flex;
  align-items: center;
  gap: 12px;
}

.fot-scroll-marker::before {
  content: "";
  width: 1px;
  height: 40px;
  background: var(--brass);
}

/* ============================================
   Statement / Mission
   ============================================ */
.fot-statement {
  background: var(--parchment);
  padding: 120px 48px !important;
  position: relative;
}

.fot-statement::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--paper-grain);
  opacity: 0.5;
  pointer-events: none;
}

.fot-statement-inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 60px;
  align-items: start;
}

.fot-statement-marker {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: 32px;
  color: var(--brass);
  font-variation-settings: "SOFT" 100, "WONK" 1;
  padding-top: 8px;
  min-width: 40px;
}

.fot-statement-body p {
  font-family: "Fraunces", serif;
  font-variation-settings: "opsz" 144;
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  line-height: 1.3;
  font-weight: 300;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 28px;
}

.fot-statement-body p em {
  font-variation-settings: "SOFT" 100, "WONK" 1;
  font-style: italic;
  color: var(--brass);
}

.fot-statement-attr {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 40px;
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
}

.fot-statement-attr::before {
  content: "";
  width: 40px;
  height: 1px;
  background: var(--brass);
}

/* ============================================
   Video Feature
   ============================================ */
.fot-video-feature {
  background: var(--parchment-2);
  padding: 120px 48px !important;
  position: relative;
  overflow: hidden;
}

.fot-video-feature::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--paper-grain);
  opacity: 0.6;
  pointer-events: none;
}

.fot-video-feature-inner {
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.fot-video-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: 64px;
  align-items: center;
}

.fot-video-meta .eyebrow { display: block; margin-bottom: 20px; }

.fot-video-meta h2 {
  font-family: "Fraunces", serif;
  font-variation-settings: "opsz" 144;
  font-weight: 300;
  font-size: clamp(2.4rem, 4.2vw, 3.6rem);
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 24px;
}

.fot-video-meta h2 em {
  font-variation-settings: "SOFT" 100, "WONK" 1;
  font-style: italic;
  color: var(--brass);
}

.fot-video-meta p {
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 440px;
}

.fot-video-poster {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  cursor: pointer;
  background: var(--ink);
  display: block;
  width: 100%;
  padding: 0;
  border: none;
  font: inherit;
  color: inherit;
  text-align: left;
}

.fot-video-poster::before {
  content: "";
  position: absolute;
  top: 14px; left: 14px; right: -14px; bottom: -14px;
  border: 1px solid var(--brass);
  pointer-events: none;
  z-index: -1;
}

.fot-video-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: sepia(0.1) contrast(1.05) brightness(0.75);
  transition: filter 0.5s ease, transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.fot-video-poster:hover img {
  filter: sepia(0) contrast(1.08) brightness(0.85);
  transform: scale(1.03);
}

.fot-video-poster::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 0%, rgba(13,17,20,.2) 50%, rgba(13,17,20,.75) 100%);
  pointer-events: none;
}

.fot-video-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 108px; height: 108px;
  border-radius: 50%;
  background: var(--brass);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), background 0.3s ease;
  box-shadow: 0 20px 60px rgba(191, 29, 40, 0.5);
  pointer-events: none;
}

.fot-video-poster:hover .fot-video-play {
  transform: translate(-50%, -50%) scale(1.1);
  background: var(--brass-dark);
}

.fot-video-play::before {
  content: "";
  position: absolute;
  inset: -14px;
  border-radius: 50%;
  border: 1px solid var(--brass);
  opacity: 0.5;
  animation: fot-pulse-ring 2.4s ease-out infinite;
}

@keyframes fot-pulse-ring {
  0%   { transform: scale(1); opacity: 0.5; }
  100% { transform: scale(1.35); opacity: 0; }
}

.fot-video-play svg {
  width: 32px; height: 32px;
  fill: var(--parchment);
  margin-left: 5px;
}

.fot-video-poster-caption {
  position: absolute;
  bottom: 24px; left: 32px; right: 32px;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  pointer-events: none;
}

.fot-video-poster-title {
  display: block;
  font-family: "Fraunces", serif;
  font-variation-settings: "opsz" 144;
  font-weight: 400;
  font-size: 1.25rem;
  color: var(--parchment);
  letter-spacing: -0.01em;
}

.fot-video-poster-duration {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--parchment);
  opacity: 0.75;
  padding: 6px 12px;
  border: 1px solid rgba(244, 238, 223, 0.4);
  white-space: nowrap;
}

/* Video Lightbox */
.fot-video-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(13, 17, 20, 0.95);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0s linear 0.35s;
}

.fot-video-lightbox.is-open {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.35s ease, visibility 0s linear 0s;
}

.fot-video-lightbox-inner {
  width: 100%;
  max-width: 1100px;
  aspect-ratio: 16/9;
  position: relative;
  transform: scale(0.95);
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.fot-video-lightbox.is-open .fot-video-lightbox-inner { transform: scale(1); }

.fot-video-lightbox iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.fot-video-lightbox-close {
  position: absolute;
  top: -56px; right: 0;
  background: transparent;
  border: 1px solid var(--brass);
  color: var(--parchment);
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
  font-size: 20px;
  line-height: 1;
}

.fot-video-lightbox-close:hover { background: var(--brass); }

/* ============================================
   Alert Band — Stolen Gatling Gun
   ============================================ */
.fot-alert-band {
  background: var(--ink);
  color: var(--parchment);
  padding: 36px 48px !important;
  position: relative;
  border-top: 3px solid var(--brass);
  border-bottom: 3px solid var(--brass);
}

.fot-alert-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--paper-grain);
  opacity: 0.4;
  pointer-events: none;
}

.fot-alert-band-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.fot-alert-icon {
  width: 56px; height: 56px;
  border: 1.5px solid var(--brass);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brass);
  font-family: "Fraunces", serif;
  font-style: italic;
  font-variation-settings: "SOFT" 100, "WONK" 1, "opsz" 144;
  font-size: 28px;
  font-weight: 400;
  flex-shrink: 0;
}

.fot-alert-label {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--brass);
  font-weight: 600;
  margin-bottom: 8px;
}

.fot-alert-text {
  font-family: "Fraunces", serif;
  font-variation-settings: "opsz" 144;
  font-weight: 400;
  font-size: 1.15rem;
  line-height: 1.45;
  letter-spacing: -0.005em;
  color: var(--parchment);
}

.fot-alert-text em {
  font-variation-settings: "SOFT" 100, "WONK" 1;
  font-style: italic;
  color: var(--brass);
}

.fot-alert-cta {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--parchment);
  text-decoration: none;
  padding: 14px 24px;
  border: 1px solid var(--brass);
  white-space: nowrap;
  transition: all 0.25s ease;
  flex-shrink: 0;
  font-weight: 500;
}

.fot-alert-cta:hover {
  background: var(--brass);
  color: var(--parchment);
}

/* ============================================
   Collections Grid
   ============================================ */
.fot-collections {
  background: var(--ink);
  color: var(--parchment);
  padding: 120px 48px !important;
  position: relative;
}

.fot-collections::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--paper-grain);
  opacity: 0.6;
  pointer-events: none;
}

.fot-collections-inner {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.fot-section-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 80px;
  align-items: end;
}

.fot-section-head h2 {
  font-family: "Fraunces", serif;
  font-variation-settings: "opsz" 144;
  font-weight: 300;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  line-height: 0.95;
  letter-spacing: -0.025em;
  color: var(--parchment);
}

.fot-section-head h2 em {
  font-variation-settings: "SOFT" 100, "WONK" 1;
  font-style: italic;
  color: var(--brass);
}

.fot-section-head-meta p {
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(244, 238, 223, 0.72);
  max-width: 420px;
  margin-top: 16px;
}

.fot-collection-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 28px;
}

.fot-card {
  position: relative;
  overflow: hidden;
  background: var(--ink-soft);
  text-decoration: none;
  color: var(--parchment);
  display: block;
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.fot-card:hover { transform: translateY(-6px); }

.fot-card-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/5;
}

.fot-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: sepia(0.1) contrast(1.05) brightness(0.85);
  transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), filter 0.6s ease;
}

.fot-card:hover .fot-card-image img {
  transform: scale(1.06);
  filter: sepia(0) contrast(1.08) brightness(0.95);
}

.fot-card-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,17,20,.85) 0%, rgba(13,17,20,.1) 40%, transparent 70%);
  pointer-events: none;
}

.fot-card-meta {
  position: absolute;
  top: 20px; left: 20px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
}

.fot-card-num {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-variation-settings: "SOFT" 100, "WONK" 1;
  font-size: 18px;
  color: var(--brass);
}

.fot-card-label {
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(244, 238, 223, 0.8);
  padding: 5px 10px;
  border: 1px solid rgba(244, 238, 223, 0.25);
  background: rgba(13, 17, 20, 0.5);
  backdrop-filter: blur(4px);
}

.fot-card-body {
  position: absolute;
  bottom: 24px; left: 24px; right: 24px;
  z-index: 2;
}

.fot-card-title {
  font-family: "Fraunces", serif;
  font-variation-settings: "opsz" 144;
  font-weight: 400;
  font-size: 1.65rem;
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin-bottom: 8px;
}

.fot-card-sub {
  font-size: 13px;
  color: rgba(244, 238, 223, 0.65);
  letter-spacing: 0.02em;
}

.fot-card-arrow {
  margin-top: 14px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: gap 0.3s ease;
}

.fot-card:hover .fot-card-arrow { gap: 16px; }
.fot-card-arrow svg { width: 18px; height: 6px; }

.fot-card-wide     { grid-column: span 7; }
.fot-card-tall     { grid-column: span 5; }
.fot-card-tall .fot-card-image { aspect-ratio: 4/5; }
.fot-card-wide .fot-card-image { aspect-ratio: 4/3; }
.fot-card-mid      { grid-column: span 4; }
.fot-card-mid .fot-card-image { aspect-ratio: 4/5; }

/* ============================================
   Feature Row — Restoration
   ============================================ */
.fot-feature {
  background: var(--parchment-2);
  padding: 140px 48px !important;
  position: relative;
}

.fot-feature::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--paper-grain);
  opacity: 0.7;
  pointer-events: none;
}

.fot-feature-inner {
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: 80px;
  align-items: center;
}

.fot-feature-image-wrap { position: relative; }

.fot-feature-image {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
}

.fot-feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: sepia(0.12) contrast(1.05);
}

.fot-feature-image::after {
  content: "";
  position: absolute;
  top: 20px; left: -20px;
  width: calc(100% + 20px);
  height: calc(100% - 20px);
  border: 1px solid var(--brass);
  pointer-events: none;
  z-index: 2;
}

.fot-feature-num {
  position: absolute;
  top: -20px; left: -20px;
  font-family: "Fraunces", serif;
  font-style: italic;
  font-variation-settings: "SOFT" 100, "WONK" 1, "opsz" 144;
  font-size: 5rem;
  color: var(--brass);
  z-index: 3;
  line-height: 1;
  background: var(--parchment-2);
  padding: 0 12px;
}

.fot-feature-content .eyebrow { margin-bottom: 20px; display: inline-block; }

.fot-feature-content h2 {
  font-family: "Fraunces", serif;
  font-variation-settings: "opsz" 144;
  font-weight: 300;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin-bottom: 28px;
  color: var(--ink);
}

.fot-feature-content h2 em {
  font-variation-settings: "SOFT" 100, "WONK" 1;
  font-style: italic;
  color: var(--brass);
}

.fot-feature-content p {
  font-size: 1.02rem;
  line-height: 1.75;
  margin-bottom: 20px;
  color: var(--ink-soft);
  max-width: 540px;
}

.fot-feature-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
  padding-top: 36px;
  border-top: 1px solid var(--line);
  max-width: 540px;
}

.fot-stat-num {
  font-family: "Fraunces", serif;
  font-variation-settings: "opsz" 144;
  font-weight: 400;
  font-size: 2.4rem;
  line-height: 1;
  color: var(--ink);
  letter-spacing: -0.02em;
  display: block;
  margin-bottom: 6px;
}

.fot-stat-num em {
  font-variation-settings: "SOFT" 100, "WONK" 1;
  font-style: italic;
  color: var(--brass);
}

.fot-stat-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  opacity: 0.7;
}

/* ============================================
   Veterans Tribute
   ============================================ */
.fot-tribute {
  background: var(--ink);
  color: var(--parchment);
  padding: 60px 48px 120px !important;
  position: relative;
  overflow: hidden;
}

/* When tribute follows page banner (same ink bg) — remove top gap so they merge */
.fot-page-banner + .fot-tribute {
  padding-top: 60px !important;
}

.fot-page-banner:has(+ .fot-tribute) {
  padding-bottom: 40px !important;
}

.fot-tribute::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--paper-grain);
  opacity: 0.5;
  pointer-events: none;
}

.fot-tribute::after {
  content: "MCMXCVI";
  position: absolute;
  top: 50%; right: -40px;
  transform: translateY(-50%);
  font-family: "Fraunces", serif;
  font-style: italic;
  font-variation-settings: "SOFT" 100, "WONK" 1, "opsz" 144;
  font-size: 16rem;
  color: rgba(191, 29, 40, 0.07);
  line-height: 1;
  pointer-events: none;
  letter-spacing: -0.04em;
}

.fot-tribute-inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  text-align: center;
}

.fot-tribute-eyebrow { margin-bottom: 36px; }

.fot-tribute-text {
  font-family: "Fraunces", serif;
  font-variation-settings: "opsz" 144;
  font-weight: 300;
  font-size: clamp(2rem, 3.8vw, 3.4rem);
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin-bottom: 48px;
}

.fot-tribute-text em {
  font-variation-settings: "SOFT" 100, "WONK" 1;
  font-style: italic;
  color: var(--brass);
}

.fot-tribute-names {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 72px;
  padding-top: 48px;
  border-top: 1px solid var(--line);
}

.fot-tribute-name { text-align: left; }

.fot-tribute-name-label {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 8px;
}

.fot-tribute-name-h {
  font-family: "Fraunces", serif;
  font-variation-settings: "opsz" 144;
  font-weight: 400;
  font-size: 1.4rem;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
  color: var(--parchment);
}

.fot-tribute-name-years {
  font-size: 13px;
  color: rgba(244, 238, 223, 0.6);
}

.fot-tribute-name-desc {
  font-size: 13px;
  color: rgba(244, 238, 223, 0.75);
  line-height: 1.55;
  margin-top: 10px;
}

/* ============================================
   Support / CTA
   ============================================ */
.fot-support {
  background: var(--parchment);
  padding: 140px 48px !important;
  position: relative;
}

.fot-support::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--paper-grain);
  opacity: 0.5;
  pointer-events: none;
}

.fot-support-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  display: grid;
  grid-template-columns: 5fr 4fr;
  gap: 80px;
  align-items: start;
}

.fot-support-head h2 {
  font-family: "Fraunces", serif;
  font-variation-settings: "opsz" 144;
  font-weight: 300;
  font-size: clamp(2.8rem, 5vw, 4.4rem);
  line-height: 0.98;
  letter-spacing: -0.025em;
  margin-bottom: 32px;
  margin-top: 20px;
  color: var(--ink);
}

.fot-support-head h2 em {
  font-variation-settings: "SOFT" 100, "WONK" 1;
  font-style: italic;
  color: var(--brass);
}

.fot-support-head p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 480px;
  margin-bottom: 12px;
}

.fot-support-options { display: grid; gap: 16px; }

.fot-support-option {
  background: var(--parchment-2);
  border: 1px solid var(--line);
  padding: 28px 32px;
  text-decoration: none;
  color: var(--ink);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  transition: all 0.3s ease;
}

.fot-support-option:hover {
  background: var(--ink);
  color: var(--parchment);
  border-color: var(--brass);
  transform: translateX(6px);
}

.fot-support-option-num {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-variation-settings: "SOFT" 100, "WONK" 1;
  font-size: 1.4rem;
  color: var(--brass);
  min-width: 36px;
}

.fot-support-option-label {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 4px;
  display: block;
}

.fot-support-option h3 {
  font-family: "Fraunces", serif;
  font-variation-settings: "opsz" 144;
  font-weight: 400;
  font-size: 1.3rem;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.fot-support-option-arrow {
  font-size: 18px;
  color: var(--brass);
  transition: transform 0.3s ease;
}

.fot-support-option:hover .fot-support-option-arrow { transform: translateX(4px); }

/* ============================================
   Footer
   ============================================ */
.fot-footer {
  background: var(--ink);
  color: var(--parchment);
  padding: 80px 48px 40px !important;
  position: relative;
}

.fot-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--paper-grain);
  opacity: 0.6;
  pointer-events: none;
}

.fot-footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.fot-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--line);
}

.fot-footer-brand h3 {
  font-family: "Fraunces", serif;
  font-variation-settings: "opsz" 144;
  font-weight: 400;
  font-size: 1.8rem;
  letter-spacing: -0.015em;
  margin-bottom: 16px;
}

.fot-footer-brand h3 em {
  font-variation-settings: "SOFT" 100, "WONK" 1;
  font-style: italic;
  color: var(--brass);
}

.fot-footer-brand p {
  color: rgba(244, 238, 223, 0.65);
  font-size: 14px;
  line-height: 1.65;
  max-width: 340px;
}

.fot-footer-col h4 {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 20px;
  font-weight: 500;
}

.fot-footer-col ul { list-style: none; margin: 0; padding: 0; }
.fot-footer-col li { margin-bottom: 10px; }

.fot-footer-col a {
  color: rgba(244, 238, 223, 0.78);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s ease;
}

.fot-footer-col a:hover { color: var(--brass); }

.fot-footer-bottom {
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.fot-footer-bottom p {
  font-size: 12px;
  color: rgba(244, 238, 223, 0.45);
  letter-spacing: 0.04em;
}

.fot-footer-roman {
  font-family: "Fraunces", serif;
  font-style: italic;
  color: var(--brass);
  letter-spacing: 0.12em;
  font-size: 13px;
}

.fot-footer-right {
  display: flex;
  align-items: center;
  gap: 0;
}

.fot-footer-credit,
.fot-footer-credit a {
  font-size: 12px;
  color: rgba(244, 238, 223, 0.45);
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: color 0.2s ease;
}

.fot-footer-credit a:hover { color: var(--parchment); }

/* ============================================
   Interior Page Hero Banner
   ============================================ */
.fot-page-banner {
  background: var(--ink);
  color: var(--parchment);
  padding: 80px 48px !important;
  position: relative;
}

.fot-page-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--paper-grain);
  opacity: 0.7;
  pointer-events: none;
}

.fot-page-banner-inner {
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.fot-page-banner .eyebrow { margin-bottom: 16px; display: block; }

.fot-page-banner h1 {
  font-family: "Fraunces", serif;
  font-variation-settings: "opsz" 144;
  font-weight: 300;
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--parchment);
}

.fot-page-banner h1 em {
  font-variation-settings: "SOFT" 100, "WONK" 1;
  font-style: italic;
  color: var(--brass);
}

/* ============================================
   Gallery Grid (interior pages)
   ============================================ */
.fot-gallery {
  background: var(--parchment);
  padding: 80px 48px !important;
}

.fot-gallery.fot-gallery--flush-top    { padding-top: 0 !important; overflow: hidden; }
.fot-gallery.fot-gallery--flush-bottom { padding-bottom: 0 !important; overflow: hidden; }

.fot-gallery-inner { max-width: 1300px; margin: 0 auto; }

.fot-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
  margin-bottom: 48px;
}

.fot-gallery-item {
  position: relative;
  cursor: pointer;
}

.fot-gallery-item > a {
  display: block;
  width: 100%;
  line-height: 0;
  font-size: 0;
  overflow: hidden;
  background: var(--ink-soft);
}

.fot-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  aspect-ratio: 4/3;
  display: block;
  filter: sepia(0.08) contrast(1.04);
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1), filter 0.4s ease;
}

.fot-gallery-item:hover img {
  transform: scale(1.04);
  filter: sepia(0) contrast(1.06);
}

/* Uniforms page — let portrait photos display at natural proportions */
.page-id-306 .fot-gallery-item img {
  height: auto;
  object-fit: unset;
  object-position: unset;
  aspect-ratio: unset;
}

/* Carte de Visite grid — portrait images, natural proportions */
.fot-gallery-grid--portraits .fot-gallery-item img {
  height: auto;
  object-fit: unset;
  object-position: unset;
  aspect-ratio: unset;
}

.fot-gallery-caption {
  padding: 14px 0 4px;
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.4;
}

.fot-gallery-caption strong { color: var(--ink); }

/* ============================================
   Responsive — Wide desktop (≤ 1500px)
   ============================================ */
@media (max-width: 1500px) {
  .fot-nav { padding: 16px 32px; }
  .fot-nav-links { gap: 16px; }
  .fot-nav-links > li:first-child { display: none; } /* hide Home link */
}

/* ============================================
   Responsive — Narrow desktop (≤ 1200px)
   ============================================ */
@media (max-width: 1200px) {
  .fot-nav-cta { display: none; }
}

/* ============================================
   Responsive — Small desktop (≤ 1300px)
   ============================================ */
@media (max-width: 1300px) {
  .fot-nav { padding: 14px 24px; }
  .fot-nav-links { gap: 14px; }
  .fot-nav-cta { padding: 7px 14px; font-size: 11px; letter-spacing: 0.1em; }
}

/* ============================================
   Responsive — Tablet (≤ 900px)
   ============================================ */
@media (max-width: 900px) {
  .fot-nav { padding: 16px 20px; }
  .fot-nav-toggle { display: flex; }
  .fot-nav > .fot-nav-cta { display: none; }

  .fot-nav-links {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--ink);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0;
    padding: 100px 32px 48px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity 0.35s ease, visibility 0s linear 0.35s, transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
    z-index: 100;
    overflow-y: auto;
  }

  .fot-nav-links::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--paper-grain);
    opacity: 0.6;
    pointer-events: none;
  }

  .fot-nav.is-open .fot-nav-links {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: opacity 0.35s ease, visibility 0s linear 0s, transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
  }

  .fot-nav-links li {
    width: 100%; max-width: 400px;
    text-align: center;
    border-bottom: 1px solid rgba(191, 29, 40, 0.2);
  }

  .fot-nav-links li.nav-cta-mobile { display: block; }
  .fot-nav-links li:last-child { border-bottom: none; }

  .fot-nav-links a {
    display: block;
    font-family: "Fraunces", Georgia, serif;
    font-variation-settings: "opsz" 144;
    font-weight: 300;
    font-size: 1.75rem;
    letter-spacing: -0.015em;
    padding: 22px 12px;
    color: var(--parchment);
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1), color 0.2s ease;
  }

  .fot-nav-links a::after { display: none; }

  .fot-nav.is-open .fot-nav-links a { opacity: 1; transform: translateY(0); }

  .fot-nav.is-open .fot-nav-links > li:nth-child(1) > a { transition-delay: 0.06s; }
  .fot-nav.is-open .fot-nav-links > li:nth-child(2) > a { transition-delay: 0.10s; }
  .fot-nav.is-open .fot-nav-links > li:nth-child(3) > a { transition-delay: 0.14s; }
  .fot-nav.is-open .fot-nav-links > li:nth-child(4) > a { transition-delay: 0.18s; }
  .fot-nav.is-open .fot-nav-links > li:nth-child(5) > a { transition-delay: 0.22s; }
  .fot-nav.is-open .fot-nav-links > li:nth-child(6) > a { transition-delay: 0.26s; }
  .fot-nav.is-open .fot-nav-links > li:nth-child(7) > a { transition-delay: 0.30s; }
  .fot-nav.is-open .fot-nav-links > li:nth-child(8) > a { transition-delay: 0.34s; }
  .fot-nav.is-open .fot-nav-links li.nav-cta-mobile a   { transition-delay: 0.38s; }

  /* Mobile dropdowns — accordion */
  .fot-nav-sub {
    position: static;
    transform: none;
    border-top: none;
    border-left: 2px solid rgba(191, 29, 40, 0.5);
    min-width: 0;
    background: transparent;
    padding: 0 0 8px 0;
    margin: 0 0 4px 0;
    display: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: none;
  }

  .fot-nav-sub::before { display: none; }

  li.has-dropdown.is-open > .fot-nav-sub { display: block; }

  .fot-nav-sub li { border: none; }

  .fot-nav-sub a {
    font-family: "DM Sans", sans-serif;
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 0.03em;
    padding: 9px 12px;
    text-align: left;
    color: rgba(244, 238, 223, 0.75);
    opacity: 1 !important;
    transform: none !important;
    transition: color 0.2s ease !important;
    transition-delay: 0s !important;
  }

  .fot-nav-sub a:hover { color: var(--brass); }

  li.has-dropdown.is-open .fot-nav-chevron { transform: rotate(180deg); }

  .fot-nav-links li.nav-cta-mobile { border: none; margin-top: 32px; padding: 0; }

  .fot-nav-links li.nav-cta-mobile a {
    font-family: "DM Sans", sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--brass);
    border: 1px solid var(--brass);
    padding: 16px 32px;
    display: inline-block;
    width: auto;
  }

  .fot-hero { padding: 60px 20px 80px !important; min-height: auto; }
  .fot-hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .fot-hero-title { font-size: clamp(2.6rem, 11vw, 4rem); }
  .fot-hero-caption { max-width: 200px; padding: 14px 18px; }
  .fot-hero-badge, .fot-scroll-marker { display: none; }

  .fot-statement, .fot-collections, .fot-feature,
  .fot-tribute, .fot-support { padding: 72px 20px !important; }
  .fot-statement-inner { grid-template-columns: 1fr; gap: 20px; }
  .fot-statement-marker { font-size: 24px; }

  .fot-section-head { grid-template-columns: 1fr; gap: 24px; }
  .fot-collection-grid { grid-template-columns: 1fr; gap: 20px; }
  .fot-card-wide, .fot-card-tall, .fot-card-mid { grid-column: span 1; }
  .fot-card-wide .fot-card-image,
  .fot-card-tall .fot-card-image,
  .fot-card-mid .fot-card-image { aspect-ratio: 4/3; }

  .fot-feature-inner { grid-template-columns: 1fr; gap: 60px; }
  .fot-feature-num { font-size: 4rem; top: -12px; left: -12px; padding: 0 10px; }
  .fot-feature-stats { grid-template-columns: 1fr 1fr; gap: 20px; }

  .fot-tribute::after { font-size: 8rem; right: -20px; }
  .fot-tribute-names { grid-template-columns: 1fr; gap: 36px; margin-top: 48px; }

  .fot-support-inner { grid-template-columns: 1fr; gap: 40px; }
  .fot-support-option { padding: 22px 24px; gap: 16px; }

  .fot-footer { padding: 60px 20px 32px !important; }
  .fot-footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; padding-bottom: 40px; }
  .fot-footer-brand { grid-column: span 2; }
  .fot-footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }

  .fot-alert-band { padding: 28px 20px !important; }
  .fot-alert-band-inner { grid-template-columns: 1fr; gap: 20px; text-align: left; }
  .fot-alert-icon { width: 48px; height: 48px; font-size: 22px; }
  .fot-alert-text { font-size: 1rem; }
  .fot-alert-cta { justify-self: flex-start; }

  .fot-video-feature { padding: 72px 20px !important; }
  .fot-video-layout { grid-template-columns: 1fr; gap: 40px; }
  .fot-video-play { width: 80px; height: 80px; }
  .fot-video-play svg { width: 24px; height: 24px; }
  .fot-video-poster-caption { bottom: 16px; left: 20px; right: 20px; flex-direction: column; align-items: flex-start; gap: 10px; }
  .fot-video-lightbox { padding: 16px; }
  .fot-video-lightbox-close { top: -50px; }

  .fot-gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .fot-page-banner { padding: 60px 20px !important; }
}

/* ============================================
   Responsive — Mobile (≤ 520px)
   ============================================ */
@media (max-width: 520px) {
  .fot-footer-grid { grid-template-columns: 1fr; }
  .fot-footer-brand { grid-column: span 1; }
  .fot-feature-stats { grid-template-columns: 1fr; }
  .fot-gallery-grid { grid-template-columns: 1fr; }
}

/* ── Artifact Liquidation Grid ──────────────────────────────────────────── */
.fot-liquidation-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  max-width: 1100px;
  margin: 40px auto 60px;
}
@media (max-width: 900px) {
  .fot-liquidation-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .fot-liquidation-grid { grid-template-columns: 1fr; }
}
.fot-liquidation-item-inner {
  background: var(--parchment-2);
  border: 1px solid rgba(191,29,40,0.15);
  border-top: 3px solid var(--brass);
  padding: 32px 28px 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  height: 100%;
}
.fot-liquidation-icon {
  width: 36px;
  height: 44px;
  color: var(--brass);
  flex-shrink: 0;
}
.fot-liquidation-title {
  font-family: 'Fraunces', serif;
  font-variation-settings: 'opsz' 72;
  font-weight: 300;
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  line-height: 1.3;
  color: var(--ink);
  margin: 0;
  flex: 1;
}
.fot-liquidation-download {
  margin-top: auto;
  font-size: 0.85rem;
  padding: 9px 20px;
  display: inline-flex;
  align-items: center;
  color: #fff;
}
.fot-liquidation-download:hover {
  color: #000;
}
.fot-liquidation-no-pdf {
  font-size: 0.8rem;
  color: var(--ink-soft);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: auto;
}

/* ── GLightbox: force images to fill lightbox viewport ─────────────────── */
.gslide-image img {
  width: min(90vw, 900px) !important;
  height: auto !important;
  max-height: 90vh !important;
  object-fit: contain !important;
  image-rendering: auto;
}
