/* Entrada — /fotos/, the client photo guide.
   Restyled to match the site. Content unchanged and deliberately not added to:
   this page gets pasted into DMs and read on a phone, mid-listing, by someone
   who wants to be done in ten minutes. */

.fotos-header {
  padding: clamp(96px, 15vh, 168px) 0 clamp(48px, 8vh, 80px);
}
.fotos-header h1 { max-width: 12ch; margin-bottom: 24px; }
.fotos-header .lede { max-width: 38ch; }

/* The proof film — the outcome before the instructions. One video, one line. */
.guide-proof {
  padding: clamp(52px, 8vh, 84px) 0;
  border-top: 1px solid var(--line-soft);
}
.guide-proof h2 { margin-bottom: 14px; }
.guide-proof h2 em { font-style: italic; color: var(--gold-soft); }

.proof-player {
  position: relative;
  margin-top: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-2);
  cursor: pointer;
}
.proof-player video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.proof-player__badge {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(8, 9, 12, 0.62);
  color: var(--ink);
  cursor: pointer;
  transition: background var(--dur-fast), transform var(--dur-fast);
}
.proof-player__badge:hover { background: rgba(8, 9, 12, 0.8); transform: scale(1.04); }
.proof-player.is-playing .proof-player__badge { opacity: 0; pointer-events: none; }

.guide-step {
  padding: clamp(52px, 8vh, 84px) 0;
  border-top: 1px solid var(--line-soft);
}

.guide-step__n {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 40px;
  font-weight: 300;
  line-height: 1;
  color: var(--gold);
  margin-bottom: 12px;
}

.guide-step h2 { margin-bottom: 14px; }

.guide-step__lead {
  color: var(--ink-dim);
  font-size: var(--t-body);
  max-width: 54ch;
  margin-bottom: 32px;
}
.guide-step__lead b { color: var(--ink); font-weight: 600; }

.shots {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: clamp(14px, 2vw, 22px);
}

.shots figure { margin: 0; position: relative; }

/* Numbered stop badge on every photo — the walk order. */
.stop-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 1;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: 22px;
  line-height: 1;
  color: var(--ink);
  background: rgba(8, 9, 12, 0.72);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 13px;
}

/* "→ becomes shot N" — the photo→film mapping. */
.shot-tag {
  display: block;
  margin-top: 6px;
  color: var(--gold-soft);
  font-size: 13px;
}

.shots figcaption b { display: block; color: var(--ink); font-weight: 600; font-size: 14.5px; }
.shots figcaption .how { display: block; margin-top: 3px; }

.shots img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-2);
}

.shots figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 13.5px;
}

/* The one-line warning under a step. Gold rule, not a coloured box — a box
   would read as an error state. */
.flag {
  margin-top: 26px;
  padding-left: 16px;
  border-left: 2px solid var(--gold);
  color: var(--muted);
  font-size: 15px;
  max-width: 60ch;
}
.flag b { color: var(--ink); font-weight: 600; }

/* Five rules, as chips. */
.rules {
  padding: clamp(44px, 7vh, 72px) 0;
  border-top: 1px solid var(--line-soft);
}
.rules ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
}
.rules li {
  padding: 11px 20px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-dim);
  font-size: 14px;
  white-space: nowrap;
}
.rules__title { margin-bottom: 22px; font-size: var(--t-h3); }
.rules li.do::before { content: "✓  "; color: var(--gold-soft); }
.rules li.dont::before { content: "✕  "; color: #C96A5A; }
.rules li.dont { color: var(--muted); }

.fotos-end {
  padding: clamp(64px, 10vh, 112px) 0 clamp(80px, 12vh, 128px);
  border-top: 1px solid var(--line-soft);
}
.fotos-end h2 { max-width: 16ch; margin-bottom: 18px; }
.fotos-end .lede { max-width: 48ch; margin-bottom: 30px; }
