/* ═══════════════════════════════════════════
   OCOLUL SILVIC ȘOIMUL ARIEȘ R.A. — Styles
   ═══════════════════════════════════════════ */

/* ── VARIABLES ── */
:root {
  --primary: #2d6a2d;
  --accent:  #4a9e4a;
  --light:   #e8f5e8;
  --brown:   #5c3d1e;
  --dark:    #1a3d1a;
  --text:    #1a2e1a;
  --white:   #ffffff;
  --font-b:  'Source Sans 3', 'Segoe UI', sans-serif;
  --max:     1200px;
  --nav-h:   72px;
  --shadow:  0 8px 40px rgba(45, 106, 45, 0.12);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-b);
  color: var(--text);
  background: var(--white);
  line-height: 1.75;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a   { text-decoration: none; color: inherit; }

/* ══════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  height: var(--nav-h);
  background: var(--dark);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2rem;
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}

.nav-brand {
  display: flex; align-items: center; gap: 0.75rem;
  color: var(--white); flex-shrink: 0;
}
.nav-brand svg         { width: 44px; height: 44px; flex-shrink: 0; }
.nav-brand-text        { font-family: var(--font-h); font-size: 0.88rem; line-height: 1.25; color: var(--white); }
.nav-brand-text strong { display: block; font-size: 0.95rem; }

/* hamburger checkbox (hidden) */
.nav-toggle { position: absolute; opacity: 0; width: 0; height: 0; pointer-events: none; }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 6px; flex-shrink: 0; z-index: 10;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle:checked + .hamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle:checked + .hamburger span:nth-child(2) { opacity: 0; }
.nav-toggle:checked + .hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-menu  { display: flex; align-items: center; }
.nav-links { display: flex; align-items: center; gap: 0.1rem; list-style: none; }
.nav-links a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 0.45rem 0.7rem; border-radius: 4px;
  transition: color 0.2s, background 0.2s; white-space: nowrap;
}
.nav-links a:hover { color: var(--white); background: rgba(255, 255, 255, 0.1); }
.nav-links a.active {
  color: var(--white); background: rgba(255, 255, 255, 0.08);
  border-bottom: 2px solid var(--brown); border-radius: 4px 4px 0 0;
}

@media (max-width: 920px) {
  .hamburger { display: flex; }
  .nav-menu {
    position: absolute; top: var(--nav-h); left: 0; right: 0;
    background: var(--dark); padding: 0.75rem 1.25rem 1.25rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    display: none;
  }
  .nav-toggle:checked ~ .nav-menu { display: block; }
  .nav-links { flex-direction: column; align-items: flex-start; gap: 0.25rem; width: 100%; }
  .nav-links a { display: block; width: 100%; padding: 0.7rem 0.75rem; font-size: 0.875rem; }
}

/* ══════════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════════ */
.fade-up {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up:nth-child(2) { transition-delay: 0.12s; }
.fade-up:nth-child(3) { transition-delay: 0.22s; }
.fade-up:nth-child(4) { transition-delay: 0.32s; }

@keyframes heroFadeDown {
  from { opacity: 0; transform: translateY(-28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ══════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.85rem 1.9rem; border-radius: 50px;
  font-family: var(--font-b); font-weight: 600; font-size: 0.95rem;
  letter-spacing: 0.03em; cursor: pointer; transition: all 0.25s;
  border: 2px solid transparent;
}
.btn-outline-white { border-color: rgba(255, 255, 255, 0.75); color: var(--white); background: transparent; }
.btn-outline-white:hover { background: rgba(255, 255, 255, 0.14); border-color: var(--white); }

.btn-accent { background: var(--accent); color: var(--white); border-color: var(--accent); }
.btn-accent:hover { background: var(--primary); border-color: var(--primary); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(74, 158, 74, 0.38); }

.btn-green { background: var(--primary); color: var(--white); border-color: var(--primary); }
.btn-green:hover { background: var(--dark); border-color: var(--dark); transform: translateY(-2px); }

.btn-brown { background: var(--brown); color: var(--white); border-color: var(--brown); }
.btn-brown:hover { background: #7a5128; border-color: #7a5128; transform: translateY(-2px); }

/* small download button (tables / cards) */
.btn-download-sm {
  display: inline-flex; align-items: center; gap: 0.35rem;
  background: var(--brown); color: var(--white);
  padding: 0.38rem 0.9rem; border-radius: 50px;
  font-size: 0.8rem; font-weight: 600;
  transition: background 0.2s, transform 0.2s;
}
.btn-download-sm:hover { background: #7a5128; transform: translateY(-2px); }

/* ══════════════════════════════════════════
   WAVE DIVIDER
══════════════════════════════════════════ */
.wave { display: block; width: 100%; overflow: hidden; line-height: 0; margin-bottom: -2px; }
.wave svg { display: block; width: 100%; }

/* ══════════════════════════════════════════
   PAGE HERO  (sub-pages — 40vh)
══════════════════════════════════════════ */
.page-hero {
  position: relative; height: 40vh; min-height: 260px;
  display: flex; align-items: flex-end; overflow: hidden;
  padding-top: var(--nav-h);
}
.page-hero-bg     { position: absolute; inset: 0; background-size: cover; background-position: center; }
.page-hero-overlay{ position: absolute; inset: 0; background: rgba(26, 61, 26, 0.72); }
.page-hero-content {
  position: relative; z-index: 2;
  max-width: var(--max); margin: 0 auto;
  padding: 0 2rem 3rem; width: 100%;
}
.breadcrumb       { color: rgba(255, 255, 255, 0.62); font-size: 0.85rem; margin-bottom: 0.6rem; }
.breadcrumb a     { color: rgba(255, 255, 255, 0.62); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span  { margin: 0 0.4rem; }
.page-hero-content h1 {
  font-family: var(--font-h);
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--white); font-weight: 700;
}

/* ══════════════════════════════════════════
   HERO  (index.html — full-viewport)
══════════════════════════════════════════ */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center; text-align: center;
  overflow: hidden; padding-top: var(--nav-h);
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('https://test.x01.ro/ossa/imagini/intro_os.webp?w=1600') center / cover no-repeat;
}
.hero-overlay { position: absolute; inset: 0; background: rgba(26, 61, 26, 0.65); }
.hero-noise {
  position: absolute; inset: 0; pointer-events: none;
  background-image: repeating-radial-gradient(circle, transparent 0, rgba(0, 0, 0, 0.022) 1px, transparent 2px);
  background-size: 4px 4px;
}
.hero-content { position: relative; z-index: 2; max-width: 840px; padding: 2rem; }
.hero-content h1 {
  font-family: var(--font-h);
  font-size: clamp(2rem, 5.5vw, 3.6rem);
  font-weight: 700; color: var(--white); line-height: 1.18; margin-bottom: 1.25rem;
  animation: heroFadeDown 0.9s ease both;
}
.hero-content .subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem); color: rgba(255, 255, 255, 0.87);
  font-weight: 300; letter-spacing: 0.02em; margin-bottom: 2.5rem;
  animation: heroFadeDown 0.9s 0.18s ease both;
}
.hero-ctas {
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
  animation: heroFadeUp 0.9s 0.38s ease both;
}

/* ══════════════════════════════════════════
   SECTION BASE  (index.html sections)
══════════════════════════════════════════ */
section { position: relative; }
.section-inner { max-width: var(--max); margin: 0 auto; padding: 5rem 2rem; }
.section-label {
  display: block; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 0.6rem;
}
h2.section-title {
  font-family: var(--font-h);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700; line-height: 1.2; margin-bottom: 1.75rem; color: var(--text);
}
h2.section-title.white { color: var(--white); }

/* ══════════════════════════════════════════
   CINE SUNTEM  (index.html)
══════════════════════════════════════════ */
#cine-suntem { background: var(--light); }

.cine-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.cine-text p  { margin-bottom: 1.2rem; color: var(--text); font-size: 1.02rem; }
.cine-text h3 { font-family: var(--font-h); font-size: 1.4rem; color: var(--primary); margin: 2rem 0 0.75rem; }

.pullquote {
  border-left: 4px solid var(--brown); padding: 1rem 1.5rem; margin: 2rem 0;
  background: rgba(92, 61, 30, 0.07); border-radius: 0 8px 8px 0;
}
.pullquote p {
  font-family: var(--font-h); font-style: italic;
  color: var(--brown) !important; font-size: 1.12rem !important; margin: 0 !important;
}

.cine-image img {
  width: 100%; height: 520px; object-fit: cover;
}

@media (max-width: 780px) {
  .cine-grid { grid-template-columns: 1fr; gap: 2rem; }
  .cine-image img { height: 402px; }
}

/* ══════════════════════════════════════════
   DESPRE NOI  (index.html)
══════════════════════════════════════════ */
#despre-noi { background: var(--white); }
.despre-intro { max-width: 760px; margin: 0 auto 1rem; text-align: center; font-size: 1.02rem; }

.value-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin: 3rem 0; }
.value-card {
  background: var(--primary); color: var(--white);
  padding: 2rem 1.5rem; border-radius: 16px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.value-card:hover { transform: translateY(-7px); box-shadow: 0 20px 52px rgba(45, 106, 45, 0.32); }
.value-card .icon { font-size: 2.4rem; display: block; margin-bottom: 1rem; }
.value-card h3    { font-family: var(--font-h); font-size: 1.18rem; margin-bottom: 0.7rem; color: var(--white); }
.value-card p     { font-size: 0.94rem; opacity: 0.88; line-height: 1.65; }

@media (max-width: 780px) { .value-cards { grid-template-columns: 1fr; } }

.gallery-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 2rem; }
.gallery-strip .photo { overflow: hidden; border-radius: 12px; height: 220px; }
.gallery-strip .photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-strip .photo:hover img { transform: scale(1.07); }

@media (max-width: 640px) {
  .gallery-strip { grid-template-columns: 1fr; }
  .gallery-strip .photo { height: 180px; }
}

/* ══════════════════════════════════════════
   ANUNȚURI PREVIEW STRIP  (index.html)
══════════════════════════════════════════ */
.anunturi-preview { background: var(--dark); }

.preview-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-bottom: 2.5rem; }
.preview-card {
  background: rgba(255, 255, 255, 0.06); border-left: 3px solid var(--accent);
  border-radius: 0 12px 12px 0; padding: 1.5rem;
  transition: background 0.3s, transform 0.3s;
}
.preview-card:hover { background: rgba(255, 255, 255, 0.11); transform: translateX(5px); }

.date-badge {
  display: inline-block; background: var(--brown); color: var(--white);
  font-size: 0.72rem; font-weight: 700; padding: 0.22rem 0.8rem; border-radius: 50px;
  letter-spacing: 0.06em; margin-bottom: 0.75rem; text-transform: uppercase;
}
.preview-card h3        { font-family: var(--font-h); font-size: 0.98rem; color: var(--white); margin-bottom: 0.75rem; line-height: 1.45; }
.preview-card .read-more{ color: var(--accent); font-size: 0.875rem; font-weight: 600; transition: color 0.2s; }
.preview-card .read-more:hover { color: var(--white); }

.text-center { text-align: center; }

@media (max-width: 900px) { .preview-cards { grid-template-columns: 1fr; } }

/* ══════════════════════════════════════════
   CONTACT  (index.html)
══════════════════════════════════════════ */
#contact { background: var(--light); }

.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 4rem; align-items: start; }
@media (max-width: 780px) { .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; } }

.contact-info h3 { font-family: var(--font-h); font-size: 1.4rem; color: var(--primary); margin-bottom: 1.5rem; }
.contact-item { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.25rem; font-size: 1rem; }
.contact-item .ci-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 0.1rem; }
.contact-item a { color: var(--primary); font-weight: 600; }
.contact-item a:hover { color: var(--accent); text-decoration: underline; }

.contact-form {
  background: var(--white); padding: 2rem;
  border-radius: 16px; box-shadow: var(--shadow);
}
.form-group          { margin-bottom: 1.2rem; }
.form-group label    { display: block; font-weight: 600; font-size: 0.88rem; margin-bottom: 0.4rem; letter-spacing: 0.03em; }
.form-group input,
.form-group textarea {
  width: 100%; padding: 0.72rem 1rem;
  border: 1.5px solid #c8e4c8; border-radius: 8px;
  font-family: var(--font-b); font-size: 0.95rem; color: var(--text);
  background: var(--white); transition: border-color 0.2s; outline: none;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--accent); }
.form-group textarea  { height: 130px; resize: vertical; }
.form-success {
  display: none; text-align: center; padding: 2.5rem 1.5rem;
  font-family: var(--font-h); font-size: 1.25rem; color: var(--primary);
}

/* ══════════════════════════════════════════
   CONTENT WRAPPER  (sub-pages)
══════════════════════════════════════════ */
.content-section { background: var(--white); }
.content-inner   { max-width: var(--max); margin: 0 auto; padding: 3.5rem 2rem 5rem; }

/* ══════════════════════════════════════════
   INFO BOX  (licitatii / preselectii)
══════════════════════════════════════════ */
.info-box {
  background: var(--light); border-left: 4px solid var(--accent);
  border-radius: 0 12px 12px 0; padding: 1.25rem 1.5rem;
  margin-bottom: 2.5rem; font-size: 0.97rem; color: var(--text);
}

/* ══════════════════════════════════════════
   SEARCH BAR  (anunturi.html)
══════════════════════════════════════════ */
.search-bar { display: flex; align-items: center; gap: 1rem; margin-bottom: 2.5rem; flex-wrap: wrap; }
.search-bar input {
  flex: 1; min-width: 240px; padding: 0.75rem 1.1rem;
  border: 1.5px solid #c8e4c8; border-radius: 8px;
  font-family: var(--font-b); font-size: 0.95rem; color: var(--text);
  outline: none; transition: border-color 0.2s;
}
.search-bar input:focus       { border-color: var(--accent); }
.search-bar input::placeholder{ color: #8aaa8a; }
.search-label { font-weight: 600; font-size: 0.9rem; color: var(--primary); white-space: nowrap; }

/* ══════════════════════════════════════════
   ARTICLE GRID  (anunturi.html)
══════════════════════════════════════════ */
.article-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
@media (max-width: 700px) { .article-grid { grid-template-columns: 1fr; } }

.article-card {
  border: 1.5px solid #dceedd; border-left: 4px solid var(--accent);
  border-radius: 0 12px 12px 0; padding: 1.5rem 1.5rem 1.5rem 1.25rem;
  background: var(--white); transition: box-shadow 0.3s, transform 0.3s;
}
.article-card:hover { box-shadow: 0 10px 36px rgba(45, 106, 45, 0.14); transform: translateY(-4px); }
.article-card h3      { font-family: var(--font-h); font-size: 1.05rem; color: var(--text); margin-bottom: 0.6rem; line-height: 1.4; }
.article-card .excerpt{ font-size: 0.9rem; color: #4a6a4a; margin-bottom: 1rem; line-height: 1.6; }
.article-card .card-actions { display: flex; align-items: center; gap: 0.75rem; }

.btn-download {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: var(--brown); color: var(--white);
  padding: 0.45rem 1rem; border-radius: 50px;
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.04em;
  transition: background 0.2s, transform 0.2s;
}
.btn-download:hover { background: #7a5128; transform: translateY(-2px); }
.btn-download .dl-icon { font-size: 1rem; }

/* ══════════════════════════════════════════
   PAGINATION  (anunturi.html)
══════════════════════════════════════════ */
.pagination { display: flex; gap: 0.5rem; margin-top: 3rem; justify-content: center; flex-wrap: wrap; }
.pagination a,
.pagination span {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 8px;
  font-size: 0.9rem; font-weight: 600;
  border: 1.5px solid #c8e4c8; color: var(--text); transition: all 0.2s;
}
.pagination a:hover    { background: var(--accent); color: var(--white); border-color: var(--accent); }
.pagination .current   { background: var(--primary); color: var(--white); border-color: var(--primary); }
.pagination .dots      { border: none; color: #8aaa8a; }
.pagination .next      { width: auto; padding: 0 1.1rem; letter-spacing: 0.04em; }

/* no-results message */
.no-results { grid-column: 1 / -1; text-align: center; padding: 3rem; color: #8aaa8a; font-style: italic; display: none; }

/* ══════════════════════════════════════════
   TOOLBAR  (licitatii / preselectii)
══════════════════════════════════════════ */
.toolbar {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem; margin-bottom: 1.75rem;
}
.view-toggle { display: flex; gap: 0.5rem; }
.toggle-btn {
  padding: 0.5rem 1.2rem; border-radius: 8px; border: 1.5px solid #c8e4c8;
  font-family: var(--font-b); font-size: 0.88rem; font-weight: 600;
  color: var(--text); background: var(--white); cursor: pointer; transition: all 0.2s;
}
.toggle-btn.active      { background: var(--primary); color: var(--white); border-color: var(--primary); }
.toggle-btn:hover:not(.active) { background: var(--light); }

.year-filter { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.year-btn {
  padding: 0.4rem 1rem; border-radius: 50px; border: 1.5px solid #c8e4c8;
  font-size: 0.85rem; font-weight: 600; color: var(--text);
  background: var(--white); cursor: pointer; transition: all 0.2s;
}
.year-btn.active      { background: var(--brown); color: var(--white); border-color: var(--brown); }
.year-btn:hover:not(.active) { background: var(--light); }

/* ══════════════════════════════════════════
   TABLE VIEW  (licitatii / preselectii)
══════════════════════════════════════════ */
.table-wrapper { overflow-x: auto; border-radius: 12px; box-shadow: var(--shadow); }
table          { width: 100%; border-collapse: collapse; font-size: 0.93rem; }
thead          { background: var(--primary); color: var(--white); }
thead th       { padding: 1rem 1.25rem; text-align: left; font-weight: 600; letter-spacing: 0.04em; font-size: 0.85rem; text-transform: uppercase; }
tbody tr       { border-bottom: 1px solid #e0eed0; transition: background 0.2s; }
tbody tr:last-child { border-bottom: none; }
tbody tr:hover { background: var(--light); }
td             { padding: 0.9rem 1.25rem; vertical-align: middle; }
td:first-child { color: #6a8a6a; font-size: 0.85rem; white-space: nowrap; }
td:nth-child(2){ font-family: var(--font-h); font-weight: 600; font-size: 0.95rem; line-height: 1.4; }
td:nth-child(3){ white-space: nowrap; font-weight: 600; color: var(--primary); }

/* ══════════════════════════════════════════
   CARD VIEW  (licitatii / preselectii)
══════════════════════════════════════════ */
.card-view { display: none; }

.licit-card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
@media (max-width: 900px) { .licit-card-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 580px) { .licit-card-grid { grid-template-columns: 1fr; } }

.licit-card {
  border: 1.5px solid #dceedd; border-top: 4px solid var(--accent);
  border-radius: 0 0 12px 12px; padding: 1.5rem;
  background: var(--white); transition: box-shadow 0.3s, transform 0.3s;
}
.licit-card:hover        { box-shadow: 0 12px 40px rgba(45, 106, 45, 0.15); transform: translateY(-5px); }
.licit-card .announce-date{ font-size: 0.78rem; color: #8aaa8a; margin-bottom: 0.5rem; }
.licit-card h3           { font-family: var(--font-h); font-size: 0.95rem; color: var(--text); margin-bottom: 1rem; line-height: 1.45; }
.licit-card .licit-date  { font-size: 0.88rem; font-weight: 700; color: var(--primary); margin-bottom: 1rem; }

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.footer { background: var(--dark); color: rgba(255, 255, 255, 0.78); }

.footer-trees-svg { display: block; width: 100%; line-height: 0; }

.footer-inner {
  max-width: var(--max); margin: 0 auto;
  padding: 2.5rem 2rem 2rem;
  display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 3rem;
}
@media (max-width: 780px) { .footer-inner { grid-template-columns: 1fr; gap: 2rem; } }

.footer-col h4   { font-family: var(--font-h); font-size: 1.05rem; color: var(--white); margin-bottom: 1rem; }
.footer-col p    { font-size: 0.88rem; line-height: 1.7; }
.footer-tagline  { font-style: italic; font-family: var(--font-h); color: rgba(255, 255, 255, 0.62); font-size: 0.9rem; margin-top: 0.75rem; }

.footer-links    { list-style: none; }
.footer-links li { margin-bottom: 0.45rem; }
.footer-links a  { color: rgba(255, 255, 255, 0.72); font-size: 0.88rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--accent); }

.footer-contact-item { display: flex; align-items: flex-start; gap: 0.7rem; margin-bottom: 0.7rem; font-size: 0.88rem; line-height: 1.5; }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.2rem 2rem; text-align: center;
  font-size: 0.78rem; color: rgba(255, 255, 255, 0.44);
  max-width: var(--max); margin: 0 auto;
}

/* ══════════════════════════════════════════
   UTILITIES
══════════════════════════════════════════ */
.hidden { display: none !important; }
