/* ==========================================================================
   Σ.Ο.Φ.Ε. — main.css
   Brand: navy κυρίαρχο, χρυσό με φειδώ, λευκός χώρος. Inter (self-hosted).
   ========================================================================== */

/* ---------- Fonts (self-hosted Inter — greek + latin) ---------- */
/* Οι γραμματοσειρές φορτώνονται τοπικά για συμμόρφωση GDPR (όχι Google CDN). */

@font-face { font-family:"Inter"; font-style:normal; font-weight:400; font-display:swap;
  src:url("../fonts/inter-greek-400.woff2") format("woff2");
  unicode-range:U+0370-0377,U+037A-037F,U+0384-038A,U+038C,U+038E-03A1,U+03A3-03FF,U+1F00-1FFF; }
@font-face { font-family:"Inter"; font-style:normal; font-weight:400; font-display:swap;
  src:url("../fonts/inter-latin-400.woff2") format("woff2");
  unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+2000-206F,U+2074,U+20AC,U+2122; }

@font-face { font-family:"Inter"; font-style:normal; font-weight:500; font-display:swap;
  src:url("../fonts/inter-greek-500.woff2") format("woff2");
  unicode-range:U+0370-0377,U+037A-037F,U+0384-038A,U+038C,U+038E-03A1,U+03A3-03FF,U+1F00-1FFF; }
@font-face { font-family:"Inter"; font-style:normal; font-weight:500; font-display:swap;
  src:url("../fonts/inter-latin-500.woff2") format("woff2");
  unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+2000-206F,U+2074,U+20AC,U+2122; }

@font-face { font-family:"Inter"; font-style:normal; font-weight:600; font-display:swap;
  src:url("../fonts/inter-greek-600.woff2") format("woff2");
  unicode-range:U+0370-0377,U+037A-037F,U+0384-038A,U+038C,U+038E-03A1,U+03A3-03FF,U+1F00-1FFF; }
@font-face { font-family:"Inter"; font-style:normal; font-weight:600; font-display:swap;
  src:url("../fonts/inter-latin-600.woff2") format("woff2");
  unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+2000-206F,U+2074,U+20AC,U+2122; }

@font-face { font-family:"Inter"; font-style:normal; font-weight:700; font-display:swap;
  src:url("../fonts/inter-greek-700.woff2") format("woff2");
  unicode-range:U+0370-0377,U+037A-037F,U+0384-038A,U+038C,U+038E-03A1,U+03A3-03FF,U+1F00-1FFF; }
@font-face { font-family:"Inter"; font-style:normal; font-weight:700; font-display:swap;
  src:url("../fonts/inter-latin-700.woff2") format("woff2");
  unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+2000-206F,U+2074,U+20AC,U+2122; }

@font-face { font-family:"Inter"; font-style:normal; font-weight:800; font-display:swap;
  src:url("../fonts/inter-greek-800.woff2") format("woff2");
  unicode-range:U+0370-0377,U+037A-037F,U+0384-038A,U+038C,U+038E-03A1,U+03A3-03FF,U+1F00-1FFF; }
@font-face { font-family:"Inter"; font-style:normal; font-weight:800; font-display:swap;
  src:url("../fonts/inter-latin-800.woff2") format("woff2");
  unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+2000-206F,U+2074,U+20AC,U+2122; }

/* ---------- Design tokens ---------- */
:root {
  --sofe-navy:     #0A2E5C;
  --sofe-navy-800: #07223F;
  --sofe-gold:     #C8A24A;
  --sofe-gold-700: #AE8A38;
  --sofe-white:    #FFFFFF;
  --sofe-ink:      #0E1726;
  --sofe-slate:    #5B6B7B;
  --sofe-mist:     #F4F6F8;
  --sofe-line:     #E2E8EF;

  --font-sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --container: 1140px;
  --gap: 1.5rem;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow-sm: 0 1px 2px rgba(10,46,92,.06), 0 1px 3px rgba(10,46,92,.08);
  --shadow-md: 0 4px 12px rgba(10,46,92,.08), 0 2px 4px rgba(10,46,92,.06);
  --shadow-lg: 0 18px 40px rgba(10,46,92,.12);
  --transition: .2s ease;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--sofe-ink);
  background: var(--sofe-white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: var(--sofe-navy); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--sofe-gold-700); }
ul, ol { padding-left: 1.25rem; }

h1, h2, h3, h4 { font-weight: 800; line-height: 1.15; color: var(--sofe-navy); margin: 0 0 .5em; letter-spacing: -.01em; }
h1 { font-size: clamp(2rem, 4.5vw, 3.25rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.25rem); }
h3 { font-size: 1.3rem; }
h4 { font-size: 1.1rem; font-weight: 700; }
p { margin: 0 0 1rem; }
strong { font-weight: 700; }
hr { border: 0; border-top: 1px solid var(--sofe-line); margin: 2rem 0; }

/* ---------- Accessibility ---------- */
:focus-visible { outline: 3px solid var(--sofe-gold); outline-offset: 2px; border-radius: 4px; }
.screen-reader-text {
  position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 1000;
  background: var(--sofe-navy); color: #fff; padding: .75rem 1.25rem; border-radius: 0 0 var(--radius-sm) 0;
}
.skip-link:focus { left: 0; color: #fff; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: clamp(1rem, 4vw, 2rem); }
.section { padding-block: clamp(3rem, 7vw, 5.5rem); }
.section--mist { background: var(--sofe-mist); }
.section--navy { background: var(--sofe-navy); color: #fff; }
.section--navy h1, .section--navy h2, .section--navy h3 { color: #fff; }
.stack > * + * { margin-top: 1rem; }
.grid { display: grid; gap: var(--gap); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.prose { max-width: 72ch; }
.prose h2 { margin-top: 2rem; }
.prose ul li { margin-bottom: .4rem; }

/* ---------- Section title ---------- */
.section-title { margin-bottom: 2.5rem; }
.section-title__eyebrow {
  display: inline-block; font-size: .8rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--sofe-gold-700); margin-bottom: .5rem;
}
.section-title__heading { margin: 0; }
.section-title__lead { color: var(--sofe-slate); font-size: 1.1rem; margin-top: .75rem; max-width: 60ch; }
.section-title--center { text-align: center; }
.section-title--center .section-title__lead { margin-inline: auto; }
.gold-rule { width: 56px; height: 4px; background: var(--sofe-gold); border-radius: 2px; margin-top: 1rem; }
.section-title--center .gold-rule { margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-weight: 700; font-size: 1rem; line-height: 1; text-align: center;
  padding: .85rem 1.5rem; border-radius: var(--radius-sm); border: 2px solid transparent;
  cursor: pointer; transition: all var(--transition); white-space: nowrap;
}
.btn--primary { background: var(--sofe-navy); color: #fff; border-color: var(--sofe-navy); }
.btn--primary:hover { background: var(--sofe-navy-800); border-color: var(--sofe-navy-800); color: #fff; }
.btn--gold { background: var(--sofe-gold); color: var(--sofe-navy); border-color: var(--sofe-gold); }
.btn--gold:hover { background: var(--sofe-gold-700); border-color: var(--sofe-gold-700); color: var(--sofe-navy); }
.btn--outline { background: transparent; color: var(--sofe-navy); border-color: var(--sofe-line); }
.btn--outline:hover { border-color: var(--sofe-navy); color: var(--sofe-navy); background: var(--sofe-mist); }
.btn--outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.5); }
.btn--outline-light:hover { border-color: #fff; background: rgba(255,255,255,.1); color: #fff; }
.btn--lg { padding: 1rem 1.85rem; font-size: 1.05rem; }
.btn--sm { padding: .55rem 1rem; font-size: .9rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.95);
  backdrop-filter: saturate(180%) blur(8px); border-bottom: 1px solid var(--sofe-line);
}
.site-header__inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; min-height: 104px; }
.site-logo { display: inline-flex; align-items: center; gap: .65rem; }
.site-logo img,
.custom-logo-link { display: inline-flex; align-items: center; line-height: 0; }
.site-logo img,
.custom-logo { max-height: 90px; width: auto; height: auto; }
.site-logo__text { display: flex; flex-direction: column; line-height: 1.05; }
.site-logo__text strong { font-size: 1.4rem; font-weight: 800; color: var(--sofe-navy); letter-spacing: .02em; }
.site-logo__text span { font-size: .62rem; font-weight: 600; letter-spacing: .04em; color: var(--sofe-slate); text-transform: uppercase; }

.primary-nav ul { display: flex; align-items: center; gap: 1.5rem; list-style: none; margin: 0; padding: 0; }
.primary-nav a { font-weight: 600; font-size: .98rem; color: var(--sofe-ink); padding: .4rem 0; position: relative; }
.primary-nav a:hover, .primary-nav .current-menu-item > a { color: var(--sofe-navy); }
.primary-nav .current-menu-item > a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px; background: var(--sofe-gold);
}
.header-actions { display: flex; align-items: center; gap: 1rem; }

.nav-toggle {
  display: none; background: transparent; border: 0; cursor: pointer; padding: .5rem;
  color: var(--sofe-navy);
}
.nav-toggle svg { width: 28px; height: 28px; }

/* ---------- Hero ---------- */
.hero {
  position: relative; background: linear-gradient(160deg, var(--sofe-navy) 0%, var(--sofe-navy-800) 100%);
  color: #fff; overflow: hidden;
}
.hero::after {
  content: ""; position: absolute; right: -10%; top: -20%; width: 540px; height: 540px;
  background: radial-gradient(circle, rgba(200,162,74,.18) 0%, transparent 70%); pointer-events: none;
}
.hero__inner { position: relative; padding-block: clamp(3.5rem, 9vw, 7rem); max-width: 760px; }
.hero h1 { color: #fff; margin-bottom: 1rem; }
.hero__lead { font-size: clamp(1.1rem, 2vw, 1.3rem); color: rgba(255,255,255,.86); margin-bottom: 2rem; max-width: 60ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; }
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: .5rem; font-size: .82rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; color: var(--sofe-gold);
  border: 1px solid rgba(200,162,74,.4); border-radius: 999px; padding: .35rem .9rem; margin-bottom: 1.5rem;
}

/* ---------- Cards ---------- */
.card {
  background: #fff; border: 1px solid var(--sofe-line); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column; transition: box-shadow var(--transition), transform var(--transition);
  height: 100%;
}
.card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.card__media { aspect-ratio: 16/9; background: var(--sofe-mist); overflow: hidden; }
.card__media img { width: 100%; height: 100%; object-fit: cover; }
.card__cover-svg { display: block; width: 100%; height: 100%; }
.card:hover .card__cover-svg { transform: scale(1.03); transition: transform var(--transition); }
.card__body { padding: 1.5rem; display: flex; flex-direction: column; gap: .6rem; flex: 1; }
.card__title { font-size: 1.2rem; margin: 0; }
.card__title a { color: var(--sofe-navy); }
.card__meta { font-size: .85rem; color: var(--sofe-slate); display: flex; flex-wrap: wrap; gap: .75rem; align-items: center; }
.card__excerpt { color: var(--sofe-slate); font-size: .98rem; margin: 0; }
.card__footer { margin-top: auto; padding-top: .5rem; }
.card__link { font-weight: 700; color: var(--sofe-navy); display: inline-flex; align-items: center; gap: .35rem; }
.card__link:hover { color: var(--sofe-gold-700); gap: .55rem; }

/* Pillar card (αρχική) */
.pillar { text-align: left; padding: 1.75rem; border-radius: var(--radius); background: #fff; border: 1px solid var(--sofe-line); height: 100%; }
.pillar__icon {
  width: 52px; height: 52px; border-radius: 12px; display: grid; place-items: center;
  background: rgba(10,46,92,.06); color: var(--sofe-navy); margin-bottom: 1rem;
}
.pillar__icon svg { width: 26px; height: 26px; }
.pillar h3 { font-size: 1.15rem; margin-bottom: .35rem; }
.pillar p { color: var(--sofe-slate); font-size: .96rem; margin: 0; }

/* ---------- Badges ---------- */
.badge {
  display: inline-block; font-size: .72rem; font-weight: 700; letter-spacing: .04em;
  text-transform: uppercase; padding: .25rem .6rem; border-radius: 999px;
  background: rgba(10,46,92,.08); color: var(--sofe-navy);
}
.badge--gold { background: rgba(200,162,74,.18); color: var(--sofe-gold-700); }
.badge--online { background: rgba(46,125,90,.14); color: #2E7D5A; }
.badge--past { background: var(--sofe-mist); color: var(--sofe-slate); }

/* ---------- Member card (ΔΣ) ---------- */
.member { text-align: center; background: #fff; border: 1px solid var(--sofe-line); border-radius: var(--radius); padding: 1.75rem 1.25rem; height: 100%; }
.member__photo { width: 120px; height: 120px; border-radius: 50%; object-fit: cover; margin: 0 auto 1rem; background: var(--sofe-mist); }
.member__photo--placeholder { display: grid; place-items: center; color: var(--sofe-slate); }
.member__name { font-size: 1.15rem; margin: 0 0 .15rem; }
.member__role { color: var(--sofe-gold-700); font-weight: 700; font-size: .92rem; margin-bottom: .6rem; }
.member__bio { color: var(--sofe-slate); font-size: .92rem; margin: 0; }

/* ---------- CTA band ---------- */
.cta-band { background: linear-gradient(135deg, var(--sofe-navy) 0%, var(--sofe-navy-800) 100%); color: #fff; border-radius: var(--radius); padding: clamp(2rem, 5vw, 3.5rem); text-align: center; }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.85); max-width: 56ch; margin-inline: auto; margin-bottom: 1.75rem; }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

/* ---------- Page header ---------- */
.page-hero { background: var(--sofe-mist); border-bottom: 1px solid var(--sofe-line); padding-block: clamp(2.5rem, 6vw, 4rem); }
.page-hero h1 { margin: 0; }
.page-hero__lead { color: var(--sofe-slate); font-size: 1.15rem; margin-top: .75rem; max-width: 65ch; }
.breadcrumbs { font-size: .85rem; color: var(--sofe-slate); margin-bottom: 1rem; }
.breadcrumbs a { color: var(--sofe-slate); }
.breadcrumbs a:hover { color: var(--sofe-navy); }
.breadcrumbs span[aria-current] { color: var(--sofe-navy); font-weight: 600; }

/* ---------- Single content ---------- */
.entry-content { max-width: 72ch; }
.entry-content > * + * { margin-top: 1.1rem; }
.entry-content h2 { margin-top: 2rem; }
.entry-content h3 { margin-top: 1.5rem; }
.entry-content img { border-radius: var(--radius-sm); }
.entry-content blockquote { border-left: 4px solid var(--sofe-gold); padding-left: 1.25rem; margin: 1.5rem 0; color: var(--sofe-slate); font-style: italic; }
.entry-content a { text-decoration: underline; text-decoration-color: var(--sofe-gold); text-underline-offset: 3px; }
.entry-featured { border-radius: var(--radius); overflow: hidden; margin-bottom: 2rem; }

/* ---------- Event details box ---------- */
.event-details { background: var(--sofe-mist); border: 1px solid var(--sofe-line); border-radius: var(--radius); padding: 1.5rem; }
.event-details dl { display: grid; grid-template-columns: auto 1fr; gap: .6rem 1rem; margin: 0; }
.event-details dt { font-weight: 700; color: var(--sofe-navy); }
.event-details dd { margin: 0; color: var(--sofe-ink); }

/* ---------- Filters / pagination ---------- */
.filter-bar { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 2rem; }
.filter-bar a {
  font-size: .9rem; font-weight: 600; padding: .45rem 1rem; border-radius: 999px;
  border: 1px solid var(--sofe-line); color: var(--sofe-slate); background: #fff;
}
.filter-bar a:hover, .filter-bar a.is-active { background: var(--sofe-navy); color: #fff; border-color: var(--sofe-navy); }
.pagination { display: flex; gap: .4rem; justify-content: center; margin-top: 3rem; flex-wrap: wrap; }
.pagination .page-numbers {
  display: inline-grid; place-items: center; min-width: 42px; height: 42px; padding: 0 .6rem;
  border: 1px solid var(--sofe-line); border-radius: var(--radius-sm); font-weight: 600; color: var(--sofe-navy); background: #fff;
}
.pagination .page-numbers.current { background: var(--sofe-navy); color: #fff; border-color: var(--sofe-navy); }
.pagination .page-numbers:hover:not(.current) { border-color: var(--sofe-navy); }

/* ---------- Empty state ---------- */
.empty-state { text-align: center; padding: 3.5rem 1rem; color: var(--sofe-slate); }
.empty-state svg { width: 56px; height: 56px; margin: 0 auto 1rem; color: var(--sofe-line); }

/* ---------- Forms ---------- */
.form-intro { background: var(--sofe-mist); border-left: 4px solid var(--sofe-gold); padding: 1.25rem 1.5rem; border-radius: var(--radius-sm); margin-bottom: 2rem; color: var(--sofe-ink); }
input[type=text], input[type=email], input[type=tel], input[type=url], input[type=number], textarea, select {
  width: 100%; font-family: inherit; font-size: 1rem; color: var(--sofe-ink);
  padding: .7rem .85rem; border: 1px solid var(--sofe-line); border-radius: var(--radius-sm); background: #fff;
  transition: border-color var(--transition), box-shadow var(--transition);
}
input:focus, textarea:focus, select:focus { border-color: var(--sofe-navy); box-shadow: 0 0 0 3px rgba(10,46,92,.12); outline: none; }
label { font-weight: 600; display: block; margin-bottom: .35rem; }
.field-required { color: #B3261E; }

/* Contact info grid */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: start; }
.info-list { list-style: none; padding: 0; margin: 0; }
.info-list li { display: flex; gap: .85rem; align-items: flex-start; margin-bottom: 1.1rem; }
.info-list svg { width: 22px; height: 22px; color: var(--sofe-gold-700); flex: none; margin-top: .2rem; }
.map-embed { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--sofe-line); }
.map-embed iframe { display: block; width: 100%; height: 320px; border: 0; }

/* ---------- Footer ---------- */
.site-footer { background: var(--sofe-navy); color: rgba(255,255,255,.8); padding-block: clamp(3rem, 6vw, 4.5rem) 0; }
.site-footer a { color: rgba(255,255,255,.8); }
.site-footer a:hover { color: var(--sofe-gold); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 2.5rem; }
.footer-brand img { max-height: 56px; margin-bottom: 1rem; }
.footer-brand p { font-size: .92rem; color: rgba(255,255,255,.7); }
.footer-col h4 { color: #fff; font-size: 1rem; margin-bottom: 1rem; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: .6rem; font-size: .94rem; }
.footer-social { display: flex; gap: .75rem; margin-top: 1rem; }
.footer-social a { display: grid; place-items: center; width: 38px; height: 38px; border: 1px solid rgba(255,255,255,.2); border-radius: 8px; }
.footer-social a:hover { border-color: var(--sofe-gold); background: rgba(200,162,74,.1); }
.footer-social svg { width: 18px; height: 18px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 3rem; padding-block: 1.5rem; display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; font-size: .85rem; color: rgba(255,255,255,.6); }
.footer-bottom a { color: rgba(255,255,255,.6); }

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; } .mb-0 { margin-bottom: 0; }
.lead { font-size: 1.2rem; color: var(--sofe-slate); }
.text-gold { color: var(--sofe-gold-700); }
.list-check { list-style: none; padding: 0; }
.list-check li { position: relative; padding-left: 1.85rem; margin-bottom: .65rem; }
.list-check li::before {
  content: ""; position: absolute; left: 0; top: .35rem; width: 18px; height: 18px;
  background: var(--sofe-gold); border-radius: 50%;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M9 16.17 4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E") center/14px no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M9 16.17 4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E") center/14px no-repeat;
}
.member-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--gap); }
.feature-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .member-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 860px) {
  .nav-toggle { display: inline-flex; }
  .primary-nav {
    position: fixed; inset: 76px 0 auto 0; background: #fff; border-bottom: 1px solid var(--sofe-line);
    box-shadow: var(--shadow-md); transform: translateY(-120%); transition: transform var(--transition);
    max-height: calc(100vh - 76px); overflow-y: auto;
  }
  .primary-nav.is-open { transform: translateY(0); }
  .primary-nav ul { flex-direction: column; align-items: stretch; gap: 0; padding: .5rem 0; }
  .primary-nav li { border-bottom: 1px solid var(--sofe-line); }
  .primary-nav a { display: block; padding: .9rem clamp(1rem,4vw,2rem); }
  .header-actions .btn { display: none; }
  .grid-3, .grid-4, .feature-cols { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .member-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  body { font-size: 1rem; }
  .grid-2, .grid-3, .grid-4, .feature-cols { grid-template-columns: 1fr; }
  .member-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .site-logo__text strong { font-size: 1.2rem; }
  .site-header__inner { min-height: 76px; }
  .site-logo img, .custom-logo { max-height: 56px; }
  .hero__actions .btn, .cta-band__actions .btn { width: 100%; }
}

/* ---------- Print ---------- */
@media print {
  .site-header, .site-footer, .nav-toggle, .hero__actions, .cta-band { display: none; }
}
