/* ============================================================
   Dental Harmony Clinic — Δρ. Μαγδαληνή Δήμου
   Neutral nude palette · beige / warm brown / soft rose
   ============================================================ */

:root {
  /* Palette — δειγματοληψία από το λογότυπο & το mockup της αρχικής */
  --cream:      #f6efe7;
  --sand:       #f2e8dc;
  --beige:      #e7d7c6;
  --blush:      #eed3c7;
  --rose:       #cb9d89;
  --rose-deep:  #c18f7c;
  --taupe:      #a98f7d;
  --mocha:      #8a7160;
  --cocoa:      #53412f;
  --ink:        #4a3d33;
  --ink-soft:   #6d5f52;
  --line:       #e4d6c6;
  --white:      #fffdf9;

  /* Type */
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans:  "Jost", "Helvetica Neue", Arial, sans-serif;

  /* Rhythm */
  --container: 1200px;
  --gap: clamp(1.25rem, 4vw, 2rem);
  --section-y: clamp(4.5rem, 10vw, 8.5rem);
  --radius: 18px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  font-family: var(--sans);
  font-weight: 300;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.7;
  font-size: clamp(1rem, 0.96rem + 0.2vw, 1.075rem);
  letter-spacing: 0.01em;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gap);
}

/* ---------- Shared type ---------- */
.eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--mocha);
  font-weight: 500;
  margin: 0 0 1rem;
}

.section-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2rem, 1.4rem + 2.8vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: 0.005em;
  color: var(--cocoa);
  margin: 0 0 1.4rem;
}
.section-title em { font-style: italic; color: var(--rose); }

.section-head { max-width: 640px; margin: 0 auto clamp(2.5rem, 5vw, 4rem); text-align: center; }
.section-head .eyebrow { justify-content: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 1rem 2rem;
  border-radius: 100px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .4s var(--ease), background .35s var(--ease),
              color .35s var(--ease), border-color .35s var(--ease), box-shadow .4s var(--ease);
}
.btn-primary {
  background: var(--rose-deep);
  color: var(--white);
  box-shadow: 0 14px 30px -16px rgba(122, 78, 60, 0.75);
}
.btn-primary:hover { background: #b17f6c; transform: translateY(-3px); box-shadow: 0 20px 38px -16px rgba(122, 78, 60, 0.8); }
.btn-ghost {
  background: transparent;
  color: var(--rose-deep);
  border-color: var(--rose);
}
.btn-ghost:hover { background: var(--blush); border-color: var(--blush); color: var(--cocoa); transform: translateY(-3px); }

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background .4s var(--ease), box-shadow .4s var(--ease), backdrop-filter .4s var(--ease);
}
.site-header.scrolled {
  background: rgba(250, 245, 238, 0.86);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line), 0 14px 40px -30px rgba(74, 61, 51, 0.5);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
}
.brand-logo {
  height: 66px;
  width: auto;
  transition: height .4s var(--ease);
}
.scrolled .brand-logo { height: 56px; }

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: clamp(1.1rem, 2.4vw, 2.3rem);
  margin: 0; padding: 0;
}
.nav-links a {
  font-size: 0.82rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--ink);
  position: relative;
  padding-block: 0.4rem;
  transition: color .3s var(--ease);
}
.nav-links a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--rose);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .4s var(--ease);
}
.nav-links a:not(.btn):hover { color: var(--mocha); }
.nav-links a:not(.btn):hover::after { transform: scaleX(1); transform-origin: left; }
.btn-nav {
  background: var(--rose-deep);
  color: var(--white) !important;
  padding: 0.7rem 1.5rem;
  border-radius: 100px;
}
.btn-nav:hover { background: #b17f6c; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 7px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px 0;
}
.nav-toggle span {
  width: 34px; height: 1.5px;
  background: var(--cocoa);
  transition: transform .35s var(--ease), opacity .3s var(--ease);
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-block: calc(84px + clamp(0.25rem, 2vw, 2rem)) clamp(1.25rem, 4vw, 2.5rem);
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream) 72%, var(--sand) 100%);
  overflow: hidden;
}
.hero-inner {
  position: relative;
  max-width: 720px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Το σήμα του λογοτύπου είναι το πρώτο πράγμα που βλέπει ο επισκέπτης */
.hero-logo {
  /* το svh κρατά το σήμα αναλογικό και σε χαμηλά viewport laptop */
  width: min(46vw, 22svh, 200px);
  height: auto;
  margin-bottom: clamp(0.25rem, 1.5vw, 0.75rem);
}

.hero-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.4rem, 1rem + 7vw, 3.4rem);
  line-height: 1;
  letter-spacing: 0.01em;
  color: var(--cocoa);
  margin: 0 0 1rem;
}
.hero-title em { font-style: italic; color: var(--rose-deep); }
/* «CLINIC» — δεύτερη γραμμή του λογοτύπου, αραιωμένα κεφαλαία με λεπτές γραμμές */
.hero-title-sub {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--sans);
  font-weight: 400;
  font-size: 0.245em;
  line-height: 1;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--mocha);
  margin-top: 0.85em;
}
.hero-title-sub::before,
.hero-title-sub::after {
  content: "";
  flex: none;
  width: clamp(48px, 14vw, 110px);
  height: 1px;
  background: var(--rose);
  opacity: 0.75;
}
.hero-title-sub::before { margin-right: 1.1em; }
.hero-title-sub::after { margin-left: calc(1.1em - 0.5em); }

.hero-tagline {
  font-family: var(--serif);
  font-size: clamp(1.15rem, 1rem + 0.9vw, 1.5rem);
  letter-spacing: 0.04em;
  color: var(--taupe);
  margin: 0.9rem 0 0;
}
.hero-tagline em { font-style: italic; color: var(--rose-deep); }

/* Τρεις πυλώνες φροντίδας — εικονίδια γραμμής με κάθετους διαχωριστές */
.hero-pillars {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
  max-width: 560px;
  margin: clamp(1.6rem, 5vw, 2.4rem) 0 0;
  padding: 0;
}
.hero-pillars li {
  display: grid;
  grid-template-rows: auto 1fr;
  justify-items: center;
  gap: clamp(0.8rem, 2.6vw, 1.2rem);
  padding-inline: clamp(0.4rem, 2vw, 1rem);
}
.hero-pillars li + li { border-left: 1px solid var(--line); }
/* κοινό ύψος ώστε τα τρία εικονίδια να «κάθονται» στην ίδια γραμμή */
.hero-pillars { --ico-h: clamp(42px, 12vw, 50px); }
.hero-pillars .ico {
  width: auto;
  height: var(--ico-h);
  color: var(--mocha);
}
/* Το σήμα του λογοτύπου (δόντι με το πρόσωπο) έχει πιο βαριές γραμμές
   από τα δύο line icons — λίγο μικρότερο για ίδιο οπτικό βάρος. */
.hero-pillars .ico-mark {
  height: calc(var(--ico-h) * 0.94);
  align-self: center;
}
.hero-pillars span {
  font-size: clamp(0.63rem, 0.5rem + 0.4vw, 0.72rem);
  letter-spacing: 0.16em;
  line-height: 1.6;
  text-transform: uppercase;
  color: var(--cocoa);
}

.hero-lead {
  max-width: 46ch;
  font-size: clamp(1rem, 0.96rem + 0.4vw, 1.15rem);
  line-height: 1.6;
  color: var(--ink-soft);
  margin: clamp(1.5rem, 4.5vw, 2.1rem) 0 0;
}
.hero-lead em { font-style: normal; color: var(--rose-deep); }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
  margin-top: clamp(1.3rem, 4vw, 1.9rem);
}

.hero-scroll {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  margin-top: clamp(1.2rem, 3.5vw, 1.7rem);
  color: var(--rose-deep);
}
.hero-mouse {
  position: relative;
  width: 22px; height: 34px;
  border: 1px solid currentColor;
  border-radius: 100px;
}
.hero-mouse::after {
  content: "";
  position: absolute;
  left: 50%; top: 7px;
  width: 3px; height: 7px;
  margin-left: -1.5px;
  border-radius: 4px;
  background: currentColor;
  animation: scroll 1.8s var(--ease) infinite;
}
.hero-scroll .ico-arrow { width: 11px; height: auto; }

.hero-loc {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin: clamp(1.2rem, 3.5vw, 1.7rem) 0 0;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  color: var(--ink);
}
.hero-loc .ico-pin { width: 15px; height: 15px; color: var(--cocoa); flex: none; }
/* λεπτή γραμμή κλεισίματος κάτω από την τοποθεσία */
.hero-inner::after {
  content: "";
  width: 64px;
  height: 1px;
  background: var(--rose);
  margin-top: clamp(0.9rem, 2.5vw, 1.4rem);
}

@keyframes scroll {
  0% { opacity: 0; transform: translateY(0); }
  35% { opacity: 1; }
  70%, 100% { opacity: 0; transform: translateY(14px); }
}

/* ---------- Hero: σύνθεση για μεγάλες οθόνες ----------
   Ίδια στοιχεία, άλλη διάταξη: το κυρίως μήνυμα κεντράρεται στο οπτικό
   κέντρο και οι τρεις πυλώνες κατεβαίνουν σε ζώνη στη βάση του hero,
   ώστε να «πατάει» το layout σε πλατύ καμβά αντί για μια ψηλή στήλη.  */
@media (min-width: 901px) {
  .hero {
    padding-block: calc(84px + clamp(1rem, 3svh, 2.25rem)) clamp(1.75rem, 4svh, 3rem);
  }
  .hero-inner {
    max-width: var(--container);
    width: 100%;
    display: grid;
    justify-items: center;
    grid-template-areas:
      "logo"
      "title"
      "tag"
      "lead"
      "cta"
      "loc"
      "pillars";
  }
  .hero-logo    { grid-area: logo; width: min(19svh, 190px); }
  .hero-title   { grid-area: title; font-size: clamp(3rem, 1rem + 3.2vw, 4rem); }
  .hero-tagline { grid-area: tag; }
  .hero-lead    { grid-area: lead; max-width: 56ch; margin-top: clamp(1.5rem, 3svh, 2.2rem); }
  .hero-actions { grid-area: cta; width: auto; margin-top: clamp(1.4rem, 3svh, 2.1rem); }
  .hero-loc     { grid-area: loc; margin-top: clamp(1.2rem, 2.5svh, 1.8rem); }

  /* Η ζώνη πυλώνων: λεπτή γραμμή από πάνω, τρεις ισομερείς στήλες */
  .hero-pillars {
    grid-area: pillars;
    width: 100%;
    max-width: 940px;
    margin-top: clamp(2rem, 5svh, 3.5rem);
    padding-top: clamp(1.5rem, 3.5svh, 2.4rem);
    border-top: 1px solid var(--line);
  }
  .hero-pillars span { font-size: 0.74rem; letter-spacing: 0.2em; }

  /* Στο desktop το scroll cue περισσεύει — η ζώνη πυλώνων κρατά τη βάση */
  .hero-scroll { display: none; }
  .hero-inner::after { display: none; }
}

/* ============================================================
   Marquee strip
   ============================================================ */
/* Ίδιο χρώμα με τα κουμπιά «Ραντεβού» (.btn-primary / .btn-nav) */
.strip {
  background: var(--rose-deep);
  color: var(--white);
  overflow: hidden;
  padding-block: 1.05rem;
}
.strip-track {
  display: inline-flex;
  align-items: center;
  gap: 1.6rem;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
}
.strip-track span {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-style: italic;
  letter-spacing: 0.02em;
}
.strip-track .dot { color: var(--blush); font-style: normal; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================================
   About
   ============================================================ */
.about { padding-block: var(--section-y); }
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: center;
}
.about-media { position: relative; }
.about-media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 985 / 1060;
  object-fit: cover;
  object-position: 50% 20%;
  border-radius: var(--radius);
  background: var(--beige);
  box-shadow: 0 40px 80px -40px rgba(74, 61, 51, 0.45);
}
.about-media::after {
  content: "";
  position: absolute;
  inset: -14px;
  border: 1px solid var(--rose);
  border-radius: calc(var(--radius) + 6px);
  z-index: -1;
  pointer-events: none;
}
.about-role {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--rose);
  margin: -0.6rem 0 1.6rem;
}
.about-copy p:not(.eyebrow):not(.about-role) { color: var(--ink-soft); margin: 0 0 1.1rem; }

/* ============================================================
   Services
   ============================================================ */
.services {
  padding-block: var(--section-y);
  background:
    radial-gradient(90% 60% at 100% 0%, var(--sand) 0%, transparent 60%),
    var(--white);
  border-block: 1px solid var(--line);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.1rem;
}
.svc {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: clamp(1.8rem, 3vw, 2.4rem);
  transition: background .4s var(--ease), transform .4s var(--ease),
              border-color .4s var(--ease), box-shadow .4s var(--ease);
  position: relative;
  overflow: hidden;
}
.svc:hover {
  background: var(--sand);
  border-color: var(--rose);
  transform: translateY(-4px);
  box-shadow: 0 26px 50px -30px rgba(74, 61, 51, 0.4);
}
.svc-num {
  font-family: var(--serif);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--rose);
  letter-spacing: 0.1em;
}
.svc h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.55rem;
  color: var(--cocoa);
  margin: 0.5rem 0 0.7rem;
}
.svc p { margin: 0; color: var(--ink-soft); font-size: 0.96rem; }
.svc::before {
  content: "";
  position: absolute;
  left: 0; top: 0;
  width: 3px; height: 0;
  background: var(--rose);
  transition: height .45s var(--ease);
}
.svc:hover::before { height: 100%; }

/* ============================================================
   Philosophy
   ============================================================ */
.philosophy {
  padding-block: var(--section-y);
  background:
    radial-gradient(120% 120% at 50% 0%, var(--blush) 0%, transparent 55%),
    var(--sand);
  text-align: center;
}
.philosophy-inner { max-width: 900px; margin-inline: auto; }
.philosophy .eyebrow { justify-content: center; }
.philosophy-mark {
  display: block;
  font-family: var(--serif);
  font-size: clamp(4rem, 8vw, 6.5rem);
  line-height: 0.6;
  color: var(--rose);
  opacity: 0.5;
  margin-bottom: 0.4rem;
}
.philosophy blockquote {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.6rem, 1rem + 2.4vw, 2.9rem);
  line-height: 1.28;
  color: var(--cocoa);
  margin: 0;
}
.philosophy blockquote em { font-style: italic; color: var(--rose); }
.philosophy-cite {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: 2rem;
  font-style: normal;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mocha);
}
.philosophy-cite::before {
  content: "";
  width: 40px; height: 1px;
  background: var(--rose);
}

/* ============================================================
   Contact
   ============================================================ */
.contact { padding-block: var(--section-y); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: start;
}
.contact-note { color: var(--ink-soft); max-width: 46ch; margin: 0 0 2rem; }
.contact-note strong { color: var(--cocoa); font-weight: 500; }

.contact-list { list-style: none; margin: 0 0 2.2rem; padding: 0; }
.contact-list li {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 1rem;
  padding: 1.1rem 0;
  border-top: 1px solid var(--line);
}
.contact-list li:last-child { border-bottom: 1px solid var(--line); }
.contact-label {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mocha);
  font-weight: 500;
  padding-top: 0.2rem;
}
.contact-value { color: var(--ink); }
.contact-value em { color: var(--rose); font-style: italic; }
.contact-value a { border-bottom: 1px solid var(--rose); transition: color .3s var(--ease); }
.contact-value a:hover { color: var(--rose); }
.contact-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; }

.contact-map {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 40px 80px -44px rgba(74, 61, 51, 0.45);
  min-height: 420px;
  height: 100%;
}
.contact-map iframe { width: 100%; height: 100%; min-height: 420px; border: 0; filter: grayscale(0.25) sepia(0.12); }

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  background: var(--cocoa);
  color: var(--sand);
  padding-top: clamp(3rem, 6vw, 4.5rem);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(233, 215, 198, 0.18);
}
.footer-logo {
  height: 74px;
  width: auto;
  background: var(--cream);
  border-radius: 12px;
  padding: 8px 12px;
  margin-bottom: 1rem;
}
.footer-tag { font-family: var(--serif); font-style: italic; font-size: 1.2rem; color: var(--blush); margin: 0; }
.footer-nav, .footer-contact { display: flex; flex-direction: column; gap: 0.8rem; padding-top: 0.5rem; }
.footer-nav a, .footer-contact a {
  color: var(--sand);
  opacity: 0.82;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  transition: opacity .3s var(--ease), color .3s var(--ease);
  width: fit-content;
}
.footer-nav a:hover, .footer-contact a:hover { opacity: 1; color: var(--blush); }

.footer-bottom {
  max-width: var(--container);
  margin-inline: auto;
  padding: 1.6rem var(--gap) 2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
}
.footer-copy { font-size: 0.78rem; opacity: 0.65; margin: 0; letter-spacing: 0.02em; }

.cb-credit {
  margin: 0;
  font-size: 0.8rem;
  opacity: 0.7;
}
.cb-credit a { color: inherit; text-decoration: underline; text-underline-offset: 3px; }
.cb-credit a:hover { opacity: 1; color: var(--blush); }

/* Διακριτική γραμμή περιοχών — κρατά τις τοπικές σελίδες ανιχνεύσιμες
   χωρίς να τις προβάλλει στην πλοήγηση. */
.footer-areas {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gap) 1.6rem;
  font-size: 0.72rem;
  line-height: 1.9;
  letter-spacing: 0.02em;
  opacity: 0.45;
}
.footer-areas a { transition: opacity .3s var(--ease), color .3s var(--ease); }
.footer-areas a:hover { color: var(--blush); }
.footer-areas span { padding-inline: 0.3rem; }

/* ============================================================
   Reveal animation
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
  transition-delay: var(--d, 0ms);
}
.reveal.in { opacity: 1; transform: none; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 900px) {
  .nav-toggle { display: flex; z-index: 120; position: relative; }
  /* Στην αρχική, το σήμα «ζει» μέσα στο hero — η μπάρα μένει καθαρή μέχρι το scroll */
  .site-header--home:not(.scrolled) .brand { opacity: 0; pointer-events: none; }
  .site-header--home .brand { transition: opacity .35s var(--ease); }
  .nav-open .site-header--home .brand { opacity: 0; }

  /* ΣΗΜΑΝΤΙΚΟ: το backdrop-filter κάνει τη μπάρα containing block για
     position:fixed απογόνους — το πλαϊνό μενού «παγιδευόταν» στα 84px
     ύψος της. Στο κινητό χρησιμοποιούμε αδιαφανές φόντο αντί για blur. */
  .site-header.scrolled {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(246, 239, 231, 0.97);
  }

  .nav-links {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(84vw, 340px);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0.15rem;
    /* καθαρίζει τη μπάρα ώστε το πρώτο link να μην κρύβεται από το X */
    padding: calc(84px + 0.75rem) 1.9rem 2.5rem;
    background: var(--cream);
    box-shadow: -20px 0 60px -30px rgba(74, 61, 51, 0.6);
    transform: translateX(100%);
    transition: transform .45s var(--ease);
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }
  .nav-open .nav-links { transform: translateX(0); }
  .nav-links > li { flex: none; }
  .nav-links a { font-size: 1rem; display: block; padding-block: 0.6rem; }
  .nav-links a:not(.btn)::after { display: none; }
  .btn-nav { text-align: center; margin-top: 0.9rem; }
  .nav-open .nav-toggle span:nth-child(1) { transform: translateY(8.5px) rotate(45deg); }
  .nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
  .nav-open .nav-toggle span:nth-child(3) { transform: translateY(-8.5px) rotate(-45deg); }

  /* Κλείδωμα της σελίδας από πίσω όσο το μενού είναι ανοιχτό */
  body.nav-open { overflow: hidden; }

  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-media { max-width: 460px; margin-inline: auto; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  .footer-inner { grid-template-columns: 1fr; gap: 1.8rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .contact-list li { grid-template-columns: 1fr; gap: 0.2rem; }
  .contact-label { padding-top: 0; }
  .contact-actions .btn { flex: 1 1 auto; }
  /* Στο κινητό τα δύο CTA γίνονται πλήρους πλάτους, στοιβαγμένα */
  .hero-actions { flex-direction: column; gap: 0.7rem; }
  .hero-actions .btn { width: 100%; padding-block: 1.05rem; }
}

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

/* ============================================================
   MULTI-PAGE COMPONENTS
   ============================================================ */

/* Dev aid: #showall flattens the full-height hero for full-page capture */
.showall .hero { min-height: auto; }

/* Skip link */
.skip-link {
  position: absolute;
  left: -999px; top: 0;
  z-index: 200;
  background: var(--cocoa);
  color: var(--cream);
  padding: 0.7rem 1.2rem;
  border-radius: 0 0 10px 0;
}
.skip-link:focus { left: 0; }

/* Nav dropdown (services) */
.has-sub { position: relative; }
.has-sub > .sub {
  list-style: none;
  margin: 0; padding: 0.6rem;
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 260px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 24px 50px -24px rgba(74, 61, 51, 0.5);
  opacity: 0;
  visibility: hidden;
  /* Κλείνει με μικρή καθυστέρηση χάριτος, ώστε μια βιαστική διαγώνια
     κίνηση του ποντικιού να μην το εξαφανίζει. */
  transition: opacity .28s var(--ease) .22s, transform .28s var(--ease) .22s,
              visibility 0s linear .5s;
  z-index: 50;
}
/* Αόρατη «γέφυρα» που καλύπτει το κενό ανάμεσα στο «Υπηρεσίες» και το
   πάνελ — χωρίς αυτήν το hover χάνεται στη διαδρομή και το μενού κλείνει. */
.has-sub > .sub::before {
  content: "";
  position: absolute;
  left: 0; right: 0;
  top: -14px;
  height: 14px;
}
.has-sub:hover > .sub,
.has-sub:focus-within > .sub {
  opacity: 1; visibility: visible;
  transform: translateX(-50%) translateY(0);
  transition: opacity .28s var(--ease), transform .28s var(--ease), visibility 0s;
}
.has-sub > .sub li { display: block; }
.has-sub > .sub a {
  display: block;
  padding: 0.55rem 0.9rem;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: none;
  border-radius: 9px;
  color: var(--ink);
}
.has-sub > .sub a::after { display: none; }
.has-sub > .sub a:hover { background: var(--sand); color: var(--cocoa); }

/* Breadcrumbs */
.crumbs {
  padding-top: calc(84px + 1.4rem);
  padding-bottom: 0.2rem;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
}
.crumbs a { color: var(--mocha); transition: color .3s var(--ease); }
.crumbs a:hover { color: var(--rose); }
.crumbs .sep { margin: 0 0.5rem; color: var(--taupe); opacity: 0.6; }
.crumbs span[aria-current] { color: var(--cocoa); }

/* Page hero (inner pages) */
.page-hero {
  padding-block: clamp(2.4rem, 5vw, 4rem) clamp(2rem, 4vw, 3rem);
  background:
    radial-gradient(90% 120% at 100% 0%, var(--blush) 0%, transparent 55%),
    linear-gradient(180deg, var(--sand), var(--cream));
}
.page-hero .container { max-width: 900px; }
.page-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.2rem, 1.4rem + 3.4vw, 4rem);
  line-height: 1.05;
  color: var(--cocoa);
  margin: 0 0 1.2rem;
}
.page-lead {
  font-size: clamp(1.05rem, 1rem + 0.4vw, 1.25rem);
  color: var(--ink-soft);
  max-width: 60ch;
  margin: 0 0 1.6rem;
}
.page-hero--svc { text-align: left; }
.svc-hero-icon {
  display: inline-block;
  font-size: 2.4rem;
  color: var(--rose);
  margin-bottom: 0.6rem;
}

/* Service cards as links (extend existing .svc) */
a.svc { display: block; color: inherit; }
.svc-icon {
  display: block;
  font-size: 1.7rem;
  color: var(--rose);
  margin-bottom: 0.4rem;
}
.svc-more {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mocha);
  transition: transform .3s var(--ease), color .3s var(--ease);
}
a.svc:hover .svc-more { color: var(--rose); transform: translateX(4px); }
.services--hub { padding-top: clamp(2rem, 4vw, 3rem); background: var(--cream); border: 0; }

/* Service detail layout */
.svc-detail { padding-block: var(--section-y); }
.svc-detail-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.svc-body h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.5rem, 1.1rem + 1.4vw, 2.1rem);
  color: var(--cocoa);
  margin: 2.4rem 0 1rem;
}
.svc-body > p { color: var(--ink-soft); margin: 0 0 1.1rem; }
.svc-body h2:first-child { margin-top: 0; }

.ticks { list-style: none; margin: 0 0 1rem; padding: 0; }
.ticks li {
  position: relative;
  padding: 0.55rem 0 0.55rem 2rem;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
}
.ticks li::before {
  content: "✓";
  position: absolute;
  left: 0; top: 0.5rem;
  color: var(--rose);
  font-weight: 600;
}
.ticks.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 0 1.6rem; }
.ticks a { border-bottom: 1px solid transparent; transition: color .3s var(--ease); }
.ticks a:hover { color: var(--rose); }

/* FAQ accordion */
.faq { display: flex; flex-direction: column; gap: 0.7rem; }
.faq-item {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  overflow: hidden;
}
.faq-item summary {
  cursor: pointer;
  padding: 1.1rem 1.3rem;
  font-weight: 500;
  color: var(--cocoa);
  list-style: none;
  position: relative;
  padding-right: 3rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 1.2rem; top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  color: var(--rose);
  transition: transform .3s var(--ease);
}
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-item p { margin: 0; padding: 0 1.3rem 1.2rem; color: var(--ink-soft); }

/* Aside cards */
.svc-aside { position: sticky; top: 100px; display: flex; flex-direction: column; gap: 1.2rem; }
.aside-card {
  background: var(--sand);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem;
}
.aside-card h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.35rem;
  color: var(--cocoa);
  margin: 0 0 0.8rem;
}
.aside-card p { color: var(--ink-soft); font-size: 0.95rem; margin: 0 0 1rem; }
.aside-meta { font-size: 0.9rem !important; }
.btn-block { display: flex; width: 100%; margin-bottom: 0.7rem; }
.aside-links { display: flex; flex-direction: column; gap: 0.6rem; }
.aside-links a {
  font-size: 0.92rem;
  color: var(--ink);
  transition: color .3s var(--ease), transform .3s var(--ease);
}
.aside-links a:hover { color: var(--rose); transform: translateX(3px); }

/* CTA band */
.cta-band {
  background:
    radial-gradient(80% 140% at 0% 0%, var(--blush) 0%, transparent 50%),
    var(--sand);
  border-top: 1px solid var(--line);
}
.cta-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding-block: clamp(3rem, 6vw, 4.5rem);
}
.cta-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.7rem, 1.2rem + 2vw, 2.6rem);
  color: var(--cocoa);
  margin: 0.3rem 0 0.4rem;
  line-height: 1.1;
}
.cta-sub { color: var(--ink-soft); margin: 0; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 0.8rem; }

/* Credentials */
.creds { padding-bottom: var(--section-y); }
.creds-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.cred { background: var(--cream); padding: 1.8rem; }
.cred-k {
  display: block;
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--rose);
  margin-bottom: 0.4rem;
}
.cred-v { color: var(--ink-soft); font-size: 0.95rem; }

/* Blog */
.posts { padding-block: clamp(2rem, 4vw, 3rem) var(--section-y); }
.posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.6rem;
}
.post-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.8rem;
  color: inherit;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.post-card:hover { transform: translateY(-4px); box-shadow: 0 30px 60px -34px rgba(74, 61, 51, 0.4); }
.post-cat {
  align-self: flex-start;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mocha);
  background: var(--sand);
  padding: 0.35rem 0.8rem;
  border-radius: 100px;
  margin-bottom: 1rem;
}
.post-card h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.5rem;
  color: var(--cocoa);
  margin: 0 0 0.6rem;
  line-height: 1.15;
}
.post-card p { color: var(--ink-soft); font-size: 0.95rem; margin: 0 0 1.2rem; flex: 1; }
.post-card time { font-size: 0.82rem; color: var(--taupe); }

/* Article */
.article-head {
  padding-block: clamp(2rem, 4vw, 3.4rem);
  background: linear-gradient(180deg, var(--sand), var(--cream));
}
.article-head-inner { max-width: 820px; }
.article-meta { color: var(--taupe); font-size: 0.9rem; margin: 0.6rem 0 0; }
.article-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: clamp(2rem, 5vw, 4rem);
  padding-block: var(--section-y);
  align-items: start;
}
.article-copy { max-width: 720px; }
.article-copy .lead-p { font-size: 1.2rem; color: var(--ink); }
.article-copy h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.5rem, 1.1rem + 1.2vw, 2rem);
  color: var(--cocoa);
  margin: 2.2rem 0 0.9rem;
}
.article-copy p { color: var(--ink-soft); margin: 0 0 1.1rem; }
.article-cta {
  margin: 2rem 0;
  padding: 1.4rem 1.6rem;
  background: var(--sand);
  border-left: 3px solid var(--rose);
  border-radius: 0 12px 12px 0;
}
.article-cta p { margin: 0; color: var(--ink); }
.article-cta a { color: var(--cocoa); border-bottom: 1px solid var(--rose); }
.article-disclaimer {
  margin-top: 2.4rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line);
  font-size: 0.85rem;
  color: var(--taupe);
  font-style: italic;
}
.article-aside { position: sticky; top: 100px; }

/* ============================================================
   Footer overrides (4-column)
   ============================================================ */
.footer-inner { grid-template-columns: 1.5fr 1fr 1fr 1fr; }
.footer-col h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.15rem;
  color: var(--blush);
  margin: 0 0 1rem;
}
.footer-links { display: flex; flex-direction: column; gap: 0.55rem; }
.footer-links a {
  color: var(--sand);
  opacity: 0.8;
  font-size: 0.88rem;
  letter-spacing: 0.02em;
  width: fit-content;
  transition: opacity .3s var(--ease), color .3s var(--ease);
}
.footer-links a:hover { opacity: 1; color: var(--blush); }
.footer-addr { font-size: 0.88rem; opacity: 0.8; margin: 0.8rem 0; line-height: 1.6; }
.footer-hours { font-size: 0.84rem; opacity: 0.75; margin: 1rem 0 0; }
.footer-social { display: flex; gap: 1rem; margin-top: 0.4rem; }
.footer-social a {
  font-size: 0.82rem;
  color: var(--sand);
  opacity: 0.8;
  border-bottom: 1px solid rgba(233, 215, 198, 0.3);
  transition: opacity .3s var(--ease), color .3s var(--ease);
}
.footer-social a:hover { opacity: 1; color: var(--blush); }

@media (max-width: 980px) {
  .svc-detail-grid { grid-template-columns: 1fr; }
  .svc-aside { position: static; flex-direction: row; flex-wrap: wrap; }
  .svc-aside .aside-card { flex: 1 1 260px; }
  .article-body { grid-template-columns: 1fr; }
  .article-aside { position: static; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  /* Mobile: show submenu inline, no hover dropdown */
  .has-sub > .sub {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    border: 0;
    background: transparent;
    min-width: 0;
    padding: 0.4rem 0 0 0.8rem;
  }
  .has-sub > .sub a { padding: 0.45rem 0; font-size: 0.92rem; color: var(--ink-soft); }
  .has-sub > .sub::before { display: none; }
}

@media (max-width: 620px) {
  .ticks.two-col { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; align-items: flex-start; }
  .footer-inner { grid-template-columns: 1fr; }
}
