/* ============================================================
   Δικηγορικό Γραφείο Ξάνθης — design system
   Σύστημα: «Γνωμοδότηση» v2 — κόκκινο & μαύρο, κατ' απαίτηση.
   Porcelain #F8F7F5 · ink #191518 · oxblood #7E1F2D (δεμένο
   δέρμα νομικών τόμων) · charcoal band #161216 ·
   brass #8F7442 (μόνο μικρολεπτομέρειες).
   Τυπογραφία: Piazzolla (display, variable/opsz) /
   Commissioner (body — ελληνικής σχεδίασης). Light & dark.
   Υπογραφή: αρίθμηση ενοτήτων Α΄ Β΄ Γ΄ όπως σε δικόγραφο +
   πορτρέτο με μπρούτζινη offset κορνίζα στον ήρωα.
   ============================================================ */

:root {
  color-scheme: light dark;

  /* — παλέτα (light) — */
  --paper: #F8F7F5;
  --surface: #FFFFFF;
  --ink: #191518;
  --muted: #6A6266;
  --wash: #F1EDEB;
  --hairline: #DFD9D5;
  --accent: #7E1F2D;
  --accent-deep: #5E1521;
  --accent-wash: #F4E5E4;
  --brass: #8F7442;
  --link: #7E1F2D;
  --ring: #7E1F2D;

  /* σταθερές σκούρες επιφάνειες (ίδιες σε light/dark) */
  --band: #161216;
  --band-text: #F5F2F0;
  --band-soft: #B5ABA9;
  --band-line: rgba(245, 242, 240, 0.15);
  --foot-bg: #100D10;

  --btn-bg: #7E1F2D;
  --btn-fg: #FBF6F5;
  --btn-bg-hover: #5E1521;
  --ghost-line: rgba(25, 21, 24, 0.42);

  --shadow-soft: 0 1px 2px rgba(25, 21, 24, 0.05);

  /* — τυπογραφία — */
  --font-display: "Piazzolla", Georgia, "Times New Roman", serif;
  --font-body: "Commissioner", "Segoe UI", Arial, sans-serif;

  --fs-hero: clamp(2.7rem, 6vw, 4.3rem);
  --fs-h2: clamp(1.65rem, 3vw, 2.2rem);
  --fs-h3: 1.22rem;
  --fs-body: 1.0625rem;
  --fs-small: 0.875rem;
  --fs-label: 0.78rem;

  /* — δομή — */
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --content-max: 1120px;
  --prose-max: 66ch;
  --radius: 4px;
  --radius-lg: 8px;
}

@media (prefers-color-scheme: dark) {
  :root {
    --paper: #131013;
    --surface: #1C171B;
    --ink: #EFEAEC;
    --muted: #A69DA2;
    --wash: #191519;
    --hairline: #322B31;
    --accent: #D9838D;
    --accent-deep: #E59AA3;
    --accent-wash: #2A1E22;
    --brass: #C0A678;
    --link: #D9838D;
    --ring: #D9838D;

    --band: #1A1519;
    --foot-bg: #0D0A0D;

    --btn-bg: #B03A4C;
    --btn-fg: #FFF7F7;
    --btn-bg-hover: #C4485A;
    --ghost-line: rgba(239, 234, 236, 0.4);

    --shadow-soft: 0 1px 2px rgba(0, 0, 0, 0.4);
  }
}

/* ---------- βάση ---------- */

*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  counter-reset: art;
}

::selection { background: var(--accent-wash); color: var(--ink); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-optical-sizing: auto;
  font-weight: 500;
  line-height: 1.12;
  margin: 0 0 0.55em;
  text-wrap: balance;
}
h3 { font-size: var(--fs-h3); line-height: 1.3; }

p { margin: 0 0 1.1em; }
ul, ol { margin: 0 0 1.2em; padding-left: 1.3em; }
li { margin-bottom: 0.4em; }
strong { font-weight: 650; }

a {
  color: var(--link);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color 160ms ease;
  cursor: pointer;
}
a:hover { color: var(--accent-deep); }

:focus-visible {
  outline: 2px solid var(--ring);
  outline-offset: 2px;
  border-radius: 3px;
}

img, svg { max-width: 100%; height: auto; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--band);
  color: var(--band-text);
  padding: 0.6rem 1rem;
  z-index: 100;
  border-radius: var(--radius);
  font-weight: 600;
}
.skip-link:focus { left: 0.5rem; top: 0.5rem; }

/* ---------- βοηθητικά ---------- */

.wrap {
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.eyebrow {
  font-weight: 600;
  font-size: var(--fs-label);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 1rem;
}

.lede {
  font-size: clamp(1.1rem, 2vw, 1.22rem);
  line-height: 1.65;
  max-width: 54ch;
  color: var(--ink);
}

.small { font-size: var(--fs-small); color: var(--muted); }

.prose { max-width: var(--prose-max); }
.prose h2 { font-size: var(--fs-h2); margin-top: 2.1em; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin-top: 1.7em; }
.prose li::marker { color: var(--accent); }

.stamp { display: none; }

/* ---------- υπογραφή: αρίθμηση ενοτήτων σαν δικόγραφο ---------- */

@counter-style greek-art {
  system: fixed;
  symbols: "Α" "Β" "Γ" "Δ" "Ε" "ΣΤ" "Ζ" "Η" "Θ";
  fallback: upper-alpha;
}

section[data-m] { counter-increment: art; }

.marginalia {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  max-width: var(--content-max);
  margin: 0 auto 2.4rem;
  padding-inline: var(--gutter);
  font-weight: 600;
  font-size: var(--fs-label);
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: var(--muted);
}
.marginalia::before {
  content: counter(art, greek-art) "΄";
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0;
  color: var(--brass);
}
.marginalia::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--hairline);
  transform: translateY(-0.32em);
}
/* σε σελίδες με μία μόνο ενότητα η αρίθμηση δεν λέει τίποτα — μένει η ετικέτα */
main > section[data-m]:only-of-type .marginalia::before { content: none; }

/* διαδοχικές ενότητες: το rail αναλαμβάνει την ανάσα που χάνει το padding */
.section + .section:not(.band) .marginalia { padding-top: clamp(2.8rem, 7vh, 4.5rem); }

/* το rail αντικαθιστά τα eyebrows μέσα στις αριθμημένες ενότητες */
section[data-m] .eyebrow { display: none; }
section[data-m] .contact-card .eyebrow { display: block; }

/* ---------- κουμπιά ---------- */

.btn,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  padding: 0.75rem 1.5rem;
  min-height: 46px;
  border-radius: var(--radius);
  transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease;
  cursor: pointer;
}
.btn {
  background: var(--btn-bg);
  color: var(--btn-fg);
  border: 1px solid var(--btn-bg);
}
.btn:hover {
  background: var(--btn-bg-hover);
  border-color: var(--btn-bg-hover);
  color: var(--btn-fg);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ghost-line);
}
.btn-ghost:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--paper);
}

/* ---------- κεφαλίδα ---------- */

.site-head {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--paper) 92%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--hairline);
}

.site-head .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-block: 0.75rem;
}

.wordmark {
  text-decoration: none;
  color: var(--ink);
  line-height: 1.1;
  flex-shrink: 0;
}
.wordmark:hover { color: var(--ink); }
.wordmark .name {
  display: block;
  font-family: var(--font-display);
  font-optical-sizing: auto;
  font-weight: 500;
  font-size: 1.38rem;
  color: var(--ink);
}
.wordmark .role {
  display: block;
  font-weight: 600;
  font-size: 0.63rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.22rem;
}

.site-nav ul {
  display: flex;
  align-items: center;
  gap: clamp(0.8rem, 2vw, 1.7rem);
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-nav a {
  font-weight: 500;
  font-size: 0.93rem;
  text-decoration: none;
  color: var(--ink);
  padding: 0.45rem 0.1rem;
  border-bottom: 2px solid transparent;
  transition: color 160ms ease, border-color 160ms ease;
}
.site-nav a:hover { color: var(--accent); }
.site-nav a[aria-current="page"] {
  color: var(--accent);
  font-weight: 600;
  border-bottom-color: var(--accent);
}
.head-call { white-space: nowrap; padding: 0.55rem 1.15rem; min-height: 42px; }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--ghost-line);
  border-radius: var(--radius);
  padding: 0.5rem 0.85rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--ink);
  cursor: pointer;
  transition: border-color 160ms ease;
}
.nav-toggle:hover { border-color: var(--ink); }

/* ---------- ήρωας: λευκός, καθαρά τυπογραφικός ---------- */

.hero {
  background: var(--paper);
  padding-block: clamp(4rem, 11vh, 7rem) clamp(3rem, 8vh, 5rem);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  gap: clamp(1.8rem, 4.5vw, 4rem);
  align-items: center;
}

.hero h1 {
  font-size: var(--fs-hero);
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.04;
  max-width: 14ch;
  margin-bottom: 0.45em;
}
.hero h1 em {
  font-style: italic;
  font-weight: 460;
  color: var(--accent);
}

/* ήρωας με πορτρέτο: κείμενο αριστερά, φωτογραφία δεξιά */
.hero .wrap {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.hero-figure {
  margin: 0;
  position: relative;
  padding: 0 14px 14px 0;
}
.hero-figure img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--hairline);
}
.hero-figure::after {
  content: "";
  position: absolute;
  top: 14px;
  left: 14px;
  right: 0;
  bottom: 0;
  border: 1px solid var(--brass);
  border-radius: var(--radius-lg);
  z-index: -1;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 1.9rem 0 1.4rem;
}

.hero-meta {
  font-size: 0.92rem;
  color: var(--muted);
}
.hero-meta span { white-space: nowrap; }

/* ---------- λωρίδα πιστοποιήσεων: το βαθύ πράσινο ---------- */

.cred-band {
  background: var(--band);
  color: var(--band-text);
  border-top: 2px solid var(--accent);
}
.cred-band ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.cred-band li {
  margin: 0;
  padding: 1.5rem 1.6rem 1.6rem 0;
  border-left: 1px solid var(--band-line);
  padding-left: 1.6rem;
}
.cred-band li:first-child { border-left: 0; padding-left: 0; }
.cred-band strong {
  display: block;
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.4;
  color: var(--band-text);
  margin-bottom: 0.2rem;
}
.cred-band span {
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--band-soft);
}

/* κάρτα στοιχείων (εσωτερικές σελίδες — π.χ. Γραφείο) */

.cred-card {
  background: var(--surface);
  color: var(--ink);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: clamp(1.4rem, 3vw, 1.9rem);
}
.cred-photo {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  border: 1px solid var(--hairline);
  margin-bottom: 1.2rem;
}
.cred-card .cred-title {
  font-weight: 600;
  font-size: var(--fs-label);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 1.1rem;
}
.cred-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
}
.cred-card li {
  margin: 0;
  padding: 0.85rem 0;
  border-top: 1px solid var(--hairline);
}
.cred-card li:first-child { border-top: 0; padding-top: 0; }
.cred-card .ic { display: none; }
.cred-card strong { display: block; font-size: 0.97rem; line-height: 1.4; font-weight: 600; }
.cred-card span { font-size: 0.85rem; color: var(--muted); line-height: 1.5; }

/* ---------- πινάκιο υπηρεσιών: στοιχειοθετημένος πίνακας ---------- */

.ledger {
  list-style: none;
  margin: 2.2rem 0 0;
  padding: 0;
  border-top: 1px solid var(--hairline);
  max-width: 60rem;
}
.ledger li { margin: 0; }
.ledger a {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr) auto;
  align-items: baseline;
  gap: 0.35rem 1.5rem;
  padding: 1.1rem 0.65rem;
  margin-inline: -0.65rem;
  border-bottom: 1px solid var(--hairline);
  text-decoration: none;
  color: var(--ink);
  border-radius: 2px;
  transition: background-color 160ms ease;
}
.ledger .t {
  font-family: var(--font-display);
  font-optical-sizing: auto;
  font-weight: 500;
  font-size: 1.28rem;
  line-height: 1.25;
  transition: color 160ms ease;
}
.ledger .leader { display: none; }
.ledger .d {
  font-size: 0.85rem;
  color: var(--muted);
}
.ledger a::after {
  content: "→";
  color: var(--accent);
  font-weight: 600;
  transition: transform 180ms ease;
}
.ledger a:hover { background: var(--accent-wash); }
.ledger a:hover .t { color: var(--accent); }
.ledger a:hover::after { transform: translateX(4px); }

/* ---------- τμήματα ---------- */

.section { padding-block: clamp(3.2rem, 9vh, 5.8rem); }
.section + .section { padding-top: 0; }

.band {
  background: var(--wash);
  border-block: 1px solid var(--hairline);
}
.section.band { padding-block: clamp(2.5rem, 6vh, 4rem); }

.cols3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3.5vw, 3rem);
}
.cols3 h3 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--ink);
  border-top: 2px solid var(--accent);
  padding-top: 0.9rem;
}
.cols3 p { color: var(--muted); font-size: 0.98rem; margin: 0; }

/* ---------- κάρτα επικοινωνίας ---------- */

.contact-card {
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 4vw, 2.4rem);
  box-shadow: var(--shadow-soft);
}

.kv {
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 0.6rem 1.5rem;
  margin: 0;
}
.kv dt {
  font-weight: 600;
  font-size: 0.73rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  padding-top: 0.3em;
}
.kv dd { margin: 0; }
.kv .big {
  font-size: 1.5rem;
  font-family: var(--font-display);
  font-optical-sizing: auto;
  font-weight: 500;
}
.kv .big a { color: var(--accent); }

/* ---------- FAQ ---------- */

.faq { max-width: var(--prose-max); }
.faq details { border-top: 1px solid var(--hairline); }
.faq details:last-of-type { border-bottom: 1px solid var(--hairline); }
.faq summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 1rem 0.2rem;
  font-weight: 600;
  font-size: 1.02rem;
  transition: color 160ms ease;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--accent);
  flex-shrink: 0;
}
.faq details[open] summary::after { content: "−"; }
.faq summary:hover { color: var(--accent); }
.faq .a { padding: 0 0.2rem 1.2rem; color: var(--muted); max-width: 62ch; }

/* ---------- ψίχουλα & σημειώσεις ---------- */

.crumbs {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--muted);
  margin-bottom: 2rem;
}
.crumbs a { color: var(--muted); text-decoration: none; }
.crumbs a:hover { color: var(--accent); }
.crumbs .sep { margin-inline: 0.5rem; color: var(--hairline); }

.notice {
  border-left: 2px solid var(--hairline);
  padding: 0.2rem 0 0.2rem 1.1rem;
  font-size: var(--fs-small);
  color: var(--muted);
  max-width: var(--prose-max);
  margin-top: 3rem;
}

/* ---------- CTA σελίδων: πράσινο πάνελ ---------- */

.page-cta {
  margin-top: 3.5rem;
  background: var(--band);
  color: var(--band-text);
  border-radius: var(--radius-lg);
  padding: clamp(1.7rem, 4vw, 2.5rem);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  max-width: 860px;
}
.page-cta .txt { max-width: 46ch; }
.page-cta h2 { font-size: 1.55rem; color: var(--band-text); margin-bottom: 0.3em; }
.page-cta p { margin: 0; color: var(--band-soft); font-size: 0.97rem; }
.page-cta .acts { display: flex; flex-wrap: wrap; gap: 0.7rem; }
.page-cta .btn-ghost { color: var(--band-text); border-color: var(--band-line); }
.page-cta .btn-ghost:hover {
  background: var(--band-text);
  color: var(--band);
  border-color: var(--band-text);
}
.page-cta :focus-visible,
.cred-band :focus-visible { outline-color: var(--band-text); }

/* ---------- υποσέλιδο ---------- */

.site-foot {
  margin-top: clamp(3rem, 8vh, 5rem);
  background: var(--foot-bg);
  color: #BDB5B9;
  font-size: 0.95rem;
}
.site-foot .wrap {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  padding-block: 3rem 2rem;
}
.site-foot h2 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #8A8186;
  margin-bottom: 1rem;
}
.site-foot a { color: #E2DDDF; text-decoration: none; transition: color 160ms ease; }
.site-foot a:hover { color: #FFFFFF; text-decoration: underline; }
.site-foot ul { list-style: none; margin: 0; padding: 0; }
.site-foot li { margin-bottom: 0.5rem; }
.site-foot .fm-name {
  font-family: var(--font-display);
  font-optical-sizing: auto;
  font-weight: 500;
  font-size: 1.35rem;
  color: #FFFFFF;
  margin-bottom: 0.2rem;
}
.foot-legal { border-top: 1px solid rgba(255, 255, 255, 0.1); }
.foot-legal .wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.8rem;
  padding-block: 1.1rem;
  font-size: 0.8rem;
  color: #7E8A81;
}

/* ---------- κινητή μπάρα κλήσης ---------- */

.callbar {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  background: var(--foot-bg);
  padding: 0.6rem var(--gutter) calc(0.6rem + env(safe-area-inset-bottom));
}
.callbar a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: 48px;
  background: var(--btn-bg);
  color: var(--btn-fg);
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
}
.callbar a:active { background: var(--btn-bg-hover); }

/* ---------- 404 ---------- */

.err main { padding-block: 10vh; }
.err .code {
  font-family: var(--font-display);
  font-optical-sizing: auto;
  font-style: italic;
  font-weight: 460;
  font-size: clamp(5rem, 16vw, 9rem);
  color: var(--hairline);
  line-height: 1;
  margin: 0;
}

/* ---------- κίνηση: μία στιγμή, στον ήρωα ---------- */

@media (prefers-reduced-motion: no-preference) {
  @keyframes rise {
    from { opacity: 0; transform: translateY(14px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .hero .eyebrow    { animation: rise 550ms cubic-bezier(0.2, 0.7, 0.3, 1) both; }
  .hero h1          { animation: rise 550ms cubic-bezier(0.2, 0.7, 0.3, 1) 70ms both; }
  .hero .lede       { animation: rise 550ms cubic-bezier(0.2, 0.7, 0.3, 1) 140ms both; }
  .hero .hero-actions { animation: rise 550ms cubic-bezier(0.2, 0.7, 0.3, 1) 210ms both; }
  .hero .hero-meta  { animation: rise 550ms cubic-bezier(0.2, 0.7, 0.3, 1) 270ms both; }
  .hero-figure      { animation: rise 550ms cubic-bezier(0.2, 0.7, 0.3, 1) 180ms both; }
}

/* ---------- responsive ---------- */

@media (max-width: 900px) {
  .site-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: var(--surface);
    border-bottom: 1px solid var(--hairline);
    box-shadow: 0 12px 24px rgba(25, 21, 24, 0.12);
  }
  .site-nav.open { display: block; }
  .site-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.5rem var(--gutter) 1rem;
  }
  .site-nav a {
    display: block;
    padding: 0.9rem 0.2rem;
    border-bottom: 1px solid var(--hairline);
    font-size: 1rem;
  }
  .site-nav a[aria-current="page"] { border-bottom-color: var(--hairline); }
  .nav-toggle { display: block; }
  .head-call { display: none; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero .wrap { grid-template-columns: 1fr; gap: 2.4rem; }
  .hero-figure { max-width: 430px; }
  .cols3 { grid-template-columns: 1fr; }
  .site-foot .wrap { grid-template-columns: 1fr; }
  .cred-band ul { grid-template-columns: 1fr 1fr; }
  .cred-band li:nth-child(odd) { border-left: 0; padding-left: 0; }
  .cred-band li { padding-block: 1.1rem; }
  .cred-band li:nth-child(n+3) { border-top: 1px solid var(--band-line); }
}

@media (max-width: 760px) {
  .callbar { display: block; }
  body { padding-bottom: 72px; }
  .kv { grid-template-columns: 1fr; gap: 0.15rem 0; }
  .kv dt { margin-top: 0.9rem; }
  .ledger a {
    grid-template-columns: 1fr auto;
    align-items: center;
  }
  .ledger a::after { grid-column: 2; grid-row: 1; }
  .ledger .d { grid-column: 1 / -1; margin-top: -0.15rem; }
}

@media (max-width: 560px) {
  .cred-band ul { grid-template-columns: 1fr; }
  .cred-band li { border-left: 0; padding-left: 0; }
  .cred-band li:nth-child(n+2) { border-top: 1px solid var(--band-line); }
}

/* ---------- προσβασιμότητα κίνησης ---------- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .ledger a:hover::after { transform: none; }
}

/* ---------- εκτύπωση ---------- */

@media print {
  .site-head, .callbar, .site-foot, .page-cta, .hero-actions { display: none; }
  body { background: #fff; color: #000; padding: 0; }
  .hero { background: #fff; }
  .hero h1, .hero .lede { color: #000; }
  .cred-band { background: #fff; color: #000; border-block: 1pt solid #000; }
  .cred-band strong, .cred-band span { color: #000; }
}
