/* ================================================
   Star Party Bangladesh — Shared Stylesheet
   Editorial magazine: cream UI + dark hero strips
   ================================================ */

@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('fonts/cormorant-garamond-300.woff2') format('woff2');
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: italic;
  font-weight: 300;
  font-display: swap;
  src: url('fonts/cormorant-garamond-300-italic.woff2') format('woff2');
}
@font-face {
  font-family: 'Jost';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('fonts/jost.woff2') format('woff2-variations'),
       url('fonts/jost.woff2') format('woff2');
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream: #f5f2ed;
  --cream-soft: #faf8f3;
  --ink: #1a1814;
  --ink-light: #524d48;
  --ink-faint: #c8c3bc;
  --night: #0b0d14;
  --night-soft: #131724;
  --accent: #c08a4a;
  --accent-dim: #8b6534;
  --star: #f4d68a;
  --white: #ffffff;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Jost', system-ui, -apple-system, sans-serif;
  --gap: clamp(1rem, 3vw, 2rem);
  --section: clamp(4rem, 9vw, 7rem);
}

html { scroll-behavior: smooth; overflow-x: hidden; max-width: 100%; }

body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--ink);
  font-size: 15px;
  line-height: 1.7;
  font-weight: 300;
  overflow-x: hidden;
}

img, video, iframe { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

.skip-link {
  position: absolute; top: -40px; left: 0;
  background: var(--ink); color: var(--cream);
  padding: 0.6rem 1rem; z-index: 9999;
  font-size: 0.75rem; letter-spacing: 0.18em;
  text-transform: uppercase; text-decoration: none;
}
.skip-link:focus { top: 0; outline: 2px solid var(--accent); }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

/* ── Navigation ── */
nav.primary {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.2rem clamp(1.5rem, 5vw, 3.5rem);
  background: rgba(245,242,237,0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(26,24,20,0.06);
}
.nav-logo {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 300; font-style: italic;
  letter-spacing: 0.04em;
  color: var(--ink);
  text-decoration: none;
}
.nav-logo svg { width: 22px; height: 22px; color: var(--accent); }
.nav-links {
  display: flex; gap: 2rem; list-style: none;
}
.nav-links a {
  font-size: 0.68rem; font-weight: 400;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink); text-decoration: none;
  opacity: 0.78; transition: opacity 0.3s, color 0.3s;
}
.nav-links a:hover, .nav-links a[aria-current="page"] { opacity: 1; color: var(--accent); }
.nav-links a[aria-current="page"] { border-bottom: 1px solid var(--accent); padding-bottom: 0.15rem; }

.nav-hamburger {
  display: none;
  flex-direction: column; gap: 5px;
  background: none; border: none; padding: 6px; cursor: pointer;
}
.nav-hamburger span {
  display: block; width: 24px; height: 1px;
  background: var(--ink); transition: all 0.3s;
}
.nav-mobile {
  display: none; position: fixed; inset: 0;
  background: var(--cream); z-index: 200;
  flex-direction: column; align-items: center; justify-content: center;
  gap: 1.4rem;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-family: var(--serif);
  font-size: 1.45rem; font-weight: 300;
  font-style: italic; color: var(--ink);
  text-decoration: none;
}
.nav-mobile-close {
  position: absolute; top: 1.4rem; right: 1.5rem;
  font-size: 0.65rem; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--ink-light);
  background: none; border: none; cursor: pointer;
}

/* ── Sections ── */
section { padding: var(--section) clamp(1.5rem, 5vw, 4rem); }
.container { max-width: 1180px; margin: 0 auto; }

.section-header {
  display: flex; align-items: baseline; gap: 1.6rem;
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}
.section-number {
  font-size: 0.62rem; font-weight: 400;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--accent); flex-shrink: 0;
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  font-weight: 300; line-height: 1.1;
}
.section-title em { font-style: italic; color: var(--accent); }
.section-rule {
  flex: 1; height: 1px; background: var(--ink-faint);
  margin-bottom: 0.3rem;
}
.section-intro {
  font-size: 0.95rem; color: var(--ink-light);
  max-width: 60ch; line-height: 1.85;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

/* ── DARK STRIP (hero + feature sections) ── */
.dark-strip {
  background: var(--night);
  color: var(--cream);
  position: relative; overflow: hidden;
}
.dark-strip::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 30%, rgba(192,138,74,0.18), transparent 55%),
              radial-gradient(ellipse at 20% 80%, rgba(244,214,138,0.08), transparent 50%);
  pointer-events: none;
}
.dark-strip > * { position: relative; z-index: 1; }
.dark-strip .section-title { color: var(--cream); }
.dark-strip .section-title em { color: var(--star); }
.dark-strip .section-rule { background: rgba(245,242,237,0.18); }
.dark-strip .section-intro { color: rgba(245,242,237,0.7); }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex; flex-direction: column; justify-content: center;
  padding: clamp(7rem, 14vw, 11rem) clamp(1.5rem, 5vw, 4rem) clamp(4rem, 8vw, 6rem);
  background: var(--night);
  color: var(--cream);
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('images/hero.webp') center/cover no-repeat;
  filter: brightness(0.55) saturate(1.1);
  z-index: 0;
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,13,20,0.4) 0%, rgba(11,13,20,0.75) 100%);
}
.hero-inner {
  position: relative; z-index: 2;
  max-width: 920px; margin: 0 auto;
  text-align: center;
}
.hero-eyebrow {
  font-size: 0.65rem; letter-spacing: 0.4em;
  text-transform: uppercase; color: var(--star);
  font-weight: 400; margin-bottom: 1.4rem;
  opacity: 0; animation: fadeUp 1s ease 0.3s forwards;
}
.hero-title {
  font-family: var(--serif);
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 300; line-height: 1; letter-spacing: -0.01em;
  margin-bottom: 1.4rem;
  opacity: 0; animation: fadeUp 1s ease 0.5s forwards;
}
.hero-title em { display: block; font-style: italic; color: var(--star); }
.hero-sub {
  font-size: 1rem; line-height: 1.9;
  color: rgba(245,242,237,0.78);
  max-width: 52ch; margin: 0 auto 2.4rem;
  font-weight: 300;
  opacity: 0; animation: fadeUp 1s ease 0.7s forwards;
}
.hero-cta {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 1rem 2.4rem;
  background: var(--accent); color: var(--night);
  font-family: var(--sans);
  font-size: 0.7rem; letter-spacing: 0.26em;
  text-transform: uppercase; font-weight: 500;
  text-decoration: none;
  transition: background 0.3s, transform 0.3s;
  opacity: 0; animation: fadeUp 1s ease 0.9s forwards;
}
.hero-cta:hover { background: var(--star); transform: translateY(-2px); }

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

/* ── ABOUT ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.about-grid p {
  font-size: 0.98rem; line-height: 1.95;
  color: var(--ink-light); margin-bottom: 1.4rem;
  font-weight: 400;
}

/* ── Stats ── */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--ink-faint);
  border: 1px solid var(--ink-faint);
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
}
.stat {
  background: var(--cream); padding: 1.8rem 1rem;
  text-align: center;
}
.stat-num {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 300; line-height: 1;
  color: var(--ink);
}
.stat-label {
  font-size: 0.7rem; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--ink-light);
  font-weight: 400; margin-top: 0.5rem;
}
.dark-strip .profile-name { color: var(--cream); }
.dark-strip .profile-role { color: rgba(245,242,237,0.65); }
.dark-strip .profile-tag { color: var(--star); }
.dark-strip .profile-card:hover .profile-photo {
  box-shadow: 0 14px 30px -14px rgba(244,214,138,0.55);
}
.dark-strip .stats { background: rgba(245,242,237,0.18); border-color: rgba(245,242,237,0.18); }
.dark-strip .stat { background: var(--night-soft); }
.dark-strip .stat-num { color: var(--cream); }
.dark-strip .stat-label { color: rgba(245,242,237,0.55); }

/* ── Founders / Photographer cards ── */
.profile-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: clamp(1.5rem, 3vw, 2.4rem);
}
.profile-card {
  display: flex; flex-direction: column; align-items: center;
  text-decoration: none; color: inherit;
  background: transparent;
  padding: 1.4rem 1rem 1.6rem;
  text-align: center;
  transition: transform 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
}
.profile-card:hover { transform: translateY(-4px); }
.profile-photo {
  width: 168px; height: 168px;
  border-radius: 50%;
  overflow: hidden;
  background: transparent;
  margin-bottom: 1.1rem;
  transition: box-shadow 0.4s;
}
.profile-card:hover .profile-photo {
  box-shadow: 0 14px 30px -14px rgba(192,138,74,0.5);
}
.profile-photo img {
  width: 100%; height: 100%; object-fit: cover; object-position: center top;
  filter: contrast(1.03) saturate(0.95);
  transition: transform 0.9s cubic-bezier(0.25,0.46,0.45,0.94), filter 0.6s;
}
.profile-card:hover .profile-photo img {
  transform: scale(1.06);
  filter: contrast(1) saturate(1);
}
.profile-body { padding: 0; }
.profile-tag {
  font-size: 0.6rem; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--accent);
  font-weight: 400; margin-bottom: 0.5rem;
}
.profile-name {
  font-family: var(--serif);
  font-size: 1.3rem; font-weight: 300;
  line-height: 1.2; color: var(--ink);
  margin-bottom: 0.4rem;
}
.profile-role {
  font-size: 0.78rem; color: var(--ink-light);
  font-weight: 400; line-height: 1.5;
}

/* Founder grid: 3-up with more prominence */
.founder-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.6rem, 3vw, 2.8rem);
}
@media (max-width: 900px) { .founder-grid { grid-template-columns: 1fr; } }

/* ── Events table ── */
.events-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}
.events-table thead th {
  text-align: left;
  font-size: 0.65rem; letter-spacing: 0.24em;
  text-transform: uppercase; color: var(--accent);
  font-weight: 500;
  padding: 1rem 0.8rem; border-bottom: 2px solid var(--ink);
}
.events-table tbody td {
  padding: 1rem 0.8rem;
  border-bottom: 1px solid var(--ink-faint);
  color: var(--ink);
  font-weight: 300;
}
.events-table tbody tr:hover { background: rgba(192,138,74,0.06); }
.events-table .num {
  font-family: var(--serif); font-style: italic;
  color: var(--accent); font-size: 1.05rem;
}
.events-table .location {
  font-family: var(--serif); font-style: italic;
  font-size: 1.05rem; color: var(--ink);
}

/* ── Upcoming event card (dark strip) ── */
.upcoming {
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 5vw, 4rem); align-items: center;
}
@media (max-width: 800px) { .upcoming { grid-template-columns: 1fr; } }
.upcoming-eyebrow {
  font-size: 0.7rem; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--star);
  font-weight: 400; margin-bottom: 1rem;
}
.upcoming-title {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 300; line-height: 1.05; margin-bottom: 1.4rem;
}
.upcoming-title em { font-style: italic; color: var(--star); }
.upcoming-desc {
  font-size: 0.95rem; line-height: 1.9;
  color: rgba(245,242,237,0.75);
  margin-bottom: 1.8rem; max-width: 50ch;
}
.upcoming-meta {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1px; background: rgba(245,242,237,0.18);
  border: 1px solid rgba(245,242,237,0.18);
}
.upcoming-meta > div {
  background: var(--night-soft);
  padding: 1rem 1.2rem;
}
.upcoming-meta dt {
  font-size: 0.6rem; letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(245,242,237,0.45);
  font-weight: 400; margin-bottom: 0.3rem;
}
.upcoming-meta dd {
  font-family: var(--serif); font-style: italic;
  font-size: 1rem; color: var(--cream);
}
.upcoming-image {
  aspect-ratio: 4/3; overflow: hidden;
  border: 1px solid rgba(245,242,237,0.18);
}
.upcoming-image img {
  width: 100%; height: 100%; object-fit: cover;
  filter: contrast(1.05) saturate(0.95);
}
.upcoming-list {
  list-style: none; margin-top: 1.4rem;
}
.upcoming-list li {
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(245,242,237,0.12);
  font-size: 0.88rem; color: rgba(245,242,237,0.78);
}
.upcoming-list li::before {
  content: '✦'; color: var(--star); margin-right: 0.6rem; font-size: 0.75rem;
}

/* ── Sony partnership / promotion ── */
.partner-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}
.partner-grid img { aspect-ratio: 4/3; object-fit: cover; width: 100%; border: 1px solid rgba(245,242,237,0.12); }
@media (max-width: 700px) { .partner-grid { grid-template-columns: 1fr; } }

/* ── Profile (individual photographer) page ── */
.profile-hero {
  padding: clamp(7rem, 12vw, 10rem) clamp(1.5rem, 5vw, 4rem) clamp(3rem, 6vw, 5rem);
  background: var(--cream-soft);
  border-bottom: 1px solid var(--ink-faint);
}
.profile-hero-inner {
  max-width: 1080px; margin: 0 auto;
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
@media (max-width: 700px) {
  .profile-hero-inner { grid-template-columns: 1fr; text-align: center; }
}
.profile-hero-photo {
  width: 240px; height: 240px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto;
}
.profile-hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
@media (max-width: 700px) { .profile-hero-photo { width: 200px; height: 200px; } }
.profile-hero-eyebrow {
  font-size: 0.65rem; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--accent);
  font-weight: 400; margin-bottom: 1rem;
}
.profile-hero-name {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 300; line-height: 1; letter-spacing: -0.01em;
  margin-bottom: 1rem;
}
.profile-hero-name em { font-style: italic; color: var(--accent); }
.profile-hero-bio {
  font-size: 0.98rem; line-height: 1.85;
  color: var(--ink-light); max-width: 56ch;
}
@media (max-width: 700px) { .profile-hero-bio { margin: 0 auto; } }

.profile-meta {
  max-width: 1080px; margin: 0 auto;
  padding: clamp(2.5rem, 5vw, 3.5rem) clamp(1.5rem, 5vw, 4rem);
  display: grid; grid-template-columns: 1fr 2fr;
  gap: clamp(2rem, 5vw, 4rem);
}
@media (max-width: 800px) { .profile-meta { grid-template-columns: 1fr; } }
.profile-meta h3 {
  font-size: 0.7rem; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--accent);
  font-weight: 400; margin-bottom: 1rem;
}
.gear-list { list-style: none; }
.gear-list li {
  padding: 0.45rem 0;
  border-bottom: 1px solid var(--ink-faint);
  font-family: var(--serif); font-style: italic;
  font-size: 1rem; color: var(--ink);
}

.profile-gallery {
  max-width: 1280px; margin: 0 auto;
  padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 5vw, 4rem);
}
.profile-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}
.profile-gallery-grid img {
  width: 100%; height: 100%;
  aspect-ratio: 4/3; object-fit: cover;
  filter: contrast(1.03) saturate(0.95);
  transition: transform 0.9s cubic-bezier(0.25,0.46,0.45,0.94), filter 0.6s;
}
.profile-gallery-grid img:hover { transform: scale(1.04); filter: contrast(1) saturate(1); }
@media (max-width: 900px) { .profile-gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .profile-gallery-grid { grid-template-columns: 1fr; } }

.back-link {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.65rem; letter-spacing: 0.24em;
  text-transform: uppercase; color: var(--ink-light);
  text-decoration: none; margin-bottom: 1.5rem;
  transition: color 0.3s;
}
.back-link::before { content: '←'; font-size: 0.85rem; }
.back-link:hover { color: var(--accent); }

/* ── Social icons ── */
.social-icons {
  display: inline-flex; gap: 0.7rem; align-items: center;
  margin-top: 1.4rem;
}
.social-icons a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  border: 1px solid var(--ink-faint);
  border-radius: 50%;
  color: var(--ink-light);
  text-decoration: none;
  transition: color 0.3s, border-color 0.3s, transform 0.3s, background 0.3s;
}
.social-icons a:hover {
  color: var(--accent);
  border-color: var(--accent);
  transform: translateY(-2px);
}
.social-icons svg { width: 16px; height: 16px; fill: currentColor; }
.social-icons--lg { gap: 0.9rem; margin-top: 1.6rem; }
.social-icons--lg a { width: 46px; height: 46px; }
.social-icons--lg svg { width: 18px; height: 18px; }
.social-icons--center { justify-content: center; display: flex; }
.dark-strip .social-icons a,
.footer-main .social-icons a {
  color: rgba(245,242,237,0.6);
  border-color: rgba(245,242,237,0.25);
}
.dark-strip .social-icons a:hover,
.footer-main .social-icons a:hover {
  color: var(--star);
  border-color: var(--star);
  background: rgba(244,214,138,0.08);
}

/* ── Contact ── */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.4rem, 3vw, 2.4rem);
}
@media (max-width: 800px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-card {
  padding: 2rem 1.8rem 2.2rem;
  border: 1px solid var(--ink-faint);
  background: var(--cream-soft);
  text-align: center;
  display: flex; flex-direction: column; align-items: center;
}
.contact-card h3 {
  font-family: var(--serif);
  font-size: 1.45rem; font-weight: 300; font-style: italic;
  color: var(--ink); margin-bottom: 0.4rem;
}
.contact-card .role {
  font-size: 0.62rem; letter-spacing: 0.26em;
  text-transform: uppercase; color: var(--accent);
  font-weight: 500; margin-bottom: 1.4rem;
}
.contact-card .social-icons { margin-top: 0; }

/* ── Footer ── */
footer.footer-main {
  background: var(--night);
  color: rgba(245,242,237,0.7);
  padding: clamp(3rem, 6vw, 4.5rem) clamp(1.5rem, 5vw, 4rem) 2rem;
  position: relative; overflow: hidden;
}
footer.footer-main::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 20% 20%, rgba(192,138,74,0.1), transparent 60%);
  pointer-events: none;
}
.footer-grid {
  max-width: 1180px; margin: 0 auto;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr;
  gap: clamp(2rem, 4vw, 3rem);
  position: relative; z-index: 1;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(245,242,237,0.12);
}
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr; gap: 2rem; } }
.footer-brand {
  display: flex; flex-direction: column;
}
.footer-logo {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: var(--serif); font-style: italic;
  font-size: 1.15rem; font-weight: 300;
  color: var(--cream); text-decoration: none;
  margin-bottom: 1rem;
}
.footer-logo svg { width: 22px; height: 22px; color: var(--star); }
.footer-tagline {
  font-size: 0.85rem; line-height: 1.8;
  color: rgba(245,242,237,0.6);
  max-width: 38ch;
}
.footer-col h4 {
  font-size: 0.65rem; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--star);
  font-weight: 400; margin-bottom: 1rem;
}
.footer-col ul { list-style: none; }
.footer-col li { padding: 0.3rem 0; }
.footer-col a {
  font-size: 0.82rem; color: rgba(245,242,237,0.7);
  text-decoration: none;
  transition: color 0.3s;
}
.footer-col a:hover { color: var(--star); }
.footer-bottom {
  max-width: 1180px; margin: 2rem auto 0;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
  font-size: 0.7rem; letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245,242,237,0.4);
  position: relative; z-index: 1;
}
.footer-bottom a { color: rgba(245,242,237,0.55); text-decoration: none; margin-left: 1rem; }
.footer-bottom a:hover { color: var(--star); }

/* ── Article / legal / journal post body ── */
.article-layout {
  max-width: 760px; margin: 0 auto;
  padding: clamp(6rem, 12vw, 9rem) clamp(1.5rem, 5vw, 3rem) clamp(4rem, 8vw, 6rem);
}
.article-eyebrow {
  font-size: 0.65rem; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--accent);
  font-weight: 400; margin-bottom: 1rem;
}
.article-title {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 300; line-height: 1.1;
  margin-bottom: 1.5rem;
}
.article-title em { font-style: italic; color: var(--accent); }
.article-body p {
  font-size: 1rem; line-height: 1.9;
  color: var(--ink); margin-bottom: 1.3rem;
  font-weight: 400;
}
.article-body h2 {
  font-family: var(--serif);
  font-size: 1.6rem; font-weight: 300; font-style: italic;
  color: var(--ink); margin: 2.2rem 0 0.9rem;
}
.article-body ul, .article-body ol {
  padding-left: 1.4rem; margin-bottom: 1.4rem;
}
.article-body li {
  font-size: 0.98rem; line-height: 1.8;
  color: var(--ink); margin-bottom: 0.4rem;
}
.article-body a {
  color: var(--ink); text-decoration: underline;
  text-decoration-color: var(--accent);
  text-underline-offset: 3px;
}
.article-body a:hover { color: var(--accent); }
.article-body code {
  font-family: ui-monospace, Consolas, monospace;
  font-size: 0.88em;
  background: rgba(0,0,0,0.05);
  padding: 0.1em 0.35em; border-radius: 3px;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  nav.primary { padding: 1rem 1.4rem; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .events-table { font-size: 0.85rem; }
  .events-table thead th, .events-table tbody td { padding: 0.7rem 0.4rem; }
}
@media (max-width: 600px) {
  .stats { grid-template-columns: 1fr; }
  .partner-grid { grid-template-columns: 1fr; }
}

/* ── Lightbox (profile galleries) ── */
.profile-gallery-grid img { cursor: zoom-in; }
.profile-gallery-grid img:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.lightbox {
  position: fixed; inset: 0; z-index: 3000;
  background: rgba(5, 6, 12, 0.96);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.35s ease;
}
.lightbox.open { opacity: 1; pointer-events: auto; }

.lb-stage {
  margin: 0;
  max-width: min(1200px, 88vw);
  max-height: 86vh;
}
.lb-stage img {
  max-width: 100%; max-height: 86vh;
  display: block;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
}

.lb-close, .lb-nav {
  position: absolute; z-index: 2;
  background: rgba(11, 13, 20, 0.55);
  border: 1px solid rgba(244, 214, 138, 0.4);
  color: var(--star);
  font-family: var(--sans);
  cursor: pointer;
  transition: background 0.3s, border-color 0.3s;
}
.lb-close:hover, .lb-nav:hover {
  background: rgba(244, 214, 138, 0.14);
  border-color: rgba(244, 214, 138, 0.8);
}
.lb-close {
  top: 1.4rem; right: 1.6rem;
  padding: 0.7rem 1.3rem;
  font-size: 0.62rem; letter-spacing: 0.22em; text-transform: uppercase;
}
.lb-nav {
  top: 50%; transform: translateY(-50%);
  width: 52px; height: 52px;
  border-radius: 50%;
  font-size: 1.1rem; line-height: 1;
}
.lb-prev { left: 1.6rem; }
.lb-next { right: 1.6rem; }

.lb-count {
  position: absolute; bottom: 1.4rem; left: 50%;
  transform: translateX(-50%);
  font-family: var(--sans);
  font-size: 0.62rem; letter-spacing: 0.3em;
  color: rgba(244, 214, 138, 0.7);
}

@media (max-width: 600px) {
  .lb-nav { width: 42px; height: 42px; }
  .lb-prev { left: 0.7rem; }
  .lb-next { right: 0.7rem; }
  .lb-close { top: 0.8rem; right: 0.8rem; }
}

/* ── Image-protection toast (profile pages) ── */
.protect-toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translate(-50%, 12px);
  z-index: 4000;
  background: rgba(11, 13, 20, 0.92);
  border: 1px solid rgba(244, 214, 138, 0.5);
  color: var(--star);
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  padding: 0.85rem 1.4rem;
  max-width: 90vw;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.protect-toast.visible {
  opacity: 1;
  transform: translate(-50%, 0);
}
