/* =========================================================
   ΚΔΑΠ Σβούρα – Στυλ σελίδας
   Παλέτα εμπνευσμένη από το λογότυπο (σβούρα)
   Σχεδιασμός με έμφαση στην προσβασιμότητα (ΑμεΑ / WCAG 2.1 AA)
   ========================================================= */

:root {
  --teal:        #2a9d9a;   /* κύριο */
  --teal-dark:   #1f7a78;   /* hover / κείμενο σε ανοιχτό */
  --blue:        #1f3fb0;
  --magenta:     #d81b74;
  --magenta-dark:#b21460;
  --yellow:      #f4c400;
  --green:       #6fbf3a;
  --orange:      #f28a1a;

  --ink:        #1d2b2b;     /* βασικό κείμενο */
  --ink-soft:   #45585a;     /* δευτερεύον κείμενο */
  --bg:         #ffffff;
  --bg-alt:     #f3faf9;     /* ανοιχτό teal φόντο ενοτήτων */
  --line:       #d9e6e5;
  --focus:      #0a3d62;     /* έντονο περίγραμμα εστίασης */

  --radius:     16px;
  --radius-sm:  10px;
  --shadow:     0 8px 24px rgba(31, 122, 120, .12);
  --shadow-lg:  0 16px 40px rgba(31, 122, 120, .18);
  --maxw:       1280px;
}

/* ---------- Βασικά ---------- */
*, *::before, *::after { box-sizing: border-box; }

/* Το χαρακτηριστικό hidden πρέπει πάντα να υπερισχύει των display κανόνων */
[hidden] { display: none !important; }

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

/* Το κύριο περιεχόμενο δεν πρέπει να δείχνει περίγραμμα εστίασης όταν το εστιάζει το skip link */
main:focus { outline: none; }

body {
  margin: 0;
  font-family: "Nunito", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-size: 1.0625rem;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .brand-text { font-family: "Baloo 2", "Nunito", system-ui, sans-serif; }

h1 { font-size: clamp(2rem, 5vw, 3.1rem); line-height: 1.1; margin: .2em 0 .35em; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.3rem); line-height: 1.15; margin: 0 0 .5em; color: var(--teal-dark); }

p { margin: 0 0 1rem; }

img { max-width: 100%; height: auto; display: block; }

a { color: var(--teal-dark); }
a:hover { color: var(--magenta-dark); }

.container { width: min(var(--maxw), 100% - 2.5rem); margin-inline: auto; }

.section { padding: clamp(3rem, 7vw, 5rem) 0; }
.section-alt { background: var(--bg-alt); }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 700;
  font-size: .8rem;
  color: var(--magenta);
  margin: 0 0 .4rem;
}

.section-head { max-width: 62ch; margin-bottom: 2.2rem; }
.section-intro { color: var(--ink-soft); }

/* ---------- Προσβασιμότητα: helpers ---------- */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute; left: 8px; top: -60px;
  background: var(--ink); color: #fff;
  padding: .7rem 1.1rem; border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  z-index: 200; font-weight: 700; text-decoration: none;
  transition: top .15s ease;
}
.skip-link:focus { top: 0; color: #fff; }

/* Ορατή εστίαση παντού (πληκτρολόγιο) */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ---------- Κουμπιά ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: "Baloo 2", sans-serif;
  font-weight: 600; font-size: 1.05rem;
  padding: .8rem 1.5rem;
  border-radius: 999px;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .12s ease, background-color .15s ease, color .15s ease, box-shadow .15s ease;
}
.btn-primary { background: var(--magenta); color: #fff; }
.btn-primary:hover { background: var(--magenta-dark); color: #fff; transform: translateY(-2px); }
.btn-ghost { background: #fff; color: var(--teal-dark); border-color: var(--teal); }
.btn-ghost:hover { background: var(--teal); color: #fff; transform: translateY(-2px); }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.95);
  backdrop-filter: saturate(140%) blur(6px);
  border-bottom: 3px solid var(--teal);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding: .6rem 0;
}
.brand { display: inline-flex; align-items: center; gap: .6rem; text-decoration: none; color: var(--ink); }
.brand-logo { border-radius: 10px; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-text strong { color: var(--blue); font-size: 1.5rem; }
.brand-sub { color: var(--magenta); font-weight: 700; letter-spacing: .18em; font-size: .72rem; }

.primary-nav ul {
  list-style: none; display: flex; gap: .15rem; margin: 0; padding: 0; align-items: center;
}
.primary-nav li { flex: 0 0 auto; }
.primary-nav a {
  display: inline-block; text-decoration: none; color: var(--ink);
  font-weight: 700; padding: .55rem .7rem; border-radius: 999px;
  white-space: nowrap;
}
.primary-nav a:hover { background: var(--bg-alt); color: var(--teal-dark); }
.primary-nav .nav-cta { background: var(--teal); color: #fff; }
.primary-nav .nav-cta:hover { background: var(--teal-dark); color: #fff; }

.nav-toggle {
  display: none;
  position: relative;
  width: 46px; height: 46px;
  background: #fff; border: 2px solid var(--line); border-radius: 12px;
  cursor: pointer; padding: 0;
}
.nav-toggle-bar {
  position: absolute; left: 11px; right: 11px; height: 2.5px;
  background: var(--ink); border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle-bar:nth-child(1) { top: 15px; }
.nav-toggle-bar:nth-child(2) { top: 21px; }
.nav-toggle-bar:nth-child(3) { top: 27px; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) { top: 21px; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) { top: 21px; transform: rotate(-45deg); }

/* ---------- Κυλιόμενη ανακοίνωση αρχικής ---------- */
/* Αν το μήνυμα έχει διαγραφεί από το διαχειριστικό, το πλαίσιο δεν εμφανίζεται. */
.announcement-ticker[hidden] { display: none; }

.announcement-ticker {
  margin: 0 auto clamp(1.4rem, 3vw, 2.4rem);
  overflow: hidden;
  border: 3px solid var(--teal);
  border-radius: 999px;
  background: rgba(255, 255, 255, .9);
  box-shadow: var(--shadow);
}
.announcement-track {
  display: flex;
  width: max-content;
  animation: announcement-scroll 24s linear infinite;
}
.announcement-track span {
  flex: 0 0 auto;
  padding: .7rem 3.5rem;
  white-space: pre; /* Διατηρεί πολλαπλά κενά, π.χ. "     //" */
  font-family: "Baloo 2", "Nunito", system-ui, sans-serif;
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.3;
  font-weight: 700;
  color: var(--magenta-dark);
}
.announcement-ticker:hover .announcement-track { animation-play-state: paused; }
@keyframes announcement-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Hero ---------- */
.hero {
  background:
    radial-gradient(1200px 400px at 80% -20%, rgba(42,157,154,.18), transparent 60%),
    linear-gradient(180deg, #eafaf8 0%, #ffffff 100%);
  padding: clamp(2.5rem, 6vw, 4.5rem) 0;
}
.hero-inner {
  display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}
.hero-lead { font-size: 1.15rem; color: var(--ink-soft); max-width: 46ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.4rem; }
.hero-figure { margin: 0; }
.hero-figure img {
  border-radius: var(--radius); box-shadow: var(--shadow-lg);
  border: 5px solid #fff; width: 100%; object-fit: cover;
}

/* ---------- Ποιοι είμαστε ---------- */
.about-grid {
  display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}
.about-figure { margin: 0; }
.about-figure img {
  border-radius: var(--radius); box-shadow: var(--shadow);
  width: 100%; max-height: 520px; object-fit: cover; object-position: top;
}
.feature-list { list-style: none; margin: 1.2rem 0 0; padding: 0; display: grid; gap: .9rem; }
.feature-list li { display: flex; gap: .8rem; align-items: flex-start; }
.feature-ico {
  flex: 0 0 auto; width: 44px; height: 44px; display: grid; place-items: center;
  background: var(--bg-alt); border-radius: 12px; font-size: 1.4rem; line-height: 1;
}

/* ---------- Gallery ---------- */
.gallery {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem;
}
.gallery-item figure {
  margin: 0; background: #fff; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); border: 1px solid var(--line);
  transition: transform .15s ease, box-shadow .15s ease;
}
.gallery-item figure:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.gallery-item img { aspect-ratio: 4 / 3; width: 100%; object-fit: cover; }
.gallery-item figcaption {
  padding: .8rem 1rem; font-weight: 700; color: var(--teal-dark);
  font-family: "Baloo 2", sans-serif;
}

/* Clickable κάρτες κατηγορίας (data-driven δραστηριότητες) */
.gallery-link { display: block; text-decoration: none; color: inherit; border-radius: var(--radius); }
.gallery-link:focus-visible { outline: 3px solid var(--focus); outline-offset: 3px; }
.gallery-item figcaption { display: flex; flex-direction: column; gap: .1rem; }
.gallery-title { font-weight: 700; color: var(--teal-dark); font-family: "Baloo 2", sans-serif; }
.gallery-count { font-size: .82rem; color: var(--ink-soft); font-weight: 600; font-family: "Nunito", sans-serif; }
.gallery-link:hover .gallery-title { color: var(--magenta-dark); }
.activities-loading, .activities-empty {
  grid-column: 1 / -1; color: var(--ink-soft); padding: 1rem 0; margin: 0; list-style: none;
}

/* Σελίδα κατηγορίας */
#category-view h1 { color: var(--teal-dark); margin-top: .3rem; }
#category-view .lead { color: var(--ink-soft); font-size: 1.12rem; max-width: 65ch; }
.photo-grid { margin-top: 1.5rem; }
.photo-grid figcaption {
  font-family: "Nunito", sans-serif; font-weight: 600; color: var(--ink);
  padding: .75rem 1rem;
}


/* Σελίδα νέου */
#news-view h1 { color: var(--teal-dark); margin-top: .3rem; }
.news-cover { margin: 1.2rem 0 1.5rem; }
.news-cover img {
  width: 100%; max-height: 620px; object-fit: cover;
  border-radius: var(--radius); box-shadow: var(--shadow); border: 1px solid var(--line);
}
.news-body {
  max-width: 78ch; white-space: pre-wrap; color: var(--ink);
  font-size: 1.08rem; line-height: 1.8;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(1rem, 3vw, 1.5rem); box-shadow: var(--shadow);
}
.news-gallery-title { margin-top: 2rem; }

/* ---------- Τοποθεσία ---------- */
.location-grid {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}
.contact-details { list-style: none; margin: 0 0 1.6rem; padding: 0; display: grid; gap: 1rem; }
.contact-details li { display: flex; gap: .8rem; align-items: flex-start; }
.contact-details a { font-weight: 700; }
.ci {
  flex: 0 0 auto; width: 42px; height: 42px; display: grid; place-items: center;
  background: var(--bg-alt); border-radius: 12px; font-size: 1.25rem;
}
.ci-label { display: block; font-size: .78rem; text-transform: uppercase; letter-spacing: .1em; color: var(--ink-soft); font-weight: 700; }
.location-map {
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow);
  border: 1px solid var(--line); background: #eef5f4;
}
.location-map iframe { width: 100%; height: 420px; border: 0; display: block; }

/* ---------- Συχνές ερωτήσεις (accordion) ---------- */
.faq-wrap { max-width: 820px; }
.faq-list { display: grid; gap: .8rem; }
.faq-item {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-sm); box-shadow: var(--shadow); overflow: hidden;
}
.faq-item summary {
  cursor: pointer; list-style: none;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1rem 1.2rem;
  font-family: "Baloo 2", sans-serif; font-weight: 600; font-size: 1.08rem;
  color: var(--teal-dark);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { background: var(--bg-alt); }
.faq-item summary:focus-visible { outline: 3px solid var(--focus); outline-offset: -3px; border-radius: 4px; }
/* Ένδειξη + / − */
.faq-item summary::after {
  content: "+"; flex: 0 0 auto;
  width: 30px; height: 30px; display: grid; place-items: center;
  font-size: 1.5rem; line-height: 1; font-weight: 700;
  color: #fff; background: var(--teal); border-radius: 50%;
  transition: background-color .15s ease, transform .15s ease;
}
.faq-item[open] summary { color: var(--magenta-dark); }
.faq-item[open] summary::after { content: "−"; background: var(--magenta); }
.faq-answer { padding: 0 1.2rem 1.15rem; }
.faq-answer p { margin: 0; color: var(--ink); }

/* ---------- Φόρμα επικοινωνίας ---------- */
.contact-wrap { max-width: 720px; }
.contact-form { display: grid; gap: 1.1rem; }
.form-row { margin: 0; display: flex; flex-direction: column; gap: .35rem; }
.form-row label { font-weight: 700; color: var(--ink); }
.req { color: var(--magenta); }
.contact-form input,
.contact-form textarea {
  font: inherit; color: var(--ink);
  padding: .75rem .9rem;
  border: 2px solid var(--line); border-radius: var(--radius-sm);
  background: #fff; width: 100%;
  transition: border-color .15s ease;
}
.contact-form input:hover,
.contact-form textarea:hover { border-color: var(--teal); }
.contact-form textarea { resize: vertical; min-height: 120px; }

.contact-form input[aria-invalid="true"],
.contact-form textarea[aria-invalid="true"] { border-color: var(--magenta); }

.field-hint { font-size: .85rem; color: var(--ink-soft); }
.field-error { font-size: .9rem; color: var(--magenta-dark); font-weight: 700; min-height: 1px; }

.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form-actions { margin-top: .3rem; }
.form-status { font-weight: 700; margin: .4rem 0 0; }
.form-status.is-ok { color: var(--teal-dark); }
.form-status.is-error { color: var(--magenta-dark); }

/* ---------- Φωνητική ανάγνωση σελίδας (μέσα στο header, πάντα ορατή) ---------- */
.header-controls { display: flex; align-items: center; gap: .5rem; }
.reader { display: flex; align-items: center; gap: .4rem; }
.reader-btn {
  display: inline-flex; align-items: center; gap: .45rem;
  font-family: "Baloo 2", sans-serif; font-weight: 600; font-size: .95rem;
  border: 2px solid transparent; border-radius: 999px; cursor: pointer;
  transition: transform .12s ease, background-color .15s ease;
}
.reader-toggle {
  background: var(--teal); color: #fff;
  padding: .5rem .9rem; min-height: 44px;
}
.reader-toggle:hover { background: var(--teal-dark); transform: translateY(-1px); }
.reader-toggle[aria-pressed="true"] { background: var(--magenta); }
.reader-toggle[aria-pressed="true"]:hover { background: var(--magenta-dark); }
.reader-ico { font-size: 1.1rem; line-height: 1; }
.reader-stop {
  background: #fff; color: var(--ink);
  width: 44px; height: 44px; justify-content: center; padding: 0;
  border-color: var(--line);
}
.reader-stop:hover { background: var(--bg-alt); transform: translateY(-1px); }

/* Παλμός όσο διαβάζει (σέβεται την προτίμηση μειωμένης κίνησης πιο κάτω) */
.reader-toggle[aria-pressed="true"] .reader-ico { animation: reader-pulse 1.1s ease-in-out infinite; }
@keyframes reader-pulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.2); } }

/* Προσωρινό μήνυμα (toast) – π.χ. όταν λείπει ελληνική φωνή */
.reader-toast {
  position: fixed; left: 50%; bottom: 20px; transform: translateX(-50%) translateY(20px);
  max-width: min(92vw, 460px); z-index: 200;
  background: var(--ink); color: #fff;
  padding: .9rem 1.2rem; border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg); font-weight: 600; line-height: 1.45;
  opacity: 0; pointer-events: none; transition: opacity .2s ease, transform .2s ease;
}
.reader-toast.is-visible { opacity: 1; transform: translateX(-50%) translateY(0); }

/* Επισήμανση του κειμένου που διαβάζεται τώρα */
.reading-highlight {
  background: #fff6c9;
  box-shadow: 0 0 0 4px #fff6c9;
  border-radius: 4px;
}

/* Σε στενές οθόνες: το κουμπί γίνεται μόνο εικονίδιο (η ετικέτα μένει για αναγνώστες οθόνης) */
@media (max-width: 720px) {
  .reader-toggle .reader-label {
    position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
  }
  .reader-toggle { width: 44px; height: 44px; justify-content: center; padding: 0; }
  .reader-toggle .reader-ico { font-size: 1.25rem; }
}

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: #eaf3f2; padding: 2.5rem 0; }
.footer-inner { display: grid; gap: 1.2rem; }
.footer-brand { display: flex; align-items: center; gap: .8rem; }
.footer-brand img { border-radius: 10px; }
.footer-brand strong { color: #fff; font-size: 1.15rem; font-family: "Baloo 2", sans-serif; }
.site-footer a { color: #9fe3e0; font-weight: 700; }
.site-footer a:hover { color: #fff; }
.footer-copy { color: #9fb3b2; font-size: .9rem; margin: 0; }

.footer-links { display: flex; flex-wrap: wrap; gap: 1rem; }
.footer-links a { font-weight: 700; }
.footer-social {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: .65rem;
}
.footer-social span {
  color: #eaf3f2;
  font-weight: 800;
}
.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}
.social-link:hover,
.social-link:focus-visible {
  transform: translateY(-2px);
  background: rgba(255,255,255,.14);
  border-color: rgba(255,255,255,.35);
}
.social-link img {
  display: block;
  width: 34px;
  height: 34px;
}

@media (min-width: 700px) {
  .footer-inner {
    grid-template-columns: 1fr auto; align-items: center;
    grid-template-areas: "brand contact" "links social" "copy copy";
  }
  .footer-brand { grid-area: brand; }
  .footer-contact { grid-area: contact; text-align: right; }
  .footer-links {
    grid-area: links; border-top: 1px solid rgba(255,255,255,.15);
    padding-top: 1rem; margin-top: .3rem;
  }
  .footer-social {
    grid-area: social;
    justify-content: flex-end;
    border-top: 1px solid rgba(255,255,255,.15);
    padding-top: 1rem;
    margin-top: .3rem;
  }
  .footer-copy { grid-area: copy; }
}

/* ---------- Νομικές σελίδες (Δήλωση Προσβασιμότητας) ---------- */
.legal { padding: clamp(2rem, 5vw, 3.5rem) 0; }
.legal .container { max-width: 820px; }
.legal h1 { color: var(--teal-dark); }
.legal h2 {
  font-size: clamp(1.3rem, 2.6vw, 1.7rem); margin-top: 2rem;
  padding-top: 1rem; border-top: 2px solid var(--line);
}
.legal h3 { font-size: 1.1rem; margin: 1.2rem 0 .3rem; color: var(--ink); }
.legal ul { padding-left: 1.2rem; }
.legal li { margin-bottom: .5rem; }
.legal .lead { font-size: 1.12rem; color: var(--ink-soft); }
.legal .callout {
  background: var(--bg-alt); border-left: 5px solid var(--teal);
  padding: 1rem 1.2rem; border-radius: 0 var(--radius-sm) var(--radius-sm) 0; margin: 1.2rem 0;
}
.legal address { font-style: normal; }
.legal .updated { color: var(--ink-soft); font-size: .95rem; }
.back-link { display: inline-flex; align-items: center; gap: .4rem; font-weight: 700; margin-bottom: 1rem; }

/* ---------- Responsive ---------- */

/* Το οριζόντιο μενού χωράει άνετα μόνο σε φαρδιές οθόνες (5 στοιχεία + κουμπί ανάγνωσης).
   Κάτω από ~1080px περνάμε σε μενού «χάμπουργκερ» (dropdown) για να μη σπάνε τα κείμενα. */
@media (max-width: 1080px) {
  .nav-toggle { display: grid; }
  .primary-nav {
    position: absolute; top: 100%; left: 0; right: 0;
    background: #fff; border-bottom: 3px solid var(--teal);
    box-shadow: var(--shadow);
    max-height: 0; overflow: hidden; transition: max-height .25s ease;
  }
  .primary-nav.is-open { max-height: 480px; }
  .primary-nav ul { flex-direction: column; align-items: stretch; padding: .5rem; gap: .2rem; }
  .primary-nav li { flex: 1 1 auto; }
  .primary-nav a { padding: .85rem 1rem; white-space: normal; }
  .primary-nav .nav-cta { text-align: center; }
}

@media (max-width: 860px) {
  .hero-inner,
  .about-grid,
  .location-grid { grid-template-columns: 1fr; }
  .hero-figure { order: -1; }
  .about-figure { max-width: 420px; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 520px) {
  .gallery { grid-template-columns: 1fr; }
  .btn { width: 100%; justify-content: center; }
  .hero-actions { flex-direction: column; }
}

/* ---------- Σεβασμός στην προτίμηση μειωμένης κίνησης ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

/* ---------- Λειτουργία υψηλής αντίθεσης ---------- */
@media (prefers-contrast: more) {
  :root { --ink-soft: #2a3a3a; --line: #7d9d9b; }
  .btn-ghost { border-color: var(--teal-dark); }
}
