/* ═══════════════════════════════════════════════════════════════════════════
   FINDYOURWATCH.GR · Ναύπλιο · funnel
   Ασπρόμαυρο, από το brand board: paper #FBFBF9, ink #0D0D0D, τρίχες #E5E5E5.
   Τυπογραφία: Tenor Sans (ΜΟΝΟ λατινικά) στοιβαγμένη πάνω από Commissioner,
   οπότε τα ελληνικά πέφτουν αυτόματα σε Commissioner 300 ανά γράμμα.
   Κίνηση: scroll parallax στις φωτογραφικές ζώνες. Τίποτα άλλο.
   ═══════════════════════════════════════════════════════════════════════════ */

:root {
  --ivory: #FBFBF9;
  --ivory-2: #F1F0ED;
  --ink: #0D0D0D;
  --ink-soft: rgba(13, 13, 13, 0.70);
  --ink-faint: rgba(13, 13, 13, 0.45);
  --gold: #0D0D0D;
  --gold-deep: #0D0D0D;
  --gold-bright: #A6A6A6;
  --green: #0D0D0D;
  --line: rgba(13, 13, 13, 0.13);
  --line-soft: rgba(13, 13, 13, 0.07);
  --charcoal: #0D0D0D;
  --cream: #FBFBF9;
  --radius: 0px;
  --font-display: "Tenor Sans", "Commissioner", "Segoe UI", sans-serif;
  --font-body: "Commissioner", "Segoe UI", system-ui, sans-serif;
  --wrap: 1120px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --sec-pad: clamp(84px, 13vh, 140px);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16.5px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; }
button { font-family: inherit; cursor: pointer; }

::selection { background: rgba(13, 13, 13, 0.3); }

.app { min-height: 100vh; display: flex; flex-direction: column; }

/* ── Topbar ──────────────────────────────────────────────────────────────── */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 251, 249, 0.86);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line-soft);
}
.topbar-in {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.brand { display: flex; align-items: center; text-decoration: none; }
.brand img { height: 24px; width: auto; }
.topbar-note {
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
@media (max-width: 560px) { .topbar-note { display: none; } }

/* ── Layout helpers ──────────────────────────────────────────────────────── */
.o-wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.o-section { padding: var(--sec-pad) 0; position: relative; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
}
.eyebrow::before {
  content: "";
  width: 34px; height: 1px;
  background: var(--gold);
  opacity: 0.7;
}
.eyebrow.center-e { justify-content: center; }
.eyebrow.center-e::after { content: ""; width: 34px; height: 1px; background: var(--gold); opacity: 0.7; }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.16;
  letter-spacing: 0.015em;
  text-wrap: balance;
}

.sec-title { font-size: clamp(28px, 4.2vw, 42px); margin: 20px 0 16px; }
.sec-title.center { text-align: center; }
.sec-sub { color: var(--ink-soft); font-size: 17px; max-width: 600px; text-wrap: pretty; }
.sec-sub.center { margin: 0 auto; text-align: center; }

.gold-i { color: var(--gold-bright); }

/* gold hairline that draws itself in on scroll */
.rule {
  width: 72px; height: 1px;
  background: var(--gold);
  margin: 26px 0;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 1.1s var(--ease-out);
}
.rule.center { margin-left: auto; margin-right: auto; transform-origin: center; }
.rule.in { transform: scaleX(1); }

/* ── Hero ────────────────────────────────────────────────────────────────── */
.hero { padding: clamp(56px, 9vh, 96px) 0 clamp(48px, 7vh, 80px); text-align: center; }
.hero h1 { font-size: clamp(36px, 5.8vw, 60px); margin: 24px auto 20px; max-width: 840px; }
.hero .o-sub { color: var(--ink-soft); font-size: clamp(16.5px, 2vw, 18.5px); max-width: 620px; margin: 0 auto; }

/* hero copy gets ONE soft entrance; everything else waits for scroll */
.hero .reveal { opacity: 0; transform: translateY(18px); transition: opacity 1s var(--ease-out), transform 1s var(--ease-out); }
.hero .reveal.in { opacity: 1; transform: none; }
.hero .reveal[data-delay="1"] { transition-delay: 0.12s; }
.hero .reveal[data-delay="2"] { transition-delay: 0.24s; }
.hero .reveal[data-delay="3"] { transition-delay: 0.36s; }
@media (prefers-reduced-motion: reduce) {
  .hero .reveal { opacity: 1; transform: none; transition: none; }
}

/* ── VSL player (charcoal frame, the one dark object on the page) ────────── */
.vsl {
  position: relative;
  max-width: 880px;
  margin: clamp(40px, 6vh, 60px) auto 0;
  background: var(--charcoal);
  border: 1px solid rgba(13, 13, 13, 0.4);
  box-shadow: 0 34px 70px -34px rgba(13, 13, 13, 0.55);
}
.vsl-inner { position: relative; aspect-ratio: 16 / 9; overflow: hidden; }
.vsl-inner iframe, .vsl-inner .vsl-poster { position: absolute; inset: 0; width: 100%; height: 100%; }
.vsl-poster { object-fit: cover; }
.vsl-poster-btn {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  background: linear-gradient(180deg, rgba(13, 13, 13, 0.06), rgba(13, 13, 13, 0.34));
  border: 0;
  display: grid; place-items: center;
  transition: background 0.4s;
}
.vsl-poster-btn:hover { background: linear-gradient(180deg, rgba(13, 13, 13, 0.12), rgba(13, 13, 13, 0.44)); }
.vsl-play {
  width: 88px; height: 88px;
  border-radius: 50%;
  border: 1px solid rgba(251, 251, 249, 0.75);
  background: rgba(13, 13, 13, 0.42);
  backdrop-filter: blur(5px);
  color: var(--cream);
  display: grid; place-items: center;
  transition: transform 0.4s var(--ease-out), background 0.3s;
}
.vsl-poster-btn:hover .vsl-play { transform: scale(1.06); background: rgba(13, 13, 13, 0.6); }
.vsl-play svg { margin-left: 5px; }
.vsl-label {
  position: absolute;
  left: 50%; bottom: 24px;
  transform: translateX(-50%);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(251, 251, 249, 0.92);
  border: 1px solid rgba(251, 251, 249, 0.35);
  padding: 8px 16px;
  backdrop-filter: blur(4px);
  white-space: nowrap;
}
.vsl-hint { text-align: center; color: var(--ink-faint); font-size: 13px; margin-top: 14px; min-height: 20px; }

/* ── VSL watch-gate ──────────────────────────────────────────────────────── */
.vsl-gate { max-width: 880px; margin: 22px auto 0; }
.vslg-row { display: flex; align-items: center; gap: 16px; }
.vslg-bar {
  position: relative;
  flex: 1;
  height: 2px;
  background: rgba(13, 13, 13, 0.14);
}
.vslg-fill {
  position: absolute; inset: 0 auto 0 0;
  width: 0%;
  background: var(--gold);
  transition: width 0.5s ease;
}
.vslg-mark { position: absolute; top: -3px; bottom: -3px; left: 85%; width: 1px; background: var(--gold); opacity: 0.6; }
.vslg-label { font-size: 11.5px; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-faint); white-space: nowrap; }
@media (max-width: 560px) { .vslg-label { display: none; } }
.vslg-label b { color: var(--gold-deep); font-weight: 600; }

/* ── CTA button (tsilimigras.com button vocabulary) ─────────────────────── */
.cta-row { margin-top: 34px; display: flex; flex-direction: column; align-items: center; gap: 14px; }
.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 17px 42px;
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  background: transparent;
  color: var(--gold-deep);
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.35s var(--ease-out), color 0.35s, border-color 0.35s, opacity 0.3s, transform 0.2s;
}
.btn-gold:hover { background: var(--gold); color: var(--ivory); }
.btn-gold:active { transform: translateY(1px); }
.btn-gold.solid { background: var(--gold); color: var(--ivory); }
.btn-gold.solid:hover { background: var(--gold-deep); border-color: var(--gold-deep); }
.btn-gold[disabled], .btn-gold.is-locked { opacity: 0.45; cursor: not-allowed; }
.btn-gold[disabled]:hover, .btn-gold.is-locked:hover { background: transparent; color: var(--gold-deep); }
.btn-gold .lock-ico { width: 14px; height: 14px; }
.cta-note { font-size: 13px; color: var(--ink-faint); display: flex; align-items: center; gap: 8px; }
.cta-note svg { flex: none; opacity: 0.7; }

/* ── Full-bleed image band with scroll parallax ─────────────────────────── */
.band {
  position: relative;
  height: clamp(340px, 62vh, 560px);
  overflow: hidden;
}
.band img {
  position: absolute;
  left: 0; top: -12%;
  width: 100%; height: 124%;
  object-fit: cover;
  will-change: transform;
}
.band .band-cap {
  position: absolute;
  left: 50%; bottom: 30px;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--cream);
  text-shadow: 0 1px 14px rgba(13, 13, 13, 0.7);
  white-space: nowrap;
}
.band::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(13, 13, 13, 0.12), transparent 30%, transparent 70%, rgba(13, 13, 13, 0.3));
  pointer-events: none;
}

/* ── Story split ─────────────────────────────────────────────────────────── */
.story { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 6vw, 72px); align-items: center; }
@media (max-width: 880px) { .story { grid-template-columns: 1fr; } }
.story-media { overflow: hidden; border: 1px solid var(--line); }
.story-media img { width: 100%; height: 100%; aspect-ratio: 4 / 4.5; object-fit: cover; transform: scale(1.08); will-change: transform; }
.story-body p { color: var(--ink-soft); margin-bottom: 16px; text-wrap: pretty; }
.story-body p b { color: var(--ink); font-weight: 500; }
.story-sign { font-family: var(--font-display); font-size: 22px; color: var(--gold-deep); margin-top: 20px; }

/* ── Collections (quiet strip, no cards) ────────────────────────────────── */
.col-strip {
  margin-top: clamp(36px, 6vh, 56px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  border: 1px solid var(--line);
}
@media (max-width: 880px) { .col-strip { grid-template-columns: repeat(2, 1fr); } }
.col-item { position: relative; overflow: hidden; aspect-ratio: 4 / 4.6; display: block; text-decoration: none; background: #fff; }
.col-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--ease-out); will-change: transform; }
.col-item img.contain { object-fit: contain; padding: 12%; }
.col-item:hover img { transform: scale(1.05); }
.col-item .col-cap {
  position: absolute;
  inset: auto 0 0 0;
  padding: 34px 14px 12px;
  background: linear-gradient(180deg, transparent, rgba(13, 13, 13, 0.72));
  font-family: var(--font-display);
  font-size: 17px;
  letter-spacing: 0.06em;
  color: var(--cream);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.45s var(--ease-out), transform 0.45s var(--ease-out);
}
.col-item:hover .col-cap, .col-item:focus-visible .col-cap { opacity: 1; transform: none; }
@media (hover: none) { .col-item .col-cap { opacity: 1; transform: none; } }

/* ── Testimonials ────────────────────────────────────────────────────────── */
.tst-grid { margin-top: clamp(36px, 6vh, 56px); display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(24px, 4vw, 44px); }
@media (max-width: 880px) { .tst-grid { grid-template-columns: 1fr; max-width: 560px; margin-left: auto; margin-right: auto; } }
.tst { border-top: 1px solid var(--gold); padding-top: 22px; }
.tst blockquote {
  font-family: var(--font-display);
  font-size: 18.5px;
  line-height: 1.5;
  color: var(--ink);
  font-style: italic;
  text-wrap: pretty;
}
.tst-who { margin-top: 16px; font-size: 12.5px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-faint); }
.tst-who b { color: var(--gold-deep); font-weight: 600; }
.tst-note { text-align: center; margin-top: 30px; font-size: 12px; color: var(--ink-faint); letter-spacing: 0.06em; }

/* ── Final CTA ───────────────────────────────────────────────────────────── */
.final-cta { text-align: center; }
.final-cta h2 { font-size: clamp(28px, 4.4vw, 44px); margin: 20px auto 14px; max-width: 700px; }
.final-cta p { color: var(--ink-soft); max-width: 520px; margin: 0 auto; }

/* ── Footer (boutique green band) ───────────────────────────────────────── */
.footer { background: var(--green); color: rgba(251, 251, 249, 0.85); padding: 54px 0 60px; margin-top: var(--sec-pad); }
.footer-in { display: flex; align-items: flex-start; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.footer img { height: 22px; filter: brightness(0) invert(0.96) sepia(0.18); opacity: 0.95; }
.footer address { font-style: normal; font-size: 13.5px; line-height: 1.85; color: rgba(251, 251, 249, 0.72); }
.footer address b { color: var(--cream); font-weight: 500; letter-spacing: 0.14em; }
.footer-links { display: flex; gap: 22px; font-size: 12.5px; }
.footer-links a { color: rgba(251, 251, 249, 0.72); text-decoration: none; transition: color 0.25s; }
.footer-links a:hover { color: #fff; }
.footer-legal { margin-top: 24px; font-size: 11.5px; color: rgba(251, 251, 249, 0.45); }

/* ── Lead modal (charcoal, keeps focus) ─────────────────────────────────── */
.lt-modal-root { position: fixed; inset: 0; z-index: 100; display: none; }
.lt-modal-root.open { display: block; }
.lt-scrim { position: absolute; inset: 0; background: rgba(13, 13, 13, 0.6); backdrop-filter: blur(7px); }
.lt-modal {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: min(480px, calc(100vw - 32px));
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  background: var(--charcoal);
  color: var(--cream);
  border: 1px solid rgba(13, 13, 13, 0.45);
  padding: 38px 34px 32px;
  box-shadow: 0 60px 110px -30px rgba(0, 0, 0, 0.75);
  animation: modalIn 0.45s var(--ease-out);
}
@keyframes modalIn { from { opacity: 0; transform: translate(-50%, -47%); } to { opacity: 1; transform: translate(-50%, -50%); } }
.lt-modal-close {
  position: absolute;
  top: 14px; right: 14px;
  width: 34px; height: 34px;
  border: 1px solid rgba(251, 251, 249, 0.25);
  border-radius: 50%;
  background: transparent;
  color: rgba(251, 251, 249, 0.7);
  display: grid; place-items: center;
  transition: color 0.25s, border-color 0.25s;
}
.lt-modal-close:hover { color: #fff; border-color: rgba(251, 251, 249, 0.6); }
.modal-eyebrow { font-family: var(--font-display); font-size: 12px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold-bright); margin-bottom: 12px; }
.lt-modal h3 { font-size: 26px; margin-bottom: 8px; color: var(--cream); }
.lt-modal .modal-sub { color: rgba(251, 251, 249, 0.62); font-size: 14px; margin-bottom: 24px; }

.field-group { display: flex; flex-direction: column; gap: 16px; }
.field label { display: block; font-size: 10.5px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(251, 251, 249, 0.5); margin-bottom: 7px; }
.field input, .field select {
  width: 100%;
  background: rgba(251, 251, 249, 0.06);
  border: 1px solid rgba(251, 251, 249, 0.18);
  border-radius: var(--radius);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 15px;
  padding: 13px 15px;
  outline: none;
  transition: border-color 0.25s, background 0.25s;
}
.field select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--gold-bright) 50%), linear-gradient(135deg, var(--gold-bright) 50%, transparent 50%); background-position: calc(100% - 20px) 50%, calc(100% - 15px) 50%; background-size: 5px 5px; background-repeat: no-repeat; }
.field select option { color: #0D0D0D; }
.field input:focus, .field select:focus { border-color: var(--gold-bright); background: rgba(251, 251, 249, 0.1); }
.field input::placeholder { color: rgba(251, 251, 249, 0.32); }
.field.invalid input, .field.invalid select { border-color: rgba(220, 90, 80, 0.75); }
.field .err { display: block; min-height: 16px; font-size: 12px; color: #B3261E; margin-top: 5px; }
.modal-submit { width: 100%; margin-top: 22px; border-color: var(--gold-bright); color: var(--gold-bright); }
.modal-submit:hover { background: var(--gold-bright); color: var(--charcoal); }
.modal-privacy { margin-top: 14px; font-size: 11.5px; color: rgba(251, 251, 249, 0.45); text-align: center; line-height: 1.6; }
.modal-privacy a { color: rgba(251, 251, 249, 0.7); }

.lt-success { text-align: center; padding: 20px 0 8px; }
.lt-success .ok-ring {
  width: 72px; height: 72px;
  margin: 0 auto 22px;
  border-radius: 50%;
  border: 1px solid var(--gold-bright);
  display: grid; place-items: center;
  color: var(--gold-bright);
  animation: okPop 0.55s var(--ease-out);
}
@keyframes okPop { from { transform: scale(0.65); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.lt-success h3 { font-size: 25px; margin-bottom: 10px; }
.lt-success p { color: rgba(251, 251, 249, 0.62); font-size: 14.5px; }

/* ── Booking page ────────────────────────────────────────────────────────── */
.book-wrap { max-width: 680px; margin: 0 auto; padding: clamp(48px, 8vh, 80px) 24px 110px; }
.book-steps { display: flex; gap: 8px; justify-content: center; margin: 24px 0 40px; }
.book-steps span { height: 2px; width: 54px; background: rgba(13, 13, 13, 0.14); }
.book-steps span.on { background: var(--gold); }
.slots { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 14px; }
@media (max-width: 560px) { .slots { grid-template-columns: repeat(2, 1fr); } }
.slot {
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  border-radius: var(--radius);
  padding: 13px 8px;
  font-size: 14.5px;
  font-weight: 400;
  transition: border-color 0.25s, background 0.25s, color 0.25s;
}
.slot:hover:not([disabled]) { border-color: var(--gold); }
.slot.sel { background: var(--gold); border-color: var(--gold); color: var(--ivory); font-weight: 600; }
.slot[disabled] { opacity: 0.32; cursor: not-allowed; text-decoration: line-through; }
.day-label { grid-column: 1 / -1; font-family: var(--font-display); font-size: 13px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold-deep); margin-top: 18px; }
.book-summary {
  margin-top: 26px;
  border: 1px solid var(--gold);
  padding: 16px 20px;
  background: rgba(13, 13, 13, 0.08);
  font-size: 14.5px;
  display: none;
}
.book-summary.show { display: block; }
.book-summary b { color: var(--gold-deep); }

/* ── Thank-you ───────────────────────────────────────────────────────────── */
.ty-wrap { max-width: 640px; margin: 0 auto; padding: clamp(64px, 10vh, 100px) 24px 130px; text-align: center; }
.ty-ok {
  width: 82px; height: 82px;
  margin: 0 auto 26px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  display: grid; place-items: center;
  color: var(--gold-deep);
  animation: okPop 0.55s var(--ease-out);
}
.ty-card { border: 1px solid var(--line); border-top: 2px solid var(--gold); background: #FFFFFF; padding: 12px 26px; margin-top: 34px; text-align: left; }
.ty-row { display: flex; justify-content: space-between; gap: 18px; padding: 13px 0; border-bottom: 1px solid var(--line-soft); font-size: 14.5px; }
.ty-row:last-child { border-bottom: 0; }
.ty-row span { color: var(--ink-faint); }
.ty-row b { color: var(--ink); font-weight: 500; text-align: right; }

/* ── Utility ─────────────────────────────────────────────────────────────── */
.center { text-align: center; }

/* ── V4 · Stage 1 hero split ─────────────────────────────────────────────── */
.hero-split {
  padding: clamp(48px, 8vh, 88px) 24px clamp(56px, 9vh, 96px);
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(36px, 6vw, 72px);
  align-items: center;
}
@media (max-width: 880px) { .hero-split { grid-template-columns: 1fr; } }
.hero-copy h1 { font-size: clamp(34px, 5.2vw, 56px); margin: 22px 0 18px; }
.hero-copy .o-sub { color: var(--ink-soft); font-size: clamp(16.5px, 2vw, 18.5px); max-width: 540px; }
.cta-row.left { align-items: flex-start; }
.hero-split .reveal { opacity: 0; transform: translateY(18px); transition: opacity 1s var(--ease-out), transform 1s var(--ease-out); }
.hero-split .reveal.in { opacity: 1; transform: none; }
.hero-split .reveal[data-delay="1"] { transition-delay: 0.12s; }
.hero-split .reveal[data-delay="2"] { transition-delay: 0.24s; }
.hero-split .reveal[data-delay="3"] { transition-delay: 0.36s; }
@media (prefers-reduced-motion: reduce) { .hero-split .reveal { opacity: 1; transform: none; transition: none; } }

.hero-media { position: relative; border: 1px solid var(--line); overflow: hidden; }
.hero-media img { width: 100%; aspect-ratio: 9 / 11; object-fit: cover; }
.hero-media-cap {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 30px 18px 14px;
  background: linear-gradient(180deg, transparent, rgba(13, 13, 13, 0.72));
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--cream);
}
@media (max-width: 880px) { .hero-media { max-width: 420px; margin: 0 auto; } }

/* ── V4 · Trust strip ────────────────────────────────────────────────────── */
.trust { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--ivory-2); }
.trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-top: 34px;
  padding-bottom: 34px;
  text-align: center;
}
@media (max-width: 720px) { .trust-row { grid-template-columns: 1fr; gap: 18px; } }
.trust-item b {
  display: block;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(24px, 3.4vw, 34px);
  color: var(--gold-deep);
  letter-spacing: 0.02em;
}
.trust-item span { font-size: 12.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-faint); }

/* ── V4 · How it works ───────────────────────────────────────────────────── */
.how-grid { margin-top: clamp(36px, 6vh, 56px); display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(24px, 4vw, 44px); }
@media (max-width: 880px) { .how-grid { grid-template-columns: 1fr; max-width: 520px; margin-left: auto; margin-right: auto; } }
.how-step { border-top: 1px solid var(--gold); padding-top: 22px; }
.how-num { font-family: var(--font-display); font-size: 15px; letter-spacing: 0.3em; color: var(--gold); }
.how-step h3 { font-size: 22px; margin: 12px 0 10px; }
.how-step p { color: var(--ink-soft); font-size: 15px; text-wrap: pretty; }

/* ── V4 · Quiz (Stage 2) ─────────────────────────────────────────────────── */
.quiz-wrap { max-width: 640px; margin: 0 auto; padding: clamp(40px, 7vh, 72px) 24px 110px; }
.quiz-progress { display: flex; align-items: center; gap: 14px; margin: 22px 0 40px; }
.quiz-progress .qp-bar { position: relative; flex: 1; height: 2px; background: rgba(13, 13, 13, 0.14); }
.quiz-progress .qp-fill { position: absolute; inset: 0 auto 0 0; width: 0%; background: var(--gold); transition: width 0.5s var(--ease-out); }
.quiz-progress .qp-label { font-size: 11.5px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-faint); white-space: nowrap; }
.quiz-step { display: none; }
.quiz-step.active { display: block; animation: stepIn 0.5s var(--ease-out); }
@keyframes stepIn { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.quiz-q { font-family: var(--font-display); font-size: clamp(26px, 4vw, 34px); margin-bottom: 8px; }
.quiz-q-sub { color: var(--ink-soft); font-size: 15px; margin-bottom: 28px; }
.quiz-opts { display: grid; gap: 10px; }
.quiz-opt {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  width: 100%;
  text-align: left;
  border: 1px solid var(--line);
  background: #FFFFFF;
  border-radius: var(--radius);
  padding: 17px 20px;
  font-size: 16px;
  font-weight: 400;
  color: var(--ink);
  transition: border-color 0.25s, background 0.25s, transform 0.2s var(--ease-out);
}
.quiz-opt small { display: block; font-size: 12.5px; color: var(--ink-faint); margin-top: 3px; }
.quiz-opt:hover { border-color: var(--gold); transform: translateX(4px); }
.quiz-opt .qo-arrow { flex: none; color: var(--gold); opacity: 0; transition: opacity 0.25s; }
.quiz-opt:hover .qo-arrow { opacity: 1; }
.quiz-back {
  margin-top: 26px;
  background: none;
  border: 0;
  color: var(--ink-faint);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: color 0.25s;
}
.quiz-back:hover { color: var(--gold-deep); }

/* proof card between questions */
.proof-card {
  display: none;
  border: 1px solid var(--gold);
  background: rgba(13, 13, 13, 0.07);
  padding: 24px 24px 22px;
  animation: stepIn 0.5s var(--ease-out);
}
.proof-card.show { display: block; }
.proof-card .pc-kicker { font-family: var(--font-display); font-size: 12px; letter-spacing: 0.26em; text-transform: uppercase; color: var(--gold-deep); margin-bottom: 10px; }
.proof-card .pc-text { font-family: var(--font-display); font-style: italic; font-size: 20px; line-height: 1.45; color: var(--ink); }
.proof-card .pc-next { margin-top: 18px; }

/* contact step + analysis */
.quiz-analysis { display: none; text-align: center; padding: 40px 0 20px; }
.quiz-analysis.show { display: block; }
.qa-ring {
  width: 64px; height: 64px;
  margin: 0 auto 22px;
  border-radius: 50%;
  border: 2px solid var(--line);
  border-top-color: var(--gold);
  animation: qaSpin 0.9s linear infinite;
}
@keyframes qaSpin { to { transform: rotate(360deg); } }
.quiz-analysis p { color: var(--ink-soft); font-size: 15px; }
@media (prefers-reduced-motion: reduce) {
  .quiz-step.active, .proof-card { animation: none; }
  .qa-ring { animation-duration: 2.4s; }
}

/* ── V4 · light form fields (quiz/booking on ivory) ─────────────────────── */
.field.light label { color: var(--ink-faint); }
.field.light input, .field.light select {
  background: #FFFFFF;
  border: 1px solid var(--line);
  color: var(--ink);
}
.field.light input:focus, .field.light select:focus {
  border-color: var(--gold);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(13, 13, 13, 0.14);
}
.field.light input::placeholder { color: rgba(13, 13, 13, 0.32); }

/* ── V4 · Stage 3 VSL page ───────────────────────────────────────────────── */
.vsl-page { max-width: 880px; margin: 0 auto; padding: clamp(44px, 7vh, 80px) 24px 110px; text-align: center; }
.vsl-done {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-deep);
  border: 1px solid var(--gold);
  padding: 8px 16px;
  border-radius: 999px;
}
.vsl-page h1 { font-size: clamp(30px, 4.8vw, 48px); margin: 24px auto 16px; max-width: 720px; }
.vsl-page .o-sub { color: var(--ink-soft); font-size: 17px; max-width: 600px; margin: 0 auto; }

/* ── V4 · Stage 4 booking calendar (Calendly-style replica) ─────────────── */
.cal-wrap { max-width: 920px; margin: 0 auto; padding: clamp(40px, 7vh, 72px) 24px 110px; }
.cal-card {
  display: grid;
  grid-template-columns: 300px 1fr;
  border: 1px solid var(--line);
  background: #FFFFFF;
  margin-top: 34px;
  min-height: 480px;
}
@media (max-width: 820px) { .cal-card { grid-template-columns: 1fr; } }
.cal-side { border-right: 1px solid var(--line-soft); padding: 30px 26px; }
@media (max-width: 820px) { .cal-side { border-right: 0; border-bottom: 1px solid var(--line-soft); } }
.cal-side .cs-host { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.cal-side .cs-ava {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--charcoal);
  color: var(--gold-bright);
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-size: 20px;
  flex: none;
}
.cal-side .cs-host b { display: block; font-size: 15px; font-weight: 600; }
.cal-side .cs-host span { font-size: 12.5px; color: var(--ink-faint); }
.cal-side h2 { font-size: 22px; margin-bottom: 12px; }
.cal-side .cs-meta { display: flex; align-items: center; gap: 8px; font-size: 13.5px; color: var(--ink-soft); margin-top: 10px; }
.cal-side .cs-desc { margin-top: 16px; font-size: 13.5px; color: var(--ink-soft); line-height: 1.6; }

.cal-main { padding: 26px 26px 30px; }
.cal-month { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.cal-month b { font-family: var(--font-display); font-size: 18px; letter-spacing: 0.04em; }
.cal-month .cm-nav { display: flex; gap: 6px; }
.cal-month .cm-nav button {
  width: 32px; height: 32px;
  border: 1px solid var(--line);
  background: transparent;
  border-radius: 50%;
  color: var(--ink-soft);
  display: grid; place-items: center;
  transition: border-color 0.25s, color 0.25s;
}
.cal-month .cm-nav button:hover:not([disabled]) { border-color: var(--gold); color: var(--gold-deep); }
.cal-month .cm-nav button[disabled] { opacity: 0.3; cursor: not-allowed; }
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.cal-grid .cd-dow { text-align: center; font-size: 10.5px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-faint); padding: 6px 0; }
.cal-day {
  aspect-ratio: 1;
  border: 1px solid transparent;
  background: transparent;
  border-radius: 50%;
  font-size: 14px;
  color: var(--ink);
  display: grid; place-items: center;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.cal-day.avail { border-color: var(--gold); color: var(--gold-deep); font-weight: 600; }
.cal-day.avail:hover { background: rgba(13, 13, 13, 0.12); }
.cal-day.sel { background: var(--gold); border-color: var(--gold); color: var(--ivory); }
.cal-day.off { color: rgba(13, 13, 13, 0.25); cursor: default; }
.cal-day.empty { visibility: hidden; }
.cal-times { margin-top: 22px; display: none; }
.cal-times.show { display: block; }
.cal-times h3 { font-size: 16px; margin-bottom: 12px; }
.cal-times .ct-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
@media (max-width: 560px) { .cal-times .ct-grid { grid-template-columns: repeat(2, 1fr); } }
.ct-time {
  border: 1px solid var(--gold);
  background: transparent;
  color: var(--gold-deep);
  border-radius: var(--radius);
  padding: 11px 6px;
  font-size: 14px;
  font-weight: 600;
  transition: background 0.2s, color 0.2s;
}
.ct-time:hover { background: rgba(13, 13, 13, 0.12); }
.ct-time.sel { background: var(--gold); color: var(--ivory); }
.cal-confirm { margin-top: 22px; display: none; }
.cal-confirm.show { display: block; }
.cal-confirm .cc-box { border: 1px solid var(--gold); background: rgba(13, 13, 13, 0.07); padding: 16px 18px; font-size: 14.5px; margin-bottom: 14px; }
.cal-confirm .cc-box b { color: var(--gold-deep); }

/* ═══════════════════════════════════════════════════════════════════════════
   FINDYOURWATCH.GR · ενότητες που εξηγούν την υπηρεσία
   ═══════════════════════════════════════════════════════════════════════════ */

/* λογότυπο στην μπάρα: σήμα + λεκτικό σε HTML (σκαλώνει καλύτερα από εικόνα) */
.fyw-brand { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; color: inherit; }
.fyw-brand img { width: 30px; height: 30px; object-fit: contain; }
.fyw-brand b { font-family: var(--font-display); font-size: 13px; letter-spacing: 0.22em; font-weight: 400; line-height: 1.1; }
.fyw-brand b small { display: block; font-size: 8.5px; letter-spacing: 0.34em; color: var(--ink-faint); margin-top: 3px; }
.topnav { display: flex; gap: 22px; font-size: 13px; }
.topnav a { color: var(--ink-soft); text-decoration: none; }
.topnav a:hover { color: var(--ink); }
@media (max-width: 780px) { .topnav { display: none; } }

/* «τι είναι αυτό»: μια πρόταση μεγάλη, τρεις γραμμές κάτω */
.what { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: clamp(48px, 8vh, 78px) 0; }
.what-lead { font-family: var(--font-display); font-size: clamp(24px, 3.1vw, 36px); line-height: 1.42; max-width: 900px; letter-spacing: 0.01em; }
.what-lead span { color: var(--ink-faint); }
.what-grid { margin-top: clamp(30px, 5vh, 46px); display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(22px, 4vw, 42px); }
@media (max-width: 880px) { .what-grid { grid-template-columns: 1fr; } }
.what-grid > div { border-top: 1px solid var(--line); padding-top: 18px; }
.what-grid h3 { font-size: 17px; margin-bottom: 8px; }
.what-grid p { color: var(--ink-soft); font-size: 14.5px; text-wrap: pretty; }

/* ο άνθρωπος πίσω από την υπηρεσία */
.who { display: grid; grid-template-columns: 420px minmax(0, 1fr); gap: clamp(30px, 5vw, 64px); align-items: center; }
@media (max-width: 900px) { .who { grid-template-columns: 1fr; } }
.who-media { position: relative; overflow: hidden; background: var(--ivory-2); }
.who-media img { width: 100%; height: 100%; object-fit: cover; }
.who-quote { font-family: var(--font-display); font-size: clamp(21px, 2.6vw, 29px); line-height: 1.5; margin-bottom: 20px; }
.who p { color: var(--ink-soft); margin-bottom: 14px; text-wrap: pretty; }
.who-sign { display: flex; align-items: center; gap: 12px; margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--line); }
.who-sign b { font-family: var(--font-display); font-size: 14px; letter-spacing: 0.12em; font-weight: 400; }
.who-sign span { font-size: 13px; color: var(--ink-faint); }
.who-sign a { margin-left: auto; font-size: 13px; color: var(--ink); border-bottom: 1px solid var(--ink); padding-bottom: 2px; text-decoration: none; }

/* τι θα δεις στο βίντεο */
.vid { display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: clamp(28px, 5vw, 56px); align-items: center; }
@media (max-width: 900px) { .vid { grid-template-columns: 1fr; } }
.vid-shot { position: relative; border: 1px solid var(--line); overflow: hidden; }
.vid-shot img { width: 100%; display: block; }
.vid-shot .pl { position: absolute; inset: 0; display: grid; place-items: center; }
.vid-shot .pl span { width: 58px; height: 58px; border-radius: 50%; background: var(--ivory); display: grid; place-items: center; }
.vid-list { list-style: none; }
.vid-list li { display: flex; gap: 12px; padding: 13px 0; border-bottom: 1px solid var(--line-soft); font-size: 15px; color: var(--ink-soft); }
.vid-list li::before { content: ""; width: 7px; height: 7px; background: var(--ink); flex: none; margin-top: 9px; }
.vid-list li b { color: var(--ink); font-weight: 500; }

/* για ποιον είναι, για ποιον δεν είναι */
.fit { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border: 1px solid var(--line); }
@media (max-width: 780px) { .fit { grid-template-columns: 1fr; } }
.fit > div { padding: clamp(24px, 4vw, 38px); }
.fit > div + div { border-left: 1px solid var(--line); }
@media (max-width: 780px) { .fit > div + div { border-left: 0; border-top: 1px solid var(--line); } }
.fit h3 { font-size: 19px; margin-bottom: 16px; }
.fit ul { list-style: none; }
.fit li { padding: 9px 0 9px 22px; position: relative; font-size: 14.5px; color: var(--ink-soft); }
.fit li::before { position: absolute; left: 0; top: 9px; font-size: 13px; color: var(--ink-faint); }
.fit .yes li::before { content: "+"; }
.fit .no li::before { content: "\2013"; }

/* συχνές ερωτήσεις, σύντομες */
.qa { border-top: 1px solid var(--line); }
.qa details { border-bottom: 1px solid var(--line); }
.qa summary { padding: 19px 0; font-size: 16.5px; cursor: pointer; list-style: none; display: flex; align-items: center; gap: 14px; }
.qa summary::-webkit-details-marker { display: none; }
.qa summary::after { content: "+"; margin-left: auto; font-size: 19px; color: var(--ink-faint); }
.qa details[open] summary::after { content: "\2013"; }
.qa details p { padding: 0 0 20px; color: var(--ink-soft); font-size: 15px; max-width: 760px; text-wrap: pretty; }

/* πλοήγηση στις βοηθητικές σελίδες, στο τέλος κάθε σελίδας */
.more { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); }
@media (max-width: 880px) { .more { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .more { grid-template-columns: 1fr; } }
.more a { padding: 26px 22px 30px; border-right: 1px solid var(--line); text-decoration: none; color: inherit; display: block; }
.more a:last-child { border-right: 0; }
.more a:hover { background: var(--ivory-2); }
.more .k { font-family: var(--font-display); font-size: 9.5px; letter-spacing: 0.24em; color: var(--ink-faint); }
.more .t { font-size: 18px; margin: 10px 0 7px; font-family: var(--font-display); font-weight: 400; }
.more .d { font-size: 13.5px; color: var(--ink-soft); line-height: 1.6; }

/* απλή σελίδα κειμένου για τις 4 βοηθητικές */
.page-hero { border-bottom: 1px solid var(--line); padding: clamp(46px, 8vh, 82px) 0 clamp(34px, 6vh, 56px); }
.page-hero .eyebrow { margin-bottom: 16px; display: inline-block; }
.page-hero h1 { font-size: clamp(34px, 5vw, 54px); line-height: 1.12; max-width: 900px; }
.page-hero p { margin-top: 18px; color: var(--ink-soft); font-size: 17px; max-width: 700px; text-wrap: pretty; }
.prose { max-width: 760px; }
.prose h2 { font-size: clamp(22px, 2.8vw, 30px); margin: clamp(34px, 5vh, 52px) 0 14px; }
.prose h3 { font-size: 19px; margin: 26px 0 10px; }
.prose p { color: var(--ink-soft); margin-bottom: 15px; text-wrap: pretty; }
.prose ul { margin: 0 0 18px 0; list-style: none; }
.prose ul li { padding: 8px 0 8px 22px; position: relative; color: var(--ink-soft); }
.prose ul li::before { content: ""; position: absolute; left: 0; top: 17px; width: 8px; height: 1px; background: var(--ink); }
.prose .pull { border-left: 2px solid var(--ink); padding: 4px 0 4px 20px; margin: 26px 0; font-family: var(--font-display); font-size: 20px; line-height: 1.55; color: var(--ink); }
.spec { border-top: 1px solid var(--line); margin-top: 30px; }
.spec div { display: flex; gap: 20px; padding: 13px 0; border-bottom: 1px solid var(--line-soft); font-size: 15px; }
.spec dt, .spec b { width: 190px; flex: none; font-size: 12px; letter-spacing: 0.16em; color: var(--ink-faint); font-family: var(--font-display); font-weight: 400; padding-top: 3px; }
.spec span { color: var(--ink-soft); }

/* το 01/02/03 διαβάζεται σαν διακοσμητικό, μια τρίχα λέει το ίδιο πράγμα */
.how-num { display: block; width: 26px; height: 1px; background: var(--ink); font-size: 0; letter-spacing: 0; }

/* ── διορθώσεις μετά το rebrand ────────────────────────────────────────────── */
/* το brand είναι ασπρόμαυρο: κάθε φωτογραφία του funnel περνάει σε γκρίζα κλίμακα */
/* οι φωτογραφίες μένουν ΕΓΧΡΩΜΕΣ. Το ασπρόμαυρο είναι η παλέτα του UI, όχι φίλτρο. */

/* τέσσερα στοιχεία εμπιστοσύνης, τέσσερις στήλες */
.trust-row { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) { .trust-row { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .trust-row { grid-template-columns: 1fr; } }

/* οι κάρτες «περισσότερα» θέλουν τα τρία μέρη σε ξεχωριστές γραμμές */
.more .k, .more .t, .more .d { display: block; }

/* ═══════════════════════════════════════════════════════════════════════════
   ΑΡΧΙΚΗ V2 · το βίντεο είναι το πρώτο πράγμα, οι ερωτήσεις αμέσως από κάτω
   ═══════════════════════════════════════════════════════════════════════════ */
.stage1 { padding: clamp(30px, 5vh, 52px) 0 clamp(34px, 5vh, 56px); text-align: center; }
.stage1 h1 {
  font-size: clamp(30px, 4.6vw, 50px);
  line-height: 1.14;
  max-width: 900px;
  margin: 18px auto 14px;
}
.stage1 h1 em { font-style: normal; color: var(--ink-faint); }
.stage1 .lede {
  color: var(--ink-soft);
  font-size: clamp(15.5px, 1.9vw, 18px);
  max-width: 620px;
  margin: 0 auto;
  text-wrap: pretty;
}
.stage1 .vsl { margin-top: clamp(26px, 4vh, 40px); }
.stage1 .under {
  display: flex; align-items: center; justify-content: center;
  gap: 10px; flex-wrap: wrap;
  margin-top: 16px;
  font-size: 13px; color: var(--ink-faint);
}
.stage1 .under b { color: var(--ink); font-weight: 500; }

/* κάτω βέλος που λέει «συνέχισε εδώ» */
.cue { display: grid; place-items: center; gap: 9px; padding: clamp(22px, 4vh, 40px) 0 0; }
.cue span {
  font-family: var(--font-display);
  font-size: 10.5px; letter-spacing: 0.28em; color: var(--ink-faint);
}
.cue i { display: block; width: 1px; height: 46px; background: var(--line); }

/* η πρώτη ερώτηση, ζωντανή πάνω στην αρχική */
.q1 { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: clamp(44px, 7vh, 72px) 0; }
.q1 .lbl { font-family: var(--font-display); font-size: 10.5px; letter-spacing: 0.28em; color: var(--ink-faint); }
.q1 h2 { font-size: clamp(24px, 3.4vw, 36px); margin: 14px 0 8px; }
.q1 .sub { color: var(--ink-soft); font-size: 15.5px; margin-bottom: 26px; }
.q1-opts { display: grid; gap: 10px; max-width: 680px; }
.q1-opt {
  display: flex; align-items: center; gap: 16px;
  padding: 17px 20px;
  border: 1px solid var(--line);
  background: var(--ivory);
  text-decoration: none; color: inherit;
  transition: border-color 0.2s, background 0.2s, transform 0.2s var(--ease-out);
}
.q1-opt:hover { border-color: var(--ink); background: #fff; transform: translateX(3px); }
.q1-opt b { font-size: 17px; font-weight: 400; font-family: var(--font-display); flex: none; min-width: 168px; }
.q1-opt span { font-size: 14px; color: var(--ink-soft); }
.q1-opt .arw { margin-left: auto; color: var(--ink-faint); flex: none; }
.q1-opt:hover .arw { color: var(--ink); }
@media (max-width: 620px) {
  .q1-opt { flex-wrap: wrap; gap: 4px 12px; }
  .q1-opt b { min-width: 0; width: 100%; }
  .q1-opt .arw { display: none; }
}
.q1 .rest { margin-top: 18px; font-size: 13.5px; color: var(--ink-faint); }

/* ── διορθώσεις V2 ────────────────────────────────────────────────────────── */
/* Η εικόνα του βίντεο ήταν η μόνη έγχρωμη επιφάνεια στη σελίδα και έσπαγε όλο
   το ασπρόμαυρο. Το ίδιο το βίντεο παίζει κανονικά, με τα χρώματά του. */


/* το δεύτερο μισό του τίτλου ήταν τόσο ανοιχτό που έμοιαζε ξεθωριασμένο */
.stage1 h1 em, .gold-i { color: #6E6E6E; }

/* οι ερωτήσεις κάθονται κάτω από κεντραρισμένο βίντεο, οπότε κεντράρονται κι αυτές */
.q1 { text-align: center; }
.q1-opts { max-width: 720px; margin: 0 auto; text-align: left; }
.q1 .sub, .q1 .rest { max-width: 620px; margin-left: auto; margin-right: auto; }
.q1 .rest { margin-top: 20px; }

/* το «100€ ως 30.000€» έσπαγε σε δύο γραμμές και χαλούσε τη σειρά */
.trust-item b { font-size: clamp(20px, 2.4vw, 27px); }

/* η ένδειξη «μετά το βίντεο» θέλει αέρα για να διαβάζεται ως οδηγία */
.cue { padding-top: clamp(30px, 5vh, 52px); }
.cue i { height: 58px; }

/* ═══════════════════════════════════════════════════════════════════════════
   SHOWREEL · γνωστοί πελάτες. Οι φωτογραφίες μπαίνουν ΕΓΧΡΩΜΕΣ.
   ═══════════════════════════════════════════════════════════════════════════ */
.reel { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: clamp(40px, 6vh, 64px) 0; overflow: hidden; }
.reel-hd { max-width: var(--wrap); margin: 0 auto clamp(24px, 4vh, 36px); padding: 0 24px; text-align: center; }
.reel-hd h2 { font-size: clamp(24px, 3.2vw, 34px); margin-top: 14px; }
.reel-hd p { color: var(--ink-soft); font-size: 15.5px; margin-top: 10px; }
/* Η κύλιση γίνεται από το showreel.js, καρέ-καρέ. Το CSS δίνει μόνο τη διάταξη. */
.reel-track { display: flex; gap: 14px; width: max-content; will-change: transform; }
@media (prefers-reduced-motion: reduce) {
  .reel-viewport { overflow-x: auto; }
}
.reel-viewport { position: relative; }
/* απαλό σβήσιμο στις άκρες ώστε να μη «κόβονται» οι φωτογραφίες */
.reel-viewport::before, .reel-viewport::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 90px; z-index: 2; pointer-events: none;
}
.reel-viewport::before { left: 0; background: linear-gradient(90deg, var(--ivory), transparent); }
.reel-viewport::after { right: 0; background: linear-gradient(270deg, var(--ivory), transparent); }

.reel-item { width: 236px; flex: none; }
.reel-item .ph { position: relative; aspect-ratio: 4 / 5; overflow: hidden; background: var(--ivory-2); border: 1px solid var(--line); }
.reel-item .ph img { width: 100%; height: 100%; object-fit: cover; }
.reel-item b { display: block; margin-top: 11px; font-size: 14.5px; font-weight: 500; }
.reel-item span { display: block; font-size: 12.5px; color: var(--ink-faint); margin-top: 2px; }
/* θέση για φωτογραφία που δεν έχει έρθει ακόμα */
.reel-item .ph.empty { display: grid; place-items: center; border-style: dashed; }
.reel-item .ph.empty span { font-family: var(--font-display); font-size: 10px; letter-spacing: 0.2em; color: var(--ink-faint); }
@media (max-width: 620px) { .reel-item { width: 178px; } }

/* ── λογότυπο + player, διορθώσεις ────────────────────────────────────────── */
/* Το σήμα είναι πλέον διάφανο PNG κομμένο στον κύκλο. Λίγο μεγαλύτερο από το
   ύψος του λεκτικού και οπτικά κεντραρισμένο στις δύο γραμμές του. */
.fyw-brand { align-items: center; gap: 12px; }
.fyw-brand img { width: 34px; height: 34px; }
.fyw-brand b { line-height: 1.15; padding-top: 1px; }

/* ο player πάντα πάνω από οτιδήποτε άλλο μέσα στο πλαίσιο */
.vsl-inner iframe { z-index: 2; }

/* ═══════════════════════════════════════════════════════════════════════════
   ΔΙΚΟΣ ΜΑΣ PLAYER
   Το iframe του Vimeo μπαίνει με controls=0 ΚΑΙ pointer-events:none, οπότε δεν
   δείχνει τίποτα δικό του και δεν δέχεται κλικ. Ό,τι βλέπει ο θεατής είναι δικό
   μας: μπάρα χρόνου, play/pause, ήχος, πλήρης οθόνη.
   ═══════════════════════════════════════════════════════════════════════════ */
.vp {
  position: relative;
  max-width: 880px;
  margin: clamp(34px, 5vh, 54px) auto 0;
  background: #000;
  border: 1px solid rgba(13, 13, 13, 0.4);
  box-shadow: 0 34px 70px -34px rgba(13, 13, 13, 0.55);
  outline: none;
}
.vp-stage { position: relative; aspect-ratio: 16 / 9; overflow: hidden; background: #000; }
.vp-stage > iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; pointer-events: none; }
.vp-poster { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

.vp-start {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.36));
  display: grid; place-items: center; gap: 0;
  transition: background 0.35s;
}
.vp-start:hover { background: linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.46)); }
.vp-start .ring {
  width: 88px; height: 88px; border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.8);
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(5px);
  color: #fff;
  display: grid; place-items: center;
  transition: transform 0.35s var(--ease-out), background 0.3s;
}
.vp-start:hover .ring { transform: scale(1.06); background: rgba(0, 0, 0, 0.62); }
.vp-start .ring svg { margin-left: 5px; }
.vp-start .cap {
  position: absolute; left: 50%; bottom: 24px; transform: translateX(-50%);
  font-size: 11px; font-weight: 500; letter-spacing: 0.24em; text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.35);
  padding: 8px 16px; white-space: nowrap;
}

/* διάφανη επιφάνεια που πιάνει το κλικ για play/pause */
.vp-hit { position: absolute; inset: 0; width: 100%; height: 100%; background: transparent; border: 0; z-index: 2; }

/* ── η μπάρα χειριστηρίων ─────────────────────────────────────────────────── */
.vp-bar {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 3;
  display: flex; align-items: center; gap: 12px;
  padding: 26px 16px 12px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.72) 46%);
  color: #fff;
}
.vp-bar button {
  background: none; border: 0; color: #fff; padding: 4px;
  display: grid; place-items: center; flex: none; opacity: 0.9;
}
.vp-bar button:hover { opacity: 1; }
.vp-bar svg { display: block; }
.vp-t { font-size: 12px; font-variant-numeric: tabular-nums; color: rgba(255, 255, 255, 0.8); flex: none; min-width: 34px; }
.vp-t.vp-dur { text-align: right; }

/* οι δύο μπάρες: το γεμάτο κομμάτι έρχεται από τη μεταβλητή --p που θέτει το JS */
.vp-bar input[type=range] {
  -webkit-appearance: none; appearance: none;
  background: transparent; height: 18px; margin: 0; padding: 0; cursor: pointer;
}
.vp-bar input[type=range]::-webkit-slider-runnable-track {
  height: 3px; border-radius: 0;
  background: linear-gradient(90deg, #fff 0 var(--p, 0%), rgba(255, 255, 255, 0.3) var(--p, 0%) 100%);
}
.vp-bar input[type=range]::-moz-range-track {
  height: 3px;
  background: linear-gradient(90deg, #fff 0 var(--p, 0%), rgba(255, 255, 255, 0.3) var(--p, 0%) 100%);
}
.vp-bar input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 11px; height: 11px; border-radius: 50%; background: #fff; border: 0;
  margin-top: -4px;
}
.vp-bar input[type=range]::-moz-range-thumb { width: 11px; height: 11px; border-radius: 50%; background: #fff; border: 0; }
.vp-seek { flex: 1; min-width: 0; }
.vp-vol { width: 78px; flex: none; }
@media (max-width: 560px) { .vp-vol { display: none; } .vp-bar { gap: 9px; padding: 22px 11px 10px; } }

/* play ή pause, ανάλογα με την κατάσταση */
.vp .ico-pause { display: none; }
.vp.is-playing .ico-play { display: none; }
.vp.is-playing .ico-pause { display: block; }
.vp .ico-mute { display: none; }
.vp.is-muted .ico-vol { display: none; }
.vp.is-muted .ico-mute { display: block; }

/* πλήρης οθόνη στο ΔΙΚΟ μας κουτί, ώστε να μείνουν τα δικά μας χειριστήρια */
.vp:fullscreen { max-width: none; width: 100vw; height: 100vh; margin: 0; border: 0; display: grid; place-items: center; }
.vp:fullscreen .vp-stage { width: 100vw; height: 100vh; aspect-ratio: auto; }

/* ── πολλαπλή επιλογή στο quiz ─────────────────────────────────────────────
   Στο «στυλ» και στην «περίσταση» ο χρήστης διαλέγει όσα θέλει, οπότε η
   επιλογή πρέπει να ΜΕΝΕΙ ορατή και να υπάρχει κουμπί «Συνέχεια». */
.quiz-step[data-multi] .qo-arrow { opacity: 0; }
.quiz-opt.selected { border-color: var(--ink); background: var(--ivory-2); }
.quiz-opt.selected .qo-arrow { opacity: 1; }
.quiz-opt.selected .qo-arrow::before { content: "\2713"; }
.quiz-step[data-multi] .quiz-opt.selected .qo-arrow { font-size: 0; }
.quiz-step[data-multi] .quiz-opt.selected .qo-arrow::before { font-size: 16px; }
.quiz-nav { display: flex; align-items: center; gap: 14px; margin-top: 22px; }
.quiz-nav .quiz-back { margin: 0; }
.quiz-nav .quiz-next { margin-left: auto; }
.quiz-nav .quiz-next[disabled] { opacity: 0.35; cursor: not-allowed; }
.field label em { font-style: normal; text-transform: none; letter-spacing: 0; color: var(--ink-faint); font-size: 11px; margin-left: 6px; }

/* ── κάρτα κλήσης: πρόσωπο του Αλέξανδρου ─────────────────────────────────── */
.cs-host { align-items: center; }
.cs-photo {
  width: 60px; height: 60px; flex: none;
  border-radius: 50%; overflow: hidden;
  border: 1px solid var(--line);
  background: var(--ivory-2);
}
.cs-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 22%; }

/* ── το κάλεσμα, ακριβώς κάτω από το βίντεο ────────────────────────────────
   Αντικατέστησε την ερώτηση για το budget. Ίδια εμφάνιση με το τελικό, απλώς
   κάθεται ψηλά, εκεί που ο θεατής μόλις τελείωσε το βίντεο. */
.start-cta { text-align: center; padding: clamp(34px, 5vh, 56px) 24px clamp(44px, 6vh, 70px); border-bottom: 1px solid var(--line); }
.start-cta h2 { font-size: clamp(28px, 4.4vw, 44px); margin: 0 auto 14px; max-width: 700px; }
.start-cta p { color: var(--ink-soft); max-width: 520px; margin: 0 auto; }
.start-cta .cta-row { margin-top: 26px; }

/* Το `display:flex` νικάει το προεπιλεγμένο `[hidden]{display:none}`, οπότε η
   μπάρα φαινόταν πάνω στην αφίσα πριν καν ξεκινήσει το βίντεο. */
.vp-bar[hidden], .vp-hit[hidden] { display: none; }

/* Οι πραγματικές φωτογραφίες μπήκαν χωρίς λεζάντα, οπότε η κάρτα είναι σκέτη. */
.reel-item .ph { border: 1px solid var(--line); }
.reel-item:not(:has(b)) { width: 250px; }
@media (max-width: 620px) { .reel-item:not(:has(b)) { width: 190px; } }

/* Το κάλεσμα πρέπει να ακουμπάει το βίντεο, όχι να είναι μια οθόνη πιο κάτω. */
.stage1 { padding-bottom: clamp(18px, 2.5vh, 28px); }
.stage1 .under { margin-top: 14px; }
.start-cta { padding-top: clamp(20px, 3vh, 32px); }
.start-cta h2 { margin-top: 0; }
.start-cta .rule { margin: 16px auto; }

/* Ακόμα πιο κοντά: ο επισκέπτης τελειώνει το βίντεο και το κουμπί είναι εκεί. */
.stage1 .vsl-hint { min-height: 0; margin-top: 0; }
.stage1 .under { margin-top: 12px; font-size: 12.5px; }
.start-cta { padding-top: clamp(16px, 2vh, 24px); padding-bottom: clamp(34px, 5vh, 52px); }
.start-cta h2 { font-size: clamp(25px, 3.6vw, 36px); margin-bottom: 10px; }
.start-cta p { font-size: 15px; }
.start-cta .cta-row { margin-top: 18px; }

/* Λιγότερος αέρας πάνω από τον τίτλο, ώστε βίντεο και κουμπί να χωράνε μαζί. */
.stage1 { padding-top: clamp(18px, 2.5vh, 30px); }
.stage1 h1 { font-size: clamp(27px, 3.9vw, 42px); margin: 0 auto 10px; }
.stage1 .lede { font-size: clamp(14.5px, 1.7vw, 16px); }
.stage1 .vsl, .stage1 .vp { margin-top: clamp(22px, 3vh, 34px); }

/* Η μπάρα έμενε μόνιμα ορατή και ενοχλούσε. Τώρα σβήνει όσο παίζει και δεν
   κουνιέται τίποτα, και επανέρχεται με κίνηση, άγγιγμα ή παύση. */
.vp-bar { transition: opacity .28s ease; }
.vp.is-idle .vp-bar { opacity: 0; pointer-events: none; }
.vp.is-idle .vp-hit { cursor: none; }

/* ═══════════════════════════════════════════════════════════════════════════
   ΟΘΟΝΗ ΑΝΑΖΗΤΗΣΗΣ · «ψάχνουμε για σένα»
   Δεν είναι διακοσμητικό spinner. Δείχνει τις ΔΙΚΕΣ ΤΟΥ απαντήσεις να
   τσεκάρονται μία μία, ώστε να φαίνεται ότι κάποιος κάθεται και ψάχνει.
   ═══════════════════════════════════════════════════════════════════════════ */
.quiz-analysis { padding-bottom: 40px; }
.qa-lead { font-family: var(--font-display); font-size: clamp(21px, 3vw, 27px); color: var(--ink) !important; margin-top: 18px; }

.qa-steps { list-style: none; margin: 26px auto 0; padding: 0; max-width: 430px; text-align: left; }
.qa-steps li {
  display: flex; align-items: center; gap: 12px;
  padding: 11px 0; border-bottom: 1px solid var(--line-soft);
  font-size: 14.5px; color: var(--ink-faint);
  opacity: 0; transform: translateY(6px);
  transition: opacity .45s var(--ease-out), transform .45s var(--ease-out), color .45s;
}
.qa-steps li.in { opacity: 1; transform: none; }
.qa-steps li.done { color: var(--ink); }
.qa-steps li b { font-weight: 500; }
/* το σημάδι: κύκλος που γεμίζει μόλις ολοκληρωθεί το βήμα */
.qa-steps .mk {
  width: 18px; height: 18px; border-radius: 50%; flex: none;
  border: 1px solid var(--line); display: grid; place-items: center;
  transition: background .35s, border-color .35s;
}
.qa-steps .mk svg { width: 10px; height: 10px; opacity: 0; transition: opacity .3s; stroke: var(--cream); }
.qa-steps li.done .mk { background: var(--ink); border-color: var(--ink); }
.qa-steps li.done .mk svg { opacity: 1; }

/* το κλείσιμο: ο Αλέξανδρος, ώστε να μη μιλάει ένα μηχάνημα */
.qa-sign {
  display: flex; align-items: center; gap: 14px;
  max-width: 430px; margin: 26px auto 0; padding-top: 20px;
  border-top: 1px solid var(--line); text-align: left;
  opacity: 0; transform: translateY(8px);
  transition: opacity .6s var(--ease-out), transform .6s var(--ease-out);
}
.qa-sign.in { opacity: 1; transform: none; }
.qa-sign img { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; object-position: 50% 22%; flex: none; border: 1px solid var(--line); }
.qa-sign span { font-size: 13.5px; color: var(--ink-soft); line-height: 1.55; }
.qa-sign b { display: block; color: var(--ink); font-weight: 500; }
@media (prefers-reduced-motion: reduce) {
  .qa-steps li, .qa-sign { transition: none; opacity: 1; transform: none; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   SHOWREEL «ΔΙΠΤΥΧΟ» · εγκεκριμένο σχέδιο
   Πάνω ο άνθρωπος, κάτω το κομμάτι του. Οι περισσότεροι παίρνουν ΕΝΑ ρολόι,
   οπότε το ένα βγαίνει μεγάλο. Δύο κομμάτια μικραίνουν και μπαίνουν δίπλα,
   χωρίς να αλλάξει το ύψος της κάρτας.
   ═══════════════════════════════════════════════════════════════════════════ */
.reel-item { width: 272px; flex: none; display: block; border: 1px solid var(--line); background: var(--ivory); text-decoration: none; color: inherit; }
.reel-item .ph { aspect-ratio: 4 / 5; overflow: hidden; background: var(--ivory-2); border: 0; }
.reel-item .ph img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease-out); }
.reel-item:hover .ph img { transform: scale(1.04); }

.reel-item .strip { display: flex; align-items: center; gap: 13px; padding: 13px 14px; border-top: 1px solid var(--line); background: var(--ivory-2); }
.reel-item .pieces { display: flex; gap: 5px; flex: none; }
.reel-item .pieces span { background: var(--ivory); border: 1px solid var(--line); display: grid; place-items: center; }
.reel-item .pieces img { max-width: 80%; max-height: 80%; object-fit: contain; }
.reel-item .pieces.one span { width: 62px; height: 62px; }
.reel-item .pieces.two span { width: 44px; height: 44px; }

.reel-item .txt { min-width: 0; }
.reel-item .txt b { display: flex; align-items: center; gap: 5px; font-family: var(--font-display); font-size: 13px; letter-spacing: 0.03em; font-weight: 400; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.reel-item .txt .model { display: block; font-size: 11.5px; font-weight: 300; color: var(--ink-soft); margin-top: 4px; line-height: 1.4; }
.igicon { width: 14px; height: 14px; flex: none; }
@media (max-width: 620px) { .reel-item { width: 214px; } .reel-item .pieces.one span { width: 52px; height: 52px; } }

/* ═══════════════════════════════════════════════════════════════════════════
   SHOWREEL · διορθώσεις μετά από έλεγχο
   ═══════════════════════════════════════════════════════════════════════════ */

/* 1) Ταχύτητα. Η λωρίδα ήταν πολύ αργή και σταματούσε τελείως στο hover.
      Τώρα κυλάει κανονικά και απλώς ΕΠΙΒΡΑΔΥΝΕΙ όταν πας το ποντίκι πάνω.
      Το transform είναι ποσοστιαίο, οπότε η αλλαγή διάρκειας δεν κάνει άλμα. */
.reel-track { animation-duration: 38s; }
.reel:hover .reel-track { animation-play-state: running; animation-duration: 110s; }

/* 2) Δύο κομμάτια. Πριν, τα δύο μικρά τετράγωνα έδειχναν στριμωγμένα και οι
      κάρτες δεν ευθυγραμμίζονταν, γιατί η λωρίδα άλλαζε ύψος ανάλογα με το
      πλήθος. Τώρα η ζώνη των κομματιών έχει ΣΤΑΘΕΡΟ πλάτος και ύψος, οπότε
      το κείμενο ξεκινά πάντα από το ίδιο σημείο και όλες οι κάρτες κλείνουν
      στην ίδια γραμμή. */
.reel-item { display: flex; flex-direction: column; }
.reel-item .strip { min-height: 90px; align-items: center; }
.reel-item .pieces { width: 132px; justify-content: flex-start; gap: 8px; }
.reel-item .pieces.one span { width: 66px; height: 66px; }
/* δύο κομμάτια: ίδιο ύψος με το ένα, απλώς πιο στενά. Δεν «ζαρώνουν». */
.reel-item .pieces.two span { width: 62px; height: 66px; }
.reel-item .pieces.two { gap: 6px; }
.reel-item .txt { flex: 1; }
.reel-item .txt .model { white-space: normal; }
@media (max-width: 620px) {
  .reel-item .strip { min-height: 78px; }
  .reel-item .pieces { width: 110px; }
  .reel-item .pieces.one span { width: 56px; height: 56px; }
  .reel-item .pieces.two span { width: 52px; height: 56px; }
}

/* Το σταθερό πλάτος στα κομμάτια έστριμωχνε το κείμενο και το handle έβγαινε
   με αποσιωπητικά. Φαρδύτερη κάρτα, κομμάτια όσο χρειάζονται. Το ΥΨΟΣ μένει
   σταθερό, οπότε οι κάρτες κλείνουν πάντα στην ίδια γραμμή. */
.reel-item { width: 300px; }
.reel-item .pieces { width: auto; }
.reel-item .pieces.two span { width: 58px; height: 66px; }
@media (max-width: 620px) {
  .reel-item { width: 250px; }
  .reel-item .pieces.two span { width: 48px; height: 56px; }
}

/* Πελάτης χωρίς Instagram: δείχνουμε το όνομά του, χωρίς σήμα και χωρίς link. */
.reel-item .txt b.noig { font-size: 13.5px; }

/* ═══════════════════════════════════════════════════════════════════════════
   SHOWREEL · δύο διορθώσεις εμφάνισης

   1) Όλες οι κάρτες έχουν το ίδιο ύψος, αλλά η γκρι λωρίδα κρατούσε μόνο το
      ύψος του κειμένου της. Σε όποιον είχε μία γραμμή έμενε ανοιχτόχρωμη
      λουρίδα στον πάτο της κάρτας. Τώρα η λωρίδα γεμίζει ό,τι περισσεύει.

   2) Στο κινητό το Instagram handle ξέφευγε από την κάρτα. Το «...» που κόβει
      το κείμενο ΔΕΝ δουλεύει όταν το στοιχείο είναι display:flex, οπότε το
      γυρίζουμε σε block και βάζουμε το σήμα inline δίπλα στο κείμενο.
   ═══════════════════════════════════════════════════════════════════════════ */
.reel-item .strip { flex: 1; }
.reel-item .txt b {
  display: block;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.reel-item .txt b .igicon { display: inline-block; vertical-align: -2px; margin-right: 5px; }

/* Με δύο ρολόγια μένει λιγότερος χώρος για το όνομα, οπότε ένα μακρύ handle
   έβγαινε κομμένο. Μία ιδέα μικρότερα γράμματα και χωράει ολόκληρο. */
.reel-item .pieces.two + .txt b { font-size: 11.5px; letter-spacing: 0.01em; }
.reel-item .pieces.two span { width: 52px; }

/* 3) Στο κινητό, με δύο ρολόγια δίπλα, το handle δεν προλάβαινε να χωρέσει και
      έκοβε στη μέση. Λίγο φαρδύτερη κάρτα και λίγο μικρότερα τετράγωνα, ώστε
      να διαβάζεται ολόκληρο το όνομα. */
@media (max-width: 620px) {
  .reel-item { width: 262px; }
  .reel-item .strip { gap: 10px; padding: 12px; }
  .reel-item .pieces.one span { width: 52px; height: 52px; }
  .reel-item .pieces.two span { width: 38px; height: 52px; }
  .reel-item .pieces.two { gap: 5px; }
  .reel-item .txt b { font-size: 12px; }
  .reel-item .txt .model { font-size: 11px; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   SHOWREEL · τα ρολόγια μεγαλώνουν και ανοίγουν με κλικ

   Το τετράγωνο του ρολογιού ήταν πολύ μικρό για να φανεί καντράν και
   μπρασελέ. Μεγαλώνει και η κάρτα φαρδαίνει αντίστοιχα, ώστε το όνομα να
   συνεχίσει να χωράει ολόκληρο δίπλα του.
   ═══════════════════════════════════════════════════════════════════════════ */
.reel-item { width: 330px; }
.reel-item .strip { min-height: 112px; }
.reel-item .pieces { gap: 8px; }
.reel-item .pieces.one span { width: 88px; height: 88px; }
.reel-item .pieces.two span { width: 66px; height: 82px; }
.reel-item .pieces.two { gap: 6px; }
.reel-item .pieces img { max-width: 84%; max-height: 84%; }

/* Το τετράγωνο είναι κουμπί: πατιέται και ανοίγει η μεγάλη φωτογραφία. */
.reel-item .wshot { position: relative; cursor: zoom-in; transition: border-color 0.25s var(--ease-out), transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out); }
.reel-item .wshot:hover { border-color: #c9c6c0; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(13, 13, 13, 0.09); }
.reel-item .wshot:focus-visible { outline: 2px solid var(--ink); outline-offset: 2px; }
.reel-item .wshot::after {
  content: ""; position: absolute; right: 5px; bottom: 5px; width: 14px; height: 14px;
  opacity: 0; transition: opacity 0.25s var(--ease-out);
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230D0D0D' stroke-width='2'><circle cx='11' cy='11' r='7'/><path d='M20 20l-4.5-4.5M11 8.5v5M8.5 11h5'/></svg>") center/contain no-repeat;
}
.reel-item .wshot:hover::after { opacity: 0.55; }

@media (max-width: 620px) {
  .reel-item { width: 296px; }
  .reel-item .strip { min-height: 100px; }
  .reel-item .pieces.one span { width: 76px; height: 76px; }
  .reel-item .pieces.two span { width: 52px; height: 68px; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   ΔΙΕΞΟΔΟΣ ΠΡΟΣ ΤΟ E-SHOP · για όποιον ξέρει ήδη τι θέλει και δεν θέλει να
   περάσει από τις ερωτήσεις. Επίτηδες σκέτος σύνδεσμος και όχι κουμπί: το
   κύριο κάλεσμα παραμένει ένα.
   ═══════════════════════════════════════════════════════════════════════════ */
.shop-out {
  margin: 22px 0 0; text-align: center;
  font-size: 13.5px; font-weight: 300; color: var(--ink-faint);
}
.shop-out a {
  color: var(--ink); font-weight: 400; margin-left: 6px;
  display: inline-flex; align-items: center; gap: 5px;
  border-bottom: 1px solid rgba(13, 13, 13, 0.28); padding-bottom: 1px;
  transition: border-color 0.2s var(--ease-out), color 0.2s var(--ease-out);
}
.shop-out a:hover { border-bottom-color: var(--ink); }
.shop-out a svg { flex: none; opacity: 0.6; }
@media (max-width: 620px) {
  .shop-out { font-size: 13px; }
  .shop-out a { display: inline-flex; margin-left: 0; margin-top: 4px; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   ΜΠΑΡΑ ΣΥΓΚΑΤΑΘΕΣΗΣ · κάτω κάτω, δεν κρύβει τη σελίδα, δύο καθαρές επιλογές
   και καμία προεπιλεγμένη. Το κείμενο και η λογική είναι στο consent.js.
   ═══════════════════════════════════════════════════════════════════════════ */
.fyw-consent {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 800;
  background: var(--ivory); border-top: 1px solid var(--line);
  box-shadow: 0 -10px 30px rgba(13, 13, 13, 0.07);
  padding: 16px 24px calc(16px + env(safe-area-inset-bottom));
  transform: translateY(102%); transition: transform 0.32s var(--ease-out);
}
.fyw-consent.on { transform: none; }
.fyw-consent .fc-in {
  max-width: var(--wrap); margin: 0 auto;
  display: flex; align-items: center; gap: 26px; flex-wrap: wrap;
}
.fyw-consent .fc-txt { flex: 1; min-width: 260px; }
.fyw-consent .fc-txt b {
  display: block; font-family: var(--font-display); font-size: 12px;
  letter-spacing: 0.2em; text-transform: uppercase; font-weight: 400; margin-bottom: 6px;
}
.fyw-consent .fc-txt p { font-size: 13px; font-weight: 300; line-height: 1.65; color: var(--ink-soft); margin: 0; }
.fyw-consent .fc-txt a { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }
.fyw-consent .fc-btns { display: flex; gap: 10px; flex: none; }
.fyw-consent .fc-b {
  font-family: var(--font-body); font-size: 13px; font-weight: 500; letter-spacing: 0.02em;
  padding: 11px 20px; border: 1px solid var(--ink); background: transparent; color: var(--ink);
  cursor: pointer; white-space: nowrap; transition: background 0.2s var(--ease-out), color 0.2s var(--ease-out);
}
.fyw-consent .fc-b.ghost:hover { background: var(--ivory-2); }
.fyw-consent .fc-b.solid { background: var(--ink); color: var(--ivory); }
.fyw-consent .fc-b.solid:hover { background: #262626; }
@media (max-width: 620px) {
  .fyw-consent { padding: 14px 18px calc(14px + env(safe-area-inset-bottom)); }
  .fyw-consent .fc-in { gap: 14px; }
  .fyw-consent .fc-btns { width: 100%; }
  .fyw-consent .fc-b { flex: 1; padding: 12px 10px; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   ΣΥΓΚΑΤΑΘΕΣΗ ΣΤΙΣ ΦΟΡΜΕΣ · τι στοιχεία, γιατί, για πόσο, και ένα κουτάκι
   που ΔΕΝ είναι προεπιλεγμένο. Χωρίς αυτό δεν στέλνεται τίποτα.
   ═══════════════════════════════════════════════════════════════════════════ */
.gdpr {
  border: 1px solid var(--line); background: var(--ivory-2);
  padding: 14px 16px; margin: 18px 0 4px;
}
.gdpr > p { font-size: 12px; font-weight: 300; line-height: 1.65; color: var(--ink-soft); margin: 0 0 10px; }
.gdpr > p a { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }
.gdpr label { display: flex; align-items: flex-start; gap: 10px; cursor: pointer; }
.gdpr input[type="checkbox"] {
  appearance: none; -webkit-appearance: none; flex: none;
  width: 18px; height: 18px; margin: 1px 0 0; border: 1px solid var(--ink); background: transparent;
  cursor: pointer; display: grid; place-items: center; transition: background 0.18s var(--ease-out);
}
.gdpr input[type="checkbox"]::after {
  content: ""; width: 9px; height: 5px; border-left: 2px solid var(--ivory); border-bottom: 2px solid var(--ivory);
  transform: rotate(-45deg) scale(0); transition: transform 0.18s var(--ease-out);
}
.gdpr input[type="checkbox"]:checked { background: var(--ink); }
.gdpr input[type="checkbox"]:checked::after { transform: rotate(-45deg) scale(1); }
.gdpr input[type="checkbox"]:focus-visible { outline: 2px solid var(--ink); outline-offset: 2px; }
.gdpr label span { font-size: 12.5px; font-weight: 300; line-height: 1.55; color: var(--ink); }
.gdpr.missing { border-color: #b3261e; }
.gdpr .gdpr-err { display: none; font-size: 12px; color: #b3261e; margin: 8px 0 0; }
.gdpr.missing .gdpr-err { display: block; }

/* ═══════════════════════════════════════════════════════════════════════════
   SHOWREEL · ο χρήστης σέρνει τη λωρίδα μόνος του

   Πιάνει και τραβάει δεξιά-αριστερά, με ποντίκι ή με το δάχτυλο. Το
   `pan-y` αφήνει ελεύθερη την κάθετη κύλιση της σελίδας στο κινητό.
   Οι φωτογραφίες κλειδώνονται: πριν, τραβώντας μία έβγαινε το φάντασμα της
   εικόνας έξω από την κάρτα.
   ═══════════════════════════════════════════════════════════════════════════ */
.reel-viewport { cursor: grab; touch-action: pan-y; }
.reel-viewport.dragging { cursor: grabbing; }
.reel-track, .reel-item { user-select: none; -webkit-user-select: none; -webkit-tap-highlight-color: transparent; }
/* Το `draggable="false"` και το `dragstart` στο JS αρκούν για να μη σέρνεται η
   εικόνα. ΔΕΝ βάζουμε pointer-events:none, γιατί έκλεβε τα κλικ στην κάρτα. */
.reel-item img { -webkit-user-drag: none; user-drag: none; }
.reel-viewport.dragging .reel-item .wshot { cursor: grabbing; }

/* ═══ ΤΟ ΡΟΛΟΪ ΣΕ ΜΕΓΕΘΥΝΣΗ ════════════════════════════════════════════════
   Λευκή κάρτα πάνω σε σκούρο φόντο, το ρολόι μεγάλο και από κάτω το όνομα
   του μοντέλου. Όποιος πήρε δύο κομμάτια τα αλλάζει με τα βελάκια.
   ═══════════════════════════════════════════════════════════════════════════ */
body.wlb-open { overflow: hidden; }
.wlb {
  position: fixed; inset: 0; z-index: 900; display: none; place-items: center; padding: 24px;
  background: rgba(13, 13, 13, 0.68); -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
}
.wlb.on { display: grid; animation: wlbIn 0.22s var(--ease-out); }
@keyframes wlbIn { from { opacity: 0; } to { opacity: 1; } }
.wlb-box { position: relative; width: 100%; max-width: 540px; background: #fff; animation: wlbPop 0.28s var(--ease-out); }
@keyframes wlbPop { from { opacity: 0; transform: scale(0.965); } to { opacity: 1; transform: none; } }
.wlb-stage { position: relative; display: grid; place-items: center; }
.wlb-img { width: 100%; aspect-ratio: 1 / 1; object-fit: contain; padding: 30px; background: #fff; opacity: 0; transition: opacity 0.3s var(--ease-out); }
.wlb-img.ready { opacity: 1; }
.wlb-cap { border-top: 1px solid var(--line); padding: 16px 22px 18px; text-align: center; }
.wlb-cap b { display: block; font-family: var(--font-display); font-size: 16.5px; font-weight: 400; letter-spacing: 0.03em; }
.wlb-cap span { display: block; font-size: 12.5px; font-weight: 300; color: var(--ink-soft); margin-top: 6px; }
.wlb-x {
  position: absolute; top: 10px; right: 10px; z-index: 2; width: 36px; height: 36px;
  display: grid; place-items: center; border: 1px solid var(--line); background: #fff;
  border-radius: 50%; cursor: pointer; color: var(--ink); padding: 0;
  transition: background 0.2s var(--ease-out);
}
.wlb-x:hover { background: var(--ivory-2); }
.wlb-x svg { width: 16px; height: 16px; }
/* Τα βελάκια εμφανίζονται μόνο όταν υπάρχουν δύο κομμάτια. */
.wlb-nav { display: none; }
.wlb.multi .wlb-nav {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 2;
  display: grid; place-items: center; width: 40px; height: 40px; padding: 0;
  border: 1px solid var(--line); background: #fff; border-radius: 50%; cursor: pointer; color: var(--ink);
  transition: background 0.2s var(--ease-out);
}
.wlb.multi .wlb-nav:hover { background: var(--ivory-2); }
.wlb.multi .wlb-nav svg { width: 17px; height: 17px; }
.wlb.multi .wlb-nav.prev { left: 12px; }
.wlb.multi .wlb-nav.next { right: 12px; }
@media (max-width: 620px) {
  .wlb { padding: 16px; }
  .wlb-img { padding: 20px; }
  .wlb-cap b { font-size: 15px; }
  .wlb.multi .wlb-nav { width: 36px; height: 36px; }
  .wlb.multi .wlb-nav.prev { left: 6px; }
  .wlb.multi .wlb-nav.next { right: 6px; }
}
