/* =========================================
   Klub Abstynenta "Nadzieja" – Lubartów
   ========================================= */

:root {
  --c-dark:       #1C3326;
  --c-dark2:      #2D5C3F;
  --c-green:      #3A7A52;
  --c-gold:       #C9A035;
  --c-gold-h:     #E8BC50;
  --c-text:       #2C2C2C;
  --c-muted:      #666;
  --c-bg:         #FFFFFF;
  --c-bg-alt:     #F5F3EE;
  --c-border:     #E0DDD5;
  --c-white:      #FFFFFF;
  --font-body:    'Lato', sans-serif;
  --font-head:    'Playfair Display', serif;
  --shadow-sm:    0 2px 8px rgba(0,0,0,.08);
  --shadow-md:    0 4px 20px rgba(0,0,0,.12);
  --shadow-lg:    0 8px 40px rgba(0,0,0,.16);
  --radius:       8px;
  --radius-lg:    16px;
  --transition:   .3s ease;
  --max-w:        1180px;
  --header-h:     90px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); color: var(--c-text); background: var(--c-bg); line-height: 1.6; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ── Layout ── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

.section { padding: 80px 0; }
.section--alt { background: var(--c-bg-alt); }
.section--dark { background: var(--c-dark); color: var(--c-white); }
.section--dark .section__label { color: var(--c-gold); }
.section--dark .section__title { color: var(--c-white); }

.section__header { margin-bottom: 48px; }
.section__header--center { text-align: center; }

.section__label {
  display: inline-block;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--c-green);
  margin-bottom: 10px;
}
.section__title {
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--c-dark);
  line-height: 1.25;
}
.section__lead {
  margin-top: 16px;
  font-size: 1.05rem;
  color: var(--c-muted);
  max-width: 640px;
}
.section__header--center .section__lead { margin-left: auto; margin-right: auto; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .03em;
  transition: var(--transition);
  white-space: nowrap;
}
.btn--primary { background: var(--c-gold); color: var(--c-dark); }
.btn--primary:hover { background: var(--c-gold-h); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--dark { background: var(--c-dark); color: var(--c-white); }
.btn--dark:hover { background: var(--c-dark2); transform: translateY(-2px); }
.btn--outline { border: 2px solid var(--c-white); color: var(--c-white); }
.btn--outline:hover { background: rgba(255,255,255,.12); }
.btn--outline-dark { border: 2px solid var(--c-dark); color: var(--c-dark); }
.btn--outline-dark:hover { background: var(--c-dark); color: var(--c-white); }
.btn--lg { padding: 16px 36px; font-size: 1rem; }
.btn--sm { padding: 9px 20px; font-size: .85rem; }

/* ── HEADER ── */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--c-dark);
  box-shadow: var(--shadow-md);
}
.header__topbar {
  background: rgba(0,0,0,.25);
  font-size: .82rem;
  color: rgba(255,255,255,.75);
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.header__topbar-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.header__topbar a { color: inherit; transition: color var(--transition); }
.header__topbar a:hover { color: var(--c-gold); }
.topbar-item { display: flex; align-items: center; gap: 6px; }
.topbar-item svg { flex-shrink: 0; opacity: .7; }

.header__nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 20px;
}
.header__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.header__logo img { height: 46px; width: 46px; object-fit: contain; border-radius: 50%; }
.header__logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.header__logo-name { font-family: var(--font-head); font-size: 1.2rem; font-weight: 700; color: var(--c-white); letter-spacing: .05em; }
.header__logo-sub { font-size: .68rem; color: rgba(255,255,255,.55); letter-spacing: .03em; }

.header__menu {
  display: flex;
  align-items: center;
  gap: 4px;
}
.header__menu li a {
  display: block;
  padding: 8px 13px;
  color: rgba(255,255,255,.85);
  font-size: .88rem;
  font-weight: 600;
  letter-spacing: .02em;
  border-radius: var(--radius);
  transition: var(--transition);
}
.header__menu li a:hover,
.header__menu li a.active { color: var(--c-white); background: rgba(255,255,255,.1); }
.header__menu li a.btn--nav {
  background: var(--c-gold);
  color: var(--c-dark);
  padding: 8px 18px;
  margin-left: 8px;
}
.header__menu li a.btn--nav:hover { background: var(--c-gold-h); }

.header__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.header__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--c-white);
  border-radius: 2px;
  transition: var(--transition);
}
.header__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.header__burger.open span:nth-child(2) { opacity: 0; }
.header__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  transition: transform 8s ease;
}
.hero.loaded .hero__bg { transform: scale(1); }
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(28,51,38,.88) 0%, rgba(28,51,38,.65) 60%, rgba(0,0,0,.4) 100%);
}
.hero__body {
  position: relative;
  z-index: 2;
  padding: 80px 0 40px;
}
.hero__tag {
  display: inline-block;
  background: var(--c-gold);
  color: var(--c-dark);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 4px;
  margin-bottom: 20px;
}
.hero__title {
  font-family: var(--font-head);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 700;
  color: var(--c-white);
  line-height: 1.05;
  margin-bottom: 12px;
  letter-spacing: .02em;
}
.hero__subtitle {
  font-size: 1.25rem;
  color: rgba(255,255,255,.85);
  margin-bottom: 8px;
  font-weight: 300;
}
.hero__desc {
  font-size: 1.5rem;
  color: var(--c-gold-h);
  font-style: italic;
  font-family: var(--font-head);
  margin-bottom: 36px;
}
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero__badges {
  position: relative;
  z-index: 2;
  background: rgba(28,51,38,.85);
  backdrop-filter: blur(8px);
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 22px 0;
  margin-top: auto;
}
.hero__badges-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.hero__badge {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--c-white);
}
.hero__badge-icon {
  width: 46px;
  height: 46px;
  background: rgba(201,160,53,.2);
  border: 1px solid rgba(201,160,53,.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hero__badge-icon svg { color: var(--c-gold); }
.hero__badge strong { display: block; font-size: .95rem; }
.hero__badge span { font-size: .82rem; color: rgba(255,255,255,.65); }

/* ── ABOUT ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-image { position: relative; }
.about-image img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); width: 100%; object-fit: cover; aspect-ratio: 4/3; }
.about-badge {
  position: absolute;
  bottom: 24px;
  left: -24px;
  background: var(--c-gold);
  color: var(--c-dark);
  padding: 16px 22px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  text-align: center;
}
.about-badge__year { font-family: var(--font-head); font-size: 2rem; font-weight: 700; line-height: 1; }
.about-badge__label { font-size: .75rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; }

.about-content p { color: var(--c-muted); margin: 16px 0 28px; font-size: 1.05rem; line-height: 1.75; }

/* ── STATS ── */
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}
.stat { text-align: center; padding: 16px; }
.stat__value { display: block; font-family: var(--font-head); font-size: 2.2rem; font-weight: 700; color: var(--c-dark2); line-height: 1; }
.stat__label { font-size: .82rem; color: var(--c-muted); margin-top: 4px; }

.stats-band {
  background: var(--c-dark);
  padding: 48px 0;
}
.stats-band-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stats-band .stat__value { color: var(--c-gold); font-size: 2.8rem; }
.stats-band .stat__label { color: rgba(255,255,255,.65); }

/* ── SERVICES ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--c-bg);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--c-border);
  transition: var(--transition);
}
.service-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.service-card__icon {
  width: 56px; height: 56px;
  background: rgba(58,122,82,.12);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.service-card__icon svg { color: var(--c-green); }
.service-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; color: var(--c-dark); }
.service-card p { font-size: .9rem; color: var(--c-muted); line-height: 1.6; }

/* ── NEWS CARDS ── */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.news-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--c-bg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--c-border);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.news-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.news-card__img { aspect-ratio: 3/2; overflow: hidden; }
.news-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.news-card:hover .news-card__img img { transform: scale(1.05); }
.news-card__body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.news-card__date { font-size: .78rem; color: var(--c-muted); margin-bottom: 8px; }
.news-card__title { font-size: 1.05rem; font-weight: 700; color: var(--c-dark); margin-bottom: 10px; line-height: 1.35; }
.news-card__excerpt { font-size: .88rem; color: var(--c-muted); line-height: 1.65; flex: 1; }
.news-card__link { display: inline-flex; align-items: center; gap: 6px; margin-top: 16px; font-size: .85rem; font-weight: 700; color: var(--c-green); }
.news-card__link:hover { color: var(--c-dark2); }
.news-card__link::after { content: '→'; }

.section__footer { text-align: center; margin-top: 48px; }

/* ── SCHEDULE ── */
.schedule-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.schedule-table { width: 100%; border-collapse: collapse; }
.schedule-table th {
  background: var(--c-dark);
  color: var(--c-white);
  padding: 12px 18px;
  text-align: left;
  font-size: .85rem;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.schedule-table th:first-child { border-radius: 8px 0 0 0; }
.schedule-table th:last-child { border-radius: 0 8px 0 0; }
.schedule-table td { padding: 13px 18px; border-bottom: 1px solid var(--c-border); font-size: .95rem; }
.schedule-table tr:last-child td { border-bottom: none; }
.schedule-table tr:hover td { background: var(--c-bg-alt); }
.schedule-table .day { font-weight: 700; color: var(--c-dark); }
.schedule-table .time { color: var(--c-green); font-weight: 700; }

.schedule-note {
  background: rgba(201,160,53,.1);
  border-left: 3px solid var(--c-gold);
  padding: 16px 20px;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin-top: 16px;
  font-size: .9rem;
  color: var(--c-text);
}

/* ── CTA ── */
.cta-section {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../img/ognisko.png');
  background-size: cover;
  background-position: center;
  filter: brightness(.3);
}
.cta-section > .container { position: relative; z-index: 2; text-align: center; }
.cta-section h2 { font-family: var(--font-head); font-size: 2.4rem; color: var(--c-white); margin-bottom: 12px; }
.cta-section p { color: rgba(255,255,255,.8); font-size: 1.1rem; margin-bottom: 32px; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-section .btn-group { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta-phone { font-size: 2rem; font-weight: 700; color: var(--c-gold); margin: 16px 0; letter-spacing: .04em; }

/* ── FOOTER ── */
.footer {
  background: var(--c-dark);
  color: rgba(255,255,255,.7);
  padding: 64px 0 0;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer__brand img { height: 50px; width: 50px; border-radius: 50%; margin-bottom: 16px; }
.footer__brand p { font-size: .88rem; line-height: 1.7; margin-bottom: 20px; }
.footer__social { display: flex; gap: 10px; }
.footer__social a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,.08);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
  color: rgba(255,255,255,.7);
}
.footer__social a:hover { background: var(--c-gold); color: var(--c-dark); }

.footer__col h4 { color: var(--c-white); font-size: .9rem; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 18px; font-weight: 700; }
.footer__col ul { display: flex; flex-direction: column; gap: 9px; }
.footer__col ul a { font-size: .88rem; color: rgba(255,255,255,.65); transition: color var(--transition); }
.footer__col ul a:hover { color: var(--c-gold); }

.footer__formal { font-size: .82rem; display: flex; flex-direction: column; gap: 6px; }
.footer__formal strong { color: rgba(255,255,255,.5); font-size: .72rem; letter-spacing: .06em; text-transform: uppercase; margin-top: 8px; }

.footer__bottom {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .82rem;
  color: rgba(255,255,255,.4);
  flex-wrap: wrap;
  gap: 8px;
}

/* ── BREADCRUMB ── */
.breadcrumb {
  background: var(--c-bg-alt);
  border-bottom: 1px solid var(--c-border);
  padding: 12px 0;
}
.breadcrumb__list { display: flex; align-items: center; gap: 8px; font-size: .85rem; color: var(--c-muted); }
.breadcrumb__list a { color: var(--c-green); }
.breadcrumb__list a:hover { text-decoration: underline; }
.breadcrumb__list li:not(:last-child)::after { content: '/'; margin-left: 8px; }

/* ── PAGE HERO ── */
.page-hero {
  background: var(--c-dark);
  padding: 56px 0;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  right: -100px;
  top: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(201,160,53,.15) 0%, transparent 70%);
}
.page-hero h1 { font-family: var(--font-head); font-size: 2.6rem; color: var(--c-white); margin-bottom: 10px; }
.page-hero p { color: rgba(255,255,255,.7); font-size: 1.1rem; max-width: 600px; }

/* ── GALLERY ── */
.gallery-grid {
  columns: 3;
  gap: 16px;
}
.gallery-item {
  break-inside: avoid;
  margin-bottom: 16px;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.gallery-item img { width: 100%; display: block; transition: transform .4s ease; }
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(28,51,38,0);
  transition: background var(--transition);
}
.gallery-item:hover::after { background: rgba(28,51,38,.3); }

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.93);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox__img { max-width: 90vw; max-height: 90vh; border-radius: var(--radius); }
.lightbox__close { position: absolute; top: 20px; right: 24px; color: white; font-size: 2rem; cursor: pointer; }

/* ── CONTACT ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 60px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 24px; }
.contact-item { display: flex; gap: 16px; }
.contact-item__icon {
  width: 46px; height: 46px;
  background: rgba(58,122,82,.12);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--c-green);
}
.contact-item__label { font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--c-muted); margin-bottom: 4px; }
.contact-item__value { font-size: 1.05rem; font-weight: 600; color: var(--c-dark); }
.contact-item__sub { font-size: .85rem; color: var(--c-muted); }

.contact-form { background: var(--c-bg-alt); border-radius: var(--radius-lg); padding: 36px; }
.contact-form h3 { font-family: var(--font-head); font-size: 1.4rem; margin-bottom: 24px; color: var(--c-dark); }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: .85rem; font-weight: 700; margin-bottom: 7px; color: var(--c-dark); }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--c-border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--c-text);
  background: var(--c-bg);
  transition: border-color var(--transition);
}
.form-group input:focus,
.form-group textarea:focus { outline: none; border-color: var(--c-green); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-check { display: flex; align-items: flex-start; gap: 10px; font-size: .85rem; color: var(--c-muted); margin-bottom: 18px; }
.form-check input { flex-shrink: 0; margin-top: 3px; accent-color: var(--c-green); }

.map-wrap { border-radius: var(--radius-lg); overflow: hidden; margin-top: 48px; box-shadow: var(--shadow-sm); }
.map-wrap iframe { width: 100%; height: 380px; border: 0; display: block; }

/* ── HELP PAGE ── */
.help-steps { counter-reset: step; }
.help-step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 28px 0;
  border-bottom: 1px solid var(--c-border);
}
.help-step:last-child { border-bottom: none; }
.help-step__num {
  counter-increment: step;
  width: 48px; height: 48px;
  background: var(--c-dark);
  color: var(--c-gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 700;
  flex-shrink: 0;
}
.help-step__num::before { content: counter(step); }
.help-step h3 { font-size: 1.1rem; margin-bottom: 6px; }
.help-step p { color: var(--c-muted); font-size: .93rem; }

.hotlines { display: flex; flex-direction: column; gap: 12px; }
.hotline {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.hotline__icon { font-size: 1.5rem; }
.hotline__name { font-weight: 700; font-size: .95rem; color: var(--c-dark); }
.hotline__desc { font-size: .82rem; color: var(--c-muted); }
.hotline__number { margin-left: auto; font-weight: 700; color: var(--c-green); font-size: 1.1rem; white-space: nowrap; }

.faq { display: flex; flex-direction: column; gap: 0; }
.faq-item { border-bottom: 1px solid var(--c-border); }
.faq-item summary {
  padding: 18px 0;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  color: var(--c-dark);
}
.faq-item summary::after { content: '+'; font-size: 1.4rem; color: var(--c-green); flex-shrink: 0; }
.faq-item[open] summary::after { content: '−'; }
.faq-item p { padding: 0 0 18px; color: var(--c-muted); font-size: .95rem; line-height: 1.7; }

/* ── SPOTKANIA PAGE ── */
.meeting-types { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 48px; }
.meeting-type {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--c-border);
  background: var(--c-bg);
}
.meeting-type__header { background: var(--c-dark); padding: 20px 24px; }
.meeting-type__header h3 { color: var(--c-white); font-size: 1.05rem; font-weight: 700; }
.meeting-type__header .badge { font-size: .78rem; color: var(--c-gold); margin-top: 4px; }
.meeting-type__body { padding: 24px; }
.meeting-type__body p { font-size: .93rem; color: var(--c-muted); line-height: 1.7; }

/* ── ADMIN PANEL ── */
.admin-body { background: #f0f2f5; min-height: 100vh; font-family: var(--font-body); }
.admin-header { background: var(--c-dark); padding: 16px 24px; display: flex; align-items: center; gap: 16px; justify-content: space-between; }
.admin-header h1 { color: var(--c-white); font-size: 1.1rem; font-weight: 700; }
.admin-logout { color: rgba(255,255,255,.65); font-size: .85rem; cursor: pointer; }
.admin-logout:hover { color: var(--c-gold); }
.admin-main { max-width: 960px; margin: 40px auto; padding: 0 24px; }
.admin-card { background: var(--c-white); border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow-sm); margin-bottom: 24px; }
.admin-card h2 { font-size: 1.15rem; margin-bottom: 24px; color: var(--c-dark); border-bottom: 1px solid var(--c-border); padding-bottom: 14px; }
.admin-news-list { display: flex; flex-direction: column; gap: 12px; }
.admin-news-item { display: flex; align-items: center; gap: 16px; padding: 14px 18px; background: var(--c-bg-alt); border-radius: var(--radius); border: 1px solid var(--c-border); }
.admin-news-item img { width: 60px; height: 44px; object-fit: cover; border-radius: 4px; flex-shrink: 0; }
.admin-news-item__info { flex: 1; min-width: 0; }
.admin-news-item__title { font-weight: 700; font-size: .95rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.admin-news-item__date { font-size: .8rem; color: var(--c-muted); }
.admin-news-item__actions { display: flex; gap: 8px; flex-shrink: 0; }
.btn--danger { background: #dc3545; color: white; }
.btn--danger:hover { background: #b02a37; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .stats-band-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .section { padding: 56px 0; }
  .section__title { font-size: 1.8rem; }

  /* nav mobile */
  .header__burger { display: flex; }
  .header__menu {
    position: fixed;
    inset: 0 0 0 30%;
    background: var(--c-dark);
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 32px 32px;
    gap: 0;
    transform: translateX(100%);
    transition: transform .35s ease;
    box-shadow: -8px 0 32px rgba(0,0,0,.3);
  }
  .header__menu.open { transform: translateX(0); }
  .header__menu li { width: 100%; border-bottom: 1px solid rgba(255,255,255,.08); }
  .header__menu li a { padding: 14px 0; font-size: 1rem; background: none !important; }
  .header__menu li a.btn--nav { margin: 16px 0 0; background: var(--c-gold) !important; color: var(--c-dark) !important; padding: 14px 20px !important; border-radius: var(--radius); }

  /* hero */
  .hero__badges-grid { grid-template-columns: 1fr; gap: 14px; }
  .hero__title { font-size: 3rem; }

  /* about */
  .about-grid { grid-template-columns: 1fr; }
  .about-badge { left: 16px; }

  /* news */
  .news-grid { grid-template-columns: 1fr; }

  /* stats */
  .stats-band-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-row { grid-template-columns: repeat(3, 1fr); }

  /* schedule */
  .schedule-wrap { grid-template-columns: 1fr; }

  /* services */
  .services-grid { grid-template-columns: 1fr; }

  /* contact */
  .contact-grid { grid-template-columns: 1fr; }

  /* footer */
  .footer__grid { grid-template-columns: 1fr 1fr; }

  /* gallery */
  .gallery-grid { columns: 2; }

  /* meetings */
  .meeting-types { grid-template-columns: 1fr; }

  /* form */
  .form-row { grid-template-columns: 1fr; }

  .page-hero h1 { font-size: 2rem; }
}

@media (max-width: 480px) {
  .hero__title { font-size: 2.4rem; }
  .hero__actions { flex-direction: column; }
  .footer__grid { grid-template-columns: 1fr; }
  .gallery-grid { columns: 1; }
  .stats-band-grid { grid-template-columns: repeat(2, 1fr); }
  .about-badge { display: none; }
  .header__topbar-inner { gap: 12px; }
}
