/* ============================================================
   THE BANGLADESH PROJECT — style.css
   Design: Minimal B&W, Inter font, lots of whitespace
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:       #ffffff;
  --text:     #000000;
  --muted:    #666666;
  --subtle:   #999999;
  --card-bg:  #f5f5f5;
  --border:   #e8e8e8;
  --hover:    #f0f0f0;
  --radius:   10px;
  --shadow:   0 1px 4px rgba(0,0,0,.07);
  --shadow-h: 0 4px 16px rgba(0,0,0,.12);
  --font:     'Inter', Helvetica, Arial, sans-serif;
  --max-w:    720px;
  --transition: .18s ease;
}

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { cursor: pointer; font-family: var(--font); }
input, textarea, select { font-family: var(--font); }

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

.wide-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Navigation ───────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 24px;
  list-style: none;
}

.nav-links a {
  font-size: .85rem;
  font-weight: 500;
  color: var(--muted);
  transition: color var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--text); }

/* ── Page Header ──────────────────────────────────────────── */
.page-header {
  padding: 56px 0 32px;
  text-align: center;
}

.page-header h1 {
  font-size: 1.9rem;
  font-weight: 700;
  letter-spacing: -.02em;
  margin-bottom: 8px;
}

.page-header p {
  font-size: .92rem;
  color: var(--muted);
}

/* ── Section Titles ───────────────────────────────────────── */
.section-title {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}

/* ── Live Badge ───────────────────────────────────────────── */
.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
}
.live-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #000;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: .3; }
}

/* ── Feed ─────────────────────────────────────────────────── */
#feed { padding-bottom: 40px; }

.feed-empty {
  text-align: center;
  padding: 60px 20px;
  color: var(--subtle);
  font-size: .9rem;
}

/* ── Post Card ────────────────────────────────────────────── */
.card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 14px;
  cursor: pointer;
  transition: box-shadow var(--transition), border-color var(--transition);
}
.card:hover {
  box-shadow: var(--shadow-h);
  border-color: #ccc;
}

.card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.card-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid var(--border);
  background: var(--card-bg);
}

.card-avatar-placeholder {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--card-bg);
  border: 1px solid var(--border);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--muted);
}

.card-meta { flex: 1; min-width: 0; }

.card-name {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.card-time {
  font-size: .75rem;
  color: var(--subtle);
  margin-top: 2px;
}

.card-comment {
  font-size: .9rem;
  line-height: 1.65;
  color: #222;
  white-space: pre-wrap;
  word-break: break-word;
}

.card-image {
  margin-top: 12px;
  border-radius: 8px;
  max-height: 320px;
  width: 100%;
  object-fit: cover;
  border: 1px solid var(--border);
}

/* ── A–Z Directory ────────────────────────────────────────── */
#directory {
  padding: 40px 0 60px;
  border-top: 1px solid var(--border);
  margin-top: 20px;
}

.alphabet-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 28px;
}

.alpha-btn {
  width: 34px;
  height: 34px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--bg);
  font-size: .82rem;
  font-weight: 600;
  color: var(--muted);
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.alpha-btn:hover, .alpha-btn.active {
  background: var(--text);
  color: var(--bg);
  border-color: var(--text);
}

.dir-results {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 8px;
}

.dir-name-btn {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: .85rem;
  font-weight: 500;
  text-align: left;
  color: var(--text);
  transition: background var(--transition), box-shadow var(--transition);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.dir-name-btn:hover {
  background: var(--hover);
  box-shadow: var(--shadow);
}

.dir-empty {
  grid-column: 1/-1;
  text-align: center;
  padding: 32px;
  color: var(--subtle);
  font-size: .88rem;
}

/* ── Modal ────────────────────────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.45);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.modal {
  background: var(--bg);
  border-radius: 14px;
  max-width: 560px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0,0,0,.2);
  transform: translateY(10px);
  transition: transform var(--transition);
}
.modal-overlay.open .modal { transform: translateY(0); }

.modal-header {
  padding: 20px 24px 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.modal-close {
  background: none;
  border: none;
  font-size: 1.4rem;
  color: var(--muted);
  line-height: 1;
  padding: 4px;
  flex-shrink: 0;
  transition: color var(--transition);
}
.modal-close:hover { color: var(--text); }

.modal-body { padding: 16px 24px 24px; }

.modal-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 16px;
  border: 1px solid var(--border);
}

.modal-name { font-size: 1.3rem; font-weight: 700; margin-bottom: 4px; }

.modal-time { font-size: .78rem; color: var(--subtle); margin-bottom: 14px; }

.modal-comment {
  font-size: .92rem;
  line-height: 1.7;
  white-space: pre-wrap;
  word-break: break-word;
  color: #222;
}

.modal-image {
  width: 100%;
  border-radius: 8px;
  margin-top: 14px;
  border: 1px solid var(--border);
}

.modal-actions {
  display: flex;
  gap: 8px;
  margin-top: 20px;
  flex-wrap: wrap;
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 18px;
  border-radius: 8px;
  font-size: .84rem;
  font-weight: 600;
  border: 1px solid transparent;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}

.btn-primary {
  background: var(--text);
  color: var(--bg);
  border-color: var(--text);
}
.btn-primary:hover { background: #333; border-color: #333; }

.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}
.btn-outline:hover { background: var(--hover); border-color: #ccc; }

.btn-danger {
  background: transparent;
  color: #cc0000;
  border-color: #f0c0c0;
}
.btn-danger:hover { background: #fff0f0; }

.btn-ghost {
  background: none;
  border: none;
  color: var(--muted);
  padding: 8px 12px;
  font-size: .82rem;
}
.btn-ghost:hover { color: var(--text); }

.btn-sm { padding: 6px 12px; font-size: .78rem; }

/* ── Forms ────────────────────────────────────────────────── */
.form-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 36px 40px;
  max-width: 520px;
  margin: 0 auto;
}

.form-group { margin-bottom: 20px; }

.form-group label {
  display: block;
  font-size: .84rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: #333;
}

.form-group .hint {
  font-size: .76rem;
  color: var(--subtle);
  margin-top: 4px;
}

.form-control {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: .9rem;
  color: var(--text);
  background: var(--bg);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-control:focus {
  border-color: #aaa;
  box-shadow: 0 0 0 3px rgba(0,0,0,.06);
}

textarea.form-control { resize: vertical; min-height: 110px; }

.form-optional {
  font-size: .75rem;
  color: var(--subtle);
  font-weight: 400;
  margin-left: 4px;
}

.upload-area {
  border: 1.5px dashed var(--border);
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  background: var(--card-bg);
  transition: border-color var(--transition);
}
.upload-area:hover { border-color: #aaa; }
.upload-area input[type="file"] { display: none; }
.upload-label {
  font-size: .85rem;
  color: var(--muted);
  cursor: pointer;
}
.upload-preview {
  max-height: 140px;
  border-radius: 6px;
  margin: 0 auto 8px;
  object-fit: cover;
  display: none;
}

.alert {
  padding: 12px 16px;
  border-radius: 8px;
  font-size: .88rem;
  margin-bottom: 20px;
  display: none;
}
.alert-success { background: #f0f0f0; border: 1px solid #ddd; color: #111; }
.alert-error   { background: #fff0f0; border: 1px solid #f0c0c0; color: #cc0000; }
.alert.show { display: block; }

/* ── Admin Panel ──────────────────────────────────────────── */
.admin-layout {
  display: flex;
  min-height: 100vh;
}

.admin-sidebar {
  width: 220px;
  flex-shrink: 0;
  border-right: 1px solid var(--border);
  padding: 24px 0;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
}

.admin-sidebar-logo {
  padding: 0 20px 24px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--border);
  margin-bottom: 12px;
}

.admin-nav { list-style: none; }



.admin-nav-btn {
  width: 100%;
  padding: 10px 20px;
  text-align: left;
  background: none;
  border: none;
  font-size: .88rem;
  font-weight: 500;
  color: var(--muted);
  transition: background var(--transition), color var(--transition);
  position: relative;
}
.admin-nav-btn:hover { background: var(--card-bg); color: var(--text); }
.admin-nav-btn.active { color: var(--text); font-weight: 700; background: var(--card-bg); }

.admin-nav-badge {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--text);
  color: var(--bg);
  font-size: .66rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 20px;
  min-width: 18px;
  text-align: center;
}

.admin-main {
  flex: 1;
  padding: 32px;
  overflow-y: auto;
}

.admin-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}

.admin-header h1 { font-size: 1.3rem; font-weight: 700; }

.admin-search {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
}

.admin-search .form-control {
  max-width: 300px;
}

.admin-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 20px;
  margin-bottom: 12px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.admin-card:hover { box-shadow: var(--shadow); }

.admin-card-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid var(--border);
  background: var(--card-bg);
}

.admin-card-body { flex: 1; min-width: 0; }

.admin-card-name {
  font-size: .95rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.admin-card-comment {
  font-size: .83rem;
  color: var(--muted);
  margin-bottom: 10px;
  white-space: pre-wrap;
  word-break: break-word;
}

.admin-card-image {
  max-height: 120px;
  border-radius: 6px;
  margin-bottom: 10px;
  object-fit: cover;
  border: 1px solid var(--border);
}

.admin-card-meta {
  font-size: .75rem;
  color: var(--subtle);
  margin-bottom: 10px;
}

.admin-card-actions { display: flex; gap: 6px; flex-wrap: wrap; }

/* Badge */
.badge {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 20px;
  font-size: .7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.badge-pending  { background: #f5f5f5; color: #666; border: 1px solid #ddd; }
.badge-approved { background: #000; color: #fff; }

/* Auth screen */
.auth-screen {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

/* ── Toast ────────────────────────────────────────────────── */
.toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 500;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.toast {
  background: var(--text);
  color: var(--bg);
  padding: 12px 18px;
  border-radius: 8px;
  font-size: .85rem;
  font-weight: 500;
  box-shadow: 0 4px 16px rgba(0,0,0,.2);
  animation: slideIn .2s ease;
}

@keyframes slideIn {
  from { transform: translateX(20px); opacity: 0; }
  to   { transform: translateX(0);    opacity: 1; }
}

/* ── Loader ───────────────────────────────────────────────── */
.loader {
  display: flex;
  justify-content: center;
  padding: 40px;
}
.spinner {
  width: 28px; height: 28px;
  border: 2.5px solid var(--border);
  border-top-color: var(--text);
  border-radius: 50%;
  animation: spin .7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ── Divider ──────────────────────────────────────────────── */
.divider { height: 1px; background: var(--border); margin: 32px 0; }

/* ── Footer ───────────────────────────────────────────────── */
footer {
  border-top: 1px solid var(--border);
  padding: 28px 20px;
  text-align: center;
  font-size: .78rem;
  color: var(--subtle);
}

/* ── Media queries ────────────────────────────────────────── */
@media (max-width: 640px) {
  .nav-inner { padding: 0 16px; }
  .page-header { padding: 36px 0 24px; }
  .page-header h1 { font-size: 1.5rem; }
  .form-card { padding: 24px 20px; }
  .admin-layout { flex-direction: column; }
  .admin-sidebar { width: 100%; height: auto; position: static; border-right: none; border-bottom: 1px solid var(--border); padding: 12px 0; }
  .admin-sidebar-logo { padding: 0 16px 12px; }
  .admin-nav { display: flex; overflow-x: auto; padding: 0 8px; gap: 4px; }
  .admin-nav-btn { white-space: nowrap; padding: 8px 14px; }
  .admin-nav-badge { position: static; transform: none; margin-left: 4px; }
  .admin-main { padding: 20px 16px; }
  .dir-results { grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); }
  .modal { border-radius: 0; max-height: 100vh; align-self: flex-end; }
  .modal-overlay { align-items: flex-end; padding: 0; }
}

/* ── Admin Nav Button (top-right) ─────────────────────────── */
.nav-admin-btn {
  font-size: .78rem;
  font-weight: 600;
  color: var(--muted);
  background: none;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 5px 12px;
  cursor: pointer;
  transition: color var(--transition), border-color var(--transition), background var(--transition);
  font-family: var(--font);
}
.nav-admin-btn:hover { color: var(--text); border-color: #aaa; background: var(--hover); }

/* ── Card Post Link ───────────────────────────────────────── */
.card-post-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 10px;
  font-size: .78rem;
  color: var(--muted);
  word-break: break-all;
  transition: color var(--transition);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.card-post-link:hover { color: var(--text); }

/* ── Card View Count ──────────────────────────────────────── */
.card-views {
  margin-left: auto;
  flex-shrink: 0;
  font-size: .72rem;
  color: var(--subtle);
  display: flex;
  align-items: center;
  gap: 3px;
  white-space: nowrap;
}


/* ── Directory Page ───────────────────────────────────────── */
.directory-layout {
  display: flex;
  max-width: 820px;
  margin: 0 auto;
  padding: 0 20px;
  gap: 0;
  position: relative;
}

.dir-main { flex: 1; padding-bottom: 80px; padding-right: 36px; }

/* ── Vertical Alpha Strip (contacts-style) ────────────────── */
.alpha-strip {
  position: fixed;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1px;
  z-index: 50;
  user-select: none;
  -webkit-user-select: none;
  touch-action: none;
}

.alpha-strip-letter {
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .65rem;
  font-weight: 700;
  color: var(--muted);
  border-radius: 4px;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), transform .1s ease;
  position: relative;
}
.alpha-strip-letter:hover,
.alpha-strip-letter.touching {
  background: var(--text);
  color: var(--bg);
  transform: scale(1.15);
}

/* Floating letter bubble shown while dragging */
.alpha-bubble {
  position: fixed;
  right: 50px;
  width: 52px;
  height: 52px;
  border-radius: 50% 50% 50% 0;
  background: var(--text);
  color: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 700;
  pointer-events: none;
  z-index: 300;
  transform: scale(0);
  transition: transform .15s cubic-bezier(.34,1.56,.64,1), top .08s ease;
  box-shadow: 0 4px 16px rgba(0,0,0,.25);
}
.alpha-bubble.visible { transform: scale(1); }

/* ── Directory Letter Section ─────────────────────────────── */
.dir-letter-section { margin-bottom: 8px; }

.dir-letter-header {
  position: sticky;
  top: 56px;  /* below nav */
  background: var(--bg);
  padding: 10px 0 6px;
  font-size: 1.1rem;
  font-weight: 800;
  border-bottom: 2px solid var(--text);
  margin-bottom: 8px;
  z-index: 10;
  letter-spacing: -.01em;
}

.dir-name-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 8px;
  cursor: pointer;
  transition: background var(--transition);
}
.dir-name-row:hover { background: var(--card-bg); }

.dir-name-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid var(--border);
  background: var(--card-bg);
}
.dir-name-initial {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--card-bg);
  border: 1px solid var(--border);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .9rem;
  color: var(--muted);
}

.dir-name-text {
  font-size: .9rem;
  font-weight: 500;
  flex: 1;
}
.dir-name-count {
  font-size: .72rem;
  color: var(--subtle);
}

.dir-empty-letter {
  padding: 8px 12px;
  font-size: .82rem;
  color: var(--subtle);
}

/* search in directory */
.dir-search-wrap {
  position: sticky;
  top: 56px;
  z-index: 20;
  background: var(--bg);
  padding: 12px 0;
  margin-bottom: 8px;
  border-bottom: 1px solid var(--border);
}
.dir-search-wrap .form-control {
  max-width: 100%;
  background: var(--card-bg);
  border-color: var(--border);
}

@media (max-width: 640px) {
  .alpha-strip { right: 4px; }
  .alpha-strip-letter { width: 16px; height: 16px; font-size: .55rem; }
  .alpha-bubble { right: 32px; }
  .dir-main { padding-right: 28px; }
}

/* ── Modal Field Labels ───────────────────────────────────── */
.field-label {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--subtle);
  margin-bottom: 4px;
  margin-top: 16px;
}
.field-label:first-child { margin-top: 0; }

/* ── Culprit Avatar — clickable ───────────────────────────── */
.modal-avatar-wrap {
  display: inline-block;
  cursor: zoom-in;
  position: relative;
}
.modal-avatar-wrap::after {
  content: "⊕";
  position: absolute;
  bottom: 2px;
  right: 2px;
  font-size: .7rem;
  background: var(--text);
  color: var(--bg);
  border-radius: 50%;
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}
.modal-avatar-wrap:hover::after { opacity: 1; }

/* ── Image Zoom Overlay (Instagram style) ─────────────────── */
.img-zoom-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.92);
  z-index: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
  cursor: zoom-out;
}
.img-zoom-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.img-zoom-overlay img {
  max-width: 94vw;
  max-height: 94vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 8px 40px rgba(0,0,0,.6);
  transform: scale(.92);
  transition: transform .2s cubic-bezier(.34,1.56,.64,1);
}
.img-zoom-overlay.open img { transform: scale(1); }

/* ── About Section (footer) ──────────────────────────────── */
.about-section {
  border-top: 1px solid var(--border);
  padding: 48px 20px 60px;
  max-width: var(--max-w);
  margin: 0 auto;
}
.about-section h2 {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}
.about-section p {
  font-size: .88rem;
  line-height: 1.75;
  color: #444;
  max-width: 520px;
}

