/* ============================================================
   THE LOST GLOVES — style.css
   Complete CSS matching https://www.wonderwandering.com/TLGA/
   No framework dependency — pure CSS
   ============================================================ */

/* ── FONTS ─────────────────────────────────────────────────── */

/* ── RESET & ROOT ───────────────────────────────────────────── */
:root {
  --padding:       clamp(18px, 2.2vw, 32px);
  --black:         #000;
  --white:         #fff;
  --pink:          #FFFFFF;
  --yellow:        #FFDD00;
  --salmon:        #FFFFFF;
  --site-background:#FFFFFF;
  --blue:          #4C4CFF;
  --color-grey:    #d9d9d9;
  --color-yellow:  #FFDD00;
  --timing:        .35s;
  --ease1:         cubic-bezier(.2,.8,.2,1);
  --font-sans:     'Inter', system-ui, -apple-system, sans-serif;
  --font-serif:    'Playfair Display', Georgia, serif;
  --font-display:  'Google Sans', Arial, sans-serif;
  --header-h:      80px;
  --radius-card:   22px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-sans);
  background: var(--site-background);
  color: #111;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; border: 0; background: transparent; cursor: pointer; padding: 0; color: inherit; }
iframe { border: 0; width: 100%; display: block; }
h1,h2,h3,h4,h5,h6 { margin: 0; }
p { margin: 0; }
ul { list-style: none; margin: 0; padding: 0; }

/* ── UTILITIES ──────────────────────────────────────────────── */
.serif { font-family: var(--font-serif); }
.container { max-width: 1600px; margin: 0 auto; padding: 0 1rem; }
@media (min-width: 768px) { .container { padding: 0 2rem; } }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
.animate-fade-up { animation: .8s ease-out forwards fadeUp; }

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.animate-fade-in { animation: .25s ease-out forwards fadeIn; }

@keyframes pulse {
  0%,100% { opacity: 1; }
  50%      { opacity: .5; }
}

/* ── LANDSCAPE BLOCK ────────────────────────────────────────── */
.landscape-block { display: none; }
@media (max-width: 1024px) and (orientation: landscape) {
  .landscape-block {
    display: flex; position: fixed; inset: 0; z-index: 99999;
    background: var(--site-background); align-items: center; justify-content: center;
    flex-direction: column; gap: 20px;
  }
  .landscape-block svg {
    width: 60px; height: 60px; color: #111;
    animation: rotateHint 2.2s ease-in-out infinite;
  }
  .landscape-block p {
    font-size: .78rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: .18em; color: rgba(0,0,0,.45); margin: 0;
  }
  body > *:not(#ww-landscape-block) { display: none !important; }
  #ww-landscape-block { display: block !important; }
}
@keyframes rotateHint {
  0%   { transform: rotate(0deg); }
  30%  { transform: rotate(90deg); }
  65%  { transform: rotate(90deg); }
  85%  { transform: rotate(0deg); }
  100% { transform: rotate(0deg); }
}


/* ── FIXED HEADER BRAND ─────────────────────────────────────── */
.ww-fixed-brand {
  position: absolute;
  top: 24px;
  left: 24px;
  z-index: 89;
  display: block;
  width: 203px;
  height: 60px;
  overflow: visible;
}
.ww-fixed-brand img {
  display: block;
  width: 203px;
  height: 60px;
}
body.menu-visible .ww-fixed-brand {
  opacity: 0;
  pointer-events: none;
}

/* ── HEADER ─────────────────────────────────────────────────── */
.site-header {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 50;
  padding: 1.25rem 0;
  background: rgba(255,228,230,.9);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 3px rgba(0,0,0,.05);
  transition: all .2s ease;
  border-bottom: 1px solid rgba(254,205,211,.5);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.header-brand {
  display: flex; align-items: center; gap: 12px;
  color: #111; transition: opacity .2s; user-select: none;
}
.header-brand:hover { opacity: .7; }
.header-brand img { height: 2rem; width: auto; }
@media (min-width: 768px) { .header-brand img { height: 2.5rem; } }
.header-brand-text {
  font-size: 1.45rem; font-weight: 900; letter-spacing: -.04em; line-height: 1;
}
@media (min-width: 768px) { .header-brand-text { font-size: 1.8rem; } }

/* Nav — always visible, wraps on small screens */
.header-nav {
  display: flex; align-items: center; gap: 2rem; flex-wrap: wrap;
}
.header-nav a,
.header-nav button {
  font-size: 10px; text-transform: uppercase; letter-spacing: .3em; font-weight: 800;
  transition: all .2s; color: #9ca3af; padding-bottom: 4px;
  border-bottom: 2px solid transparent; line-height: 1; white-space: nowrap;
}
.header-nav a:hover,
.header-nav button:hover { color: #111; }
.header-nav .is-active { color: #111; border-bottom-color: #111; }
@media (max-width: 640px) {
  .header-nav { gap: 1.25rem; }
  .header-nav a, .header-nav button { font-size: 9px; letter-spacing: .2em; }
}


/* ── ARCHIVE VIEW ────────────────────────────────────────────── */
.archive-view {
  padding-top: clamp(90px, 14vw, 140px);
  padding-bottom: 6rem;
}

/* Hero */
.archive-hero {
  max-width: 56rem; margin: 0 auto 2.5rem;
  padding: 0 1rem;
}
@media (min-width: 768px) { .archive-hero { padding: 0 2rem; margin-bottom: 3rem; } }
.archive-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(3.5rem, 8vw, 8rem);
  font-weight: 900; letter-spacing: -.04em; line-height: 1;
  margin-bottom: 2rem; color: #111;
}
.archive-hero-quote {
  font-size: clamp(1.1rem, 2.5vw, 1.875rem);
  font-weight: 300; line-height: 1.25;
  color: #1f2937; font-style: italic; opacity: .8;
  max-width: 42rem;
}

/* Toolbar */
.archive-toolbar {
  padding: .75rem 0; margin-bottom: 2rem;
  border-bottom: 1px solid rgba(0,0,0,.05);
}
.archive-toolbar-inner {
  display: flex; align-items: flex-end; justify-content: space-between; gap: 1rem;
}
.toolbar-columns { display: flex; align-items: center; gap: 1rem; }
.toolbar-label {
  font-size: 10px; text-transform: uppercase; letter-spacing: .4em;
  font-weight: 800; opacity: .3;
}
.toolbar-cols-control {
  display: flex; align-items: center;
  background: white; border: 1px solid rgba(0,0,0,.1);
  border-radius: 9999px; padding: .25rem .5rem; gap: 0;
}
.toolbar-cols-btn {
  padding: .375rem; border-radius: 9999px;
  transition: background .2s, color .2s; color: #111;
  display: flex; align-items: center; justify-content: center;
}
.toolbar-cols-btn:hover { background: #111; color: white; }
.toolbar-cols-btn:disabled { opacity: .2; cursor: not-allowed; }
.toolbar-cols-btn:disabled:hover { background: transparent; color: #111; }
.toolbar-cols-btn svg { width: 12px; height: 12px; }
.toolbar-cols-value {
  width: 2rem; text-align: center;
  font-family: monospace; font-size: .875rem; font-weight: 700;
  user-select: none;
}
.toolbar-filter { display: flex; align-items: center; gap: .75rem; justify-content: flex-end; }
.toolbar-filter label {
  font-size: 10px; text-transform: uppercase; letter-spacing: .4em;
  font-weight: 800; opacity: .3; white-space: nowrap;
}
.toolbar-filter select {
  height: 2.25rem; min-width: 220px; border-radius: 9999px;
  border: 1px solid rgba(0,0,0,.1); background: white;
  padding: 0 2.5rem 0 1rem; font-size: .75rem; font-weight: 300;
  color: #111; appearance: none; outline: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none' stroke='%23111' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 8l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; background-size: 16px;
}

/* Mobile toolbar */
@media (max-width: 640px) {
  .archive-toolbar-inner { flex-direction: column; align-items: stretch; }
  .toolbar-filter { justify-content: space-between; }
  .toolbar-filter select { flex: 1; min-width: 0; }
}

/* Archive grid */
.archive-grid {
  display: grid; gap: 1rem;
  transition: grid-template-columns .5s ease;
}
@media (min-width: 768px) { .archive-grid { gap: 1.5rem; } }

/* Lead card (black) */
.lead-card {
  position: relative; aspect-ratio: 4/3;
  background: #000; border-radius: var(--radius-card);
  padding: 1.25rem; display: flex; flex-direction: column;
  justify-content: space-between; overflow: hidden;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,.1), 0 4px 6px -4px rgba(0,0,0,.1);
}
@media (min-width: 768px) { .lead-card { padding: 1.5rem; } }
.lead-card-top {
  display: flex; justify-content: space-between; align-items: flex-start; z-index: 1;
}
.lead-card-city {
  font-size: 8px; color: white; font-weight: 800;
  text-transform: uppercase; letter-spacing: .4em;
  line-height: 1.3; word-break: break-word; padding-right: .5rem;
}
@media (min-width: 768px) { .lead-card-city { font-size: 9px; } }
.lead-card-vol {
  font-size: 7px; color: rgba(255,255,255,.2);
  font-family: monospace; letter-spacing: .25em; text-transform: uppercase;
  flex-shrink: 0;
}
.lead-card-bottom { z-index: 1; margin-top: auto; }
.lead-card-badge {
  display: inline-block; border: 1px solid #ef4444; color: #ef4444;
  font-size: 8px; font-weight: 800; padding: .25rem .5rem;
  text-transform: uppercase; letter-spacing: .2em; margin-bottom: 1rem;
  animation: pulse 2s cubic-bezier(.4,0,.6,1) infinite;
}
.lead-card-count {
  position: absolute; bottom: -1rem; right: -1rem;
  font-size: 7.5rem; font-weight: 800; line-height: .9;
  color: rgba(255,255,255,.03); pointer-events: none; user-select: none;
}

/* Image card */
.image-card {
  position: relative; aspect-ratio: 4/3;
  background: #e5e7eb; border-radius: var(--radius-card);
  overflow: hidden; cursor: pointer;
  box-shadow: 0 1px 3px rgba(0,0,0,.1);
  transition: box-shadow .3s;
}
.image-card:hover { box-shadow: 0 20px 25px -5px rgba(0,0,0,.15), 0 8px 10px -6px rgba(0,0,0,.1); }
.image-card img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  filter: grayscale(10%);
  transition: transform .7s cubic-bezier(.2,.8,.2,1), filter .5s ease, opacity .5s ease;
  opacity: 0;
}
.image-card img.is-loaded { opacity: 1; }
.image-card:hover img { transform: scale(1.08); filter: grayscale(0); }

/* Shimmer */
.card-shimmer {
  position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(255,255,255,.14), rgba(255,255,255,.36), rgba(255,255,255,.14));
  background-size: 180% 100%;
  animation: shimmer 1.5s linear infinite;
}
@keyframes shimmer { from { background-position: 200% 0; } to { background-position: -200% 0; } }

/* Hover overlay */
.card-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,.5); opacity: 0;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 1rem;
  transition: opacity .3s;
}
@media (min-width: 768px) { .card-overlay { padding: 1.25rem; } }
.image-card:hover .card-overlay { opacity: 1; }
.card-overlay-title {
  font-family: var(--font-serif); font-size: 1.125rem;
  font-style: italic; color: white; font-weight: 700;
  margin-bottom: .5rem; line-height: 1.2;
  transform: translateY(1rem);
  transition: transform .3s ease-out;
}
@media (min-width: 768px) { .card-overlay-title { font-size: 1.25rem; } }
.image-card:hover .card-overlay-title { transform: translateY(0); }
.card-overlay-title.is-gps {
  display: flex; align-items: center; gap: .375rem;
  background: none; border: none; text-align: left; cursor: pointer; padding: 0; width: fit-content;
  font-family: var(--font-serif); font-size: 1.125rem;
  font-style: italic; color: white; font-weight: 700;
  line-height: 1.2; transition: transform .3s ease-out, opacity .2s;
}
@media (min-width: 768px) { .card-overlay-title.is-gps { font-size: 1.25rem; } }
.image-card:hover .card-overlay-title.is-gps { transform: translateY(0); }
.card-overlay-title.is-gps:hover { opacity: .8; }
.card-overlay-title.is-gps svg { flex-shrink: 0; opacity: .8; }
.card-overlay-line {
  display: flex; justify-content: space-between; align-items: center;
  border-top: 1px solid rgba(255,255,255,.2); padding-top: .5rem;
  transform: translateY(1rem);
  transition: transform .5s ease-out;
}
.image-card:hover .card-overlay-line { transform: translateY(0); }
.card-date {
  font-size: 9px; text-transform: uppercase;
  letter-spacing: .25em; font-weight: 800; color: white;
}
.card-detail {
  font-size: 8px; font-family: monospace; color: rgba(255,255,255,.5);
}

/* Focus-zone mobile (touch devices) */
@media (max-width: 1023px) and (hover: none), (max-width: 1023px) and (pointer: coarse) {
  .image-card.is-focus .card-overlay { opacity: 1; }
  .image-card.is-focus .card-overlay-title,
  .image-card.is-focus .card-overlay-title.is-gps,
  .image-card.is-focus .card-overlay-line { transform: translateY(0); }
  .image-card.is-focus img { transform: scale(1.04); filter: grayscale(0); }
}
@media (max-width: 1023px) and (orientation: portrait) {
  .card-overlay { padding: 1rem !important; }
  .card-overlay-title, .card-overlay-title.is-gps {
    font-size: 1rem !important; line-height: 1.15 !important;
    margin-bottom: .5rem !important; transform: none !important;
    width: 100% !important; max-width: 100% !important;
    overflow-wrap: anywhere !important;
  }
  .card-overlay-line {
    transform: none !important; width: 100% !important;
    align-items: flex-end !important; column-gap: .75rem !important;
  }
  .card-date { font-size: 8px !important; }
  .card-detail { font-size: 7px !important; }
}

/* ── IMAGE MODAL ─────────────────────────────────────────────── */
.image-modal-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,.95);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  animation: fadeIn .18s ease;
}
.image-modal-scroll {
  position: relative; width: 100%; height: 100%;
  overflow-y: auto;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 1rem; cursor: default;
}
@media (min-width: 768px) { .image-modal-scroll { padding: 2rem; } }
.image-modal-container { position: relative; width: 100%; max-width: 64rem; }
.image-modal-close {
  position: absolute; top: .75rem; right: .75rem; z-index: 20;
  width: 2.5rem; height: 2.5rem; border-radius: 50%;
  background: rgba(255,255,255,.1); color: white;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
  backdrop-filter: blur(12px);
}
@media (min-width: 768px) { .image-modal-close { top: 1rem; right: 1rem; } }
.image-modal-close:hover { background: rgba(255,255,255,.2); }
.image-modal-close svg { width: 18px; height: 18px; }
.image-modal-img-wrap {
  display: flex; flex-direction: column;
  align-items: center; justify-content: flex-start;
  width: 100%; padding-top: .5rem; padding-bottom: 1.5rem;
}
@media (min-width: 768px) { .image-modal-img-wrap { padding-top: 1rem; } }
.image-modal-img-center {
  position: relative; width: 100%; display: flex; justify-content: center;
}
.image-modal-img {
  max-height: 78vh; max-width: 82vw;
  width: auto; height: auto; object-fit: contain;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,.5);
}
.image-modal-meta {
  width: 100%; max-width: 64rem;
  display: flex; flex-direction: column;
  justify-content: space-between; gap: 1rem;
  margin-top: 1.25rem; padding: 0 .5rem; color: white;
}
@media (min-width: 768px) {
  .image-modal-meta { flex-direction: row; }
}
.image-modal-title {
  font-family: var(--font-serif); font-size: 1.5rem;
  font-style: italic; color: white; line-height: 1.2;
  background: none; border: none; text-align: left; padding: 0; cursor: pointer;
  display: flex; align-items: center; gap: .5rem;
  transition: opacity .2s;
}
@media (min-width: 768px) { .image-modal-title { font-size: 1.875rem; } }
.image-modal-title:hover { opacity: .8; }
.image-modal-title svg { flex-shrink: 0; }
.image-modal-title-plain {
  font-family: var(--font-serif); font-size: 1.5rem;
  font-style: italic; color: white; line-height: 1.2;
}
@media (min-width: 768px) { .image-modal-title-plain { font-size: 1.875rem; } }
.image-modal-city {
  margin-top: .25rem; font-size: .75rem; text-transform: uppercase;
  letter-spacing: .35em; font-weight: 800; opacity: .8;
}
@media (min-width: 768px) { .image-modal-city { font-size: .875rem; } }
.image-modal-date {
  font-size: .75rem; text-transform: uppercase;
  letter-spacing: .35em; font-weight: 800; opacity: .8;
  align-self: flex-end;
}
@media (min-width: 768px) {
  .image-modal-date { font-size: .875rem; text-align: right; }
}

/* ── MAP MODAL ───────────────────────────────────────────────── */
.map-modal-overlay {
  position: fixed; inset: 0; z-index: 10000;
  background: rgba(0,0,0,.7);
  backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  padding: 1rem;
  animation: fadeIn .2s ease;
}
@media (min-width: 768px) { .map-modal-overlay { padding: 2rem; } }
.map-modal-panel {
  position: relative; width: 100%; max-width: 64rem;
  background: white; border-radius: 28px;
  overflow: hidden; box-shadow: 0 25px 50px -12px rgba(0,0,0,.5);
}
.map-modal-close {
  position: absolute; top: .75rem; right: .75rem; z-index: 10;
  width: 2.5rem; height: 2.5rem; border-radius: 50%;
  background: rgba(0,0,0,.1); color: #111;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.map-modal-close:hover { background: rgba(0,0,0,.2); }
.map-modal-close svg { width: 18px; height: 18px; }
.map-modal-header {
  display: flex; align-items: center; gap: .5rem;
  padding: 1rem 1.25rem; border-bottom: 1px solid rgba(0,0,0,.1);
  background: white;
}
.map-modal-header svg { color: rgba(0,0,0,.7); flex-shrink: 0; }
.map-modal-coord {
  font-size: .875rem; font-weight: 600; letter-spacing: .02em;
}
@media (min-width: 768px) { .map-modal-coord { font-size: 1rem; } }
.map-modal-ext {
  margin-left: auto; font-size: 10px; text-transform: uppercase;
  letter-spacing: .22em; font-weight: 800;
  color: rgba(0,0,0,.55); transition: color .2s; white-space: nowrap;
}
.map-modal-ext:hover { color: #111; }
.map-modal-frame { width: 100%; height: 60vh; background: #f6f6f6; }

/* ── ABOUT VIEW ──────────────────────────────────────────────── */
.about-view {
  padding-top: 0;
}
.about-main {
  padding-top: 8rem; padding-bottom: 0;
  max-width: 1600px; margin: 0 auto; padding-left: 1rem; padding-right: 1rem;
}
@media (min-width: 768px) { .about-main { padding-top: 10rem; padding-left: 2rem; padding-right: 2rem; } }

.about-section {
  display: grid; grid-template-columns: 1fr;
}
@media (min-width: 768px) { .about-section { grid-template-columns: 1fr 1fr; } }

/* Text side padding variants */
.about-copy-left {
  padding: 4rem 1.5rem;
  display: flex;
  align-items: flex-start;
}
@media (min-width: 768px) { .about-copy-left { padding: 6rem 3rem; } }
@media (min-width: 1024px) { .about-copy-left { padding: 6rem 5rem; } }
.about-copy-left-inner { max-width: 36rem; margin: 0 auto; margin-right: 0; padding-right: 0; }
@media (min-width: 768px) { .about-copy-left-inner { margin-left: auto; margin-right: 0; padding-right: 5rem; } }

.about-copy-right {
  padding: 4rem 1.5rem;
  display: flex;
  align-items: flex-start;
}
@media (min-width: 768px) { .about-copy-right { padding: 6rem 3rem; } }
.about-copy-right-inner { max-width: 36rem; margin: 0 auto; margin-right: auto; margin-left: 0; }
@media (min-width: 768px) { .about-copy-right-inner { margin-right: auto; margin-left: 0; padding-left: 3rem; } }

/* Section image side */
.about-img-side {
  position: relative; height: 60vh; min-height: 500px;
  overflow: hidden; background: #e5e7eb;
}
@media (min-width: 768px) { .about-img-side { height: auto; } }
.about-img-side img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  transition: opacity .7s ease;
}
.about-img-caption {
  position: absolute; bottom: 0; left: 0;
  padding: 1rem; background: rgba(255,255,255,.9);
  font-size: 10px; text-transform: uppercase; letter-spacing: .25em;
  font-weight: 700; z-index: 10;
}

/* Section headings */
.about-kicker {
  font-size: 10px; text-transform: uppercase; letter-spacing: .3em;
  font-weight: 800; opacity: .4; margin-bottom: .75rem; display: block;
}
.about-h1 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.75rem);
  line-height: .95; letter-spacing: -.04em; margin-bottom: 2.5rem;
}
.about-h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700; margin-bottom: 2rem;
}
.about-body { line-height: 1.7; font-weight: 300; font-size: 1.125rem; }
.about-body-stack > * + * { margin-top: 1.5rem; }

/* Section colors */
.about-section-0 { /* no bg override — inherits from copy/img divs */ }
.about-section-0 .about-copy-left { background: var(--pink); }
.about-section-1 { background: var(--yellow); }
.about-section-2 { background: var(--salmon); }
.about-section-3 { background: var(--blue); color: white; }
.about-section-4 { background: var(--pink); }

/* Order (method section) */
.order-first { order: -1; }
@media (min-width: 768px) { .order-first { order: 0; } }

/* Archive / history columns */
.about-two-col {
  display: grid; grid-template-columns: 1fr;
  gap: 2.5rem; font-size: .875rem; margin-top: 3rem;
}
@media (min-width: 640px) { .about-two-col { grid-template-columns: 1fr 1fr; } }
.about-two-col h4 {
  font-size: 10px; text-transform: uppercase; letter-spacing: .3em;
  font-weight: 800; opacity: .5; margin-bottom: 1rem;
}
.about-two-col ul { display: flex; flex-direction: column; gap: .75rem; }
.about-two-col li { display: flex; flex-direction: column; gap: .2rem; }
.about-two-col li strong { font-weight: 800; font-size: 10px; text-transform: uppercase; letter-spacing: .15em; }
.about-two-col li span { font-weight: 300; line-height: 1.5; }

/* Tags (context section) */
.about-tags {
  display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 2rem;
}
.about-tags span {
  border: 1px solid rgba(255,255,255,.3);
  padding: .5rem .875rem; border-radius: 9999px;
  font-size: .8rem; font-weight: 500; color: rgba(255,255,255,.8);
}

/* CTA button */
.cta-btn {
  display: inline-block; border: 2px solid #111;
  padding: .75rem 2rem; font-size: 10px;
  text-transform: uppercase; letter-spacing: .25em; font-weight: 800;
  transition: background .2s, color .2s; margin-top: 2rem;
  color: #111;
}
.cta-btn:hover { background: #111; color: white; }

/* Author card */
.author-card {
  margin-top: 1.5rem; display: flex; flex-direction: column; gap: .5rem;
  font-size: .875rem; font-weight: 300; line-height: 1.7; color: rgba(0,0,0,.7);
}
.author-card strong { font-weight: 700; color: #111; }
.author-credits {
  padding-top: 2rem; border-top: 1px solid rgba(0,0,0,.1);
  margin-top: 2rem; font-size: 10px; color: #6b7280;
  text-transform: uppercase; letter-spacing: .25em; font-weight: 700;
  display: flex; flex-direction: column; gap: .25rem;
}

/* ── FOOTER ──────────────────────────────────────────────────── */
.site-footer {
  background: rgba(255,255,255,.5);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  padding-top: 4rem; padding-bottom: 3rem;
  border-top: 1px solid rgba(254,205,211,1);
  margin-top: 5rem; position: relative; z-index: 40;
}
.footer-grid {
  display: grid; grid-template-columns: 1fr; gap: 3rem;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: 4fr 8fr; } }

/* Footer nav */
.footer-nav-label {
  font-size: 10px; text-transform: uppercase; letter-spacing: .3em;
  font-weight: 800; opacity: .3; display: block; margin-bottom: 1rem;
}
.footer-nav { display: flex; flex-direction: column; gap: .75rem; }
.footer-nav a,
.footer-nav button {
  font-size: .875rem; color: #111; transition: color .2s; text-align: left;
  font-weight: 400;
}
.footer-nav a:hover,
.footer-nav button:hover { color: #6b7280; }

/* Footer contact */
.footer-contact { display: flex; flex-direction: column; align-items: flex-end; }
.footer-contact-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.125rem);
  margin-bottom: 3rem; line-height: 1; color: rgba(0,0,0,.8); text-align: right;
}
.footer-contact-inner { display: flex; flex-direction: column; gap: .375rem; max-width: 20rem; text-align: right; }
.footer-contact-text { font-size: .875rem; font-weight: 300; line-height: 1.6; color: #374151; }
.footer-contact .contact-reveal { margin-top: .5rem; justify-content: flex-end; }
.footer-contact .contact-reveal:hover { color: #111; }

/* Footer signature */
.footer-sig {
  margin-top: 5rem; padding-top: 2rem;
  border-top: 1px solid #e5e7eb;
  display: flex; justify-content: flex-end;
}
.footer-sig-inner { display: flex; flex-direction: column; align-items: flex-end; gap: .5rem; }
.footer-sig-logo { width: 160px; height: auto; }
.footer-sig-copy { font-size: .75rem; color: #9ca3af; }

/* ── WW FOOTER (black) ───────────────────────────────────────── */
.ww-footer {
  background: var(--black); color: var(--white);
  min-height: 75vh; width: 100%; position: relative; z-index: 2;
}
.ww-footer-inner {
  min-height: 75vh; position: relative;
  padding: var(--padding);
}
.ww-footer nav ul {
  font-size: 2rem; line-height: 2rem;
  font-family: var(--font-display); text-transform: uppercase; font-weight: 800;
}
.ww-footer nav ul li { margin-bottom: .28em; }
.ww-footer nav ul a,
.ww-footer nav ul button {
  color: var(--color-grey); transition: color var(--timing) var(--ease1);
  font: inherit; text-transform: uppercase; background: transparent;
  border: 0; padding: 0; text-align: left; cursor: pointer;
}
.ww-footer nav ul a:hover,
.ww-footer nav ul button:hover { color: var(--white); }
.ww-footer-contact {
  margin-top: 3em; display: flex; flex-direction: column;
  align-items: flex-start; gap: 10px;
}
.ww-footer-contact-title {
  margin: 0; font-family: var(--font-display); font-size: 2rem;
  text-transform: uppercase; font-weight: 800;
}
.ww-footer-contact-text {
  margin: 0; max-width: 34ch;
  font-family: Helvetica, Arial, sans-serif; font-size: 1em; line-height: 1.4;
}
.ww-footer .contact-reveal {
  font-family: Helvetica, Arial, sans-serif; font-size: 1em; line-height: 1.4;
}
.ww-footer-copy {
  position: absolute; bottom: var(--padding); right: var(--padding);
  font-size: .667rem; line-height: 1.4; font-family: Helvetica, Arial, sans-serif;
  text-align: right; color: var(--color-grey);
}
.ww-footer-copy img { width: 130px; height: auto; display: block; margin-left: auto; margin-bottom: .6em; }

@media (max-width: 768px) {
  .ww-footer nav ul { font-size: 1.45rem; }
  .ww-footer-copy { position: static; margin-top: 60px; }
}

/* ── LOADING STATE ───────────────────────────────────────────── */
.archive-state {
  padding: 1.5rem; border-radius: 1rem;
  background: rgba(255,255,255,.72); border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 8px 20px rgba(0,0,0,.04);
  font-size: .9rem; color: #555;
}
.archive-state-error { color: #b00020; }

/* ── CONTRIBUTE VIEW ─────────────────────────────────────────── */
.contribute-view { padding-top: 0; }

.contribute-hero {
  background: var(--pink);
  padding: clamp(8rem, 14vw, 12rem) 0 4rem;
}
.contribute-kicker {
  display: inline-block; font-size: 10px; text-transform: uppercase;
  letter-spacing: .35em; font-weight: 800; opacity: .4; margin-bottom: 1rem;
}
.contribute-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(3.5rem, 8vw, 8rem);
  font-weight: 900; letter-spacing: -.04em; line-height: 1;
  margin-bottom: 1.5rem; color: #111;
}
.contribute-lead {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 300; line-height: 1.65; color: #374151;
  max-width: 52rem;
}

.contribute-body {
  padding: 4rem 0 0;
}
.contribute-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 4rem;
}
@media (min-width: 768px) {
  .contribute-grid { grid-template-columns: 1fr 320px; gap: 5rem; }
}

.contribute-main h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  margin: 2.5rem 0 1rem; color: #111;
}
.contribute-main h2:first-child { margin-top: 0; }
.contribute-main p {
  font-size: 1rem; line-height: 1.75; color: #374151;
  font-weight: 300; margin-bottom: 1rem;
}
.contribute-list {
  list-style: none; padding: 0; margin: 0 0 1rem;
  display: flex; flex-direction: column; gap: .5rem;
}
.contribute-list li {
  font-size: 1rem; line-height: 1.75; color: #374151;
  font-weight: 300; padding-left: 1.25rem; position: relative;
}
.contribute-list li::before {
  content: '—'; position: absolute; left: 0; color: #9ca3af;
}

.contribute-cta {
  margin-top: 3rem; padding-top: 2rem;
  border-top: 1px solid rgba(0,0,0,.08);
  display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap;
}
.contribute-cta-label {
  font-size: .85rem; text-transform: uppercase; letter-spacing: .2em;
  font-weight: 700; color: #9ca3af; margin: 0;
}

.contribute-aside {
  display: flex; flex-direction: column; gap: 1.5rem;
}
.contribute-aside-block {
  background: white; border-radius: 1.25rem;
  padding: 1.5rem; border: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 4px 12px rgba(0,0,0,.04);
}
.contribute-aside-block h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem; margin-bottom: .75rem; color: #111;
}
.contribute-aside-block p {
  font-size: .875rem; line-height: 1.65; color: #6b7280;
  font-weight: 300; margin-bottom: 1rem;
}
.contribute-back {
  font-size: 10px; text-transform: uppercase; letter-spacing: .2em;
  font-weight: 800; color: #111; border-bottom: 1px solid #111;
  padding-bottom: 2px; transition: opacity .2s;
}
.contribute-back:hover { opacity: .6; }


/* ── V3.016 FIXES ───────────────────────────────────────────── */
/* Mobile portrait: header brand aligned to burger and scrolls with page */
@media (max-width: 720px) and (orientation: portrait) {
  .ww-fixed-brand {
    position: absolute;
    top: 24px;
    left: 24px;
    width: auto;
    height: 52px;
    display: flex;
    align-items: center;
  }
  .ww-fixed-brand img {
    width: auto;
    height: 52px;
    max-width: none;
    display: block;
  }
}

/* Footer + menu text colors */
.menu-contact,
.menu-contact-title,
.menu-contact-text,
footer #mc_embed_signup,
footer #mc_embed_signup h4.contact-footer-title,
footer #mc_embed_signup .contact-footer-text,
.copyright {
  color: var(--color-grey);
}

footer ul li a,
footer ul li a:visited {
  color: var(--color-grey);
  transition: color .2s ease;
}
footer ul li a:hover,
footer ul li a:focus-visible {
  color: var(--white);
  outline: none;
}

/* Preserve yellow reveal interaction */
footer .contact-reveal,
footer .contact-email-link,
.menu .contact-reveal,
.menu .contact-email-link {
  color: var(--color-grey);
}
footer .contact-reveal:hover,
footer .contact-reveal:focus-visible,
footer .contact-email-link:hover,
footer .contact-email-link:focus-visible,
.menu .contact-reveal:hover,
.menu .contact-reveal:focus-visible,
.menu .contact-email-link:hover,
.menu .contact-email-link:focus-visible {
  color: var(--color-yellow);
  outline: none;
}


/* Desktop-only header/footer refinement — aligned to extraction package desktop reference */
@media (min-width: 721px) {
  .menu ul,
  .menu ul li a,
  .menu-contact,
  .menu-contact-title,
  .menu-contact-text,
  body > footer.site-footer-ww,
  body > footer.site-footer-ww ul,
  body > footer.site-footer-ww ul li a,
  body > footer.site-footer-ww #mc_embed_signup,
  body > footer.site-footer-ww #mc_embed_signup h4.contact-footer-title,
  body > footer.site-footer-ww #mc_embed_signup .contact-footer-text,
  body > footer.site-footer-ww .copyright {
    color: var(--color-grey);
  }

  .menu ul li a,
  body > footer.site-footer-ww ul li a,
  body > footer.site-footer-ww ul li a:visited {
    color: var(--color-grey);
    transition: color .2s ease;
  }

  .menu ul li a:hover,
  .menu ul li a:focus-visible,
  body > footer.site-footer-ww ul li a:hover,
  body > footer.site-footer-ww ul li a:focus-visible {
    color: var(--white);
    outline: none;
  }

  .menu .contact-reveal,
  .menu .contact-email-link,
  body > footer.site-footer-ww .contact-reveal,
  body > footer.site-footer-ww .contact-email-link {
    color: var(--color-grey);
  }

  .menu .contact-reveal:hover,
  .menu .contact-reveal:focus-visible,
  .menu .contact-email-link:hover,
  .menu .contact-email-link:focus-visible,
  body > footer.site-footer-ww .contact-reveal:hover,
  body > footer.site-footer-ww .contact-reveal:focus-visible,
  body > footer.site-footer-ww .contact-email-link:hover,
  body > footer.site-footer-ww .contact-email-link:focus-visible {
    color: var(--color-yellow);
    outline: none;
  }

  body > footer.site-footer-ww,
  body > footer.site-footer-ww > div {
    min-height: 100vh;
  }

  body > footer.site-footer-ww > div {
    padding: 42px 44px 40px;
  }

  body > footer.site-footer-ww ul {
    font-size: clamp(3rem, 3.45vw, 4.25rem);
    line-height: .92;
    color: var(--color-grey);
    max-width: 9.5em;
  }

  body > footer.site-footer-ww ul li,
  body > footer.site-footer-ww ul li a {
    margin-bottom: .14em;
  }

  body > footer.site-footer-ww #mc_embed_signup {
    top: 42px;
    right: 44px;
    width: min(30vw, 470px);
    max-width: 470px;
    color: var(--color-grey);
  }

  body > footer.site-footer-ww #mc_embed_signup .contact-footer-inner {
    gap: 12px;
  }

  body > footer.site-footer-ww #mc_embed_signup h4.contact-footer-title {
    font-size: clamp(3rem, 3.25vw, 4.1rem);
    line-height: .92;
    margin: 0 0 .18em;
    color: var(--color-grey);
  }

  body > footer.site-footer-ww #mc_embed_signup .contact-footer-text,
  body > footer.site-footer-ww #mc_embed_signup button,
  body > footer.site-footer-ww #mc_embed_signup .contact-email-link {
    font-size: clamp(1rem, 1.02vw, 1.2rem);
    line-height: 1.42;
  }

  body > footer.site-footer-ww #mc_embed_signup .contact-footer-text {
    max-width: 18ch;
    margin: 0 0 .2em;
  }

  body > footer.site-footer-ww .copyright {
    right: 44px;
    bottom: 40px;
    font-size: 11px;
    line-height: 1.35;
    color: var(--color-grey);
  }

  body > footer.site-footer-ww .copyright img {
    width: 160px;
    height: 47px;
    margin-bottom: .7em;
  }
}


/* ── V3.018 FIXES ───────────────────────────────────────────── */
/* Global reveal email must show .com */
.contact-reveal[data-email] { }

/* Header logo scrolls with the page on all views */
.ww-fixed-brand {
  position: absolute;
}

/* Slightly larger desktop copyright to match reference */
@media (min-width: 721px) {
  .copyright {
    font-size: 0.82rem;
    line-height: 1.35;
  }
}

/* Mobile landscape rotation helper: cleaner phone proportions */
@media (max-width: 1024px) and (orientation: landscape) {
  .landscape-block svg {
    width: 68px;
    height: 68px;
    stroke-linejoin: round;
    shape-rendering: geometricPrecision;
  }
}

/* Mobile portrait: hero logo reduced 20% and aligned with burger */
@media (max-width: 720px) and (orientation: portrait) {
  .ww-fixed-brand {
    top: 26px;
    left: 24px;
    height: 48px;
    display: flex;
    align-items: center;
  }
  .ww-fixed-brand img {
    height: 48px;
    width: auto;
  }

  body.menu-visible .menu > div > a#home {
    position: absolute;
    top: 26px;
    left: 24px;
    width: auto;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    z-index: 2;
  }
  body.menu-visible .menu > div > a#home img {
    width: auto;
    height: 48px;
    margin: 0;
  }
  body.menu-visible .menu > div {
    padding-top: 108px;
  }
}


/* ── V3.019 FIXES ───────────────────────────────────────────── */
.archive-hero-kicker {
  font-family: "Google Sans", Arial, sans-serif;
  font-size: clamp(0.72rem, 1.2vw, 0.95rem);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #6b7280;
  margin-bottom: 0.7rem;
}

@media (max-width: 720px) and (orientation: portrait) {
  .ww-fixed-brand {
    top: 24px;
    left: 24px;
    height: 48px;
    width: auto;
    display: flex;
    align-items: center;
  }
  .ww-fixed-brand img {
    height: 48px;
    width: auto;
    display: block;
  }

  body.menu-visible .menu > div > a#home {
    position: absolute;
    top: 24px;
    left: 24px;
    width: auto;
    height: 48px;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    z-index: 2;
  }
  body.menu-visible .menu > div > a#home img {
    width: auto;
    height: 48px;
    margin: 0;
    display: block;
  }

  .archive-view {
    padding-top: 150px;
  }
  .archive-hero {
    padding-top: 0;
    margin-bottom: 2.25rem;
  }
  .archive-hero-kicker {
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    margin-bottom: 0.6rem;
  }
  .archive-hero h1 {
    margin-bottom: 1.2rem;
  }
  .archive-hero-quote {
    margin-top: 0;
  }
}


/* ── V3.020 FIXES ───────────────────────────────────────────── */
/* Keep LAST LOST anchored at bottom of the black lead card */
.lead-card-bottom {
  margin-top: auto;
  min-height: 2rem;
  display: flex;
  align-items: flex-end;
}
.lead-card-badge {
  margin-bottom: 0;
  align-self: flex-end;
}

/* Align GPS icon with coordinate text and keep metadata neat */
.card-overlay-title.is-gps {
  display: inline-flex;
  align-items: center;
}
.card-overlay-title.is-gps svg {
  width: 1em;
  height: 1em;
  position: relative;
  top: 0.02em;
}
.card-overlay-title.is-gps span {
  display: inline-block;
}

/* Date and CTA alignment */
.card-overlay-line {
  align-items: baseline;
}
.card-date,
.card-detail {
  white-space: nowrap;
}
.card-detail {
  color: #fff;
  text-transform: none;
  text-align: right;
  margin-left: auto;
  line-height: 1;
}

/* Mobile portrait hero and cards */
@media (max-width: 1023px) and (orientation: portrait) {
  .archive-hero-kicker {
    font-size: calc(0.72rem * 1.5);
    margin-bottom: 0.48rem;
  }
  .archive-view {
    padding-top: 150px;
  }
  .archive-hero h1 {
    margin-bottom: 0.85rem;
  }
  .archive-hero-quote {
    margin-top: 0;
  }
  .card-overlay-title.is-gps {
    font-size: 0.84rem !important;
    line-height: 1.1 !important;
    white-space: nowrap !important;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .card-overlay-title.is-gps svg {
    flex: 0 0 auto;
    width: 0.9em;
    height: 0.9em;
  }
  .card-overlay-line {
    align-items: baseline !important;
  }
  .toolbar-cols-btn:disabled {
    pointer-events: none;
  }
}


/* ── V3.021 FIXES ───────────────────────────────────────────── */
@media (min-width: 1024px) {
  .archive-hero-kicker {
    font-size: calc(clamp(0.72rem, 1.2vw, 0.95rem) * 1.5);
  }
}

/* Remove former details CTA spacing while keeping date alignment */
.card-overlay-line {
  justify-content: flex-start;
}
.card-detail {
  display: none !important;
}


#app { background: transparent; }


/* Lazy image state: thumbnails become visible after IntersectionObserver loads them */
.image-card.is-image-loaded .card-shimmer {
  display: none;
}
.image-card img.is-loaded {
  opacity: 1;
}

/* ─────────────────────────────────────────────────────────────
   V3.024 — PIXEL-PERFECT WW HEADER COORDINATES
   Mapping WW .ww-scroll-wordmark → TLGA .ww-fixed-brand.
   Replicates WW wordmark coordinates instead of TLGA custom offsets.
───────────────────────────────────────────────────────────── */

/* DESKTOP / DEFAULT — WW uses --padding: 40px; logo height: 60px */
.ww-fixed-brand,
body:not(.menu-visible) .ww-fixed-brand {
  position: absolute !important;
  top: 40px !important;
  left: 40px !important;
  right: auto !important;
  width: auto !important;
  height: 60px !important;
  display: flex !important;
  align-items: center !important;
  overflow: visible !important;
  z-index: 89 !important;
  transform: translateZ(0) !important;
}
.ww-fixed-brand img,
body:not(.menu-visible) .ww-fixed-brand img {
  display: block !important;
  width: auto !important;
  height: 60px !important;
  max-width: none !important;
  object-fit: contain !important;
}
body.menu-visible .ww-fixed-brand {
  opacity: 0 !important;
  pointer-events: none !important;
}

/* WW mobile breakpoint: --padding becomes 30px up to 720px */
@media (max-width: 720px) {
  .ww-fixed-brand,
  body:not(.menu-visible) .ww-fixed-brand {
    top: 30px !important;
    left: 30px !important;
    height: 45px !important;
  }
  .ww-fixed-brand img,
  body:not(.menu-visible) .ww-fixed-brand img {
    height: 45px !important;
    width: auto !important;
  }
}

/* WW narrow mobile breakpoint: --padding becomes 20px up to 640px */
@media (max-width: 640px) {
  .ww-fixed-brand,
  body:not(.menu-visible) .ww-fixed-brand {
    top: 20px !important;
    left: 20px !important;
    height: 30px !important;
  }
  .ww-fixed-brand img,
  body:not(.menu-visible) .ww-fixed-brand img {
    height: 30px !important;
    width: auto !important;
  }
}


/* ── SEND PHOTO FORM ─────────────────────────────────────────── */
.send-photo-panel{margin-top:3rem;margin-bottom:60px;padding:clamp(1.25rem,3vw,2rem);border-radius:1.5rem;background:rgba(255,255,255,.58);border:1px solid rgba(0,0,0,.08);box-shadow:0 10px 30px rgba(0,0,0,.05)}
.send-photo-heading{margin-bottom:1.5rem}.send-photo-kicker{display:inline-block;margin-bottom:.75rem;font-size:10px;text-transform:uppercase;letter-spacing:.28em;font-weight:800;color:rgba(17,17,17,.45)}
.send-photo-heading h2{margin:0 0 .75rem!important}.send-photo-heading p{max-width:46rem;margin-bottom:0}.send-photo-form{display:grid;gap:1rem}.send-photo-hp{position:absolute!important;left:-10000px!important;width:1px!important;height:1px!important;opacity:0!important;pointer-events:none!important}
.send-photo-dropzone{display:flex;min-height:180px;align-items:center;justify-content:center;flex-direction:column;gap:.45rem;padding:1.5rem;border:1.5px dashed rgba(17,17,17,.28);border-radius:1.25rem;background:rgba(255,255,255,.5);cursor:pointer;text-align:center;transition:background .2s ease,border-color .2s ease,transform .2s ease}
.send-photo-dropzone:hover,.send-photo-dropzone.is-dragover{background:rgba(255,255,255,.82);border-color:rgba(17,17,17,.65);transform:translateY(-1px)}.send-photo-dropzone input{display:none}.send-photo-drop-title{font-size:clamp(1.15rem,2vw,1.55rem);font-weight:800;color:#111}.send-photo-drop-subtitle{font-size:.82rem;text-transform:uppercase;letter-spacing:.14em;color:rgba(17,17,17,.52);font-weight:700}
.send-photo-preview{display:grid;grid-template-columns:120px 1fr;gap:1rem;align-items:center;padding:.75rem;border-radius:1rem;background:rgba(255,255,255,.62);border:1px solid rgba(0,0,0,.06)}.send-photo-preview[hidden]{display:none}.send-photo-preview img{width:120px;height:120px;object-fit:cover;border-radius:.85rem}.send-photo-remove{justify-self:start;font-size:10px;text-transform:uppercase;letter-spacing:.18em;font-weight:800;border-bottom:1px solid currentColor}
.send-photo-fields{display:grid;grid-template-columns:1fr;gap:.9rem}@media (min-width:720px){.send-photo-fields{grid-template-columns:1fr 1fr}.send-photo-address-field,.send-photo-notes-field{grid-column:1/-1}}.send-photo-fields label{display:grid;gap:.4rem}.send-photo-fields span{font-size:10px;text-transform:uppercase;letter-spacing:.18em;font-weight:800;color:rgba(17,17,17,.58)}.send-photo-fields em{font-style:normal;font-weight:600;opacity:.65;letter-spacing:.08em}
.send-photo-fields input,.send-photo-fields textarea{width:100%;border:1px solid rgba(0,0,0,.12);border-radius:.9rem;background:rgba(255,255,255,.86);padding:.85rem .95rem;font:inherit;color:#111;outline:none}.send-photo-fields input:focus,.send-photo-fields textarea:focus{border-color:rgba(0,0,0,.55)}.send-photo-fields small{font-size:.75rem;line-height:1.45;color:rgba(17,17,17,.52)}
.send-photo-message{min-height:1.4rem;font-size:.9rem;line-height:1.5;color:rgba(17,17,17,.62)}.send-photo-message.is-error{color:#9f1239}.send-photo-message.is-success{color:#166534}.send-photo-message.is-info{color:rgba(17,17,17,.62)}.send-photo-submit{justify-self:start}.send-photo-submit:disabled{opacity:.55;cursor:wait}.contribute-body{padding-bottom:60px}

/* TLGA contribute upload form refinements */
.contribute-cta-form-title{
  display:block;
  margin-top:clamp(2.25rem,5vw,4.25rem);
  margin-bottom:1rem;
  border:0;
  padding:0;
}
.contribute-cta-form-title .contribute-cta-label{
  margin:0;
}
.send-photo-panel{
  margin-top:0;
  padding:0 0 60px;
  border:0;
  border-radius:0;
  background:transparent;
  box-shadow:none;
}
.send-photo-form{
  max-width:760px;
}
.send-photo-dropzone{
  min-height:220px;
  border:2px dashed rgba(17,17,17,.32);
  border-radius:0;
  background:rgba(255,255,255,.16);
}
.send-photo-preview{
  grid-template-columns:112px 1fr;
  border-radius:0;
  background:rgba(255,255,255,.20);
  border-color:rgba(17,17,17,.10);
}
.send-photo-preview img{
  width:112px;
  height:112px;
  border-radius:0;
}
.send-photo-preview-copy{
  display:grid;
  gap:.35rem;
  align-content:center;
}
.send-photo-preview-copy strong{
  font-size:.9rem;
  text-transform:uppercase;
  letter-spacing:.18em;
}
.send-photo-preview-copy span{
  color:rgba(17,17,17,.58);
}
.send-photo-summary,
.send-photo-manual{
  padding:1rem;
  border:1px solid rgba(17,17,17,.16);
  background:rgba(255,255,255,.18);
}
.send-photo-summary[hidden],
.send-photo-manual[hidden]{display:none!important;}
.send-photo-summary-title,
.send-photo-manual-title{
  margin:0 0 .75rem;
  font-size:10px;
  text-transform:uppercase;
  letter-spacing:.22em;
  font-weight:800;
  color:rgba(17,17,17,.58);
}
.send-photo-summary dl{
  display:grid;
  gap:.55rem;
  margin:0;
}
.send-photo-summary dl div{
  display:grid;
  grid-template-columns:130px 1fr;
  gap:1rem;
}
.send-photo-summary dt{
  font-size:10px;
  text-transform:uppercase;
  letter-spacing:.18em;
  font-weight:800;
  color:rgba(17,17,17,.50);
}
.send-photo-summary dd{
  margin:0;
  color:#111;
}
.send-photo-date-notes{
  margin-top:.15rem;
}
@media (max-width:720px){
  .send-photo-preview{grid-template-columns:1fr;}
  .send-photo-preview img{width:100%;height:auto;max-height:260px;}
  .send-photo-summary dl div{grid-template-columns:1fr;gap:.15rem;}
}

/* TLGA public contribution form — clean English upload flow */
#send-photo.send-photo-panel{
  margin-top:1.25rem;
  margin-bottom:60px;
  padding:0;
  border:0;
  background:transparent;
  box-shadow:none;
}
#send-photo .send-photo-form{
  max-width:none;
  display:block;
}
#send-photo .send-photo-card{
  padding:clamp(1.35rem,3vw,2rem);
  border:1px solid rgba(17,17,17,.08);
  border-radius:28px;
  background:rgba(255,255,255,.72);
  box-shadow:0 18px 48px rgba(17,17,17,.045);
}
#send-photo .send-photo-section-label{
  margin:0 0 1.05rem;
  color:rgba(17,17,17,.55);
  font-size:clamp(.84rem,1.2vw,1rem);
  font-weight:800;
  letter-spacing:.28em;
  line-height:1.1;
  text-transform:uppercase;
}
#send-photo .send-photo-dropzone{
  min-height:128px;
  padding:1.25rem;
  border:1px dashed rgba(17,17,17,.20);
  border-radius:20px;
  background:rgba(255,255,255,.58);
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.35);
}
#send-photo .send-photo-dropzone:hover,
#send-photo .send-photo-dropzone.is-dragover{
  background:rgba(255,255,255,.86);
  border-color:rgba(17,17,17,.55);
  transform:none;
}
#send-photo .send-photo-drop-title{
  font-size:clamp(1.05rem,1.9vw,1.35rem);
  font-weight:800;
  letter-spacing:.02em;
}
#send-photo .send-photo-drop-subtitle{
  max-width:34rem;
  font-size:.82rem;
  line-height:1.45;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:rgba(17,17,17,.52);
}
#send-photo .send-photo-preview{
  margin-top:1rem;
  padding:.85rem;
  grid-template-columns:96px 1fr;
  border:1px solid rgba(17,17,17,.08);
  border-radius:18px;
  background:rgba(255,255,255,.60);
}
#send-photo .send-photo-preview img{
  width:96px;
  height:96px;
  border-radius:14px;
}
#send-photo .send-photo-preview-copy strong{
  font-size:.82rem;
  letter-spacing:.20em;
  text-transform:uppercase;
}
#send-photo .send-photo-preview-copy span{
  color:rgba(17,17,17,.58);
  line-height:1.45;
}
#send-photo .send-photo-remove{
  margin-top:.15rem;
  justify-self:start;
  font-size:.68rem;
  letter-spacing:.18em;
  text-transform:uppercase;
}
#send-photo .send-photo-summary,
#send-photo .send-photo-manual{
  margin-top:1rem;
  padding:clamp(1.15rem,2.5vw,1.7rem);
  border-radius:22px;
  background:rgba(245,255,250,.70);
}
#send-photo .send-photo-summary{
  border:1px solid rgba(35,160,90,.24);
}
#send-photo .send-photo-manual{
  border:1px solid rgba(190,138,30,.28);
  background:rgba(255,250,238,.72);
}
#send-photo .send-photo-summary-title,
#send-photo .send-photo-manual-title{
  margin:0 0 .55rem;
  color:#111;
  font-size:.86rem;
  font-weight:800;
  letter-spacing:.24em;
  line-height:1.25;
  text-transform:uppercase;
}
#send-photo .send-photo-summary-copy{
  margin:.35rem 0 1.35rem;
  color:#111;
  font-size:clamp(1.05rem,1.8vw,1.25rem);
  line-height:1.45;
}
#send-photo .send-photo-summary dl{
  gap:.8rem;
}
#send-photo .send-photo-summary dl div{
  grid-template-columns:minmax(150px,220px) 1fr;
  align-items:start;
}
#send-photo .send-photo-summary dt,
#send-photo .send-photo-fields span{
  color:rgba(17,17,17,.55);
  font-size:.72rem;
  font-weight:800;
  letter-spacing:.22em;
  line-height:1.25;
  text-transform:uppercase;
}
#send-photo .send-photo-summary dd{
  color:#111;
  font-size:1.05rem;
  line-height:1.35;
}
#send-photo .send-photo-fields{
  margin-top:1rem;
  gap:1rem;
}
#send-photo .send-photo-fields label{
  gap:.5rem;
}
#send-photo .send-photo-fields input,
#send-photo .send-photo-fields textarea{
  padding:1rem 1.15rem;
  border:1px solid rgba(17,17,17,.12);
  border-radius:18px;
  background:rgba(255,255,255,.76);
  color:#111;
  font-size:1rem;
  line-height:1.35;
}
#send-photo .send-photo-fields input::placeholder,
#send-photo .send-photo-fields textarea::placeholder{
  color:rgba(17,17,17,.34);
}
#send-photo .send-photo-fields small{
  max-width:42rem;
  color:rgba(17,17,17,.52);
  font-size:.85rem;
  line-height:1.45;
}
#send-photo .send-photo-date-notes{
  margin-top:1rem;
}
#send-photo .send-photo-message{
  margin-top:1rem;
  min-height:1.5rem;
  color:rgba(17,17,17,.60);
  font-size:.95rem;
  line-height:1.5;
}
#send-photo .send-photo-submit{
  margin-top:.65rem;
  min-width:220px;
}
@media (max-width:720px){
  #send-photo .send-photo-card{border-radius:22px;padding:1.15rem;}
  #send-photo .send-photo-preview{grid-template-columns:1fr;}
  #send-photo .send-photo-preview img{width:100%;height:auto;max-height:260px;}
  #send-photo .send-photo-summary dl div{grid-template-columns:1fr;gap:.2rem;}
  #send-photo .send-photo-submit{width:100%;}
}

/* TLGA contribute upload form — refined public UI */
#send-photo.send-photo-panel{
  margin-top:clamp(3rem,7vw,5.5rem);
  margin-bottom:60px;
  padding:0;
  background:transparent;
  border:0;
  box-shadow:none;
}
#send-photo .send-photo-title{
  margin:0 0 clamp(1.6rem,3vw,2.4rem);
  font-size:clamp(3.2rem,7vw,6rem);
  line-height:.92;
  letter-spacing:-.045em;
  color:#111;
}
#send-photo .send-photo-form{
  display:grid;
  gap:1.35rem;
  max-width:100%;
}
#send-photo .send-photo-card{
  background:rgba(255,255,255,.72);
  border:1px solid rgba(0,0,0,.09);
  border-radius:26px;
  padding:clamp(1rem,2.4vw,1.65rem);
  box-shadow:0 10px 34px rgba(0,0,0,.035);
}
#send-photo .send-photo-file-row{
  display:flex;
  align-items:center;
  gap:.75rem;
  min-height:4.5rem;
  padding:.75rem .9rem;
  border:1px solid rgba(0,0,0,.12);
  border-radius:20px;
  background:#fff;
  cursor:pointer;
}
#send-photo .send-photo-file-row input[type="file"]{
  position:absolute!important;
  width:1px!important;
  height:1px!important;
  overflow:hidden!important;
  clip:rect(0 0 0 0)!important;
  white-space:nowrap!important;
  opacity:0!important;
  pointer-events:none!important;
}
#send-photo .send-photo-file-button{
  flex:0 0 auto;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:2.3rem;
  padding:.35rem .85rem;
  border-radius:9px;
  background:#f1f1f1;
  color:#111;
  font-size:clamp(1rem,1.8vw,1.35rem);
  line-height:1;
  cursor:pointer;
}
#send-photo .send-photo-file-state{
  display:flex;
  align-items:center;
  gap:.55rem;
  min-width:0;
  color:#111;
  font-size:clamp(1rem,1.8vw,1.35rem);
  line-height:1.15;
}
#send-photo .send-photo-thumb{
  width:34px;
  height:34px;
  object-fit:cover;
  border-radius:0;
  flex:0 0 auto;
}
#send-photo .send-photo-file-state span{
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
}
#send-photo .send-photo-format-note{
  margin:.75rem 0 0;
  color:rgba(17,17,17,.58);
  font-size:clamp(.95rem,1.6vw,1.15rem);
  line-height:1.35;
}
#send-photo .send-photo-summary,
#send-photo .send-photo-manual{
  border-radius:26px;
  padding:clamp(1.35rem,3vw,2.1rem);
  box-shadow:none;
}
#send-photo .send-photo-summary[hidden],
#send-photo .send-photo-manual[hidden]{display:none!important;}
#send-photo .send-photo-summary.is-complete{
  background:rgba(245,255,250,.82);
  border:1px solid rgba(88,190,126,.35);
}
#send-photo .send-photo-summary.is-partial{
  background:rgba(255,253,244,.86);
  border:1px solid rgba(235,180,83,.45);
}
#send-photo .send-photo-summary-title,
#send-photo .send-photo-manual-title{
  margin:0 0 .75rem;
  font-size:clamp(.82rem,1.2vw,.98rem);
  line-height:1.15;
  text-transform:uppercase;
  letter-spacing:.24em;
  font-weight:900;
  color:#111;
}
#send-photo .send-photo-summary-copy,
#send-photo .send-photo-manual-copy{
  margin:0 0 clamp(1.25rem,2.4vw,1.8rem);
  font-size:clamp(.92rem,1.45vw,1.12rem);
  line-height:1.42;
  color:#111;
}
#send-photo .send-photo-summary dl{
  display:grid;
  gap:1rem;
  margin:0;
}
#send-photo .send-photo-summary dl div{
  display:grid;
  grid-template-columns:minmax(180px,32%) 1fr;
  gap:1.2rem;
  align-items:start;
}
#send-photo .send-photo-summary dt,
#send-photo .send-photo-fields span{
  font-size:clamp(.72rem,1vw,.86rem);
  line-height:1.15;
  text-transform:uppercase;
  letter-spacing:.22em;
  font-weight:900;
  color:rgba(17,17,17,.6);
}
#send-photo .send-photo-summary dd{
  margin:0;
  font-size:clamp(.9rem,1.35vw,1.08rem);
  line-height:1.38;
  color:rgba(17,17,17,.82);
}
#send-photo .send-photo-map-wrap{
  margin-top:clamp(1.1rem,2.2vw,1.6rem);
  border-radius:14px;
  overflow:hidden;
  height:220px;
  border:1px solid rgba(0,0,0,.10);
}
#send-photo .send-photo-wrong-coords{
  display:block;
  width:100%;
  margin-top:clamp(.9rem,1.8vw,1.3rem);
  padding:.7rem 1rem;
  border-radius:12px;
  border:2px solid #c0001a;
  background:rgba(192,0,26,.06);
  color:#c0001a;
  font-size:clamp(.82rem,1.15vw,.96rem);
  font-weight:700;
  letter-spacing:.02em;
  line-height:1.35;
  text-align:center;
  cursor:pointer;
  transition:background .15s,color .15s;
}
#send-photo .send-photo-wrong-coords:hover,
#send-photo .send-photo-wrong-coords:focus-visible{
  background:#c0001a;
  color:#fff;
  outline:none;
}
#send-photo .send-photo-tech{
  margin-top:clamp(1.4rem,3vw,2rem);
  padding-top:clamp(1.1rem,2.4vw,1.6rem);
  border-top:1px solid rgba(0,0,0,.08);
}
#send-photo .send-photo-tech p{
  margin:0 0 .75rem;
  font-size:clamp(.72rem,1vw,.86rem);
  text-transform:uppercase;
  letter-spacing:.22em;
  font-weight:900;
  color:rgba(17,17,17,.72);
}
#send-photo .send-photo-tech span{
  display:block;
  font-size:clamp(.84rem,1.15vw,.98rem);
  line-height:1.42;
  color:rgba(17,17,17,.64);
}
#send-photo .send-photo-manual{
  background:rgba(255,255,255,.72);
  border:1px solid rgba(0,0,0,.09);
}
#send-photo .send-photo-fields{
  display:grid;
  gap:1rem;
  grid-template-columns:1fr;
}
#send-photo .send-photo-fields label{
  display:grid;
  gap:.55rem;
}
#send-photo .send-photo-fields em{
  font-style:normal;
  letter-spacing:.12em;
  opacity:.78;
}
#send-photo .send-photo-fields input{
  width:100%;
  border:1px solid rgba(0,0,0,.12);
  border-radius:18px;
  background:#fff;
  padding:1rem 1.15rem;
  font:inherit;
  font-size:clamp(.92rem,1.3vw,1.05rem);
  color:#111;
  outline:none;
}
#send-photo .send-photo-fields input:focus{
  border-color:rgba(0,0,0,.62);
}

#send-photo .send-photo-find{
  justify-self:start;
  margin-top:.25rem;
  border:2px solid rgba(17,17,17,.18);
  border-radius:999px;
  background:#9b9b9b;
  color:#fff;
  padding:.95rem 1.55rem;
  font-size:.82rem;
  line-height:1;
  text-transform:uppercase;
  letter-spacing:.22em;
  font-weight:900;
  cursor:not-allowed;
  opacity:.68;
  transition:background .18s ease,border-color .18s ease,opacity .18s ease,transform .18s ease;
}
#send-photo .send-photo-find.is-active:not(:disabled),
#send-photo .send-photo-find:not(:disabled){
  background:#111;
  border-color:#111;
  opacity:1;
  cursor:pointer;
}
#send-photo .send-photo-find:not(:disabled):hover{
  transform:translateY(-1px);
}
#send-photo .send-photo-find.is-loading{
  opacity:.55;
  cursor:wait;
}
#send-photo .send-photo-geocode-note{
  margin:.1rem 0 0;
  color:rgba(17,17,17,.56);
  font-size:.78rem;
  line-height:1.45;
}
#send-photo .send-photo-message{
  min-height:1.35rem;
  color:rgba(17,17,17,.6);
  font-size:.88rem;
  line-height:1.45;
}
#send-photo .send-photo-message.is-error{color:#9f1239;}
#send-photo .send-photo-message.is-success{color:#166534;}
#send-photo .send-photo-submit{
  justify-self:start;
  margin-top:.2rem;
}
#send-photo .send-photo-rights-note{
  max-width:44rem;
  margin:-.25rem 0 0;
  font-size:.8rem;
  line-height:1.45;
  color:rgba(17,17,17,.58);
}
#send-photo .send-photo-date-notes,
#send-photo .send-photo-section-label,
#send-photo .send-photo-drop-title,
#send-photo .send-photo-drop-subtitle,
#send-photo .send-photo-preview,
#send-photo .send-photo-remove{
  display:none!important;
}
@media (max-width:720px){
  #send-photo .send-photo-title{font-size:clamp(3rem,16vw,4.6rem);}
  #send-photo .send-photo-file-row{align-items:flex-start;flex-direction:column;}
  #send-photo .send-photo-summary dl div{grid-template-columns:1fr;gap:.25rem;}
  #send-photo .send-photo-fields input{font-size:16px;}
  #send-photo .send-photo-submit{width:100%;}
}

/* TLGA homepage rights note */
.tlga-rights-note {
  position: relative;
  z-index: 2;
  margin: clamp(3rem, 7vw, 6rem) 0 clamp(2rem, 5vw, 4rem);
}
.tlga-rights-note .container {
  display: flex;
  justify-content: flex-end;
}
.tlga-rights-note p {
  max-width: 42rem;
  margin: 0;
  font-size: clamp(.72rem, .9vw, .82rem);
  line-height: 1.65;
  font-weight: 300;
  letter-spacing: .015em;
  color: rgba(17, 17, 17, .55);
  text-align: right;
}
@media (max-width: 767px) {
  .tlga-rights-note {
    margin: 3rem 0 2.5rem;
  }
  .tlga-rights-note .container {
    justify-content: flex-start;
  }
  .tlga-rights-note p {
    max-width: none;
    text-align: left;
    font-size: 12px;
  }
}

/* TLGA v8.012 — Contribute upload source buttons refinement
   - mobile: Choose file + Take photo stay on the same line
   - desktop: Take photo is hidden; normal file upload remains unchanged */
#send-photo .send-photo-file-actions{
  display:flex;
  align-items:center;
  gap:.55rem;
  flex:0 0 auto;
  min-width:0;
}
#send-photo .send-photo-camera-button{
  display:none;
}
@media (max-width: 719px){
  #send-photo .send-photo-file-row{
    flex-wrap:wrap;
    align-items:center;
  }
  #send-photo .send-photo-file-actions{
    width:100%;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:.55rem;
  }
  #send-photo .send-photo-camera-button{
    display:inline-flex;
  }
  #send-photo .send-photo-file-button{
    width:100%;
    min-height:2.45rem;
    padding:.45rem .65rem;
    text-align:center;
    white-space:nowrap;
  }
  #send-photo .send-photo-file-state{
    width:100%;
    padding-top:.15rem;
  }
}
@media (min-width: 720px){
  #send-photo .send-photo-file-actions{
    display:inline-flex;
  }
  #send-photo .send-photo-camera-button{
    display:none!important;
  }
}

/* TLGA v8.025 — Contribute geo/exif surgical fixes */
#send-photo .send-photo-location-missing{
  background:rgba(255,253,244,.86);
  border:1px solid rgba(235,180,83,.45);
  border-radius:26px;
  padding:clamp(1.35rem,3vw,2.1rem);
  box-sizing:border-box;
  overflow:hidden;
}
#send-photo .send-photo-location-missing[hidden]{display:none!important;}
#send-photo .send-photo-location-actions{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:.85rem;
  width:100%;
  margin-top:1.15rem;
}
#send-photo .send-photo-location-button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  max-width:100%;
  min-height:3.25rem;
  padding:1rem 1.55rem;
  border:2px solid #111;
  border-radius:999px;
  background:#111;
  color:#fff;
  font-size:.82rem;
  line-height:1;
  text-transform:uppercase;
  letter-spacing:.22em;
  font-weight:900;
  cursor:pointer;
  box-sizing:border-box;
  white-space:normal;
  text-align:center;
}
#send-photo .send-photo-location-button-secondary{
  background:#111;
  color:#fff;
}
#send-photo .send-photo-location-button:disabled{
  opacity:.62;
  cursor:wait;
}
#send-photo .send-photo-find{
  margin-top:1.15rem;
  background:#111;
  border-color:#111;
  color:#fff;
  opacity:1;
  cursor:pointer;
}
#send-photo .send-photo-find:disabled{
  background:#111;
  border-color:#111;
  color:#fff;
  opacity:.55;
  cursor:not-allowed;
}
#send-photo .send-photo-submit{
  margin-top:0;
}
#send-photo .send-photo-submit:not(:disabled):not(.is-disabled):not(.is-loading){
  background:#16a34a;
  border-color:#16a34a;
  color:#fff;
}
#send-photo .send-photo-submit:not(:disabled):not(.is-disabled):not(.is-loading):hover,
#send-photo .send-photo-submit:not(:disabled):not(.is-disabled):not(.is-loading):focus-visible{
  background:#15803d;
  border-color:#15803d;
  color:#fff;
}
#send-photo .send-photo-submit:disabled,
#send-photo .send-photo-submit.is-disabled{
  color:rgba(17,17,17,.42)!important;
  border-color:rgba(17,17,17,.42)!important;
  opacity:1!important;
  cursor:not-allowed!important;
  background:transparent!important;
}
#send-photo .send-photo-submit.is-loading{
  cursor:wait!important;
}
#send-photo .send-photo-message:empty{
  min-height:0;
}
@media (max-width:720px){
  #send-photo .send-photo-location-actions{
    align-items:stretch;
  }
  #send-photo .send-photo-location-button{
    width:100%;
    min-height:3.1rem;
    padding:.95rem 1rem;
  }
}


/* TLGA v8.026 — restore LOCATION DATA MISSING visual style without altering page layout */
#send-photo .send-photo-location-missing{
  display:block;
  width:100%;
  background:rgba(255,253,244,.86);
  border:1px solid rgba(235,180,83,.45);
  border-radius:26px;
  padding:clamp(1.35rem,3vw,2.1rem);
  box-sizing:border-box;
  overflow:hidden;
}
#send-photo .send-photo-location-missing[hidden]{
  display:none!important;
}
#send-photo .send-photo-location-missing .send-photo-manual-title{
  margin:0 0 1rem;
}
#send-photo .send-photo-location-actions{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:1rem;
  width:100%;
  margin-top:1.1rem;
}
#send-photo .send-photo-location-button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  max-width:100%;
  min-height:3.15rem;
  padding:.95rem 1.45rem;
  border:2px solid #111;
  border-radius:999px;
  background:#111;
  color:#fff;
  font-size:.82rem;
  line-height:1.05;
  text-transform:uppercase;
  letter-spacing:.22em;
  font-weight:900;
  cursor:pointer;
  box-sizing:border-box;
  white-space:normal;
  text-align:center;
}
#send-photo .send-photo-location-button-secondary{
  background:#111;
  color:#fff;
}
#send-photo .send-photo-location-button:disabled{
  opacity:.62;
  cursor:wait;
}
@media (max-width:720px){
  #send-photo .send-photo-location-actions{
    align-items:stretch;
  }
  #send-photo .send-photo-location-button{
    width:100%;
    padding:.95rem .95rem;
  }
}

/* ── HERO QUOTE FLIP ─────────────────────────────────────────── */

/* ── HERO QUOTE FLIP ─────────────────────────────────────────── */

/* Clickable wrapper — inline so it wraps naturally like text     */
.hero-quote-flip {
  cursor: pointer;
  outline: none;
  -webkit-tap-highlight-color: transparent;
  display: inline;
}

/* Both faces sit in normal block flow.
   The inactive one is hidden with display:none — zero height,
   zero width, no overlap, no layout tricks needed.               */
.hero-quote-front,
.hero-quote-back {
  display: block;
  font-style: italic;
}

.hero-quote-back {
  display: none;
  font-style: normal;
  color: #374151;
}

/* Flipped: swap which face is visible */
.hero-quote-flip.is-flipped .hero-quote-front {
  display: none;
}
.hero-quote-flip.is-flipped .hero-quote-back {
  display: block;
}

/* Fade on the paragraph itself during the swap                   */
.hero-quote-flip.is-switching {
  opacity: 0;
  transition: opacity 0.18s ease;
}
.hero-quote-flip.is-entering {
  opacity: 1;
  transition: opacity 0.28s ease;
}

/* Hint: plain block after the flip span, always in flow          */
.hero-quote-hint {
  display: block;
  margin-top: 0.6em;
  font-size: 0.6rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 700;
  font-style: normal !important;
  color: #6b7280;
  opacity: 0.45;
  pointer-events: none;
  user-select: none;
}

/* =========================
   TLGA BUTTON SYSTEM FIX
   Plug&play normalization — keep existing colors, align structure
   ========================= */

.btn,
button.btn,
a.btn,
input.btn,
#submitButton,
#send-photo-btn,
#findCoordinatesButton,
#find-coordinates-btn,
#manualFindCoordinates,
.manual-find-coordinates,
.find-coordinates-btn,
.send-photo-button,
.submit-photo-button,
button[type="submit"].btn,
button[type="button"].btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 56px !important;
  height: 56px !important;
  padding: 0 24px !important;
  font-size: 16px !important;
  font-weight: 500 !important;
  line-height: 1 !important;
  border-radius: 999px !important;
  cursor: pointer !important;
  text-decoration: none !important;
  white-space: nowrap !important;
  box-sizing: border-box !important;
}

/* Normalize form buttons without forcing colors */
button,
input[type="submit"],
input[type="button"] {
  font-size: 16px;
  line-height: 1;
  box-sizing: border-box;
}

/* Preserve existing color logic but normalize admin action buttons */
.btn-primary,
.btn-dark,
.btn-success,
.btn-danger,
.btn-warning,
.btn-neutral,
.admin-action-btn,
.admin-edit-btn,
.admin-reset-btn,
.admin-cancel-btn,
.admin-continue-btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 56px !important;
  height: 56px !important;
  padding: 0 24px !important;
  font-size: 16px !important;
  font-weight: 500 !important;
  line-height: 1 !important;
  border-radius: 999px !important;
  white-space: nowrap !important;
  box-sizing: border-box !important;
}

/* Explicit color classes: colors unchanged from current intended UI */
.btn-primary,
.btn-dark {
  background-color: #000;
  color: #fff;
}

.btn-success {
  background-color: #00c853;
  color: #fff;
}

.btn-danger {
  background-color: #ff3b30;
  color: #fff;
}

.btn-warning {
  background-color: #ffd60a;
  color: #000;
}

.btn-neutral {
  background-color: #fff;
  color: #000;
  border: 1px solid #000;
}

/* Mobile: keep same visual system, avoid overflow */
@media (max-width: 640px) {
  .btn,
  button.btn,
  a.btn,
  input.btn,
  #submitButton,
  #send-photo-btn,
  #findCoordinatesButton,
  #find-coordinates-btn,
  #manualFindCoordinates,
  .manual-find-coordinates,
  .find-coordinates-btn,
  .send-photo-button,
  .submit-photo-button,
  .admin-action-btn,
  .admin-edit-btn,
  .admin-reset-btn,
  .admin-cancel-btn,
  .admin-continue-btn {
    width: 100%;
    max-width: 100%;
    min-height: 56px !important;
    height: 56px !important;
    font-size: 16px !important;
  }
}

/* ============================================================
   TLGA BUTTON SYSTEM — UNIFIED BUTTON DIMENSIONS
   Conservative override: keeps existing colors, normalizes size.
   ============================================================ */

#send-photo .send-photo-find,
#send-photo .send-photo-submit,
#send-photo .send-photo-location-button,
.contribute-back,
.cta-btn,
button.cta-btn {
  min-height: 56px !important;
  height: 56px !important;
  padding: 0 24px !important;
  border-radius: 999px !important;

  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;

  font-size: 16px !important;
  line-height: 1 !important;
  font-weight: 800 !important;
  letter-spacing: .16em !important;
  text-transform: uppercase !important;

  box-sizing: border-box !important;
  text-align: center !important;
  white-space: nowrap !important;
}

#send-photo .send-photo-find,
#send-photo .send-photo-find.is-active:not(:disabled),
#send-photo .send-photo-find:not(:disabled) {
  background: #111 !important;
  border-color: #111 !important;
  color: #fff !important;
}

#send-photo .send-photo-submit:not(:disabled):not(.is-disabled):not(.is-loading) {
  background: #16a34a !important;
  border-color: #16a34a !important;
  color: #fff !important;
}

#send-photo .send-photo-submit:disabled,
#send-photo .send-photo-submit.is-disabled {
  color: rgba(17,17,17,.42) !important;
  border-color: rgba(17,17,17,.42) !important;
  opacity: 1 !important;
  cursor: not-allowed !important;
  background: transparent !important;
}

#send-photo .send-photo-file-button {
  min-height: 44px !important;
  height: 44px !important;
  padding: 0 16px !important;
  border-radius: 12px !important;

  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;

  font-size: clamp(1rem,1.8vw,1.35rem) !important;
  line-height: 1 !important;
  font-weight: 500 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  box-sizing: border-box !important;
  white-space: nowrap !important;
}

#send-photo .send-photo-geocode-note {
  margin-top: 14px !important;
}

@media (max-width: 720px) {
  #send-photo .send-photo-find,
  #send-photo .send-photo-submit,
  #send-photo .send-photo-location-button,
  .cta-btn,
  button.cta-btn {
    width: 100% !important;
    max-width: 100% !important;
    white-space: normal !important;
  }

  #send-photo .send-photo-file-button {
    width: 100% !important;
  }
}


/* TLGA archive map overlay */
.toolbar-map-trigger {
  border: 0;
  background: transparent;
  padding: 0;
  color: inherit;
  cursor: pointer;
  font-family: inherit;
}
.toolbar-map-trigger:hover,
.toolbar-map-trigger:focus-visible { opacity: .3; text-decoration: underline; text-underline-offset: 4px; }
.toolbar-separator {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .4em;
  font-weight: 800;
  opacity: .3;
  white-space: nowrap;
}

.tlga-map-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: clamp(1rem, 3vw, 2.5rem);
  display: flex;
  align-items: stretch;
  justify-content: center;
}
.tlga-map-panel {
  width: min(1180px, 100%);
  height: min(760px, calc(100vh - 2rem));
  background: #fff;
  border: 1px solid rgba(0,0,0,.1);
  border-radius: 28px;
  box-shadow: 0 24px 70px rgba(0,0,0,.16);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.tlga-map-topbar {
  min-height: 92px;
  padding: 1.25rem 1.35rem 1rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid rgba(0,0,0,.08);
}
.tlga-map-kicker {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .35em;
  font-weight: 800;
  opacity: .38;
  margin-bottom: .35rem;
}
.tlga-map-title {
  font-size: clamp(2.2rem, 5vw, 4.8rem);
  line-height: .86;
  font-weight: 400;
  margin: 0;
}
.tlga-map-close {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.12);
  background: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  flex: 0 0 auto;
}
.tlga-map-close svg { width: 18px; height: 18px; }
.tlga-map-close:hover { background: #111; color: #fff; }
.tlga-map-caption {
  padding: .65rem 1.35rem;
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 700;
  opacity: .48;
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.tlga-map-canvas {
  flex: 1;
  min-height: 360px;
  background: #f2f2f0;
}
.tlga-map-red-dot span {
  display: block;
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: #e00000;
  border: 2px solid #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,.28);
}
.marker-cluster-small,
.marker-cluster-medium,
.marker-cluster-large { background: rgba(224,0,0,.18); }
.marker-cluster-small div,
.marker-cluster-medium div,
.marker-cluster-large div {
  background: #e00000;
  color: #fff;
  font-family: Inter, sans-serif;
  font-weight: 800;
}
.tlga-map-leaflet-popup .leaflet-popup-content-wrapper {
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(0,0,0,.16);
}
.tlga-map-leaflet-popup .leaflet-popup-content { margin: 8px; }
.tlga-map-popup {
  appearance: none;
  border: 0;
  background: #fff;
  padding: 0;
  display: flex;
  align-items: center;
  gap: .65rem;
  cursor: pointer;
  text-align: left;
  min-width: 150px;
}
.tlga-map-popup-img {
  width: 54px;
  height: 54px;
  border-radius: 12px;
  overflow: hidden;
  background: #eee;
  flex: 0 0 auto;
}
.tlga-map-popup-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.tlga-map-popup-meta { display: grid; gap: .15rem; }
.tlga-map-popup-meta strong {
  font-size: 12px;
  line-height: 1.1;
  font-weight: 800;
}
.tlga-map-popup-meta em {
  font-size: 11px;
  line-height: 1;
  opacity: .55;
  font-style: normal;
}

@media (max-width: 640px) {
  .toolbar-filter { gap: .55rem; align-items: center; }
  .toolbar-map-trigger,
  .toolbar-filter label { letter-spacing: .24em; }
  .toolbar-separator { margin-left: -.1rem; margin-right: -.1rem; }
  .tlga-map-overlay { padding: 0; background: #fff; }
  .tlga-map-panel {
    width: 100%;
    height: 100dvh;
    border-radius: 0;
    border: 0;
    box-shadow: none;
  }
  .tlga-map-topbar {
    min-height: 82px;
    padding: 1rem 1rem .85rem;
  }
  .tlga-map-close {
    width: 46px;
    height: 46px;
  }
  .tlga-map-caption {
    padding: .55rem 1rem;
    font-size: 10px;
  }
  .tlga-map-canvas { min-height: 0; height: calc(100dvh - 126px); }
  .tlga-map-red-dot span { width: 18px; height: 18px; }
  .leaflet-control-zoom a {
    width: 36px !important;
    height: 36px !important;
    line-height: 36px !important;
  }
}

/* TLGA map overlay v3 — stable local tile map, no external JS dependency */
.toolbar-map-trigger.toolbar-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .4em;
  font-weight: 800;
  opacity: .3;
  line-height: 1;
  white-space: nowrap;
}
.toolbar-map-trigger.toolbar-label:hover,
.toolbar-map-trigger.toolbar-label:focus-visible {
  opacity: .6;
  text-decoration: none;
  outline: none;
}
.tlga-map-canvas {
  position: relative;
  overflow: hidden;
  touch-action: none;
  user-select: none;
  -webkit-user-select: none;
  cursor: grab;
}
.tlga-map-canvas:active { cursor: grabbing; }
.tlga-map-tiles,
.tlga-map-markers {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.tlga-map-tile {
  position: absolute;
  width: 256px;
  height: 256px;
  max-width: none;
  display: block;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}
.tlga-map-marker-local {
  position: absolute;
  width: 22px;
  height: 22px;
  transform: translate(-50%, -50%);
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
  z-index: 3;
}
.tlga-map-marker-local span {
  display: block;
  width: 16px;
  height: 16px;
  margin: 3px;
  border-radius: 999px;
  background: #e00000;
  border: 2px solid #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,.28);
}
.tlga-map-marker-local:hover span,
.tlga-map-marker-local:focus-visible span {
  transform: scale(1.18);
  outline: none;
}
.tlga-map-controls {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 5;
  display: grid;
  gap: 6px;
}
.tlga-map-controls button {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(0,0,0,.12);
  box-shadow: 0 6px 16px rgba(0,0,0,.12);
  color: #111;
  font-size: 24px;
  line-height: 1;
  font-weight: 600;
}
.tlga-map-controls button:hover,
.tlga-map-controls button:focus-visible {
  background: #111;
  color: #fff;
  outline: none;
}
.tlga-map-loading {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: grid;
  place-items: center;
  background: rgba(242,242,240,.85);
  color: rgba(17,17,17,.55);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 800;
}
.tlga-map-loading[hidden] { display: none !important; }
.tlga-map-popup-local {
  position: absolute;
  z-index: 6;
  transform: translate(-50%, calc(-100% - 18px));
  appearance: none;
  border: 0;
  background: #fff;
  padding: 8px;
  display: flex;
  align-items: center;
  gap: .65rem;
  cursor: pointer;
  text-align: left;
  min-width: 170px;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(0,0,0,.16);
}
.tlga-map-popup-local::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -8px;
  width: 16px;
  height: 16px;
  background: #fff;
  transform: translateX(-50%) rotate(45deg);
}
@media (max-width: 640px) {
  .tlga-map-controls {
    top: 12px;
    left: 12px;
  }
  .tlga-map-controls button {
    width: 42px;
    height: 42px;
  }
  .tlga-map-marker-local {
    width: 26px;
    height: 26px;
  }
  .tlga-map-marker-local span {
    width: 18px;
    height: 18px;
    margin: 4px;
  }
  .tlga-map-popup-local {
    min-width: 160px;
    max-width: calc(100vw - 32px);
  }
}


/* TLGA map overlay v4 — technical fix only: MAP | FILTER BY CITY typography and tile reliability */
.toolbar-filter .toolbar-map-trigger,
.toolbar-filter .toolbar-separator,
.toolbar-filter label.toolbar-label {
  font-family: var(--font-sans) !important;
  font-size: 10px !important;
  text-transform: uppercase !important;
  letter-spacing: .4em !important;
  font-weight: 800 !important;
  opacity: .3 !important;
  line-height: 1 !important;
  white-space: nowrap !important;
  color: #111 !important;
}
.toolbar-filter .toolbar-map-trigger {
  border: 0 !important;
  background: transparent !important;
  padding: 0 !important;
  margin: 0 !important;
  cursor: pointer !important;
}
.toolbar-filter .toolbar-map-trigger:hover,
.toolbar-filter .toolbar-map-trigger:focus-visible {
  opacity: .6 !important;
  text-decoration: none !important;
  outline: none !important;
}
.tlga-map-tiles {
  background: #dce9ed;
}
.tlga-map-tile {
  position: absolute !important;
  width: 256px !important;
  height: 256px !important;
  min-width: 256px !important;
  min-height: 256px !important;
  max-width: none !important;
  object-fit: cover !important;
  display: block !important;
  pointer-events: none !important;
}
@media (max-width: 640px) {
  .toolbar-filter .toolbar-map-trigger,
  .toolbar-filter .toolbar-separator,
  .toolbar-filter label.toolbar-label {
    letter-spacing: .24em !important;
  }
}
