/* ============================================================
   KYRIAKOS MITSOTAKIS — MASTER DESIGN SYSTEM
   Mediterranean Executive Elegance · Aegean Minimalism
   ============================================================ */

/* ---------- GOOGLE FONTS ---------- */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

/* ---------- CSS CUSTOM PROPERTIES ---------- */
:root {
  /* Aegean Palette */
  --aegean-deep:    #0a1628;
  --aegean-blue:    #1a3a5c;
  --aegean-mid:     #2a5f8f;
  --navy:           #0f2440;
  --slate:          #3d4f5f;
  --slate-light:    #6b7d8d;
  --marble:         #f5f2ed;
  --marble-warm:    #ede8e0;
  --white:          #ffffff;
  --gold:           #c9a84c;
  --gold-light:     #dbbf6e;
  --gold-pale:      #f0e4c2;
  --silver:         #c5cdd5;
  --silver-light:   #e2e7ec;

  /* Functional */
  --bg-body:        #f7f5f1;
  --text-primary:   #1a1a2e;
  --text-secondary: #4a5568;
  --text-muted:     #7b8794;
  --border:         rgba(26,58,92,.1);
  --shadow-sm:      0 2px 8px rgba(10,22,40,.06);
  --shadow-md:      0 8px 30px rgba(10,22,40,.1);
  --shadow-lg:      0 20px 60px rgba(10,22,40,.15);
  --glass-bg:       rgba(255,255,255,.12);
  --glass-border:   rgba(255,255,255,.2);

  /* Typography */
  --font-display:   'Cinzel', serif;
  --font-serif:     'Playfair Display', serif;
  --font-body:      'Inter', system-ui, sans-serif;

  /* Spacing */
  --nav-h: 72px;
  --section-py: clamp(60px, 8vw, 120px);
  --container-w: 1280px;
  --container-narrow: 900px;

  /* Transitions */
  --ease-out: cubic-bezier(.22,1,.36,1);
  --ease-in-out: cubic-bezier(.65,0,.35,1);
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-body);
  background: var(--bg-body);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ---------- UTILITY ---------- */
.container { max-width: var(--container-w); margin: 0 auto; padding: 0 clamp(20px,4vw,48px); }
.container--narrow { max-width: var(--container-narrow); }
.section-pad { padding: var(--section-py) 0; }
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.visually-hidden { position: absolute; width: 1px; height: 1px; clip: rect(0,0,0,0); overflow: hidden; }

/* ---------- TYPOGRAPHY ---------- */
.display-xl {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: .01em;
}
.display-lg {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 600;
  line-height: 1.2;
}
.display-md {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 500;
  line-height: 1.3;
}
.heading-serif {
  font-family: var(--font-serif);
  font-weight: 500;
}
.body-lg { font-size: 1.125rem; line-height: 1.8; }
.body-sm { font-size: .875rem; }
.label-upper {
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--gold);
}

/* ---------- SECTION HEADERS ---------- */
.section-header {
  margin-bottom: clamp(40px, 6vw, 72px);
}
.section-header .label-upper {
  margin-bottom: 12px;
  display: block;
}
.section-header h2 {
  margin-bottom: 16px;
}
.section-header .underline-bar {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  margin: 0 auto;
}
.section-header p {
  margin-top: 18px;
  color: var(--text-secondary);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================
   PASSWORD GATE
   ============================================================ */
.gate-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  transition: opacity .8s var(--ease-out), visibility .8s;
}
.gate-overlay::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,22,40,.88), rgba(26,58,92,.75));
}
.gate-overlay.gate--hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.gate-panel {
  position: relative;
  width: 90%;
  max-width: 440px;
  background: var(--glass-bg);
  backdrop-filter: blur(24px) saturate(1.6);
  -webkit-backdrop-filter: blur(24px) saturate(1.6);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 48px 40px;
  text-align: center;
  color: var(--white);
  box-shadow: 0 32px 64px rgba(0,0,0,.3);
}
.gate-panel .gate-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 24px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gate-panel .gate-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.8;
}
.gate-panel h1 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: .08em;
  margin-bottom: 6px;
}
.gate-panel p {
  font-size: .85rem;
  color: rgba(255,255,255,.65);
  margin-bottom: 32px;
}
.gate-input-wrap {
  position: relative;
  margin-bottom: 20px;
}
.gate-input-wrap input {
  width: 100%;
  padding: 14px 20px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 10px;
  color: #fff;
  font-size: .95rem;
  outline: none;
  transition: border-color .3s, box-shadow .3s;
}
.gate-input-wrap input::placeholder { color: rgba(255,255,255,.4); }
.gate-input-wrap input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,.2);
}
.gate-input-wrap.error input {
  border-color: #e74c3c;
  animation: gateShake .5s var(--ease-out);
}
.gate-error-msg {
  color: #f1948a;
  font-size: .8rem;
  margin-top: -12px;
  margin-bottom: 12px;
  opacity: 0;
  transition: opacity .3s;
}
.gate-error-msg.visible { opacity: 1; }
.gate-btn {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--aegean-deep);
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .05em;
  border-radius: 10px;
  transition: transform .25s, box-shadow .25s;
}
.gate-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,76,.35);
}
@keyframes gateShake {
  0%,100% { transform: translateX(0); }
  20% { transform: translateX(-8px); }
  40% { transform: translateX(8px); }
  60% { transform: translateX(-5px); }
  80% { transform: translateX(5px); }
}

/* ============================================================
   HEADER / NAVIGATION
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-h);
  z-index: 9000;
  transition: background .4s, box-shadow .4s, backdrop-filter .4s;
}
.site-header.scrolled {
  background: rgba(10,22,40,.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 2px 20px rgba(0,0,0,.2);
}
.header-inner {
  max-width: var(--container-w);
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(20px,4vw,48px);
}
.logo-mark {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: .1em;
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-mark .logo-accent {
  width: 32px;
  height: 32px;
  border: 2px solid var(--gold);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  color: var(--gold);
  font-weight: 700;
}
.nav-links {
  display: flex;
  gap: clamp(16px, 2.5vw, 32px);
  align-items: center;
}
.nav-links a {
  position: relative;
  color: rgba(255,255,255,.8);
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: color .3s;
  padding: 4px 0;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width .35s var(--ease-out);
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
}
.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  cursor: pointer;
  z-index: 9100;
}
.hamburger span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform .35s var(--ease-out), opacity .25s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: rgba(10,22,40,.97);
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  z-index: 9050;
  opacity: 0;
  visibility: hidden;
  transition: opacity .4s, visibility .4s;
}
.mobile-nav.open { opacity: 1; visibility: visible; }
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: rgba(255,255,255,.85);
  letter-spacing: .08em;
  transition: color .3s;
}
.mobile-nav a:hover { color: var(--gold); }

@media (max-width: 1024px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
}

/* ============================================================
   HERO SECTION (HOME)
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--aegean-deep);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(10,22,40,.88) 0%,
    rgba(10,22,40,.65) 40%,
    rgba(10,22,40,.35) 70%,
    rgba(10,22,40,.15) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--container-w);
  margin: 0 auto;
  padding: calc(var(--nav-h) + 60px) clamp(20px,4vw,48px) 80px;
  width: 100%;
}
.hero-content .label-upper { margin-bottom: 16px; }
.hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 4.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
  max-width: 700px;
}
.hero-content h1 .gold-line {
  display: block;
  color: var(--gold);
}
.hero-content .hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: rgba(255,255,255,.75);
  max-width: 520px;
  margin-bottom: 36px;
  line-height: 1.75;
}
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--aegean-deep);
  font-weight: 600;
  font-size: .9rem;
  letter-spacing: .05em;
  border-radius: 8px;
  transition: transform .25s, box-shadow .25s;
}
.hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(201,168,76,.3);
}
.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.4);
  font-size: .7rem;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.hero-scroll-indicator .scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity: .3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.3); }
}

/* ============================================================
   PAGE HERO (INNER PAGES)
   ============================================================ */
.page-hero {
  position: relative;
  height: clamp(320px, 40vh, 480px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--aegean-deep);
}
.page-hero .hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
}
.page-hero .hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,22,40,.9) 0%,rgba(10,22,40,.4) 50%,rgba(10,22,40,.25) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--container-w);
  margin: 0 auto;
  width: 100%;
  padding: 0 clamp(20px,4vw,48px) 48px;
}
.page-hero-content .label-upper { margin-bottom: 8px; }
.page-hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  font-weight: 600;
}

/* ============================================================
   COUNTERS / STATS
   ============================================================ */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.stat-item {
  text-align: center;
  padding: 28px 16px;
  background: var(--white);
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease-out), box-shadow .3s;
}
.stat-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.stat-number {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--aegean-blue);
}
.stat-number .counter-suffix { font-size: .7em; color: var(--gold); }
.stat-label {
  font-size: .8rem;
  color: var(--text-secondary);
  margin-top: 4px;
  letter-spacing: .04em;
}

/* ============================================================
   PRIORITY CARDS
   ============================================================ */
.priorities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.priority-card {
  position: relative;
  padding: 36px 28px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform .35s var(--ease-out), box-shadow .35s;
}
.priority-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, var(--gold), var(--aegean-mid));
  border-radius: 4px 0 0 4px;
}
.priority-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.priority-card .card-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--aegean-blue), var(--aegean-mid));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 1.3rem;
}
.priority-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--aegean-deep);
}
.priority-card p {
  font-size: .88rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ============================================================
   QUOTE BANNER
   ============================================================ */
.quote-banner {
  position: relative;
  padding: clamp(60px, 8vw, 100px) 0;
  background: linear-gradient(135deg, var(--aegean-deep), var(--aegean-blue));
  overflow: hidden;
}
.quote-banner::before {
  content: '\201C';
  position: absolute;
  top: -20px;
  left: 5%;
  font-size: 20rem;
  font-family: var(--font-serif);
  color: rgba(201,168,76,.06);
  line-height: 1;
}
.quote-banner blockquote {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-style: italic;
  color: var(--white);
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.quote-banner cite {
  display: block;
  margin-top: 20px;
  font-style: normal;
  font-family: var(--font-body);
  font-size: .85rem;
  color: var(--gold);
  letter-spacing: .1em;
  text-transform: uppercase;
}

/* ============================================================
   TIMELINE (BIOGRAPHY)
   ============================================================ */
.timeline {
  position: relative;
  padding-left: 36px;
}
.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 15px;
  width: 2px;
  height: 100%;
  background: linear-gradient(to bottom, var(--gold), var(--silver-light));
}
.timeline-item {
  position: relative;
  margin-bottom: 48px;
  padding-left: 28px;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -28px;
  top: 6px;
  width: 14px;
  height: 14px;
  border: 3px solid var(--gold);
  background: var(--white);
  border-radius: 50%;
  z-index: 2;
}
.timeline-item .year {
  font-family: var(--font-display);
  font-size: .85rem;
  color: var(--gold);
  letter-spacing: .1em;
  margin-bottom: 6px;
}
.timeline-item h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--aegean-deep);
}
.timeline-item p {
  font-size: .9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}
.timeline-item .timeline-img {
  margin-top: 16px;
  max-width: 50%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.timeline-item .timeline-img img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* ============================================================
   POLICY / STRATEGY CARDS
   ============================================================ */
.strategy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}
.strategy-card {
  background: var(--white);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease-out), box-shadow .35s;
}
.strategy-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.strategy-card .card-top {
  height: 6px;
  background: linear-gradient(90deg, var(--gold), var(--aegean-mid));
}
.strategy-card .card-body {
  padding: 32px 28px;
}
.strategy-card .card-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: rgba(26,58,92,.08);
  margin-bottom: 8px;
}
.strategy-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--aegean-deep);
  margin-bottom: 12px;
}
.strategy-card p {
  font-size: .88rem;
  color: var(--text-secondary);
  line-height: 1.7;
}
.strategy-card .metric {
  margin-top: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.strategy-card .metric-bar {
  flex: 1;
  height: 6px;
  background: var(--silver-light);
  border-radius: 3px;
  overflow: hidden;
}
.strategy-card .metric-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--aegean-mid));
  border-radius: 3px;
  width: 0;
  transition: width 1.2s var(--ease-out);
}
.strategy-card .metric-val {
  font-size: .75rem;
  font-weight: 600;
  color: var(--aegean-blue);
  min-width: 36px;
  text-align: right;
}

/* ============================================================
   INFOGRAPHIC BLOCKS (ECONOMIC)
   ============================================================ */
.info-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 64px;
}
.info-row.reverse { direction: rtl; }
.info-row.reverse > * { direction: ltr; }
.info-text h3 {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  margin-bottom: 14px;
  color: var(--aegean-deep);
}
.info-text p {
  font-size: .92rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 12px;
}
.info-visual {
  background: linear-gradient(135deg, var(--aegean-deep), var(--aegean-blue));
  border-radius: 18px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.info-bar-group label {
  font-size: .78rem;
  color: rgba(255,255,255,.7);
  display: block;
  margin-bottom: 6px;
}
.info-bar {
  height: 10px;
  background: rgba(255,255,255,.1);
  border-radius: 5px;
  overflow: hidden;
}
.info-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 5px;
  width: 0;
  transition: width 1.5s var(--ease-out);
}
@media (max-width: 768px) {
  .info-row { grid-template-columns: 1fr; }
  .info-row.reverse { direction: ltr; }
}

/* ============================================================
   VISION CARDS (FUTURE)
   ============================================================ */
.vision-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}
.vision-card {
  position: relative;
  padding: 40px 28px 32px;
  background: linear-gradient(160deg, var(--white), var(--marble));
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  transition: transform .35s var(--ease-out), box-shadow .3s;
}
.vision-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: var(--shadow-md);
}
.vision-card .v-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--aegean-deep), var(--aegean-mid));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
}
.vision-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  margin-bottom: 10px;
  color: var(--aegean-deep);
}
.vision-card p {
  font-size: .86rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ============================================================
   MEDIA GALLERY
   ============================================================ */
.gallery-grid {
  column-count: 3;
  column-gap: 20px;
}
.gallery-item {
  break-inside: avoid;
  margin-bottom: 20px;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform .5s var(--ease-out);
  object-fit: contain;
}
.gallery-item:hover img {
  transform: scale(1.04);
}
.gallery-item .gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px 16px 14px;
  background: linear-gradient(to top, rgba(0,0,0,.7), transparent);
  color: var(--white);
  font-size: .78rem;
  opacity: 0;
  transition: opacity .35s;
}
.gallery-item:hover .gallery-caption { opacity: 1; }

@media (max-width: 768px) { .gallery-grid { column-count: 2; } }
@media (max-width: 480px) { .gallery-grid { column-count: 1; } }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0,0,0,.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .4s, visibility .4s;
  cursor: zoom-out;
}
.lightbox.active { opacity: 1; visibility: visible; }
.lightbox img {
  max-width: 90%;
  max-height: 90vh;
  border-radius: 8px;
  object-fit: contain;
}
.lightbox-close {
  position: absolute;
  top: 24px;
  right: 32px;
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  transition: background .3s;
}
.lightbox-close:hover { background: rgba(255,255,255,.2); }

/* ============================================================
   NEWS CARDS
   ============================================================ */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}
.news-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease-out), box-shadow .35s;
}
.news-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.news-card .news-img {
  height: 200px;
  overflow: hidden;
}
.news-card .news-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  transition: transform .5s var(--ease-out);
}
.news-card:hover .news-img img { transform: scale(1.05); }
.news-card .news-body {
  padding: 24px;
}
.news-card .news-date {
  font-size: .75rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 8px;
}
.news-card h3 {
  font-family: var(--font-display);
  font-size: .95rem;
  margin-bottom: 10px;
  color: var(--aegean-deep);
  line-height: 1.4;
}
.news-card p {
  font-size: .84rem;
  color: var(--text-secondary);
  line-height: 1.65;
}
.news-card .read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  font-size: .8rem;
  font-weight: 600;
  color: var(--aegean-mid);
  transition: color .3s;
}
.news-card .read-more:hover { color: var(--gold); }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.contact-form-wrap {
  background: var(--white);
  border-radius: 18px;
  padding: 40px;
  box-shadow: var(--shadow-sm);
}
.contact-form-wrap h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: 24px;
  color: var(--aegean-deep);
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: .82rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 6px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--silver-light);
  border-radius: 10px;
  font-size: .9rem;
  transition: border-color .3s, box-shadow .3s;
  background: var(--bg-body);
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--aegean-mid);
  box-shadow: 0 0 0 3px rgba(42,95,143,.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.btn-submit {
  padding: 14px 36px;
  background: linear-gradient(135deg, var(--aegean-blue), var(--aegean-mid));
  color: var(--white);
  font-weight: 600;
  font-size: .9rem;
  letter-spacing: .04em;
  border-radius: 10px;
  transition: transform .25s, box-shadow .25s;
}
.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26,58,92,.25);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.contact-info-card {
  background: var(--white);
  border-radius: 16px;
  padding: 28px;
  box-shadow: var(--shadow-sm);
}
.contact-info-card h4 {
  font-family: var(--font-display);
  font-size: .95rem;
  margin-bottom: 16px;
  color: var(--aegean-deep);
}
.contact-info-card a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .9rem;
  color: var(--text-secondary);
  margin-bottom: 10px;
  transition: color .3s;
}
.contact-info-card a:hover { color: var(--aegean-mid); }
.contact-info-card .icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--aegean-deep), var(--aegean-blue));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info-card .icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.8;
}

.social-row {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}
.social-row a {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--aegean-deep), var(--aegean-blue));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .3s, box-shadow .3s;
}
.social-row a:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(26,58,92,.25);
}
.social-row a svg {
  width: 18px;
  height: 18px;
  fill: var(--gold);
}

@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--aegean-deep);
  color: rgba(255,255,255,.6);
  padding: 40px 0;
}
.footer-inner {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 clamp(20px,4vw,48px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-left a {
  color: var(--gold);
  font-weight: 500;
  transition: color .3s;
}
.footer-left a:hover { color: var(--gold-light); }
.footer-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-right a {
  color: rgba(255,255,255,.6);
  transition: color .3s;
}
.footer-right a:hover { color: var(--gold); }
.footer-social {
  display: flex;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.08);
  margin-top: 20px;
  justify-content: center;
}
.footer-social a {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,.06);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .3s, transform .3s;
}
.footer-social a:hover {
  background: rgba(201,168,76,.15);
  transform: translateY(-2px);
}
.footer-social a svg {
  width: 16px;
  height: 16px;
  fill: rgba(255,255,255,.6);
}
.footer-social a:hover svg { fill: var(--gold); }

.footer-bottom {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 clamp(20px,4vw,48px);
}

/* ============================================================
   SCROLL-REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }
.reveal-delay-5 { transition-delay: .5s; }
.reveal-delay-6 { transition-delay: .6s; }
.reveal-delay-7 { transition-delay: .7s; }

/* ============================================================
   QUICK LINKS (HOME)
   ============================================================ */
.quick-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.quick-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px;
  background: var(--white);
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease-out), box-shadow .3s;
}
.quick-link:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.quick-link .ql-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--aegean-deep), var(--aegean-mid));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}
.quick-link .ql-text {
  font-size: .88rem;
  font-weight: 500;
  color: var(--aegean-deep);
}

/* ============================================================
   RESPONSIVE FINE-TUNING
   ============================================================ */
@media (max-width: 600px) {
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .priorities-grid { grid-template-columns: 1fr; }
  .strategy-grid { grid-template-columns: 1fr; }
  .vision-grid { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .quick-links { grid-template-columns: 1fr; }
}

/* ============================================================
   BIO INTRO LAYOUT
   ============================================================ */
.bio-intro {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 64px;
}
.bio-portrait {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.bio-portrait img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.bio-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  margin-bottom: 8px;
  color: var(--aegean-deep);
}
.bio-text .bio-subtitle {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--gold);
  margin-bottom: 18px;
}
.bio-text p {
  font-size: .92rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 12px;
}
@media (max-width: 768px) {
  .bio-intro { grid-template-columns: 1fr; }
  .bio-portrait { max-width: 320px; }
}

/* ============================================================
   MISC
   ============================================================ */
.bg-marble { background: var(--marble); }
.bg-deep { background: var(--aegean-deep); color: var(--white); }
.bg-deep .section-header p { color: rgba(255,255,255,.6); }
.bg-deep .underline-bar { background: var(--gold); }
