/* ============================================================
   LightCMS — architect theme
   Κατασκευαστική / αρχιτεκτονική αισθητική:
   σκούρο charcoal, ζεστό «μπετόν», bronze accent (από Settings).
   ============================================================ */
:root {
  --accent: #c08a3e;            /* override από layout.php (primary_color) */
  --ink: #1c1e21;
  --ink-soft: #43474c;
  --paper: #f5f3ee;
  --white: #ffffff;
  --line: #e4e0d6;
  --dark: #17181b;
  --container: 1180px;
  --font-display: 'Commissioner', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
.container { max-width: var(--container); margin: 0 auto; padding: 0 22px; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); }

h1, h2, h3 { font-family: var(--font-display); letter-spacing: -.02em; }

/* ---------- Eyebrow / τίτλοι ---------- */
.eyebrow {
  font-size: .78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--accent);
  margin-bottom: 10px;
}
.section-title { font-size: clamp(1.6rem, 3.2vw, 2.4rem); font-weight: 800; }
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 34px;
}
.link-more { font-weight: 600; text-decoration: none; }
.link-more:hover { text-decoration: underline; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--header-bg, var(--dark));
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: background .3s;
}
body.has-hero .site-header {
  position: absolute;
  left: 0; right: 0;
  top: var(--topbar-h, 0px);
  background: linear-gradient(to bottom, rgba(0,0,0,.55), transparent);
  border-bottom: none;
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; min-height: 74px; }
.brand { text-decoration: none; display: flex; align-items: center; }
.brand img { max-height: 46px; width: auto; }
.brand-name { font-family: var(--font-display); font-weight: 800; font-size: 1.25rem; color: var(--menu-text, #fff); letter-spacing: -.01em; }

@media (max-width: 768px) {
    .site-nav a {
        color: #fff !important;
    }
}

.site-nav { display: flex; align-items: center; gap: 26px; }
.site-nav a { color: var(--menu-text, rgba(255,255,255,.85)); text-decoration: none; font-weight: 500; font-size: .93rem; position: relative; }
.site-nav a:hover { opacity: .8; }
.site-nav a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 2px;
  background: var(--accent);
  transition: width .25s;
}
.site-nav a:not(.nav-cta):hover::after { width: 100%; }

.nav-cta { background: var(--accent); color: #fff !important; padding: 9px 20px; border-radius: 3px; font-weight: 600; }
.nav-cta:hover { filter: brightness(1.1); }

.nav-toggle { display: none; }
.nav-burger { display: none; cursor: pointer; padding: 8px; z-index: 110; }
.nav-burger span { display: block; width: 26px; height: 2px; background: #fff; margin: 6px 0; transition: transform .25s, opacity .25s; }

/* ---------- Hero slideshow ---------- */
.hero-slider { position: relative; height: min(92vh, 780px); min-height: 520px; overflow: hidden; background: var(--dark); }
.slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  background-color: #26282c;
  opacity: 0;
  transition: opacity 1.1s ease;
  display: flex; align-items: center;
}
.slide.is-active { opacity: 1; z-index: 2; }
.slide.is-active { animation: kenburns 9s ease-out forwards; }
@keyframes kenburns { from { background-size: 100% auto, cover; transform: scale(1); } to { transform: scale(1.06); } }
.slide-overlay { position: absolute; inset: 0; background: linear-gradient(100deg, rgba(10,10,12,.72) 25%, rgba(10,10,12,.25) 70%); }
.slide-content { position: relative; z-index: 3; color: #fff; max-width: var(--container); width: 100%; }
.slide-rule { width: 64px; height: 3px; background: var(--accent); margin-bottom: 26px; }
.slide-content h1 {
  font-size: clamp(2rem, 5.4vw, 3.9rem);
  font-weight: 800;
  line-height: 1.12;
  max-width: 16ch;
  text-wrap: balance;
}
.slide-content p { margin-top: 18px; font-size: clamp(1rem, 1.6vw, 1.2rem); color: rgba(255,255,255,.88); max-width: 52ch; }
.slide.is-active .slide-rule,
.slide.is-active h1,
.slide.is-active p,
.slide.is-active .btn { animation: slideUp .8s ease both; }
.slide.is-active p { animation-delay: .15s; }
.slide.is-active .btn { animation-delay: .3s; }
@keyframes slideUp { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: none; } }

.slider-dots { position: absolute; bottom: 26px; left: 0; right: 0; display: flex; justify-content: center; gap: 10px; z-index: 5; }
.dot { width: 34px; height: 3px; border: none; background: rgba(255,255,255,.35); cursor: pointer; transition: background .3s; }
.dot.is-active { background: var(--accent); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  margin-top: 28px;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  border: none;
  font: 600 1rem var(--font-body);
  padding: 14px 30px;
  border-radius: 3px;
  cursor: pointer;
  transition: transform .15s, box-shadow .15s, filter .15s;
}
.btn:hover { transform: translateY(-2px); filter: brightness(1.08); box-shadow: 0 10px 26px rgba(0,0,0,.18); }
.btn-light { background: #fff; color: var(--ink); margin-top: 0; }

/* ---------- Υπηρεσίες ---------- */
.services { background: var(--paper); padding: clamp(56px, 8vw, 96px) 0; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 34px; }
.service-card {
  background: #fff;
  border: 1px solid var(--line);
  padding: 30px 28px;
  position: relative;
  transition: transform .25s, box-shadow .25s;
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 18px 40px rgba(28,30,33,.10); }
.service-num { font-family: var(--font-display); font-weight: 800; font-size: 2.2rem; color: var(--line); line-height: 1; margin-bottom: 16px; transition: color .25s; }
.service-card:hover .service-num { color: var(--accent); }
.service-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.service-card p { color: var(--ink-soft); font-size: .95rem; }

/* ---------- Έργα ---------- */
.home-projects, .home-blog { padding: clamp(56px, 8vw, 96px) 0; }
.projects-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.project-card { text-decoration: none; color: var(--ink); display: block; }
.project-media {
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, #2b2d31, #46484d);
  background-size: cover; background-position: center;
  overflow: hidden;
  position: relative;
  transition: transform .35s ease, box-shadow .35s;
}
.project-card:hover .project-media { transform: scale(1.02); box-shadow: 0 18px 44px rgba(28,30,33,.22); }
.project-media::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.35), transparent 55%);
  opacity: 0; transition: opacity .3s;
}
.project-card:hover .project-media::after { opacity: 1; }
.project-info { padding: 16px 2px 0; }
.project-cat { font-size: .75rem; text-transform: uppercase; letter-spacing: .14em; color: var(--accent); font-weight: 600; }
.project-info h3 { font-size: 1.12rem; margin-top: 4px; }

.project-hero { aspect-ratio: 21 / 9; background-size: cover; background-position: center; background-color: #2b2d31; margin-top: 26px; }

/* Φίλτρα portfolio */
.filter-bar { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 30px; }
.filter-btn {
  border: 1px solid var(--line);
  background: #fff;
  font: 500 .9rem var(--font-body);
  padding: 8px 18px;
  border-radius: 999px;
  cursor: pointer;
  transition: all .2s;
}
.filter-btn:hover { border-color: var(--accent); color: var(--accent); }
.filter-btn.is-active { background: var(--ink); border-color: var(--ink); color: #fff; }

/* Gallery + lightbox */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 34px; }
.gallery-item { border: none; padding: 0; cursor: zoom-in; background: none; overflow: hidden; }
.gallery-item img { width: 100%; aspect-ratio: 4/3; object-fit: cover; transition: transform .35s; }
.gallery-item:hover img { transform: scale(1.05); }
.lightbox {
  position: fixed; inset: 0; z-index: 300;
  background: rgba(12,12,14,.92);
  display: flex; align-items: center; justify-content: center;
  padding: 4vw;
}
.lightbox[hidden] { display: none; }
.lightbox img { max-width: 100%; max-height: 92vh; box-shadow: 0 30px 80px rgba(0,0,0,.6); }
.lightbox-close { position: absolute; top: 18px; right: 24px; font-size: 2.2rem; color: #fff; background: none; border: none; cursor: pointer; line-height: 1; }

/* ---------- Counters ---------- */
.counters { background: var(--dark); color: #fff; padding: clamp(46px, 6vw, 72px) 0; }
.counters-grid { display: grid; grid-template-columns: repeat(var(--counter-cols, 3), 1fr); gap: 22px; text-align: center; }
.counter-icon { width: 44px; height: 44px; margin: 0 auto 12px; }
.counter-icon img { width: 100%; height: 100%; object-fit: contain; }
.counter-num-wrap { display: inline-flex; align-items: baseline; gap: 2px; }
.counter-num { font-family: var(--font-display); font-weight: 800; font-size: clamp(2.2rem, 5vw, 3.4rem); color: var(--accent); }
.counter-sfx { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.4rem, 3vw, 2rem); color: var(--accent); }
.counter-label { color: rgba(255,255,255,.7); margin-top: 4px; font-size: .95rem; }

/* ---------- Blog ---------- */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.blog-card { text-decoration: none; color: var(--ink); background: #fff; border: 1px solid var(--line); display: flex; flex-direction: column; transition: transform .25s, box-shadow .25s; }
.blog-card:hover { transform: translateY(-6px); box-shadow: 0 18px 40px rgba(28,30,33,.10); }
.blog-media { aspect-ratio: 16/9; background: linear-gradient(135deg, #e8e4da, #d4cfc2); background-size: cover; background-position: center; }
.blog-info { padding: 20px 22px 24px; }
.blog-info time { font-size: .78rem; color: var(--accent); font-weight: 600; text-transform: uppercase; letter-spacing: .1em; }
.blog-info h3 { font-size: 1.1rem; margin: 8px 0 8px; }
.blog-info p { font-size: .92rem; color: var(--ink-soft); }

/* ---------- Page head / content ---------- */
.page-head { background: var(--dark); color: #fff; padding: clamp(48px, 7vw, 84px) 0 clamp(34px, 5vw, 56px); }
.page-head.has-photo { position: relative; background-size: cover; background-position: center; }
.page-head.has-photo::before { content: ''; position: absolute; inset: 0; z-index: 0; }
.page-head.has-photo .container { position: relative; z-index: 1; }
.page-head h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; }
.content-section { padding: clamp(44px, 6vw, 76px) 0; }
.prose { max-width: 780px; }
.prose h2 { font-size: 1.5rem; margin: 1.6em 0 .5em; }
.prose h3 { font-size: 1.2rem; margin: 1.4em 0 .4em; }
.prose p, .prose ul, .prose ol { margin-bottom: 1em; color: var(--ink-soft); }
.prose ul, .prose ol { padding-left: 1.3em; }
.prose img { margin: 1.4em 0; }
.prose blockquote { border-left: 3px solid var(--accent); padding: .3em 0 .3em 1em; color: var(--ink-soft); margin: 1.4em 0; }
.back-row { margin-top: 34px; }

/* ---------- CTA strip ---------- */
.cta-strip { background: var(--accent); color: #fff; padding: clamp(36px, 5vw, 56px) 0; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.cta-inner h2 { font-size: clamp(1.3rem, 2.6vw, 1.9rem); font-weight: 800; }

/* ---------- Επικοινωνία ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 44px; align-items: start; }
.contact-info p { margin-bottom: 16px; }
.contact-form label { display: block; margin-bottom: 16px; font-weight: 500; font-size: .93rem; }
.contact-form input, .contact-form textarea {
  width: 100%; margin-top: 6px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  background: var(--paper);
  font: inherit;
  border-radius: 3px;
}
.contact-form input:focus, .contact-form textarea:focus { outline: 2px solid color-mix(in srgb, var(--accent) 45%, transparent); border-color: var(--accent); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.hp { position: absolute !important; left: -9999px; }
.form-ok { background: #e6f4ec; color: #14663f; padding: 18px 20px; border-radius: 3px; }
.form-error { background: #fbeceb; color: #a13029; padding: 12px 16px; border-radius: 3px; margin-bottom: 16px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--footer-bg, var(--dark)); color: var(--footer-text, #b9bcc0); }
.footer-inner { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 34px; padding: 52px 22px 40px; }
.footer-inner.footer-cols-1 { grid-template-columns: 1fr; max-width: 480px; }
.footer-inner.footer-cols-2 { grid-template-columns: 1.4fr 1fr; }
.footer-brand { font-family: var(--font-display); font-weight: 800; font-size: 1.25rem; color: var(--footer-text, #fff); margin-bottom: 10px; }
.footer-logo { max-height: 40px; width: auto; margin-bottom: 14px; }
.footer-head { font-size: .78rem; text-transform: uppercase; letter-spacing: .16em; color: var(--accent); font-weight: 600; margin-bottom: 14px; }
.footer-nav { display: flex; flex-direction: column; gap: 8px; }
.site-footer a { color: var(--footer-text, #d8dadd); text-decoration: none; }
.site-footer a:hover { text-decoration: underline; opacity: .85; }
.footer-legal { border-top: 1px solid rgba(255,255,255,.1); padding: 16px 22px; font-size: .84rem; color: var(--footer-text, #8a8d92); opacity: .8; }

/* ---------- Blocks (sections τύπου Elementor) ---------- */
.blk { padding: clamp(44px, 6vw, 76px) 0; font-family: var(--font-body); }
.blk-bg-soft { background: var(--paper); }
.blk-bg-dark { background: var(--dark); color: #e8e9ea; }
.blk-bg-dark .blk-title { color: #fff; }
.blk-bg-dark .prose p, .blk-bg-dark .prose li { color: #c4c7cb; }
.blk-title { font-size: clamp(1.4rem, 2.8vw, 2rem); font-weight: 800; margin-bottom: 18px; }

.blk-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; }
.blk-cols.img-left .blk-media { order: -1; }
.blk-media {
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, #2b2d31, #46484d);
  background-size: cover; background-position: center;
}
.blk-figure img { width: 100%; }
.blk-figure figcaption { margin-top: 10px; font-size: .88rem; color: var(--ink-soft); }
.blk-bg-dark .blk-figure figcaption { color: #a9adb2; }

.blk-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.blk-gallery-item img { width: 100%; aspect-ratio: 4/3; object-fit: cover; transition: transform .35s; }
.blk-gallery-item:hover img { transform: scale(1.04); }

.blk-cta .blk-cta-inner { text-align: center; max-width: 640px; margin: 0 auto; }
.blk-cta .prose { margin: 0 auto; }
.blk .btn { margin-top: 22px; }

@media (max-width: 820px) {
  .blk-cols { grid-template-columns: 1fr; gap: 24px; }
  .blk-cols.img-left .blk-media { order: 0; }
  .blk-gallery { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
.no-observer .reveal { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 940px) {
  .services-grid, .projects-grid, .blog-grid, .gallery-grid, .counters-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 680px) {
  .nav-burger { display: block; }
  .site-nav {
    position: fixed; inset: 0;
    background: var(--dark);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transform: translateX(100%);
    transition: transform .3s ease;
    z-index: 105;
  }
  .site-nav a { font-size: 1.15rem; padding: 12px; }
  .nav-toggle:checked ~ .site-nav { transform: translateX(0); }
  .nav-toggle:checked ~ .nav-burger span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .nav-toggle:checked ~ .nav-burger span:nth-child(2) { opacity: 0; }
  .nav-toggle:checked ~ .nav-burger span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

  .services-grid, .projects-grid, .blog-grid, .counters-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .section-head { flex-direction: column; align-items: flex-start; gap: 8px; }
  .hero-slider { height: 78vh; }
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- Block: showcase (eyebrow + μεγάλος τίτλος + κείμενο + 1-2 φωτό) ---------- */
.blk-showcase { display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: center; }
.blk-showcase-title { font-size: clamp(2rem, 5vw, 3.4rem); font-weight: 800; line-height: 1.05; letter-spacing: -.03em; margin: 10px 0 20px; }
.blk-showcase-media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: start;
  width: 100%;
}
.blk-showcase-img {
  width: 100%;
  height: clamp(300px, 34vw, 500px);
  background-size: cover;
  background-position: center;
  background-color: #2b2d31;
  transition-delay: inherit;
}
.blk-showcase-img.is-offset { margin-top: 52px; }
.blk-showcase-img:only-child {
  grid-column: 1 / -1;
  height: clamp(340px, 40vw, 560px);
}
@media (max-width: 900px) {
  .blk-showcase { grid-template-columns: 1fr; gap: 26px; }
  .blk-showcase-img.is-offset { margin-top: 0; }
  .blk-showcase-img { height: clamp(240px, 60vw, 380px); }
}

/* ---------- Block: hero/banner ---------- */
.blk-hero { padding: 0; }
.blk-hero > .container { max-width: none; padding: 0; }
.blk-hero-inner {
  position: relative;
  min-height: 420px;
  display: flex; align-items: center;
  background: var(--dark);
  background-size: cover; background-position: center;
}
.blk-hero-overlay { position: absolute; inset: 0; background: linear-gradient(100deg, rgba(10,10,12,.7) 25%, rgba(10,10,12,.25) 75%); }
.blk-hero-overlay.overlay-none { background: transparent; }
.blk-hero-overlay.overlay-light { background: rgba(10,10,12,.28); }
.blk-hero-overlay.overlay-medium { background: rgba(10,10,12,.52); }
.blk-hero-overlay.overlay-strong { background: rgba(10,10,12,.72); }
@media (min-width: 900px) {
  .blk-hero-inner.blk-parallax { background-attachment: fixed; }
}
.blk-hero-content { position: relative; z-index: 2; color: #fff; max-width: var(--container); width: 100%; margin: 0 auto; padding: 60px 22px; }
.blk-hero-content h2 { font-size: clamp(1.7rem, 4vw, 3rem); font-weight: 800; line-height: 1.15; max-width: 18ch; }
.blk-hero-sub { margin-top: 14px; color: rgba(255,255,255,.88); max-width: 55ch; }
.blk-hero-sub p { margin: 0; }
.blk-hero-content.align-center { text-align: center; }
.blk-hero-content.align-center h2, .blk-hero-content.align-center .blk-hero-sub { max-width: none; margin-left: auto; margin-right: auto; }
.blk-hero-content.align-right { text-align: right; }
.blk-hero-content.align-right h2, .blk-hero-content.align-right .blk-hero-sub { max-width: none; margin-left: auto; }

/* Blocks που κληρονομούν sections */
.blk-services .services-grid { margin-top: 28px; }
.blk-counters { background: var(--dark); color: #fff; }
.blk-counters .blk-title { color: #fff; text-align: center; margin-bottom: 30px; }
.blk-projects .section-head, .blk-posts .section-head { margin-bottom: 30px; }

/* ---------- page-body: κείμενο boxed, blocks full-bleed ---------- */
.page-body > p, .page-body > ul, .page-body > ol, .page-body > h2,
.page-body > h3, .page-body > blockquote, .page-body > table, .page-body > img {
  max-width: 780px;
  margin-left: auto; margin-right: auto;
  padding-left: 22px; padding-right: 22px;
}
.page-body > .blk { padding-left: 0; padding-right: 0; }

.footer-social { display: flex; gap: 14px; margin-top: 14px; }
.footer-social a { font-size: .85rem; font-weight: 600; }

/* ---------- Block: Google Map ---------- */
.blk-map { margin-top: 24px; }
.blk-map iframe { width: 100%; height: 440px; border: 0; display: block; }
@media (max-width: 700px) { .blk-map iframe { height: 320px; } }

/* ---------- Block: Section (ενοποιημένο, advanced module) ---------- */
.blk-section .section-body.section-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.blk-section .section-col { min-width: 0; }
.blk-section .section-body.section-single { max-width: 800px; margin: 0 auto; text-align: center; }
.blk-section .section-body.section-single.is-media { max-width: none; text-align: left; }
.blk-section .section-body.section-single .prose { margin: 0 auto; }

.section-body.align-left { text-align: left; }
.section-body.align-left .prose { margin: 0; }
.section-body.align-center { text-align: center; }
.section-body.align-center .prose { margin: 0 auto; }
.section-body.align-right { text-align: right; }
.section-body.align-right .prose { margin: 0 0 0 auto; }

.section-slot-media { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.section-img { width: 100%; height: clamp(280px, 32vw, 460px); background-size: cover; background-position: center; background-color: #2b2d31; justify-self: center; }
.section-img.is-offset { margin-top: 0; }
.section-img:only-child { grid-column: 1 / -1; height: clamp(320px, 38vw, 520px); }

/* Advanced: spacing variants */
.blk-sp-compact { padding: clamp(24px, 4vw, 40px) 0 !important; }
.blk-sp-spacious { padding: clamp(64px, 10vw, 120px) 0 !important; }

/* Advanced: animation variants (override the default fade-up .reveal) */
.blk-anim-none .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
.blk-anim-fadein .reveal { transform: none !important; }

@media (max-width: 900px) {
  .blk-section .section-body.section-split { grid-template-columns: 1fr; gap: 28px; }
  .blk-section .section-body.section-split.mobile-reverse { display: flex; flex-direction: column-reverse; }
  .section-img.is-offset { margin-top: 0; }
  .section-slot-media { grid-template-columns: 1fr 1fr; }
}

/* ---------- Section: background image, overlay, width, height (advanced) ---------- */
.blk-has-bg {
  position: relative;
  background-size: cover;
  background-position: center;
  color: #fff;
}
.blk-has-bg::before { content: ''; position: absolute; inset: 0; z-index: 0; }
.blk-overlay-light::before  { background: rgba(10,10,12,.28); }
.blk-overlay-medium::before { background: rgba(10,10,12,.52); }
.blk-overlay-strong::before { background: rgba(10,10,12,.72); }
.blk-has-bg > .container { position: relative; z-index: 2; }
.blk-has-bg .blk-title { color: #fff; font-size: clamp(2.1rem, 5.2vw, 3.8rem); line-height: 1.12; }
.blk-has-bg .prose, .blk-has-bg .prose p { color: rgba(255,255,255,.92); }
.blk-has-bg .eyebrow { color: var(--accent); }
.blk-has-bg .section-body.section-single { max-width: none; margin: 0; }

.blk-width-full > .container { max-width: none; }
.blk-width-full .section-body.section-single { max-width: none; }
.blk-width-full .prose { max-width: none; }

.blk-height-small  { min-height: 360px; display: flex; align-items: center; }
.blk-height-medium { min-height: 520px; display: flex; align-items: center; }
.blk-height-large  { min-height: 680px; display: flex; align-items: center; }
.blk-height-screen { min-height: 100vh; display: flex; align-items: center; }
.blk-height-small > .container,
.blk-height-medium > .container,
.blk-height-large > .container,
.blk-height-screen > .container { width: 100%; }

@media (max-width: 700px) {
  .blk-height-medium { min-height: 420px; }
  .blk-height-large  { min-height: 480px; }
  .blk-height-screen { min-height: 100vh; }
}

.cf-turnstile { margin: 14px 0; }

/* ---------- Cookie consent banner ---------- */
.cookie-banner {
  position: fixed; left: 20px; right: 20px; bottom: 20px;
  max-width: 640px; margin: 0 auto;
  background: rgba(23,24,27,.82);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  color: #e8e9ea; border: 1px solid rgba(255,255,255,.08);
  border-radius: 10px; padding: 18px 22px;
  display: flex; align-items: center; gap: 18px; flex-wrap: wrap;
  z-index: 400; box-shadow: 0 20px 50px rgba(0,0,0,.35);
  opacity: 0; transform: translateY(16px);
  transition: opacity .35s ease, transform .35s ease;
}
.cookie-banner.is-visible { opacity: 1; transform: none; }
.cookie-banner[hidden] { display: none; }
.cookie-banner p { margin: 0; flex: 1; min-width: 220px; font-size: .92rem; color: #d8dadd; }
.cookie-banner .btn { margin: 0; white-space: nowrap; }

/* ---------- Footer icons (contact + social) ---------- */
.footer-contact-line { display: flex; align-items: center; gap: 8px; }
.footer-icon { display: inline-flex; width: 16px; height: 16px; flex-shrink: 0; color: var(--accent); }
.footer-icon svg { width: 100%; height: 100%; }
.footer-social a { display: inline-flex; width: 20px; height: 20px; color: #fff; }
.footer-social a:hover { color: var(--accent); }
.footer-social a svg { width: 100%; height: 100%; }

.nav-cta { display: inline-flex; align-items: center; gap: 6px; }
.nav-cta-icon { width: 14px; height: 14px; display: inline-flex; }
.nav-cta-icon svg { width: 100%; height: 100%; }

/* ---------- Header shrink στο scroll ---------- */
.site-header.is-scrolled .header-inner { min-height: 58px; }
.site-header.is-scrolled { box-shadow: 0 4px 18px rgba(0,0,0,.18); }
.site-header { transition: box-shadow .25s; }
.header-inner { transition: min-height .25s; }

/* ---------- Back to top ---------- */
.back-to-top {
  position: fixed; right: 24px; bottom: 24px; z-index: 350;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--accent); color: #fff; border: none;
  font-size: 1.2rem; cursor: pointer;
  box-shadow: 0 8px 22px rgba(0,0,0,.25);
  transition: transform .15s, opacity .2s;
}
.back-to-top:hover { transform: translateY(-3px); }

/* ---------- WhatsApp floating button ---------- */
.whatsapp-float {
  position: fixed; left: 24px; bottom: 24px; z-index: 350;
  width: 54px; height: 54px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 22px rgba(0,0,0,.25);
  transition: transform .15s;
}
.whatsapp-float:hover { transform: translateY(-3px) scale(1.05); }
.whatsapp-float svg { width: 28px; height: 28px; }

/* ---------- Testimonials carousel ---------- */
.testimonial-carousel { max-width: 760px; margin: 0 auto; text-align: center; position: relative; min-height: 160px; }
.testimonial-track { position: relative; }
.testimonial-slide { display: none; }
.testimonial-slide.is-active { display: block; animation: tFade .5s ease; }
@keyframes tFade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.testimonial-quote { font-size: clamp(1.1rem, 2.4vw, 1.4rem); font-style: italic; color: var(--ink); line-height: 1.6; }
.testimonial-name { margin-top: 18px; font-weight: 700; }
.testimonial-role { color: var(--muted); font-size: .9rem; }
.testimonial-dots { display: flex; justify-content: center; gap: 10px; margin-top: 26px; }
.t-dot { width: 9px; height: 9px; border-radius: 50%; border: none; background: var(--line); cursor: pointer; padding: 0; }
.t-dot.is-active { background: var(--accent); }

/* ---------- Steps / process timeline ---------- */
.steps-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 30px; position: relative; }
.step-item { text-align: center; position: relative; }
.step-num {
  width: 56px; height: 56px; margin: 0 auto 16px;
  border-radius: 50%; background: var(--accent); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-family: var(--font-display);
}
.step-item h3 { font-size: 1.05rem; margin-bottom: 6px; }
.step-item p { color: var(--muted); font-size: .92rem; }
@media (min-width: 700px) {
  .steps-row::before {
    content: ''; position: absolute; top: 28px; left: 10%; right: 10%; height: 2px;
    background: var(--line); z-index: 0;
  }
  .step-num { position: relative; z-index: 1; }
}

/* ---------- Compare slider (Πριν & Μετά) ---------- */
.compare-slider {
  position: relative; width: 100%; aspect-ratio: 16/9;
  overflow: hidden; cursor: ew-resize; user-select: none;
  max-height: 560px;
}
.compare-after, .compare-before {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.compare-before { clip-path: inset(0 50% 0 0); }
.compare-label {
  position: absolute; top: 16px; padding: 5px 14px; border-radius: 999px;
  background: rgba(0,0,0,.55); color: #fff; font-size: .78rem; font-weight: 600; letter-spacing: .04em;
}
.compare-label-before { left: 16px; }
.compare-label-after { right: 16px; }
.compare-handle {
  position: absolute; top: 0; bottom: 0; left: 50%;
  width: 3px; background: #fff; transform: translateX(-50%);
  cursor: ew-resize; display: flex; align-items: center; justify-content: center;
}
.compare-handle-arrow {
  width: 38px; height: 38px; border-radius: 50%; background: #fff; color: var(--ink);
  display: flex; align-items: center; justify-content: center; font-size: .85rem;
  box-shadow: 0 4px 14px rgba(0,0,0,.25);
}

/* ---------- Section background parallax (desktop μόνο) ---------- */
@media (min-width: 900px) {
  .blk-parallax { background-attachment: fixed; }
}

/* ---------- Δίκτυο κόμβων (decorative canvas overlay) ---------- */
.fx-network { position: relative; }
.fx-network-canvas { position: absolute; inset: 0; z-index: 1; pointer-events: none; }

/* ---------- Hero slideshow effects ---------- */
.hero-slider.fx-parallax .slide.is-active,
.hero-slider.fx-zoom .slide.is-active { animation: none; }
.hero-slider.fx-parallax .slide { transition: transform .25s ease-out; }
.hero-slider.fx-zoom .slide { transition: background-position .3s ease-out; }
.hero-slider .fx-network-canvas { z-index: 2; }

/* ---------- Hero effect: Spotlight (φακός που ακολουθεί το ποντίκι) ---------- */
.hero-slider.fx-spotlight .slide::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle 280px at var(--sx, 50%) var(--sy, 50%), rgba(255,255,255,.25), transparent 70%);
  mix-blend-mode: overlay;
  opacity: 0;
  transition: opacity .35s;
  pointer-events: none;
}
.hero-slider.fx-spotlight:hover .slide.is-active::after { opacity: 1; }

/* ---------- Πάνω μπάρα (top bar) ---------- */
.site-topbar { font-size: .82rem; padding: 7px 0; position: relative; z-index: 110; }
.topbar-inner { display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap; }
.topbar-left, .topbar-center, .topbar-right { flex: 1; min-width: 0; }
.topbar-left p, .topbar-center p, .topbar-right p { margin: 0; }
.topbar-center { text-align: center; }
.topbar-right { text-align: right; }
.site-topbar a { color: inherit; text-decoration: none; }
.site-topbar a:hover { text-decoration: underline; }
@media (max-width: 700px) {
  .topbar-inner { flex-direction: column; gap: 2px; }
  .topbar-left, .topbar-center, .topbar-right { text-align: center; flex: none; }
}

.footer-about p { margin: 0 0 8px; }
.footer-about p:last-child { margin-bottom: 0; }

.footer-legal p { display: inline; margin: 0; }

/* ---------- Standalone Κείμενο block: στοίχιση ---------- */
.text-block-inner { max-width: 780px; }
.text-block-inner.align-left { text-align: left; }
.text-block-inner.align-center { text-align: center; margin: 0 auto; }
.text-block-inner.align-center .prose { margin: 0 auto; }
.text-block-inner.align-right { text-align: right; margin-left: auto; }
.text-block-inner.align-right .prose { margin-left: auto; }
.blk-width-full .text-block-inner { max-width: 100%; }

.section-head-above { margin-bottom: 28px; }

/* ---------- Γενικευμένα εφέ φόντου (Section/Hero) — ίδιο σύνολο με το slideshow ---------- */
.bg-fx-zoom { transition: background-position .3s ease-out; }

.bg-fx-spotlight { position: relative; }
.bg-fx-spotlight::after {
  content: ''; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: radial-gradient(circle 280px at var(--sx, 50%) var(--sy, 50%), rgba(255,255,255,.22), transparent 70%);
  mix-blend-mode: overlay; opacity: 0; transition: opacity .35s;
}
.bg-fx-spotlight:hover::after { opacity: 1; }

/* Bonus: "Ζωντανή φωτογραφία" — αργό ζουμ όταν μπαίνει στην οθόνη, δουλεύει και σε κινητό (χωρίς ποντίκι) */
.bg-fx-kenburns { background-size: 106%; background-position: center; transition: background-size 9s ease-out; }
.bg-fx-kenburns.is-zoomed { background-size: 122%; }
