/* ═══════════════════════════════════════════
   Σύλλογος Ευζώνων Π.Φ. Πιερίας — Styles
   ═══════════════════════════════════════════ */

:root {
  --navy:       #0d1b2e;
  --navy2:      #142236;
  --navy3:      #1c3050;
  --gold:       #c9a55a;
  --gold2:      #e8c97a;
  --gold-light: #f5e9cc;
  --white:      #ffffff;
  --off-white:  #f8f6f0;
  --text:       #2c2c2c;
  --muted:      #6b6b6b;
  --border:     #ddd5c0;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; }
body  {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: var(--text);
  background: var(--off-white);
}
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; }
a  { color: var(--gold); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; }

/* ══════════════════════════════
   NAV
══════════════════════════════ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(13, 27, 46, 0.97);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(201,165,90,.25);
}
.nav-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 24px; height: 76px;
}
.nav-brand {
  display: flex; align-items: center; gap: 13px;
  color: var(--white); text-decoration: none;
  font-family: 'Playfair Display', serif;
}
.nav-brand img {
  height: 62px; width: 62px; border-radius: 50%;
  object-fit: cover; border: 2.5px solid var(--gold);
  flex-shrink: 0;
}
.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-links a {
  color: rgba(255,255,255,.75); font-size: .85rem; font-weight: 500;
  padding: 7px 14px; border-radius: 6px; transition: all .2s;
}
.nav-links a:hover { color: var(--gold2); text-decoration: none; background: rgba(255,255,255,.06); }
.nav-links .nav-cta {
  background: var(--gold); color: var(--navy) !important;
  font-weight: 700; padding: 8px 18px; border-radius: 8px;
}
.nav-links .nav-cta:hover { background: var(--gold2); }

/* hamburger button */
.nav-hamburger {
  display: none;
  flex-direction: column; justify-content: center; align-items: center; gap: 5px;
  width: 40px; height: 40px; padding: 6px;
  background: rgba(255,255,255,.07); border: 1px solid rgba(201,165,90,.3);
  border-radius: 8px; cursor: pointer; flex-shrink: 0;
}
.nav-hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--gold2); border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
/* X state */
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
/* Mobile menu drawer */
.nav-mobile-menu {
  display: none;
  flex-direction: column;
  position: fixed; top: 76px; left: 0; right: 0;
  background: rgba(13,27,46,.98);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(201,165,90,.2);
  padding: 12px 0 20px;
  z-index: 99;
  transform: translateY(-12px);
  opacity: 0;
  transition: transform .26s ease, opacity .26s ease;
  pointer-events: none;
}
.nav-mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.nav-mobile-menu a {
  display: block; padding: 13px 28px;
  color: rgba(255,255,255,.8); font-size: .95rem; font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,.05);
  transition: color .2s, background .2s;
}
.nav-mobile-menu a:hover { color: var(--gold2); background: rgba(255,255,255,.04); text-decoration: none; }
.nav-mobile-menu a.nav-cta {
  margin: 12px 28px 0; padding: 14px 28px; text-align: center;
  background: var(--gold); color: var(--navy); font-weight: 700;
  border-radius: 10px; border-bottom: none;
}

/* ══════════════════════════════
   HERO
══════════════════════════════ */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(160deg, #0a1525 0%, #0d1b2e 50%, #1a2a44 100%);
  overflow: hidden; text-align: center;
  padding: 120px 24px 80px;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url('../images/1.jpg') center/cover no-repeat;
  opacity: .15;
}
.hero-pattern {
  position: absolute; inset: 0; pointer-events: none;
  background-image: repeating-linear-gradient(
    45deg,
    rgba(201,165,90,.03) 0, rgba(201,165,90,.03) 1px,
    transparent 0, transparent 50%
  );
  background-size: 30px 30px;
}
.hero-content { position: relative; z-index: 1; max-width: 800px; margin: 0 auto; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,165,90,.15); border: 1px solid rgba(201,165,90,.3);
  color: var(--gold2); border-radius: 30px; padding: 8px 20px;
  font-size: .82rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase; margin-bottom: 28px;
}
.hero-logo {
  width: 130px; height: 130px; border-radius: 50%;
  border: 4px solid var(--gold); object-fit: cover;
  margin: 0 auto 28px;
  box-shadow: 0 0 60px rgba(201,165,90,.3);
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  color: var(--white); line-height: 1.2; margin-bottom: 12px;
}
.hero h1 span { color: var(--gold2); }
.hero-sub {
  font-size: 1.1rem; color: rgba(255,255,255,.65); margin-bottom: 40px;
  max-width: 600px; margin-left: auto; margin-right: auto;
}
.hero-line {
  width: 80px; height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 0 auto 24px;
}
.hero-meta { display: flex; justify-content: center; gap: 32px; flex-wrap: wrap; margin-top: 32px; }
.hero-meta-item { text-align: center; }
.hero-meta-item .num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem; font-weight: 800; color: var(--gold2); line-height: 1;
}
.hero-meta-item .lbl {
  font-size: .78rem; color: rgba(255,255,255,.5);
  text-transform: uppercase; letter-spacing: .07em; margin-top: 4px;
}
.hero-scroll {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,.35); font-size: .78rem;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  letter-spacing: .06em; text-transform: uppercase;
}
.hero-scroll::after {
  content: '';
  width: 2px; height: 40px;
  background: linear-gradient(to bottom, rgba(201,165,90,.5), transparent);
}

/* ══════════════════════════════
   SECTIONS — COMMON
══════════════════════════════ */
.section { padding: 90px 24px; }
.section-inner { max-width: 1100px; margin: 0 auto; }

.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .75rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 12px;
}
.section-label::before,
.section-label::after { content: ''; width: 30px; height: 1px; background: var(--gold); opacity: .5; }

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--navy); margin-bottom: 16px; line-height: 1.2;
}
.section-title.light { color: var(--white); }
.section-desc { font-size: 1.05rem; color: var(--muted); max-width: 680px; line-height: 1.8; }
.section-desc.light { color: rgba(255,255,255,.6); }

/* ══════════════════════════════
   ABOUT
══════════════════════════════ */
.about { background: var(--white); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
  align-items: center; margin-top: 48px;
}
.about-text p { color: #444; line-height: 1.85; margin-bottom: 18px; font-size: .97rem; }
.date-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold-light); color: #7a5a1a;
  border: 1px solid var(--border); border-radius: 8px;
  padding: 8px 16px; font-size: .83rem; font-weight: 700; margin-bottom: 20px;
}
.about-img-wrap { position: relative; }
.about-img-main {
  width: 100%; aspect-ratio: 4/5; object-fit: cover;
  border-radius: 16px; box-shadow: 0 20px 60px rgba(0,0,0,.15);
}
.about-img-badge {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--navy); color: var(--gold2);
  border: 3px solid var(--gold); border-radius: 12px;
  padding: 16px 20px; text-align: center; min-width: 120px;
  box-shadow: 0 8px 30px rgba(0,0,0,.25);
}
.about-img-badge .big { font-family: 'Playfair Display',serif; font-size: 1.8rem; font-weight: 800; line-height: 1; }
.about-img-badge small { font-size: .72rem; text-transform: uppercase; letter-spacing: .06em; color: rgba(255,255,255,.55); display: block; margin-top: 4px; }

/* ══════════════════════════════
   GOALS
══════════════════════════════ */
.goals { background: var(--navy); }
.goals-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px; margin-top: 56px;
}
.goal-card {
  background: rgba(255,255,255,.04); border: 1px solid rgba(201,165,90,.2);
  border-radius: 16px; padding: 28px 24px;
  transition: transform .25s, border-color .25s;
}
.goal-card:hover { transform: translateY(-4px); border-color: rgba(201,165,90,.5); }
.goal-icon {
  width: 50px; height: 50px; background: rgba(201,165,90,.12);
  border-radius: 12px; display: flex; align-items: center;
  justify-content: center; font-size: 1.4rem; margin-bottom: 16px;
}
.goal-card h3 { color: var(--gold2); font-size: 1rem; margin-bottom: 8px; }
.goal-card p  { color: rgba(255,255,255,.55); font-size: .88rem; line-height: 1.7; }

/* ══════════════════════════════
   EVENTS
══════════════════════════════ */
.events { background: var(--off-white); }
.events-list { margin-top: 56px; display: flex; flex-direction: column; gap: 60px; }
.event-item { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.event-item.reverse { direction: rtl; }
.event-item.reverse > * { direction: ltr; }
.event-img-wrap { border-radius: 16px; overflow: hidden; }
.event-img-wrap img {
  width: 100%; aspect-ratio: 16/10; object-fit: cover; transition: transform .4s;
}
.event-img-wrap:hover img { transform: scale(1.04); }
.event-tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--gold-light); color: #7a5a1a;
  border-radius: 20px; padding: 5px 14px;
  font-size: .76rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .06em; margin-bottom: 14px;
}
.event-content h3 { font-size: 1.5rem; color: var(--navy); margin-bottom: 8px; line-height: 1.3; }
.event-date {
  font-size: .83rem; color: var(--muted); margin-bottom: 16px;
  display: flex; align-items: center; gap: 6px;
}
.event-content p { color: #555; font-size: .95rem; line-height: 1.85; }
.event-note { margin-top: 12px; font-size: .88rem !important; color: var(--muted) !important; }

/* ══════════════════════════════
   MEMBERS
══════════════════════════════ */
.members { background: var(--white); }
.members-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; margin-top: 56px; }
.members-block h3 {
  font-size: 1.25rem; color: var(--navy); margin-bottom: 16px;
  padding-bottom: 12px; border-bottom: 2px solid var(--gold-light);
}
.members-block p { color: #555; font-size: .95rem; line-height: 1.85; margin-bottom: 14px; }
.member-type {
  background: var(--off-white); border: 1px solid var(--border);
  border-left: 4px solid var(--gold); border-radius: 0 10px 10px 0;
  padding: 16px 20px; margin: 12px 0;
}
.member-type h4 { font-size: .9rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.member-type p  { font-size: .85rem; color: var(--muted); margin: 0; }
.join-box {
  margin-top: 24px; background: var(--navy); border-radius: 12px; padding: 24px;
}
.join-box .icon { font-size: 1.5rem; margin-bottom: 8px; }
.join-box h4 { color: var(--gold2); font-size: 1rem; margin-bottom: 8px; }
.join-box p  { color: rgba(255,255,255,.6); font-size: .88rem; line-height: 1.7; margin-bottom: 16px; }

/* ══════════════════════════════
   GALLERY
══════════════════════════════ */
.gallery { background: var(--navy2); padding: 90px 24px; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 10px;
  max-width: 1200px;
  margin: 48px auto 0;
}
.gallery-item {
  overflow: hidden; border-radius: 10px; cursor: pointer; position: relative;
  background: rgba(255,255,255,.05);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.gallery-item:hover img { transform: scale(1.07); }
.gallery-item::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(13,27,46,0); transition: background .3s;
}
.gallery-item:hover::after {
  content: '🔍'; background: rgba(13,27,46,.4);
  display: flex; align-items: center; justify-content: center; font-size: 1.8rem;
}
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }

/* ══════════════════════════════
   LIGHTBOX
══════════════════════════════ */
.lightbox {
  position: fixed; inset: 0; z-index: 999;
  background: rgba(0,0,0,.92);
  display: none; align-items: center; justify-content: center; padding: 20px;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-height: 90vh; max-width: 90vw; border-radius: 8px;
  object-fit: contain; box-shadow: 0 20px 80px rgba(0,0,0,.5);
}
.lightbox-close {
  position: absolute; top: 20px; right: 24px;
  color: white; font-size: 2rem; cursor: pointer;
  background: none; border: none; line-height: 1; opacity: .7; transition: opacity .2s;
}
.lightbox-close:hover { opacity: 1; }
.lightbox-prev, .lightbox-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,.1); color: white;
  border: 1px solid rgba(255,255,255,.2); border-radius: 50%;
  width: 50px; height: 50px; font-size: 1.4rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all .2s;
}
.lightbox-prev:hover, .lightbox-next:hover { background: rgba(201,165,90,.4); }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

/* ══════════════════════════════
   FUTURE / CTA
══════════════════════════════ */
.future {
  background: linear-gradient(135deg, var(--navy) 0%, #1a3050 100%);
  padding: 100px 24px; text-align: center; position: relative; overflow: hidden;
}
.future::before {
  content: 'ΠΙΕΡΙΑ';
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  font-family: 'Playfair Display', serif;
  font-size: clamp(6rem, 20vw, 16rem); font-weight: 800;
  color: rgba(255,255,255,.025); white-space: nowrap; pointer-events: none;
}
.future-inner { position: relative; z-index: 1; max-width: 720px; margin: 0 auto; }
.future h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); color: var(--white); margin-bottom: 20px; }
.future p  { color: rgba(255,255,255,.6); font-size: 1.05rem; line-height: 1.8; margin-bottom: 40px; }
.future-divider { width: 60px; height: 3px; background: var(--gold); margin: 0 auto 32px; }

.president-box {
  background: rgba(255,255,255,.05); border: 1px solid rgba(201,165,90,.2);
  border-radius: 16px; padding: 32px;
  max-width: 500px; margin: 0 auto 40px; position: relative; z-index: 1;
}
.president-box .quote { font-size: 3rem; color: var(--gold); line-height: 1; margin-bottom: 12px; font-family: serif; }
.president-box p { color: rgba(255,255,255,.75); font-size: .95rem; line-height: 1.8; font-style: italic; margin-bottom: 16px; }
.president-sig { color: var(--gold2); font-weight: 700; font-size: .9rem; }
.president-sig small { display: block; color: rgba(255,255,255,.4); font-size: .78rem; font-weight: 400; font-style: normal; }

/* ══════════════════════════════
   BUTTONS
══════════════════════════════ */
.btn-gold {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold); color: var(--navy);
  font-weight: 700; font-size: .95rem;
  padding: 14px 28px; border-radius: 10px;
  border: none; cursor: pointer; transition: all .2s; text-decoration: none;
}
.btn-gold:hover { background: var(--gold2); transform: translateY(-2px); text-decoration: none; }
.btn-gold.sm    { font-size: .85rem; padding: 10px 20px; }
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--white);
  font-weight: 600; font-size: .95rem;
  padding: 13px 28px; border-radius: 10px;
  border: 1px solid rgba(255,255,255,.3); cursor: pointer; transition: all .2s;
  text-decoration: none; margin-left: 12px;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold2); text-decoration: none; }
.btn-row { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }

/* ══════════════════════════════
   FOOTER
══════════════════════════════ */
footer {
  background: var(--navy);
  border-top: 1px solid rgba(201,165,90,.2);
  padding: 56px 24px 32px;
}
.footer-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px;
}
.footer-brand { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 12px; }
.footer-brand img {
  width: 56px; height: 56px; border-radius: 50%;
  border: 2px solid rgba(201,165,90,.4); object-fit: cover; flex-shrink: 0;
}
.footer-brand-text h3 { color: var(--gold2); font-size: 1rem; margin-bottom: 4px; }
.footer-brand-text p  { color: rgba(255,255,255,.4); font-size: .8rem; line-height: 1.6; }
.footer-about { color: rgba(255,255,255,.4); font-size: .83rem; line-height: 1.7; max-width: 340px; margin-top: 8px; }
.footer-col h4 {
  color: var(--gold); font-size: .75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em; margin-bottom: 16px;
  font-family: 'Inter', sans-serif;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a, .footer-col ul li span { color: rgba(255,255,255,.5); font-size: .85rem; transition: color .2s; }
.footer-col ul li a:hover { color: var(--gold2); text-decoration: none; }
.footer-social {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.06); color: rgba(255,255,255,.6);
  padding: 8px 14px; border-radius: 8px; font-size: .82rem;
  border: 1px solid rgba(255,255,255,.1); margin-top: 20px;
}
.footer-social:hover { color: var(--gold2); text-decoration: none; }
.footer-bottom {
  max-width: 1100px; margin: 40px auto 0;
  padding-top: 24px; border-top: 1px solid rgba(255,255,255,.06);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { color: rgba(255,255,255,.3); font-size: .8rem; }
.footer-bottom a { color: rgba(201,165,90,.6); }

/* ══════════════════════════════
   CONTACT
══════════════════════════════ */
.contact-section { background: #f9f6ef; }
.contact-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 2fr; gap: 56px; align-items: start;
}
/* Info column */
.contact-info { display: flex; flex-direction: column; gap: 24px; }
.contact-info-item { display: flex; align-items: flex-start; gap: 14px; }
.contact-info-icon {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--navy); display: flex; align-items: center;
  justify-content: center; font-size: 1.1rem; flex-shrink: 0;
}
.contact-info-item h4 { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--navy); margin-bottom: 2px; }
.contact-info-item p  { font-size: .9rem; color: #555; margin: 0; }
.contact-info-item a  { color: var(--navy); text-decoration: underline dotted; }
.contact-social-wrap  { margin-top: 8px; }
.contact-social-wrap p { font-size: .78rem; color: #888; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 10px; }
.contact-social-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: #3b5998; color: #fff; padding: 10px 18px;
  border-radius: 8px; font-size: .85rem; font-weight: 600; text-decoration: none;
  transition: filter .2s;
}
.contact-social-btn:hover { filter: brightness(1.12); text-decoration: none; }
/* Form */
.contact-form-wrap {
  background: #fff; border-radius: 16px; padding: 40px;
  box-shadow: 0 4px 32px rgba(13,27,46,.08); border: 1px solid rgba(201,165,90,.1);
}
.contact-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form .form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.contact-form label { font-size: .78rem; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; color: var(--navy); }
.contact-form .req { color: #c9455a; margin-left: 2px; }
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form select,
.contact-form textarea {
  width: 100%; padding: 11px 14px; border: 1.5px solid #ddd; border-radius: 8px;
  font-family: 'Inter', sans-serif; font-size: .92rem; color: var(--navy);
  background: #fafaf9; transition: border-color .2s, box-shadow .2s; outline: none;
  box-sizing: border-box;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,165,90,.15); }
.contact-form textarea { resize: vertical; min-height: 120px; }
.contact-form select { cursor: pointer; appearance: auto; }
.form-check { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 24px; }
.form-check input[type="checkbox"] { width: 17px; height: 17px; margin-top: 2px; cursor: pointer; accent-color: var(--gold); flex-shrink: 0; }
.form-check label { font-size: .82rem; color: #555; text-transform: none; letter-spacing: 0; font-weight: 400; }
.form-check label a { color: var(--navy); }
.form-submit {
  width: 100%; padding: 14px 24px; border: none; border-radius: 10px; cursor: pointer;
  background: var(--navy); color: var(--gold2); font-family: 'Inter', sans-serif;
  font-size: 1rem; font-weight: 700; letter-spacing: .04em;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  transition: background .2s, transform .2s;
}
.form-submit:hover { background: var(--gold); color: var(--navy); transform: translateY(-2px); }
.form-success {
  display: none; margin-top: 18px; padding: 14px 18px;
  background: #e6f4ea; border: 1px solid #a8d5b0; border-radius: 8px;
  color: #2e7d45; font-size: .9rem; font-weight: 600; align-items: center; gap: 8px;
}
.form-success.visible { display: flex; }

/* ══════════════════════════════
   SCROLL TO TOP
══════════════════════════════ */
.scroll-top {
  position: fixed; bottom: 28px; right: 28px; z-index: 200;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--navy); border: 2px solid var(--gold);
  color: var(--gold2); font-size: 1.3rem; line-height: 1;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,.35);
  opacity: 0; pointer-events: none;
  transform: translateY(12px);
  transition: opacity .3s, transform .3s, background .2s;
}
.scroll-top.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.scroll-top:hover { background: var(--gold); color: var(--navy); }

/* ══════════════════════════════
   RESPONSIVE
══════════════════════════════ */
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px 20px; }
  .contact-form .form-row { grid-template-columns: 1fr; }
  .about-grid,
  .members-grid,
  .event-item,
  .event-item.reverse { grid-template-columns: 1fr; }
  .event-item.reverse  { direction: ltr; }
  .about-img-badge     { bottom: 10px; right: 10px; }
  .footer-inner        { grid-template-columns: 1fr; gap: 32px; }
  .gallery-grid        { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.tall   { grid-row: span 1; }
  .gallery-item.wide   { grid-column: span 2; }
  .nav-links           { display: none; }
  .nav-hamburger        { display: flex; }
  .nav-mobile-menu      { display: flex; }
}
@media (max-width: 600px) {
  .gallery-grid    { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .gallery-item.tall { grid-row: span 1; }
  .hero-meta       { gap: 20px; }
  .section         { padding: 60px 16px; }
  .nav-inner       { height: 68px; padding: 0 16px; }
  .nav-brand img   { height: 52px; width: 52px; }
  .nav-mobile-menu { top: 68px; }
}
