:root {
  --bg: #f7fbfa;
  --panel: #ffffff;
  --ink: #17322f;
  --muted: #64756f;
  --brand: #22b99a;
  --brand-dark: #0f7f70;
  --soft: #e8f7f3;
  --ring: rgba(34, 185, 154, .28);
  --shadow: 0 24px 80px rgba(23, 50, 47, .12);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Noto Sans Greek", Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.7;
}
a { color: inherit; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .85rem clamp(1rem, 4vw, 3.5rem);
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(23, 50, 47, .08);
}
.brand { display: inline-flex; align-items: center; gap: .7rem; text-decoration: none; font-weight: 800; font-size: 1.1rem; letter-spacing: -.03em; }
.brand span span { color: var(--brand-dark); }
.brand-mark { display: grid; place-items: center; width: 2.35rem; height: 2.35rem; color: white; background: linear-gradient(135deg, var(--brand), var(--brand-dark)); border-radius: 50%; box-shadow: 0 10px 26px var(--ring); }
.site-nav { display: flex; align-items: center; gap: .25rem; }
.site-nav a { padding: .55rem .8rem; border-radius: 999px; text-decoration: none; font-size: .94rem; font-weight: 700; color: var(--muted); }
.site-nav a:hover { color: var(--brand-dark); background: var(--soft); }
.nav-toggle { display: none; border: 0; border-radius: .75rem; padding: .45rem .65rem; background: var(--soft); color: var(--ink); font-size: 1.4rem; }
.hero {
  min-height: 82vh;
  display: grid;
  align-items: center;
  padding: clamp(5rem, 8vw, 8rem) clamp(1rem, 6vw, 5rem);
  background: linear-gradient(90deg, rgba(12, 56, 51, .82), rgba(12, 56, 51, .44)), url("images/therapy.jpg") center/cover no-repeat;
  color: white;
}
.hero-content { max-width: 760px; }
.eyebrow { margin: 0 0 .75rem; color: var(--brand-dark); text-transform: uppercase; letter-spacing: .12em; font-size: .78rem; font-weight: 800; }
.hero .eyebrow { color: #bff8e9; }
h1, h2, h3 { line-height: 1.12; margin: 0 0 1rem; letter-spacing: -.04em; }
h1 { font-size: clamp(2.6rem, 8vw, 5.9rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: 1.25rem; }
.hero p:not(.eyebrow) { max-width: 680px; font-size: clamp(1.05rem, 2vw, 1.35rem); color: rgba(255,255,255,.9); }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2rem; }
.button { display: inline-flex; align-items: center; justify-content: center; padding: .9rem 1.15rem; border-radius: 999px; font-weight: 800; text-decoration: none; border: 1px solid transparent; }
.button.primary { background: var(--brand); color: white; box-shadow: 0 18px 40px rgba(0,0,0,.18); }
.button.secondary { color: white; border-color: rgba(255,255,255,.5); background: rgba(255,255,255,.08); }
.section { width: min(1120px, calc(100% - 2rem)); margin: 0 auto; padding: clamp(4rem, 8vw, 6.5rem) 0; }
.split, .bio-section { display: grid; grid-template-columns: 1fr .9fr; gap: clamp(2rem, 6vw, 5rem); align-items: center; }
.card { background: var(--panel); border: 1px solid rgba(23, 50, 47, .08); border-radius: 1.5rem; padding: clamp(1.25rem, 3vw, 2rem); box-shadow: var(--shadow); }
.highlight-card { background: linear-gradient(180deg, #ffffff, var(--soft)); }
.check-list { list-style: none; padding: 0; margin: 1.2rem 0 0; }
.check-list li { position: relative; padding-left: 1.7rem; margin: .55rem 0; }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--brand-dark); font-weight: 900; }
.image-band { min-height: 42vh; background: linear-gradient(rgba(255,255,255,.05), rgba(255,255,255,.05)), url("images/therapy1.jpg") center/cover fixed no-repeat; }
.two-cards { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
.portrait-panel { min-height: 560px; border-radius: 2rem; background: url("images/therapy3.jpg") center/cover no-repeat; box-shadow: var(--shadow); }
.links-section { text-align: center; }
.logo-grid { display: grid; grid-template-columns: repeat(4, minmax(120px, 1fr)); gap: 1rem; margin-top: 2rem; }
.logo-grid a { min-height: 130px; display: grid; place-items: center; padding: 1rem; background: white; border: 1px solid rgba(23, 50, 47, .08); border-radius: 1.25rem; box-shadow: 0 18px 50px rgba(23,50,47,.07); transition: transform .2s ease, box-shadow .2s ease; }
.logo-grid a:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.logo-grid img { max-width: 150px; max-height: 86px; object-fit: contain; }
.contact-section { padding: 4rem 0; background: linear-gradient(135deg, var(--brand-dark), var(--brand)); }
.contact-card { background: white; border-radius: 2rem; padding: clamp(2rem, 5vw, 4rem); }
.contact-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
.contact-grid div { padding: 1rem; background: var(--soft); border-radius: 1rem; }
.contact-grid span { display: block; color: var(--muted); font-size: .85rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.contact-grid a { color: var(--brand-dark); font-weight: 800; text-decoration: none; }
.contact-grid p { margin: 0; }
.site-footer { display: flex; justify-content: space-between; gap: 1rem; padding: 2rem clamp(1rem, 4vw, 3.5rem); color: var(--muted); background: white; }
.site-footer a { color: var(--brand-dark); font-weight: 800; text-decoration: none; }
.legal-main { min-height: 80vh; padding-top: 2rem; }
.legal-card { background: white; border-radius: 2rem; padding: clamp(2rem, 5vw, 4rem); box-shadow: var(--shadow); }
.legal-card hr { border: 0; border-top: 1px solid rgba(23,50,47,.12); margin: 2rem 0; }
@media (max-width: 860px) {
  .nav-toggle { display: inline-flex; }
  .site-nav { position: absolute; inset: 100% 1rem auto 1rem; display: none; flex-direction: column; align-items: stretch; padding: .8rem; background: white; border-radius: 1rem; box-shadow: var(--shadow); }
  .site-nav.open { display: flex; }
  .site-nav a { padding: .8rem 1rem; }
  .split, .bio-section, .two-cards, .contact-grid { grid-template-columns: 1fr; }
  .hero { min-height: 72vh; background-position: center; }
  .image-band { background-attachment: scroll; }
  .portrait-panel { min-height: 320px; }
  .logo-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .site-footer { flex-direction: column; }
}
@media (max-width: 520px) {
  .brand { font-size: 1rem; }
  .logo-grid { grid-template-columns: 1fr; }
  .hero-actions .button { width: 100%; }
}
