  /* Wechevo — original ink / blue / lime look. Colours are editable in Admin → Εμφάνιση
   and injected as :root variables in the page head (these are the defaults). */
  :root {
    color-scheme: dark;
    --ink: #070b1a;
    --ink-2: #0e1328;
    --blue: #1e4dff;
    --lime: #c8ff2e;
    --paper: #f4f6fb;
    --muted: #aab4dc;
    --ink-line: color-mix(in srgb, var(--ink) 15%, transparent);
    --white-line: rgba(255, 255, 255, 0.14);
    --blue-ink: #ffffff; --blue-2: var(--blue-2); --lime-ink: #070b1a;
    --f-display: "Noto Serif Display", "Noto Serif Display Fallback", Georgia, "Times New Roman", serif;
    --f-cond: "Fira Sans Extra Condensed", "Arial Narrow", "Roboto Condensed", sans-serif;
    --f-body: "Manrope", "Manrope Fallback", "Segoe UI", system-ui, sans-serif;
    --ease: cubic-bezier(0.76, 0, 0.24, 1);
    --gutter: clamp(16px, 4vw, 48px);
  }
/* Metric-matched fallbacks keep text in place while web fonts load (CLS = 0) */
@font-face { font-family: "Manrope Fallback"; src: local("Arial"); size-adjust: 104%; ascent-override: 102%; descent-override: 29%; line-gap-override: 0%; }
@font-face { font-family: "Noto Serif Display Fallback"; src: local("Georgia"); size-adjust: 96%; ascent-override: 104%; descent-override: 28%; line-gap-override: 0%; }
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body { margin: 0; }
img { max-width: 100%; height: auto; }
[hidden] { display: none !important; }
.skip { position: absolute; left: -9999px; top: 8px; z-index: 10000; background: var(--lime); color: var(--ink); padding: 10px 16px; border-radius: 8px; font-weight: 800; }
.skip:focus { left: 16px; }
.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; }
  html, body { background: var(--ink); color: var(--paper); }
  body { font-family: var(--f-body); font-size: 17px; line-height: 1.55; overflow-x: clip; }
  body.locked { overflow: hidden; }
  a { color: inherit; }
  :focus-visible { outline: 3px solid var(--lime); outline-offset: 3px; border-radius: 6px; }
  ::selection { background: var(--lime); color: var(--ink); }
  h1, h2, h3 { text-wrap: balance; margin: 0; }
  p { margin: 0; }
  .wrap { max-width: 1240px; margin-inline: auto; }
  .eyebrow { font-family: var(--f-cond); font-weight: 800; font-size: 14px; letter-spacing: .3em; text-transform: uppercase; margin-bottom: 18px; }
  .display { font-family: var(--f-display); font-weight: 900; line-height: .95; letter-spacing: -0.02em; }

  /* ---------- Preloader ---------- */
  #preloader {
    position: fixed; inset: 0; z-index: 9999; background: var(--blue); color: #fff;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    padding-inline: 16px; transition: transform .8s var(--ease);
  }
  #preloader.exit { transform: translateY(-100%); }
  .pl-word { position: relative; }
  .pl-w {
    position: absolute; left: 50%; top: -1.3rem; transform: translateX(-50%) scale(0);
    font-family: var(--f-display); font-weight: 700; font-size: 1.6rem; color: var(--lime);
    animation: spring .6s .5s cubic-bezier(.34, 1.8, .64, 1) forwards;
  }
  .pl-word .pl-name { margin: 0;
    font-family: var(--f-display); font-weight: 700; text-transform: uppercase; letter-spacing: -0.05em;
    font-size: clamp(3.4rem, 14vw, 8rem); line-height: 1; opacity: 0; transform: translateY(20px);
    animation: rise .5s .1s ease-out forwards;
  }
  .pl-sub { margin-top: 14px; text-align: center; color: rgba(255,255,255,.92); font-weight: 600; opacity: 0; animation: fade .5s .35s forwards; }
  .pl-foot {
    position: absolute; bottom: 48px; left: var(--gutter); right: var(--gutter); display: flex; justify-content: space-between;
    font-family: var(--f-cond); font-weight: 800; letter-spacing: .2em; text-transform: uppercase; font-size: 15px;
    opacity: 0; animation: fade .4s .6s forwards; font-variant-numeric: tabular-nums;
  }
  .pl-bar { position: absolute; left: 0; bottom: 0; height: 6px; background: var(--lime); width: 0; animation: grow 3s cubic-bezier(.33,0,.2,1) forwards; }
  @keyframes spring { to { transform: translateX(-50%) scale(1); } }
  @keyframes rise { to { opacity: 1; transform: none; } }
  @keyframes fade { to { opacity: 1; } }
  @keyframes grow { to { width: 100%; } }
  @media (min-width: 768px) { .pl-w { top: -2.4rem; font-size: 2.4rem; } }

  /* ---------- Nav ---------- */
  .nav {
    position: fixed; z-index: 50; left: 0; right: 0; top: 0;
    padding: calc(env(safe-area-inset-top, 0px) + 14px) var(--gutter) 0;
    transform: translateY(-120%); transition: transform .7s var(--ease);
  }
  .nav.show { transform: none; }
  .nav-bar {
    max-width: 1240px; margin-inline: auto; display: flex; align-items: center; justify-content: space-between; gap: 12px;
    background: color-mix(in srgb, var(--ink) 82%, transparent); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--white-line); border-radius: 999px; padding: 8px 8px 8px 22px;
  }
  .logo { font-family: var(--f-display); font-weight: 700; font-size: 1.5rem; text-decoration: none; color: #fff; }
  .logo i { font-style: normal; color: var(--lime); }
  .nav-links { display: none; gap: 28px; list-style: none; margin: 0; padding: 0; font-size: 14px; font-weight: 700; }
  .nav-links a { text-decoration: none; color: rgba(255,255,255,.75); transition: color .2s; }
  .nav-links a:hover { color: var(--lime); }
  .btn-lime {
    display: inline-flex; align-items: center; gap: 10px; background: var(--lime); color: var(--ink);
    font-weight: 800; text-decoration: none; border-radius: 999px; padding: 11px 20px; font-size: 14px; transition: transform .25s;
  }
  .btn-lime:hover { transform: scale(1.05); }
  @media (min-width: 1120px) { .nav-links { display: flex; } }

  /* ---------- Hero ---------- */
  .hero { position: relative; height: 300vh; background: var(--ink); }
  .hero-stage { position: sticky; top: 0; height: 100vh; height: 100svh; overflow: hidden; display: flex; align-items: center; justify-content: center; background: var(--ink); }
  .layer { position: absolute; inset: 0; will-change: transform, opacity; }
  .layer-bg { z-index: 0; display: flex; align-items: center; }
  .layer-fg { z-index: 10; overflow: hidden; background: #fff; }
  #portrait { position: absolute; inset: 0; cursor: crosshair; touch-action: pan-y; }
  #portrait canvas { display: block; width: 100%; height: 100%; }
  .badge {
    position: absolute; left: 16px; bottom: 16px; z-index: 2; pointer-events: none;
    background: var(--ink); color: #fff; border-radius: 999px; padding: 8px 16px;
    font-family: var(--f-display); font-weight: 700; font-size: 1.1rem; box-shadow: 0 10px 30px color-mix(in srgb, var(--ink) 25%, transparent);
  }
  .badge i { font-style: normal; color: var(--lime); }
  .hint {
    position: absolute; right: 16px; top: 92px; z-index: 2; pointer-events: none; display: none;
    background: rgba(255,255,255,.85); backdrop-filter: blur(6px); border: 1px solid var(--ink-line); color: var(--ink);
    border-radius: 999px; padding: 8px 16px; font-family: var(--f-cond); font-weight: 800; letter-spacing: .15em; text-transform: uppercase; font-size: 13px;
  }
  .hint b { color: var(--blue); }
  @media (min-width: 768px) { .hint { display: block; } }
  .scroll-hint {
    position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%); z-index: 20; pointer-events: none; text-align: center;
    font-family: var(--f-cond); font-weight: 800; font-size: 12px; letter-spacing: .3em; text-transform: uppercase; color: color-mix(in srgb, var(--ink) 70%, transparent);
  }
  .scroll-hint span { display: block; width: 1px; height: 32px; margin: 8px auto 0; background: color-mix(in srgb, var(--ink) 50%, transparent); transform-origin: top; animation: tick 1.8s ease-in-out infinite; }
  @keyframes tick { 0%,100% { transform: scaleY(.2); } 50% { transform: scaleY(1); } }

  /* ---------- Marquee ---------- */
  .marquee { width: 100%; display: flex; flex-direction: column; gap: 16px; padding-block: 40px; user-select: none; pointer-events: none; }
  .mq-row { display: flex; overflow: hidden; }
  .mq-track { display: flex; flex-shrink: 0; white-space: nowrap; animation: mq 40s linear infinite; }
  .mq-row.rev .mq-track { animation-direction: reverse; animation-duration: 50s; }
  .mq-track > * { padding-inline: 16px; font-size: 12vw; line-height: .9; margin: 0; }
  .mq-top .mq-track > * { font-family: var(--f-display); font-weight: 900; letter-spacing: -0.02em; color: var(--lime); }
  .mq-bot .mq-track > * { font-family: var(--f-cond); font-weight: 800; text-transform: uppercase; letter-spacing: -0.03em; color: #fff; }
  @keyframes mq { from { transform: translateX(0); } to { transform: translateX(-50%); } }
  @media (min-width: 768px) { .marquee { gap: 32px; } .mq-track > * { font-size: 8vw; } }

  /* ---------- Intro ---------- */
  .intro { background: var(--ink); padding: clamp(96px, 14vw, 176px) var(--gutter); }
  .intro .eyebrow { color: var(--lime); }
  .intro-text { font-family: var(--f-display); font-weight: 700; font-size: clamp(2.1rem, 5.6vw, 4.6rem); line-height: 1.08; color: #fff; }
  .intro-text span { display: inline-block; margin-right: .25em; opacity: .12; transition: opacity .15s linear; }

  /* ---------- Services ---------- */
  .services { background: var(--paper); color: var(--ink); padding: clamp(88px, 12vw, 150px) var(--gutter); }
  .sec-head { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: flex-end; gap: 24px; margin-bottom: clamp(48px, 7vw, 80px); }
  .sec-head h2 { font-size: clamp(2.8rem, 6.4vw, 4.8rem); max-width: 16ch; }
  .sec-head p { max-width: 36ch; font-size: 18px; color: color-mix(in srgb, var(--ink) 70%, transparent); }
  .services .eyebrow { color: var(--blue); }
  .svc-list { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--ink-line); }
  .svc { position: relative; overflow: hidden; border-bottom: 1px solid var(--ink-line); }
  .svc::before { content: ""; position: absolute; inset: 0; background: var(--blue); transform: scaleX(0); transform-origin: left; transition: transform .55s var(--ease); }
  .svc a { position: relative; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: clamp(14px, 3vw, 40px); padding: clamp(24px, 3vw, 36px) clamp(6px, 1.5vw, 24px); text-decoration: none; transition: color .3s; outline: none; }
  .svc-id { font-family: var(--f-cond); font-weight: 800; font-size: clamp(18px, 2vw, 24px); color: var(--blue); transition: color .3s; font-variant-numeric: tabular-nums; }
  .svc-title { display: block; font-family: var(--f-display); font-weight: 700; font-size: clamp(1.8rem, 4vw, 3rem); line-height: 1.1; }
  .svc-more { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .5s var(--ease); }
  .svc-more > span { overflow: hidden; }
  .svc-more .svc-desc { display: block; max-width: 60ch; padding-top: 12px; font-size: 17px; color: rgba(255,255,255,.88); }
  .tags { display: flex; flex-wrap: wrap; gap: 8px; padding-top: 16px; }
  .tags span { border: 1px solid rgba(255,255,255,.35); border-radius: 999px; padding: 4px 12px; font-size: 12px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
  .svc-arrow { display: grid; place-items: center; width: clamp(44px, 5vw, 64px); aspect-ratio: 1; border: 1px solid currentColor; border-radius: 50%; font-size: 20px; transition: transform .5s var(--ease), background .3s, color .3s; }
  .svc:hover::before, .svc:focus-within::before { transform: scaleX(1); }
  .svc:hover a, .svc:focus-within a { color: #fff; }
  .svc:hover .svc-id, .svc:focus-within .svc-id { color: var(--lime); }
  .svc:hover .svc-more, .svc:focus-within .svc-more { grid-template-rows: 1fr; }
  .svc:hover .svc-arrow, .svc:focus-within .svc-arrow { transform: rotate(-45deg); background: var(--lime); color: var(--ink); border-color: var(--lime); }

  /* ---------- Stats ---------- */
  .stats { background: var(--blue); padding: clamp(72px, 10vw, 112px) var(--gutter); }
  .stats-grid { display: grid; gap: 48px; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
  .stat { border-top: 1px solid rgba(255,255,255,.3); padding-top: 24px; }
  .stat b { display: block; font-family: var(--f-display); font-weight: 900; font-size: clamp(5rem, 10vw, 8rem); line-height: 1; color: var(--lime); letter-spacing: -0.03em; }
  .stat span { display: block; margin-top: 14px; font-family: var(--f-cond); font-weight: 800; font-size: 20px; letter-spacing: .12em; text-transform: uppercase; }

  /* ---------- Process ---------- */
  .process { position: relative; height: 400vh; background: var(--ink); }
  .process-stage { position: sticky; top: 0; height: 100vh; height: 100svh; overflow: hidden; display: flex; flex-direction: column; justify-content: center; }
  .process-head { width: 100%; max-width: 1240px; margin: 0 auto 40px; padding-inline: var(--gutter); display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; }
  .process-head .eyebrow { color: var(--lime); }
  .process-head h2 { font-size: clamp(2.4rem, 6vw, 4.8rem); }
  .pbar { display: none; width: 240px; height: 4px; border-radius: 4px; background: rgba(255,255,255,.15); overflow: hidden; }
  .pbar i { display: block; height: 100%; width: 0; background: var(--lime); }
  .track { display: flex; width: max-content; list-style: none; margin: 0; padding: 0; will-change: transform; }
  .track li { width: 100vw; flex-shrink: 0; padding-inline: var(--gutter); }
  .pcard {
    height: min(52vh, 460px); display: flex; flex-direction: column; justify-content: space-between; gap: 16px;
    border: 1px solid var(--white-line); border-radius: 32px; padding: clamp(28px, 4vw, 48px);
    background: linear-gradient(135deg, rgba(255,255,255,.07), rgba(255,255,255,.02));
  }
  .pcard b { font-family: var(--f-display); font-weight: 900; font-size: clamp(5rem, 9vw, 8rem); line-height: .9; color: var(--blue); }
  .pcard h3 { font-family: var(--f-display); font-weight: 700; font-size: clamp(1.8rem, 3.6vw, 3rem); }
  .pcard p { margin-top: 12px; max-width: 42ch; color: var(--muted); font-size: 17px; }
  @media (min-width: 768px) { .track li { width: 50vw; } .pbar { display: block; } }

  /* ---------- e-Shop ---------- */
  .eshop { background: var(--lime); color: var(--ink); padding: clamp(88px, 12vw, 150px) var(--gutter); overflow: hidden; }
  .eshop-grid { display: grid; gap: 64px; align-items: center; }
  .eshop h2 { font-size: clamp(2.6rem, 6vw, 4.6rem); }
  .eshop .lead { margin-top: 28px; max-width: 52ch; font-size: 18px; color: color-mix(in srgb, var(--ink) 75%, transparent); }
  .points { list-style: none; margin: 36px 0 0; padding: 0; display: grid; gap: 12px; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }
  .points li { display: flex; align-items: center; gap: 12px; background: color-mix(in srgb, var(--ink) 6%, transparent); border-radius: 16px; padding: 16px 20px; font-weight: 800; }
  .points li::before { content: "✓"; display: grid; place-items: center; width: 28px; height: 28px; flex-shrink: 0; border-radius: 50%; background: var(--ink); color: var(--lime); font-size: 14px; }
  .btn-ink { display: inline-flex; gap: 10px; margin-top: 36px; background: var(--ink); color: #fff; text-decoration: none; font-weight: 800; border-radius: 999px; padding: 16px 30px; transition: transform .25s; }
  .btn-ink:hover { transform: scale(1.05); }
  .shop { position: relative; width: 100%; max-width: 420px; aspect-ratio: 4 / 5; margin-inline: auto; will-change: transform; }
  .shop-card { position: absolute; inset: 0; background: var(--ink); border-radius: 40px; padding: 24px; box-shadow: 0 40px 80px color-mix(in srgb, var(--ink) 35%, transparent); color: #fff; }
  .shop-top { display: flex; justify-content: space-between; align-items: center; }
  .shop-top span:first-child { font-family: var(--f-display); font-weight: 700; font-size: 1.2rem; }
  .shop-top span:first-child i { font-style: normal; color: var(--lime); }
  .cart { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 50%; background: var(--lime); }
  .cart svg { width: 20px; height: 20px; }
  .prods { margin-top: 22px; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
  .prod { background: rgba(255,255,255,.05); border-radius: 16px; padding: 8px; }
  .prod div { aspect-ratio: 1; border-radius: 12px; }
  .prod i { display: block; height: 8px; border-radius: 8px; background: rgba(255,255,255,.25); margin-top: 8px; width: 75%; }
  .prod i + i { background: rgba(255,255,255,.14); width: 50%; margin-top: 6px; }
  .shop-foot { position: absolute; left: 24px; right: 24px; bottom: 24px; display: flex; justify-content: space-between; align-items: center; gap: 8px; background: rgba(255,255,255,.1); border-radius: 16px; padding: 14px 18px; font-size: 14px; font-weight: 700; }
  .shop-foot b { font-family: var(--f-cond); font-weight: 800; text-transform: uppercase; color: var(--lime); font-size: 17px; }
  @media (min-width: 1000px) { .eshop-grid { grid-template-columns: 1.2fr 1fr; } }

  /* ---------- FAQ ---------- */
  .faq { background: var(--paper); color: var(--ink); padding: clamp(88px, 12vw, 150px) var(--gutter); }
  .faq-grid { display: grid; gap: 48px; }
  .faq .eyebrow { color: var(--blue); }
  .faq h2 { font-size: clamp(2.8rem, 6vw, 4.6rem); }
  .qa { border-bottom: 1px solid var(--ink-line); }
  .qa:first-child { border-top: 1px solid var(--ink-line); }
  .qa summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 24px; padding-block: 24px; font-weight: 800; font-size: clamp(1.15rem, 2vw, 1.5rem); }
  .qa summary::-webkit-details-marker { display: none; }
  .qa summary::after { content: "+"; display: grid; place-items: center; flex-shrink: 0; width: 40px; height: 40px; border-radius: 50%; background: color-mix(in srgb, var(--ink) 6%, transparent); font-size: 24px; font-weight: 500; transition: transform .3s, background .3s, color .3s; }
  .qa[open] summary::after { transform: rotate(45deg); background: var(--blue); color: #fff; }
  .qa p { max-width: 60ch; padding-bottom: 28px; font-size: 18px; color: color-mix(in srgb, var(--ink) 72%, transparent); }
  @media (min-width: 1000px) { .faq-grid { grid-template-columns: 1fr 1.6fr; } }

  /* ---------- Contact / footer ---------- */
  .contact { background: var(--blue); padding: clamp(110px, 14vw, 160px) var(--gutter) 64px; overflow: hidden; }
  .contact .eyebrow { color: var(--lime); }
  .contact h2 { font-family: var(--f-display); font-weight: 900; font-size: clamp(3.4rem, 12vw, 11rem); line-height: .85; letter-spacing: -0.04em; }
  .contact h2 i { font-style: normal; color: var(--lime); }
  .contact-grid { margin-top: 56px; padding-top: 40px; border-top: 1px solid rgba(255,255,255,.25); display: grid; gap: 40px; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); align-items: start; }
  .contact-grid p { max-width: 36ch; font-size: 18px; color: rgba(255,255,255,.86); }
  .direct { display: grid; gap: 6px; font-size: clamp(1.4rem, 2.4vw, 1.9rem); font-weight: 800; user-select: text; }
  .direct a { text-decoration: none; overflow-wrap: anywhere; }
  .direct a:hover { color: var(--lime); text-decoration: underline; text-underline-offset: 8px; }
  .contact .btn-lime { padding: 20px 32px; font-size: 18px; justify-self: start; }
  footer { background: var(--ink); color: rgba(255,255,255,.7); padding: 48px var(--gutter) 32px; }
  .foot { display: flex; flex-wrap: wrap; gap: 32px; justify-content: space-between; align-items: flex-end; }
  .foot .logo { font-size: 2.2rem; }
  .foot nav { display: flex; flex-wrap: wrap; gap: 12px 28px; font-size: 14px; font-weight: 700; }
  .foot nav a { text-decoration: none; }
  .foot nav a:hover, .socials a:hover { color: var(--lime); border-color: var(--lime); }
  .socials { display: flex; flex-wrap: wrap; gap: 10px; list-style: none; margin: 0; padding: 0; }
  .socials a { display: block; border: 1px solid rgba(255,255,255,.2); border-radius: 999px; padding: 8px 16px; font-size: 14px; font-weight: 700; text-decoration: none; }
  .legal { margin-top: 48px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.1); font-size: 12px; }

  .reveal { transition: transform .8s var(--ease), opacity .8s var(--ease); }
  .reveal.pre { transform: translateY(30px); opacity: 0; transition: none; }

  @media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  }

/* ==================================================================
   Multi-page additions
   ================================================================== */
html.no-pre #preloader { display: none; }

/* Page-transition curtain (the preloader's little sibling) */
#curtain {
  position: fixed; inset: 0; z-index: 9990; background: var(--blue); color: #fff; pointer-events: none;
  display: flex; align-items: center; justify-content: center; transform: translateY(100%);
}
#curtain span { font-family: var(--f-display); font-weight: 700; font-size: clamp(2.4rem, 8vw, 5.5rem); letter-spacing: -0.03em; padding-inline: 16px; text-align: center; }
#curtain span i { font-style: normal; color: var(--lime); }
#curtain.in { transform: translateY(0); transition: transform .55s var(--ease); }
#curtain.enter { transform: translateY(0); }
#curtain.leave { transform: translateY(-100%); transition: transform .7s var(--ease) .1s; }

/* Nav: mobile menu + current page */
.nav-links a[aria-current="page"] { color: var(--lime); }
.menu-btn { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; border: 0; background: rgba(255,255,255,.1); color: #fff; cursor: pointer; }
.menu-btn span { position: relative; display: block; width: 16px; height: 2px; background: currentColor; transition: background .2s; }
.menu-btn span::before, .menu-btn span::after { content: ""; position: absolute; left: 0; width: 16px; height: 2px; background: currentColor; transition: transform .3s var(--ease); }
.menu-btn span::before { top: -5px; } .menu-btn span::after { top: 5px; }
.menu-btn[aria-expanded="true"] span { background: transparent; }
.menu-btn[aria-expanded="true"] span::before { transform: translateY(5px) rotate(45deg); }
.menu-btn[aria-expanded="true"] span::after { transform: translateY(-5px) rotate(-45deg); }
.nav-right { display: flex; align-items: center; gap: 8px; }
.mobile-menu { max-width: 1240px; margin: 8px auto 0; background: color-mix(in srgb, var(--ink) 96%, transparent); border: 1px solid var(--white-line); border-radius: 28px; padding: 10px; list-style: none; }
.mobile-menu a { display: block; padding: 14px 18px; border-radius: 18px; text-decoration: none; font-weight: 800; font-size: 18px; }
.mobile-menu a:hover, .mobile-menu a[aria-current="page"] { background: rgba(255,255,255,.08); color: var(--lime); }
@media (min-width: 1120px) { .menu-btn, .mobile-menu { display: none !important; } }
@media (max-width: 420px) { .nav .btn-lime { padding: 10px 14px; font-size: 13px; } }

/* Sections */
.sec { padding: clamp(80px, 11vw, 140px) var(--gutter); }
.sec--ink { background: var(--ink); color: var(--paper); }
.sec--paper { background: var(--paper); color: var(--ink); }
.sec--blue { background: var(--blue); color: #fff; }
.sec--lime { background: var(--lime); color: var(--ink); }
.sec--paper .eyebrow, .sec--lime .eyebrow { color: var(--blue); }
.sec--ink .eyebrow, .sec--blue .eyebrow { color: var(--lime); }
.sec-title { font-size: clamp(2.4rem, 5.6vw, 4.4rem); max-width: 18ch; }
.lead { font-size: clamp(18px, 1.6vw, 21px); line-height: 1.6; max-width: 60ch; }
.sec--paper .lead, .sec--lime .lead { color: color-mix(in srgb, var(--ink) 74%, transparent); }
.sec--ink .lead { color: var(--muted); }
.stack { display: grid; gap: 20px; }

/* Inner page hero */
.page-hero { background: var(--ink); padding: calc(env(safe-area-inset-top, 0px) + 150px) var(--gutter) 0; overflow: hidden; position: relative; }
.page-hero .wrap { position: relative; z-index: 1; }
.page-hero h1 { font-family: var(--f-display); font-weight: 900; font-size: clamp(2.8rem, 8vw, 7rem); line-height: .92; letter-spacing: -0.03em; max-width: 16ch; }
.page-hero h1 i { font-style: normal; color: var(--lime); }
.page-hero .lead { margin-top: 28px; color: var(--muted); }
.page-hero .actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 36px; }
.page-hero .strip { margin-top: clamp(56px, 8vw, 96px); border-top: 1px solid var(--white-line); padding-block: 22px; overflow: hidden; }
.page-hero .strip .mq-track > * { font-size: clamp(2.2rem, 5vw, 4rem); }
.page-hero .glow { position: absolute; width: 60vw; height: 60vw; right: -20vw; top: -25vw; border-radius: 50%; background: radial-gradient(circle, color-mix(in srgb, var(--blue) 55%, transparent), color-mix(in srgb, var(--blue) 0%, transparent) 65%); pointer-events: none; }
.crumbs { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; margin: 0 0 28px; padding: 0; font-size: 13px; font-weight: 700; color: var(--muted); }
.crumbs li + li::before { content: "/"; margin-right: 8px; opacity: .5; }
.crumbs a { text-decoration: none; }
.crumbs a:hover { color: var(--lime); }
.btn-ghost { display: inline-flex; align-items: center; gap: 10px; border: 1px solid rgba(255,255,255,.35); color: #fff; font-weight: 800; text-decoration: none; border-radius: 999px; padding: 11px 20px; font-size: 14px; transition: border-color .2s, color .2s; }
.btn-ghost:hover { border-color: var(--lime); color: var(--lime); }
.btn-lg { padding: 16px 28px; font-size: 16px; }

/* Includes / checks */
.checks { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.checks li { display: flex; gap: 12px; align-items: center; background: color-mix(in srgb, var(--ink) 5%, transparent); border-radius: 16px; padding: 16px 18px; font-weight: 700; }
.sec--ink .checks li { background: rgba(255,255,255,.05); }
.checks li::before { content: "✓"; display: grid; place-items: center; width: 26px; height: 26px; flex-shrink: 0; border-radius: 50%; background: var(--blue); color: #fff; font-size: 13px; }

/* Benefits */
.benefits { display: grid; gap: 40px; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); margin-top: 56px; }
.benefits h3 { font-family: var(--f-display); font-weight: 700; font-size: 1.7rem; line-height: 1.15; margin-bottom: 12px; }
.benefits p { color: var(--muted); }
.sec--paper .benefits p { color: color-mix(in srgb, var(--ink) 70%, transparent); }
.benefits > div { border-top: 2px solid var(--lime); padding-top: 22px; }
.sec--paper .benefits > div { border-color: var(--blue); }

/* Two-column split */
.split { display: grid; gap: 48px; align-items: start; }
@media (min-width: 960px) { .split { grid-template-columns: 1fr 1.3fr; } .split.even { grid-template-columns: 1fr 1fr; } }
.sticky-col { position: sticky; top: 120px; }

/* Before/after frame used on inner pages */
.ba-frame { position: relative; width: 100%; aspect-ratio: 16 / 10; max-height: 78vh; border-radius: 28px; overflow: hidden; background: #fff; box-shadow: 0 40px 80px rgba(0,0,0,.35); }
.ba-frame .ba { position: absolute; inset: 0; cursor: crosshair; touch-action: pan-y; }
.ba canvas { display: block; width: 100%; height: 100%; }
.ba-note { margin-top: 14px; font-family: var(--f-cond); font-weight: 800; letter-spacing: .18em; text-transform: uppercase; font-size: 13px; color: var(--muted); }
.ba-note b { color: var(--lime); }

/* Service cards (services index) */
.svc-cards { display: grid; gap: 16px; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); }
.svc-card { position: relative; overflow: hidden; display: flex; flex-direction: column; justify-content: space-between; gap: 40px; min-height: 340px; padding: 32px; border-radius: 28px; background: #fff; color: var(--ink); text-decoration: none; border: 1px solid var(--ink-line); isolation: isolate; }
.svc-card::before { content: ""; position: absolute; z-index: -1; width: 30px; height: 30px; right: 32px; top: 32px; border-radius: 50%; background: var(--blue); transform: scale(0); transition: transform .7s var(--ease); }
.svc-card:hover::before, .svc-card:focus-visible::before { transform: scale(40); }
.svc-card:hover, .svc-card:focus-visible { color: #fff; }
.svc-card .n { font-family: var(--f-cond); font-weight: 800; font-size: 20px; color: var(--blue); transition: color .3s; }
.svc-card:hover .n { color: var(--lime); }
.svc-card h2, .svc-card h3 { font-family: var(--f-display); font-weight: 700; font-size: 2rem; line-height: 1.1; margin-bottom: 12px; }
.svc-card p { font-size: 16px; opacity: .8; }
.svc-card .go { display: inline-flex; align-items: center; gap: 8px; font-weight: 800; font-size: 14px; }

/* Blog cards */
.cards { display: grid; gap: 24px; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); }
.card { display: flex; flex-direction: column; background: #fff; color: var(--ink); border-radius: 24px; overflow: hidden; text-decoration: none; border: 1px solid var(--ink-line); transition: transform .35s var(--ease), box-shadow .35s; }
.sec--ink .card { background: var(--ink-2); color: #fff; border-color: var(--white-line); }
.card:hover { transform: translateY(-6px); box-shadow: 0 24px 50px color-mix(in srgb, var(--ink) 18%, transparent); }
.card-img { aspect-ratio: 16 / 9; background: linear-gradient(135deg, var(--blue), var(--blue-2)); overflow: hidden; display: grid; place-items: center; }
.card-img img { width: 100%; height: 100%; object-fit: cover; }
.card-img span { font-family: var(--f-display); font-weight: 900; font-size: 3rem; color: rgba(255,255,255,.9); }
.card-body { padding: 22px 24px 26px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.card-cat { font-family: var(--f-cond); font-weight: 800; font-size: 13px; letter-spacing: .14em; text-transform: uppercase; color: var(--blue); }
.sec--ink .card-cat { color: var(--lime); }
.card h2, .card h3 { font-family: var(--f-display); font-weight: 700; font-size: 1.45rem; line-height: 1.2; }
.card p { font-size: 15px; opacity: .72; }
.card-meta { margin-top: auto; padding-top: 8px; font-size: 13px; font-weight: 700; opacity: .6; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 40px; }
.chips a { border: 1px solid var(--ink-line); border-radius: 999px; padding: 8px 16px; font-weight: 800; font-size: 14px; text-decoration: none; }
.chips a[aria-current="page"], .chips a:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.pager { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-top: 56px; }
.pager a, .pager span { min-width: 46px; height: 46px; display: grid; place-items: center; padding-inline: 14px; border-radius: 999px; border: 1px solid var(--ink-line); font-weight: 800; text-decoration: none; }
.pager span[aria-current] { background: var(--blue); color: #fff; border-color: var(--blue); }
.empty { padding: 48px; border: 1px dashed var(--ink-line); border-radius: 24px; text-align: center; font-size: 18px; }

/* Article */
.post-hero { background: var(--ink); padding: calc(env(safe-area-inset-top, 0px) + 140px) var(--gutter) 64px; }
.post-hero .wrap { max-width: 920px; }
.post-title { font-family: var(--f-display); font-weight: 900; font-size: clamp(2.3rem, 5.4vw, 4.2rem); line-height: 1.02; letter-spacing: -0.02em; }
.post-meta { display: flex; flex-wrap: wrap; gap: 8px 20px; margin-top: 26px; font-size: 14px; font-weight: 700; color: var(--muted); }
.post-meta a { color: var(--lime); text-decoration: none; }
.post-cover { max-width: 1100px; margin: 0 auto; padding-inline: var(--gutter); margin-top: -1px; background: linear-gradient(var(--ink) 50%, var(--paper) 50%); }
.post-cover img { width: 100%; border-radius: 28px; aspect-ratio: 16 / 9; object-fit: cover; display: block; }
.post-body { background: var(--paper); color: var(--ink); padding: 56px var(--gutter) 100px; }
.post-grid { max-width: 1100px; margin-inline: auto; display: grid; gap: 48px; }
@media (min-width: 1040px) { .post-grid { grid-template-columns: 240px minmax(0, 1fr); } }
.toc { font-size: 14px; }
.toc b { display: block; font-family: var(--f-cond); font-weight: 800; letter-spacing: .16em; text-transform: uppercase; font-size: 13px; margin-bottom: 12px; color: var(--blue); }
.toc ol { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; border-left: 2px solid var(--ink-line); }
.toc a { display: block; padding-left: 14px; margin-left: -2px; border-left: 2px solid transparent; text-decoration: none; color: color-mix(in srgb, var(--ink) 70%, transparent); line-height: 1.35; }
.toc a:hover, .toc a.on { color: var(--blue); border-left-color: var(--blue); }
.toc .l3 { padding-left: 28px; font-size: 13px; }
@media (min-width: 1040px) { .toc { position: sticky; top: 110px; align-self: start; max-height: calc(100vh - 140px); overflow: auto; } }
@media (max-width: 1039px) { .toc { background: #fff; border-radius: 20px; padding: 20px; } }
.tldr { background: var(--ink); color: #fff; border-radius: 24px; padding: 26px 28px; margin-bottom: 36px; }
.tldr b { display: block; font-family: var(--f-cond); font-weight: 800; letter-spacing: .16em; text-transform: uppercase; font-size: 13px; color: var(--lime); margin-bottom: 10px; }
.tldr p { font-size: 19px; line-height: 1.55; }
.takeaways { border: 2px solid var(--blue); border-radius: 24px; padding: 24px 28px; margin-bottom: 40px; }
.takeaways b { display: block; font-family: var(--f-cond); font-weight: 800; letter-spacing: .16em; text-transform: uppercase; font-size: 13px; color: var(--blue); margin-bottom: 10px; }
.takeaways ul { margin: 0; padding-left: 20px; display: grid; gap: 8px; font-weight: 600; }
.prose { font-size: 18.5px; line-height: 1.75; max-width: 72ch; }
.prose > * + * { margin-top: 1.1em; }
.prose h2 { font-family: var(--f-display); font-weight: 700; font-size: clamp(1.8rem, 3vw, 2.3rem); line-height: 1.15; margin-top: 1.8em; scroll-margin-top: 110px; }
.prose h3 { font-family: var(--f-display); font-weight: 700; font-size: 1.5rem; line-height: 1.2; margin-top: 1.5em; scroll-margin-top: 110px; }
.prose h4 { font-size: 1.15rem; font-weight: 800; margin-top: 1.4em; }
.prose a { color: var(--blue); text-underline-offset: 3px; text-decoration-thickness: 1.5px; }
.prose ul, .prose ol { padding-left: 1.3em; }
.prose li + li { margin-top: .4em; }
.prose blockquote { margin-inline: 0; border-left: 4px solid var(--lime); background: #fff; padding: 18px 24px; border-radius: 0 16px 16px 0; font-style: italic; }
.prose img { border-radius: 18px; }
.prose figure { margin-inline: 0; }
.prose figcaption { font-size: 14px; color: color-mix(in srgb, var(--ink) 60%, transparent); margin-top: 8px; }
.prose table { width: 100%; border-collapse: collapse; font-size: 16px; display: block; overflow-x: auto; }
.prose th, .prose td { border: 1px solid var(--ink-line); padding: 10px 14px; text-align: left; vertical-align: top; }
.prose th { background: #fff; }
.prose pre { background: var(--ink); color: var(--paper); padding: 18px; border-radius: 14px; overflow-x: auto; font-size: 14px; }
.prose code { font-size: .9em; background: color-mix(in srgb, var(--ink) 6%, transparent); padding: .1em .35em; border-radius: 6px; }
.prose pre code { background: none; padding: 0; }
.prose iframe { width: 100%; aspect-ratio: 16 / 9; height: auto; border: 0; border-radius: 16px; }
.post-faq { margin-top: 56px; }
.post-faq h2 { font-family: var(--f-display); font-weight: 700; font-size: 2rem; margin-bottom: 16px; }
.howto { margin-top: 48px; counter-reset: step; list-style: none; padding: 0; display: grid; gap: 14px; }
.howto li { counter-increment: step; background: #fff; border-radius: 18px; padding: 18px 20px 18px 70px; position: relative; }
.howto li::before { content: counter(step); position: absolute; left: 18px; top: 16px; width: 36px; height: 36px; border-radius: 50%; background: var(--blue); color: #fff; display: grid; place-items: center; font-weight: 800; }
.howto b { display: block; }
.cta-box { margin-top: 56px; background: var(--blue); color: #fff; border-radius: 28px; padding: clamp(28px, 4vw, 44px); display: grid; gap: 20px; }
.cta-box p { font-family: var(--f-display); font-weight: 700; font-size: clamp(1.5rem, 2.6vw, 2rem); line-height: 1.2; max-width: 28ch; }
.author-box { margin-top: 40px; display: flex; gap: 16px; align-items: center; padding-top: 28px; border-top: 1px solid var(--ink-line); }
.author-box .av { width: 56px; height: 56px; border-radius: 50%; background: var(--ink); color: var(--lime); display: grid; place-items: center; font-family: var(--f-display); font-weight: 700; font-size: 1.4rem; flex-shrink: 0; }
.author-box p { font-size: 15px; color: color-mix(in srgb, var(--ink) 70%, transparent); }
.preview-bar { position: fixed; left: 50%; bottom: 16px; transform: translateX(-50%); z-index: 60; background: #ffb020; color: var(--ink); padding: 10px 18px; border-radius: 999px; font-weight: 800; font-size: 14px; box-shadow: 0 10px 30px rgba(0,0,0,.3); }
.preview-bar a { margin-left: 8px; }

/* Portfolio */
.projects { display: grid; gap: 24px; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); }
.project { background: #fff; color: var(--ink); border-radius: 28px; overflow: hidden; border: 1px solid var(--ink-line); display: flex; flex-direction: column; }
.project-img { aspect-ratio: 4 / 3; background: linear-gradient(135deg, var(--ink), var(--blue)); overflow: hidden; }
.project-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.project:hover .project-img img { transform: scale(1.05); }
.project-body { padding: 24px; display: grid; gap: 8px; }
.project h2 { font-family: var(--f-display); font-weight: 700; font-size: 1.6rem; }
.project a { color: var(--blue); font-weight: 800; }

/* Forms */
.form { display: grid; gap: 18px; }
.form-row { display: grid; gap: 18px; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.field { display: grid; gap: 8px; }
.field label { font-weight: 800; font-size: 14px; }
.field input, .field select, .field textarea {
  font: inherit; font-size: 16px; color: var(--ink); background: #fff; border: 1.5px solid color-mix(in srgb, var(--ink) 18%, transparent); border-radius: 14px; padding: 14px 16px; width: 100%;
  transition: border-color .2s, box-shadow .2s;
}
.field textarea { min-height: 160px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 4px color-mix(in srgb, var(--blue) 15%, transparent); }
.field .err { color: #c0231a; font-size: 14px; font-weight: 700; }
.field.has-err input, .field.has-err textarea { border-color: #c0231a; }
.check { display: flex; gap: 12px; align-items: flex-start; font-size: 15px; }
.check input { width: 20px; height: 20px; margin-top: 2px; accent-color: var(--blue); flex-shrink: 0; }
.hp { position: absolute; left: -5000px; }
.alert { border-radius: 18px; padding: 18px 20px; font-weight: 700; }
.alert.ok { background: #e3ffd1; color: #1d4d00; }
.alert.bad { background: #ffe3e0; color: #7a140d; }
.btn-blue { display: inline-flex; align-items: center; justify-content: center; gap: 10px; background: var(--blue); color: #fff; border: 0; cursor: pointer; font: inherit; font-weight: 800; border-radius: 999px; padding: 16px 30px; font-size: 16px; text-decoration: none; transition: transform .25s; }
.btn-blue:hover { transform: scale(1.04); }
.contact-card { background: var(--ink); color: #fff; border-radius: 28px; padding: 32px; display: grid; gap: 22px; }
.contact-card b { display: block; font-family: var(--f-cond); font-weight: 800; letter-spacing: .16em; text-transform: uppercase; font-size: 13px; color: var(--lime); margin-bottom: 4px; }
.contact-card a { font-size: 1.4rem; font-weight: 800; text-decoration: none; overflow-wrap: anywhere; }
.contact-card a:hover { color: var(--lime); }

/* Values (about) */
.values { display: grid; gap: 16px; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.values > div { background: rgba(255,255,255,.05); border: 1px solid var(--white-line); border-radius: 24px; padding: 28px; }
.values h3 { font-family: var(--f-display); font-weight: 700; font-size: 1.6rem; margin-bottom: 10px; }
.values p { color: var(--muted); }

/* Legal */
.legal .prose h2 { font-size: 1.6rem; }

/* 404 */
.nf { min-height: 80vh; display: grid; align-content: center; }
.nf .big { font-family: var(--f-display); font-weight: 900; font-size: clamp(7rem, 26vw, 20rem); line-height: .8; color: var(--blue); letter-spacing: -0.05em; }
.nf .big i { font-style: normal; color: var(--lime); }

/* Cookie banner */
.cookie { position: fixed; z-index: 70; left: 16px; right: 16px; bottom: calc(env(safe-area-inset-bottom, 0px) + 16px); max-width: 560px; background: #fff; color: var(--ink); border-radius: 22px; padding: 20px 22px; box-shadow: 0 30px 60px rgba(0,0,0,.35); display: grid; gap: 14px; font-size: 15px; }
.cookie a { color: var(--blue); }
.cookie .row { display: flex; flex-wrap: wrap; gap: 10px; }
.cookie button { font: inherit; font-weight: 800; border-radius: 999px; padding: 10px 18px; cursor: pointer; border: 1.5px solid var(--ink); background: #fff; color: var(--ink); }
.cookie button.yes { background: var(--ink); color: #fff; }
.linkish { background: none; border: 0; padding: 0; font: inherit; color: inherit; cursor: pointer; text-decoration: underline; }

/* Home: latest posts */
.home-posts .sec-head p a { color: var(--blue); font-weight: 800; }

html.curtain-enter #curtain { transform: translateY(0); }
.foot nav { display: grid; gap: 10px; align-content: start; }
.foot { align-items: flex-start; }
.foot a { text-decoration: none; }
.foot a:hover { color: var(--lime); }

/* ==================================================================
   v3 additions: logo, languages, social icons, equal-height grids,
   "read more", portfolio project view, full rows
   ================================================================== */
/* Logo image (Admin → Εμφάνιση) */
.logo { display: inline-flex; align-items: center; gap: 10px; line-height: 1; }
.logo img { display: block; height: 34px; width: auto; }
.foot .logo img { height: 44px; }

.pl-w { width: auto; height: 2.6rem; top: -3.2rem; filter: brightness(0) invert(1); }
@media (min-width: 768px) { .pl-w { height: 3.4rem; top: -4.2rem; } }

/* Language switch (same family as the menu button) */
.lang-switch { display: inline-grid; place-items: center; min-width: 42px; height: 42px; padding-inline: 8px; border-radius: 999px; background: rgba(255,255,255,.1); color: #fff; font-family: var(--f-cond); font-weight: 800; font-size: 14px; letter-spacing: .08em; text-decoration: none; transition: background .2s, color .2s; }
.lang-switch:hover { background: var(--lime); color: var(--lime-ink); }

/* Inner-page hero eyebrow stays lime */
.page-hero .eyebrow { color: var(--lime); }

/* Social icons */
.socials { margin-top: 18px; }
.socials a { display: grid; place-items: center; width: 44px; height: 44px; padding: 0; border-radius: 50%; color: #fff; transition: color .2s, background .2s, border-color .2s, transform .2s; }
.socials a:hover, .socials a:focus-visible { background: var(--lime); color: var(--lime-ink); border-color: var(--lime); transform: translateY(-2px); }
.socials svg { width: 19px; height: 19px; fill: currentColor; }

/* Equal-height cards + "Read more" (visible only when the text is cut) */
.clamp { display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 3; line-clamp: 3; overflow: hidden; }
.svc-card .clamp { -webkit-line-clamp: 4; line-clamp: 4; }
.more { position: relative; z-index: 2; align-self: flex-start; display: inline-flex; align-items: center; gap: 6px; min-height: 32px; padding: 0; background: none; border: 0; font: inherit; font-weight: 800; font-size: 14px; color: var(--blue); cursor: pointer; text-decoration: none; visibility: hidden; }
.sec--ink .more { color: var(--lime); }
.is-clamped .more { visibility: visible; }
.more:hover { text-decoration: underline; text-underline-offset: 4px; }

/* Blog cards: whole card clickable through the title link */
.card { position: relative; height: 100%; }
.card h3 a { color: inherit; text-decoration: none; }
.card h3 a::after { content: ""; position: absolute; inset: 0; z-index: 1; }
.card:focus-within { outline: 3px solid var(--lime); outline-offset: 3px; }
.card h3 a:focus-visible { outline: none; }
.card-img picture, .project-img picture { display: block; width: 100%; height: 100%; }
.post-cover picture { display: block; }

/* Full rows everywhere: fixed column counts */
.cards { grid-template-columns: 1fr; }
@media (min-width: 640px) { .cards { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1100px) { .cards { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.svc-cards { grid-template-columns: 1fr; }
@media (min-width: 700px) { .svc-cards { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1040px) { .svc-cards { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.svc-card--wide { grid-column: 1 / -1; min-height: 0; background: var(--lime); }
@media (min-width: 900px) { .svc-card--wide { flex-direction: row; align-items: center; gap: 40px; } .svc-card--wide > div { flex: 1; } }
.projects { grid-template-columns: 1fr; }
@media (min-width: 700px) { .projects { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1040px) { .projects { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.values { grid-template-columns: 1fr; }
@media (min-width: 700px) { .values { grid-template-columns: repeat(2, minmax(0, 1fr)); } }

/* Portfolio card + full project view */
.project { height: 100%; }
.project-body { display: flex; flex-direction: column; flex: 1; }
.project .client { font-weight: 700; }
.project .clamp { opacity: .8; }
.project .foot-links { margin-top: auto; padding-top: 10px; display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }
.project .more { visibility: visible; }
.project-img img { display: block; }
.pmodal { width: min(980px, calc(100vw - 32px)); max-height: calc(100vh - 32px); padding: 0; border: 0; border-radius: 28px; background: var(--paper); color: var(--ink); overflow: auto; box-shadow: 0 40px 80px rgba(0,0,0,.4); }
.pmodal::backdrop { background: color-mix(in srgb, var(--ink) 80%, transparent); backdrop-filter: blur(4px); }
.pmodal-in { padding: clamp(22px, 4vw, 40px); display: grid; gap: 18px; }
.pmodal-head { display: flex; justify-content: space-between; gap: 16px; align-items: flex-start; }
.pmodal h2 { font-family: var(--f-display); font-weight: 700; font-size: clamp(1.8rem, 4vw, 2.6rem); line-height: 1.1; }
.pmodal .x { flex-shrink: 0; width: 48px; height: 48px; border-radius: 50%; border: 0; background: var(--ink); color: #fff; font-size: 26px; cursor: pointer; transition: background .2s, color .2s; }
.pmodal .x:hover { background: var(--lime); color: var(--lime-ink); }
.gallery { display: grid; gap: 12px; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.gallery img { width: 100%; border-radius: 16px; aspect-ratio: 4 / 3; object-fit: cover; display: block; }
.pmodal .body { font-size: 17px; max-width: 70ch; color: color-mix(in srgb, var(--ink) 80%, transparent); }
.pmodal .body p + p { margin-top: 1em; }
.meta-row { display: flex; flex-wrap: wrap; gap: 8px 20px; font-size: 14px; font-weight: 700; color: color-mix(in srgb, var(--ink) 72%, transparent); }
.meta-row b { color: var(--ink); }

/* Blog chips count */
.chips a span { opacity: .65; }

.btn-lime { white-space: nowrap; }
@media (max-width: 560px) { .nav .lang-switch { display: none; } .nav .logo img { height: 28px; } }
@media (min-width: 1040px) { .projects.cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
